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
182,788,179
opencv
Traincascade: grabbing negative window samples is seriously broken
### Please state the information for your system - OpenCV version: 3.x --> latest master branch - Host OS: Linux (Ubuntu 14.04 & 16.04) ### In which part of the OpenCV library you got the issue? apps --> opencv_traincascade process ### Expected behaviour Providing more then enough negative samples is a common approa...
bug,affected: 3.4,category: apps
low
Critical
182,837,879
opencv
Mouse callback gets wrong coordinates with small images
##### System information (version) <!-- Example - OpenCV => 3.1.0 (installed with brew install opencv3) - Operating System / Platform => Mac OSX El Capitan 10.11.6 - Compiler => Visual Studio 2015 --> - OpenCV => 3.1.0 (installed with brew install opencv3) - Operating System / Platform => Mac OSX El Capitan 10.11.6 - ...
bug,category: highgui-gui,platform: ios/osx
medium
Critical
182,858,343
go
cmd/compile: -bench should correct for GC
Currently -bench output is very sensitive to GC effects. For example: 1. Changing allocations in phase A might cause a GC cycle to shift from phase B to phase C, which can look like an improvement to B and a regression for phase C. 2. Reducing long-lived memory pressure from earlier phases gets credited to later phases...
NeedsFix,compiler/runtime
low
Major
182,920,750
rust
Large array literal causes slow compilation
I have a large array of the form ``` static mut ARRAY: [AtomicU64; LARGE_NUMBER] = [ ATOMIC_U64_INIT, ATOMIC_U64_INIT, ... ]; ``` where `LARGE_NUMBER = 512 * 1024`. `ATOMIC_U64_INIT` is not `Copy`, so it's not obvious how to express this differently. I don't even think I even legally can use a `[u64; LARGE_NUMBER...
C-enhancement,I-compiletime,T-compiler
low
Major
182,938,563
rust
Should `use super::{self, ...}` work?
Obviously `use super::self` would be a bit redundant, but what about if you're importing lots of items from `super`? We can already do something like: ``` use foo::{self, a, b, c}; ``` So why not something like this? ``` use super::{self, a, b, c}; ``` For reference, the specific error message on nightly is: ``` ...
A-resolve,T-lang,C-feature-request
low
Critical
182,940,569
angular
Feature: more robust module loader for router
**I'm submitting a ...** (check one with "x") ``` [ ] bug report [x] feature request [ ] support request ``` **Current behavior** The router's current default module loader tries once and crashes the app if it fails to retrieve the module. That's not good in a mobile environment where **latency and connectivity m...
feature,area: router,feature: under consideration
high
Critical
183,032,016
rust
Inference fails because it doesn't consider deref coercions
Maybe this is intended, but it's not super-clear. [Playground](https://is.gd/v2SFxF) ``` rust use std::collections::HashMap; fn check(_: &str) -> bool { false } fn chain<'a>(some_key: &'a str) -> HashMap<&'a str, Vec<usize>> { let mut map = HashMap::new(); map.get(&some_key); { // uncomment type...
T-lang,A-inference,C-feature-request
low
Critical
183,075,426
TypeScript
Incorrect (potentially) indentation of function arguments spanning multiple lines
_From @nomaed on October 14, 2016 10:40_ - VSCode Version: 1.6.1 - OS Version: macOS Sierra 10.12 Steps to Reproduce: - Write a function (or a method) with several arguments (I did it with JavaScript and TypeScript files, but I believe any would work). ``` javascript function myFunc(arg1, arg2, arg3, ...args) { } ```...
Suggestion,Domain: Formatter,Awaiting More Feedback,VS Code Tracked
medium
Critical
183,105,915
go
net: add Sys field to Interface for retrieving platform-specific information
### What version of Go are you using (`go version`)? `go version go1.7 linux/amd64` ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GOPATH="/home/vagrant/vicsmb" GORACE="" GOROOT="/usr/local/go" GOTOOL...
NeedsDecision,FeatureRequest
medium
Critical
183,149,585
rust
MSVC profilers attribute most time to std::panicking::try::do_call<AssertUnwindSafe<closure>,()>
While building servo with a locally-built msvc nightly rust with debug symbols (same behaviour with regular nightly binaries, the debug symbols just give a lot more useful stacks/etc. overall since names are resolved to proper demangled ones), profilers end up attributing >70% of CPU time to `std::panicking::try::do_ca...
A-debuginfo,C-enhancement,T-compiler,O-windows-msvc
medium
Critical
183,167,032
rust
"cannot declare a new module at this location" should specify good locations
The error has two notes full of weasel words (2x "maybe", 1x "possibly") and it should probably say something straightforward like "modules are declared at the crate root, or mod.rs at the root of a source directory".
C-enhancement,A-diagnostics,T-compiler,A-suggestion-diagnostics
low
Critical
183,174,505
TypeScript
Give better error messages when reserved names are used for binding identifiers
``` typescript const data = { in: 1 }; const { in } = data; // <-- [ts] ':' expected. ```
Suggestion,Help Wanted,Effort: Moderate,Domain: Error Messages
low
Critical
183,201,944
rust
Inferring type succeeds with too little information
The following code fails to compile: ``` rust pub trait Bar { fn new() -> Self; } pub struct Foo {} impl Bar for Foo { fn new() -> Self { Foo {} } } pub struct Qux<B=Foo> where B: Bar { foo: B, } impl<B> Qux<B> where B: Bar { fn new() -> Self { Qux { foo: B::new() } } } fn ...
C-enhancement,T-compiler,A-inference
low
Critical
183,226,916
rust
[testing infra] Pretty-printing tests fail when need to find an out-of-line module
Example, `run-pass\mod_file_with_path_attr.rs`: ``` #[path = "mod_file_aux.rs"] // <- can't find this file when compiling pretty-printing tests mod m; pub fn main() { assert_eq!(m::foo(), 10); } ``` Test runner needs to somehow provide a source directory when compiling tests, so out-of-line modules could be succ...
A-pretty,A-testsuite,C-bug
low
Minor
183,232,808
kubernetes
Restart controller-manager (and apiserver/scheduler) during our e2e tests
From time to time, we are hitting problems that restarting controller-manager is causing some serious issues. In the last few days we were e.g. forced to build 1.4 patch release because of bug in restarting node-controller (but IIRC this isn't the first case of such type of bugs). I think that we should introduce a si...
sig/api-machinery,sig/testing,lifecycle/frozen
low
Critical
183,235,904
rust
Pretty-printer inserts an extra newline before the first match arm if it has a comment
Example: ``` fn main() { match 0u8 { // Comment 0 => {} _ => {} } } ``` => ``` fn main() { match 0u8 { // Comment 0 => { } _ => { } } } ``` Affected tests: [pretty] pretty\borrowck\borrowck-pat-enum.rs [pretty] pretty\issue-11709.rs [pretty] p...
A-pretty,C-bug
low
Minor
183,249,727
rust
--emit=obj for Windows msvc producing .o instead of .obj
``` rustc 1.14.0-nightly (19ac57926 2016-10-08) binary: rustc commit-hash: 19ac57926abb749a93e2eb84502048d9c57f2d7b commit-date: 2016-10-08 host: x86_64-pc-windows-msvc release: 1.14.0-nightly ``` Doing `rustc --emit=obj foo.rs` results in `foo.o` instead of the expected `foo.obj`. TODO: * [ ] Investiga...
O-windows,T-compiler,O-windows-msvc,C-bug
low
Minor
183,251,631
opencv
OpenCV VideoCapture API causes pi3 to freeze when graphic driver is enabled on pi3
<!-- 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 pro...
bug,priority: low,category: videoio
low
Critical
183,255,385
youtube-dl
Download problem using youtube-dl at www.svtplay.se
Possible youtube-dl bug or svtplay database problem Problems retrieving videos (files) from svtplay (www.svtplay.se). After contacting the site and downloading initial info it only retrieves a couple of MB (should be around GB) for the following videos Millenium part 5 and 6 as well as 56orna part 2, 3, etc. Then the m...
geo-restricted
low
Critical
183,255,411
You-Dont-Know-JS
this & prototypes, chapter 5 #Setting & Shadowing Properties
> If the `myObject` object already has a normal data accessor property called `foo` directly present on it, the assignment is as simple as changing the value of the existing property. and > 1. If a normal data accessor (see Chapter 3) property named `foo` is found anywhere higher on the `[[Prototype]]` chain, **and i...
for second edition
medium
Minor
183,265,104
rust
Make std::io::Take<R> an instance of std::io::Seek when R:std::io::Seek
This would be particularly useful for reading file formats containing other formats. Examples include: - OpenType font files, where CFF is an embedded format. - GRIB (format used by weather forecast organisms), containing grayscale JPEG to describe values. (and probably many others) In such cases, it would also be coo...
T-libs-api,C-feature-accepted,A-io
low
Minor
183,300,527
rust
rust build on ARMv8 fails in test macro-stepping.rs, other debuginfo-gdb tests.
I built rust on a 96-core ARMv8 machine, and "make -j check" failed in one test: ``` test [debuginfo-gdb] debuginfo-gdb/macro-stepping.rs ... FAILED ``` I expected to see everything pass. A second time through, I got this, with four failures: ``` thread 'main' panicked at 'Some tests failed', /home/emv/src/rust-lan...
A-debuginfo,T-compiler,C-bug,O-AArch64
medium
Critical
183,357,531
go
x/build: set up builders simulating old processors
We occasionally get a bug report from users that some assembly code (often in runtime or crypto or compression) causes a SIGILL. We should run builders (perhaps in qemu?) simulating older processors so we can exercise all the assembly fallback paths and CPU detection code.
help wanted,Builders,new-builder
low
Critical
183,494,018
angular
Optional Parameters for angular2 routes
<!-- IF YOU DON'T FILL OUT THE FOLLOWING INFORMATION WE MIGHT CLOSE YOUR ISSUE WITHOUT INVESTIGATING --> **I'm submitting a ...** (check one with "x") ``` [ ] bug report => search github for a similar issue or PR before submitting [X ] feature request [X ] support request => Please do not submit support request here...
feature,area: router,feature: under consideration
medium
Critical
183,587,525
opencv
Regression issue with Calib3dTest.findFundamentalMat
<!-- 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 pro...
bug,test,category: calib3d,category: java bindings
low
Critical
183,632,406
youtube-dl
Support for #EXT-X-BYTERANGE in native hls extractor
## 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
183,655,184
youtube-dl
ERROR: lynda returned error: Session has expired (with cookies)
## 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...
account-needed
low
Critical
183,658,784
nvm
Run Travis tests on OS X
Should be a fairly simple tweak to `.travis.yml` and will test in what I would expect would be a pretty common (if not the most common) environment that `nvm` will normally run in. Also has the benefit of testing against BSD tools instead of GNU tools. The downside is it'll run all the current tests twice so effectiv...
testing,pull request wanted
low
Minor
183,742,091
opencv
VideoCapture() doesn't work (blocks) when running in a separate thread
##### System information (version) - OpenCV => 3.1.0_4 (via `brew install opencv3 --with-python3`) - OS => OSX Yosemite - Platform => python3.5.2 ##### Detailed description When using `cv2.VideoCapture(0)` in a thread, it doesn't work, but it does work when running in the main thread. It doesn't raise an Exception, me...
priority: low,category: videoio,platform: ios/osx,category: 3rdparty
low
Major
183,764,064
vscode
Feature Request: Show all errors and warnings in project for all JavaScript and TypeScript files, not just opened ones
I am using VS Code on a project at work that has hundreds of files and many layers of nested sub-directories. I frequently make changes that break many files, such as changing the call signature of a commonly used method. Since the project is entirely typescript, it is useful to be able to open the "Problems" view and ...
feature-request,typescript
high
Critical
183,780,829
flutter
DropDownButton.style is busted
DropDownButton.style is intended to handle the special font size (and style?) of drop down buttons in data tables: https://material.google.com/components/data-tables.html#data-tables-specs However, right now it breaks if you change the theme at the same time.
framework,f: material design,a: quality,P3,team-design,triaged-design
low
Minor
183,793,696
vscode
Virtual Space is not implemented.
https://blogs.msdn.microsoft.com/zainnab/2010/02/28/understanding-virtual-space/ This is a much needed productivity option that has been available in Visual Studio and other editors for many years. See also the column select issue that requires it: https://github.com/Microsoft/vscode/issues/5402 --- *Addit...
feature-request,editor-core,editor-columnselect
high
Critical
183,794,397
flutter
Automated testing infra doesn't test Flutter in landscape
I could be wrong, but I believe we're only doing automated infra testing in portrait. Flutter is designed to support both landscape and portrait orientations, and its widgets should work in both.
a: tests,team,framework,t: flutter driver,P3,team-framework,triaged-framework
low
Minor
183,867,278
react
[Fiber] Formalize States
In Fiber there are a number of states that a component can be in. However, it is not formalized in the code right now. Instead, the state is inferred. This leads to hard to follow code. Instead we can organize the code in terms of explicit states - which is what the original prototype did. Before componentDidMount (i....
Type: Enhancement,Component: Reconciler,React Core Team
medium
Minor
183,950,264
opencv
runtime asserts could be compile-time
<!-- 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 pro...
feature,RFC
low
Critical
183,950,746
rust
LLVM pointer range loop / autovectorization regression part two
This is a follow up to #35662. The optimizer regression that resulted in that bug is still not fixed. That bug created a simplified test case, and fixed it for that case. That's good. However, I have not been able to remove my workaround, so the issue still persists in the original code. The issue appears for an 8x8 ...
A-LLVM,I-slow,C-enhancement,T-compiler,A-autovectorization
low
Critical
184,084,350
go
net, internal/poll, runtime: remove mutex from UDP reads/writes
Reads and writes on net.UDPConns are guarded by a mutex. Contention on the mutex makes it difficult to efficiently handle UDP requests concurrently. Or perhaps I'm overlooking the right way to do this. The attached benchmark attempts to demonstrate the problem: [socks_test.go.txt](https://github.com/golang/go/files/54...
Performance,NeedsInvestigation
low
Major
184,099,915
rust
Specify and possibly reconsider the precise semantics of #[no_mangle]
This internals post describes how people are exploiting the underspecified aspects of `#[no_mangle]` to practical effect: https://internals.rust-lang.org/t/precise-semantics-of-no-mangle/4098 . We may want to specify what guarantees the attribute actually has, and possibly introduce new attributes to represent the fine...
A-linkage,A-stability,T-lang
low
Minor
184,144,494
rust
Poor error message related to higher rank lifetimes
https://bitbucket.org/iopq/fizzbuzz-in-rust/src/6d739f4781c90be95ac47e067562471b0c52f9f8/src/lib.rs?at=error&fileviewer=file-view-default After I try to use the tool.rs implementation of `second` I get this error message: ``` Compiling fizzbuzz v0.0.1 (file:///C:/Users/Igor/Documents/rust/fizzbuzz) error[E0281]: t...
C-enhancement,A-diagnostics,A-closures,T-compiler,A-higher-ranked
low
Critical
184,171,545
go
tour: clarify when to use pointer receivers
There appears to be a confusion (at least to me) on what the appropriate receiver type ought to be by default. Looking at; https://tour.golang.org/methods/8 That tutorial encourages new go users that: `There are two reasons to use a pointer receiver.` `The first is so that the method can modify the value that its re...
Documentation,NeedsFix
low
Major
184,271,502
go
x/tools/cmd/eg: does not support variadic functions
### What version of Go are you using (`go version`)? Go 1.7.1 eg 69f6f5b782e1f090edb33f68be67d96673a8059e ### What operating system and processor architecture are you using (`go env`)? MacOSX 10.12 Sierra (Darwin) x64 ### What did you do? Given the template ``` package egtemplates import ( "fmt" "github.co...
NeedsFix,Tools
low
Critical
184,281,553
kubernetes
kubectl exec escape sequence (tilde-dot)
As a big user of `kubectl exec` _and_ a big commuter to and from work, I often am in situations where I have some `exec` instance open, but the connection is flaky. When that happens, I _know_ that the connection will eventually timeout, but until then, that terminal window has become useless. ssh has a nice `~.` (ti...
area/kubectl,kind/feature,sig/cli,lifecycle/frozen
medium
Major
184,298,228
flutter
Test Android back button is functional
We should add a regression test that verifies that we don't break the back button on Android.
a: tests,c: new feature,team,platform-android,framework,P3,team-android,triaged-android
low
Minor
184,344,609
kubernetes
kubectl apply umbrella issue tracker
We need to write kubectl apply user documentation, fix bugs, and complete the functionality. # Work Items ## TBD - [ ] #35345 Fix server side defaulting of Union Types - [ ] #34292 Fix server side defaulting for Union types and derived types - [x] #35345 Add apply support that work with Unions - [ ] #24...
priority/important-soon,area/app-lifecycle,area/kubectl,sig/cli,area/declarative-configuration,lifecycle/frozen
low
Critical
184,373,284
youtube-dl
Add support spuul.com
Please add site support for free videos at spuul.com. Example: https://spuul.com/videos/1420-ladies-vs-ricky-bahl
site-support-request,account-needed
low
Minor
184,386,326
go
x/text/currency: TestLinking fails on ppc64le, s390x
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? 1.7.3 ### What operating system and processor architecture are you using (`go env`)? It's a ppc64le system running Ubuntu (various versions, version not important) ### What did you do? go test -v ...
NeedsFix
low
Major
184,392,313
youtube-dl
Access to info_dict before/after download/post-processing when embedding
- [X] I've **verified** and **I assure** that I'm running youtube-dl **2016.10.21.1** ### 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
184,468,704
TypeScript
Unoptimized destructuring compilation
**TypeScript Version:** 2.0 **Code** ``` ts // source ts code let i = 1000; while (i--) { let [a, b, c] = [1, 2, 3]; } ``` **Expected behavior:** ``` js // compiled by babel var i = 1000; while (i--) { var a = 1; var b = 2; var c = 3; } ``` **Actual behavior:** ``` js // compiled by tsc var i = 1000; wh...
Suggestion,Help Wanted
low
Major
184,484,953
TypeScript
Service Worker typings
<!-- 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.3 Types fo...
Suggestion,Help Wanted,Domain: lib.d.ts
high
Critical
184,529,305
TypeScript
Go to implementation misses some implementations
From tests/cases/fourslash/goToImplementationInterfaceMethod_01.ts ``` ts interface BaseFoo { hello(): void; } interface Foo extends BaseFoo { foo(): void; } interface Bar { hello(): void; bar(): void; } class FooImpl implements Foo { hello() { } foo() { } } class FooBaseImpl implements FooBase { hello()...
Bug
low
Minor
184,533,263
youtube-dl
Use /tmp directory for frag and .vtt files
I sometimes see leftover `--Frag17` and `-.ru.vtt` files in my home directory. I assume it's from me interrupting youtube-dl during a download. Can you use the /tmp (`TMPDIR`) instead for those files?
request
low
Major
184,546,535
You-Dont-Know-JS
Types & Grammer - Chapter 2 - Small Decimal Values
Probably just me, but I feel like this line in the Small Decimal Values section is worded a little odd? `As of ES6, Number.EPSILON is predefined with this tolerance value, so you'd want to use it, but you can safely polyfill the definition for pre-ES6:`
for second edition
medium
Minor
184,554,251
kubernetes
Reasonable defaults with eviction and PodDisruptionBudget
We are moving to have kubectl drain use the eviction subresource (https://github.com/kubernetes/kubernetes/issues/34277), and honor `PodDisruptionBudget`. From [comment by @erictune](https://github.com/kubernetes/kubernetes/issues/35318#issuecomment-255501443) which better captures this requirement. There should be...
area/stateful-apps,sig/apps,area/node-lifecycle,lifecycle/frozen
high
Critical
184,566,580
angular
ng-content component in router-outlet
<!-- IF YOU DON'T FILL OUT THE FOLLOWING INFORMATION WE MIGHT CLOSE YOUR ISSUE WITHOUT INVESTIGATING --> ``` [x ] bug report => search github for a similar issue or PR before submitting [ ] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/...
type: bug/fix,freq1: low,area: router,area: core,state: confirmed,core: content projection,P3
medium
Critical
184,569,041
go
cmd/vet: move asm checks into cmd/asm
Currently cmd/vet does not expand preprocessor macros in assembly code. As a result, it missed several issues in the runtime (a73d68e) and x/crypto (golang/crypto@5953a47, golang/crypto@e67f5ec, golang/crypto@3c0d69f). It would be nice if it could preprocess the assembly code before vetting it.
Analysis
medium
Major
184,595,060
kubernetes
Add discriminators to all unions/oneof in the API
Forked from #6979. We have a number of cases in the API where only one of a set of fields is allowed to be specified -- an undiscriminated union / oneof. `VolumeSource` is the canonical example: `emptyDir` or `gcePersistentDisk` or `awsElasticBlockStore` or ... Currently we require that exactly one be set, but don't ...
priority/important-soon,area/api,sig/api-machinery,sig/apps,priority/important-longterm,sig/architecture,lifecycle/frozen
low
Critical
184,620,552
youtube-dl
Slide.ly Feature Request
- [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.10.21.1** - [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [x] [Sear...
site-support-request
low
Critical
184,623,473
youtube-dl
Vimeo will download only 1st episode
asd
account-needed
medium
Major
184,674,106
java-design-patterns
Component Object pattern
**Description:** The Component Object pattern aims to encapsulate individual parts of a system into reusable components that can be dynamically composed. This pattern enhances modularity, reduces coupling, and promotes reusability of code. Each component represents a distinct piece of functionality and can be combined ...
epic: pattern,type: feature
low
Major
184,698,540
java-design-patterns
State-Action-Model pattern
**Description:** The State-Action-Model (SAM) pattern is a modern approach to state management in JavaScript applications. Unlike traditional MVC frameworks, SAM separates the state, actions, and model, providing a clear and manageable structure for application logic. This pattern enhances testability and maintainabili...
epic: pattern,type: feature
low
Major
184,702,118
neovim
RPC/API: Use Cap'n Proto instead of MessagePack
For the last 2 years as I follow the development of NeoVim, every single time I open the main NeoVim GitHub page and see _MessagePack_, I ask myself why didn't I already proposed [Cap'n Proto](https://capnproto.org/) as a better alternative. Long story short, [Cap'n Proto](https://capnproto.org/) is basically the fast...
enhancement,api,channels-rpc
medium
Critical
184,709,506
youtube-dl
please support camwhores.tv
example vids http://www.camwhores.tv/tags/kelseysbedroom/ ``` $ youtube-dl -v 'http://www.camwhores.tv/videos/28542/kelseysbedroom-webcam-show-2015-november-24-21-11/' [debug] System config: [u'--prefer-ffmpeg', u'--hls-prefer-native', u'-n'] [debug] User config: [] [debug] Command-line args: [u'-v', u'http://www.camw...
site-support-request,nsfw
low
Critical
184,809,858
nvm
ls-remote and install many times to run
I used the latest version of nvm. When `nvm ls-remote`, i must run 4 times this command then get 3 times result 'N/A' and a result valid. Similar for `nvm install <version>` (4times-3f-1ok), but take too-long time to finish. Pls check this and resolve. Thank you!
installing node,needs followup
low
Minor
184,809,859
opencv
remap bug when original image is larger than 32767 in size
##### System information (version) <!-- Example - OpenCV => 3.1 - Operating System / Platform => Windows 64 Bit - Compiler => Visual Studio 2015 --> - OpenCV => 3.1: - Operating System / Platform => Windows 64 Bit: - Compiler => Visual Studio 2013: ##### Detailed description <!-- your description --> When trying to ...
feature,category: imgproc,priority: low,RFC
low
Critical
184,828,639
flutter
Would be nice if `flutter run` only downloaded the necessary artifacts
I was on a train with bad wifi. It was painful. I was trying to run the gallery on an iOS Simulator. ``` %flutter run Building flutter tool... Downloading package sky_engine... 8101ms Running 'pub get' in sky_engine... 450ms Downloading package sky_services... 59...
c: new feature,tool,P2,team-tool,triaged-tool
low
Major
184,877,974
go
cmd/compile: improve inlining cost model
The current inlining cost model is simplistic. Every gc.Node in a function has a cost of one. However, the actual impact of each node varies. Some nodes (OKEY) are placeholders never generate any code. Some nodes (OAPPEND) generate lots of code. In addition to leading to bad inlining decisions, this design means that ...
Performance,ToolSpeed,NeedsInvestigation,compiler/runtime
high
Major
184,884,798
youtube-dl
[downloader/hlsnative] Resuming encrypted HLS streams leads to broken files
- [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.10.21.1** ### 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:/...
bug
medium
Critical
184,967,915
flutter
Engine does not handle OOM well
When we run out of memory, we just crash. There's no clear indication of what the problem is. `flutter run` just says the application finished after printing `W/ActivityManager: Force finishing activity com.yourcompany.foo/org.domokit.sky.shell.SkyActivity` a couple of times, but doesn't quit. On the device, Android ...
c: crash,engine,c: performance,perf: memory,P3,team-engine,triaged-engine
low
Critical
185,008,912
go
runtime: gdb command "goroutine 1 bt" fails on core file
### What version of Go are you using (`go version`)? go version go1.5.3 linux/amd64 ### What operating system and processor architecture are you using (`go env`)? GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GOPATH="/ldata/comp/project/go" GORACE="" GOROOT="/ldata/bin...
NeedsFix,Debugging,compiler/runtime
medium
Critical
185,036,045
flutter
`fluttter doctor` should check for incompatible adb in path
I used the Android Virtual Device Manager to create a new x86 + 7.1.1 instance, with API 25. ``` ~/tmp/testpixel $ flutter --version Flutter • channel master • git@github.com:flutter/flutter.git Framework • revision 80d578d93e (32 hours ago) • 2016-10-23 17:20:38 Engine • revision db12c5e621 Tools • Dart 1.21.0-dev.0....
tool,t: flutter doctor,P3,team-tool,triaged-tool
low
Major
185,063,869
rust
Compiler switch to list bound checks
This is my first Rust enhancement request. With the Go language compiler version 1.7, you can build the code using -gcflags="-d=ssa/check_bce/debug=1" to show which code lines still need checking bounds: http://www.tapirgames.com/blog/golang-1.7-bce Finding where the compiler is not able to optimize away run-time bo...
I-slow,C-enhancement,T-compiler,C-feature-request
low
Critical
185,158,832
go
net/http/cookiejar: add way to access all cookies in CookieJar
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? 1.6.3 ### What operating system and processor architecture are you using (`go env`)? darwin / amd64 ### What did you do? Tried to access _all_ cookies stored in a [http.CookieJar](https://golang.o...
Suggested,help wanted,FeatureRequest
medium
Major
185,239,814
youtube-dl
Piping to stdout writes to a file instead of stdout with some format specifier
## 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...
bug
low
Critical
185,243,373
youtube-dl
[bellmedia] MTV Broken due to wrong video ID and more
**MTV.com & MTV.ca STILL Broken even after updating to the 10-25-16 version I am getting Unsupported Site on both domains** ## yt http://www.mtv.ca/shows/the-challenge/video/the-duel/the-duel-ep3/1546068/0/3 [9c9media] 154606: Downloading JSON metadata ## ERROR: Unable to download JSON metadata: HTTP Error 404: Not ...
bug,geo-restricted
low
Critical
185,244,655
youtube-dl
Set constant bitrate for audio only
## 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
185,265,773
flutter
Some of our controls can't handle being built in 0x0 environments
We should create tests that put each UI control into a 0x0 container and make sure they don't crash. See https://github.com/flutter/flutter/pull/6535.
a: tests,framework,f: material design,good first issue,P2,team-design,triaged-design
low
Critical
185,430,251
go
net: add Buffers.ReadFrom and Buffers.Write?
Go 1.8 is adding net.Buffers, with Read and WriteTo methods. These both move data from the buffers to a target, either a []byte (for Read) or a Writer (for WriteTo). The implementation of WriteTo on one of the package net-implemented net.Conns uses writev. So far so good. What about readv? What is that going to look l...
help wanted,NeedsFix,FeatureRequest
medium
Major
185,436,327
TypeScript
JSDoc support for destructured parameters
**TypeScript Version:** 2.0.3 **Code** ``` ts interface Foo { /** * A bar value */ bar?: string; } /** * A function * * @param foo A param * @param { bar } Another param * @param bar Another param */ function foo(foo: string, { bar }: Foo): void { bar; foo; } foo('bar', { bar: 'play...
Suggestion,In Discussion,Help Wanted,VS Code Tracked,Domain: JSDoc
medium
Critical
185,437,822
go
syscall: add support for Windows job objects
I would like to reopen #6720. I excitedly read all the thread, ending with the greatest facepalm I had in the past years. Look, this is not a solution! If `nodejs` knows how to pass these signals between processes on windows - then no reason that `golang` should not. No magic involved. Full story bellow. Mind that if...
help wanted,OS-Windows,NeedsInvestigation,FeatureRequest
low
Major
185,439,260
go
encoding/json: ambiguous fields are marshalled
Embedded fields work, even when there are selectors that are the same: ex: https://play.golang.org/p/fJTGL-HWEk You get a compile time error though when you select ambiguously: ex: https://play.golang.org/p/McjVYbnAhT I understand that it would be hard to achieve, but I expect a compile time error from the following co...
NeedsDecision
low
Critical
185,475,548
go
all: spelling inconsistency for networking terms
Some packages use `hostname` and others `host name`. The worst is the net package which uses both. It might be better to align to `host name` defined in https://tools.ietf.org/html/rfc7719. ``` Host name: This term and its equivalent, "hostname", have been widely used but are not defined in [RFC1034], [RFC1035], [RFC1...
Documentation,help wanted,NeedsFix
low
Major
185,479,899
TypeScript
auto align colons in object literals, variables, and equals like WebStorm
_From @kinergy on October 17, 2016 2:56_ - VSCode Version: 1.6.1 - OS Version: macOS 10.12 Using Format Code on a js file: ``` var abcde = 'abcde', def = { a : 'aaa', bb: 'b' }; ``` turns into: ``` var abcde = 'abcde', def = { a: 'aaa', bb: 'b' }; ``` It would be really nice to ha...
Suggestion,Awaiting More Feedback,VS Code Tracked
medium
Critical
185,519,656
bitcoin
Unbounded reorg memory usage
#9014 brought to light in issue introduced in #7946 - when we do a reorg, we now keep the full contents of each block we connect in memory until the reorg is complete. Luckily, #9014 makes this a bit eaiser to fix - dont keep more than a few blocks around in shared_ptrs, just re-read them from disk after the reorg is c...
Resource usage
low
Major
185,529,898
go
cmd/compile: optimize functions into boolean expressions
Using 587b80322c6ce34ab115d7a837a56d7450aa913d In http://golang.org/cl/32122, I optimized a switch-based implementation to be a boolean expression. The two implementations below are semantically equivalent: ``` go func ValidRune1(r rune) bool { switch { case r < 0: return false case surrogateMin <...
Performance,compiler/runtime
low
Minor
185,634,914
youtube-dl
Multiple connection support in internal dash downloader
## 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
185,716,192
opencv
solve CV_SVD very slow in the latest opencv
I'm on one of the most recent revisions of opencv (compiled from source): 1ae27eb6967f98c78c741539afb1d2de6a0bb322 (I compiled it with opencv_contrib if that matters). Once I moved from official release to the one I mentioned earlier, matrix decomposition became really slow (10^3 slower!). ``` solve(X, Y, res, CV_SVD...
incomplete
low
Major
185,765,165
go
cmd/compile: use better code for slicing
``` func f(s []int, i int) []int { return s[i:] } ``` The assembly starts out with ``` MOVQ "".i+32(FP), AX MOVQ "".s+16(FP), CX CMPQ AX, CX JHI $0, 60 SUBQ AX, CX ``` The CMP and SUB are almost redundant. Instead, we could do ``` MOVQ "".i+32(FP), AX MOVQ "".s+16(FP), CX SUBQ AX, CX JHI $...
Performance,compiler/runtime
low
Minor
185,914,339
TypeScript
disallow comparing to null and undefined unless they are valid cases in strict null mode
the rationale is the same as for `--noUnusedLocals` which in this case would be `--noUselessNullChecks` (i am not proposing a new flag, the existing `--strictNullChecks` flag should be used, this is for illustration only) ``` typescript declare const value: number; if (value !== null) { // <-- somehow valid, expected ...
Suggestion,Awaiting More Feedback,Has Repro
medium
Critical
185,924,188
opencv
conflicting typedef for int64
##### System information (version) - OpenCV => 2.4.9 (2.4.9.1+dfsg-1.5ubuntu1) - Operating System / Platform => Ubuntu 16.04, 64 bit - Compiler => GNU GCC 5.2 ##### Detailed description OpenCV has typedef in global namespace that will prevent compilation if other library has conflicting typedef. Currently, we are awar...
category: build/install,RFC,future
medium
Critical
185,961,353
go
cmd/go: wrong import stack in error message
This is not true: ``` $ go get -u rsc.io/github/issue package rsc.io/github/issue imports 9fans.net/go/acme imports 9fans.net/go/plan9 imports 9fans.net/go/plan9/client imports 9fans.net/go/draw imports 9fans.net/go/draw/drawfcall imports github.com/google/go-github/github imports github.co...
NeedsFix
low
Critical
185,967,321
youtube-dl
Forbes video download (hosted on Brigthcove)
Possible to add? example: http://www.forbes.com/video/5118388570001/
site-support-request
low
Major
186,029,164
youtube-dl
site-support in youtube-dl for ozee.com site- streaming video only in flash though.
- [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.10.26** - [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] [Search...
site-support-request,geo-restricted
low
Critical
186,058,391
go
archive/tar: add Reader.NextRaw method to read only one raw header
The current master implementation [elides records](https://github.com/golang/go/blob/ee457118cd7b11264719647fa6f7422bac2a4431/src/archive/tar/reader.go#L117-L121), for example pax `x` typeflag records are collapsed into the following record with the extended headers being [merged into the normal file's headers](https:...
NeedsInvestigation,FeatureRequest
low
Major
186,062,357
go
net: isDomainName rejects valid domains
`isDomainName` is limited to hostname-compatible "preferred name" LDH labels, with an exception made for underscores per #1167. But [RFC 2181](https://tools.ietf.org/html/rfc2181#section-11) is clear about _any_ octet being valid in a DNS label: > Those [length] restrictions aside, any binary string whatever can be ...
NeedsDecision
medium
Critical
186,067,478
rust
Generic Fn wrapper breaks without type annotations
I have a generic `FnWrapper` struct for closures that take a `&i32` as their only parameter, and a generic `apply` function that consumes such wrappers (not directly, but via `Foo` trait). ``` rust trait Foo { fn foo(self, value: &i32); } struct FnWrapper<F>(F); impl<F: FnOnce(&i32)> Foo for FnWrapper<F> { f...
C-enhancement,A-closures,T-compiler,A-inference
low
Critical
186,103,688
go
x/net/html: Allow getting HTML attribute values without unescape
### What version of Go are you using? go1.7.3 ### What operating system and processor architecture are you using? linux/amd64 ### What did you do? I'm working on an HTML sanitizer, where I want to access the original escaped HTML attribute values during the parse. ### What did you expect to see? An ideal solution t...
FeatureRequest
low
Minor
186,127,144
TypeScript
TypeScript refuses to emit files from node_modules with getEmitOutput()
Hi. In out company we use workflow when all packages are written in pure TypeScript and we publish and consume them as-is, without any pre-compilation. I know that it's slower, but it's very convenient for developers, because they don't need to run several parallel `tsc --watch` processes. We used `webpack` and `aweso...
Bug
low
Major
186,267,482
angular
Allow CanActivate[Child] Guards to be "blocking"
**I'm submitting a ...** (check one with "x") ``` [ ] bug report => search github for a similar issue or PR before submitting [x] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ``` **Current behavior...
feature,area: router,feature: under consideration
medium
Critical
186,298,454
three.js
Proposed: Order Independent Transparency
##### Description of the problem We (@Jozain and myself) are currently implementing out-of-order transparency for ThreeJS for a project of ours. We'd like to contribute it back. We are implementing the method of Morgan Mcguire, Weighted-Blended Order Independent Transparency: http://casual-effects.blogspot.ca/201...
Suggestion,Bounty
medium
Major
186,302,884
go
x/tools/refactor/rename: doesn't work on Windows
Go 1.7 Windows 64 Bit I hope, I fixed the problem with go move package under windows. bradfitz outcommented the tests for windows. Now they work. There was a tiny replace oversight - from [unix] package path to [windows] file path. https://play.golang.org/p/76oMBOgedE Here is the patch ```patch ...
OS-Windows,Tools,Refactoring
low
Critical