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
371,253,501
rust
Use `name.namespace.html` as the canonical URL, not `kind.name.html`
I just wanted to look at the `ManuallyDrop` docs again, and my browser helpfully remembered that it's at <https://doc.rust-lang.org/std/mem/union.ManuallyDrop.html>. But, despite the type being stable, that page no longer exists; it's now <https://doc.rust-lang.org/std/mem/struct.ManuallyDrop.html>. Is the specific...
T-rustdoc,A-stability
medium
Critical
371,257,157
go
cmd/link: possible linker bug when using the -T flag to set the text address
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? 1.11.1 darwin/amd64 ### Does this issue reproduce with the latest release? Yes. ### What operating system and processor architecture are you using (`go env`)? ```$ go env GOARCH="amd...
help wanted,NeedsInvestigation,compiler/runtime
low
Critical
371,262,423
go
cmd/compile: add column info to export data
None of the compiler's historical or present export data formats ($$, $$B, indexed) support column information, even though the compiler and the go/{token,ast,types}) packages are capable of producing and consuming this information. We should add it to the export data file using a suitably efficient encoding. Other...
NeedsFix,compiler/runtime
medium
Major
371,303,935
pytorch
C++ frontend: how to debug nan gradients
Hi, I am getting very large gradients and then, even with clamping, nan gradients (suddenly all of them). I am surprised because I am porting my working program from Python to C++ backends. How to debug this situation? I can't see any register_backward_hook or similar function. Thanks, Slawek
module: cpp,triaged,enhancement
low
Critical
371,309,565
pytorch
Port dragon4_scientific for pretty float tensor print.
## πŸš€ Feature <!-- A clear and concise description of the feature proposal --> In #12746 , we should port dragon4_scientific instead of fixed precision printing. https://github.com/numpy/numpy/blob/f36d2d4d3f622f7901e3d5ade13e04fc05062948/numpy/core/src/multiarray/multiarraymodule.c#L3530
module: printing,triaged,enhancement
low
Minor
371,326,341
TypeScript
Rename file by renaming on an aliased path
From https://github.com/Microsoft/vscode/issues/60918 <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** 3.2.0-dev.20181019 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** ...
Bug,Domain: TSServer
low
Critical
371,377,280
godot
Preloaded enums do not automatically update to latest version
<!-- 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. --> b550f93cfd7862fdf9bf4fc838f2ad04ef89a131 **OS/device including version:** <!-- Specify GPU model and d...
bug,topic:gdscript,topic:editor,confirmed
low
Major
371,388,051
pytorch
tutorial_blob ERROR
OS: Ubuntu 14.04 gcc: 4.8.4 g++: 4.8.4 [ 90%] Built target caffe2_pybind11_state [ 91%] Built target caffe2_observers [ 92%] Linking CXX executable ../bin/tutorial_blob /usr/bin/ld: CMakeFiles/tutorial_blob.dir/tutorial_blob.cc.o: undefined reference to symbol '__cxa_allocate_exception@@CXXABI_1.3' //usr/lib/x86...
caffe2
low
Critical
371,397,431
godot
GridMap items' mesh material data lost after export
<!-- Please search existing issues for potential duplicates before filing yours: https://github.com/godotengine/godot/issues?q=is%3Aissue --> **Godot version:** v3.1.alpha.calinou.4c1a5d9 **OS/device including version:** Arch Linux **Issue description:** Exporting MeshLib doesn't work for item's mater...
enhancement,topic:core,confirmed
low
Critical
371,401,815
godot
Godot recognizes that the file has been deleted outside the editor, but does nothing about it
**Godot version:** 3.1 b550f93 **OS/device including version:** Windows 10, Linux Mint 19 **Issue description:** When I create for example Sprite with texture from file, save it and delete outside editor this file, then editor doesn't show any warning about missing dependencies but Godot delete this file f...
bug,topic:editor
low
Critical
371,418,456
pytorch
Pytorch BatchNorm2D Unstable
I was tuning the following customed nn module: ```class ConvE(nn.Module): def __init__(self, args, num_entities): super(ConvE, self).__init__() self.entity_dim = args.entity_dim self.relation_dim = args.relation_dim assert(args.emb_2D_d1 * args.emb_2D_d2 == args.entity_dim) ...
triaged,module: norms and normalization
low
Major
371,447,191
godot
Godot reimporting file after changing its name inside editor
**Godot version:** 3.1 b550f93 **OS/device including version:** Windows 10 **Issue description:** When I rename an asset inside editor, then file is reimported instead just rename files in import. In .import folder I have 4 files ![aaaaaaa](https://user-images.githubusercontent.com/41945903/47143990-b9f5...
enhancement,topic:editor
low
Minor
371,485,538
TypeScript
Subclass method is not allowed (TS2425) if the parent class has a property of type any with the same name
TypeScript appears to treat class methods as something fundamentally different from a class prototype property of type function. This is not in agreement with the standard semantics of ES6. <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. --> **TypeScript Version:** al...
Suggestion,Awaiting More Feedback
medium
Critical
371,498,665
pytorch
Initialization error when moving data to the GPU
I want to move my data to the GPU in **collate_fn** because it will be done in parallel and **moving the data to the GPU** is my main **bottleneck**. But I have the following error message. How to make it possible? I search a way to transfer my data in parallel so **I don't have to wait every mini batch** ...
module: cuda,triaged
low
Critical
371,577,084
material-ui
[MobileStepper] Way to access a custom slide number by clicking on one of the dots
I would like to create a stepper similar to the "Mobile with carousel effect" one on the [Steppers demo page](https://material-ui.com/demos/steppers/#mobile-stepper---text-with-carousel-effect), but where clicking on each of the dots would actually make the slide update accordingly. I didn't find an option to do t...
new feature,component: stepper
low
Major
371,617,822
go
net/http: no way to get server Handler's write error to client (sometimes)
### What version of Go are you using (`go version`)? 1.11 ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? linux/amd64 ### What did you do? I wrote an http response after the client socket was closed. https://play.g...
NeedsDecision,FeatureRequest
low
Critical
371,644,768
pytorch
BUILD_BINARY is a lie
## πŸ› Bug I expect `BUILD_BINARY=0` to not build any binaries. It still builds lots of binaries. ## To Reproduce Steps to reproduce the behavior: 1. `BUILD_BINARY=0 python setup.py build_deps develop` 2. `ls build/bin` <!-- If you have a code sample, error messages, stack traces, please provide it here ...
module: build,triaged
low
Critical
371,657,632
node
fs.lchmod opens file with O_WRONLY unnecessarily, fails on directories and non-writable files
* **Version**: v10.12.0 * **Platform**: Darwin geegaw.local 18.0.0 Darwin Kernel Version 18.0.0: Wed Aug 22 20:13:40 PDT 2018; root:xnu-4903.201.2~1/RELEASE_X86_64 x86_64 * **Subsystem**: fs https://github.com/isaacs/chmodr/pull/20 Node's fs.lchmod implementation opens the file in write-only mode. (On Darwin, ...
help wanted,fs
low
Minor
371,664,515
pytorch
Test that (cd build && ninja) immediately after build is no-op in CI
## πŸ› Bug If I do a build like `python setup.py build_deps develop`, and then I say `(cd build && ninja)`, this should NOT run cmake, and it should be no-op. This is not currently true. Once we fix it, we should add a test for it so it doesn't regress. cc @malfet @seemethere @walterddr @ezyang @pytorch/pytorch-d...
module: build,module: ci,triaged
low
Critical
371,682,700
electron
Feature request: get back selected file format from showSaveDialog
It's great that https://github.com/electron/electron/issues/10335 is now implemented. As a follow-up feature, is there also a way to get the selected file format back, e.g. in the callback? There is no way to tell what the user selected, if two formats have the same extension. If I have, say: dialog.showSa...
enhancement :sparkles:
low
Major
371,705,999
go
x/mobile: Memory crash in iOS devices
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go1.10.3 darwin/amd64 ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? GOARCH="amd64" GOO...
NeedsInvestigation,mobile
low
Critical
371,744,456
youtube-dl
[SoundCloud] Add support to download 256kbps AAC from SoundCloud Go+ accounts
## 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
371,777,804
TypeScript
Overloads do not emit JSDoc on non-implementation signatures
<!-- 🚨 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,Domain: Comment Emit,Experience Enhancement
low
Critical
371,782,845
pytorch
Model with Caffe2 runs much slower than it with pytorch in GPU mode !!!!
Firstly, I run my model(CRNN model) on Pytorch GPU. With code: ``` directory = os.path.dirname(os.path.realpath(__file__)) model_file = os.path.join(directory, './pth/netCRNN_epoch17_idx78105_step2733675.pth') keys = new_key.KEY_4498 model = Resnet18(False, num_classes=len(keys) + 2) state_dict = torch.load(mod...
caffe2
low
Major
371,784,816
vue
'inject' Properties are not added to the CombinedVueInstance type definition
### Version 2.5.17 ### Reproduction link [https://codesandbox.io/s/rr18r3vm9p](https://codesandbox.io/s/rr18r3vm9p) ### Steps to reproduce 1. Copy Minimal reproduction link into a local environment, and run the webpack compilation process. **OR** 1. Initialize a vue vm ```typescript let vm = ne...
typescript
low
Critical
371,806,948
flutter
VideoProgressIndicator does not give correct buffer values
VideoProgressIndicator cannot display buffer progress correctly. I try to get the value of controller.value.buffer[0].end.inMillseconds. It shows a value between 0 and 100 which is just the progress value that has been shown.
c: new feature,a: video,p: video_player,package,team-ecosystem,P2,triaged-ecosystem
low
Minor
371,817,901
opencv
I guess there is a mistake with the source code of stereosgbm.cpp.
I have read the source code of stereosgbm.cpp of OpenCV2.4.13. and the related articles. I found it maybe a mistake in the source code. The 8 directions around a special pixel X: 1 2 3 0 X 4 7 6 5 The code uses dynamic program to aggregate the BT cost after SAD windows. Firstly, it uses the index from 0 to wid...
incomplete
low
Minor
371,855,181
vscode
Show Timestamp while Debugging
Geetings, I am debugging my JavaScript files in VSCode with the ChromeDebugger extension. I recognized that I cant activate timestamps in the DebugConsole in VSCode. Is it possible to show timestamps like in Chrome DevTools? Or is this a ChromeDebugger extension Feature request? **No Timestamps:** ![vscode_notim...
feature-request,debug,debug-console
medium
Critical
371,876,608
pytorch
[CAPI] Increase of memory usage when exporting a Adam optimzer
## πŸ› Bug Similarly than bug #12284 but with an instance of Adam optimizer. The stored file and gpu memory usage grow very quick. ## Expected behavior No memory increase. ## Environment Collecting environment information... PyTorch version: 1.0.0a0 Is debug build: No CUDA used to build PyTorch: 9.0.176 ...
module: cpp,module: optimizer,module: memory usage,triaged
low
Critical
371,880,507
godot
Project.godot and exported class names with multiple repositories.
**Godot version:** `328679fd` **Issue description:** Preface: I am working with multiple git repositories, a main one and others that are in sub folder. The problem that I am facing right now is that when someone does not have one of the submodules, project.godot is edited and the path to those scripts that exp...
enhancement,discussion,topic:editor
low
Minor
371,915,901
pytorch
caffe2: Unsupported type of tensor: nullptr (uninitialized)
## πŸ› Bug After exporting a basic RNN model to caffe2, running it results in assertion error thrown in `operator.h`: `Unsupported type of tensor: nullptr (uninitialized)` ## To Reproduce Steps to reproduce the behavior: Created a gist here: https://gist.github.com/Nimitz14/7a17707d570f4003b5f93ce2fafecfcd...
caffe2
low
Critical
371,926,132
TypeScript
Can't use type aliases or conditional types resolving to Promise for async/await return types
<!-- 🚨 STOP 🚨 𝗦𝗧𝗒𝗣 🚨 𝑺𝑻𝑢𝑷 🚨 --> <!-- Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please help us by doing the following steps before logging an issue: * Search: https://github.com/Microsoft/TypeScript/search?type=Issues * Read the CONT...
Suggestion,Awaiting More Feedback
low
Critical
371,948,254
godot
Kinematic body does not move when exactly in between two static bodies
Godot 3.1 alpha 1 Godot 3.0.6 As reported in this Q&A post: https://godotengine.org/qa/34661/how-can-i-simulate-no-friction-in-a-kinematic-body-2d If I exactly place a box Kinematic Body 2D aligned horizontally between two static boxes (using pixel and grid snapping), that body will not be able to move verticall...
bug,documentation,topic:physics
low
Minor
371,961,949
youtube-dl
Funkwhale
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2018.10.05*. If it's not, read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected. - [x] I've **verified**...
account-needed
low
Critical
371,984,359
pytorch
Massive initial memory overhead GPU
## πŸ› Bug There is a huge RAM overhead for using the GPU even for processing small tensors. Here's a standalone script: ``` python # test.py import torch import argparse parser = argparse.ArgumentParser() parser.add_argument('size', type=int) args = parser.parse_args() torch.set_grad_enabled(False) ...
module: cuda,module: memory usage,triaged
high
Critical
371,995,746
rust
libstd initializaton on sparc64-unknown-linux-gnu fails
Trying to run jemallocator tests on `sparc64-unknown-linux-gnu` I run into this error: ``` Running `qemu-sparc64 /target/sparc64-unknown-linux-gnu/debug/deps/ffi-3572dfd160eda606` thread '<unnamed>' panicked at 'assertion failed: signal(libc::SIGPIPE, libc::SIG_IGN) != libc::SIG_ERR', libstd/sys/unix/mod.rs:86:9...
T-libs-api,O-SPARC,C-bug
low
Critical
372,009,424
godot
Editor: Cannot Load an Image on New ImageTexture of a Sprite.
**Godot version:** 3.1 alpha #bde3e88 Mac OS X, High Sierra **Issue description:** Cannot Load an Image on New ImageTexture of a Sprite. ![screen shot 2018-10-19 at 11 15 24 am](https://user-images.githubusercontent.com/930478/47227959-0bb69080-d392-11e8-9a0e-11eb0fc00521.png)
discussion
low
Minor
372,042,966
pytorch
Eigen in Caffe2 doesn't produce vectorized instructions
Compiling with: `CFLAGS=-march=native python setup.py build develop` Repro code ``` from caffe2.python import core, workspace test_net = core.Net("layer_norm_test") test_net.LayerNorm(["input"], ["output", "mean", "stddev"], epsilon=1e-5) import numpy as np workspace.FeedBlob('input', np.random.rand(20, 5,...
caffe2
low
Critical
372,074,975
TypeScript
TypeScript doesn't narrow out `undefined` after constructor call when callee is `any`
TypeScript doesn't seem to narrow the type of a variable correctly in cases where the constructor being called is typed as `any`. If the type of a variable includes `undefined` in its type signature, it's not narrowed out after a constructor call even though by definition (I think--correct me if I'm wrong) `new fn()` ...
Suggestion,Needs Proposal,Domain: Control Flow
low
Critical
372,083,342
TypeScript
Mapped tuples types iterates over all properties
**TypeScript Version:** 3.2.0-dev.20181019 **Search Terms:** mapped tuples reify **Code** ```ts type Foo = ['a', 'b']; interface Bar { a: string; b: number; } type Baz = { [K in keyof Foo]: Bar[Foo[K]]; }; // Expected Baz to be [string, number] ``` **Expected behavior:** Baz should be [string, ...
Bug,Domain: Mapped Types
high
Critical
372,091,952
rust
A codegen option to stub `default_hook` + safe optimizations to `lang_start_internal` shrink the minimum executable size by 60%
The smallest "Hello World" binary in Rust using the normal entry point is roughly: ```rust extern crate libc; use std::alloc::System; #[global_allocator] static ALLOCATOR: System = System; fn main() { const BUF: &'static [u8] = b"Hello World!\n"; unsafe { libc::write(libc::STDOUT_FILENO, ...
C-enhancement,A-codegen,T-libs-api,I-heavy
low
Critical
372,097,412
go
runtime/race: goroutine IDs in race failures are incorrect
### What version of Go are you using (`go version`)? Both: `go version go1.10.4 darwin/amd64` `go version go1.11 darwin/amd64` ### Does this issue reproduce with the latest release? Yes. ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN="" GOCACH...
RaceDetector,NeedsFix
low
Critical
372,103,817
go
x/build/cmd/gopherbot: race condition in auto-closure of scratch CLs causing gopherbot to stall 30s
When closing scratch CLs, the maintner corpus doesn't get updated fast enough and it attempts to close the same CLs again, resulting in a 409 conflict: ``` 2018/10/19 20:19:32 closing scratch CL https://golang.org/cl/140997 ... 2018/10/19 20:19:32 abandon scratch reviews: HTTP status 409 Conflict; change is abando...
Builders,NeedsFix
low
Critical
372,125,184
TypeScript
Wiki page 'Using the Language Service API' does not describe how to use the Language Service API
https://github.com/Microsoft/TypeScript/wiki/Using-the-Language-Service-API
Help Wanted,Docs
low
Major
372,141,533
flutter
Provide clear feedback when a hot reload has finished
In the latest round of the "Build a Simple UI" study, we've seen two participants waiting for hot reload to finish when it, in fact, had finished already. It appears that the current feedback in the console is not clear enough (see below). This is a problem when the changes are subtle on the UI or the simulator is cove...
tool,t: hot reload,from: study,c: proposal,P3,team-tool,triaged-tool
low
Major
372,149,184
TypeScript
Auto-import triggers for reserved keyword exports
**TypeScript Version:** 3.1.3 **Search Terms:** auto import keyword **Code** ```ts // a.ts function return_() {} function throw_() {} function break_() {} function continue_() {} export { return_ as return, throw_ as throw, break_ as break, continue_ as continue }; // b.ts // typing any of the fol...
Bug,Domain: Quick Fixes
low
Minor
372,151,326
pytorch
RelaxedOneHotCategorical not implementing entropy (and other abstract methods)
## πŸš€ Feature <!-- A clear and concise description of what the bug is. --> ## To Reproduce ```python from torch.distributions import RelaxedOneHotCategorical d = RelaxedOneHotCategorical(0.1, torch.tensor((0.1, 0.9))) d.entropy() ``` throws a NotImplementedError The methods `mean`, `variance` and `en...
module: distributions,triaged,enhancement
low
Critical
372,152,550
TypeScript
Declaration file emitted with esModuleInterop can't be consumed without it
**TypeScript Version:** 3.2.0-dev.20181019 **Search Terms:** **Code** ```ts import abs from "abs"; // using @types/abs which uses `export =` export const x: typeof abs = <any>null; ``` **Expected behavior:** Output `.d.ts` is: ```ts import abs = require("abs"); export declare const x: typeof abs; ...
Suggestion,Domain: Declaration Emit,Experience Enhancement
low
Major
372,185,314
angular
AnimationBuilder query returns zero elements when ":enter" or ":leave" is used
## I'm submitting a... <pre><code> [ ] Regression (a behavior that used to work and stopped working in a new release) [x] Bug report <!-- Please search GitHub for a similar issue or PR before submitting --> [ ] Performance issue [ ] Feature request [ ] Documentation issue or request [ ] Support request => Pleas...
type: bug/fix,area: animations,freq2: medium,P3
low
Critical
372,199,810
kubernetes
Allow updating rbd monitors of persisted volumes
**Is this a BUG REPORT or FEATURE REQUEST?**: Probably a bit of both. /kind bug /kind feature /sig storage **What happened**: We needed to move our ceph cluster which in turn gave the ceph monitors new ips. In k8s the ips are stored in the storageclass and in each pv. We updated the storageclass successfully ...
kind/bug,sig/storage,kind/feature,lifecycle/frozen
medium
Critical
372,200,277
node
Non-unique V8 scriptUrl when using dynamic import in CJS
<!-- Thank you for reporting a possible bug in Node.js. Please fill in as much of the template below as you can. Version: output of `node -v` Platform: output of `uname -a` (UNIX), or version and 32 or 64-bit (Windows) Subsystem: if known, please specify the affected core module name If possible, please pro...
help wanted,module,vm
low
Critical
372,207,520
terminal
MiniTerm sample should specify long-running task
In the MiniTerm sample you create tasks to effectively pump IO. Since these could be long-running tasks in a practical application based on the sample, the sample should probably specify TaskCreationOptions.LongRunning to avoid consuming a couple of threads from the ThreadPool.
Area-Performance,Issue-Samples,Product-Meta
low
Minor
372,222,711
rust
rustc fails to infer default types that appear inside a path
``` type MyWorld = World<u32>; struct World<S = u32> { s: S, } impl<S> World<S> { pub fn new() -> Self { unimplemented!() } } fn main() { //let mut world = World::new(); // Doesn't compile let mut world: World = World::new(); // <= This works :/ let mut world = MyWorld::new(...
A-inference
low
Critical
372,226,165
TypeScript
can't emit import when overwrite declare
<!-- 🚨 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: Error Messages
low
Critical
372,232,568
flutter
The height of statusbar return 0.0 when running below IOS 11 system
I tested the statusbar height in different versions of the IOS system, the system below IOS 11 would got the problem that the statusbar height is 0.0.
platform-ios,framework,engine,e: OS-version specific,P2,team-ios,triaged-ios
low
Minor
372,237,065
opencv
python grabcut sample input window, issue with pop-up
##### System information (version) - OpenCV => 3.4.3 - Operating System / Platform => Ubuntu 64 Bit - Compiler => Ananconda ##### Detailed description If anyone tries to play with the python grabcut sample demo from samples/python/grabcut.py, it does not work as expected. The expected functionality is to be able...
category: highgui-gui,category: samples,incomplete
low
Minor
372,237,663
flutter
BlendMode.multiply and BlendMode.modulate are swapped
i have the custom `CustomPainter` class: ```dart class BlendPainter extends CustomPainter { ui.Image image, mask; BlendPainter(this.image, this.mask); @override void paint(Canvas canvas, Size size) { Rect r = Offset.zero & size; Paint paint = Paint(); if (image != null && mask != nu...
engine,dependency: skia,has reproducible steps,P2,team-engine,triaged-engine,found in release: 3.19,found in release: 3.21
low
Major
372,249,687
TypeScript
Property ? is missing in wrong type
I'm seeing a regression where code that works in 3.1 does not work in tsnext. It seems like typescript is not looking at the right type (`ContourTransform`) and tried to match against a different type (`WordcloudTransform`). <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixe...
Bug
low
Critical
372,259,980
go
x/build/cmd/gopherbot: reply to commit comments saying we do not monitor them
We get from time to time a comment on a commit in the main repo. We do not monitor those and nobody gets a ping for them (except the author of the commit who might or might not check GitHub notifications and does not have to). gopherbot should reply automatically pointing them towards the issue tracker and https://gith...
Builders,FeatureRequest
low
Major
372,269,086
rust
Unable to trace an crash from the backtrace, no trace for my own code
Windows, use msvc toolchain, release build and config β€˜debug = true’ in [profile.release], and marked #[inline(never)] the problem is unable to trace an crash from the backtrace, no trace for my own code. while debug build backtrace works, can find my own code line ``` rustc 1.29.1 (b801ae664 2018-09-20) cargo 1...
T-libs-api,O-windows-msvc,C-bug
low
Critical
372,288,181
TypeScript
language service suggestion for Declare property '...' in constructor argument
## Search Terms - typescript declare property in constructor - typescript language service declare property in constructor ## Suggestion When a non-existing property `x` is accessed on `this` in a class method, one of the fixes that ts language service currently suggests, is: > Declare property x Which adds ...
Suggestion,Domain: Quick Fixes,Experience Enhancement
low
Minor
372,294,699
rust
Derived trait shadows a blanket default impl, specialization unshadows but the generic impl ends up being used
This example does not compile with 1.31.0-nightly (2018-10-20 155510e377ae2a8d8ee0): ```rust #![feature(specialization)] use std::borrow::Borrow; #[derive(PartialEq)] struct MyString(String); impl Borrow<str> for MyString { fn borrow(&self) -> &str { &self.0 } } impl<Rhs> PartialEq<...
T-compiler,A-specialization,C-bug,requires-nightly,F-specialization
low
Critical
372,320,473
pytorch
ubuntu16.04 build from source caffe2
## ❓ Questions and Help ### Please note that this issue tracker is not a help form and this issue will be closed. cm@cm-Vostro-2421:~/pytorch$ python setup.py install Building wheel torch-1.0.0a0+ed02619 running install setup.py::run() running build_deps setup.py::build_deps::run() + SYNC_COMMAND=cp ++ com...
caffe2
low
Critical
372,324,498
TypeScript
API about Identifier's scope
I want to write a CustomTransformers for my webpack loader config. Babel's visitors have API about [scope](https://www.henryzoo.com/babel.github.io/docs/advanced/plugins/scope/) If I get a path of ImportDeclaration `import * as React from "react"`, I can using `path.scope.getBinding('React').referencePaths` to get...
Suggestion,API,Experience Enhancement
low
Minor
372,326,541
terminal
Reading extended attributes (RGB colors) from the screen buffer
TL;DR: How? Scenario: an app needs to read a part of the screen buffer, output something, and then, when needed, restore the original buffer content. ReadConsoleOutput always worked seamlessly for that, but now Windows supports 256 colours, true colours and underline text, but CHAR_INFO.Attributes is still WORD a...
Issue-Feature,Product-Conhost,Area-Server
medium
Major
372,342,267
opencv
JavaScript fastNlMeansDenoising() Support
##### System information (version) - OpenCV => 3.4.3 (opencv.js) - Operating System / Platform => Ubuntu 17.10 - x86_64 GNU/Linux - Compiler => chrome engine ( web browser ) ##### Detailed description I faced this error when i use fastNlMeansDenoising() method: `Uncaught TypeError exception: cv.fastNlMeansD...
feature,priority: low,category: photo,category: javascript (js)
low
Critical
372,376,430
godot
Incorrect texture UV for Label (glyphs' UVs are used instead of label's)
**Godot version:** 3.0.6 **OS/device:** Windows 8.1, Toshiba Satellite **Issue description:** For shaders attached to Labels, UV is not as expected. If you attach a shader to a Label and try to do a simple vertical gradient on it, UV.y = 1.0 does not correspond to the bottom of the Label. **Steps to r...
bug,topic:rendering,confirmed,topic:gui
medium
Major
372,440,879
vscode
Expanding emmet abbreviations inside JSX inline functions not working
Issue Type: <b>Bug</b> Expanding emmet abbreviations inside inline functions is not working. Given the example React component below I am unable to expand any abbreviations inside the render function. Expanding works in rest of the file. ```jsx import React from 'react'; import { Form } from 'react-final-form'...
bug,emmet
low
Critical
372,451,603
TypeScript
Declarations are not generated for a high order component
<!-- 🚨 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,Domain: Declaration Emit,Experience Enhancement
low
Critical
372,492,491
go
cmd/vet: flag using %s:%d to construct network addresses
I recently diagnosed a bug in someone’s Go program where a user reported that they couldn’t get the program to connect, and it turned out the issue was that the programmer used `fmt.Sprintf("%s:%d", host, port)` instead of `net.JoinHostPort` to construct a network address to pass to `net.Dial`: https://twitter.com/zekj...
Proposal,Proposal-Accepted,FeatureRequest,Analysis
medium
Critical
372,523,928
vscode
Task Manager: provide the ability to reuse custom problem matchers
I have several related tasks that share a custom output format. I'd like to be able to define a problem matcher for this format once and reference it in multiple tasks like I can for built-in matchers, eg. `"problemMatcher": "$my-matcher"`.
feature-request,tasks
medium
Critical
372,531,592
pytorch
USE_OPENMP=OFF is ignored [Caffe2]
## πŸ› Bug I've tried submitting this bug report before, but it seems that github is playing funny today so it may be a duplicate. Since f0d8a36e709dbf6a4c3aed7faf0da2b113668fe7 the ```USE_OPENMP``` cmake flag is ignored and the libcaffe2.so is always linked against libgomp.so ## To Reproduce <pre><code> $ ...
caffe2
low
Critical
372,536,137
godot
Mono: Allow the C# solution file to be created when you click "Create & Edit"
I'm working on a tutorial and I thought to myself that to a beginner that it isn't really clear to the user that they need to create the solution file or add a script before that solution file is created on new applications. So I was wondering as a small QoL change on new projects, why not create that solution file ...
enhancement,topic:editor,usability,topic:dotnet
low
Minor
372,566,551
go
cmd/compile: recognize rand.Intn() is bounded for BCE
### What version of Go are you using (`go version`)? go version go1.11.1 windows/amd64 ### What did you do? I implemented an array-shuffling function, using the math/rand.Intn() function. https://play.golang.org/p/tlTHcU4StTF (reduced example) ### What did you expect to see? I expected the compiler to not gen...
Performance,compiler/runtime
low
Minor
372,582,376
javascript-algorithms
Luhn algorithm
I would like to add Luhn algorithm(https://en.wikipedia.org/wiki/Luhn_algorithm) to "src/algorithms/uncategorized/" is it ok for you?
enhancement
medium
Minor
372,592,220
vscode
VS Code changes indention of current line
I am using VS Code 1.28.2 on Windows 10. I'm editing an HTML file indented with tabs. But I have HTML `<pre>` sections which I want indented with spaces. Let's say I have the following code: ```html <pre> foo //I press <Enter> at the end of this line </pre> ``` * When I open the file VS Code detects I use ...
bug,html,editor-autoindent,on-unit-test
low
Critical
372,632,018
rust
Const closure weirdness
The following compiles just fine: ```Rust #![feature(impl_trait_in_bindings)] fn main() { let func: impl Fn(&str) -> usize = |s| s.parse().unwrap(); } ``` However this does not: ```Rust #![feature(impl_trait_in_bindings)] fn main() { const func: impl Fn(&str) -> usize = |s| s.parse().unwrap(); ...
A-lifetimes,A-closures,A-const-eval
low
Critical
372,640,814
go
cmd/cover: branching to a labeled for misses some coverage
See below for a simple program that reports statements as uncovered when they are covered. ### What version of Go are you using (`go version`)? go version go1.11 darwin/amd64 ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env...
NeedsDecision,compiler/runtime
low
Critical
372,643,695
go
x/build/cmd/gopherbot: keeps repeating some actions without effect
I noticed this in the gopherbot logs recently, and it's possible to reproduce locally in dry-run mode. Gopherbot keeps on repeating some actions every iteration. These actions don't have an effect, and so gopherbot never stops repeating them. ``` 2018/10/22 07:44:15 got corpus update after 252.395017ms 2018/10/22 ...
Builders,NeedsInvestigation,umbrella
low
Major
372,708,159
three.js
ArrayCamera rotation support (including OrbitControls.js)
It would be great to be able to rotate an array camera as you would a regular camera, i.e. either accessing it's .rotation property or passing the camera into an orbit controls script. While this isn't particularly valuable for VR applications, any other type of application that leverages the optimization possible thro...
Enhancement
low
Minor
372,716,467
TypeScript
Prototype property assignments don't work for js-native-types
_From @Yegorich555 on October 19, 2018 12:40_ - VSCode Version: 1.28.2 - OS Version: Window 10 x64 - All extensions disabled Steps to Reproduce: ``` Array.prototype.test = function() { return 'ok'; } var arr = []; arr.te - I want to see function 'test' in intellisense ``` ![image](https://user-imag...
Bug,Awaiting More Feedback,Domain: JavaScript
low
Minor
372,718,558
go
go/parser: accept ...T as type in all parameter lists; leave it to go/types to complain
This could simplify the parser and also make it more error-tolerant in the presence of such error. It would also be more consistent with what the compiler does and better match the spec (where the rules about uses of ... are in the prose and not the EBNF). Clean-up task.
NeedsFix
low
Critical
372,757,158
pytorch
Come up with a better strategy for noticing BC-breaking attribute additions to serializable classes
In https://github.com/pytorch/pytorch/pull/8367 @apaszke caught that an added field would break pickles of this class. This is a much, much too subtle for us to rely solely on code review to catch instances of this. We should add some lint, or automated reminder, to check for this, or maybe another mechanism to "bur...
module: bc-breaking,module: molly-guard,triaged
low
Critical
372,790,753
angular
animation for :decrement is not executing inside *ngFor
<!-- PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION. ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION. --> ## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopp...
type: bug/fix,area: animations,freq3: high,P3
low
Critical
372,823,540
TypeScript
incorrect leading(?) comment for variable declaration in loop statement
<!-- 🚨 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,Help Wanted,Effort: Moderate,Domain: Comment Emit
low
Critical
372,846,221
pytorch
Installing pytorch from source on labs.cognitiveclass.ai
There are free linux-ppc64le Jupyter notebook environments (similar to Googe Colab): 1) https://labs.cognitiveclass.ai/tools/jupyterlab/ (no GPU) 2) https://labs.cognitiveclass.ai/tools/jupyterlab-for-ibm-powerai/ (with GPU) They have Terminal available, but without "apt-get" working. I tried to install pytorch...
triaged,module: POWER
low
Critical
372,924,547
go
x/tools/cmd/go-contrib-init: requires scratch repo to be set up as x/scratch
In previous Go Contributor Workshops, I had attendees run the following: ``` $ cd $(go env GOPATH)/src/golang.org/x $ git clone https://go.googlesource.com/scratch $ cd scratch $ go-contrib-init -repo scratch All good. Happy hacking! ``` However, that's tedious and not particularly portable. For example, it...
NeedsDecision,Tools
low
Minor
372,977,021
pytorch
Fail to Run Caffe2 with Successful Build: This caffe2 python run does not have GPU support
## Issue description With the latest PyTorch code, I successfully built Caffe2. But when I tried the imports, it reported errors and exited. For `from caffe2.python import core`, it directly reported `Segmentation fault (core dumped)`. For `from caffe2.python import workspace`, it reported the following warnings th...
caffe2
low
Critical
373,076,560
TypeScript
Generic type union assignment via Pick throws TS2322
**TypeScript Version:** 3.1.3 and 3.2.0-dev.20181023 Works in Version 3.0.3 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** generic union assignment TS2322 setState **Code** ```ts interface A { a: string; } class Base<T> { prop:...
Bug,Domain: Conditional Types
low
Critical
373,081,806
TypeScript
Quick info on JSX element should show inferred type arguments
**TypeScript Version:** 3.2.0-dev.20181023 **Search Terms:** **Code** ```ts class C<T> extends React.Component<T> {} const x = <C x={42} />; ``` **Expected behavior:** Quick into at the use of `C` should show `C<{ x: number }>`. **Actual behavior:** Just shows `class C<T>`.
Bug,Domain: Quick Info
low
Minor
373,086,320
flutter
Flutter Camera video size too big
I'm using iPhone. I captured video with camera plugin. The video length is about 15 seconds and size is around 25 MB how many times I did. I tried capture video with normal iPhone camera app and size is around 8 MB at most 10MB. Is this normal behavior?
c: new feature,p: camera,package,team-ecosystem,P3,triaged-ecosystem
low
Major
373,141,831
TypeScript
Inconsistency between import fix and moduleNameResolver for baseUrl + paths behavior
**TypeScript Version:** 3.2.0-dev.20181023 **Code** ```ts /// <reference path="fourslash.ts" /> // @Filename: /src/a.ts ////export const a = 0; // @Filename: /src/dir/b.ts ////[|a|]; // @Filename: /tsconfig.json ////{ //// "compilerOptions": { //// "baseUrl": ".", //// "paths":...
Bug
low
Critical
373,155,290
go
cmd/cgo: mark cgo generated wrappers hidden
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version devel +c2a8d5972f Sat Sep 22 10:58:54 2018 +0200 linux/amd64 ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture ...
help wanted,NeedsInvestigation,compiler/runtime
low
Critical
373,193,653
go
proposal: context/v2: update context package
This issue is intended to cover ideas about updating the context package for Go 2. - The current context package leads to stuttering in declarations: `ctx context.Context`. - The current `Context.WithValue` function accepts values of any types, which is easy to misuse by passing, say, a string rather than a value o...
v2,Proposal
high
Critical
373,207,775
react-native
TextInput with SecureEntry sometimes highlights yellow with "Strong Password" text, and becomes unuseable
<!-- Requirements: please go through this checklist before opening a new issue --> - [X] Review the documentation: https://facebook.github.io/react-native - [X] Search for existing issues: https://github.com/facebook/react-native/issues - [X] Use the latest React Native release: https://github.com/facebook/rea...
Component: TextInput,Bug
high
Critical
373,213,171
go
x/net/html: Tokenizer could have a Position method
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.10.4 linux/amd64 ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? amd64/linux ##...
NeedsDecision
low
Minor
373,225,157
terminal
Some installed fonts are not loading
Windows build: Microsoft Windows [Version 10.0.16299.665] What I'm trying to do: Install a font to windows and load it into the default terminal emulator for WSL ubuntu. What's wrong: Not all installed fonts are available. As one example, I have installed [GNU unifont](http://unifoundry.com/unifont/index.h...
Issue-Question,Product-Conhost,Area-Rendering
medium
Major
373,230,435
TypeScript
JSDoc generated by infer-from-usage codefix should be sorted
```js /** * @param {number} y * @return {number} * */ function f(x,y,z) { return x * y * z } ``` **Expected behavior:** Infer from usage sorts JSDoc after adding new inferences: ```js /** * @param {number} x * @param {number} y * @param {number} z * @return {number} */ function f(x,y,z)...
Bug,Domain: JavaScript
low
Minor
373,231,550
react
Update release script to handle alpha react-reconciler deps
This commit 1a57dc6 broke it
Component: Build Infrastructure,React Core Team
medium
Minor
373,242,357
pytorch
Improved performance for torch.multinomial with small batches
## πŸš€ Feature `torch.multinomial` (with replacement) has very poor performance with small batches but large numbers of samples or categories. In the regime of batch size N=1, categories C=100,000 and samples S=10,000, `numpy.choice` (running on CPU) is up to 4x faster than `torch.multinomial` running on a P100 GPU: ...
module: performance,module: cpu,triaged
low
Major