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 |
|---|---|---|---|---|---|---|
157,412,105 | rust | Trailing semicolon silently ignored in expr macro | ```
fn main() {
macro_rules! a {
($e:expr) => { $e; }
}
a!(true)
}
```
Error: Expected `()`, found `bool`
But:
```
fn main() {
macro_rules! a {
($e:expr) => { $e; }
}
a!(true); // <-- semicolon
}
```
does not warn that the `;` is ignored.
So either
- there should be a warni... | A-macros,C-bug | low | Critical |
157,477,619 | youtube-dl | pluralsight "skill" | It would be awesome if also the "skills" url could be grabbed
The "skills" are a group of courses.
Link sample https://app.pluralsight.com/paths/skill/docker
| request,account-needed | low | Major |
157,495,417 | rust | Cannot create function reference with parameters that don't have to outlive the functions lifetime | List of things tried (that I remember):
- Using the same lifetime for both the closure reference and it's parameters renders the reference uncallable: https://is.gd/CpXw0w
- Using different lifetimes for the closure reference and it's parameters fails to compile, since the parameters must _outlive_ the closure itself: ... | A-lifetimes,C-bug,T-types | low | Minor |
157,538,814 | go | x/mobile/exp/audio: Windows support | # The problem
The [current al implementation](https://github.com/golang/mobile/tree/master/exp/audio/al) does not allow for Windows builds. A while ago I posted [this](https://groups.google.com/forum/#!topic/golang-nuts/mfaRRJc1-gI) on the forums.
# The fix
This feels a bit hacky, but I managed to update the C-impo... | OS-Windows,mobile | low | Major |
157,689,630 | kubernetes | Scheduling of pods with RWO volumes | Since RWO volumes work only on a single host, wouldn't it be reasonable for the scheduler to schedule pods for a {RC,RS,D,etc.} that uses such a volume on the same node? Otherwise, pods that land on different nodes are essentially blocked. Deployments are the most affected since you can have a Deployment with just one ... | priority/important-soon,sig/scheduling,sig/storage,kind/feature,lifecycle/frozen | high | Critical |
157,707,489 | youtube-dl | Site support request: ComedyCentral UK | Example URL: http://www.comedycentral.co.uk/friends/articles/sitcom-cameos.
The site is geo-restricted to the UK.
| site-support-request,geo-restricted | low | Minor |
157,733,937 | go | cmd/vet: check for duplicate cases in switches | Consider:
``` go
type A [1]int
func f(x A) {
switch x {
case A([1]int{1}):
case A([1]int{1}):
}
}
```
This is almost certainly a typo; the second case is unreachable. The compiler may reject duplicate constant cases in expression switches, but not e.g. `nil` or composite literals containing constants... | Analysis | low | Critical |
157,739,511 | go | cmd/vet: printf findings can be arbitrarily long | When vet reports a printf problem such as this one:
```
fmt.Printf("%d", func() { ... }) // arg in printf call is a function value, not a function call
```
it prints out the entire body of the function literal, which can be quite long.
For example, given the program at https://play.golang.org/p/f8W0zpISww, vet prints... | NeedsDecision,Analysis | low | Minor |
157,742,103 | youtube-dl | Add support for jizzbunker.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
---
### Make s... | site-support-request | low | Critical |
157,788,188 | rust | Argument names in foreign functions, function types and trait methods are not resolved | Arguments in foreign functions, function types and traits are pattern bindings like all other function arguments and supposedly they should be resolved in the same way, however they are not resolved at all.
It doesn't make _much_ difference because these bindings can't be used in function bodies, however it makes _some... | A-resolve,T-compiler,C-bug | low | Critical |
157,820,043 | youtube-dl | [Python3][Tumblr] Infinite redirect when using proxy feature | `version 2016.05.30.2`
`youtube-dl -j "http://sythnmsvntn.tumblr.com/post/145116566731/little-kid-dancing-to-seventeens-pretty-u-this-is`
**WITHOUT proxy:**
Request 1:
> GET /post/145116566731/
(why is youtube-dl removing part of the url here?)
Response:
> HTTP/1.1 301 Moved Permanently
> Location: http://sythnm... | cant-reproduce | low | Critical |
157,820,099 | youtube-dl | Allow rendering subtitles besides simply adding a subtitle stream (was: Feature request "-f bestsubtitle") | ## 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
---
### Make s... | request,subtitles | medium | Critical |
157,886,686 | rust | The `meta` fragment specifier is considered as a single TT. | At various locations of the FOLLOW sets analysis for `macro_rules!`, `meta` is considered as always matching a single TT. This is not the case: `ident = ...` and `ident(...)` are both valid `meta`s.
That being said the only consequence of this is that `meta` can be followed by anything, and I think it's not unreasonab... | A-macros,C-bug | low | Minor |
157,980,587 | rust | [rustdoc] Rustdoc should prevent long file names. | I'm not actually certain if handling absurdly long method names should be a goal for rustdoc, but currently they produce filenames that are too long for the filesystem. I discovered this while working with [opencv-rust](https://github.com/kali/opencv-rust) which auto generates c-wrapper methods for opencv, some of whic... | T-rustdoc,C-feature-request | low | Critical |
158,015,930 | youtube-dl | Add Support for Hubspot Academy | I ran the update command, but it updated to 2016.5.30.2.
- [X] I've **verified** and **I assure** that I'm running youtube-dl **2016.5.30.2**
- [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](http... | bug | low | Critical |
158,019,131 | go | reflect: StructOf doesn't generate wrapper methods for embedded fields | ```
% go version
go version devel +bbd1dcd Wed Jun 1 21:32:46 2016 +0000 linux/amd64
% cat ~/a.go
package main
import (
"bytes"
"io"
"reflect"
"sync"
)
func main() {
t := reflect.StructOf([]reflect.StructField{
{Type: reflect.TypeOf(sync.Mutex{}), Anonymous: tru... | NeedsFix,compiler/runtime | medium | Major |
158,022,097 | go | cmd/compile: SSA performance regression due to array zeroing | go version devel +bbd1dcd Wed Jun 1 21:32:46 2016 +0000 darwin/amd64
https://github.com/hydroflame/go1.7bench
This very simple program take 2 4 element vector and performs component wise addition.
If you run the benchmark with SSA and without you will see that it is much faster without SSA.
```
$ go test -run NONE -b... | Performance,NeedsFix,compiler/runtime | low | Major |
158,040,788 | youtube-dl | Show the title of excluded videos (was: How To Use The "forcetitle" Option) | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.06.02**
### Before submitting an _issue_ make sure you have:
- [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://g... | request | low | Critical |
158,122,990 | rust | Immutable borrow as argument for mutable borrow does not compile | I have the following piece of code which I expect to work but the borrow checker does not agree:
```
fn main() {
let mut data = vec![1; 100];
{
let (left, right) = data.split_at_mut(data.len() / 2);
}
println!("{:?}", data);
}
```
Please note that the extra scope is in principle no... | A-borrow-checker,T-compiler,C-bug | low | Critical |
158,134,290 | react | Changing state in onFocus and onChange for a select multiple element does not work in Firefox | I want to use a controlled `<select multiple={true} />` component in React. In addition to the value I also want to keep the focused state of the select in the state. To do this, I update the state with `setState` in the `onChange`, `onFocus` and `onBlur` event handlers. Unfortunately there is an issue in Firefox: Fire... | Type: Bug,Component: DOM | low | Major |
158,151,643 | youtube-dl | add support for volafile.io - rip entire room / all movie files | example URL
`https://volafile.io/r/08wJOs`
warning URL only temporary and will expire
| site-support-request | low | Major |
158,190,038 | go | runtime: main_init_done can be implemented more efficiently | A C thread in a -buildmode={c-archive,c-shared} may call back into Go code before Go initialization is complete, in which case it must wait. It currently waits using a channel called `main_init_done`. In the review of https://golang.org/cl/23610 Dmitry points out that this can be done more efficiently. The callback ... | Performance,NeedsFix,compiler/runtime | low | Critical |
158,284,783 | rust | Provide mechanism for documenting known bugs or shortcomings | Go has a [fairly poorly documented](https://github.com/golang/go/issues/5060) feature that lines marked with `BUG` are shown under "Bugs" in documentation for a package. The keywords can be configured using the (again poorly documented) `-notes` argument to [`godoc`](https://godoc.org/golang.org/x/tools/cmd/godoc). Thi... | T-rustdoc,C-feature-request | low | Critical |
158,305,270 | youtube-dl | Blogspot falls back on generic | ### What is the purpose of your _issue_?
- [ ] Bug report (encountered problems with youtube-dl)
- [x] Site support request (request for adding support for a new site)
- [ ] Feature request (request for a new functionality)
- [ ] Question
- [ ] Other
```
youtube-dl --ignore-config --v http://vida420armonia.blogspot.co... | site-support-request | low | Critical |
158,367,498 | youtube-dl | Add site-support for akibapass.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
---
### Make s... | site-support-request,geo-restricted | low | Critical |
158,449,660 | youtube-dl | Site support request: TYTNetwork | Example url: https://www.tytnetwork.com/2016/05/18/wtf-money-monster/
Note that some urls, like [this one](https://www.tytnetwork.com/2016/05/25/verizon-strikers-take-poster-child-corporate-greed/), are YouTube-embeds, which the generic extractor catch
| site-support-request | low | Minor |
158,491,071 | opencv | Error using -baseFormatSave | Hi, I'm working with OpenCV 2.4.9 on Ubuntu 16.04. I tried to create my own cascade file with opencv_traincascade but for my application I need that the .xml is saved on the old format (opencv_haartraining). I tried to use the -baseFormatSave argument for this but when it finishes the training this error appears:
```
... | bug,category: apps | low | Critical |
158,491,903 | go | x/mobile: support multiple independent bindings in the same app | Please answer these questions before submitting your issue. Thanks!
1. What version of Go are you using (`go version`)?
1.5
2. What operating system and processor architecture are you using (`go env`)?
windows amd64
3. What did you do?
I make arr module by use gomobile bind common, but I have two different... | NeedsInvestigation,mobile | medium | Critical |
158,492,263 | youtube-dl | [vk] Add support for 1tv embeds | ### Make sure you are using the _latest_ version: run `youtube-dl --version` and ensure your version is _2016.06.03_. 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** a... | request | low | Critical |
158,498,107 | youtube-dl | Request: Add support for IMDb title page | IMDb is currently supported, but not for [title pages](http://www.imdb.com/title/tt1475582/). These often contain multiple videos. [This url](http://www.imdb.com/title/tt1475582/videogallery) contains all the videos from the title page.
| request | low | Minor |
158,499,564 | opencv | Compile OpenCV 3.1.0 with ICC -mmic Xeon PHI | Hi all. I need to use OpenCV+FFMPEG in a Xeon Phi without root permission.
My environment is:
- OpenCV version: 3.1.0
- Host OS: Linux
- Target OS: Phi Co-Processor
- Compiler & CMake: ICC 15.0.2 & CMake 3.5.2 (installed in my home)
When I compile OpenCV with GCC in my home, it works fine. I compile with
cmake -D C... | bug,priority: low,category: build/install | low | Critical |
158,529,356 | opencv | findContours documentation does not state how to find the first contour | When using the CV_RETR_TREE mode to retrieve the whole hierarchy of the contours in findContours(), the documentation is missing information on how to find the _first_ contour from which the links are to be followed. The first contour could be 0, but without documentation I cannot be sure. Because of this, I have to do... | feature,category: imgproc,category: documentation | low | Major |
158,537,769 | go | cmd/go: go get download progress and download speed status | go 1.6
linux_amd_64
### problem
go get is an awesome tool download and install repositories from websites. But the problem is many times due bad internet connection or varying internet speed or a large repository it takes a lot of time.All we can do is look at blinking the cursor and there is no way to know how much c... | NeedsInvestigation | high | Major |
158,564,968 | go | all: combine broken up DATA statements in assembly | During the 1.7 cycle, @mdempsky made it possible to have long DATA statements in assembly. For 1.8, let's clean up all the assembly. Not a priority, but easy and pleasing. It would also have allowed spellcheckers that people run occasionally to catch #15962.
| NeedsFix | low | Critical |
158,577,766 | youtube-dl | Site support request: m2m.tv | youtube-dl is unable to extract videos from m2m.tv. Tested with 2016.06.03. I'd like to request support.
Example URL of a video:
https://m2m.tv/watch/vivienne-westwood-do-it-yourself/films
Index of available videos:
https://m2m.tv/films
Thanks!
| site-support-request | low | Major |
158,592,498 | go | x/build/cmd/relui: create GitHub releases | GitHub has a ["releases" feature](https://help.github.com/articles/creating-releases/) that provides downloadable releases in a well-known location. We could make Go releases available via GitHub as well as our [download page](https://golang.org/dl/).
Assuming we want to do so, we could modify the `release` tool to cr... | Builders,NeedsDecision,FeatureRequest | medium | Major |
158,757,190 | go | cmd/cgo: undefined reference when linking a program that refers to SIG_DFL. | cgo appears to be unable to link Go programs that refer to SIG_DFL or SIG_IGN.
(This is admittedly an esoteric use-case, since Go programs should generally not be using signal.h in any way. However, it may be a symptom of some other bug around cgo's handling of function pointers and macros.)
Platform:
``` sh
$ go v... | NeedsFix | low | Critical |
158,794,578 | rust | "invalid subrange count" compiling `[(); 1 << 63]` with -g enabled | The following produces an LLVM error with `-g` enabled:
``` rust
let _a = [(); 1 << 63];
```
The error is:
```
invalid subrange count
!16 = !DISubrange(count: -9223372036854775808)
LLVM ERROR: Broken function found, compilation aborted!
```
| A-LLVM,A-debuginfo,I-ICE,P-medium,T-compiler,regression-from-stable-to-stable,C-bug,glacier,S-bug-has-test | low | Critical |
158,809,868 | rust | Make `--export-dynamic` the default option when linking executables. | With `#[no_mangle] pub fn` Rust exports a dynamic symbol for the defined function in an executable, but this behaviour is somewhat magical and not transitive.
If `--export-dynamic` is made the default then all symbols that are marked as visible in any dependency of the executable will also be exported as a dynamic sym... | A-linkage,C-feature-request | low | Major |
158,867,714 | opencv | How can use the runAt function in cascade detect in opencv 3.1? | This is a template helping you to create an issue which can be processes as quickly as possible. Feel free to add additional information or remove not relevant points if you do not need them.
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
... | feature,category: objdetect | low | Critical |
158,883,763 | youtube-dl | Support for chickybox.com | - [X] I've **verified** and **I assure** that I'm running youtube-dl **2016.06.03**
### Before submitting an _issue_ make sure you have:
- [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://g... | site-support-request | low | Critical |
158,981,958 | vscode | take advantage of tsserver model of code for faster TypeScript builds | - VSCode Version: 1.2
- OS Version: Windows 7, x64
Currently a way to build a TypeScript project is to run a console command (tsc) that works separately from the tsserver. It looks like the the build could have been done faster if the model of code stored in the tsserver was used that is already parsed, bound and part... | feature-request,typescript | low | Major |
158,985,597 | go | crypto/x509: CertificateRequest does not support attributes not covered by pkix.AttributeTypeAndValueSET | Prior to Go 1.5 it was not possible to parse CSRs which included single attributes like challenge password( OID 1.2.840.113549.1.9.7) See https://github.com/cloudflare/cfssl/issues/115
This issue was addressed in CL [#8160](https://go-review.googlesource.com/#/c/8160/) https://github.com/cloudflare/go/commit/23fca3da8... | NeedsInvestigation | low | Minor |
159,017,368 | go | x/net/html: provide convenience methods FirstElementChild/NextElementSibling | Please answer these questions before submitting your issue. Thanks!
1. What version of Go are you using (`go version`)?
go version go1.6.1 linux/amd64
1. What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH=... | NeedsInvestigation | low | Critical |
159,057,650 | go | x/net/http2: data race on DebugGoroutines | This is an issue of http2 package-specific debug hook, so not critical.
```
go test -race golang.org/x/net/http2 -count 10
==================
WARNING: DATA RACE
Write at 0x000000705ee2 by goroutine 236:
golang.org/x/net/http2.TestGoroutineLock()
/swdev/src/golang.org/x/net/http2/gotrack_test.go:15 +0x82
tes... | Testing | low | Critical |
159,059,505 | go | cmd/compile: escape analysis of interface calls to non-exported method names | Consider this Go source:
```
package p
import "fmt"
type A int
func (A) f(x *int) { fmt.Println("A", *x) }
type B int
func (B) f(x *int) { fmt.Println("B", *x) }
func (B) g() {}
type Fer interface { f(x *int); g() }
func H(f Fer) {
i := 42
f.f(&i)
}
```
At the f.f(&i) call site in H, we can't be sure exa... | compiler/runtime | low | Minor |
159,100,646 | neovim | :normal ex command should work in terminal mode | - `nvim --version`: `NVIM v0.1.5-385-g999590b`
- Operating system/version: OS X / 10.11.5
- Terminal name/version: iTerm2 / Build 3.0.20160607-nightly
- `$TERM`: xterm-256color
- Actual behaviour:
`execute "normal! gt"` have no effect when run from a terminal, if a terminal is active.
- Expected behaviour:
`execut... | bug,terminal | low | Major |
159,117,787 | youtube-dl | hls process | ### Make sure you are using the _latest_ version: run `youtube-dl --version` and ensure your version is _2016.06.03_. 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** a... | bug | low | Critical |
159,174,986 | rust | slice::sort_by_key has more restrictions than slice::sort_by | I expected that these invocations of `sort_by` and `sort_by_key` would be equivalent:
``` rust
struct Client(String);
impl Client {
fn key(&self) -> &str {
&self.0
}
}
fn main() {
let mut clients: Vec<Client> = vec![];
// Error: cannot infer an appropriate lifetime for autoref due to conflic... | T-libs-api,C-bug | medium | Critical |
159,254,344 | flutter | Should cross-fade the paginated data table header when it changes | If you select something, we replace the header with a count of selected items. We should do that with an animation that cross-fades from the previous text, or something. Right now it feels a bit sudden.
| c: new feature,framework,f: material design,P3,team-design,triaged-design | low | Minor |
159,275,230 | opencv | Better to have an option for Python3 or Python2? | ### Please state the information for your system
- OpenCV version: 3.x (git)
- Host OS: Linux (Ubuntu 16.04)
- GCC 5.3.1 & CMake 3.5.1
### In which part of the OpenCV library you got the issue?
Python
### Expected behaviour
While configure, I can see
> PYTHON2_EXECUTABLE /usr/bin/python2.7
> PYTHO... | feature,priority: low,category: build/install | low | Critical |
159,288,238 | youtube-dl | Feature Request - Remove Videos from YouTube Playlist after Download | ### What is the purpose of your _issue_?
- [ ] 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
---
### Feature Request - Remove Videos from YouTube Playlist after ... | request | low | Critical |
159,359,615 | youtube-dl | [eclassesbyravindra] Site support request | C:\chirag\Videos\Gate Ravi Lectures\CN Problems>youtube-dl.exe http://eclassesby
ravindra.com/enrol/index.php?id=24/
[generic] index: Requesting header
[redirect] Following redirect to http://eclassesbyravindra.com/login/index.php
[generic] index: Requesting header
WARNING: Falling back on generic information extractor... | site-support-request,account-needed | medium | Critical |
159,479,062 | angular | Control Validators should be observable chains | - **I'm submitting a ...**
- [X] feature request
**Current behavior**
Validators are callback functions
**Expected/desired behavior**
Validators should be observables.
- **What is the motivation / use case for changing the behavior?**
Currently it is very counter intuitive to build debounced async validators (http:/... | feature,state: Needs Design,area: forms,feature: under consideration | medium | Critical |
159,508,296 | go | x/mobile/font: Default font fail on MacOS and iOS | Hello,
1. What version of Go are you using (`go version`)?
I'm using Go version 1.6.2 and Gomobile version +c435d0b
2. What operating system and processor architecture are you using (`go env`)?
I'm on MacOS (darwin / amd64)
3. What did you do?
I'm trying to use the Default system font on MacOS and iOS (gomobil... | mobile | low | Critical |
159,552,711 | go | x/net/http2: deal with half-closed remote in Transport, flaky TestTransportResPattern_c0h1d0t0, TestTransportResPattern_c1h2d0t0 | See https://build.golang.org/log/6c16a5f66e28811897fa9ff2818873f56a9a128c and https://build.golang.org/log/5ea1f443a67a371b9acdebeee89cc802345ce5fb.
```
--- FAIL: TestTransportResPattern_c0h1d1t0 (0.00s)
transport_test.go:664: client: RoundTrip: http2: stream closed
FAIL
FAIL golang.org/x/net/http2 7.585s
```
| Testing | low | Minor |
159,641,011 | vscode | Implement editor undo stack serialization | Related to #7169, #7535
Similarly to the view state, we need a way to serialize, and later deserialize, a model's undo stack.
| feature-request,editor-textbuffer,undo-redo | medium | Major |
159,666,457 | TypeScript | Find all references for ambient module | ```
// declarations.d.ts
declare module "x" {
export const x: number;
}
// index.ts
import {x} from "x";
```
Goto-declaration for "x" in index.ts works, but find-all-references for "x" in declarations.d.ts finds only itself.
In this case one can simply look through each of export in the module's body and find al... | Suggestion,Help Wanted,API | low | Minor |
159,670,186 | youtube-dl | Request: Extract more (course) metadata for Lynda | Categories can be found as 'subjects.' Courses have their own description, along with other metadata such as 'view count' and 'creator,' which currently aren't extracted.
| request | low | Minor |
159,710,464 | electron | macOS dynamic menu items (that change when the user holds down a modifier) | > A dynamic menu item is a command that changes when the user presses a modifier key.
https://developer.apple.com/library/mac/documentation/UserExperience/Conceptual/OSXHIGuidelines/MenuChanging.html
- Operating system: OS X
| enhancement :sparkles:,platform/macOS,component/menu | low | Major |
159,728,132 | TypeScript | Symlinks not resolved for `/// <reference path="..." />` | **TypeScript Version:**
nightly (1.9.0-dev)
**Code**
``` shell
$ ls -alF
a/
project/
symlink -> a/
$ cat a/one.ts
import './zone';
$ cat a/zone.d.ts
declare type ZoneType = {a:string};
declare const Zone: ZoneType;
$ cat project/tsconfig.json
{
"compilerOptions": {
"module": "commonjs",
"tar... | Bug | medium | Critical |
159,753,711 | youtube-dl | Feature Request - Add to --match-filter keys one to identify the categorie of the YouTube Video. | ### What is the purpose of your _issue_?
- [ ] 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
### Feature Request - Add to `--match-filter` keys one to identify th... | request | low | Critical |
159,757,242 | youtube-dl | Drop Python 3.2 support | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.06.11.3**
### Before submitting an _issue_ make sure you have:
- [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... | request | low | Critical |
159,759,817 | youtube-dl | Add support for wetube.io | ## Please follow the guide below
---
### Make sure you are using the _latest_ version: run `youtube-dl --version` and ensure your version is _2016.06.11.3_. 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 wil... | site-support-request | low | Critical |
159,763,349 | youtube-dl | Download only Audio bytes | I want to download from YouTube the best Audio Quality possible.
Since the Audio Only files are at low bitrate (usually 128k), i have to download the whole Audio+Video (format 22 usually has the best audio), and then extract the audio.
But i don't want to download the entire video file to only get the audio.
I know i... | request | low | Major |
159,846,298 | opencv | crashes, when OutputArrayOfArrays is used with type inherited from cv::Point2f | - OpenCV version: 3.1
- Host OS: Linux (Ubuntu 14.04)
- aruco
### Expected behaviour
application detects markers and saves points information correctly
### Actual behaviour
application crashes
### Code example to reproduce the issue / Steps to reproduce the issue
```
/* this works fine if points is of type: vector... | bug,category: core | low | Critical |
159,856,220 | rust | Lint against transmutes which could be `as` casts. | The relevant casts are at least those between pointers and integers, or between two pointers.
There's probably also some likelihood of same-type transmutes arising, which keep working after changing the types (of FFI signatures, for example) but could be removed because they're noops.
Clippy might be interested, if th... | A-lints,C-feature-request | low | Major |
159,882,689 | TypeScript | Triple slash reference should include extension '.d.ts' or not? | _From @frogcjn on June 13, 2016 6:6_
`/// <reference path='../../../typings/index.d.ts' />`
or
`/// <reference path='../../../typings/index' />`
?
Thanks!
tsc recognizes the file without .d.ts extension, but vscode's ts validation has a different behavior.
This makes a headache communication between typescript c... | Bug,Help Wanted,VS Code Tracked | low | Minor |
159,896,424 | kubernetes | kubectl run -it loses some lines of the log | When running a command via `kubectl run -it` that immediately prints something, we might lose some lines of the log due to a race of the execution of the container and the `kubectl attach` used by `kubectl run` to attach to the terminal (compare comment https://github.com/kubernetes/kubernetes/issues/16670#issuecomment... | kind/bug,priority/backlog,area/kubectl,sig/node,sig/cli,triage/accepted | medium | Critical |
159,913,187 | TypeScript | Module augmentation with export list | **TypeScript Version:**
1.8.10
**Code**
``` ts
// scale.ts
class Scale {
weightOnEarth(mass) {}
}
export { Scale }
```
``` ts
// advancedScale.ts
import {Scale} from "./scale" ;
declare module "./scale" {
interface Scale {
weightOnMoon(mass);
}
}
Scale.prototype.weightOnMoon = function (ee) {
}
```
`... | Bug | low | Critical |
159,933,804 | rust | Higher-ranked lifetime causes inconsistent behavior with trait bounds. | Existing code uses trait bounds to force side-conditions on associated types. For instance, `IntoIterator` is defined (in part) as follows:
<details><summary>Original snippet from 2016 (no longer syntactically legal)</summary>
```rs
trait IntoIterator where Self::IntoIter::Item == Self::Item {
type Item;
... | A-type-system,A-lifetimes,T-compiler,C-bug,T-types,A-higher-ranked | low | Critical |
159,942,751 | youtube-dl | Support for skillshare.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
---
### Make s... | site-support-request,account-needed | medium | Critical |
159,945,245 | rust | Associated type equality not followed through multiple traits | Simplest case to reproduce would be to add a trait which decorates `IntoIterator` and try to write a blanket impl for that trait:
``` rust
trait DecoratesIntoIterator: IntoIterator {
type Output: Iterator<Item=Self::Item>;
}
impl<T> DecoratesIntoIterator for T where
T: IntoIterator,
T::IntoIter: Decorates... | A-type-system,T-compiler,C-bug,T-types | low | Minor |
160,019,117 | rust | Rust is overflowing on recursive trait evaluation where it didn't before | This can be simplified down to the following:
``` rust
trait MyTrait {
type Output;
}
impl<T: MyTrait> MyTrait for T {
type Output = <T as MyTrait>::Output;
}
trait SomeOtherTrait {}
impl<T> SomeOtherTrait for T where T: MyTrait, T::Output: Send {}
fn main() {}
```
When compiling that program, rust will o... | A-type-system,P-medium,T-compiler,regression-from-stable-to-stable,C-bug,T-types | low | Critical |
160,075,472 | three.js | Feature request: Real-time rounded corners on otherwise hard edges | ##### Description of the problem
NVIDIA's iRay/Mental Ray has the capability to automatically round corners that are sharp. This is very useful for making hard corners more realistic as very few corners in real-life are ultra sharp.
Basically it can convert the left to the right:
![mental-ray-rounded-corners-exampl... | Enhancement | low | Minor |
160,094,119 | opencv | Error while building with CUDA | I'm having the error after executing the following command:
cmake -G "Unix Makefiles" -D CMAKE_CXX_COMPILER=/usr/bin/g++-4.9 -D CMAKE_C_COMPILER=/usr/bin/gcc-4.9 -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local -D INSTALL_C_EXAMPLES=ON -D INSTALL_PYTHON_EXAMPLES=ON -D OPENCV_EXTRA_MODULES_PATH=~/Downloads... | bug,category: build/install,category: gpu/cuda (contrib) | low | Critical |
160,255,426 | youtube-dl | YUNG CLOUD 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
---
### Make s... | site-support-request | low | Critical |
160,294,231 | rust | [rustbuild] do not delete sysroot directory | I tend to put various test files into `$DESTINATION/stage1/bin` so I can have a different terminal open and quickly test stage1 rustc against various test cases I have at hand for a particular thing I’m working on at the time without cluttering root of my checkout.
rustbuild deleting the destination directory every bu... | C-enhancement,T-bootstrap,E-needs-design | low | Minor |
160,315,635 | kubernetes | Node status should include allocated resources info through the API | See #25355. Users want to be able to query the allocated resources for nodes and currently do this through `kubectl describe` which is both very inefficient as well as hard to parse the data out of.
| priority/awaiting-more-evidence,sig/node,lifecycle/frozen,needs-triage | medium | Critical |
160,347,189 | rust | Match expressions use O(n) stack space with n branches in debug mode | I ran into this problem while working on a parser (https://github.com/evanw/esbuild/tree/rust). Here's a reduced test case: https://gist.github.com/evanw/06e074a1d6d5c21e8d32e2c26de07714. It contains two recursive functions, `small` and `large`, that each contain a match expression. Every call prints out the amount of ... | A-LLVM,C-enhancement,A-codegen,T-compiler,I-heavy,A-mir-opt,A-patterns,C-optimization | medium | Critical |
160,374,745 | youtube-dl | Site support request: instagram videos I liked | Is it possible to add list extractor for instagram videos I liked? Instagram API is able to return 300 last items I liked (need authentication).
(I found this related blog http://symmetricinfinity.com/2013/04/06/download-your-likes-from-instagram.html)
| request,account-needed | low | Minor |
160,539,712 | youtube-dl | cannot retreive infos from Gdrive folders (unsupported 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 that [x])
- Use _Preview_ tab to see how your issue will actually look like
---
### Make s... | request | low | Critical |
160,571,584 | youtube-dl | Unable to download https://mobile.twitter.com's video. | Example:
$ youtube-dl -v https://twitter.com/i/moments/741297043239542784
[debug] System config: []
[debug] User config: []
[debug] Command-line args: ['-v', 'https://twitter.com/i/moments/741297043239542784']
[debug] Encodings: locale UTF-8, fs utf-8, out UTF-8, pref UTF-8
[debug] youtube-dl version 2016.06.14
[debug... | request | low | Critical |
160,578,836 | go | cmd/gofmt: comments in expr-stmt are not arranged | Please answer these questions before submitting your issue. Thanks!
1. What version of Go are you using (`go version`)?
go version go1.6 darwin/amd
2. What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOO... | NeedsFix | low | Minor |
160,613,596 | vscode | [css] Support <angle> units icon in CSS | In Firefox 49, there is an icon in the front of the angle unit, but the angle of the icon is constant.
I hope:
- **The VSCode can be a dynamic response to the actual point of view.**
- **<kbd>Shift</kbd> + `click` to change the unit format.**
 (virtual machine on Mac)
- Compiler & CMake: GCC 4.8 & CMake 2.8.12.2
- Python version 3.4
ffmpeg:
```
ffmpeg version N-80279-g5d12cfa Copyright (c) 2000-2016 the FFmpeg developers
built with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04... | category: videoio,incomplete | low | Minor |
160,671,741 | vscode | Long Text longer than 10000 letters wrapped with [...] | - VSCode Version: 1.3.0-insiders
- OS Version: Win 10
Steps to Reproduce:
1. Open a file with a very long line - over the limit of 10000
2. Position the cursor at the start of the line in question
3. Press 'End' keyboard key
Result - the 'End' key does nothing, while it rather has to go to the end of the trimmed/load... | feature-request,editor-rendering | medium | Major |
160,739,796 | angular | state of the checkbox not getting updated even after its ng-model value is updated | - **I'm submitting a bug for state of the checkbox not getting updated even after its ng-model value is updated**
- [ ] bug report
**Current behavior**
If you try and update the ngModel of a checkbox in say ngModelChange method, the ngModel value is updated but the checkbox still remains in previous state.
**Expected... | type: bug/fix,workaround1: obvious,freq2: medium,area: forms,state: confirmed,forms: ngModel,P4 | high | Critical |
160,833,652 | TypeScript | Add rule typescript.format.insertSpaceAfterOpeningAndBeforeClosingNamedImport | _From @unional on June 16, 2016 22:12_
- VSCode Version: 1.2.1
- OS Version: Windows 2012 R2
Currently object literal will have space added, but not named import:
``` ts
// before format code
import {Container} from './Container';
let x = {Container};
// after format code
import {Container} from './Container';
let... | Suggestion,Help Wanted,Domain: Formatter | low | Minor |
160,833,922 | TypeScript | Is it possible to link typescript interfaces to JSON files? | _From @Sequoia on June 16, 2016 20:3_
I know it's possible to do this [with json schemas](https://code.visualstudio.com/Docs/languages/json#_json-schemas-settings) but is it possible to do this with a typescript interface?
_Copied from original issue: Microsoft/vscode#7792_
| Suggestion,Needs Proposal | medium | Major |
160,835,242 | go | cmd/compile: complicated bounds check elimination | **1. go version go1.7beta1 windows/amd64**
**2.
set GOARCH=amd64**
set GOBIN=
set GOEXE=.exe
set GOHOSTARCH=amd64
**set GOHOSTOS=windows**
set GOOS=windows
set GOPATH=F:\Go\
set GORACE=
set GOROOT=F:\Go
set GOTOOLDIR=F:\Go\pkg\tool\windows_amd64
set CC=gcc
set GOGCCFLAGS=-m64 -mthreads -fmessage-length=0 -fdebug-pref... | Performance,NeedsFix | low | Critical |
160,873,659 | opencv | Different results of CascadeClasifier on CPU and GPU | ### My system
- OpenCV version: 3.1
- Host OS: Linux (Ubuntu 14.04)
- CPU: intel i7 3770
- Video card: GTX-950
- Video driver: v.352.93
### In which part of the OpenCV library you got the issue?
- objdetect, cudaobjdetect
- cv::CascadeClassifier, cv::cuda::CascadeClassifier
### Expected behaviour
I built the latest Op... | bug,priority: low,category: objdetect,category: gpu/cuda (contrib) | low | Major |
160,946,741 | flutter | Vertical text alignment based off last baseline | null | c: new feature,framework,a: typography,P3,team-framework,triaged-framework | low | Major |
160,997,143 | TypeScript | Signatures of intersection/union types properties | Consider next example:
```
interface A{
f:string;
set_f(val:string) : void;
get_f() : string;
}
interface B{
f:number;
set_f(val:number) : void;
get_f() : number;
}
let n:number;
let str:string
let first : A&B;
first.f = n; // error, as f has type number&string. Probably OK, but probably it ... | Suggestion,Needs Proposal | low | Critical |
161,012,562 | TypeScript | [FEATURE REQUEST] Please supply a minified version with only transpilation functionality | Please supply a minified version (inc npm). Please also let this be a new js file with only parts needed for transpilation.
This will aid our in-browser usages.
thanks
| Suggestion,Help Wanted,API | low | Major |
161,032,183 | go | cmd/compile: do front-end constant evaluation across simple inlined function boundaries | ``` go
func i(x int) int { return x }
func f(a int) bool {
switch a {
case 1, 2, 3, 4, 5, 6:
return true
}
return false
}
func g(a int) bool {
switch a {
case i(1), i(2), i(3), i(4), i(5), i(6):
return true
}
return false
}
```
f and g should compile to the same code. ... | Performance,NeedsFix,compiler/runtime | low | Minor |
161,064,954 | TypeScript | Suggestion: Upper-bound generic type constraints | This is a proposal for generic structural supertype constraints.
I'll first detail the proposal, and then get into a discussion about use-cases.
## Proposal
A supertype constraint is a constraint on a generic type parameter to be the structural _supertype_ of another type. It's like a subtype/inheritance constraint, ... | Suggestion,Awaiting More Feedback | medium | Major |
161,089,562 | TypeScript | Rename doesn't work for string literal compared to string literal type | In the below, try to rename `"ADD_TODO"` in the case clause. It fails.
``` ts
interface AddTodo {
type: "ADD_TODO";
text: string;
}
interface DeleteTodo {
type: "DELETE_TODO";
position: number
newText: string;
}
type TodoAction = AddTodo | DeleteTodo;
function dispatchOrSomething(action: TodoAc... | Bug | low | Minor |
161,099,596 | go | cmd/compile: poor register allocator behavior in compression code | Please answer these questions before submitting your issue. Thanks!
1. What version of Go are you using (`go version`)?
go1.6 windows/amd64 and go1.7beta1 windows/amd64
2. What operating system and processor architecture are you using (`go env`)?
set GOARCH=amd64
set GOBIN=
set GOEXE=.exe
set GOHOSTARCH=... | Performance,NeedsFix,compiler/runtime | medium | Major |
161,182,296 | TypeScript | Show inherited comments in quick info | TypeScript Version: 1.8.10
Have an interface in one file
```
interface IFooController {
/**
* random comment
* @returns {string} Returns a string
*/
test(): string;
}
export default IFooController;
```
In another file have a class that implements that interface
```
import IFooController fr... | Suggestion,In Discussion,API,Domain: Quick Info,Experience Enhancement | low | Minor |
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.