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
253,545,490
opencv
viz::WMesh is not documented (properly)
##### System information (version) - OpenCV => 3.3 - Operating System / Platform => Ubuntu 16.04 (x86-64) with QT 5.5 - Compiler => g++ 5.4.0 ##### Detailed description The `WMesh` class is very poorly documented and there are no examples on how to use it. While it is possible to load a mesh from a file (loade...
feature,category: documentation,category: viz
low
Critical
253,581,567
vscode
Search bar input field very narrow
- VSCode Version: Code 1.15.1 (41abd21afdf7424c89319ee7cb0445cc6f376959, 2017-08-16T17:15:57.756Z) - OS Version: Darwin x64 16.7.0 - Extensions: the listing length exceeds browsers' URL characters limit --- Steps to Reproduce: 1. Open search in current file 2. See attached file <img width="2313" alt="scher...
editor-find,under-discussion
medium
Major
253,596,756
nvm
NVM Detects Windows NPM Versions when using Bash on Windows
- Operating system and version: Ubuntu 16.04 on Windows 10 Build 16275 (Also tested with OpenSUSE Leap 42.2) - `nvm debug` output: <details> <!-- do not delete the following blank line --> ```sh nvm --version: v0.33.2 $SHELL: /bin/bash $HOME: /home/seth $NVM_DIR: '$HOME/.nvm' $PREFIX: '' $NPM_CONFIG_PREFI...
OS: windows,needs followup
medium
Critical
253,597,242
angular
Route Transition no longer working if loaded component has animation trigger
## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [x] Regression (a behavior that used to work and stopped working in a new release) [ ] Bug report [ ] Feature request [ ] Documentation issue or request [ ] Support request </code></pre> ## Current behavior Navigating ...
type: bug/fix,area: animations,freq2: medium,P3
medium
Critical
253,729,077
flutter
Last plugin pod is still embedded in an iOS app even after it is removed from the pubspec
I found a problem with release build for iOS. The app is built, but it crashes on launch. ``` [VERBOSE-3:dart_init.cc(560)] Error while initializing the Dart VM: JIT runtime cannot run a precompiled snapshot ``` iOS debug, Android debug/release work well. This issue is on master and alpha channels. New project ...
platform-ios,tool,platform-mac,P2,a: plugins,team-ios,triaged-ios
low
Critical
253,791,111
vscode
[folding] Automatic function/method folding
Please consider automatic function folding, based on the current cursor location. I think it can be a great way to help developers maintain a high level mental map of source files and ease navigation between functions/methods. While it builds on existing building blocks already present in many code editors (block fo...
feature-request,editor-folding
medium
Critical
253,835,473
angular
Can we hope to have this common animation scenario solved in version 5 ?
<!-- 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,freq2: medium,P4
low
Critical
253,855,648
neovim
CTRL-L of popupmenu-keys is broken for complete() function
<!-- Before reporting: search existing issues and check the FAQ. --> - `nvim --version`: ``` NVIM v0.2.0 Build type: Release Compilation: /usr/lib/ccache/bin/cc -specs=/void-packages/common/environment/configure/gccspecs/hardened-cc1 -fstack-protector-strong -D_FORTIFY_SOURCE=2 -mtune=generic -O2 -pipe -g -W...
bug-vim,needs:vim-patch
low
Critical
253,868,040
pytorch
Add a hash function for tensor data
Hi, I'm looking at the `def __hash__()` method defined in Tensor base class. That function builds off on python's `id()` method, which runs on CPU right? Is there a way to hash a tensor on GPU and use the hashed value as index to store this Tensor?
triaged,function request
low
Major
253,996,319
youtube-dl
Youtube download fails with: unable to download video data: HTTP Error 401: Unauthorized
- [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.08.27.1** ### Before submitting an *issue* make sure you have: - [x] At least skimmed through the [README](https://github.com/rg3/youtube-dl/blob/master/README.md), **most notably** the [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS...
cant-reproduce
low
Critical
254,000,780
go
x/text/secure/bidirule: label starting with EN UTF8 property should be invalid
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? 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" ...
NeedsInvestigation
low
Critical
254,009,072
go
runtime: Reducing theoretical heap fragmentation
It is possible that after one or more GC cycles a span may contain only a single allocated object. After the program makes a phase change that size object may become unpopular and there is no need to allocate in that span again. This would be detectable after several GCs cycles as a span that has not been allocated in....
GarbageCollector
low
Minor
254,009,912
flutter
`flutter devices` doesn't properly list emulator names
## Steps to Reproduce 1. Create and name some AVDs in the Android Virtual Device Manager 1. Run `flutter devices` => list shows the wrong names of the AVDs ![screen shot 2017-08-30 at 16 00 09](https://user-images.githubusercontent.com/13644170/29876173-525c2d16-8d9c-11e7-99db-514a8908ff9f.png) ``` mit-ma...
platform-android,tool,customer: crowd,P3,team-android,triaged-android
medium
Major
254,038,499
pytorch
ImportError: dlopen: cannot load any more object with static TLS
As reported by @jfsantos A simple `import torch` gives the error: ``` ImportError: dlopen: cannot load any more object with static TLS ``` # Analysis of the issue glibc has a table called the DTV. There is a slot for every dlopen'd library with TLS. Its use is not important for this discussion. The DT...
module: crash,module: build,triaged,module: assert failure,has workaround
high
Critical
254,040,558
pytorch
CUDA multinomial is limited to 2^24 categories
As reported by @Moustapha6C. The following fails, because there are too many categories: ```python x = torch.randn(9000 * 5000).cuda().abs() out = torch.multinomial(x, 10, replacement=True) ``` cc @ezyang @gchanan @zou3519 @bdhirsh @jbschlosser @anjali411 @ngimel @fritzo @neerajprad @alicanb @vishwakftw @nikitav...
high priority,module: distributions,module: cuda,triaged,module: 64-bit,function request
low
Major
254,106,964
TypeScript
Merging constants with namespaces
I wrote this in closed #13536 first, but thought it might get lost there, so filing a new issue. Merging `const`s with namespaces really makes sense. For a real-world example, let's take a popular library: [TinyMCE](https://www.tinymce.com/), writing proper type definitions for which requires this feature. Namespace...
Suggestion,In Discussion
medium
Critical
254,172,508
flutter
Add more information to the animation library's landing page
There are widgets for building animations outside of the animation library, e.g., all the *Transition widgets in the Widget library. Can we link to them from the animation library's landing page: https://docs.flutter.io/flutter/animation/animation-library.html? Ideally, it could be useful to draw a diagram linking k...
framework,a: animation,d: api docs,c: proposal,P3,team-framework,triaged-framework
low
Minor
254,180,079
opencv
Documentation improvement plan
i have a request and a suggestion about [Documentation improvement plan](https://github.com/opencv/opencv/wiki/Documentation-improvement-plan) i already made some contributions related to documentation and i want to keep working on it. I want to work according a right plan so if some tasks that users can do are iden...
feature,category: documentation
low
Major
254,218,976
go
go/types: doesn't understands constants defined in cgo code
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? Yes, fails with `git tip` as well. ### What operating system and processor architecture are you us...
NeedsInvestigation
low
Critical
254,329,385
vscode
Option to allow quickSuggestions inside words
quickSuggestions do not show up when typing in the middle of a word. It would be great if that could be configured by the language (or even the user). Languages with completion proposals that do not only insert but also replace the end of the symbol, can then enable this setting.
feature-request,suggest,editor-core
low
Minor
254,339,249
vue
Provide/inject for custom directives
### What problem does this feature solve? If a user uses a custom directive in their app in multiple places they might need to configure the directive in two or more different ways depending on the area of the app in which the directive is being used. If this configuration is used in many instances in one of these are...
feature request
medium
Critical
254,396,313
opencv
test_video: OCL_Video/PyrLKOpticalFlow.Mat sporadic failures
Nightly Linux builds: - [20170827](http://pullrequest.opencv.org/buildbot/builders/master-lin64/builds/10204) - [20170828](http://pullrequest.opencv.org/buildbot/builders/master-lin64/builds/10205) - [20170829](http://pullrequest.opencv.org/buildbot/builders/master-lin64/builds/10206) [Precommit builds](http://pu...
bug,category: video,category: ocl
low
Critical
254,450,682
opencv
DNN_TARGET_OPENCL produces wrong output on multiple forward passes
##### System information (version) - OpenCV => 3.3.0 - Operating System / Platform => <b>Windows 64 Bit</b> - Compiler => Visual Studio 2015 ##### Detailed description When I have tested Halide backend for dnn module along with opencl dnn target I have got an issue. After the first forward pass through the n...
bug,category: dnn
low
Minor
254,468,776
TypeScript
Problem with destructuring + default values in the implementation of an inherited signature
**TypeScript Version:** 2.4.2, 2.5.2, 2.6.0-dev.20170831 Suppose I have a library which exports the following code ```ts export interface Vector { x: number y: number } export interface Foo { foo(vector?: Vector): void; } export class Bar implements Foo { foo({ x, y }: Vector = { x: 3, y: 19...
Bug
low
Critical
254,494,848
rust
Re-enable detection of unused library #![feature] directives
Currently the compiler will warn users about unused `#![feature]` directives if they're (a) a library feature and (b) not actually ever used. The compiler doesn't currently warn you about unused `#![feature]` directives tied to language features. In the process of making the stability annotations more incremental-fr...
A-lints,P-medium,T-lang,T-compiler,C-bug
low
Major
254,497,937
flutter
Move the microbenchmarks to release mode rather than profile mode
cc @yjbanov Based on suggestion in https://github.com/dart-lang/sdk/issues/30521
a: tests,team,framework,c: performance,dependency: dart,P3,team-framework,triaged-framework
low
Minor
254,505,008
TypeScript
exported definitions for mix-in lack proper return type for functions returning "this"
<!-- 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 --> **TypeScript Version:** 2.4.2 **Co...
Bug
low
Critical
254,510,926
rust
Global allocator symbols aren't dllexport on MSVC
But they need to be for the `dylib` crate type! (and only the `dylib` crate type). Not really a critical bug, but I'm tagging this with a FIXME in the code.
A-linkage,T-compiler,O-windows-msvc,C-bug
low
Critical
254,604,533
TypeScript
Cannot implement generic type guarding function
<!-- 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 --> **TypeScript Version:** 2.5.2 **Co...
Bug
low
Critical
254,644,782
angular
Dynamically created view force a parent view update
<!-- 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,freq2: medium,area: core,core: change detection,P3
low
Critical
254,645,223
opencv
V4L2: 1280p@30fps not available by default any more
after the merge of #9479, 1280p@30fps is no longer available by default. One is now required to do: ```py cap.set(cv2.CAP_PROP_FOURCC, cv2.VideoWriter_fourcc(*"MJPG")) ``` to be able to select this mode. Used camera Logitech C615. `v4l2-ctl --list-formats-ext`: ``` ioctl: VIDIOC_ENUM_FMT Index : 0 ...
category: videoio(camera),future
low
Minor
254,652,925
go
runtime: improve "sweep increased allocation count" diagnostics
The infamous "sweep increased allocation count" panic is not very informative. What it really means is that a free object was found to be live. It should say that, and it should say which object it is and dump its contents. Essentially, it can cheaply give half of the information that gccheckmark can. This half may eve...
NeedsFix,compiler/runtime
low
Critical
254,654,146
go
runtime: add mode for pointer-past-end testing
Over time, we've had several issues involving unsafe code constructing pointers just past the end of objects, particularly in runtime and reflect. Some examples are #21717, #19724, and #9384. These sorts of issues are very hard to write tests for. We should consider adding a testing mode to aid with this. One approa...
NeedsFix,compiler/runtime
low
Critical
254,667,928
kubernetes
Minimize impact of kubelet stats collection
**Is this a BUG REPORT or FEATURE REQUEST?**: /kind feature Today, the kubelet runs cAdvisor to collect node, pod, and container usage stats. The goal discussed in sig-node has been to split usage stat collection responsibilities as follows: * kubelet collects node and pod usage stats * container runtimes coll...
area/kubelet,sig/node,kind/feature,priority/important-longterm,lifecycle/frozen,needs-triage
medium
Critical
254,741,314
kubernetes
Rethink quota system
Problems with current quota system: * #51476 - invalid objects still consume quota * #51749 - uninitialized objects still consume quota * no way for user-supplied apis to interact with the quota system * replenishment is slow * doesn't track object size (unless this has been fixed?) I'd like to see a quota syst...
sig/api-machinery,lifecycle/frozen
low
Major
254,746,000
go
cmd/compile: avoid slow versions of LEA instructions on x86
On newer x86 cpus (amd and intel) 3 operand LEA instructions with base, index and offset have a higher latency and less throughput than 2 operand LEA instructions. The compiler when emitting the instructions could rewrite slow leas into e.g. LEA + ADD instructions where possible (flag clobbering ok) similar how MOV...
Performance,NeedsFix,early-in-cycle
medium
Major
254,779,027
go
spec: clarify rule 3 for selector expressions
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? yes ### What did you do? ```golang package main type T struct { x int } type P *T type...
Documentation,NeedsFix
low
Critical
254,793,150
opencv
lack of information of the Visual Studio 2017
##### System information (version) - OpenCV => 3.3 - Operating System / Platform => windows 10(64 bit) - Compiler => none ##### Detailed description Information on visual studio on the page for windows users is stopped at VS2015. Specifically, you can see the lack of information in VS2017 in the command colum...
feature,category: documentation
low
Minor
254,793,253
opencv
'OpenCV_Install_Directory.png' in 'Installation in Windows' page is old
##### System information (version) - OpenCV => 3.3 - Operating System / Platform => Windows 10(64 Bit) ##### Detailed description Since I want to use OpenCV 3.3 on Windows 10, I saw http://docs.opencv.org/master/d3/d52/tutorial_windows_install.html#tutorial_windows_install_path . However, since 'OpenCV_Install_D...
feature,category: documentation
low
Minor
254,820,802
go
regexp: Scan the input string backward for patterns ending in $
As [suggested](https://github.com/golang/go/issues/21463#issuecomment-326151555) by @rsc: > It seems clear that we should handle patterns ending in $, like `\.(jpe?g|gif)$`, by scanning the string backward, which cuts the processing from O(n) to O(1) for an input of size n. That's easy to add to the existing matcher...
Performance,help wanted,NeedsFix
low
Minor
254,836,137
puppeteer
PDF creation pixel sizes causes layout to change
Hi, When creating PDFs from a responsive web page, lets say the page has a css rule to show a narrower version below `1024` pixels screen width and we supply `width: "1024px"` to `pdf` function. The rule should not apply on this case however it does and the layout changes in generated pdf. Only when the width pa...
bug,upstream,chromium,confirmed,P3
medium
Critical
254,852,991
rust
export_name works for msvc x86_64 toolchain, but not i686
I'm trying to build a simple dll and export a function with a pre-mangled name. I have `crate-type` set to `cdylib` and my function decorated like so: #[allow(non_snake_case)] #[export_name="?Hook@@YAXXZ"] // This is how MSVC mangles this name. pub fn Hook() { I'm using MSVC 2017 Community edition v...
A-linkage,T-compiler,C-bug,O-x86_32
medium
Critical
254,857,169
puppeteer
How can I get the raw size or content-length of the response?
I mean some response is gzipped, I want to get the size, thanks
feature,upstream,chromium
medium
Major
254,880,773
go
cmd/compile: obscure initialization loop error message due to inlining
go version devel +0a4913b2d4 Wed Aug 23 11:09:11 2017 +0200 linux/amd64 https://play.golang.org/p/TW5DVv3zTk Produces obscure: ``` tmp/sandbox278346721/main.go:3:5: initialization loop: prog.go:3:5 A refers to prog.go:3:5 A ``` If compiled with `-l` produces understandable error message: ``` /tmp/test...
NeedsFix,compiler/runtime
low
Critical
254,883,548
rust
Support coercing non-capturing closures to extern function pointers
This is a followup to https://github.com/rust-lang/rust/issues/39817 . Non-capturing closures now coerce to function pointers, but not to `extern fn` pointers, as provided to C functions expecting a callback. Adding support for this would make it much simpler to call a C function and provide an appropriate callback inl...
A-closures,T-lang,T-compiler,C-feature-request
low
Major
254,886,643
vscode
Create an option to position the intellisense parameter info top or bottom.
Currently the parameter info tooltip is always placed above the cursor. This is often quite annoying since it completely blocks code in the above lines and you sometimes need to look at your context to know what values to give the parameters. Example: ![image](https://user-images.githubusercontent.com/702922/300050...
feature-request,editor-parameter-hints
high
Critical
254,912,142
rust
Re-exported types have confusingly different documentation
Re-exported types seem to have more confusing documentation than the original type. I noticed this while reviewing rayon::Configuration which is re-exported from rayon-core. --- #### original/src/lib.rs ```rust pub trait T {} pub struct S; impl S { pub fn f<F>(_: F, _: Box<T>) -> Self where ...
T-rustdoc,C-bug,A-cross-crate-reexports
low
Major
254,974,023
awesome-mac
Add open-in-buttons-for-finder-toolbar
Hi can you add this tools to your list? https://github.com/cnstntn-kndrtv/open-in-buttons-for-finder-toolbar
vote
low
Minor
255,031,757
godot
RigidBody2D ignores set_position when switching between MODE_RIGID and MODE_STATIC/KINEMATIC
**Operating system or device, Godot version, GPU Model and driver (if graphics related):** Windows 10, current master branch (6d233c651b21ecaef78fbb20d0365a22919b72b1), nVidia GeForce GTX 1080, driver version V385.41 (but probably not related to GPU) **Issue description:** <!-- What happened, and what was expec...
bug,confirmed,topic:physics
low
Major
255,044,869
angular
Support for async rendering
<!-- 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,feature: under consideration
high
Critical
255,057,458
go
go/ast: CommentMap mishandles loose, trailing file comments
`go version devel +812b34efae Mon Sep 4 00:07:33 2017 +0000 linux/amd64` Construct a comment map for: ```go package p func f() { return } // loose trailing comment ``` The loose trailing comment is associated in the CommentMap with the return statement inside f. It should probably be associa...
NeedsInvestigation
low
Major
255,094,610
angular
Injected Styles don't apply to HTML modified through other libraries due to selectors scope
## I'm submitting a... [ ] Regression [X] Bug report [ ] Feature request [ ] Documentation issue or request [ ] Support request ## Current behavior While injecting styles with a component, if a new element is injected by another library (for example rangy) the new element doesn't get styled even if it's inside ...
type: bug/fix,freq1: low,area: core,core: CSS encapsulation,P3
low
Critical
255,120,715
rust
Using LTO while building as static library causes conflicts
If you build your Rust project as a static library to link it into a C codebase, you usually want to crank up the optimizations, as also indicated by the librsvg blogpost (towards the end): https://people.gnome.org/~federico/blog/librsvg-build-infrastructure.html This is all fine, until you want to link in anoth...
A-linkage,T-compiler,C-bug
medium
Major
255,282,601
opencv
Extend CvCaptureCAM_Aravis::open( int index ) to allow for custom ROI
Hi all, I would like to extend CvCaptureCAM_Aravis to allow arv_camera_set_region() to take in a custom set of ROI coordinates. Basically to allow for heightMin and heightMax to be changed, and to allow for two extra paremeters x and y to be passed in (as per arv_camera_set_region(x,y,height,width) in the aravis dri...
feature,category: videoio(camera)
low
Minor
255,288,401
pytorch
BatchNorm{1-2-3}d are redundant
Since https://github.com/pytorch/pytorch/pull/2020, `nn.BatchNorm1d`/`nn.BatchNorm2d`/`nn.BatchNorm3d` are completely redundant, as there are no more size checks that are performed in the input tensor I see two options here: * add the size-checks back for each class; * deprecate BatchNorm{1-2-3}d and use instead Bat...
module: nn,triaged
low
Minor
255,300,864
rust
unused_assignments does not care about unused assignments to reference derefs
```rust pub fn foo(b: bool, x: &mut i32) { if b { *x = 6; } *x = 7; } ``` does not emit the `unused_assignments` lint. I understand that this is not possible for `DerefMut` in general, because every call to `deref_mut` (via desugaring `*`) can result in a different reference, but for pure ...
A-lints,T-compiler,C-bug
low
Critical
255,319,841
godot
animations don't loop after importing .dae from blender in v3
**Operating system or device, Godot version, GPU Model and driver (if graphics related):** Ubuntu 17.04 - Godot v3.0.alpha.custom_build.6d233c6 The animation loops correctly in the editor but now then the scene is played. Check out the attached project. [godot-dbg.zip](https://github.com/godotengine/godot/files/...
bug,topic:import
medium
Major
255,329,404
pytorch
[feature request] add pairwise ranking loss
module: loss,triaged
low
Minor
255,331,848
bitcoin
Wallet should be able to store multiple transactions with same txid
Pre-segwit, malleated transactions would have a different txid and therefore be accepted and stored by the wallet when seen on the network. Post-segwit, it's possible for a malleated transaction that is seen on the network to be ignored by the wallet, because we index the wallet db by txid, and we are currently only...
Wallet
low
Minor
255,335,781
rust
Use #[repr(C)] HList's to infer type-erased fmt fn pointers in format_args!'s static data.
Right now `format_args!` uses, e.g. `ArgumentV1::new(&runtime_data, Debug::fmt)` (for `{:?}`), at runtime, using up *two* pointers per argument at runtime instead of just one (`&runtime_data`). With `allow_internal_unsafe` and #44240, we can place the (e.g. `Debug::fmt`) `fn` pointers in (rvalue-promoted) `'static` ...
C-enhancement,T-libs-api,I-heavy,A-fmt
low
Critical
255,347,360
rust
Updating dependency caused type inference to fail on unrelated code
Note: This is not a bug. This is a case that I ran into that was difficult to debug, and extremely confusing. In the interest of the ergonomics initiative, I wanted to report it. However, rustc is behaving as expected. Feel free to close this at your leisure. At some point last night, Diesel's builds suddenly start...
C-enhancement,A-diagnostics,T-compiler
low
Critical
255,378,356
TypeScript
Allow to extract code containing `return` statement if it's at the end of a function
**TypeScript Version:** nightly (2.6.0-dev.20170904) **Code** ```ts export function f() { if (1) { return 1; } ...do stuff... } export function g() { ...do stuff... if (1) { return 1; } } ``` **Expected behavior:** Able to extract the `if` stat...
Suggestion,Domain: Refactorings,Experience Enhancement
low
Minor
255,385,908
youtube-dl
[ku6] can't download video from ku6 anymore...
## 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 ...
broken-IE
low
Critical
255,394,211
youtube-dl
can not extact some iqiyi playlist video url
## 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 ...
bug
low
Critical
255,413,434
TypeScript
Disable formatting a region of code using directives
<!-- 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 --> From: https://github.com/Microsoft/vsc...
Suggestion,Domain: Formatter,Awaiting More Feedback,VS Code Tracked
high
Critical
255,422,759
vscode
introduce "pathMapping" as a more powerful replacement for "remoteRoot/localRoot"
Currently the node/chrome debuggers support two models of mapping paths between the backend/runtime and the VS Code workspace: - Node Debug: "remoteRoot/localRoot" - Debugger for Chrome: "pathMapping" Since the "pathMapping" supports multiple mappings and users are asking for it, we should support this across the...
feature-request,debug
low
Critical
255,440,313
rust
Expose min and max values in benchmarks
Currently, `cargo bench` prints output along these lines: ``` test bls12_381::bench_pairing_final_exponentiation ... bench: 1,753,823 ns/iter (+/- 30,711) test bls12_381::bench_pairing_full ... bench: 2,641,309 ns/iter (+/- 35,774) test bls12_381::bench_pairing_g1_preparation ... bench: ...
T-dev-tools,C-feature-request,A-libtest
low
Critical
255,465,509
youtube-dl
I would like to ask you can download the video to support the crooked website
Is it possible to support the download of crooked video? http://www.yy.com/x/15012_147125102_54880976_1504611031651 http://www.yy.com/x/15012_147125102_54880976_1504265354742
site-support-request
low
Minor
255,494,790
react-native
View will lost background color when set borderRadius and height is large enough on Android device
### Is this a bug report? Yes ### Have you read the [Contributing Guidelines](https://facebook.github.io/react-native/docs/contributing.html)? No ### Environment @mjmasn's environment: ``` Environment: OS: Linux 4.13 Node: 8.11.0 Yarn: 1.7.0 npm: 5.6.0 Watchman: 4.9.0 Xcode: N/A ...
Help Wanted :octocat:,Platform: Android,Priority: Low,Bug
low
Critical
255,599,251
rust
Meta issue for FIXMEs that reference closed issues
@Eh2406 compiled this awesome list. I think it should be a meta issue. So here it is https://gist.github.com/Eh2406/b92f034f8adc193894482e19c79d80f1
C-cleanup,metabug,T-libs-api,T-compiler,E-help-wanted
medium
Major
255,604,584
youtube-dl
SSL Error on windows during download [SSL: DECRYPTION_FAILED_OR_BAD_RECORD_MAC] decryption failed or bad record mac (_ssl.c:1748)
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.09.02*. 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**...
cant-reproduce
medium
Critical
255,619,819
angular
HttpParams doesn't accept array
<!-- 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: common/http,P4,feature: under consideration
medium
Critical
255,636,289
TypeScript
JSDoc Parser breaks with a complex `@pattern` tag
<!-- 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 --> **TypeScript Version:** 2.5.2 **Co...
Bug,Help Wanted,Domain: JSDoc
low
Critical
255,678,018
every-programmer-should-know
What are some of the best resources on Software/Code Design?
Needs some ❤️
low
Major
255,678,236
every-programmer-should-know
What are some of the best resources on Engineering Processes?
Needs some ❤️
low
Minor
255,678,787
every-programmer-should-know
What are some of the best resources on Development Methodologies?
Ideally, something referencing current and historical methodologies: - Kanban - Lean - Scrum - RUP - V-Model - XP etc
Needs some ❤️
low
Minor
255,679,068
every-programmer-should-know
What are some of the best resources on Code Construction?
- Refactoring - Debugging - Design
Needs some ❤️
low
Critical
255,718,710
TypeScript
Allow class inheritance in ambient contexts, even with a base private constructor
**TypeScript Version:** nightly (2.5.0-dev.20170902) **Code** ```ts declare namespace Foo { class Bar { private constructor(); Box: string; } class Baz extends Bar { private constructor(); } function generator(): Baz; } let x = Foo.generator(); x.Box = 'a...
Suggestion,Help Wanted,Committed
low
Critical
255,737,963
TypeScript
Array.prototype.sort make compareFn required in lib.d.ts
This is a suggestion to change the signature declaration of Array sort in lib.d.ts from ```ts sort(compareFn?: (a: T, b: T) => number): this; ``` to ```ts sort(this: string[], compareFn?: (a: string, b: string) => number): this; sort(compareFn: (a: T, b: T) => number): this; ``` i.e. make compareFn non-optio...
Suggestion,Domain: lib.d.ts,Experimentation Needed
medium
Critical
255,757,795
youtube-dl
Running inside docker container from non root user
When i try to run youtube-dl inside docker container from non root user i recieve this error: failed to import the site module traceback (most recent call last): file "/usr/lib/python3.6/site.py", line 544, in main() file "/usr/lib/python3.6/site.py", line 530, in main known_paths = addusersitepackages(known_paths)...
external-bugs
low
Critical
255,764,043
TypeScript
The language service does not resolve symbolic links
The LS does not provide a mechanism for LS hosts to resolve symbolic links, which can result in build errors when using _gulp-tsb_ or other tools to compile a project that uses symbolic links. To support this, we need to add a `realpath` optional method to the `LanguageServiceHost` interface to allow an LS host to s...
Bug,API
low
Critical
255,838,012
opencv
Zooming in Viz3d not possible after camera rotation
##### System information (version) - OpenCV => 3.3 - Operating System / Platform => Ubuntu 16.04 (x86-64) with QT 5.5 - Compiler => g++ 5.4.0 ##### Detailed description For 3-D reprojections and the like, it is sometimes necessary to rotate or flip the camera around. However, when doing this with Viz3d, one lo...
bug,category: viz
low
Critical
255,906,095
rust
#[thread_local] from windows DLLs gets duplicated by inlining.
This is most likely responsible for the windows failures from #43931 when the `__getit` function, which may return a reference to a `#[thread_local] static`, was `#[inline]` (cc @alexcrichton): ```rust // a.rs #![crate_type = "dylib"] #![feature(thread_local)] #[thread_local] static FOO: u32 = 25; pub fn add...
T-compiler,O-windows-msvc,A-thread-locals,C-bug
low
Critical
255,916,677
godot
Translation snapping should have individual settings for the x, y and z axes
Humans are not cubes, we are tall and thin. We made our hallways tall, our doorways tall, the houses we live in, and the closets we hang our clothes in. The editor's translation snap however assumes that the entire world is made of uniformly-sized cubes. (or squares, in case of the 2D editor) I would enjoy the abil...
enhancement,topic:editor,usability,topic:3d
low
Minor
255,971,540
go
crypto/x509: Provide a mechanism for accessing SRVNames
The `SRVName` field of an X.509 certificate defined by [RFC 4985] allows a certificate to be used to verify that a service is managed by a particular entity without giving the same entity control over the entire domain or subdomain (eg. if DNSName or CommonName were used). I would like to be able to access the SRVNa...
Proposal,Proposal-Accepted,Proposal-Crypto
low
Major
256,009,194
rust
Consider making `std::time::SystemTime` platform-independent
It was found in https://github.com/rust-lang/rust/pull/44220#issuecomment-327744848 that certain systems in Tier-2 support still uses a 32-bit `time_t`. `SystemTime` on them will suffer from the Year-2038 problem, and also cannot perform arithmetic for a duration >68 years. This introduces a portability hazard, in whic...
C-enhancement,T-libs-api,A-time
medium
Major
256,044,248
TypeScript
Surprising `Not all code paths return a value`
**TypeScript Version:** 2.5.2 **Code** ```ts type AsyncFunction<T> = () => Promise<T>; const f: AsyncFunction<number | void> = async () => { if (Math.random()) { return 1; } }; ``` **Expected behavior:** No tsc errors. **Actual behavior:** ```ts const f: AsyncFunction<number | void>...
Suggestion,Help Wanted
low
Critical
256,073,696
go
x/exp/shiny: driver.Main not returning (and also can be made to panic unexpectedly)
Please answer these questions before submitting your issue. Thanks! See below. ### What version of Go are you using (`go version`)? 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...
NeedsInvestigation
low
Critical
256,100,268
vscode
Smart Tabs - Feature Request
Some editors support what's called "smart tabs." The spec for vscode might look like the following: >Indentation defined by the nesting of code blocks is made of tabs, while any alignment that follows is made only of spaces. Conceptually, this would ensure that mixed tabs and spaces for indentation would never oc...
feature-request,editor-core
medium
Critical
256,156,310
opencv
Conversion from BGR to YUV 4:2:2
##### System information (version) - OpenCV => 3.3 - Operating System / Platform => - - Compiler => - ##### Detailed description There is a conversion from YUV 4:2:2 to BGR, but not in the opposite direction. ##### Steps to reproduce `COLOR_BGR2YUV_I420` has `COLOR_YUV2BGR_I420` for the opposite direction...
feature,category: imgproc
low
Major
256,234,284
opencv
cv::ocl::attachContext can only be used once & the woes of using the singleton pattern
##### System information (version) - OpenCV => 3.3 - Operating System / Platform => Mac OS X 10.12.6 BuildVersion 16G29 - Compiler => Apple LLVM version 8.1.0 (clang-802.0.42) ##### Detailed description *FYI: Example output used in description is excerpt from the full output linked below.* This issue I st...
category: ocl,RFC
low
Critical
256,246,503
go
runtime: avoid functions forbidden on Windows 10 UWP
### What version of Go are you using (`go version`)? go version go1.9 windows/amd64 ### Does this issue reproduce with the latest release? Yes ### What operating system and processor architecture are you using (`go env`)? ``` set GOARCH=amd64 set GOBIN= set GOEXE=.exe set GOHOSTARCH=amd64 set GOHOSTOS=win...
help wanted,OS-Windows,NeedsInvestigation,compiler/runtime
medium
Critical
256,249,057
vscode
Debug console link detection issues
Also consider a way for extensions to contribute link detection rules
debug,debt,debug-console
medium
Critical
256,296,281
puppeteer
Get ssl certificate
I am unable to get ssl certificate. I went through all the documentation and response object I couldn't figure out a way to get SSL certificate. I would like to inspect the details of SSL certificate. Is it even possible with current puppeteer API? No luck on stackoverflow: https://stackoverflow.com/questi...
feature,chromium,P3
low
Major
256,321,315
kubernetes
Storage upgrade mechanism
Before we remove an API object version, we need to be certain that all stored objects have been upgraded to a version that will be readable in the future. The old plan for that was to run the cluster/upgrade-storage-objects.sh script after each upgrade. Unfortunately, there are a number of problems with this: * The ...
priority/important-soon,sig/network,sig/api-machinery,kind/api-change,kind/feature,lifecycle/frozen
medium
Critical
256,341,383
opencv
Documentation issue
related issues : #9520 ##### Detailed description link to documentation page : http://docs.opencv.org/master/d1/d10/classcv_1_1MatExpr.html#details link to source code: https://github.com/opencv/opencv/blob/2ac57a2b1fc0b49ddd07f3e3633461fcab5fc3f0/modules/core/include/opencv2/core/mat.hpp#L3456-L3459 "The ...
feature,category: documentation
low
Minor
256,348,357
nvm
CentOS issues with ls-remote and install
<!-- Thank you for being interested in nvm! Please help us by filling out the following form if you‘re having trouble. If you have a feature request, or some other question, please feel free to clear out the form. Thanks! --> - Operating system and version: CentOS 5.10 - `nvm debug` output: <details> ```sh n...
needs followup
low
Critical
256,391,882
kubernetes
kubectl logs should allow -f, -l, and -c together
Seriously, I need it to draw some kind of truth table or something about what's allowed. Why do we have so many restrictions? ```console % kc logs -f -nsonobuoy -lsonobuoy-plugin=e2e error: only one of follow (-f) or selector (-l) is allowed See 'kubectl logs -h' for help and examples. % kc logs -nsono...
area/kubectl,kind/feature,sig/cli,lifecycle/frozen
high
Critical
256,429,406
rust
rustc -C opt-level=3 generates bad assembly code for `Vec` by default
Compiling the following C++ snippet with `clang++ -O3` and `g++ -O3` ([see here](https://godbolt.org/g/kHYXQ8)): ```c++ #include <vector> unsigned foo() { std::vector<unsigned> a; a.push_back(314); return a[0]; } ``` generates this assembly on x86_64: ```asm foo(): # @foo() push rax mov e...
I-slow,C-enhancement,A-codegen,T-compiler,C-optimization
medium
Critical
256,434,660
angular
ng-host
## Proposal I'd like an `<ng-host>` that would act in a similar way as the `:host` css property. That would apply **directives** and **classes** to the host component. [Related #8785 ](https://github.com/angular/angular/issues/8785) ## Current behavior #### my-component.template.ts ``` <div>1</div> <div...
feature,area: core,core: host and host bindings,feature: under consideration
medium
Critical