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
186,307,843
go
fmt: support bounded buffers (Snprint, Snprintf, etc.)
Right now, printing large compound objects with %v or %#v can be very expensive, in terms of both CPU and RAM. It would be great to have a way for callers to tell formatting code to stop after N runes have been output. The current alternative is formatting everything anyway, only to discard most of the work after the c...
NeedsFix,FeatureRequest
low
Major
186,369,400
go
time: time.Sleep and time.NewTimer: Fix duration parameter error
### What version of Go are you using (`go version`)? go version go1.7.3 windows/amd64 ### What operating system and processor architecture are you using (`go env`)? set GOARCH=amd64 set GOHOSTARCH=amd64 set GOHOSTOS=windows set GOOS=windows ### What did you do? I wrote a test which is basically a loop consi...
OS-Windows,NeedsInvestigation
high
Critical
186,400,688
TypeScript
Dynamic Super Types
Now, that #11929 is PR landed. I would really love to have some syntax to specify an arbitrary `super type of T`. This can be especially helpful in creating strongly typed ORM database frameworks. ## Proposal If `K` is constrained to be a key of `T` i.e `K extends keyof T`. Then the syntax: ``` { ...K: ...T[K...
Suggestion,Awaiting More Feedback
low
Critical
186,400,756
rust
debuginfo: How to (ideally) represent reference and pointer types in DWARF
Currently, we represent thin references and pointers with `DW_TAG_pointer_type` DIEs and fat pointers (slices and trait objects) as `DW_TAG_struct` DIEs with fields representing payload and metadata pointers. This is not ideal and with debuggers knowing about Rust, we can do better. The question is, what exactly do we ...
A-debuginfo,T-compiler
medium
Critical
186,431,662
go
runtime: preemption takes longer on OpenBSD
TestGCFairness2 (0.12s) proc_test.go:351: want OK , got goroutine 1 did not run https://storage.googleapis.com/go-build-log/bc7889a5/openbsd-amd64-gce58_a614fab1.log /cc @aclements @RLH I don't see any evidence that this is a known flake in the issue tracker, so filing a bug and tagging Go1.8...
OS-OpenBSD,NeedsInvestigation,compiler/runtime
medium
Critical
186,435,783
flutter
Hot reload should be even less verbose
This should be collapsed into one line when you hit "r": ``` Syncing files to device... 96ms Performing hot reload... 1793ms Reloaded 260 of 439 libraries. ```
tool,t: hot reload,from: study,P3,team-tool,triaged-tool
low
Major
186,453,070
rust
Program cross compiled for mips-unknown-linux-musl crashes with SIGILL
cc @Bigomby @alexcrichton Originally reported as japaric/rust-cross#27 Original report below: --- Hi, I'm trying to cross compile a Rust app for LEDE (fork of OpenWRT) but I'm stuck. The application is just an `hello_world` example: ```rust fn main() { println!("Hello, world"); } ``` These ...
O-MIPS,C-bug
low
Critical
186,505,187
youtube-dl
Please add feature for video.yaplakal.com
Good times, Please add feature for video.yaplakal.com Example link: http://www.yaplakal.com/forum28/topic1481239.html Kind regards, Timur
site-support-request
low
Minor
186,543,797
rust
Consider storing auto-generated error message strings in separate object file
Some kinds of expression can generate a runtime panic with a compiler generated error message containing the source location of that expression. Examples are arithmetic expressions that can cause integer overflow or division by zero, and expressions that result in array bounds checks. So far we are allocating string...
I-slow,C-enhancement,A-codegen,I-compiletime,T-compiler,A-incr-comp
low
Critical
186,602,124
youtube-dl
no or wrong video for CBC Murdoch Mysteries or Nature of Things
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2016.10.31*. 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**...
geo-restricted
low
Critical
186,607,773
rust
Command::spawn has weird rules for finding binaries on Windows
The offending code is [here](https://github.com/rust-lang/rust/blob/ac968c466451cb9aafd9e8598ddb396ed0e6fe31/src/libstd/sys/windows/process.rs#L130-L149) which is apparently to have it search the child's `%Path%` for the binary to fix #15149. It has a few issues though. 1. It is only triggered when the child's envir...
O-windows,C-feature-request,T-libs,A-process
medium
Major
186,619,241
go
runtime, cmd/compile: remove all pointers from type information
For Go 1.7 I started replacing the pointers in Go's run time type information with offsets from the beginning of the type section. (The motivation was significantly reduced binary size, as 8-bytes for the pointer + 32-bytes for the dynamic relocation is significantly more than a 4-byte offset multiplied through by seve...
compiler/runtime
low
Critical
186,641,351
TypeScript
module_resolution=none or =explicit
Discussed in-person with @DanielRosenwasser In google we have performance issues with tsc and with editor plugins. We have tracked this down to the node moduleResolutionKind looking in many locations on a network-mounted disk. We don't actually want the node moduleResolution, we only want the baseUrl/paths/rootD...
Suggestion,Needs More Info,VS Code Tracked
low
Major
186,673,471
go
cmd/compile: merge order/walk/instrument into buildssa
Currently the compiler backend performs several stages of Node AST rewrites before generating SSA. We should investigate generating SSA directly from the AST produced by the frontend. Rationale: 1. order.go exists as a separate pass primarily to simplify maintaining order-of-evaluation in walk.go, but we can proba...
ToolSpeed,compiler/runtime
low
Major
186,678,502
flutter
Hide complexity of dropdown testing
Internal: b/153422899 This is the code required to properly switch from value A to value B in a widget tester: ```Dart changeDropDown( WidgetTester tester, String currentValue, String newValue, ) async { await tester.tap(find.text(currentValue).last); await tester.pump(); await tes...
a: tests,c: new feature,framework,customer: money (g3),P3,team-framework,triaged-framework
low
Minor
186,721,208
vscode
Add "find all occurences" in the current file feature
Using Search sidebar to find all items in current file requires too much clicks. VS has a find all option - VSCode Version: 1.6.1 - OS Version: Windows Server 2008 Steps to Reproduce: 1. Ctrl + F 2. Type search test ## Expected option to see all occurrences ## Actual No such option ## Visua...
feature-request,search,editor-find
high
Critical
186,880,544
go
proposal: cmd/vet: check for missing Err calls for bufio.Scanner and sql.Rows
Please answer these questions before submitting your issue. Thanks! ### 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" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHO...
Proposal,Proposal-FinalCommentPeriod,Analysis
medium
Critical
186,916,071
youtube-dl
"--hls-use-mpegts --no-part" should create files with ".ts" extension
OS: Windows Vista SP2 x86, latest OS updates from Microsoft. Using the latest standalone "youtube-dl.exe" downloaded from Github. `youtube-dl --version => 2016.11.02` Also using FFmpeg.exe 3.0 (x86) downloaded from the Zeranoe repo. The first channel of the Greek National TV broadcaster uses Youtube to host i...
request
low
Critical
186,917,352
go
x/crypto/acme/autocert: lock usage around certState is bogus and error prone
The use of locks around certState is pretty confusing. The certState method returns the state value either locked or not, which means the call site has no idea about what it got. Then, there's a `locked` boolean field which is used to decide whether to lock it again or release the existing lock. That's both error prone...
NeedsInvestigation
low
Critical
186,920,248
opencv
opencv does not build on Mac OS X 10.10 with Xcode 7
##### System information (version) <!-- Example - OpenCV => 3.1 - Operating System / Platform => Windows 64 Bit - Compiler => Visual Studio 2015 --> - OpenCV => master - Operating System / Platform => Mac OS X 10.10 - Compiler => Xcode 7 (clang) ##### Detailed description opencv fails to build, because ...
bug,priority: low,category: build/install,platform: ios/osx
low
Critical
186,928,034
go
build: all.bash fails to saturate 6 cores
`go version devel +eed2bb7 Wed Nov 2 19:21:16 2016 +0000 linux/amd64` ### What did you do? ``` ./clean.bash time ./all.bash ``` ### What did you expect to see? I do my development on a virtualized 6-core Xeon running Ubuntu. (`runtime.NumCPU()` returns `6`.) Per @rsc's comments on #10571, I expected ...
help wanted,ToolSpeed,NeedsInvestigation
high
Critical
186,945,272
rust
Consider using incremental linking with msvc
Incremental linking will allow for significantly faster link times, at the cost of binary size. 1. Don't delete the output artifacts. The `.ilk` and `.exe` or `.dll` must remain from the previous run. 2. Don't pass `/OPT` to the linker or any other flag that is mutually exclusive with incremental linking. 3. Pass ...
A-linkage,C-enhancement,I-compiletime,T-compiler,O-windows-msvc
medium
Critical
187,015,980
opencv
Incorrect upper bound for the number of components in ConnectedComponents algorithms
<!-- 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: imgproc
low
Critical
187,138,961
go
x/net/http2: expose CloseIfIdle and ClientConnPoolIdleCloser
The http2 `Transport` exposes a `CloseIdleConnections` method that will call the method of the same name on the `ClientConnPool` if it implements the private `clientConnPoolIdleCloser` interface. The `ClientConnPool` implementation calls the private method `closeIfIdle` on each pooled `ClientConn`. If one want to cr...
NeedsInvestigation
low
Major
187,140,184
go
x/net/http2: add a MarkComplete method to ClientConnPool
This method can be useful in the context of a custom connection pool, to implement lower max concurrent streams per connection than advertised by the server for example.
NeedsInvestigation,FeatureRequest
medium
Critical
187,215,967
rust
Tracking issue for TrustedLen (`trusted_len`)
Implemented in #37306 Open Questions: - - [ ] Naming: something with Iterator in the name? - - [ ] Naming: size vs len - - [ ] Does TrustedLen pose any requirements on the ExactSizeIterator impl if one exists for the same type? - - [ ] Does TrustedLen pose any requirements on the Clone impl if one exists for t...
T-libs-api,B-unstable,C-tracking-issue,A-iterators,Libs-Tracked
medium
Critical
187,444,373
rust
Inherent static methods on traits do not play well with associated types
It's a nice trick that you can provide static methods on bare traits, but sadly this doesn't quite work with associated types: ```rust trait Assoc { type Ty; } impl<T> Assoc<Ty = T> { fn non_method() {} } fn main() { Assoc::non_method() } ``` Error: ``` error[E0191]: the value of the...
A-trait-system,T-compiler,C-bug
medium
Critical
187,455,224
go
runtime: nice -20 causes thread exhaustion on ARM
### What version of Go are you using (`go version`)? go version go1.7.1 linux/arm ### What operating system and processor architecture are you using (`go env`)? Linux/ARM (RPi 2/3) ### What did you do? sudo nice -n -20 program ### What did you expect to see? Program works correctly ### What did you see ...
NeedsInvestigation
medium
Critical
187,458,769
flutter
Date picker should have an unlimited range mode
c: new feature,framework,f: material design,f: date/time picker,c: proposal,P3,team-design,triaged-design
low
Minor
187,458,831
flutter
Date picker should validate the input arguments
In particular if lastDate < firstDate, for example. Right now we eventually crash when you click the year in the year picker, or something.
framework,f: material design,f: date/time picker,c: proposal,P3,team-design,triaged-design
low
Critical
187,482,044
go
x/mobile: ndk-build finds wrong library path for dlopen
Hi, Based on the Android NDK samples (https://github.com/googlesamples/android-ndk/tree/master) and mainly the hello-libs, I'm trying to call a prebuilt library. In fact, it is pretty simple for a C-based library (using the examples), but when my .so is built using Go, the ndk-build linker seems to go crazy and uses ...
NeedsInvestigation,mobile
low
Critical
187,484,616
godot
Memory leak with circular reference in GDscript
Hi, Godot reference counting mechanism doesn't support circular references. This is fine for simple construction (e.g. loading References) but given GDscript is build on this, you can write leaking program pretty easily: ```gdscript func _ready(): set_process(true) class Leaker: var stuff = null var oth...
enhancement,discussion,topic:core,topic:gdscript
medium
Major
187,488,988
youtube-dl
Optional parse parameters
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2016.11.04*. 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
187,548,410
rust
Using pattern match directly on LockResult causes deadlock
Came across this as I was playing around with implementing memoisation via double-checked-locking with `sync::RWLock`: The following, which puts the `.read()` result into a temporary binding works fine: ```rust // ... { let lock_result = self.cache.read(); // <-- temporary binding match lock_result { ...
A-lifetimes,A-destructors,T-lang,C-bug
medium
Major
187,555,073
youtube-dl
sucksex.com site support
--- ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2016.11.04*. 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,nsfw
low
Critical
187,573,448
youtube-dl
[svt] Add support for playlists
## 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
187,575,946
vscode
Triggering actions.find causes active match to lose its highlight.
- VSCode Version: Code 1.7.1 (02611b40b24c9df2726ad8b33f5ef5f67ac30b44, 2016-11-03T13:53:14.822Z) - OS Version: Windows_NT ia32 10.0.14393 Steps to Reproduce: 1. In any file, highlight the text to find. 2. Trigger the `actions.find` command with the keyboard (`Ctrl+F`). 3. Observe that the originally highlight...
bug,ux,editor-find
low
Minor
187,643,167
nvm
npm is only available in interactive shell
It seems that nvm modifies `~/.bashrc` to load npm and node. This means that non interactive shells that don't run `bashrc` won't have it. For instance I was running a script that calls npm from cron and it was failing because npm was unknown.
installing nvm: profile detection
medium
Critical
187,730,690
rust
misleading error message for trait usage from external scope
Trying to implement a trait for a type and then running a unit test produces the following misleading error message. I tried this code: ```rust use std::vec::Vec; mod rlinq { trait RLINQ { fn is_where(&self); } impl RLINQ for Vec<String> { fn is_where(&self) { print...
C-enhancement,A-diagnostics,T-compiler
low
Critical
187,740,562
vscode
Option to render proper scrollbar
The current VS Code scrollbars (both vertical and horizontal) are OK, but I would prefer: - The scrollbars not to disappear when the mouse stops moving - The scrollbars to be a bit thicker, thus easier to click - An up and a down arrow at the top and bottom (or left and right of the horizontal one) to scroll one lin...
feature-request,ux
medium
Critical
187,756,824
TypeScript
Code Format with object spread in JavaScript files breaks
_From @oshalygin on November 4, 2016 17:20_ - VSCode Version: *1.7.1* - OS Version: *OSX 10.12.1 Steps to Reproduce: _userReducer.spec.js_ ```javascript import { expect } from "chai"; import * as actionTypes from "../actions/actionTypes"; import reducer from "./userReducer"; describe("Reducer::Us...
Bug,VS Code Tracked
low
Minor
187,822,066
flutter
Document how to do animations at the render object layer
(From Mikkel:) > It may be helpful to document the preferred approach to animations [at the RenderObject/RenderBox layer]. > > My current understanding is that when animations (i.e. the lerp values) can be described adequately at the Widget level, that's where animation should be implemented, by arranging for setS...
framework,a: animation,d: api docs,c: proposal,P3,team-framework,triaged-framework
low
Major
187,822,608
go
cmd/link: generate manifest in EXE files
On Windows 10 and later, apps can opt into long path support by embedding an XML manifest: https://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx We should automatically embed this manifest when linking EXE files. For prior art, see this third-party tool for generating a .syso file contai...
OS-Windows,NeedsFix,early-in-cycle
medium
Major
187,849,090
vscode
Remember undo history on hot-exit
This will make restarts/crashes more and more seamless.
feature-request,workbench-hot-exit,undo-redo
medium
Critical
187,876,208
youtube-dl
[edge-apps.net] Site support request (used in ameracatv and TN.com.ar)
There some tv channels like this http://prepublish.f.qaotic.net/epa/ngrp:americatvlive-100056_all/chunklist_b596000.m3u8 , youtube dl send this messege: HTTP error 403 acces denied.Please find some way to download.Thanks
site-support-request
low
Critical
187,877,841
go
cmd/compile: implement duffcopy on ppc64x
implement duffcopy on ppc64x. See TODO in code and stale pending CL https://go-review.googlesource.com/c/9684/ which could be resurrected. /cc @minux @laboger
Performance,NeedsDecision,compiler/runtime
low
Minor
187,883,756
flutter
When InkWell has a GlobalKey and changes position, splash should not stop
null
framework,a: quality,f: gestures,P2,has partial patch,team-design,triaged-design
low
Major
187,902,934
rust
demangled characters like { make debugging annoying
(in gdb at least) I think I complained to @tromey about this already and he proposed a solution, but I'm finding this more and more annoying when debugging that the '{' was chosen demangle to, for closures and impls, e.g.: `_ZN4clap4args3arg3Arg5short28_$u7b$$u7b$closure$u7d$$u7d$17h7c4595ce99cae01bE` demangle...
A-debuginfo,C-enhancement,T-compiler
low
Critical
187,992,791
angular
Touch and change event is not propagated to ngModelGroup and ngForm if using separate component
<!-- 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...
workaround1: obvious,freq1: low,area: forms,type: use-case,P4
low
Critical
188,098,975
rust
support `default impl` for specialization
rust-lang/rfcs#1210 included support for `default impl`, which declared a set of defaults that other impls can inherit (if they correspond to a subset of the default impl's types). This was intended as a replacement/improvement of the existing default methods that appear in trait bodies (it was also originally called `...
C-enhancement,A-trait-system,T-compiler,A-specialization,E-medium,F-specialization
medium
Critical
188,123,055
go
time: optimize time.Time.Sub and time.Since
According to a profiling data from a large number of servers at Google, `time.Time.Sub` is within the top 150 functions by CPU time. The current implementation of `Sub` is not inlineable. The logic for [`Sub` is not particularly complicated](https://github.com/golang/go/blob/2c5bce1cfa242f27ffece3d30e8b851e3e923be2/src...
Performance,help wanted
low
Major
188,127,559
go
net/url: optimize unescape and escape
According to a profiling data from a large number of servers at Google, URL related functions are among the top 150 functions by CPU time. The simplest optimizations I see are around using LUTs in `shouldEscape`, `isHex`, and `unHex`.
Performance,help wanted
medium
Major
188,136,195
go
x/review/git-codereview: handle many-parent merges in hooks
When running the git-codereview hooks on a commit that is (soon to be a child of) a merge of three branches, I get: ```bash $ git commit git branch -a --contains 3c49c114ba9e7292b342230a0b238d4684157d2b fce0592992d48cbd5e7ca44724f3f14ee25c0f05 error: malformed object name 3c49c114ba9e7292b342230a0b238d4684157d2b ...
NeedsInvestigation
low
Critical
188,142,629
go
cmd/compile: elide branches that must be taken
Consider the following two benchmarks: ```go var sink int var A, B, C = 1, 2, 3 func BenchmarkA(b *testing.B) { for i := 0; i < b.N; i++ { var m int if A != 0 && B+1 <= C { m = 0 } else { panic("never called") } sink = m } } func BenchmarkB(b *testing.B) { for i := 0; i < b.N; i++...
Performance,compiler/runtime
low
Major
188,194,819
TypeScript
[tsserver] CompileOnSaveEmitFile should returns emited files (js, map, d.ts) path
I'm consumming "CompileOnSaveEmitFile " with tsserver inside Eclipse. It works great and improve a lot of performance (before I called tsc when for each save of file and performance was not very good). In Eclipse, when a file is created outside Eclipse (like tsserver generates js, map files), the files doesn't appea...
Suggestion,API,Awaiting More Feedback
low
Major
188,258,515
youtube-dl
Mashable support
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2016.11.08.1*. 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
188,284,305
go
hash/adler32: optimize on 64-bit architectures
### What version of Go are you using (`go version`)? go version go1.7 darwin/amd64 ### What operating system and processor architecture are you using (`go env`)? GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GOOS="darwin" GOPATH="/Users/dev/gocode" GORACE="" GOROOT="/opt/local/lib/g...
Performance,NeedsFix
low
Major
188,324,586
youtube-dl
please support NSFW site stream-mydirtyhobby.biz
``` > youtube-dl http://stream-mydirtyhobby.biz/view/destroyed89-riskantes-pinkeln/i7l7T [generic] i7l7T: Requesting header WARNING: Falling back on generic information extractor. [generic] i7l7T: Downloading webpage [generic] i7l7T: Extracting information ERROR: Unsupported URL: http://stream-mydirtyhobby.biz/vi...
site-support-request,nsfw
low
Critical
188,401,006
youtube-dl
Unable to download orlandosentinel.com's embedded Flash brightcove videos.
Example: $ youtube-dl -v http://www.orlandosentinel.com/features/kayla-obrien/91839398-132.html [debug] System config: [] [debug] User config: [] [debug] Command-line args: ['-v', 'http://www.orlandosentinel.com/features/kayla-obrien/91839398-132.html'] [debug] Encodings: locale UTF-8, fs utf-8, out UTF-8, pref ...
site-support-request
low
Critical
188,429,779
flutter
Having to manage both ends of an AnimationController -> CurvedAnimation chain is a pain
Maybe we should have an object that wraps the two so you can add/remove listeners, forward/reverse, set value, and dispose all at the same time with one object.
framework,a: animation,a: quality,c: proposal,P3,team-framework,triaged-framework
low
Major
188,825,857
opencv
Different outcomes when using StereoBM and cuda::StereoBM with same parameters.
##### System information (version) - OpenCV => 3.1 (head) - Windows 10 32+64 Bit - Compiler => Visual Studio 2013 ##### Detailed description Im currently testing various stereo reconstruction implementations of OpenCV and i get different results for when using the OpenCL version of StereoBM and the cuda versio...
bug,category: calib3d,category: gpu/cuda (contrib)
low
Minor
188,875,173
You-Dont-Know-JS
You Don't Know JS: Async & Performance Chapter 4: Generators Thunks
It's slightly off topic, but, when discussing 'Thunks' as a concept, and speaking about 'thunkory' functions might it be useful to note that this is essentially the same concept as partial function application? Not like, a paragraph or anything, but just a short blurb to point out that these terms are more or less the...
for second edition
medium
Major
188,929,095
TypeScript
Suggestion: Allow Types in JS Files
I have a large Angular2 project written in JavaScript, in which we use [transform-flow-strip-types](https://babeljs.io/docs/plugins/transform-flow-strip-types/) in order to allow Angular2 dependency injection to work from JavaScript. This is currently an error in a JavaScript file compiled with `tsc`: ``` class My...
Suggestion,Awaiting More Feedback
medium
Critical
188,941,125
youtube-dl
Use OAuth tokens instead of .netrc where possible
## 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
188,945,970
youtube-dl
[CBS.com] Older video wont download
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2016.11.08.1*. 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*...
geo-restricted
low
Critical
188,959,200
rust
Overflow for trait implemented recursively on references
Consider this snippet [[playpen](https://play.rust-lang.org/?gist=6c8dc5378a2b2c3401061024e8937b3f&version=nightly&backtrace=0)]: ```rust trait Foo {} impl<'a> Foo for &'a usize {} // Ok when this impl is commented-out. impl<'a, T> Foo for &'a Vec<T> where &'a T: Foo {} fn foo<T>(_: T) where for<'a> &'a T...
A-type-system,T-lang,T-compiler,C-bug,T-types
low
Critical
188,959,746
youtube-dl
[SoundCloud] Option to limit number of track pages to 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) - [ ] Question - [ ] Other --- I could not find any option to limit the amount of tra...
request
low
Critical
188,962,074
vue
Recusive Local Components - Uncaught RangeError: Maximum call stack size exceeded
<!-- 中文用户请注意: 1. issue 只接受带重现的 bug 报告,请不要用来提问题!不符合要求的 issue 会被直接关闭。 2. 请尽量用英文描述你的 issue,这样能够让尽可能多的人帮到你。 Got a question? =============== The issue list of this repo is **exclusively** for bug reports and feature requests. For simple questions, please use the following resources: - Read the docs: https://vue...
1.x
low
Critical
188,963,164
nvm
Add the ability to use nvm with 32bit releases as well as 64bit
It would be really useful if we could use nvm to install 32bit versions of node so that we could make testing quicker. Perhaps we could pass in a flag to the end like `nvm install 6 -a x86` or something like that?
installing node,feature requests
medium
Major
188,988,976
TypeScript
Allow pass through of class-properties
**TypeScript Version:** * 2.2.0-dev.20161113 (Not version specific) * target = esnext, jsx = preserve **Description** I expect Typescript to more or less only strip types but preserve the rest - based on the `target` compilerOption. Especially when using a target like `es2017` or even `esnext`. Class-propertie...
Bug,Help Wanted,ES Next
low
Major
188,996,210
go
net: implement closeRead and closeWrite on Plan 9
We should implement closeRead and closeWrite on Plan 9, so the following tests could be enabled: - TestCloseRead - TestCloseWrite - TestClientWriteShutdown (net/http package, see #7237)
OS-Plan9,NeedsInvestigation
low
Major
189,150,999
rust
E0495 Does not mention the conflicting requirements
E0495 returns "cannot infer an appropriate lifetime for autoref due to conflicting requirements" and suggest a way to fix this "help: consider using an explicit lifetime parameter..." but it does not say what the conflicting requirements are. This means that if the suggested way to fix it does not work, the user is stu...
C-enhancement,A-diagnostics,T-compiler
medium
Major
189,222,874
kubernetes
hack/update-all takes forever
There are about 23 update scripts and it is not obvious which ones have to be run for a given PR. These update scripts take anywhere between 20 - 30 minutes on a beefed up machine. I can't imagine running them on a laptop. We need to either 1. Make the script `hack/update-all.sh` be smart and run only the scripts ne...
priority/important-soon,area/build-release,sig/contributor-experience,lifecycle/frozen
medium
Major
189,226,298
youtube-dl
vimeo video embedded in iframe on wix site
## 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
189,360,421
go
cmd/compile: insertVarPhis is very slow
go version devel +b687d6a Tue Nov 15 05:35:54 2016 +0000 linux/amd64 My real package takes 30+ seconds to compile. Using program generator below: With 500 iterations: compilation time 0.79s phiState.insertVarPhis takes 8.27% With 1000 iterations: compilation time 1.54s phiState.insertVarPhis takes 11.84% ...
ToolSpeed,compiler/runtime
low
Major
189,415,646
youtube-dl
Function to limit duration and/or size (for livestreams)
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2016.11.14.1*. 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
189,441,276
opencv
Check for existence of CUDA driver before calling cuda functions
After fighting for a while with the well-known CUDA error message `CUDA driver version is insufficient for CUDA runtime version`, today I learned that this message will be returned by Nvidia even when there is no driver installed at all, which is totally misleading. Consider this code ```c++ #include <cuda_runti...
feature,priority: low,category: gpu/cuda (contrib)
low
Critical
189,737,461
opencv
Second interface function for findCirclesGrid
The opencv function findCirclesGrid expects an image as input parameter. The first processing step within the function is to extract a list of points via blobDetector and afterwards the function uses only this list of points. For various purposes like searching for the pattern only in part of the image or for iterati...
feature,category: calib3d
low
Minor
189,901,409
vscode
Simple way to temporarily turn off exclusions for QuickOpen files
Using a transpiled language I sometimes find the need to look at the transpiled code which typically is excluded from QuickOpen. Having a simple way to turn exclusions off would simplify this. Some options come to mind: - Have a 'Turn Off Exclusions' entry at the end of the results list. - Have an additional QuickOpe...
help wanted,feature-request,search,quick-open
high
Critical
190,029,765
opencv
Build fails WITH_OPENVX=YES if precompiled headers are enabled that is by default
##### System information (version) - OpenCV => master, 3.1.0-1694-ga19cb20 - Operating System / Platform => Linux-x64, Ubuntu 16.04 - Compiler => gcc-5.4.0 20160609 ##### Detailed description OpenCV build fails if configured to use OpenVX with precompiled headers enabled (that is default). ##### Steps to ...
bug,category: build/install,affected: 3.4
low
Critical
190,031,474
opencv
Inconsistent convention for cmake option specifying OpenVX location
##### System information (version) - OpenCV => 3.1.0-1694-ga19cb20 - Operating System / Platform => any - Compiler => any ##### Detailed description Currently to specify OpenVX location for cmake the following options are required: `-DOPENVX_ROOT=/path/to/prebuilt/openvx -DWITH_OPENVX=YES`, while the more co...
feature,priority: low,category: build/install,affected: 3.4
low
Minor
190,179,388
go
runtime: aggressive GC completion is disruptive to co-tenants
### What version of Go are you using (`go version`)? go version `devel +1e3c57c Wed Nov 16 20:31:40 2016 +0000` with CL 33093 PS 4 cherry-picked on top, with GOEXPERIMENT=preemptibleloops ### What operating system and processor architecture are you using (`go env`)? linux/amd64 ### What did you do? I hav...
Performance,NeedsInvestigation,early-in-cycle
medium
Critical
190,183,211
javascript
Add high-level theory/guiding principles
Most people don't have the time or energy to read through the entire style guide and internalize it. Additionally, there are always going to be gaps that we haven't explicitly handled. For both of these cases, I think it would be nice to add a few concise guiding principles to the document. This would allow people t...
question,editorial
low
Minor
190,192,567
gin
Provide guideline on how to write good middleware
There have been at least a couple of discussions in the past about good error handling strategies in middleware (see #665 and #274). It would be great if the outcome of those discussions would be summarized in the documentation...perhaps under **Custom Middleware** in the README file?
document
low
Critical
190,206,474
go
sync: RWMutex scales poorly with CPU count
On a machine with many cores, the performance of `sync.RWMutex.R{Lock,Unlock}` degrades dramatically as `GOMAXPROCS` increases. This test program: ```go package benchmarks_test import ( "fmt" "sync" "testing" ) func BenchmarkRWMutex(b *testing.B) { for ng := 1; ng <= 256; ng <<= 2 { b.Run(fmt.S...
Performance,NeedsFix,compiler/runtime
high
Major
190,210,993
angular
Allow disabling NgControlStatus
**I'm submitting a ...** ``` [ ] bug report [x] feature request [ ] support request ``` **Current behavior** `NgControlStatus` is applied automatically to any form control/group. **Expected behavior** Should be able to opt out of this directive. Maybe as simple as adding a `:not([ngNoControlStatus])` to t...
feature,area: forms,feature: under consideration
low
Critical
190,301,896
youtube-dl
add youtube_dl wiki
## 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 --- ...
documentation
low
Critical
190,422,623
youtube-dl
Chew.TV site request
## 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
190,438,054
vscode
Allow code to open directories in nautilus file manager
- VSCode Version: 1.7.1 - OS Version: Ubuntu 16.04 The nautilus file manager in Ubuntu and other GNOME-based Linux distros has a right click "Open with" option available for opening files and or directories. Currently, vscode supports open with for text files but not directories. Since I often open code repositorie...
linux,under-discussion,workbench-os-integration
low
Major
190,438,168
rust
std::process::Command's current_dir behaves differently on Unix and Windows, with respect to relative exe paths
On Unix, relative paths to the exe are interpreted after cd'ing to the `current_dir`, but on Windows they're interpreted before. Here's an example test (1 test file, and 1 little binary that the test needs to build) that demonstrates this if you run `cargo test` on the two different platforms: #### src/lib.rs ```...
T-libs-api,C-feature-request,A-process
low
Critical
190,498,121
youtube-dl
SoundCloud Charts
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2016.11.18*. - [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.11.18** ### Before submitting an *issue* make sure you have: - [x] At least skimmed through [README](https://github.com/r...
request
low
Critical
190,515,226
youtube-dl
People.com PEN Site Request
## 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
190,550,434
rust
Using `type` with local type parameters has confusing error
Using `type` with local type parameters or `Self` should have a clearer error. Reproduce with: [(playpen link)](https://play.rust-lang.org/?gist=a93fa3b44bc0c638b06f3d6975e57c36&version=nightly&backtrace=0) ```rust struct Foo; impl Foo { fn method<T>(&self) { type X = (Self, T); } } ``` ...
C-enhancement,A-diagnostics,A-associated-items,T-compiler,D-papercut
low
Critical
190,569,873
youtube-dl
Fix dts in f4m
If I record BBC1 live with ``` youtube-dl 'http://a.files.bbci.co.uk/media/live/manifesto/audio_video/simulcast/hds/uk/pc/llnw/bbc_one_hd.f4m' ``` and play the result with mpv, ~I get quite a few dropped frames (with vaapi playback)~ (it seems the display driver was to blame here). The reason seems to be problems w...
geo-restricted
low
Minor
190,584,172
rust
Expand macro parameters in the comments.
```rust macro_rules! test { (name:ident) => { /// A struct named $name. struct $name; } } ```
A-macros,C-feature-request
low
Major
190,589,610
create-react-app
Provide a watching build mode that writes to the disk in development
See https://github.com/facebookincubator/create-react-app/issues/1018#issuecomment-261792488 for a discussion which leads to the creation of this issue. I propose adding a new command (working name `build-dev`) which watches for changes and rebuild the bundle (effectively, given the current CRA implementation, it sh...
issue: proposal
high
Critical
190,628,657
TypeScript
Treating `undefined` parameters as optional
tsc: 2.2.0-dev.20161116 Discover this behavior from https://github.com/acdlite/flux-standard-action/pull/45/commits/78a9065914b2ca4848dfba8fc0b47c54e2d0e319 This is the original code: ```ts export interface FSA<Payload, Meta> { ... payload?: Payload; ... } ``` However, this does not work well with...
Suggestion,Help Wanted,Committed
high
Critical
190,647,465
awesome-mac
推荐自己开发的几个 macOS 小工具
以下几个都是自己开发的小工具,对需要的用户来说,还比较受欢迎(Mac App Store 4~5 星),所以有点底气来自荐。 中文描述: - [iPic](http://toolinbox.net/iPic/) - 图床神器:快速上传图片;支持 Markdown;支持七牛、又拍、阿里云等图床 - 注:已经被收录, 请帮忙更新下描述 - [iPaste](http://toolinbox.net/iPaste) - 简洁高效的剪切板神器 - [iHosts](http://toolinbox.net/iHosts) - 唯一上架 Mac App Store 的 /etc/hosts 编辑神器 - 注:曾被 ...
vote
low
Major
190,674,801
TypeScript
error TS5053: Option 'declarationDir' cannot be specified with option 'outFile'.
Attempting to change the declaration file output directory, I get the following error: > error TS5053: Option 'declarationDir' cannot be specified with option 'outFile'. `tsconfig.json` looks like this: ``` { "$schema": "http://json.schemastore.org/tsconfig", "compilerOptions": { "module": ...
Suggestion,Help Wanted
low
Critical
190,717,498
opencv
Documentation for fish-eye camera model is inconsistent with the code
The documentation for fish-eye camera model gives the following formulas for pixel projections (modules/calib3d/include/opencv2/calib3d.hpp:215): ``` \f[x' = (\theta_d / r) a \\ y' = (\theta_d / r) b \f] \f[u = f_x (x' + \alpha y') + c_x \\ v = f_y y' + c_y\f] ``` However initUndistortRectifyMap() function (mod...
bug,category: documentation,category: calib3d
low
Minor