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 |
|---|---|---|---|---|---|---|
190,732,689 | go | x/tools: tests fail with gccgo | ### What version of Go are you using (`go version`)?
go version go1.6.1 gccgo (Debian 6.2.0-13) 6.2.0 20161109
### What operating system and processor architecture are you using (`go env`)?
Debian, all architectures not directly supported by the official compiler.
Hi, I am one of the people maintaining go libra... | Testing,NeedsFix,Tools | low | Critical |
190,774,336 | node | Poll phase documentation | <!--
Thank you for reporting an issue.
This issue tracker is for bugs and issues found within Node.js core.
If you require more general support please file an issue on our help
repo. https://github.com/nodejs/help
Please fill in as much of the template below as you're able.
Version: output of `node -v`
P... | help wanted,doc | medium | Critical |
190,780,590 | opencv | distanceType parameter for pointPolygonTest | It would be useful if pointPolygonTest had a distanceType parameter like distanceTransform does. | feature,category: imgproc | low | Minor |
190,804,497 | go | cmd/compile: improve map iteration | Currently compiling this code
```
type T struct {
a, b, c, d, e, f, g, h int
}
func f(m map[int]T) {
for _, e := range m {
g(e.f)
}
}
//go:noinline
func g(int) {}
```
results
```
0x0051 00081 (/tmp/x.go:8) LEAQ type.map[int]"".T(SB), AX
0x0058 00088 (/tmp/x.... | Performance,compiler/runtime | low | Minor |
190,808,329 | TypeScript | Support evolving the type with assignments for expando object | Copied from https://github.com/Microsoft/TypeScript/issues/12278#issuecomment-261000712
OP = @abgivant
I use a similar module pattern in an application I'm working on, and the lack of IntelliSense/definitions for those has been an issue for me as well.
Mine follow this basic pattern:
```javascript
module.expor... | Suggestion,In Discussion,VS Code Tracked | low | Minor |
190,814,174 | go | x/website: document release-branch & git branch policy | This is a more general release strategy question.
I see that the git tag for 1.7.3 references a release branch 1release-branch.go1.7'. For work in progress (e.g. release candidates), this makes perfect sense, but considering 1.7.3 has been released, and binaries are advertised on golang.org for this version, I expe... | Documentation,help wanted,NeedsInvestigation,website | low | Critical |
190,875,528 | flutter | Request for a way to indicate how a class/concepts fits into "layers" or "areas of interest" | As we learn from UX studies, we noticed that we don't currently have an easy way for a developer to understand in which "area" they are looking at a concept. For example, if they are looking at the Padding class in the API docs, "where" are they? What kind of conceptual thing is this?
From a current Flutter develope... | framework,from: study,d: api docs,c: proposal,P3,team-framework,triaged-framework | low | Major |
190,886,549 | create-react-app | Add more entry points | In addition to src/index.js, I have other entry points in my app. How do I add them? | issue: proposal,tag: enhancement | high | Critical |
190,912,451 | rust | Future::and_then and other adapters are not always zero cost | I expected these two code snippets to produce the same (or very similar) code
when fully optimized (release+LTO) but they don't:
``` rust
let tx = busy_wait(tx.write(4));
busy_wait(tx.write(2));
```
``` rust
busy_wait(tx.write(4).and_then(|tx| tx.write(2)));
```
The first is `panic!`-free but the second ... | A-LLVM,I-slow,C-enhancement,A-codegen,T-compiler,C-optimization | low | Critical |
191,059,311 | vscode | Highlight matching quotes, double quotes and backticks | - VSCode Version: 1.7.1
- OS Version: Win10 x64
Steps to Reproduce:
My suggestion is to not only highlight matching square brackets, round brackets/parentheses and curly brackets (`[], (), {}`) as well as matching tags e.g. `<div></div>`,
**but also quotes, double quotes and backticks,** i.e. `''`, `""` and ` `... | feature-request,editor-bracket-matching | medium | Major |
191,062,738 | youtube-dl | [sohu] Support login (was: Best quality extraxtion of sohu not correct) | ## 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,account-needed | low | Critical |
191,064,512 | flutter | AppBar is too tall in landscape mode on Android (and desktop) | Example screenshot:
https://github.com/flutter/flutter/issues/4607#issuecomment-262214734
https://github.com/flutter/flutter/blob/master/packages/flutter/lib/src/material/constants.dart#L6
https://material.google.com/layout/structure.html#structure-app-bar says 48p on landscape.
One of many metrics which are ... | framework,f: material design,a: tablet,a: desktop,dependency: android,has reproducible steps,P3,found in release: 3.7,team-design,triaged-design | low | Major |
191,083,974 | go | runtime: stack growth during critical section harms performance | Hello,
[etcd](https://github.com/coreos/etcd) observed significant performance regression with Go 1.7.3.
Details follow or please visit https://github.com/coreos/etcd/issues/6876.
<br>
### What version of Go are you using (`go version`)?
Go 1.6.3 and Go 1.7.3
<br>
### What operating system and pr... | Performance,NeedsInvestigation,compiler/runtime | medium | Critical |
191,101,255 | vscode | Add ability to extend from other settings files | Inspired by TSLint's ability to [extend](https://palantir.github.io/tslint/2016/03/31/sharable-configurations-rules.html) configuration files, it would be nice if `.vscode/settings.json` could behave the same way.
So if I have some global settings set up:
`~/example-repo/.vscode/my-company-settings.json`:
```jso... | feature-request,config | high | Critical |
191,119,672 | go | cmd/vet: add check for sync.WaitGroup abuse | The API for WaitGroup is very easy for people to misuse. The documentation for `Add` says:
> calls to Add should execute before the statement creating the goroutine or other event to be waited for.
However, it is very common to see this incorrect pattern:
```go
var wg sync.WaitGroup
defer wg.Wait()
go func() ... | Proposal-Accepted,Analysis | high | Critical |
191,217,489 | create-react-app | i18n support? | Any plans to add support for i18n?
I've had previous success with [i18n webpack plugin](https://webpack.js.org/plugins/i18n-webpack-plugin/) - perhaps this could be integrated into the webpack configuration?
Given that it increases build time significantly (as it makes use of webpack's multi-compiler feature i.e.... | issue: proposal | medium | Critical |
191,249,149 | youtube-dl | nature.com support | ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2016.11.22*. 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 |
191,268,762 | electron | Add option for renaming a file dragged with contents.startDrag() | When use contents.startDrag(item), It would be great to allow us to change the name of the file dragged. This can be done by adding a "name" optional option to the item given to startDrag().
By exemple, if I drag a file named "localFileName.jpg" from my app to the desktop and that I will rename this file name to "re... | enhancement :sparkles:,component/drag-and-drop | low | Major |
191,295,706 | youtube-dl | Reuters failed | <pre>C:\Users\***\Desktop>youtube-dl -v http://www.reuters.com/article/us-usa-trump
-britain-farage-vacancy-idUSKBN13H0HC
[debug] System config: []
[debug] User config: []
[debug] Command-line args: ['-v', 'http://www.reuters.com/article/us-usa-trump-b
ritain-farage-vacancy-idUSKBN13H0HC']
[debug] Encodings: loca... | request | low | Critical |
191,310,938 | go | x/sys/unix: Does not build on mipsel/mips64el/alpha/powerpc with gccgo | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
* `go version go1.6.1 gccgo (Debian 6.2.1-4) 6.2.1 20161119 linux/mipsn64`
* `go version go1.6.1 gccgo (Debian 6.2.1-4) 6.2.1 20161119 linux/mipso32`
Same for alpha and powerpc (the 4 arche... | NeedsFix,compiler/runtime | low | Critical |
191,359,204 | angular | Checkbox [ngModel] does not reflect model value when updated in (onModelChange) | **I'm submitting a ...** (check one with "x")
```
[x] bug report
[ ] feature request
[ ] support request
```
**Current behavior**
```<input type="checkbox" [ngModel]="foo" (ngModelChange)="onChanges()" />```
Behaves exactly like:
```<input type="checkbox" (onChanges)="onChanges()" />```
The checkbox only... | type: bug/fix,freq1: low,area: forms,state: confirmed,forms: ngModel,P4 | medium | Critical |
191,367,451 | angular | DebugElement.queryAll can return results in different order than DOM. | <!--
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,area: testing,freq3: high,hotlist: google,P3 | low | Critical |
191,385,357 | rust | Rust distribution uses massive amount of storage space | I'm a school student trying to work with Rust on lab computers. Students have between 0.5 GB and 1.5 GB of storage space.
My `.multirust` folder looks like this:
```
cpaten2@teaching:~/.multirust$ du -h --threshold=5MB
192M ./toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/li... | E-hard,C-enhancement,T-bootstrap,E-needs-design | low | Major |
191,407,237 | flutter | Popping a nested MaterialApp fails | In the app that follows, tapping causes another copy of the same MaterialApp to be Naviagtor.pushed.
Tapping the system back button appears to cause the outermost Navigator to pop, which causes the initial route to be redisplayed. This is as expected, although nested MaterialApps aren't really the common case.
Ta... | framework,f: routes,has reproducible steps,P3,team-framework,triaged-framework,found in release: 3.16,found in release: 3.18 | low | Major |
191,411,837 | youtube-dl | Not support http://video.caixin.com/2016-11-10/101006167.html | ```
proxychains4 youtube-dl -v http://video.caixin.com/2016-11-10/101006167.html
[proxychains] config file found: /usr/local/Cellar/proxychains-ng/4.7/etc/proxychains.conf
[proxychains] preloading /usr/local/Cellar/proxychains-ng/4.7/lib/libproxychains4.dylib
[proxychains] DLL init
[debug] System config: []
[debu... | site-support-request | low | Critical |
191,420,835 | youtube-dl | Unable to download http://aplus.com/'s videos. | Example:
$ youtube-dl http://aplus.com/a/interview-blue-man-group-co-founder-phil-stanton
[generic] interview-blue-man-group-co-founder-phil-stanton: Requesting header
WARNING: Falling back on generic information extractor.
[generic] interview-blue-man-group-co-founder-phil-stanton: Downloading webpage
[generic] i... | site-support-request | low | Critical |
191,626,558 | rust | Test cross compilation with `proc-macro` crates | In particular, test #37899. | C-enhancement,E-needs-test,A-cross | low | Major |
191,641,875 | kubernetes | Allow for serving GET operation from cache if user explicitly opt-in for it | Currently, if you are sending "LIST" request to apiserver, depending on the "ResourceVersion" field value:
https://github.com/kubernetes/kubernetes/blob/8ef325643490274f8639ea1bee8c7718b316e839/pkg/api/v1/types.go#L3247
the request will be served:
- from etcd if it is not set
- from apiserver cache, if it is set wi... | sig/scalability,sig/api-machinery,lifecycle/frozen | medium | Major |
191,747,263 | TypeScript | support customisable externalHelpersModuleNameText for --importHelpers flag | **TypeScript Version:** 2.1.1
Currently we can use `--noEmitHelpers` with `--importHelpers` to mitigate generation of bloated code in ever file which uses TS helpers ( `extends`, `decorate` ... etc ).
To make this work, currently only official [`tslib`](https://github.com/Microsoft/tslib) is supported which is [h... | Suggestion,In Discussion | low | Critical |
191,779,003 | vscode | [folding] retain folded state on copy/paste | - VSCode Version:1.7.2
- OS Version:WIN 10 14931
It is recommended to support folding of the code snippet also retain its folded format | feature-request,editor-folding | high | Critical |
191,780,842 | go | net/http: client.Do should mask EOF as ErrUnexpectedEOF | ```go
func Test(t *testing.T) {
server := httptest.NewServer(
http.HandlerFunc(
func(w http.ResponseWriter, r *http.Request) {
rwc, _, _ := w.(http.Hijacker).Hijack()
defer rwc.Close()
},
),
)
defer server.Close()
_, err := http.Get(server.URL)
if err != nil {
t.Fatalf("GET retur... | NeedsFix | low | Critical |
191,787,282 | go | net: document PacketConn IO operations in relation to packet sizes | The current phrasing on `PacketConn.ReadFrom` and `PacketConn.WriteTo` is:
> ReadFrom reads a packet from the connection, copying the payload into b. It returns the number of bytes copied into b and the return address that was on the packet. ReadFrom can be made to time out and return an Error with Timeout() == true a... | Documentation,help wanted,NeedsFix | low | Critical |
191,790,168 | youtube-dl | Site Request: Video reviews of Amazon.com products |
- [X] I've **verified** and **I assure** that I'm running youtube-dl **2016.11.22**
- [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... | site-support-request | low | Critical |
191,795,080 | flutter | Need better testing of hot reload | Given the hot reload breakage over this extended weekend and the impact it had on our users (see conversations in gitter, e.g.), we need to up our game in testing hot reload. I believe this is somewhat important to do sooner rather than later.
Specifically:
- [ ] test that hot reload works end-to-end on iOS
- [x] ... | a: tests,team,tool,t: hot reload,P2,team-tool,triaged-tool | low | Major |
191,830,464 | youtube-dl | Site Request: ITProTV | ## 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,account-needed | low | Critical |
191,877,556 | youtube-dl | Feature request: separate options for output file name and output directory | ## 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 | low | Critical |
191,878,546 | nvm | Create .bashrc automatically if bash found? | May I send a PR to enable it if no profile been detected but detected bash installed? Thanks. | installing nvm: profile detection | low | Minor |
191,879,305 | rust | index out of bound in slice not caught at compilation | Hi! I'm just learning Rust! I saw this odd behavior, where the compiler will nicely tell me that an index in an array is impossible at compile time, but won't tell me that an index in a slice of known size is also impossible.
I thought I'd share.
This fails at compile time:
```rust
let y = [1];
println!("y={}... | A-diagnostics,T-compiler,C-feature-request,A-mir-opt | low | Critical |
191,887,857 | rust | Optimize iterator chains better | The iterator adaptor `.chain()` and similar code uses a state flag that changes mid-loop; the compiler should recognize this and try to split it into two consecutive loops if possible.
Reproduction in code [(playground)](https://play.rust-lang.org/?gist=cbeda98c191140c030a174af63e6e713&version=nightly&backtrace=1)
... | I-slow,C-enhancement,T-compiler | low | Major |
191,920,404 | rust | rustdoc: stabilize `--playground-url` and deprecate `--markdown-playground-url` | cc https://github.com/rust-lang/rust/pull/37763 https://github.com/rust-lang/rust/pull/37911 | T-rustdoc,C-feature-request | low | Minor |
191,946,966 | angular | i18n ignore leading and trailing spaces | <!--
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... | feature,state: Needs Design,area: i18n,feature: under consideration | high | Critical |
191,968,209 | go | cmd/asm/internal/asm: add encoding tests for all architectures | At tip as of Nov 28, 2016: The end-to-end tests in cmd/asm/internal/asm/testdata are much weaker than they used to be. I have vague memories of a change someone (Russ?) made there, but now for most architectures all that is tested is the parse, not the result of the parse. These tests should be verifying that the assem... | NeedsFix | low | Major |
191,969,355 | neovim | :terminal - enable folding | - `nvim --version`: NVIM v0.2.0-1-g9956bee
- Operating system/version: macOS 10.12.1 (16B2555)
- Terminal name/version: iTerm2
- `$TERM`: screen-256color (tmux)
While searching for more uses for the terminal buffer I stumbled upon the fact that you can't use folds inside of it.
I'm currently running a watch... | enhancement,terminal,folds | low | Minor |
192,093,521 | go | database/sql: support tracing queries | The database now supports passing context to query methods and to the drivers.
Look into supporting some sort of trace functionality for the sql package. | NeedsInvestigation | high | Critical |
192,095,812 | TypeScript | Provide Format Options for JSX/TSX End of Tag Placement | From https://github.com/Microsoft/vscode/issues/16018 @VanishingDante
For the following JSX/TSX code:
```jsx
<div
>
<img
/>
</div>
```
The current formatting settings do nothing. There does not seem to be a way to control how the ending `>` is placed on lines.
We would like an additi... | Suggestion,Help Wanted,Domain: Formatter,VS Code Tracked | low | Minor |
192,179,562 | go | net/smtp: in smtp.go, c.cmd(501, "*") takes long for server to respond. |
### What version of Go are you using (`go version`)?
go version go1.7.3 linux/amd64
### What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
CC="gcc"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp... | help wanted,NeedsInvestigation | low | Critical |
192,202,725 | flutter | TextPainter.paint should talk about the offset and how it's affected by textAlign | ...and layout() should probably be more elaborate about what the minimum width does, again in particular with respect to textAlign. | framework,d: api docs,has reproducible steps,P3,team-framework,triaged-framework,found in release: 3.16,found in release: 3.19 | low | Minor |
192,232,144 | go | proposal: add Validate functions to image/jpeg, image/png etc. | (This is inspired by [this Russian StackOverflow question](http://ru.stackoverflow.com/questions/597009/%d0%9f%d1%80%d0%be%d0%b2%d0%b5%d1%80%d0%ba%d0%b0-%d0%b7%d0%b0%d0%b3%d1%80%d1%83%d0%b6%d0%b5%d0%bd%d0%bd%d1%8b%d1%85-%d1%84%d0%b0%d0%b9%d0%bb%d0%be%d0%b2-%d0%b2-golang) about image validation in Go.)
As of Go 1.7.3... | Proposal,Proposal-Hold | low | Critical |
192,282,868 | youtube-dl | windows 7 x64 problem? | hello
im using youtube-dl with sinusbot for teamspeak.
this worked very nice for a long time - until 2-3 months now?
so i updated to the lastest binaries and it gave me this error on windows 7 x64 if i try to run.

```
[x] bug report
[ ] feature request
[ ] support request
```
**Current behavior**
When subscribing to valueChanges, and then changing the value via the UI, the form control's PARENT's value is not up to date. For example, if my form control starts with a value o... | area: forms,forms: Controls API,P5 | medium | Critical |
192,388,526 | TypeScript | Standard package.json key for .ts files | A common TypeScript module structure looks like this:
```
src/index.ts
dist/index.js
dist/index.d.ts
```
and a `package.json` that looks like this:
```json
"main": "dist/index.js",
"types": "dist/index.d.ts",
```
There's a convention to [use the package.json key `jsnext:main`](https://github.com/ro... | Suggestion,Community Tooling,Awaiting More Feedback | medium | Critical |
192,429,417 | rust | Nested associated type projection is overly conservative | The following setup
```rust
trait OneTrait {
type Ty: AnotherTrait;
fn project() -> Self::Ty::Out;
}
trait AnotherTrait {
type Out;
}
```
produces the error
```
rustc 1.13.0 (2c6933acc 2016-11-07)
error[E0223]: ambiguous associated type
--> <anon>:3:17
|
3 | fn bar() -> Self::... | A-trait-system,T-compiler,C-bug | high | Critical |
192,536,832 | opencv | OpenCV 3 Windows Installer 32-bit | ##### System information (version)
- OpenCV => 3.1
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 2015
##### Detailed description
I really like your distributed binaries, but need the 32 bit version. I would really like to see 32 bit versions distributed with your windows installer... | RFC | low | Minor |
192,680,554 | go | plugin: using stdlib package plugin from c-archive package doesn't work as expected | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
`go version devel +5d1b53a Wed Nov 30 19:46:00 2016 +0000 linux/amd64`
### What operating system and processor architecture are you using (`go env`)?
```
GOARCH="amd64"
GOBIN=""
GOEXE=... | compiler/runtime | low | Critical |
192,683,286 | go | cmd/go: allow building non-main package with -buildmode=plugin | The plugin package currently requires a `main` package as an entry point to use `-buildmode=plugin`. I would like to use the plugin package to load library packages at runtime, which are only used for their initializers. Plugins usually look like:
```
package myPlugin
import "github.com/someApp/plugins"
func ... | NeedsDecision | low | Major |
192,751,120 | rust | rustdoc: Don't distinguish structs and tuple structs with only private fields | For example, [`AddrParseError`](https://doc.rust-lang.org/std/net/struct.AddrParseError.html) shows up as `pub struct AddrParseError(_);` and [`Ipv4Addr`](https://doc.rust-lang.org/std/net/struct.Ipv4Addr.html) shows up as `pub struct Ipv4Addr { /* fields omitted */ }`
I feel like all structs should show up as the l... | T-rustdoc,E-medium,C-feature-request | low | Critical |
192,783,050 | youtube-dl | Site Support Request for Esquire TV Network web site | ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2016.12.01*. 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,geo-restricted,tv-provider-account-needed | low | Critical |
192,785,063 | go | x/mobile: gradle plugin uses same command-line flags for gomobile and gobind but thier flags are not same | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go version go1.7.3 darwin/amd64
### What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
G... | mobile | low | Critical |
192,821,290 | youtube-dl | [1tv.ru] Missing videos | Hello dear coders !
Not a long time ago 1tv.ru has changed its web page video casting method, I'll explain:
Before each video was separated by different .mp4 files thus user has ability to get each .mp4 w/o using Y-DL, on that time, even by standard wget.
Now instead of one mp4 file I see many .ts chunks- as RTR, ... | bug | low | Minor |
192,869,481 | go | runtime: new goroutines can spend excessive time in morestack | ### What version of Go are you using (`go version`)?
`go version devel +41908a5 Thu Dec 1 02:54:21 2016 +0000 darwin/amd64` a.k.a `go1.8beta1`
### What operating system and processor architecture are you using (`go env`)?
```
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="dar... | Performance,NeedsDecision | high | Critical |
192,891,423 | opencv | Inconsistent HOG descriptor for non-continuous vs continuous Mat | <!--
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... | RFC | low | Critical |
192,903,767 | youtube-dl | Site support request: StuffYouShouldKnow.com podcasts | ---
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2016.12.01*. 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 **veri... | site-support-request | low | Critical |
192,906,121 | youtube-dl | Support embedded videos in Wordpress posts (was: Unsupported URL: http://www.vdrome.org/) | ## 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 | low | Critical |
192,911,590 | go | x/build: test whether Go core changes break external tools and debuggers | Changes to the Go core (compiler output, libraries, x/tools) can break tools and debuggers that build on them, such as gocode (@nsf), Delve (@derekparker), and Backtrace's ptrace (@abelmathew). While those tool authors can test for breakages against tip, it might be useful for us to know when CLs submitted to the Go c... | Builders | low | Critical |
192,924,407 | youtube-dl | Add vidyard support | ## 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 | medium | Critical |
192,937,446 | TypeScript | Allow augmentation of re-exported module | I've sadly discovered that it not possible to augment a ES2015 module that is being re-exported. At least not without specifying the full path to the ES2015 that is then being re-exported.
This has significant implications, particularly for library authors and consumers.
An example would probably help clarify.
... | Suggestion,Experience Enhancement | medium | Major |
192,983,382 | pytorch | Keyword arguments passed to module's __call__ aren't forwarded to the hooks | Our current signature of the nn forward hook is `(module, input, output)` (where `input` and `output` are tuples), so there's no good way to pass kwargs to them (can't append to input, because dicts are unordered, passing as kwargs seems quite inconvenient for the user).
cc @albanD @mruberry @jbschlosser @walterddr @k... | module: nn,low priority,triaged,enhancement | low | Minor |
192,983,850 | go | x/net/websocket: remedy neglect; merge with gorilla websocket? | It is not well maintained, and essentially everyone uses https://github.com/gorilla/websocket.
This was raised as a concern in #17244: because it is in the x/net repository, people attach greater value to it than it really ought to have.
/cc @dsnet
**EDIT 2016-12-02:** Copying in my better-phrased problem stat... | NeedsDecision | high | Critical |
192,994,027 | electron | Cache data is written to `userData` dir instead of `cache` dir | * Electron version: 1.3.9 (via Atom 1.12.6) and unknown (via Slack 2.3.2)
* Operating system: Linux
### Expected behavior
Files stored by Electron on behalf of electron apps, should follow the XDG Base Directory specification and place only config files in $XDG_CONFIG_HOME/<App name> (default ~/.config/). cache ... | bug :beetle:,10-x-y,11-x-y,12-x-y,13-x-y | high | Critical |
192,998,794 | vue | list rendering optimization fails in some cases | I have virtual scrolling list with a lot of rows. I only show a few of them at a time using
this.view = this.items.splice(position, position + 5)
If 'position' is incremented or decremented, you would expect that in the DOM one element gets added, and one gets deleted. In the 'up' direction, that is the case. Bu... | improvement | low | Major |
193,037,538 | go | runtime: latency in sweep assists when there's no garbage | `go version devel +ae9712c766 Thu Dec 1 22:20:31 2016 +0000 darwin/amd64`, and linux/amd64
I wrote a test case for the GC latency described by @WillSewell in https://blog.pusher.com/golangs-real-time-gc-in-theory-and-practice/ . I recorded the timestamps of when pauses (during allocation) were observed, and matched ... | NeedsFix,compiler/runtime | medium | Critical |
193,066,190 | go | cmd/link: internal linking for GOOS=linux, -buildmode=plugin | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
(1.8beta1)
go version devel +41908a5 Thu Dec 1 02:54:21 2016 +0000 darwin/amd64
### What operating system and processor architecture are you using (`go env`)?
Darwin:
```
GOARCH="amd64"
... | compiler/runtime | low | Critical |
193,143,501 | TypeScript | Allow declaring properties inside class constructors | It's a little clunky setting up properties in classes right now.
Here's what I have to do at the moment to set a property value in the constructor:
```TypeScript
class Animal {
public interruptedSound: string;
constructor(public sound: string) {
this.interruptedSound = sound.substring(0, 3);
... | Suggestion,Awaiting More Feedback | low | Critical |
193,203,141 | rust | Iterator adaptors should allow unsized function fields | For example `::std::iter::Map<::std::ops::Range<u8>, Fn(u8) -> u32>` is fully technically possible type, except `Map` doesn't allow for unsized `F`, because it is not marked as such. | C-enhancement,T-libs-api,A-iterators | low | Minor |
193,222,573 | youtube-dl | Allow merging extracted tracks | Hello dear authors, gurus. I have small Q:
What we have here -
format code extension resolution note
249 webm audio only DASH audio 53k , opus @ 50k (48000Hz), 4.51MiB
250 webm audio only DASH audio 75k , opus @ 70k (48000Hz), 5.20MiB
171 webm audio only DASH audi... | request | medium | Major |
193,253,462 | TypeScript | Improvement: Design metadata should contain property names and types | At the moment it's not possible to get all Properties of a Type with the corresponding design-type of the property.
It's only possible to get all properties of an object by using Object.keys() and this wouldn't return properties which haven't been set, of course the simply don't exist.
So it wold be a great feature, ... | Suggestion,Revisit,Domain: Decorators | medium | Critical |
193,264,540 | go | net: Dial should not conceal effective errors | https://go-review.googlesource.com/8768 changed to return the first detected error on consecutive or parallel dialing as opposed to the previous. Unfortunately this change makes debugging hard. Also it probably makes package developers using the net package confusing.
For example, assuming we need to fetch some reso... | NeedsInvestigation | low | Critical |
193,276,464 | youtube-dl | Site support request: mytv.tvb.com | ## 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,geo-restricted | low | Critical |
193,277,000 | youtube-dl | Site support request: video.sport1.de | ## 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 |
193,277,410 | youtube-dl | Site support request: wwos.nine.com.au | ## 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 |
193,294,711 | nvm | How to run the tests locally? | I tried the instructions as readme says, but there are always errors there like:
```
+ rm -Rf v* src alias
+ mkdir src alias
Aliases
✓ "nvm alias" should not accept aliases with slashes
✓ "nvm unalias" should not accept aliases with slashes
✓ Running "nvm alias <aliasname> <target>" again shoul... | testing | medium | Critical |
193,306,658 | go | net: can {Conn,PacketConn}.Close block? | The documentation for `net.Conn.Close` is:
> Close closes the connection. Any blocked Read or Write operations will be unblocked and return errors.
However, it does not mention anything about whether `Close` itself can block.
Some `net.Conn` implementations have an implicit write buffer. Thus, when `Close` is ca... | Documentation,NeedsFix | low | Critical |
193,373,555 | youtube-dl | NoneType is not callable in utils.py | ```
Error Type: <type 'exceptions.TypeError'>
Error Contents: attribute of type 'NoneType' is not callable
Traceback (most recent call last):
File "ytdl_test.py", line 588, in <module>
yt_download()
File "ytdl_test.py", line 393, in yt_download
result = ydl.extract_info(url, d... | external-bugs | low | Critical |
193,380,666 | TypeScript | WebWorker and dom lib does not support transfers in the type for postMessage | <!-- 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.0.10
**C... | Bug,Help Wanted,Domain: lib.d.ts | low | Critical |
193,424,864 | neovim | word-wrap ("gq" or "gw") is not idempotent | - `nvim --version`:
```
NVIM 0.1.7
Build type: None
Compilation: /usr/bin/cc -g -O2 -fdebug-prefix-map=/build/neovim-Rms3o8/neovim-0.1.7=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -DDISABLE_LOG -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Wall -Wextra -pedant... | bug-vim | low | Critical |
193,450,533 | TypeScript | Incorrect type definition for "ErrorEvent" in "lib.es6.d.ts" | **TypeScript Version:** 2.0.10
**Code**
This issue was first mention in Stackoverflow:
http://stackoverflow.com/questions/40935259/how-to-create-an-errorevent-in-typescript/
The question:
> According to this post
>
> http://stackoverflow.com/questions/26554607/how-to-properly-initialize-en-errorevent... | Bug,Help Wanted,Domain: lib.d.ts | low | Critical |
193,543,935 | angular | Binding on input [type] is broken | **I'm submitting a ...**
```
[x] bug report => search github for a similar issue or PR before submitting
```
**Current behavior**
Try to bind the `type` attribute of input:
```js
// in Class
inputType="number"
// in html
<input [type]="inputType" formControlName="integerB" />
```
Initially, the value... | feature,state: blocked,freq2: medium,area: forms,feature: under consideration | high | Critical |
193,547,262 | opencv | Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'nextEventMatchingMask should only be called from the Main Thread!' | I am seeing an exception on a macOSx Sierra when running the following line:
```
key = cv2.waitKey(1) & 0xFF
```
Any idea what could be the issue ?
```
2016-12-05 11:29:24.521 python[94697:4307308] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'nextEventMatchingMas... | bug,category: highgui-gui,platform: ios/osx | low | Minor |
193,593,423 | angular | Support cold event streams in templates | # Requirements
* [R1] Observables must be cold (ie if there is no subscription then there should be no listeners.)
USE CASE: drag and drop. No need to listen on mousemove if drag has not been initiated.
* [R2] It must be possible to execute an expression which computes the action which will be next-ed into the obser... | feature,area: core,core: event listeners,cross-cutting: observables,feature: under consideration | high | Critical |
193,640,761 | TypeScript | Support @class in JSDoc | From https://github.com/Microsoft/vscode/issues/15168
For the following JavaScript code:
```js
/**
* @class
*
* @param {number} x
*/
function Foo(x) {
this.x = x
}
/**
* @param {Foo} foo
*/
const request = function(foo) {
}
```
The `@class` jsdoc annotation for `Foo` does not seem ... | Suggestion,Help Wanted,VS Code Tracked,Domain: JSDoc,Domain: JavaScript,Has Repro | low | Major |
193,642,476 | opencv | VS2017: CMake files are put outside the build directory | ##### System information (version)
- OpenCV => GitHub master from today
- Operating System / Platform => Win 8.1
- Compiler => VS2015-U3
- CMake => 3.7.1
##### Detailed description & Steps to reproduce
If you do an out-of-source build and have the following directory layout:
```
opencv # sources
build... | bug,category: build/install | low | Major |
193,645,538 | youtube-dl | [Site Support Request] adsrcourses.com | ## 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
---
... | account-needed | low | Critical |
193,754,635 | opencv | ORB OpenCL in opencv 3.1-dev is different with opencv3.1 release, and something is wrong there. |
<!--
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 ... | wontfix,category: features2d,platform: ios/osx,category: ocl | low | Critical |
193,807,619 | youtube-dl | Site support request for 9jumpin.com.au | While trying to download a video, using the latest version of youtube-dl, it says that the url is unsopported. So this is a site support request for the website 9jumpin.com.au
This is a url example: http://www.9jumpin.com.au/show/today/today-takeaway/2016/december/is-benedict-cumberbatch-headed-for-australia/
Fr... | geo-restricted | low | Critical |
193,847,551 | opencv | INSTALL target can't be re-run in VS2017RC | ##### System information (version)
- OpenCV => GitHub master from today
- Operating System / Platform => Win 8.1, 64bit, CMake 3.7.1
- Compiler => VS2017RC
##### Detailed description
The `INSTALL` target is somehow broken in VS2017. You can run it once, it installs all files, but then when you run the target a... | bug,priority: low,category: build/install | low | Critical |
193,893,732 | kubernetes | Expose enough information to resolve object references and label selectors generically | The API has a number of references to other resources that don't specify full details needed to construct API calls (e.g., `secretName`) without specific, detailed knowledge of the API. Clients need to be able to resolve dependencies generically.
There are a few possible approaches. One could be to augment the Open... | area/app-lifecycle,area/extensibility,sig/api-machinery,lifecycle/frozen | low | Major |
193,899,367 | opencv | YUV/YCbCr conversions only support imagery using the SD colorspace | ##### System information (version)
- OpenCV => 3.1
- Operating System / Platform => All
- Compiler => All
##### Detailed description
Color conversions in OpenCV between YUV/YCbCr and color models like RGB only use the colorspace coefficients for SD/Rec.601. Therefore if you use imagery in the HD/Rec.709 or UHD... | feature,category: imgproc | low | Minor |
193,923,015 | go | test: doesn't use GO_GCFLAGS for tests | GO_GCFLAGS only affects the compiler that is invoked directly by the `dist` tool (I think).
The compiler invoked by test/run.go doesn't have its command line modified by GO_GCFLAGS.
So all of the tests in test/ aren't actually testing what we think they are testing on the modified builders like noopt and ssacheck.
... | help wanted,Builders,NeedsFix | low | Minor |
193,932,400 | rust | `rustc -v` should print out linker output | If I compile something with `rustc -v`, it doesn't show the linker invocations or anything else:
```
$ echo "fn main() {}" > t.rs
$ rustc -v --crate-type bin t.rs
$ ls -l t
-rwxr-xr-x. 1 jsgf users 2052670 Dec 6 17:15 t
```
<!-- TRIAGEBOT_START -->
<!-- TRIAGEBOT_ASSIGN_START -->
<!-- TRIAGEBOT_ASSIGN_DATA_... | A-frontend,A-linkage,T-compiler,C-feature-request | medium | Critical |
Subsets and Splits
GitHub Issues Containing Next.js References
Filters training data to find examples mentioning "next.js", providing basic keyword search capability but offering limited analytical value beyond simple retrieval.