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
200,509,323
opencv
VideoCapture(String) constructor fails to open gstreamer pipeline on Tegra / CUDA 8.0
<!-- 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: videoio,incomplete
low
Critical
200,524,359
youtube-dl
Retrieve JSON data in unicode (Encoding UTF-8)
- [x] Bug report (encountered problems with youtube-dl) - [ ] Site support request (request for adding support for a new site) - [x] Feature request (request for a new functionality) - [x] Question - [ ] Other =================================================== I need JSON data containing unicode (utf-8) from...
request
medium
Critical
200,620,530
rust
Impossible to pass diverging closures as an argument
```rust fn banana<F: FnOnce()>(f: F) -> ! { f(); loop {} } fn main() { banana(move || -> ! { loop {} }) } ``` result ``` error[E0271]: type mismatch resolving `<[closure@<anon>:6:12: 6:36] as std::ops::FnOnce<()>>::Output == ()` --> <anon>:6:5 | 6 | banana(move || -> ! { loop {} }) | ...
A-closures,C-bug
low
Critical
200,659,064
rust
Dead code lint emits unused code warning for code that is clearly used.
It looks like the dead code lint is too eager, and doesn't consider two signs that the variants are used: - The enum is passed to an extern function, which could do just about anything to the data. - The variants *are* used, in the match statement! [Playground](https://is.gd/BDy0bB) ```rust use helpers::Animal...
A-diagnostics,T-compiler,C-bug
low
Critical
200,750,094
flutter
Flutter should get AutoTransition (aka layout transition), where two Widgets can transition between each other
Lets say I have Widget A, which contains some widgets, and then I have Widget B, which contains some more widgets. Each side will have keys that match a source widget to a target widget. AutoTransition will match these up and animate them from their positions in Widget A to their positions in Widget B. Android imple...
c: new feature,framework,a: animation,P3,team-framework,triaged-framework
low
Major
200,765,000
youtube-dl
Support Fandor.com
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.01.10*. 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*...
site-support-request
low
Critical
200,791,877
opencv
imgwrap from master branch makes clang 391 segfaults
<!-- 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,category: build/install
low
Critical
200,801,117
youtube-dl
socks.py raised EOFError with Shadowsocks
**Make sure you are using the latest version: run youtube-dl --version and ensure your version is 2017.01.10. If it's not read this FAQ entry and update. Issues with outdated version will be rejected.** I've verified and I assure that I'm running youtube-dl 2017.01.10 **Before submitting an issue make sure you have:...
cant-reproduce,external-bugs
medium
Critical
200,802,069
go
net/http: TestServerHijackGetsBackgroundByte failing on Plan 9
CL [5232](https://golang.org/cl/35232) added TestServerHijackGetsBackgroundByte, which is failing on Plan 9; because CloseWrite is not implemented on Plan 9. ``` --- FAIL: TestServerHijackGetsBackgroundByte (0.08s) serve_test.go:5235: close tcp 127.0.0.1:43532->127.0.0.1:34277: not supported by plan 9 FAIL ``` ...
OS-Plan9,NeedsInvestigation
low
Minor
200,803,335
go
net/http: TestServerHijackGetsBackgroundByte_big failing on Plan 9
CL [35234](https://golang.org/cl/35234) added TestServerHijackGetsBackgroundByte_big, which is failing on Plan 9, because CloseWrite is not implemented on Plan 9. ``` --- FAIL: TestServerHijackGetsBackgroundByte_big (0.05s) serve_test.go:5300: close tcp 127.0.0.1:63062->127.0.0.1:36638: not supported by plan 9 F...
OS-Plan9,NeedsInvestigation
low
Minor
200,823,043
youtube-dl
[pbs] Add support for pbslearningmedia.org domain
## 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 that [x]) - Use *Preview* tab to see how your issue will actually look like --- ...
site-support-request
low
Critical
200,895,764
opencv
GPU Stitcher run time error!
##### System information (version) - OpenCV => 3.2 - Qt 5.7.1 - Qt Creator 4.2.0 - Operating System / Platform => Windows 10 64 Bit - Compiler => Visual Studio 2013 (msvc2013_64) - GPU: Geforce GTX 1070 - Cuda 8.0 Code was succesfully compiled. I get this error at run time; ``` OpenCV Error: The function/...
bug,category: t-api
low
Critical
200,966,396
rust
[config.toml] should allow specifying arbitrary flags to the `cc` command for a target
Currently you can specify ``` [target.somethingweord] cc = "somethingelse" ``` but cannot make `somethingelse` to also receive flags for the target.
T-bootstrap,C-feature-request,E-needs-design
low
Minor
201,021,382
create-react-app
Adding a --no-bin-links option
Hi ! Is there a way to add a NPM-like --no-bin-links option. It is used by VM users who share folders between a host and a VM. Example: [Vagrant](https://www.vagrantup.com/)
difficulty: starter,contributions: claimed
medium
Critical
201,037,475
clean-code-javascript
Want to translate to Arabic, Japanese, French, etc.?
Starting to translate to Korean. Feel free to collaborate. Check it out [here](https://github.com/Hanney-Ryu/clean-code-javascript/blob/master/README-ko.md).
help wanted
medium
Critical
201,088,390
go
cmd/gofmt: gofmt -r should preserve multiline formatting
go version devel +ac05542 Wed Jan 11 01:39:54 2017 +0000 linux/amd64 gofmt -r does not work well when rewriting multi-line expressions. Given this code: package x func f() { Foo{ X: 99, Y: "hello", } } running: gofmt -r 'Foo{X: a, Y: b} -> Foo{ X: a, Y: []byte(...
NeedsInvestigation
low
Minor
201,146,703
node
What will Domain be replaced with?
I'm adding support for parallel tests to node-tap. https://github.com/tapjs/node-tap/issues/306 One sticky point is that, like most test frameworks, node-tap needs to be able to cleverly handle thrown errors and tie them to the test environment where the error was thrown from (especially since many existing asserti...
question,domain
medium
Critical
201,174,168
nvm
Adding descriptions about symlinks in the 'nvm is not compatible with the npm config "prefix" option' error
I have ran into two machines that shows `nvm is not compatible with the npm config "prefix" option` error everytime `~/.nvm/nvm.sh` is invoked, and which is also mentioned by [existing issues](https://github.com/creationix/nvm/issues/1087). In the end, I found that in both my machines, the home directories is symlin...
informational,pull request wanted
low
Critical
201,184,505
youtube-dl
Make parsed metadata variables available to output template
- [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.01.16** - [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [x] [Se...
request
low
Critical
201,201,231
go
debug/elf: add File.DynValue method to look up DynTag values
Currently there is no method/function to convert elf.Symbol.Info to SymBind and SymType, even thought there is a function ST_INFO to convert SymBind and SymType into uint8. We probably should have created a new type for Symbol.Info, but we can't do that before Go 2. Therefore I propose the addition of the followi...
help wanted,Proposal-Accepted,FeatureRequest
low
Critical
201,218,012
You-Dont-Know-JS
You Don't Know JS: Types & Grammar - "What about &&" Code example not clear enough
In **What about &&?** section we have the following code. ``` function foo() { console.log( a ); } var a = 42; a && foo(); // 42 ``` result in comment should indicate that foo was called. but in fact we would get same result of "42" if first operand had been called (like in `||` operator). i think r...
for second edition
low
Minor
201,286,382
opencv
Enhancement Objective C: Conversion using static category methods
In [OpenCV iOS - Video Processing](http://docs.opencv.org/2.4/doc/tutorials/ios/video_processing/video_processing.html#opencviosvideoprocessing) tutorial page there is a guide how to convert `cv::Mat` to `UIImage` and backwards. I have found much easier to use static methods inside category extending `UIImage` itself. ...
feature,platform: ios/osx
low
Minor
201,317,224
vscode
Multiple decorations on end of line
I would like to be able to add multiple editor decorations on the end of line. My use case is nicely decorating inline values to make a difference between a name and a value. A nice example on how chrome does this: An alternative would be a mechanism that I could somehow specially annotate parts of the contentTe...
feature-request,editor-core
low
Major
201,407,550
youtube-dl
Unable to download video live stream from ArchillectTV
## 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 that [x]) - Use *Preview* tab to see how your issue will actually look like --- ...
site-support-request
low
Critical
201,511,510
three.js
The shadow of a partially transparent object
##### Description of the problem The shadow of a partially transparent object should be brighter than that of a completely opaque object, but they're same dark in threejs. ![tmp](https://cloud.githubusercontent.com/assets/18611035/22057097/2a296cc2-dd9e-11e6-907c-62ecd6fc47b5.png) ##### Three.js version - [x] ...
Enhancement
medium
Critical
201,558,805
node
'end' event not called on connected socket wrapped with tls
* **Version**: v6.9.4, v7.4.0 * **Platform**: Linux pc 4.2.0-30-generic #36-Ubuntu SMP Fri Feb 26 00:58:07 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux * **Subsystem**: net, tls When wrapping an existing socket with tls, the socket's 'end' event is not called if the socket was already connected. Example: In this ...
tls,stream
low
Major
201,579,836
rust
Guarantee that values in hash map are disjoint from each other and the HashMap struct.
There was some discussion about the unsafe guarantees of `HashMap` on Reddit[1] which inspired me to write this issue. The current HashMap implementation has its entries at memory locations that are disjoint from each other and from the `HashMap` struct. That means that in principle, there could simultaneously exist...
C-enhancement,T-libs-api
low
Major
201,624,605
youtube-dl
can not get the best video from viki
**Make sure you are using the latest version: run youtube-dl --version and ensure your version is 2017.01.16. If it's not read this FAQ entry and update. Issues with outdated version will be rejected.** I've verified and I assure that I'm running youtube-dl 2017.01.16 **Before submitting an issue make sure you have:*...
geo-restricted
low
Critical
201,641,564
TypeScript
Error when augmenting UMD module
**TypeScript Version:** 2.1.1 / nightly (2.2.0-dev.201xxxxx) **Code** ```ts // @Filename: /node_modules/foo/index.d.ts export = __foo; export as namespace foo; declare namespace __foo { export import foo = __foo; class C { x: number; } } // @Filename: /a.ts import { foo } from "f...
Bug
low
Critical
201,663,981
angular
Forms should throw error if two or more NgModels appear in form with the same name
[ ] bug report => search github for a similar issue or PR before submitting [x] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question **Current behavior** Currently there is no error or warning if two...
feature,freq1: low,area: forms,state: has PR,good first issue,feature: under consideration,feature: votes required
medium
Critical
201,682,687
rust
missing_docs does not trigger for types only used in exported fields of enumerations
IMO, this should be a compilation failure because although `Foo` is not explicitly exported, it is publicly visible via the `Bar::A` variant: `lib.rs`: ```rust #![deny(missing_docs)] mod types; pub use types::Bar; ``` `types.rs`: ```rust pub struct Foo; /// A bar. pub enum Bar { /// A `Bar...
A-lints,T-compiler,C-bug
low
Critical
201,690,280
opencv
cv::ocl::setUseOpenCL(false) does not really stop using GPU
<!-- 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,category: core,category: ocl,category: t-api,incomplete,needs reproducer
low
Critical
201,704,705
TypeScript
DOM: Font Loading API
**TypeScript Version:** 2.1.1 **Code** ```ts // An example usage of Font Loading API var font = new FontFace("SinkinSans","url('SinkinSans.ttf') format('truetype')"); font.load().then(()=>{ // font loaded document.fonts.add(font); }); ``` **Expected behavior:** FontFace, FontFaceSet and docum...
Suggestion,Revisit,Domain: lib.d.ts
medium
Critical
201,726,835
vue
v-on:change randomly fails on range input bound on a computed property
### Vue.js version 2.1.10 ### Reproduction Link http://jsbin.com/bapoca/edit?html,js,console,output ### Steps to reproduce The above JSBin contains a slider (range) that logs the value of a computed property it is bound to (`sliderRadius`), when it changes: `v-on:change="log"` (log is a declared function) #...
bug,has workaround
low
Critical
201,740,815
youtube-dl
crackle.com movies are not supported
## 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 that [x]) - Use *Preview* tab to see how your issue will actually look like --- ...
request,geo-restricted,cant-reproduce
low
Critical
201,765,433
You-Dont-Know-JS
investigate static generics and see if they need inclusion
array generics, string generics, etc.
for second edition
medium
Minor
201,817,888
youtube-dl
Use fallback Youtube server if local cache is unavailable
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.01.18*. 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** ...
request
low
Critical
201,821,673
pytorch
Feature Request: Locally Connected Layer
The Lua version of Torch implements a [Locally Connected Layer](https://github.com/torch/nn/blob/master/doc/convolution.md#spatialconvolutio) (Convolution without shared weights). It would be good to have an implementation of this available on the python API version as well. cc @albanD @mruberry @jbschlosser @walterdd...
proposal accepted,feature,module: nn,triaged,Stale
medium
Critical
201,853,383
rust
Type-inference breaks depending on the order of arguments in a function call
Given ([playground link](https://play.rust-lang.org/?gist=1f7090c618d23c418db366553b4d1916&version=stable&backtrace=0)): ```rust pub trait Int { fn zero() -> Self; } impl Int for u8 { fn zero() -> u8 { 0 } } impl Int for i8 { fn zero() -> i8 { 0 } } pub trait FromSigned<T> { fn from_signed(T) -> Self; ...
A-inference,C-bug
low
Minor
201,873,713
angular
Way to handle media queries in animation
**I'm submitting a ...** (check one with "x") ``` [ ] bug report => search github for a similar issue or PR before submitting [x] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ``` I'm facing ...
feature,area: animations,freq3: high,P4,feature: under consideration
medium
Critical
201,893,666
rust
#![cfg] to disable a crate disables #![no_std]
Using `#![cfg]` to disable a crate on platforms where it makes no sense is usually a great idea. That way people can unconditionally depend on your crate and use it only on the targets where it is needed. However it disables the entire crate, including all global attributes, which means normally a crate that has `#![no...
A-attributes,I-needs-decision,T-lang,C-bug
low
Major
201,922,657
rust
Allow `process::Child` to be used with external calls to `waitpid`
The `wait` and `wait_with_output` methods of `process::Child` expect to do the waiting for the child to exit themselves. If you are running many processes at once, and you don't know which one will finish first, this is inconvenient, because the system calls `wait` and `waitpid` consume each exit notification as they ...
T-libs-api,C-feature-accepted,A-process
low
Major
201,922,702
kubernetes
Make OOM not be a SIGKILL
Atm apps that go over the memory limit are hard killed 'OOMKilled', which is bad (losing state / not running cleanup code etc) Is there a way to get SIGTERM instead (with a grace period or 100m before reaching the limit) ?
sig/node,kind/feature,triage/accepted
high
Critical
201,953,492
flutter
FR: Create a way to increase the time between frames.
Unlike timeDilation which doesn't change the frame rate but slows down any ticking animations (or something like that), this feature would slow down how often frames are submitted (or something like that). Use cases: 1. If a developer has a weird single frame jump they could use this to 'see' that frame better to...
c: new feature,framework,P3,team-framework,triaged-framework
low
Critical
202,000,281
angular
Sourcemap path in current bundle isn't being formed properly
**I'm submitting a ...** (check one with "x") ``` [ x ] bug report => search github for a similar issue or PR before submitting [ ] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ``` **Current...
type: bug/fix,area: packaging,freq4: critical,state: confirmed,P3
low
Critical
202,007,589
go
all: add link to the issue tracker from all repos
Most repositories under the golang organization is using the go repo's issue tracker and has their issues disabled. Each repo that uses this issue tracker needs to give a link to https://golang.org/issues/new from its README to help the users find the correct location to file bugs. GitHub also allows to pre-fill the...
Documentation,NeedsInvestigation
low
Critical
202,035,193
youtube-dl
[LeEco] Support Le.com live channel
## 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 that [x]) - Use *Preview* tab to see how your issue will actually look like --- ...
site-support-request
low
Critical
202,077,073
go
x/tools/refactor/rename: renaming struct should rename method receivers that follow naming advice
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? ``` go version go1.7.4 linux/amd64 ``` ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOST...
Tools,Refactoring
low
Critical
202,138,728
angular
Provide one time binding possibility for better performance
For many use cases we need to render elements according to first initial value without the need to observe any changes. It would be great if we would have the ability to make one time bindings.
feature,area: core,core: binding & interpolation,core: change detection,feature: under consideration
high
Major
202,195,664
opencv
Cannot create non uniform histogram using cv2.calcHist() in Python 2.7
<!-- 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,category: python bindings,category: imgproc
low
Critical
202,249,389
go
net/http: add GODEBUG=http1debug
The GODEBUG knob for http2 debugging (e.g. `GODEBUG=http2debug=2`) has proven to be very useful and popular. Unfortunately it only works for HTTP/2. There is code in the net/http package to do a similar thing for HTTP/1, but it's not accessible via an environment variable. Should we make it accessible with `GODEB...
help wanted,Proposal-Accepted,NeedsFix,FeatureRequest
medium
Critical
202,338,232
go
cmd/compile: order.go is outdated
Many optimizations made in walk.go did not come with corresponding updates to order.go. For example, order.go makes a temporary for runtime calls for OCONVIFACE for many cases which walk special-cases not to make runtime calls. Another example is the introduction of temporaries for equality checks that walk inlines. ...
Performance,ToolSpeed,compiler/runtime
low
Major
202,348,041
neovim
Restore cursor position when triggering undo
Something that has always bothered me about vim is that when you undo you often do not get your previous cursor position back. For example, given the following file (with the ^ character representing where the cursor is) ``` this is a test ^ ``` If you hit `diwu`, you get this: ``` this is a test ^ `...
enhancement,normal-mode
low
Minor
202,374,222
kubernetes
Consider network resource management / guarantees / scheduling
**What keywords did you search in Kubernetes issues before filing this one?** : Network quota, congestion --- **Is this a BUG REPORT or FEATURE REQUEST?** (choose one): FEATURE REQUEST <!-- If this is a BUG REPORT, please: - Fill in as much of the template below as you can. If you leave out informat...
sig/network,kind/feature,triage/accepted
medium
Critical
202,400,837
javascript
External callback function
_The following examples are based (but no dependent) on [Express router](https://expressjs.com/en/guide/routing.html)._ **Considering the following correct case:** [8.1 When you must use function expressions (as when passing an anonymous function), use arrow function notation. ](https://github.com/airbnb/javascri...
question
low
Minor
202,402,262
javascript
Export-ing conventions
Airbnb style guides [[10]](https://github.com/airbnb/javascript#modules--use-them) do not define any specific `export` style, other than: [10.6 In modules with a single export, prefer default export over named export.](https://github.com/airbnb/javascript#modules--prefer-default-export) Which one is the preferred...
question
low
Major
202,406,372
angular
There is no FormControl instance attached to form control element with name: xxx
<!-- IF YOU DON'T FILL OUT THE FOLLOWING INFORMATION WE MIGHT CLOSE YOUR ISSUE WITHOUT INVESTIGATING --> **I'm submitting a ...** (check one with "x") ``` [x] bug report => search github for a similar issue or PR before submitting [ ] feature request [ ] support request => Please do not submit support request...
type: bug/fix,freq2: medium,area: forms,state: confirmed,P3
high
Critical
202,411,585
go
net/http: benchmarks fail on sierra with 'too many open files'
Sample run excerpt: ```bash BenchmarkCookieString-8 2000000 900 ns/op 384 B/op 3 allocs/op BenchmarkReadSetCookies-8 500000 3703 ns/op 960 B/op 17 allocs/op BenchmarkReadCookies-8 300000 4948 ns/op ...
Testing,help wanted,NeedsFix
medium
Critical
202,425,939
TypeScript
Type annotations for default export
**TypeScript Version:** 2.1.1 **Code** ```ts import * as webpack from 'webpack'; export default: webpack.Configuration { }; ``` **Expected behavior:** No error **Actual behavior:** `[ts] Expression expected.` error at `default:` I couldn't find an issue for this but it's very likely it's a dupl...
Suggestion,Awaiting More Feedback
high
Critical
202,434,152
neovim
CursorMovedI and TextChangedI triggered unexpectedly for completion without changes
### Steps to reproduce using `nvim -u NORC` ``` nvim -u NORC :source foo.vim ``` Hit the Enter key, you will see that popup menu disapear, nothing has changed, except a CursorMovedI message at the bottom. foo.vim ```vim set noshowmode set completeopt=menu,menuone,noinsert,noselect set shortmess+=c ...
bug-vim,completion,events
low
Critical
202,436,853
TypeScript
[BUG] Docs say es6 modules can't export class objects, but that's not true.
The docs [say](https://www.typescriptlang.org/docs/handbook/declaration-files/templates/module-class-d-ts.html) that > ``` > /*~ Note that ES6 modules cannot directly export class objects. > ``` but modules can export classes, as in ```ts export default class Foo { /*...*/ } ```
Help Wanted,Docs
low
Critical
202,503,805
javascript
Documentation/docblocks
I am wondering why there is no section of documentation or docblocks. Is it conventional to leave them out? What is the reason I don't see any docblocks in the open-sourced projects you guys have? I would love to hear thoughts about using docblocks in Javascript. I find them really helpful when I am programming PHP....
pull request wanted,editorial
low
Major
202,643,908
go
x/time/rate: Limiter depends on implementation-defined float to int conversion
### What version of Go are you using (`go version`)? ``` Audrius@Audrius foo $ go version go version go1.8rc2 windows/amd64 ``` ### What operating system and processor architecture are you using (`go env`)? ``` Audrius@Audrius foo $ go env set GOARCH=amd64 set GOBIN= set GOEXE=.exe set GOHOSTARCH=amd64...
NeedsInvestigation
low
Critical
202,680,143
rust
[rustdoc] Placeholder for search field makes no sense
Currently `rustdoc` generated documentation has this for the placeholder of search field: > Click or press 'S' to search, '?' for more options… Now, the problem here, to summarize, is that this placeholder is not really a placeholder, but rather a call-to-action, half of which is even a feature unrelated to searc...
T-rustdoc,C-enhancement
low
Major
202,826,100
thefuck
Strange behaviour in Windows (Git Bash)
I've installed Python (to get pip) and then ran pip install thefuck. It seems to have installed `the fuck` okay, but it's acting strangely in Git Bash. In GitBash, it displays the menu, but doesn't accept `Enter`. It just executes whatever I enter when I press Ctrl-C (but not the unfucked command) - see this example:...
windows
medium
Major
202,851,125
opencv
Corrupted OpenGL stencil after ogl::Texture2D::copyFrom and copyTo
<!-- 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,category: core,incomplete
low
Critical
202,852,591
opencv
Imgproc.Sobel() called with dx=1, dy=0 wrongly gives exactly same results as dx=0, dy=1 if the OpenCV Manager app is used (Android)
<!-- 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...
wontfix
low
Critical
202,863,724
TypeScript
Error in find-all-references for 3 spread types
**TypeScript Version:** nightly (2.2.0-dev.20170124) **Code** (based on `tests/cases/fourslash/findAlRefsObjectSpread.ts`) ```ts interface A1 { a: string }; interface A2 { a?: number }; interface A3 { a?: RegExp }; declare let a1: A1; declare let a2: A2; declare let a3: A3; let a12 = { ...a1, ...a2, .....
Bug
low
Critical
202,864,655
TypeScript
Diagnostic about "left-hand side of a 'for...in' statement" type is out of date
**TypeScript Version:** 2.1.5 Now that the left side of a 'for...in' statement is apparently allowed to be `keyof` the right side, the diagnostic for when the left side has the wrong type needs to be updated to account for that possibility. (Aside: Is it intentional that the left side won't be _inferred_ to have...
Suggestion,Experience Enhancement
low
Critical
202,902,890
angular
RouterModule does not initialize correctly when using UpgradeModule
**I'm submitting a ...** ``` [x] bug report [ ] feature request [ ] support request ``` **Current behavior** `initialRouterNavigation` (from [upgrade.ts](https://github.com/angular/angular/blob/master/modules/%40angular/router/upgrade.ts)) is not called during bootstrap. As a consequence, RouterModule does n...
type: bug/fix,area: core,workaround2: non-obvious,area: upgrade,state: confirmed,P3
low
Critical
202,905,188
vscode
Git Diff Doesn't Show Changes in New Line Characters
The diffeditor doesn't show new line ending changes (eg CRLF vs LF) even with "diffEditor.ignoreTrimWhitespace" set to false.
feature-request,diff-editor
medium
Critical
202,908,272
flutter
iOS transition from standard status bar to expanded status bar is janky
In flutter/engine#3357, we corrected the top padding applied to account for double-height status bars on iOS. While this fix ensures the padding is correct, the transition between a standard height status bar and the expanded, double-height status bar is still janky. To repro: 1. Start up a Flutter app (e.g., the g...
platform-ios,framework,engine,a: fidelity,a: quality,P3,team-ios,triaged-ios
low
Major
203,013,670
TypeScript
Object Spread should not invoke setter.
Current stage-3 spec requires object spread should define new properties on rest object, not set value on rest object. Spec: http://sebmarkbage.github.io/ecmascript-rest-spread/#AbstractOperations-CopyDataProperties More readable example: https://github.com/sebmarkbage/ecmascript-rest-spread/blob/master/Issues.md...
Bug,ES Next
low
Critical
203,109,716
rust
link-dead-code limitations (bad for code coverage)
Consider a cargo project (`dead`) with this `src/lib.rs` file: ```rust pub fn fun0() {} pub fn fun1<T>() {} pub trait Trait { fn fun2(&self); fn fun3(&self) {} } impl Trait for () { fn fun2(&self) {} } ``` Running ``` cargo clean && RUSTFLAGS='-C link-dead-code' cargo test && cargo...
T-compiler,C-feature-request,link-dead-code
low
Critical
203,114,148
youtube-dl
Downloading from www.visir.is fails
## 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 that [x]) - Use *Preview* tab to see how your issue will actually look like --- ...
site-support-request
low
Critical
203,114,620
kubernetes
Deprecate and remove --record flag from kubectl
Currently `--record` flag seems like a really bad decision made some time ago, and supporting it makes live harder when trying to modify any parts of code (see [this discussion](https://github.com/kubernetes/kubernetes/pull/40260#discussion_r97681489)). I'm proposing to deprecate that flag and drop it entirely in futur...
area/kubectl,kind/feature,sig/cli,lifecycle/frozen
high
Critical
203,201,356
go
x/crypto/acme/autocert: assume default domain for non-SNI connections?
If you're running a one-domain site, autocert could potentially handle non-SNI requests (`GetCertificate("")`) by picking a domain from its cached cert set - most commonly used, most recently used, first used, shortest, some policy. Today it returns an error, which probably turns into a TLS hangup. This affects client...
NeedsInvestigation
low
Critical
203,208,380
go
proposal: reflect/v2: rename StructField.Anonymous to Embedded
in Go-1, we have: ``` $> go doc reflect StructField type StructField struct { // Name is the field name. Name string // PkgPath is the package path that qualifies a lower case (unexported) // field name. It is empty for upper case (exported) field names. // See https://golang.org/ref/spec#Uniqueness_of_...
v2,Proposal
low
Minor
203,272,135
go
cmd/gofmt: weird indentation with block comments
Please answer these questions before submitting your issue. Thanks! #### What did you do? Block comments are formatted weirdly. ``` /* * - Remove package from manifest * - if the package IS NOT being used, solving should do what we want * - if the package IS being used: * - Desired behavior: s...
NeedsFix
low
Critical
203,285,709
go
x/arch/x86/x86asm: GNUSyntax rendors relative pc jump targets wrong
The GNUSyntax uses `.` to denote the address of the next instruction, but that doesn't match GNU as' definition. This makes it impossible to round trip the disassembly (GNU as will not be able to assemble `je .-0x80` into two-byte short jump.) ``` package main import "golang.org/x/arch/x86/x86asm" func main() { ...
NeedsInvestigation
low
Minor
203,361,335
rust
Poor diagnostic: mutable diagnostic cannot be "immutablized"
A friend stumbled on this the other day and I couldn't reason about it for the life of me, even having spend over an year on the language. I asked on rust-beginners but since it's not logged I lost the response. I was told that this is not needed for correctness but it's unfixable due to interactions with Cell and frie...
C-enhancement,A-diagnostics,T-compiler,D-papercut
low
Critical
203,392,915
youtube-dl
[blivenyc] Site support request
Hello, Not sure if it is the right and if not please accept my apology. I am trying to download a video from this url : http://www.styleheroine.com/2017/01/11/valentino-pre-fall-live/ When i inspect the source of the page i found this : ``` <video data-html5-video="" poster="//deb5pi665ie8w.cloudfront.net/vide...
site-support-request
low
Critical
203,441,563
TypeScript
Intellisense does not work with [P in keyof T]
<!-- BUGS: Please use this template. --> **TypeScript Version:** 2.1.5 **Code** ```ts //Operators available for the object fields export type Operators<T> = { $elementMatch?: T | Operators<T>; $in?: T[]; } //Filter declaration. export type Filter<T> = { //field, you can assign a value...
Suggestion,Experience Enhancement
low
Critical
203,448,907
rust
Breakpoint set 2 locations when I set a breakpoint with LLDB
``` use std::net::{TcpListener}; fn main() { let listener = TcpListener::bind("127.0.0.1:16624").unwrap(); println!("{:?}", listener); } ``` When I set a breakpoint at line 5 which has a println macro call. LLDB set a breakpoint at 2 locations. ``` (lldb) target create "targe...
A-debuginfo,E-needs-test,T-compiler,C-bug
low
Critical
203,454,418
go
proposal: sync: support for sharded values
Per-CPU sharded values are a useful and common way to reduce contention on shared write-mostly values. However, this technique is currently difficult or impossible to use in Go (though there have been attempts, such as @jonhoo's https://github.com/jonhoo/drwmutex and @bcmills' https://go-review.googlesource.com/#/c/356...
Proposal,Proposal-Hold
high
Critical
203,487,437
bitcoin
[Feature] Allow gettxout to return information for spent outputs
Related: https://github.com/bitcoin/bitcoin/issues/4007 I'm assuming this is non-trivial to do, but I wish that gettxout could return data for spent outputs. This would allow me to compute, for example, the height at which any transaction was mined. Currently, this is only possible if the transaction in question has...
Feature,UTXO Db and Indexes,RPC/REST/ZMQ
low
Major
203,529,178
angular
Support arrow functions in template syntax
It's not uncommon for a component to take as input a transformation function or predicate function. For example, [this PR for `@angular/forms`](https://github.com/angular/angular/pull/13349) adds an `@Input` for a predicate function for determining if two options in a `<select>` are equal. Right now, this looks som...
feature,hotlist: components team,area: core,core: binding & interpolation
high
Critical
203,543,771
flutter
Xcode build should treat warnings as errors by default
platform-ios,tool,t: xcode,P3,team-ios,triaged-ios
low
Critical
203,595,311
flutter
driver tests would be easier to debug if the logs had timestamps
cc @yjbanov
a: tests,c: new feature,team,tool,t: flutter driver,P2,team-tool,triaged-tool
low
Critical
203,676,453
kubernetes
Consider exposing node labels via downward api
**What keywords did you search in Kubernetes issues before filing this one?** (If you have found any duplicates, you should instead reply there.): downward api node labels --- **Is this a BUG REPORT or FEATURE REQUEST?** (choose one): Feature request <!-- If this is a BUG REPORT, please: - Fill in as much ...
sig/scheduling,sig/node,kind/feature,needs-triage,wg/batch
high
Critical
203,683,623
youtube-dl
[myspace] Add support for artist pages
- [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.01.25** - [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [x] [Sear...
request
low
Critical
203,687,349
rust
Unhelpful error when providing a borrowed closure to a function expecting a closure taking borrowed arguments
```rust fn foo<F>(_compare: F) where F: Fn(&u8) { } fn main() { foo(&|_a| {}); } ``` yields this unhelpful series of errors: ``` error[E0271]: type mismatch resolving `for<'r> <&[closure@<anon>:5:10: 5:17] as std::ops::FnOnce<(&'r u8,)>>::Output == ()` --> <anon>:5:5 | 5 | foo(&|_a| {}); | ...
C-enhancement,A-diagnostics,T-compiler
low
Critical
203,734,494
go
cmd/compile: optimize Write([]byte(stringVal)) to not copy the string
It would be nice to optimize `Write([]byte(stringVal))` to not copy the string value. This is normally safe because most `Write` methods do not modify the byte slice passed in. In fact, the documentation for `io.Writer` requires that the `Write` method not modify the byte slice, although this is not (and can not be) ...
Performance,compiler/runtime
medium
Major
203,751,994
vscode
Customizing the rendering of matching brackets
<!-- Do you have a question? Please ask it on http://stackoverflow.com/questions/tagged/vscode --> - VSCode Version: 1.8.1 - OS Version: Windows 10 Hi there Is it possible to customize the cursor for the matching brackets/parentheses ? e.g. change to `underline` instead of `block` ![](https://ibin.co/3AN3J...
feature-request,editor-bracket-matching,editor-theming
high
Critical
203,757,268
rust
Extremely slow optimizer performance when including large array of strings
Consider the following test program: ```rust fn main() { let words = include!("num_array.rs"); let mut l = 0; for word in words.into_iter() { l += word.len(); } println!("{}", l); } ``` `num_array.rs` contains an array of 250k strings: ``` $ (echo '['; seq 1 250000 | sed '...
A-LLVM,C-enhancement,A-codegen,I-compiletime,T-compiler,C-optimization
low
Critical
203,762,470
rust
Make sure all file extensions for wasm are correct
Per [this comment](https://github.com/rust-lang/rust/issues/39171#issuecomment-275797843), we only emit .js for bin targets, it's not clear what we emit for dylib, cdylib, and staticlib, but it seems likely they are incorrect. I think .a is probably right for staticlib that is going to be run through emcc, but maybe...
O-wasm,C-bug
low
Minor
203,762,863
opencv
OpenCV Crashes when reopening camera on Mac OSX Sierra and displaying
Reposting from [SO](http://stackoverflow.com/questions/40443825/opencv-crashes-when-reopening-camera-on-mac-osx-sierra-and-displaying): When I reopen a webcam in OpenCV on Mac OSX Sierra, and I display images from it, I get NSExceptions. This is the test code I'm working with to try to figure out the error mode. `...
bug,priority: low,category: videoio(camera),platform: ios/osx
low
Critical
203,814,898
go
encoding/asn1: cannot marshal into a GeneralString
### What version of Go are you using (`go version`)? go version go1.7.5 linux/amd64 ### What operating system and processor architecture are you using (`go env`)? GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GORACE="" CC="gcc" GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-l...
NeedsDecision
low
Critical
203,818,896
opencv
CascadeClassifier exception on JDK8, macOS Sierra
##### System information (version) - OpenCV => 3.1 - Operating System / Platform => macOS Sierra 10.12.3 (16D32) - Compiler => JDK8, bindings from https://github.com/openpnp/opencv/issues/17 ##### Detailed description "Unrecognized or unsupported array type in function cvGetMat": ``` Caused by: CvException [...
incomplete
low
Critical
203,823,123
go
encoding/asn1: cannot marshal into slice of strings and pass stringtype parameter tags to members
### What version of Go are you using (`go version`)? go version go1.7.5 linux/amd64 ### What operating system and processor architecture are you using (`go env`)? GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GORACE="" CC="gcc" GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-l...
NeedsDecision
low
Critical