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
78,854,591
react
Change event fires extra times before IME composition ends
### Extra details * Similar discussion with extra details and reproducing analysis: https://github.com/facebook/react/issues/8683 * Previous attempt to fix it: https://github.com/facebook/react/pull/8438 (includes some unit tests, but sufficient to be confident in the fix) ------ ### Original Issue When ...
Type: Bug,Component: DOM
high
Critical
79,217,934
go
testing: autodetect appropriate benchtime
For discussion: There is tension in how long to run benchmarks for. You want to run long, in order to make any overhead irrelevant and to reduce run-to-run variance. You want to run short, so that it takes less time; if you have a fixed amount of computing time, it'd be better to run multiple short tests, so you can d...
NeedsInvestigation
low
Major
79,585,626
go
cmd/compile: some large-temp-heap-allocations need to be moved before escape analysis
This follows https://golang.org/cl/10268/ and includes more convoluted (harder to trigger, harder to fix) versions of the problems addressed there. "The problem" is that any time a stack allocation of pointer-containing data is converted to a heap allocation (this happens if the stack allocation is very large), the po...
compiler/runtime
low
Critical
79,620,106
kubernetes
Generalize container image representation
Forked from #7018 and #7203. We need to generalize the representation of container images so that we can support more image formats, pinning to specific image hashes, references to image API objects, and other features in the future. Generalizing this representation breaks ALL API versions, so we should do that now. ...
priority/backlog,sig/node,sig/api-machinery,kind/feature,lifecycle/frozen
medium
Critical
79,826,757
youtube-dl
Display whether YouTube video has encrypted signature in JSON dump (--get-json)
As talked about in https://github.com/rg3/youtube-dl/issues/5787 and https://github.com/rg3/youtube-dl/issues/5781 it would be very useful to display whether the original YouTube signature was encrypted or not in the JSON dump (`--get-json`/`-j`) Something as simple as `"encryptedSignature": 1` added to the JSON dump ...
request
low
Minor
79,891,141
youtube-dl
site support request: pinkbike.com
``` $ youtube-dl --version 2015.05.15 ``` ``` $ youtube-dl -v http://www.pinkbike.com/video/408888/ [debug] System config: [] [debug] User config: ['--console-title'] [debug] Command-line args: ['-v', 'http://www.pinkbike.com/video/408888/'] [debug] Encodings: locale UTF-8, fs utf-8, out UTF-8, pref UTF-8 [debug] yout...
site-support-request
low
Critical
80,245,845
rust
Mutable reference not re-borrowed by binary operator
When implementing a binary operator on `&mut Something`, the binary operator consumes the mutable reference instead of borrowing it: `````` rust use std::ops::Shl; struct Test; impl<'a> Shl<()> for &'a mut Test { type Output = (); fn shl(self, rhs: ()) {} } // Compiles fn test_direct() { let mut test = ...
A-type-system,T-compiler,C-bug,T-types
low
Critical
80,507,260
youtube-dl
[Cosmetics] Updating youtube-dl.exe
While updating youtube-dl the temporary _youtube-dl-updater.bat_ performs this task: ``` bat @echo off echo Waiting for file handle to be closed ... ping 127.0.0.1 -n 5 -w 1000 > NUL move /Y "D:\Storage\Media\Binaries\youtube-dl.exe.new" "D:\Storage\Media\Binaries\youtube-dl.exe" > NUL echo Updated youtube-dl to versi...
build/update
low
Minor
80,740,375
youtube-dl
Use JSON-RPC interface to download the video through aria2
Currently, download through aria2 is implemented in external downloader. I do not like the interface in the terminal, and aria2 has a pretty good JSON-RPC interface, which can be managed from web interface. I would like to be able to see the download list and speed through web browser instead of terminal window, since ...
request
medium
Major
81,081,346
go
spec: for struct types, clarify field "name" and "scope" of field names/selectors
Field names are identifiers "declared" with a struct type definition. The section of struct types could be clearer with respect to what a "field name" is. E.g.: struct{T} vs struct {T T} vs struct {t T} . Also, the "scope" of field names/selectors is not explicitly defined. Determine if there's any clarification neede...
Documentation,NeedsInvestigation
low
Minor
81,083,180
go
spec: evaluation order of statements unspecified
The order is obvious to everybody but there should probably be a sentence somewhere.
Documentation,NeedsInvestigation
low
Minor
81,085,998
go
spec: clarify receiver value passed in method invocations
The section on Selectors ( http://tip.golang.org/ref/spec#Selectors ) has some examples of selectors and what (expanded) expression they stand for, but the section could be expanded or have more explanations, especially for receiver values passed to method invocations. This is one of the most complex aspects of the la...
Documentation,NeedsInvestigation
low
Minor
81,362,920
rust
Tools for dumping information about .rlibs
It would be great if there was a set of tools for dumping information about a given .rlib. This could be used to debug linkage and export issues. Something like `nm` and `ldd`. I note that `nm` does appear to partly work on a .rlib, but the output is a bit raw. Where is the best place to start for understanding the ...
T-compiler,T-dev-tools,C-feature-request
medium
Critical
81,424,043
react
Support for reparenting
When writing a component that contains a set of large subtrees that stay relatively the same, but are simply moved around such that React's virtual DOM diffing can't detect the movement, React will end up recreating huge trees it should simply be moving. For example, pretend `blockA` and `blockB` are very large struct...
Type: Feature Request,Component: Component API,Resolution: Backlog
high
Critical
81,474,242
TypeScript
Feature request: Decorators on enum members
It would be nice to be able to decorate enum members (in the same way as properties?).
Suggestion,Needs Proposal,Domain: Decorators
high
Critical
81,611,022
javascript
Distributing ES6
section on how to publish es6 files to npm
enhancement,pull request wanted,editorial
low
Minor
81,742,134
youtube-dl
[Escapist] download ads instead of video
It downloads a 4.5MB, 45-second mp4 video which is an ad, instead of the normal video ``` % youtube-dl -v http://www.escapistmagazine.com/videos/view/zero-punctuation/10119-Grand-Theft-Auto-Online-Review [debug] System config: [] [debug] User config: [] [debug] Command-line args: ['-v', 'http://www.escapistmagazine.co...
cant-reproduce
low
Critical
82,044,592
rust
Implied bounds on nested references + variance = soundness hole
The combination of variance and implied bounds for nested references opens a hole in the current type system: ``` rust static UNIT: &'static &'static () = &&(); fn foo<'a, 'b, T>(_: &'a &'b (), v: &'b T) -> &'a T { v } fn bad<'a, T>(x: &'a T) -> &'static T { let f: fn(&'static &'a (), &'a T) -> &'static T = foo;...
A-type-system,P-medium,I-unsound,C-bug,A-variance,S-bug-has-test,T-types
high
Critical
82,196,115
rust
Enable segfault / bus error handlers on more UNIX platforms
src/libstd/sys/unix/stack_overflow.rs is enabled on Linux, OS X, Bitrig, and OpenBSD targets only, because the implementation used to have its own signal-handling bindings that were only known to be correct on those targets. In #25784 I refactored the bindings and verified them for all current ports, I think we can tu...
A-runtime,O-android,O-netbsd,C-bug,T-libs
low
Critical
82,237,298
youtube-dl
Expand Niconico Video support
Niconico Video has two quality levels for a video, "normal" and "[economy](http://dic.nicovideo.jp/a/%E4%BD%8E%E7%94%BB%E8%B3%AA%E3%83%A2%E3%83%BC%E3%83%89)" (Japlish for "low"). Currently, using `youtube-dl -F` on a Niconico Video link only brings up one video quality: ``` format code extension resolution note ...
request
low
Minor
82,253,140
youtube-dl
Add support for 5sing
Example URLs: http://5sing.kugou.com/yc/1794876.html (yc: yuanchang; original song) http://5sing.kugou.com/fc/4238226.html (fc: fanchang; cover song) http://5sing.kugou.com/bz/1146744.html (bz: banzou; instrumental) Downloading an MP3 is enabled on most songs but requires you to log in; click on 下载 and then the first ...
site-support-request
low
Minor
82,472,081
rust
Rustdoc: pages are being overwritten on the file systems with case-insensitive names
Not sure if we can work around the case-insensitivity but when generating docs for the identifiers with the same name, but different cases(well it is ok for Rust after all :)) Like: https://github.com/DoumanAsh/trace-macro/blob/master/src/lib.rs#L29 https://github.com/DoumanAsh/trace-macro/blob/master/src/lib.rs#L150 ...
T-rustdoc,E-mentor,C-bug
low
Major
82,498,765
go
x/tools/refactor/eg: when matching struct literals, abstract over the tagged/tagless forms
Equivalent struct literals may be written in several ways: T{1, 2} T{a: 1, b: 2} T{b: 2, a: 1} The 'eg' tool should allow a pattern using any of these forms to match any of these expressions. That means internally converting to the named form and doing name-based (not index-based) matching of subtrees. The o...
Tools,Refactoring
low
Minor
82,586,582
TypeScript
Invalid combinations of --out, --outDir, and --rootDir should cause a compiler error.
When using invalid combinations of `--out`, `--outDir`, and `--rootDir`, the compiler currently doesn't report any errors, but emits files in 'random' locations. Further when you specify `--rootDir` without `--outDir` this is ignored as well. **Expected** to get errors/warnings from the compiler in all those cases.
Bug,Help Wanted
low
Critical
82,948,629
youtube-dl
Add support for piapro
piapro is a Japanese website made for hosting VOCALOID-based media, mainly images, audio, and text. Example URLs for audio: http://piapro.jp/content/es7uj48x6bvcbtgy (old-style URL, still functional) http://piapro.jp/t/KToM (current URL style) Two types of audio quality, download and streaming. Very similar to #5839,...
site-support-request
low
Minor
83,051,474
youtube-dl
Add support for authentication on tvcast.naver.com (age restricted videos)
How to download video from this url? http://tvcast.naver.com/v/406354 The video is age restricted. Is there anyway to download this video? C:\Users\Jaimin>youtube-dl http://tvcast.naver.com/v/406354 --verbose [debug] System config: [] [debug] User config: [] [debug] Command-line args: [u'http://tvcast.naver.com/v/4063...
request
low
Critical
83,121,556
youtube-dl
MusiXmatch support
Hello, i was looking at downloading some music videos and noticed that most of those with lyrics were not "subtitled" on the official video, then found I out the MusiXmatch chrome extension which put those lyrics as subtitles under the CC option on youtube, it makes a request with the youtube video ID, can this be impl...
request
low
Minor
83,194,033
go
tour: Traversal order
Context: /concurrency/8 It should be made clear that Walk function should traverse the tree in-order.
NeedsInvestigation
low
Minor
83,417,529
youtube-dl
twofactor code input request
If i provide only -u parameter with username, app asks to input password, but if then youtube required two factor authentication- there no request for user to input key generated by Google Authenticator app. It will be great to have a possibility to input TFA-code on-demand. THANKS
request
low
Minor
83,673,499
youtube-dl
Please add support for artycok.tv
It hosts art-related videos mainly but not only somehow connected to the Czech Republic. It would be great if it were supported.
site-support-request
low
Minor
83,698,111
kubernetes
Kubelet doesn't attempt to re-register
In the process of setting up HA, I blew away my master state, which means that node information was lost. The kubelet doesn't attempt to re-register itself. It probably should. This isn't a v1.0 feature, though. @dchen1107
priority/backlog,area/reliability,sig/node,kind/feature,lifecycle/frozen,needs-triage
medium
Major
83,921,697
youtube-dl
Fails to rip Vimeo search results
Sometimes I want everything in the search results... youtube-dl https://vimeo.com/search?q=tanya+dakin [vimeo:user] search?q=tanya+dakin: Downloading page 1 ERROR: Unable to extract list title; please report this issue on https://yt-dl.org/bug . Make sure you are using the latest version; see https://yt-dl.org/update...
site-support-request
low
Critical
84,117,030
nvm
When https://nodejs.org/dist/ is unreachable, nvm should indicate this to user
Currently, if https://nodejs.org/dist/ is unreachable, `nvm install` fails with a misleading message: ``` sh-session $ nvm install 0.10 Version '0.10' not found - try `nvm ls-remote` to browse available versions. ``` The reason for this failure should be properly identified and relayed to the user.
feature requests
low
Critical
84,706,129
neovim
line editor (readline) functionality
When a program which uses a line editor (e.g. bash, which is readline-based) is running inside of neovim's :terminal mode, neovim should take over the line editor's responsabilities. I believe this would greatly increase the convenience of combining neovim, terminal mode, and any program that uses a line editor, includ...
enhancement,tui
medium
Critical
84,732,835
go
encoding/json: Decoder internally buffers full input
When using the JSON package, if I encode a struct like ``` go type Data struct { Count int Names []string } ``` and then decode it into ``` go type SmallData struct { Count int } ``` it will still allocate memory for the list of names, even though it just gets thrown away. This becomes an annoyance whe...
Performance
low
Major
84,911,783
rust
MSVC: support LTCG native libraries in rlibs
MSVC supports the option to compile native libraries with link-time code generation enabled via the `/GL` switch to the compiler. This cause the compiler to change the format of the `*.obj` file emitted to no longer be a COFF object file. When MSVC's `lib.exe` tool is used to assemble these object files into a `.lib`, ...
E-hard,O-windows-msvc,C-feature-request
low
Minor
85,202,616
go
math/big: printing is non-linear and very slow for large Floats
The Text method of big.Float produces a textual representation of the floating point number. I have a program that can create very large numbers and they are slow to print. Moreover, the time to print them does not scale sensibly with the size of the number: % time ivy -e '1e10000' > /dev/null real 0m0.005s user ...
NeedsInvestigation
low
Major
85,237,393
go
misc/ios: make it easier to run benchmarks on the device
I have some hacks I carry around locally to enable benchmarking on an iOS device: - Make tests print "DONE" after running benchmarks, similarly to the way they currently print "PASS" after running tests. - Add an envvar to go_darwin_arm_exec.go to control what string it watches for to detect that a test has completed r...
NeedsInvestigation
low
Critical
85,391,936
kubernetes
By default, merge more .kubeconfig files
By default, kubectl should have access to all clusters, users and contexts defined in any .kubeconfig files in any of the following locations: - Any files or directories specified by KUBECONFIG - /etc/kubernetes/config/* - ~/.kube/* (Today kubectl only loads from ~/.kube/config, or only KUBECONFIG or --kubeconfig if s...
priority/backlog,area/kubectl,kind/feature,sig/cli,lifecycle/frozen
medium
Major
85,579,794
go
x/mobile: apps crash on darwin/arm64 at draw_arrays(__GLIContextRec*, unsigned int, int, int)
Apps crash on darwin/arm at draw_arrays(__GLIContextRec*, unsigned int, int, int) slightly after the launch. It usually takes 3-4 seconds for me to see the EXC_BAD_ACCESS. I am packing the arm64 binary in a lipo file, my build steps are available for inspection at https://github.com/rakyll/go-xcode/blob/master/Makefil...
mobile
low
Critical
85,756,027
youtube-dl
[Errno 36] File name too long on eCryptfs
Filesystem: EXT4 OS: Ubuntu Linux 14.04 LTS `youtube-dl --version`: 2015.06.04.1 When I try to download a Vimeo video: `youtube-dl --ignore-errors --restrict-filenames https://vimeo.com/80352108` I got the following error: `ERROR: unable to open for writing: [Errno 36] File name too long: ...`
bug
medium
Critical
85,767,283
go
runtime: support dlclose with -buildmode=c-shared
``` go package main import ( "C" "fmt" ) var ( c chan string ) func init() { c = make(chan string) go func() { n := 1 for { switch { case n%15 == 0: c <- "FizzBuzz" case n%3 == 0: c <- "Fizz" case n%5 ...
compiler/runtime
high
Critical
85,799,062
TypeScript
'Content-Length' value returned by TSServer is one off on Windows
The 'Content-Length' value returned by TSServer does not take into account that newlines on Windows are two characters `\r\n` instead of `\n`. The issue was found in PR Valloric/ycmd#156. Here's a minimal example. Create a dummy `test.ts` file and a Python script with the following lines: ``` python #!/usr/bin/env py...
Bug,Help Wanted,API
low
Critical
85,804,734
TypeScript
Provide an xclangspec file for TypeScript syntax highlighting in Xcode
This is a feature request for the TypeScript team to ship an xclangspec file with the TypeScript sources in order to provide support for syntax highlighting of the language in the Xcode IDE. Google has done the same for their Go language; see here for an example of the xclangspec file format: https://code.google.com/p...
Suggestion,Help Wanted
low
Major
85,829,235
go
x/build: coordinator should keep a small pool of ready-to-go GCE buildlets
The coordinator's GCE buildlet pool should always have a few of each type of buildlet ready to go to avoid the start-up latency. e.g. an idle Plan 9, OpenBSD 32/63, FreeBSD 64 (at least 2x), Linux (probably at least 4x), etc. Then once we start building them, we also start spinning up the helpers for test sharding. ...
Performance,Builders,FeatureRequest
low
Minor
85,866,285
nvm
Error with linked packages when `reinstall-packages`
I've got an error at the end of `reinstall-packages` command ``` Linking global packages from iojs-v2.0.0... nvm:cd:646: no such file or directory: /Users/roadhump/Projects/eslint\n/Users/roadhump/Projects/yeoman-generators/generator-linters ```
shell: zsh: oh-my-zsh
low
Critical
85,952,737
rust
No error despite of multiple applicable methods in scope
Given the following code: ``` rust extern crate mio; use mio::buf::RingBuf; use mio::buf::Buf; use std::io::Read; fn main() { let buf = RingBuf::new(10); let bytes = buf.bytes(); println!("{:?}", bytes); } ``` `buf` is of type `RingBuf`. `RingBuf` does not provide `.bytes()`, but it implements both `Buf`...
T-lang,C-bug
low
Critical
85,958,883
rust
Closures should always implement the all applicable Fn* traits.
If a closure is passed into a function call as temporary, it only implements the `Fn*` traits needed to satisfy the constraints specified by the function. However, if it is declared first and then moved into the function, it correctly implements all applicable `Fn*` traits. ``` rust fn strip<F: FnOnce()>(f: F) -> F { ...
C-enhancement,P-medium,A-closures,T-compiler
low
Critical
86,472,052
youtube-dl
[site-support-request] rat-porn.com
Example URL: http://www.rat-porn.com/video/312/pretty-18yo-blonde-fucked-on-cam ``` $ youtube-dl -v 'http://www.rat-porn.com/video/312/pretty-18yo-blonde-fucked-on-cam' [debug] System config: [] [debug] User config: [] [debug] Command-line args: ['-v', 'http://www.rat-porn.com/video/312/pretty-18yo-blonde-fucked-on-ca...
site-support-request,nsfw
low
Critical
86,472,638
youtube-dl
[site-support-request] luxuretv.com
Example URL: http://en.luxuretv.com/videos/slut-spreads-her-big-breasts-in-front-of-a-webcam-16982.html ``` $ youtube-dl -v 'http://en.luxuretv.com/videos/slut-spreads-her-big-breasts-in-front-of-a-webcam-16982.html' [debug] System config: [] [debug] User config: [] [debug] Command-line args: ['-v', 'http://en.luxuret...
site-support-request
low
Critical
86,509,849
youtube-dl
[site-support-request] https://couragefound.org/
https://couragefound.org/2015/06/courage-event-the-digital-surveillance-state-quo-vadis-democracy/ Current youtube-dl e1b9322b091122b6f6832c70e3a845a84ee1764e cannot find the video on this page.
site-support-request
low
Minor
86,629,533
youtube-dl
youtube-dl downloads DASH manifest before noticing that the youtube doesn't match the regex given by the --match-title argument
This slows it down quite a bit, especially on longer playlists.
request
low
Major
87,006,608
rust
Implement likely/unlikely intrinsic (tracking issue for RFC 1131)
Tracking issue for rust-lang/rfcs#1131: - [x] Implement the likely/unlikely intrinsic - [ ] Re-export in `std::hint` - [ ] Document - [ ] Stabilize
metabug,B-RFC-approved,T-lang,B-unstable,E-help-wanted,C-tracking-issue,A-intrinsics,S-tracking-perma-unstable
high
Critical
87,107,430
youtube-dl
Request to support box.com
I would like youtube-dl to be able to download from box.com, please. Example: https://app.box.com/s/yrvxrv91fenex2acvo0zdpbogjjb9jrf
site-support-request
low
Major
87,128,036
go
syscall: forkAndExecInChild assumes clone doesn't block, but it sometimes does
syscall.forkAndExecInChild [uses](https://github.com/golang/go/blob/go1.4.2/src/syscall/exec_linux.go#L85) RawSyscall6 to call clone. This means the goroutine doesn't give up its scheduler slot, making the assumption that clone can't block. But in the case of a program with open files on a fuse file system, clone may b...
compiler/runtime
medium
Major
87,133,875
kubernetes
Bulk creation API
I have a list of services defined under a json having "kind" : "list" I'm using the v1beta3 API version. However, I don't see any endpoint to launch a list resource. I'm following the Swagger spec on http://kubernetes.io/third_party/swagger-ui/#!/v1beta3/listService to see the endpoints. Is there any way to use the...
priority/backlog,area/api,area/app-lifecycle,sig/api-machinery,kind/feature,lifecycle/frozen
medium
Major
87,399,769
go
os/exec: provide better support for creating pipelines
Creating pipelines using os/exec is somewhat tedious. There are a couple of good external packages that provide higher-level interfaces: http://godoc.org/gopkg.in/pipe.v2 http://godoc.org/github.com/ghemawat/stream Brad asked me to file an issue to think about making this better for Go 1.6. Related: it's common ...
help wanted,FeatureRequest
low
Critical
87,579,361
youtube-dl
Add ID3 tags to MP3 files (was: Thumbnail shows in VLC, but not Windows Media Player?)
Running the following creates an mp3 file and the corresponding thumbnail: > youtube-dl --write-thumbnail --embed-thumbnail -x --audio-format mp3 https://www.youtube.com/watch?v=v2AC41dglnM If I open the mp3 with VLC, the thumbnail shows, but if I open it with Windows Media Player it doesn't. What am I doing wrong? H...
request,postprocessors
low
Minor
87,812,374
go
cmd/compile/ssa: duplicate block elim
``` go package p func g_ssa(a, b int) int { if a < 5 { return 1 } if b < 5 { return 1 } return 0 } ``` At the end of the layout pass (chosen for readability--this remains true at the end of compilation), the SSA looks like: ``` g_ssa <nil> b1: v1 = Arg <mem> [.mem] v2 = ...
NeedsInvestigation
low
Major
87,852,728
rust
Indicate which version of MSVC Rust was built with
When linking to the CRT on Windows, all code that is statically linked together needs to use the same version of the CRT. Different versions of the CRT (aka they have different DLL names) are not ABI compatible, so `msvcrt120.dll` and `msvcrt110.dll` are not ABI compatible. In particular, almost all Rust code links sta...
O-windows-msvc,C-feature-request
low
Critical
87,878,000
go
x/review/git-codereview: mail must update the reviewer list even if there are no staged changes
mail rejects to update the reviewer list if there are no staged changes. This behaviour is breaking a common use-case where the contributor creates a CL with no reviewers, review his/her changes on Gerrit and add reviewers. Allow mail subcommand to update the reviewers list even if there are no changes.
NeedsInvestigation
low
Minor
87,994,819
TypeScript
Explicit any type in for..in loop
For the reason of consistency, it should be possible to explicitly annotate the iterator variable at least with the "any" type in a for..in loop. *Edit from @sandersn: Fixes should apply to JSDoc too: https://github.com/microsoft/TypeScript/issues/43756, and perhaps allow annotations on `for .. of` too*
Suggestion,Awaiting More Feedback
high
Critical
88,488,946
youtube-dl
Glomdalen.no (site-support-request)
Hello! Thank you for a great service. I would be really happy if you would add support for Glomdalen.no. Here is an example: http://www.glomdalen.no/tv/er-dette-offside-5-19-69221.html I think this is similar to other newspapers, such as ba.no, which I believe you support, but I couldn't find a way to make it work fo...
site-support-request
low
Minor
88,657,568
rust
Add optional iterations output to libtest benchmark
The `ns / iter` output of libtest's benchmarking harness can hide subtle differences for fast operations (also for some programs you just want to measure throughput). Could we have an option to output the number of iterations per second instead? I note that `src/libtest/lib.rs` has a `fn ns_per_iter(&mut self)` which ...
C-enhancement,A-libtest
low
Minor
88,745,082
TypeScript
Intellisense behaviour of functions and parameters
Some odd/unintuitive Intellisense behaviour: ``` typescript /** * Function description A * @param name Parameter description A */ function uniqueName(name: string): string { } export const Uid = { /** * Function description B * @param name Parameter description B */ uniqueName }; ``` The in...
Suggestion,Help Wanted,VS Code Tracked,Experience Enhancement
low
Minor
88,854,146
rust
Clarify story on libm bindings
Currently the f32 and f64 types provide a number of functions that are just bindings to libm (e.g. trigonometric functions). There are many unbound functions, however (see https://github.com/rust-lang/rust/pull/25780 for some), which can in theory be added over time. It's unclear, however, whether we want to continue t...
C-tracking-issue,T-libs,A-floating-point,Libs-Tracked
low
Major
89,075,655
go
cmd/go: "go list" option to display accumulated cgo LDFLAGS for -buildmode=c-archive/c-shared
Trying to build a simple Go library that spins up an `http.Server` from a call in C, but it fails to compile the C against the produced library object. Similar examples without involving `http` work just fine. ``` $ go version go version devel +a2aaede Wed Jun 17 14:55:39 2015 +0000 darwin/amd64 $ ld -v @(#)PROGRAM:ld...
help wanted,NeedsFix,GoCommand
low
Critical
89,079,880
TypeScript
Bug with resolveClassOrInterfaceMembers
https://github.com/Microsoft/TypeScript/blob/6db4faf4883636e70ef7a99401b9dbc5d1a58631/src/compiler/checker.ts#L2894 ``` interface monster { (a: "a"): void; (b: "b"): void; (c: "c"): void; (d: "d"): void; (e: "e"): void; (x: string): void; } interface m1 extends monster { a(); } interface m...
Suggestion,Help Wanted
low
Critical
89,172,088
go
os: TestStartProcess and TestHostname fail on android
See http://build.golang.org/log/8f8c15bb002fa2ba25799e34e155095462700a47 ``` go_android_exec: adb shell mkdir -p /data/local/tmp/os.test-7203 go_android_exec: adb push /tmp/go-build611040176/os/_test/os.test /data/local/tmp/os.test-7203/os.test-7203-tmp 199 KB/s (2565204 bytes in 12.544s) go_android_exec: adb shell cp...
OS-Android
low
Minor
89,188,732
You-Dont-Know-JS
"this & object prototypes": ch2 issue about polyfill of Function.prototype.bind()
The snippet in the polyfill of Function.prototype.bind() : ``` this instanceof fNOP && oThis ? this : oThis ``` I cannot really understand why still need `&& oThis` even though `this instanceof fNOP` already indicate that the function invoked with `new` operater. I try this polyfill with below snippet ``` function...
for second edition
low
Minor
89,199,826
react
Use Inline Event Handlers for trapBubbledEventsLocal and the iOS Safari Click Hack
We currently do a lot of work at the end of mount to find all the nodes and attach listeners after the fact. This is severely impacting initial rendering performance of `<form />`, `<img />` and click handlers. Instead we can just use inline event handlers in the innerHTML string. For the iOS Safari hack it should be ...
Type: Enhancement,Component: DOM,React Core Team
medium
Critical
89,261,661
youtube-dl
RSS feed parser doesn't respect --dateafter
I'm running: `youtube-dl --dateafter now-5day http://www.escapistmagazine.com/rss/videos/list/1.xml` Which correctly gets the most recent video, however it then proceeds to get the next 50 videos from the RSS feed. Would it be possible to implement the --dateafter switch to look at the posted date of the RSS feed?
request
low
Minor
89,274,284
youtube-dl
Brightcove empty playlist
./youtube-dl --verbose http://aptn.ca/blackstone/video/season-1/ [debug] System config: [] [debug] User config: [] [debug] Command-line args: [u'--verbose', u'http://aptn.ca/blackstone/video/season-1/'] [debug] Encodings: locale US-ASCII, fs US-ASCII, out US-ASCII, pref US-ASCII [debug] youtube-dl version 2015.06.15 ...
geo-restricted
low
Critical
89,722,137
youtube-dl
Add option for checking if youtube-dl is outdated
please include an auto update option like Google Chrome which will notify users that an update is available instead of manually checking for an update. This can be achieved by checking for the version information whenever youtubedl is run to download some video.
request
low
Major
89,859,769
neovim
External programs called from :r cannot accept input
Let's say I want to use :r with a command that requires input. For example: ``` :r !gpg -d ~/test.gpg 2>/dev/null ``` On vim, this would decrypt the file `test.gpg` and put its contents into the buffer. The [vim-gnupg](https://github.com/jamessan/vim-gnupg) plugin uses this behaviour to allow transparent editing of G...
enhancement
low
Minor
90,106,326
kubernetes
Generalize prevention of accidental deletion / mutation
PR #9975 added hardcoded protection of the default namespace to the Lifecycle admission controller. This mechanism at least needs to be configurable, since Openshift and Kubernetes have additional infrastructure namespaces they'd like to protect. However, it also needs to be possible to remove the protection to shut do...
priority/important-soon,area/api,sig/api-machinery,kind/feature,area/teardown,lifecycle/frozen
medium
Critical
90,143,098
youtube-dl
"enseignemoi.com" support
Hi, can you please add support for "enseignemoi.com" : $ youtube-dl -v http://www.enseignemoi.com/mamadou-karambiri/video/l-adoration-5571.html [debug] System config: [] [debug] User config: [u'--ignore-errors', u'--continue', u'-o', u'%(title)s__%(format_id)s__%(id)s.%(ext)s', u'-f', u'mp4/flv', u'--add-metadata', u...
site-support-request
low
Critical
90,145,389
rust
Installer on OS X displays wrong install sizes
![image](https://cloud.githubusercontent.com/assets/9854/8286728/3347b52e-18d9-11e5-863b-f8e732b329db.png) Installing on OS X goes well, in general, but there is a minor problem: the sizes quoted for installation of the compiler, Cargo, and of the documentation are all Zero KB.
O-macos,E-help-wanted,C-bug
low
Minor
90,170,536
go
cmd/vet, go/types: make it easier to handle architecture-dependent constant values correctly
CL 11252 introduces a vet check for integer comparisons. It has false positives when checking code like `u > uint64(^uintptr(0))` where u is a `uint64`. This expression is always false when compiled for 64 bit machines but not for 32 bit machines. IIRC, something similar occurred for the suspicious shift vet check. It...
Analysis
low
Minor
90,352,102
youtube-dl
Feature request: use ffprobe/avprobe to fetch extra metadata for use in _sort_formats
Hi, I have noticed that the "-f bestaudio" does not really download the best audio quality : $ youtube-dl --ignore-config -o "%(title)s__%(format_id)s__%(id)s.%(ext)s" -f bestaudio --restrict-filenames https://www.youtube.com/watch?v=NLYggpNyQuo [youtube] NLYggpNyQuo: Downloading webpage [youtube] NLYggpNyQuo: Extra...
request
low
Major
90,355,339
youtube-dl
Feature : Please add a command line option (--no-OPTION) to disable one parameter already set in the "youtube-dl.conf" file (--OPTION value).
Hi, I have the "--embed-thumbnail" option set in my "youtube-dl.conf". The problem is when I download the audio of a youtube stream, youtube-dl embeds the thumbnail but I don't want the thumbnails in my audio files otherwise my hardware won't be to play them, see the last line of this output : $ youtube-dl -f best ...
request
low
Minor
90,403,555
youtube-dl
[Suggestion] Please add an option to skip starting segments together with --hls-prefer-native
Downloading seems to be segment-by-segment with the experimental --hls-prefer-native option, it could be very convenient if there is an additional option to control over the starting segment number so that one can choose to record partial footage from a lengthy youtube video.
request
low
Minor
90,462,920
java-design-patterns
Blackboard architectural pattern
### Description: Implement the Blackboard design pattern in the project. The Blackboard pattern is an architectural pattern used in situations where multiple subsystems need to collaborate to solve a problem that is beyond the individual capabilities or knowledge of each subsystem. The main elements of the Blackboard ...
info: help wanted,epic: pattern,type: feature
low
Major
90,463,980
java-design-patterns
Binding Properties pattern
### Description The Binding Properties design pattern is used to synchronize state between different components or objects in a system, ensuring that changes in one part are automatically reflected in another. This pattern is particularly useful in scenarios involving UI components and their underlying data models, whe...
epic: pattern,type: feature
low
Major
90,464,655
java-design-patterns
Join pattern
**Description:** The Join design pattern allows multiple concurrent processes or threads to be synchronized such that they all must complete before any subsequent tasks can proceed. This pattern is particularly useful in scenarios where tasks can be executed in parallel but the subsequent tasks must wait for the comple...
epic: pattern,type: feature
low
Major
90,465,618
java-design-patterns
Scheduler pattern
### Description The Scheduler design pattern is a behavioral pattern used to manage the execution of tasks. This pattern is particularly useful in scenarios where tasks need to be executed at specific intervals or under specific conditions. The Scheduler pattern typically involves a scheduler component that manages tas...
epic: pattern,type: feature
medium
Major
90,466,561
java-design-patterns
Proactor pattern
**Description:** The Proactor design pattern is an asynchronous programming pattern used to efficiently handle multiple concurrent operations. In this pattern, the application initiates asynchronous operations and a separate handler (the Proactor) deals with the completion of these operations. The Proactor pattern is u...
epic: pattern,type: feature
low
Major
90,466,794
java-design-patterns
Active Record pattern
### Description The Active Record design pattern is a common architectural pattern used to manage database records. It simplifies data access by encapsulating the database logic within a model class. Each instance of the model corresponds to a row in the database, and the model class includes methods for CRUD (Create, ...
info: help wanted,epic: pattern,type: feature,status: stale
medium
Major
90,471,713
java-design-patterns
Facet pattern
### Description: The Facet design pattern is used to represent different aspects or views of an object, allowing an object to expose multiple interfaces that reflect different facets of its functionality. This pattern is useful in situations where an object needs to be interacted with in various ways depending on the c...
epic: pattern,type: feature
low
Major
90,557,984
go
tour: add a thorough discussion of the io interfaces
We ask the reader to implement an `io.Reader`, but it doesn't actually read from anything. It can be hard to see why this is a "Reader", or indeed what a "Reader" is. I think we need more detail on this topic.
help wanted
low
Minor
90,644,323
youtube-dl
f4m and hls using the external downloader
i'm asking if it is possible to make f4m and hls downloading the segments using the external downloader if the --externl-downloader option is used. as i see in the code the F4mFD is using HttpFD and the NativeHlsFD use the compat_urllib_request. it even possible to share the downloading part of the HlsFD and NativeHlsF...
request
low
Major
90,750,723
go
x/review/git-codereview: provide better error message when upstream is not set
When a branch's upstream is not set, the error message is cryptic. This just happened to me as a consequence of switching branches before mailing a CL. Here's a sample bash transcript to illustrate the issue and to provide a fix for any issue spelunkers who find this in the meantime. ``` bash $ # do work $ git change ...
NeedsInvestigation
low
Critical
90,780,088
go
x/image/tiff: index out of range
The following program: ``` go package main import ( "bytes" "golang.org/x/image/tiff" "io/ioutil" "os" ) func main() { data, _ := ioutil.ReadFile(os.Args[1]) tiff.Decode(bytes.NewReader(data)) } ``` on this file: https://drive.google.com/file/d/0B20Uwp8Hs1oCdDhyRzAwbE5qc2M/view?usp=sharing c...
help wanted,NeedsInvestigation
low
Critical
91,159,894
go
x/image/tiff: invalid format: wrong number of samples for RGB
[This tiff file](https://drive.google.com/file/d/0BwZPvI8DfSonTi00TVVQa3J3TFU/view?usp=sharing) can't be decoded using "golang.org/x/image/tiff". It give out following error message: ``` tiff: invalid format: wrong number of samples for RGB ``` Test program: ``` go package main import ( "bytes" "io/...
NeedsInvestigation
low
Critical
91,278,509
go
x/image/draw: color space-correct interpolation
The BiLinear and CatmullRom interpolators assume the luminance of the source image's color space is linear. But the vast majority of images are in the sRGB color space, which has a highly non-linear luminance curve. As a result, scaled images can look quite different from the source image. For example, on a reasonably...
Suggested
medium
Major
91,319,948
go
runtime: document P states
P states follow complex and largely undocumented rules. https://go-review.googlesource.com/10158 took a stab at documenting one of these rules, but it was just a band-aid on a bigger problem. @rsc wrote a big explanation, but Gerrit ate it. We should document these properly.
Documentation,NeedsInvestigation,compiler/runtime
low
Minor
91,429,687
youtube-dl
Add support for HLS WebVTT subtitles
JSON dumps of CICGC URLs already include a link to sliced English subtitles in WebVTT format that could easily be downloaded using ffmpeg. It would be nice if the ComCarCoff extractor was able to detect these.
subtitles
low
Major
91,444,575
youtube-dl
PMC Add Support
example URL: http://pmc.tv/pouya-nadidanet-sakhte/
site-support-request
low
Minor
91,516,092
youtube-dl
Request: Full Character Support under Compliant Filesystems
When downloading videos with characters typically unsupported under NTFS, and similarly handling file systems, titles of videos with characters like **? < > \ : \* | "** , have their contents replaced with safe characters - this handling can be disregarded on many non-Windows, except for the fringe cases of **NUL** an...
request
low
Major
91,665,192
go
x/net/webdav: TestDir fails on Plan 9
See http://build.golang.org/log/86c5f54b2e864b4a89f8756c4c069739fb314cc9 ``` --- FAIL: TestDir (0.00s) file_test.go:501: test case #7 "mk-dir /a want errExist": got "ok" (<nil>), want "errExist" FAIL FAIL golang.org/x/net/webdav 1.019s ```
Testing,OS-Plan9,NeedsInvestigation
low
Major