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
281,657,067
pytorch
[Proposal] Consistent `batch_first` effect for RNN modules
In current RNN (including `nn.RNN`, `nn.GRU`, `nn.LSTM`) implementation, the `batch_first` will only affect the dimension order of **input** and **output** variables. But there are also **hidden states** returned from RNN, and the *batch* dimension is always placed in the 2nd dimension regardless of the `batch_first` a...
module: docs,module: nn,module: rnn,triaged
medium
Major
281,772,867
pytorch
ATen explicitly differentiated native function resolution hazard (call is ambiguous)
Functions in ATen either can have derivatives defined for them, or they can defer to the implementations of derivatives of the methods they invoke. Suppose you write this (assume f and g are functions): ``` #include <ATen/ATen.h> namespace at { namespace native { Tensor f(at::Tensor x) { // some primiti...
module: internals,triaged
low
Major
281,791,774
rust
Unsatisfied trait bound for inner type in result leads to imprecise error message
Given a function that returns an instance of a generic expecting an inner type to implement a trait but that bound is not satisfied, the compiler unhelpfully points to the entire function and does not specify which inner type is the root of the problem. Sample code ([full error case on git](https://git.neosmart.net/...
C-enhancement,A-diagnostics,T-compiler
low
Critical
281,840,489
bitcoin
Could the wallet count unconfirmed non-mempool change?
Just writing down some thoughts on this. I find it quite counter-intuitive that if you have a 1 BTC output and make a transaction spending 0.01 BTC and sending 0.99 BTC back to yourself in change, that unless that transaction is in your mempool, your balance drops from 1 to 0. Unconfirmed change in the mempool app...
Brainstorming,Wallet
low
Major
281,890,693
pytorch
Variable outputs of stochastic functions should never require grad
I don't think we should bother to implement reparametrized gradients for Variable functions (`torch.distributions` will have them + I don't think it's possible for bernoulli), and if we keep setting these outputs to `requires_grad=True` and pushing back zeros some people might be confused. Also, this doesn't match the ...
module: distributions,triaged
low
Minor
281,909,390
angular
Preload modules modules based on canLoad guard result
<!-- 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...
feature,freq2: medium,area: router,router: lazy loading,feature: insufficient votes,feature: votes required
low
Critical
281,942,059
opencv
BOWKMeansTrainer Java API SIGSEGV on cluster()
##### System information (version) - OpenCV => 3.3.1 - Operating System / Platform => Debian Linux 64bit - Compiler => GCC ##### Detailed description I am trying to create a BOW dictionary from a pre-computed set of SIFT descriptors. The SIFT descriptors are limited to max 1750 features. Regardless of wh...
priority: low,category: features2d,category: java bindings
low
Critical
281,946,396
kubernetes
Deployment enters creation hot-loop when rs field is mutated by API server
/kind bug ### What Happened A deployment enters create new replicaset hot-loop. In deployment's spec.template: ```yaml volumes: - emptyDir: sizeLimit: "0" name: foo ``` In its rs's spec.template: ```yaml volumes: - emptyDir: {} name: foo ``` T...
kind/bug,priority/important-soon,area/reliability,sig/apps,lifecycle/frozen
medium
Critical
281,966,834
flutter
We should expose the locale's preferred baseline
...once we support multiple baselines, anyway.
c: new feature,framework,a: internationalization,a: typography,P3,team-framework,triaged-framework
low
Minor
281,980,205
youtube-dl
Add support for Adobe Pass Auth TV Provider YouTubeTV
--- ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.12.14*. 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 **ver...
tv-provider-account-needed
medium
Critical
282,026,478
kubernetes
Allow hot disabling of liveness probes
**Is this a BUG REPORT or FEATURE REQUEST?**: /kind feature **What happened**: From time to time, liveness probes do not behave as expected by the person that configured them and some conditions external to the container may make them fail (e.g. dependency on a database) and provoke endless restart loops. Thi...
priority/backlog,sig/node,kind/feature
high
Critical
282,229,325
go
net/mail: AddressList doesn't decode rfc2047 encoded words inside quotes
net/mail `AddressList` doesn't decode rfc2047 encoded words if they are inside quotes. The RFC mentions "An 'encoded-word' MUST NOT appear within a 'quoted-string'." Now before you close this bug, saying it is working as intended, let me try to convince you otherwise. A lot of clients break the rule above, an...
help wanted,NeedsInvestigation
low
Critical
282,248,405
kubernetes
umbrella issue for HA (replicated) API Server
API Server relies on etcd for HA. But it also has internal objects/states that need to be initialized based on API objects in etcd. Example of that is CRDs that need a http handler. This issue is to keep track of all states we have in API server and make sure all of them are HA ready. Note that most of them are already...
sig/api-machinery,kind/feature,lifecycle/frozen
low
Major
282,249,034
go
proposal: cmd/vet: detect values assigned but not used
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go1.9 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="" GO...
Proposal,NeedsInvestigation,FeatureRequest,Proposal-Hold,Analysis
low
Critical
282,254,136
TypeScript
Unhelpful `--strictFunctionTypes` error when first method is `self(): this;`
**TypeScript Version:** 2.7.0-dev.20171214 **Code** ```ts declare class C<T> { self(): this; covariant(): T; contravariant: (t: T) => void; m(other: C<{}>): void; } new C<number>().m(new C<number>()); ``` **Expected behavior:** Error that `C<number>` isn't `C<{}>` because `C<{}>`'...
Suggestion,In Discussion,Domain: Error Messages
low
Critical
282,257,399
vscode
[Feature] Local Workspace settings
I would like to be able to configure settings that are specific to my user and to a particular workspace. So, 'local' workspace settings? So there would be three locations for settings (for a single-folder workspace): * user settings * `${workspaceRoot}/.vscode/settings.json` * `${workspaceRoot}/.vscode/s...
feature-request,config
high
Critical
282,264,901
pytorch
Fused RNN refactor plan
This ticket is to track our plan to refactor the fused RNN API (which makes use of the CuDNN implementation of RNNs). **Why is this difficult?** There are a number of factors which make fused RNNs unusual, compared to most of the other differentiable operations in PyTorch * It requires an unusually large, structu...
module: cudnn,triaged
low
Major
282,277,859
go
doc: explain what custom pprof profiles are and why they are useful
[Diagnostics](https://tip.golang.org/doc/diagnostics.html) page is briefly mentioning custom profiles but failing to give any introduction for those who doesn't know why custom profiles are useful. Explain custom profiles and share a few sample use cases.
Documentation,help wanted,NeedsFix
low
Minor
282,293,520
vscode
Feature Request: Enable/disable extensions from config file
- VSCode Version: 1.18.1 - OS Version: Windows 10 FU ### Explain: There are certain extensions that play well together, and it would be useful to be able to set a config file to enable and disable certain extensions in that workspace. This would be a config file, like the extensions recommendations, but with a ...
feature-request,extensions
high
Critical
282,297,290
pytorch
Feature Request: CPU performance optimization with MKL-DNN
Hi, our team works on DL frameworks performance optimization on CPU. PyTorch CPU performance can be significantly improved with [MKL-DNN](https://github.com/01org/mkl-dnn), an open source deep neural network library on Intel CPU platform. Currently MKL-DNN supports Conv2d, Relu, BatchNorm, Pooling, Concat, etc. The CP...
triaged,module: mkldnn
medium
Major
282,334,490
go
x/tools/cmd/goimports: should not propose imports that are shadowed by vendored copies
When you format `import` sections, goimports help us out of kindness. However, it mistakenly mix GOPATH-depended packages with packages under the `vendor` directory. I expect it should exclude GOPATH-depended one from an `import` section. if I use any vendoring tool. (It maybe the role of golint, so if you mind,...
Tools
low
Major
282,479,306
opencv
cv::VideoCapture::set does not work when using GStreamer
##### System information (version) - OpenCV => 3.3.1 - Operating System / Platform => Windows 64 Bit - Compiler => Visual Studio 2015 ##### Detailed description The end of CvCapture_GStreamer::open contains this code: ``` status_ = gst_element_query_position(pipeline, FORMAT, &value_); ...
bug,priority: low,category: videoio
low
Critical
282,492,737
opencv
very slow kdtree
I used `cv::flann::Index` with `cv::flann::KDTreeIndexParams()` and call `knnSearch` for every single point used to build the tree inside a parallel loop. The performance gets extremely slow as the number of points and CPU cores grows. I did a performance profiling, and it seems that all time is spent in calling kernel...
category: flann
low
Major
282,527,681
flutter
Be able to create a new project with prepoluated class names instead of boilerplate project names (MyApp, MyHomePage)
This is just a feature request. Using `flutter create myapp` and `File -> New Flutter Project...` in Android Studio/IntelliJ both result in the sample code for MyApp (the increment counter app) being created. Could we please have a way to: * instantiate a blank project? * or instantiate something without so mu...
c: new feature,tool,P2,team-tool,triaged-tool
low
Major
282,536,622
angular
preserveWhitespaces:false is too aggresive and not context aware
<!-- 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...
feature,area: core,core: basic template syntax,feature: under consideration
high
Critical
282,537,950
flutter
State object's dartdoc can use a lifecycle diagram
Maybe something like ![image](https://user-images.githubusercontent.com/156888/34059154-a14256d6-e192-11e7-827f-53766eabb427.png)
c: new feature,framework,d: api docs,a: quality,c: proposal,P3,team-framework,triaged-framework
low
Minor
282,556,119
material-ui
[Grid] CSS grid support
CSS-Grid is now newer and better grid system than flexbox, but they can be used together. Please see the link: https://css-tricks.com/snippets/css/complete-guide-grid/ And it's now supported by most browsers, and it's matter of time it will become the standard way of defining the grid layout. Would Material UI imple...
new feature,waiting for 👍,component: Grid
high
Critical
282,567,646
opencv
Fixing broken cv2.VideoCapture by adding whitelist options for ffmpeg
A change to ffmpeg that results in things like 'crypto' not being in the default whitelist. As a consequence, cv2.videocapture('XXX.sdp') often fails (for example, for parrot bebop drones). The solution would be to add optional whitelist parameters to cv2.videocapture; is this something someone could do? For example...
priority: low,category: videoio
low
Critical
282,592,179
vue
Date Fields appear empty on first load when initialized with Vue
### Version 2.5.11 ### Reproduction link [https://jsfiddle.net/u1wssnwL/3/](https://jsfiddle.net/u1wssnwL/3/) ### Steps to reproduce Create an input with a type date and initialize with any valid date value. View on Safari IOS and you'll see that it will appear as empty although the value is set because wh...
browser quirks
low
Major
282,597,065
go
compress/flate: decompression performance
### What version of Go are you using (`go version`)? ``` go version go1.9.2 linux/amd64 ``` ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GOPATH="/home/fabecassis/go" GORACE="" GOROOT="...
Performance,help wanted
medium
Critical
282,603,987
godot
3D handles get smaller when MSAA 16x is enabled (`3.x` only)
**Operating system or device, Godot version, GPU Model and driver (if graphics related):** master bca97e33cefdf2687ea766fd9bd7032aa98cd0e8, Linux 64, Nvidia prorietary divers 387.34 **Issue description:** <!-- What happened, and what was expected. --> Enabling MSAA 16x makes the editor 3D handles very tiny, it on...
bug,topic:rendering,confirmed,topic:3d
low
Major
282,609,406
vscode
[folding] configure initial collapse state
Maybe I missed something ... I recently migrated my javascript project from netbeans to visual studio code ... in netbeans we use ``` //<editor-fold defaultstate="collapsed" desc="MySection"> ... //</editor-fold> ``` for defining regions ... I saw I could modify javascript-language-configuration.json to ``` "...
feature-request,editor-folding
high
Critical
282,626,712
opencv
HEAD build fails with cuda 9.1, VS15.5.2, W10 16299
##### Summary HEAD (16.12.2017) Build fails with: nvcc error : 'cicc' died with status 0xC0000005 (ACCESS_VIOLATION) [I:\opencv-master\build\modules\core\opencv_core.vcxproj] ##### System information (version) - OpenCV HEAD (16 december 2017) | 3.4RC - Windows 10 enterprise 64bits 1709 (build 16299) - VS2017...
priority: low,category: build/install,category: gpu/cuda (contrib)
low
Critical
282,633,029
vue
Is Vue performing unnecessary re-render when using $listeners?
### Version 2.5.11 (and earlier versions) ### Reproduction link [https://jsfiddle.net/xb4172g8/](https://jsfiddle.net/xb4172g8/) ### Steps to reproduce 1. Open console and observe while typing something into input fields 2. Enter some text into name field -> Vue re-renders all three Textfield components 3. I...
improvement
low
Major
282,685,438
flutter
ExpandIcon should use ThemeData instead of Color mapping
Currently, the `ExpandIcon` is hardcoded to a specific black-value from the `Colors` mapping. As `cardColor` can already be defined in `ThemeData`, it would only make sense to allow the `ExpandIcon` to have its color defined in `ThemeData` too as darker background colors can otherwise conflict in user interface design....
framework,f: material design,c: proposal,P2,team-design,triaged-design
low
Minor
282,689,960
go
cmd/vendor/golang.org/x/arch/arm: several issues in ARM disassembler's plan9 syntax
Though the ARM disassembler can decode most instruction binaries into gnu syntax correctly, there are several issues in plan9 syntax decoding. 1. op name 15f715e7| 1 plan9 SDIV R7, R5, R5 It should be "DIV R7, R5, R5", and many others are also incorrect. MLA should be MULA UDIV should be DIVU ...... 2. LDM/...
NeedsFix
low
Major
282,736,322
rust
Issues with crash handling for iOS for Rust 1.22.1
I'm using `rustc 1.22.1 (05e2e1c41 2017-11-22)` and I'm calling a simple rust function from my iOS app that just panics. The rust function is in a static library and is compiled `cargo build` (debug with -O0). The architecture is aarch64-apple-ios. Here's the rust code: ``` extern crate rand; pub struct MyStruct {...
A-debuginfo,C-enhancement,O-ios,T-compiler
low
Critical
282,741,848
kubernetes
Make CrashLoopBackoff timing tuneable, or add mechanism to exempt some exits
<!-- This form is for bug reports and feature requests ONLY! If you're looking for help check [Stack Overflow](https://stackoverflow.com/questions/tagged/kubernetes) and the [troubleshooting guide](https://kubernetes.io/docs/tasks/debug-application-cluster/troubleshooting/). --> **Is this a BUG REPORT or FEATUR...
sig/node,kind/feature,lifecycle/frozen
high
Critical
282,847,262
react
Number input gets cleared when typing period as decimal mark
<!-- 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*?** Bug **What is the current behavior?** My OS and browser are configured to a locale that uses comma as the d...
Type: Bug,Component: DOM
low
Critical
282,850,589
rust
Confusing error message: the trait `std::convert::Into` cannot be made into an object
I've tried to make a function which will make a new thread, accepting either an `&str` or a `String` for the new thread's name: ```rust /// Test helper to spawn a named thread. /// /// The thread executes the work in the `f` closure. #[cfg(test)] fn named_thread<'s, F>(name: Into<String>, f: F) -> JoinHandle<()...
C-enhancement,A-diagnostics,P-low,T-compiler,D-verbose,A-trait-objects
low
Critical
282,901,617
neovim
swap file actions can't be typed with the current keymap
- `nvim --version`: ``` NVIM v0.2.1 Build type: Release LuaJIT 2.0.5 Compilation: /usr/local/Homebrew/Library/Homebrew/shims/super/clang -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DNVIM_MSGPACK_HAS_FLOAT32 -DNVIM_UNIBI_HAS_VAR_FROM -DNDEBUG -DMIN_LOG_LEVEL=3 -Wall -Wextra -pedantic -Wno-unused-parameter...
localization,ux,bug-vim
low
Critical
282,911,084
rust
Negative impls of Auto Traits (OIBIT) don't take into account Trait Bounds
The following code fails to compile: ```rust trait Foo {} auto trait FooAuto {} impl<T> !FooAuto for T where T: Foo {} fn test<T>(t: T) where T: FooAuto {} fn main() { test(1i32); } ``` It produces the following error. ```rust error[E0277]: the trait bound `i32: FooAuto` is not satisfied --> src/...
C-enhancement,A-specialization
low
Critical
282,939,505
TypeScript
"Variable is used before being assigned" even though it is assigned
<!-- BUGS: Please use this template. --> <!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript --> <!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md --> <!-- Please try to reproduce the issue...
Bug
medium
Critical
282,975,575
react
backspace fails to clear values on input type='email'
<!-- 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*?** bug **What is the current behavior?** email input doesn't control for whitespace // possible variation on [Iss...
Type: Bug,Component: DOM
low
Critical
283,010,979
flutter
Incorrect handling of Unicode on Windows is causing failures in test_test.dart
Unicode that is solely used for formatting is not being handled correctly when read out of `stderr` or `stdout` from the `ProcessResult`, likely due to how the VM decides whether or not to worry about fixing Unicode issues on Windows. Related dart-sdk issue [here](https://github.com/dart-lang/sdk/issues/28871).
tool,platform-windows,P3,team-tool,triaged-tool
low
Critical
283,023,933
go
doc: mention "purego" build tag convention somewhere
As the number of Go implementations continues to increase, the number of cases where the `unsafe` package is unlikely to work properly also rises. Currently, there is `appengine`, `gopherjs`, and possibly `wasm` where pointer arithmetic is not allowed. Currently, protobuf and other packages special cases [build tag...
Documentation,Proposal,Proposal-Accepted
medium
Critical
283,039,896
pytorch
single-gpu works but multi-gpu hangs
My machine has 4 titanXP, CUDA9.0, CuDNN 7.5, Ubuntu 16.04 When I run an image classification task with single GPU, it runs just fine. But it hangs at the line model = nn.DataParallel(model) when I try to run with 2 or more GPUs. I ran p2pBandwidthLatencyTest and got the following report: P2P (Peer-to-Peer) GP...
module: cudnn,triaged,module: data parallel
low
Minor
283,159,668
angular
feature: force reference to element in template
<!-- 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...
feature,area: core,core: local references,feature: under consideration
low
Critical
283,195,729
pytorch
Feature request: sparse matrix max(axis)
The current sparse support is pretty nice! However, there are some important of collation operations that can not be efficiently be composed out of matmul or operations on _values(). One that is in the way of my current work is axis-wise max. Ideally: ``` vec = sparsemat.max(axis=None, zero=0) ``` Where an o...
module: sparse,triaged,enhancement
low
Major
283,220,145
vscode
Tasks with target = TaskScope.Global as the scope do not show up in task picker UI
- VSCode Version: Code 1.18.1 (929bacba01ef658b873545e26034d1a8067445e9, 2017-11-16T18:23:26.125Z) - OS Version: Darwin x64 17.3.0 - Extensions: Extension|Author (truncated)|Version ---|---|--- code-runner|for|0.8.4 cpptools|ms-|0.14.2 Ruby|reb|0.15.0 --- Steps to Reproduce: 1. Create a vscode.Ta...
bug,tasks
low
Major
283,362,419
rust
AArch64 benchmarking assertion failure
Repro: ``` #![cfg_attr(test, feature(test))] #[cfg(test)] extern crate test; #[cfg(test)] mod tests { use test::{Bencher, black_box}; #[bench] fn bench_map_scalar(b: &mut Bencher) { b.iter(|| { black_box(1) }); } } ``` .cargo/config ``` [target.aarch64-un...
O-Arm,T-libs-api,A-libtest,C-bug,O-AArch64
low
Critical
283,396,560
TypeScript
Handle JSDoc @param with hyphen
**TypeScript Version:** 2.7.0-dev.20171214 **Code** ```ts /** * @param x - Bla */ function foo(x) { } ``` Hover over `x` **Expected behavior:** Hyphen is ignored in any documentation returned. See JSDoc @param spec: http://usejsdoc.org/tags-param.html **Actual behavior:** Hyphen is returned as ...
Suggestion,VS Code Tracked,Domain: JSDoc,Experience Enhancement
low
Minor
283,569,625
angular
updateValueAndValidity in valueChanges breaks model under certain circumstances
<!-- 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,freq1: low,area: forms,state: confirmed,forms: Controls API,P4
low
Critical
283,598,119
nvm
Custom node installation location in .nvmrc
Feature request: Could nvmrc point to a local path where a custom node version is installed? When nvm would be run it would simply witch the path to that location. This would be useful when using https://github.com/eirslett/frontend-maven-plugin which downloads and installs a version of node as specified in maven's...
feature requests
low
Major
283,653,451
react
Stop syncing value attribute for controlled inputs
Opening this as a follow up to some quick discussions in https://github.com/facebook/react/issues/11881. Syncing the `value` attribute has been a consistent source of bugs for us, and the benefits of doing so seem minimal. There's some previous discussion on the topic in https://github.com/facebook/react/pull/7359 and ...
Component: DOM,Type: Discussion,Type: Breaking Change
medium
Critical
283,698,690
go
proposal: x/crypto/acme/autocert: Manager should support DNS-01 verification
### What did you do? I've tried to setup autocert behind a firewall. ### What did you expect to see? https working flawlessly (using letsencrypt infrastructure) ### What did you see instead? Verification failed due the firewall. I believe dns-01 should be built into [Manager](https://godoc.org/golang.o...
Proposal,Proposal-Crypto
medium
Critical
283,701,180
go
sync: Pool example suggests incorrect usage
The operation of `sync.Pool` assumes that the memory cost of each element is approximately the same in order to be efficient. This property can be seen by the fact that `Pool.Get` returns you a random element, and not the one that has "the greatest capacity" or what not. In other words, from the perspective of the `Poo...
Documentation,help wanted,NeedsFix,compiler/runtime
high
Critical
283,710,531
rust
Can't specialize `Drop`
The `Drop` trait has checks to ensure that the `impl` can't add new restrictions on generic parameters. ```rust struct S<T> { ... } impl<T: Foo> Drop for S<T> { ... } ``` The above won't compile (as intended?), as the `S` would have a Drop that's conditional based on the type parameter. However with special...
C-enhancement,T-compiler,A-specialization,F-specialization
low
Critical
283,717,484
vscode
[json] suggest used values when property name has already been used
<!-- Do you have a question? Please ask it on http://stackoverflow.com/questions/tagged/vscode. --> <!-- Use Help > Report Issues to prefill these. --> - VSCode Version: 1.19.0 and 1.19.1 - OS Version: Windows 10 Home 64 bit Steps to Reproduce: vscode used to show autocomplete option for words that existed i...
feature-request,json
low
Major
283,732,344
go
cmd/compile: validity of program depends on method declaration order
https://play.golang.org/p/WCktUidLyc_3 is accepted while the equivalent program https://play.golang.org/p/Z-B9rBhYILd fails with an error. The only difference is the order of the method declarations. Esoteric case; recording this so we're aware of it.
compiler/runtime
low
Critical
283,733,204
flutter
Need a way to compute height of a row of baseline-aligned RenderBoxes
This comes up when trying to implement `RenderBox.computeMinIntrinsicHeight()`, and `RenderBox.computeMaxIntrinsicHeight()` for a renderer that contains more than one baseline-aligned child. I thought this would work (it should be consistent with https://github.com/flutter/flutter/issues/10014): ```dart double _...
c: new feature,framework,P3,team-framework,triaged-framework
low
Minor
283,750,947
vscode
insertSnippet produces trailing spaces
<!-- Do you have a question? Please ask it on http://stackoverflow.com/questions/tagged/vscode. --> <!-- Use Help > Report Issues to prefill these. --> - VSCode Version: Version 1.19.1 (1.19.1) - OS Version: macOS 10.13.2 The `insertSnippet` function in the vscode api takes a snippet and inserts it at the given...
feature-request,snippets
low
Minor
283,822,471
go
net: document that Dial/Listen with "ip4:tcp" or "ip6:tcp" fails on Windows
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.9.2 windows/amd64 ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture are you using (`go env`)? ```bash $...
Documentation,OS-Windows,NeedsFix
low
Critical
283,826,498
youtube-dl
Proxy parameter is not working correctly inside of openload.py (PhantomJS)
## 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 ...
request,bug
low
Critical
283,834,982
rust
two-phase-borrows need a specification
Spawned off of https://github.com/rust-lang/rust/pull/46887#issuecomment-353156090: While our short term solution for two-phase borrow support (#46037) is to make it as conservative as we can (e.g. the still planned #46747), the reality is that its complex and needs a specification. (It might even be worth the exerc...
E-hard,C-enhancement,P-medium,T-lang,T-compiler,A-NLL,NLL-reference
low
Major
283,835,976
opencv
cv::connectedComponentsWithStats crashes
##### System information (version) - OpenCV => 3.3.1 and latest master (3.4rc) - Operating System / Platform => Debian Linux (Sid) - Compiler => gcc 7.2.0 ##### Detailed description Using `cv::connectedComponentsWithStats` crashes in gdb as well as valgrind, and triggers an assertion if OpenCV is compiled wi...
bug,category: imgproc
low
Critical
283,864,054
angular
EventEmitter: Gets wrong compiled by Closure Compiler
<!-- 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...
area: packaging,freq2: medium,area: compiler,type: use-case,P3
low
Critical
283,871,408
rust
Tracking issue for future-incompatibility lint `tyvar_behind_raw_pointer`
This is the **summary issue** for the `tyvar_behind_raw_pointer` future-compatibility warning and other related errors. The goal of this page is describe why this change was made and how you can fix code that is affected by it. It also provides a place to ask questions or register a complaint if you feel the change sho...
A-lints,T-lang,T-compiler,C-future-incompatibility,C-tracking-issue
medium
Critical
283,952,200
angular
property binding syntax: [label] instead of this [label]="label"
## I'm submitting a... <pre><code> [ X] Feature request </code></pre> ## Current behavior ``` @Component({ template: ' <my-other [label]="label"></my-other>' //... }) export class TestComponent { label = 'hello'; } ``` ## Expected behavior Having to only type this ``` <my-other [lab...
feature,area: core,core: binding & interpolation,feature: under consideration
medium
Major
283,953,179
TypeScript
Typescript can't infer types when using Proxy
**Code** ```javascript let obj = { prop1: function () { }, prop2: 'hello', } let prox = new Proxy(obj, { get: function (target, name) { return 5; } }); prox.prop1. ``` **Expected behavior:** I would expect that when I type ```prox.prop1.```, I would get typescript suggestions f...
Bug,Help Wanted,Domain: lib.d.ts
high
Critical
284,016,420
rust
Cannot generate unit struct with a macros
It doesn't seem possible to generate unit struct declaration from a macros in neither stable nor nightly version of Rust. [A simplified playground sample](https://play.rust-lang.org/?gist=0dbd7527efdae183f8bfc3fadb28c2d7&version=stable): ```rust macro_rules! def_struct { ($name:ident $($body:tt)*) => { p...
C-enhancement,A-macros,T-lang
low
Critical
284,145,165
TypeScript
Inference problem
I only wish I could better describe the problem. I'm trying to properly declare the type for `all()`. Here's how it's used: ``` Promise.resolve('kromid') .then(all(identity, identity)) .then(([a, b]) => a.splita); ``` Problem is that `a` and `b` are inferred as `any` instead of `string`, so TS doesn't fa...
Bug
low
Minor
284,146,629
TypeScript
tsc includes previous output in result when allowJs is enabled and "exclude" is non-empty
**TypeScript Version:** 2.7.0-dev.20171222 **Code** For easy access, clone this gist: https://gist.github.com/WasabiFan/6922d6eb6224945ac809c216fdc37089 **test.ts:** ```ts // Source code here ``` **tsconfig.json:** ```json { "compilerOptions": { "target": "es5", "module": "commonjs", ...
Suggestion,In Discussion
low
Critical
284,165,409
TypeScript
Unions without discriminant properties do not perform excess property checking
<!-- BUGS: Please use this template. --> <!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript --> <!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md --> <!-- Please try to reproduce the issue...
Suggestion,Needs Proposal
high
Critical
284,165,892
opencv
test_java: org.opencv.test.calib3d sporadic failure
[Linux32](http://pullrequest.opencv.org/buildbot/builders/master_noOCL-lin32/builds/237): ``` testSolvePnPListOfPoint3ListOfPointMatMatMatMat Max difference between expected and actiual Mats is 0.008481956505988819, that bigger than 0.001 junit.framework.AssertionFailedError: Max difference between expected an...
bug,test,category: calib3d,category: java bindings
low
Critical
284,174,366
rust
Enforce informal properties of traits such as `PartialEq`
The trait `PartialEq` represents a partial equivalence — that is, a relation that is symmetric and transitive. However, Rust doesn't currently enforce these properties in any way. This means we get issues like this: ```rust struct A; struct B; impl PartialEq<B> for A { fn eq(&self, _other: &B) -> bool { ...
A-lints,A-trait-system,T-lang,C-feature-request
low
Critical
284,208,088
rust
test_mul_add failt in debug mode for arm-unknown-linux-gnueabi
This following test extract from libstd: ```rust #[cfg(test)] mod tests { macro_rules! assert_approx_eq { ($a:expr, $b:expr) => ({ let (a, b) = (&$a, &$b); assert!((*a - *b).abs() < 1.0e-6, "{} is not approximately equal to {}", *a, *b); }) ...
O-Arm,T-libs-api,C-bug
low
Critical
284,283,767
rust
Highlight when APIs panic in rustdoc
When an API specifically has a "will panic on X condition" guarantee (e.g. indexing APIs, unwrap, expect, perhaps allocating APIs) it would be nice if the stdlib could highlight these the way we do `unsafe` methods. https://twitter.com/0x424c41434b/status/944316751919140865 Worth prototyping this behind a featu...
T-rustdoc,C-enhancement
medium
Major
284,293,168
vue-element-admin
Speaking English
Hi everyone, I would like to say that if issues have English translation with their original (Chinese) descriptions it would be awesome. It has two sides, we (not Chinese speakers/readers) can understand the problem and read the solution, and also we may help to overcome the issue as well. So it could be a win-win s...
in plan
medium
Major
284,309,770
pytorch
torch.cuda.device_count() returns 1 using 4 TitanX setup.
nvidia-smi: ``` +-----------------------------------------------------------------------------+ │ | NVIDIA-SMI 384.66 Driver Version: 384.66 | │ |-------------------------------+----------------------+----------------------+ ...
needs reproduction,module: cuda,triaged
low
Critical
284,311,726
go
net: document that DialIP can only be used with WriteMsgIP of Connection-less protocols
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? `go version go1.9.2 linux/amd64` ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture are you using (`go env`)? ```sh-session ...
Documentation,NeedsInvestigation
low
Critical
284,337,016
godot
Editable subobjects issue
**Godot version:** <!-- If thirdparty or self-compiled, specify the build date or commit hash. --> Godot 3.0 Beta 2 **OS/device including version:** <!-- If graphics related, specify also GPU model and drivers. --> Windows 10 64bit Intel i7 6700k MSI GeForce GTX 1060 (6GB) 16 GB RAM DDR4 Z170 Gaming Pro ...
bug,topic:editor
low
Critical
284,383,756
rust
Function pointer docs may need updating
We may need documentation updated for function pointers when used in enums. I won't pretend I understand half of what's written here, but here's the log from IRC (#rust_beginners) where we debugged this issue: 1. [Rust Playground (`Sharlin`)](https://play.rust-lang.org/?gist=d25cb785bee399efe590293ab2c1a44a&version=...
C-enhancement,P-medium,T-compiler
medium
Critical
284,394,195
rust
Avoid path to macro-generated extern crate in error messages
```rust use serde::Deserialize; // Expands to: // // const _IMPL_DESERIALIZE_FOR_S: () = { // extern crate serde as _serde; // impl<'de> _serde::Deserialize<'de> for S { /* ... */ } // } #[derive(Deserialize)] struct S; fn main() { // Requires S: serde::Serialize. serde_json::to_string(&...
C-enhancement,A-diagnostics,T-compiler,WG-diagnostics
low
Critical
284,431,789
rust
rustdoc-tool does not build with --enable-llvm-link-shared
Seems to be missing a `-L` flag: ``` = note: /usr/bin/ld: cannot find -lLLVMX86Disassembler /usr/bin/ld: cannot find -lLLVMX86AsmParser /usr/bin/ld: cannot find -lLLVMX86CodeGen ... ``` Any ideas on fixing this?
A-linkage,T-rustdoc,C-bug
low
Major
284,435,273
youtube-dl
Support request for thoptv.stream
## 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 ...
site-support-request
low
Critical
284,441,373
opencv
Access Violation error in cuvidCtxLockCreate when using cuda 9
<!-- 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). This is a template helping you to create an issue which can be...
bug,priority: low,category: gpu/cuda (contrib)
low
Critical
284,455,413
javascript
Method chaining lets the receiver nominate a next receiver
Re https://github.com/airbnb/javascript#constructors--chaining Code like ```js luke.jump().setHeight(20); ``` enables luke to provide something other than luke itself as the receiver of the `setHeight` message. When this delegation of control is intended, such method chaining is great. OTOH, if the caller assu...
pull request wanted,editorial
low
Minor
284,458,401
javascript
Distinguish doc-comments from other comments
https://github.com/airbnb/javascript#comments--multiline recommend `/** ... */` without even mentioning `/* ... */`. The former should only be used for doc-comments. The latter should be used for all comments that are not doc-comments, even if they are multiline.
editorial
low
Major
284,459,694
rust
Unreadable error messages on linking failure
This is a very annoying aspect of rustc - if it fails to link a library, it doesn't tell you the path, it doesn't tell you which library it couldn't find, it just spits out a completely unreadable error message and quits. For example: ``` Compiling deflate v0.7.17 error: could not exec the linker `cc`: No such ...
A-linkage,C-enhancement,A-diagnostics,P-low,E-mentor,T-compiler,WG-diagnostics
medium
Critical
284,488,035
go
x/text/collate: ignores width even if the flag is not specified
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.9 linux/amd64 ### Does this issue reproduce with the latest release? Did not check. ### What operating system and processor architecture are you using (`go env`)? GOARCH=...
NeedsInvestigation
low
Critical
284,606,936
neovim
Multiline completion (also affects LSP textDocument/completion results)
Currently Vim (and by bloodline also NeoVim) allows only single line completions. This is quite limiting as there is also no way to determine beginning and end of the completed text so this leaves us in the limbo where we need to do some hackish things to achieve things like multiline snippets. Most obvious way to d...
enhancement,completion
low
Major
284,616,073
go
testing: Helper's highest function call's information should be maintained for any subsequent/nested calls
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.9.2 android/arm64 ### Does this issue reproduce with the latest release? Yes (I think 1.9.2 is the latest release) ### What operating system and processor architecture are...
help wanted,NeedsFix
low
Critical
284,618,525
rust
Types in std::os::raw should be same as libc crate
Right now, there's a bit of a discrepancy between these two, even though there shouldn't be. While the libc crate has [very complicated logic](https://github.com/rust-lang/libc/search?q=%22pub+type+c_long%22) to determine how the `c_*` types are defined, the standard library uses a [much simpler logic](https://github.c...
C-enhancement,T-libs-api
medium
Major
284,623,181
opencv
stitching: matrix.cpp error and core dumped
Using recent git version. ``` wget -O coredump1.png https://i.imgur.com/eNkIZtU.png wget -O coredump2.png https://i.imgur.com/DfV31L9.png ``` ``` md5sum coredump*.png baed18323666725f7c07b4b2186cc884 *coredump1.png 55417fdf2b1b14999c22eaa35828781b *coredump2.png ``` ``` ./opencv/build/bin/cpp-example-stitc...
bug,category: stitching
low
Critical
284,644,976
pytorch
Invoking MKL in multiprocessing with importing torch causes blocking
Using numpy.lialg.svd(invoking functions in MKL may be its triger) in multiprocessing with importing torch causes blocking. The following stops at "Start svd": ```python #!/usr/bin/env python import multiprocessing as mp import numpy import torch # Just to import, not using anymore def f(x): print('...
module: multiprocessing,triaged,module: mkldnn,module: mkl
low
Minor
284,738,223
youtube-dl
Support request for familygo.ca
## 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 ...
tv-provider-account-needed
low
Critical
284,739,300
youtube-dl
Support request for knowledgekids.ca
## 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 ...
geo-restricted
low
Critical
284,746,322
opencv
imshow through JNI does not work on Mac OSX
Hello, We are currently working on a Java project for which some image processing is done in C++ native code through JNI. However, we noticed that the cv::imshow() function does not work on Mac OSX if called through JNI. At the opposite, it works well if in a C++ only program, and works also well in Ubuntu for both ...
priority: low,category: java bindings,platform: ios/osx
low
Critical
284,759,151
kubernetes
Allow specifying window over which metrics for HPA are collected
/kind feature # Use case The docs say "The Horizontal Pod Autoscaler automatically scales the number of pods in a replication controller, deployment or replica set based on observed CPU utilization." without specifying the window over which this was observed. Haven't found where it's defined but it seems like it's ...
sig/autoscaling,kind/api-change,kind/feature,sig/instrumentation,lifecycle/frozen
high
Critical