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 |
|---|---|---|---|---|---|---|
68,049,852 | go | cmd/compile: inefficient increment of global array | go version devel +a02d925 Sun Apr 12 12:14:36 2015 +0300 linux/amd64
Program is:
``` go
var tab *[256]byte
func foo(i int) {
tab[i&255]++
}
```
Currently it is compiled to:
```
0000000000400c30 <main.foo>:
400c30: 64 48 8b 0c 25 f8 ff mov %fs:0xfffffffffffffff8,%rcx
400c37: ff ff
400c3... | compiler/runtime | low | Major |
68,056,970 | neovim | Improve 'langmap', non-English keyboards | Hello, NeoVim team
I am a Vim user with a non-English keyboard layout and I wonder if it would be possible to fix things in NeoVim. Is this even possible? I don't know if a terminal is able to register `ctrl` + `key` as two different keys, or if they get lumped into one control character. I know that at least my OS ca... | ux | medium | Critical |
68,166,959 | go | x/mobile: update the basic example with a viewport | The basic example is not reacting device orientation changes well. Use a clipping viewport and update its width and height as the device returns or the screen size alters.
| mobile | low | Minor |
68,221,242 | go | misc/ios: go_darwin_arm_exec copies too much | When run from iostest.bash, go_darwin_arm_exec copies the src directory, which includes e.g. run.rc. It'd be good to make it more selective in what it copies.
I may try to fix at some point, but I'm still fighting codesigning.
/cc @crawshaw @minux
| OS-Darwin,mobile | low | Minor |
68,239,044 | go | image/jpeg: add options to partially decode or tolerantly decode invalid images? | `go version devel +ce43e1f Mon Apr 13 23:27:35 2015 +0000 linux/amd64`
Attempted to use `jpeg.Decode` on the below image:
https://streamcoimg-a.akamaihd.net/000/340/810/9ae536dd97d2d92fc17a6590509a51c0.jpg
Expected the image to decode successfully, as it displays in a browser.
Actual result:
`invalid JPEG format: sh... | NeedsDecision,FeatureRequest | medium | Critical |
68,246,824 | go | x/mobile/event: touch events should be timestamped | Touch events should be timestamped to determine the order. Order is critical to determine the direction and the speed of the gesture.
cc/ @crawshaw @hyangah
| mobile | low | Minor |
68,474,867 | go | spec: panicking corner-case semantics | A few corner-cases regarding panicking that I noticed in the Go spec:
**1)** What happens if a panic occurs while a goroutine is already panicking?
Gc/gccgo seem to allow recursive panicking and recovering: http://play.golang.org/p/tBkwgyzmuT
But if a deferred function panics without any recovery, then the original ... | NeedsInvestigation | low | Minor |
68,522,032 | kubernetes | kubectl convert should not add empty values, creationTimestamp, or status | I've recently starting using the `kube-version-change` command to convert some k8s configs and get the results below. I'm wondering if it would be better if we omitted empty values, status, and fields like `creationTimestamp`
### Before:
```
{
"id": "pgview-stable-v1",
"kind": "ReplicationController",
"api... | priority/backlog,area/kubectl,sig/api-machinery,lifecycle/frozen | low | Major |
68,538,498 | youtube-dl | Support for NYU videos | My university uses Mediasite player to host video lectures. The videos can be manually downloaded by pulling a link from a javascript file that is referenced in the HTML in script tags.
The system is set up exactly as with the existing Sandia extractor, with the exception that one must login via [Shibboleth](https://w... | site-support-request,account-needed | low | Critical |
68,670,553 | neovim | ZB: command to delete buffer without closing the window | All other solutions I know of are hacks that kinda work (usually by creating a new split and then deleting the buffer in that window, and attempting to cover all possible cases for this), but intrinsic support for this would be greatly appreciated.
| enhancement | medium | Critical |
68,733,001 | go | gdb: Stack pointer is 0 for goroutine 1 | I noted this while writing 53840ad6f19b0c1b27a0731a37341d6159625355, so here is a proper bug report.
This only occurs for goroutine #1, and causes a Python exception. As far as I can tell, it is because for goroutine 1, `pc` is valid but `sp` is 0x0, in `runtime.allgs.sched`. I am not familiar enough with the runtime ... | NeedsInvestigation | low | Critical |
68,783,774 | rust | TLS dtor panics abort the process | Today a destructor in TLS which panics will abort the process:
``` rust
struct Foo;
impl Drop for Foo {
fn drop(&mut self) { panic!() }
}
thread_local!(static FOO: Foo = Foo);
pub fn main() {
FOO.with(|_| {});
}
```
When compiled and run (note that it must be run on a recent system due to #19776):
```
thr... | A-destructors,T-libs-api,A-thread-locals,C-bug | low | Critical |
68,962,647 | youtube-dl | [walla] extractor is not used for "nick.walla.co.il" | Trying to download "The Legend of Korra" from "http://nick.walla.co.il/" fails (running verbosely):
youtube-dl -v http://nick.walla.co.il/?w=//2578863
[debug] System config: []
[debug] User config: []
[debug] Command-line args: [u'-v', u'http://nick.walla.co.il/?w=//2578863']
[debug] Encodings: locale UTF-8, fs UTF-8,... | site-support-request | low | Critical |
68,968,583 | youtube-dl | Use file extension from --merge-output-format= when remuxing | When --add-metadata or --embed-subs options are used file extension from --merge-output-format= should be used like it is used for muxing DASH videos.
| request | low | Minor |
68,993,278 | go | x/tools/cmd/eg: panic | ```
% cd $GOROOT/src/cmd
% cat t.go
package template
func before() string {
return "foo"
}
func after() string {
return "bar"
}
% eg -t t.go cmd/internal/gc
panic: runtime error: invalid memory address or nil pointer dereference
[signal 0xb code=0x1 addr=0x0 pc=0x4c7a9d]
goroutine 1 [running]:
golan... | Tools,Refactoring | low | Critical |
69,028,757 | youtube-dl | Support for thegnomonworkshop | Can you please add support for http://www.thegnomonworkshop.com/
| site-support-request | low | Minor |
69,206,490 | go | go/build: add the ability to list packages | This arose in the context of [CL 9001](https://go.dev/cl/9001), which @mdempsky wrote:
> Lastly, an alternative approach I was considering was looking into moving cmd/go's package list resolving into go/build (or an internal helper package). Then cmd/api and deps_test.go could simply do something like ctxt.List("std"... | NeedsInvestigation | low | Minor |
69,324,146 | rust | docs for Traits get duplicated because of different types | [f32](http://doc.rust-lang.org/nightly/std/primitive.f32.html#) for example essentially supports traits like `Add` which have multiple copies which aren't duplicates but seem repetitive because they are essentially very similar:
#### Currently:
``` rust
impl Add<f32> for f32
type Output = f32
fn add(self, oth... | T-rustdoc,A-trait-system,C-feature-request,A-rustdoc-ui | low | Minor |
69,362,071 | rust | dead code (+ unused assignment, etc) warnings in macros do more harm than good | (imported from improperly closed bug #17427)
Consider the following code:
``` rust
fn g(x: u8) -> u8 {
1 - x
}
fn main() {
let mut x = 1u8;
macro_rules! m {
() => {{ x = g(x);
if x == 0 { x = 1; }
}}
}
m!();
g(1/x);
m!();
}
```
[playpen](http://is.gd/tUW... | A-lints,P-low,A-macros,T-lang,C-bug | low | Critical |
69,364,150 | rust | Missing docs lint ineffectual in test builds | The `missing_docs` lint does not do anything in test builds. Minimal code example:
``` rust
#![cfg_attr(test, deny(missing_docs))]
```
To reproduce, make a new crate, replace `src/lib.rs` with the above code, and run `cargo test`. The command will run successfully. I would expect the command to report a “missing docu... | A-lints,C-bug | low | Critical |
69,450,652 | neovim | api/ui: externalize window layout | In order to build a GUI client that does its own window management, we need Neovim to provide changes per window. It seems like today the server assumes the client has one big window/canvas and it tells what text to put where. This is not ideal if we want to create native windows. For e.g., let's say we have neovim.app... | enhancement,api,ui,channels-rpc,ui-extensibility | low | Major |
69,736,355 | youtube-dl | [REQUEST] --write-single-json argument | I think it would be helpful for there to be a version of --dump-single-json that wrote the progress to the STDOUT like normal downloading operations, but wrote the JSON file to disk like --write-info-json. This would essentially be --write-info-json for playlists and channels. I am currently writing a website that will... | request | low | Minor |
69,740,501 | rust | Separate unstable feature errors from other lints in output | When an unstable feature is used in a crate, and an error is emitted, it will sometimes (always?) be emitted before other lints (e.g. unused_*, dead_code). This causes the compilation error to be functionally lost in the compile output.
Example:
```
warning: ignoring specified output filename because multiple outputs... | A-lints,T-compiler,C-feature-request | low | Critical |
69,845,863 | youtube-dl | bestvideo doesn't always select best video | For this video:
https://www.youtube.com/watch?v=InxwGZ_PgC4
`-f bestvideo[ext=mp4]+bestaudio` downloads 240p version (while there is 1080p available)
```
$ youtube-dl -F https://www.youtube.com/watch?v=InxwGZ_PgC4
[youtube] InxwGZ_PgC4: Downloading webpage
[youtube] InxwGZ_PgC4: Extracting video information
WARNING: v... | bug | low | Minor |
69,875,397 | kubernetes | Proposal: Long term evolution of runtime.Scheme / conversion.Scheme | Continued from https://github.com/GoogleCloudPlatform/kubernetes/issues/2306
A runtime.Scheme combines a few concepts:
- A registry of APIVersion -> Kind string -> Go object
- A library of conversion routines which includes APIVersion -> Go object as well as Go object -> Go object
- An encoding mechanism based around ... | area/api,area/apiserver,sig/api-machinery,kind/feature,priority/important-longterm,lifecycle/frozen | medium | Critical |
69,899,534 | TypeScript | TSServer: 'quickInfo' request should return symbol display parts as completion does | That would allow for a nice formatting in the UI and makes the overall API more consistence.
| Suggestion,Help Wanted,Effort: Moderate,VS Code Tracked | low | Major |
69,946,291 | go | net: concurrent Accept-Close with no timeout on TCPListener defers closing underlying socket | Go version: go1.4.2
OS: Linux 3.13 x86_64
The following test demonstrates what I consider a bug:
``` go
package foo
import (
"log"
"net"
"testing"
)
const addr = "127.0.0.1:12345"
func TestXxx(t *testing.T) {
for i := 0; i < 100000; i++ {
log.Printf("Iteration %d", i+1)
l, err := n... | NeedsInvestigation | low | Critical |
69,987,380 | TypeScript | Port from old compiler code to emit compilation flags into the source map | The 1.0 (or 1.1) compiler emitted the compilation flags into the source map. We added this for hypothetical tooling scenarios, where browser tools could trigger a simple recompilation of a file discovered by a source map, in the case where it was live edited.
This is not a high priority as those scenarios aren't curre... | Suggestion,Help Wanted | low | Minor |
69,987,898 | TypeScript | Port from old compiler code to emit identifier renames into source map | The previous (1.0 or 1.1) compiler emitted a table of identifier renames into the source map. Principally this was for renames of "this" into "_this". The IE developer tools used this to make this scenario work
- User is debugging Typescript in the IE tools -- Typescript was discovered by source map
- User hovers over ... | Bug | medium | Critical |
70,103,485 | rust | rustdoc: `Methods from Deref<Target = T<U>>` is imprecise (contains false positives) | ``` rust
use std::ops::Deref;
pub struct Foo<T>(T);
impl Foo<i32> {
pub fn get_i32(&self) -> i32 { self.0 }
}
impl Foo<u32> {
pub fn get_u32(&self) -> u32 { self.0 }
}
pub struct Bar(Foo<i32>);
impl Deref for Bar {
type Target = Foo<i32>;
fn deref(&self) -> &Foo<i32> {
&self.0
}
}
```
The ... | T-rustdoc,A-trait-system,C-bug | low | Major |
70,134,972 | nvm | bash --login -c 'nvm list' does not work while it should | I wonder how to run nvm/node/npm in a login shell mode. For some reason `bash --login -c 'nvm list'` does not work, while the same thing with rvm works.
This issue is cross-referenced to https://github.com/rocketeers/rocketeer/issues/507
Here is some additional commands output:
```
user@123:~$ rvm list
rvm rubies
... | installing nvm: profile detection | low | Major |
70,164,161 | go | x/net/html: void element <link> has child nodes | The following program crashes:
``` go
package main
import (
"golang.org/x/net/html"
"io/ioutil"
"strings"
)
func main() {
nodes, err := html.ParseFragment(strings.NewReader("<svg ><link >0"), nil)
if err != nil {
return
}
for _, n := range nodes {
if err := html.Render(iou... | NeedsInvestigation | low | Critical |
70,283,741 | go | runtime: should traceTickDiv be different for different architectures? | It's documented that "Timestamps in trace are cputicks/traceTickDiv. “ and
that "64 is somewhat arbitrary (one tick is ~20ns on a 3GHz machine)."
That is ok for x86 cpus, where cputicks increment by 1 each cpu clock cycle,
but on ppc64x, the cputicks might be increasing only at bus frequency.
(For example, on PowerPC ... | compiler/runtime | low | Major |
70,325,245 | thefuck | Doesn't handle pipes | It looks like `fuck` doesn't handle pipes well. If I try to do this in Bash:
``` bash
$ pss -ef | grep foo
-bash: pss: command not found
$ fuck
ps -ef | grep foo
ps: illegal argument: |
usage: ps [-AaCcEefhjlMmrSTvwXx] [-O fmt | -o fmt] [-G gid[,gid...]]
[-g grp[,grp...]] [-u [uid,uid...]]
[-p pid[... | enhancement,help wanted | low | Major |
70,560,585 | TypeScript | Add Support for design-time decorators | Now that decorators are supported in TypeScript (#2249), consider adding support for ambient/design-time-only decorators:
Ambient decorators can be an extensible way to declare properties on or associate special behavior to declarations; design time tools can leverage these associations to produce errors or produce do... | Suggestion,In Discussion | high | Critical |
70,658,910 | go | go/printer: force multiline literal to end with } on line by itself | - What version of Go are you using (go version)?
`go version go1.4.1 linux/amd64`
- What operating system and processor architecture are you using?
`Linux` on `amd64`
- What did you do?
running `gofmt -w` on code at http://play.golang.org/p/588xSKFhg1
- What did you expect to see?
I expect to see `b: 2` th... | NeedsInvestigation | medium | Major |
70,854,863 | kubernetes | Create per-object sequence number and report last value seen in status of each object | It's hard to write race-free clients without knowing whether controllers have observed mutations. Controllers should report the most recent resourceVersion seen in status when they post status. Just returning it in responses (#1184) is not sufficient.
An example problem:
https://github.com/GoogleCloudPlatform/kubernet... | priority/backlog,area/api,sig/api-machinery,sig/apps,lifecycle/frozen | medium | Major |
71,055,866 | youtube-dl | Site Support Request: http://www.Mundofox.com/ | http://www.Mundofox.com videos (which use ooyala player) don't work. Example: http://www.mundofox.com/videos/episodio-14-21993
```
youtube-dl http://www.mundofox.com/videos/episodio-14-21993 -v
[debug] System config: []
[debug] User config: []
[debug] Command-line args: [u'http://www.mundofox.com/videos/episodio-14-21... | site-support-request | low | Critical |
71,166,965 | go | go/parse: confusing error message caused by stray comma in struct field | Hit "Format" on http://play.golang.org/p/QX0D-qyFwJ
``` go
package main
type T struct {
a, int
}
```
Result: "prog.go:4:2: expected anonymous field"
| NeedsInvestigation | low | Critical |
71,347,905 | kubernetes | Make rc manager more responsive to unexpected adds/deletes | Currently the rc manager will not respond to unexpected pod creates/deletes till all the creates/deletes it has sent to the apiserver have been observed by the reflector, or a timeout occurs. There are situations where we could land up with:
- Rc goes to sleep till it sees 1 add
- One pod gets deleted <- we want the rc... | area/controller-manager,priority/awaiting-more-evidence,sig/apps,lifecycle/frozen | low | Minor |
71,471,267 | rust | Uninhabited-ness isn't propagated through nesting | This compiles:
``` rust
enum Void {}
fn foo(v: &Void) -> ! {
match *v {
}
}
fn main() {}
```
But this doesn't:
``` rust
enum Void {}
fn foo(v: &Void) -> ! {
match v {
}
}
fn main() {}
```
```
<anon>:4:5: 5:6 error: non-exhaustive patterns: type &Void is non-empty [E0002]
<anon>:4 match v {
<... | A-type-system,T-lang,C-feature-request,T-types | low | Critical |
71,555,421 | rust | Rustdoc considers *const T and *mut T different | https://doc.rust-lang.org/core/ptr/struct.Unique.html
`is_null`, `offset`, and `as_ref` are listed twice. This is confusing and makes the HTML invalid. I'm not sure what's going on here.
| T-rustdoc,C-bug | low | Minor |
71,573,770 | rust | Add opensearch support to doc.rust-lang.org | [Opensearch](http://www.opensearch.org/Home) is a common API to query search engine. It is for instanced used to add search engines to the firefox search bar and to chrome.
It would be nice if doc.rust-lang.org supported opensearch to enable doc search directly from firefox.
cc @steveklabnik
| T-rustdoc,C-enhancement,A-rustdoc-search | low | Major |
71,900,324 | go | build: move list of builder types mostly into code | https://github.com/golang/go/wiki/DashboardBuilders is manually maintained and sometimes goes stale.
I think we should move the descriptions of all new-style coordinator-managed builders into dashboard/builders.go (into a new description field) and then add a new URL like:
http://farmer.golang.org/buildertypes
..... | NeedsInvestigation | low | Minor |
71,914,929 | rust | Associated const references using UFCS can bypass `check_static_recursion` | Currently, `check_static_recursion` is run after `resolve`, but before `typeck`. This made sense before, because after `resolve` it was possible to determine which constants referenced one another, and running before `typeck` ensured that we don't fall into an infinite loop during type checking. However, when referenci... | A-type-system,A-associated-items,T-compiler,C-bug,T-types | low | Critical |
71,923,067 | rust | method call fails to upcast trait objects, resulting in overlong borrows | @SimonSapin encountered an error in servo that I reduced to the following test case http://is.gd/w7HPbJ:
``` rust
pub trait Flow {
fn foo(&self);
}
pub trait LayoutDamageComputation {
fn compute_layout_damage(self);
}
impl<'a> LayoutDamageComputation for &'a mut (Flow + 'a) {
fn compute_layout_damage(sel... | A-type-system,A-lifetimes,P-low,T-lang,C-bug,T-types,A-trait-objects | low | Critical |
71,954,116 | TypeScript | Suggestion: Reopen static and instance side of classes | # Summary
To support both the semantics of subclassing built-ins in ES6 and still allow authors to augment built-ins, we need a mechanism to reopen the static and instance sides of a class.
# Current state
Today we can re-open interfaces, allowing authors to augment built-ins (for example, to support polyfills):
``... | Suggestion,In Discussion | medium | Critical |
72,216,087 | youtube-dl | Extending DASH Stream Merging Support to "Clients" | To avoid hijacking #2124
Can youtube-dl be implemented to allow DASH manifest "pre-demuxing" of some sort in other applications? I know mpv does this somehow but I'm more interested in the youtube-dl side of things as the mpv side of things is offtopic.
| request | low | Major |
72,292,838 | rust | Cannot macro_use a macro that uses an internal macro | For instance, trying to use the [log](https://crates.io/crates/log) crate:
``` rust
#[macro_use(debug)] extern crate log;
fn main() {
debug!("hello");
}
```
Errors with:
```
<log macros>:4:1: 4:4 error: macro undefined: 'log!'
<log macros>:4 log ! ( $ crate:: LogLevel:: Debug , $ ( $ arg ) * ) ; )
```
If you i... | A-macros,C-feature-request | low | Critical |
72,422,535 | youtube-dl | support for ampya? | here a link to test http://www.ampya.com/Tocotronic/Prelistening-Das-rote-Album
| site-support-request | low | Minor |
72,452,956 | go | x/build/cmd/gopherbot: -2 any CLs with large binary blobs unless declared in commit message | See CL 9560 for context.
There will be cases in which it is legit to add a binary file. In such cases, we could do a force commit. Other suggestions welcomed.
**Edit by @dmitshur:** This also happened in [CL 149604](https://golang.org/cl/149604), see #28899. | help wanted,Builders,NeedsInvestigation,FeatureRequest | medium | Major |
72,552,262 | rust | type parameter not constrained when using closure bounds | This works fine:
``` rust
trait Foo {}
impl<F, A> Foo for F where F: Fn() -> A {}
```
But this:
``` rust
trait Foo {}
impl<F, A> Foo for F where F: Fn(A) {}
```
produces a compile error:
```
<anon>:2:9: 2:10 error: the type parameter `A` is not constrained by the impl trait, self type, or predicates [E0207]
<anon>... | C-enhancement,A-diagnostics,T-compiler,D-confusing,D-newcomer-roadblock,F-unboxed_closures | medium | Critical |
72,573,774 | neovim | Use absolute line to display debug info ? | content of `testrc`
```
"Test relative line
func! Test()
let abc = undefined_variable
endf
call Test()
```
run `nvim -u testrc`
```
Error detected while processing function Test:
line 1:
E121: Undefined variable: undefined
E15: Invalid expression: undefined
```
Would Neovim use absolute line to display debu... | enhancement,vimscript | low | Critical |
72,602,697 | You-Dont-Know-JS | "this & object prototypes": ch2, fix misleading code/info | In ch2, "Implicitly Lost", the last example suggests that `setTimeout(..)` causes the `this` to be lost (and thus bound to `window`) because of a theoretical call-site of `fn()`. However, this is not what `setTimeout(..)` actually does. It's verifiable that even if the example in question is run in `strict` mode, `"oop... | for second edition | medium | Major |
72,605,550 | TypeScript | Compile / edit time pluggable analyzers like C# | It would be nice to have similar plugabble compile time / editing time analyzer plugins as [introduced in C# in Build 2015, see the video](http://channel9.msdn.com/Events/Build/2015/3-725).
Analyzer is a library that can do additional syntax checks, tag lines as errors / warnings, and are interpreted by language servi... | Suggestion,Needs Proposal | medium | Critical |
72,617,454 | rust | Overflow with use of `Self` in inherent impl on trait | Code: http://is.gd/zUrIKd
``` rust
pub trait NBTTypeHelper where Self: NBTType {
type Tagtype = Self;
}
pub trait NBTType {
}
impl NBTTypeHelper for NBTType {
type Tagtype = <Self as NBTTypeHelper>::Tagtype;
}
fn main() {}
```
| T-compiler,C-bug,F-associated_type_defaults | low | Major |
72,647,800 | rust | Unable to export not mangled symbol in an executable as libraries can do | trying something like this:
``` rust
#[no_mangle]
pub extern "C" fn foo()
{
//...stuff...
}
```
`foo()` seems to get exported if compiled inside a library, but if compiled in a binary crate it doesn't.
I found this out trying to use gtk builder's "gtk_builder_connect_signals", which requires for not mangled symbo... | A-linkage,A-visibility,C-bug | low | Critical |
72,669,772 | youtube-dl | [nba] Add support for authentication | Attempting to download video from http://watch.nba.com (eg `http://watch.nba.com/nba/games/20150501/ATLBKN/41400106`) resulted in an "unsupported UR" error.
The request was made with appropriate username and password credentials for the resource.
Is support for http://watch.nba.com different to http://nba.com, which ... | site-support-request | low | Critical |
72,712,559 | go | testing: show more benchmark data | There are a variety of analyses that would increase confidence in benchmark data. Package testing should _not_ do them, but it probably should make them possible, by having a mode to emit more data about the benchmark run than just the one number it does today.
@aclements
| NeedsInvestigation | low | Minor |
72,770,499 | youtube-dl | [Generic] Add support for playlists if more than one video is found | Treat a url as a playlist if more than one video url is found. This should be a thing for every url that is handled with the generic video extractor.
| request | low | Major |
72,937,791 | gin | the Catch-All form should not include the "/" before param | As the doc said,
```
r.GET("/user/:name/*action"...
action := c.Params.ByName("action")
```
should return value string of **action**, but in fact it returns **/action** with the slash before param string, which is not correctly & inconvenient.
| enhancement | low | Major |
73,118,469 | TypeScript | Rationalize our presentation and handling of merged/alias symbols in the IDE. | Examples of where we could be better:
1. Quick info for an alias could present information about the alias, as well as information about what the alias points to.
2. Goto-type for a union type could allow you to go to any constituent union-type-element.
3. Goto-def on a merged symbol could allow you to go to any declar... | Suggestion,Help Wanted,API,Domain: Quick Info | low | Minor |
73,160,724 | youtube-dl | Annotations as subtitles | Would it be feasible, using the `lxml` library, to have Youtube-DL find a way to save annotations as subtitles? (Referring mainly to its usage in MPV via the youtube-dl hook, but also for downloading: for example, downloading a video's annotations and muxing them into a WebM as WebVTT or an MKV as ASS/SSA)
I understan... | request | low | Minor |
73,316,759 | rust | "type ... too big for the current architecture" error reported without span pointing to type | e053dfad23515f7020171ae18013b230531a6042 added checks for huge types. These checks are done in middle/trans, but the location of the type is not reported.
For anonymous array types there's no way to extract the span, as the ast-ID is lost.
An example:
``` rust
fn main() {
let _x = [0; 9223372036854775808];
}
```... | E-hard,A-diagnostics,T-compiler,C-bug | low | Critical |
73,329,891 | You-Dont-Know-JS | "this & object prototypes": Chapter 2 Clarification?? | I don't know if this makes sense or not. As I was trying to digest this chapter, I got sent down a rabbit hole when the call stack was mentioned in finding the call-site. I modified the example in the chapter to read like this.:
function baz() {
var a = 1;
// call-stack is: `baz`
// so, our call-site is i... | question,for second edition | low | Minor |
73,418,011 | go | x/build: make GCE buildlet pool quota accounting smarter | The GCE implementation of BuildletPool's quota accounting is way too dumb & conservative.
If it counted better, it could push our quota limits a lot harder.
In fact, it could push things as hard as possible until it hit limits, learn the limits, and then count from there.
Or it could poll quotas? (is there an API?)... | Builders | low | Minor |
73,665,931 | go | x/build: builds waiting on resources shouldn't be in building state | /cc @crawshaw @adg
The reverse BuildletPool impl is cheating a bit or interacting weirdly with the rest of the coordinator: instead of blocking on returning a buildlet, it instead "starts" a bunch of builds even if there's not an idle iPhone available. And then each builds looks like it's in progress on build.golang... | Builders | low | Minor |
73,678,818 | go | x/build: run both root and non-root Linux builders | We should run at least non-root Linux builder to catch tests which accidentally require root.
(but we shouldn't run all builders as non-root, else we'll miss things assuming non-root)
Perhaps we make some existing weird builder also have this role, like linux-386-387, to not add resources or columns. We could rename ... | Builders,FeatureRequest,new-builder | low | Major |
73,737,633 | go | gccgo: does not build on Darwin | Tried building via the procedure documented at https://golang.org/doc/install/gccgo using the gccgo branch. Hit a problem during configure. iant on the IRC informs me that Darwin is currently not supported. Not a blocker, but based on https://sourceware.org/gdb/wiki/GoDebugging the gccgo debugger support is fairly clos... | NeedsInvestigation | low | Critical |
73,741,556 | youtube-dl | Add if statement for output template | I currently use this: `-o "D:\Movies\youtube-dl\%(playlist_index)s.%(title)s-%(id)s.%(ext)s"` but whenever I download a video that's not in a playlist, it gets saved with a filename that starts with `NA.<title>`.
It would help if it was possible to check if some variable exists, like `-o "D:\Movies\youtube-dl\%if(play... | request | low | Minor |
73,805,045 | rust | Order-dependent type inference failure with match | Not sure if this has been reported yet, but it really seems like Rust should be able to do better here.
This also works if we replace the `match` with an `if let` and move the `res` assignment below it.
Note that this is a reduced testcase and therefore contrived, but the original issue can be seen [here](http://www.... | A-type-system,C-enhancement,T-compiler,T-types | low | Critical |
73,807,675 | go | x/tools/refactor: "Extract" features | This is a feature request, not a bug.
It would be nice to have a command that makes it easy to extract methods and functions from code.
Something like: a command that takes a range of code in a file that should be replaced with a function or method call and a name for that function or method (let's just call it "func... | Tools,Refactoring | low | Critical |
73,920,994 | kubernetes | FUSE volumes | I have an use-case where I would like to mount Google Cloud Storage (GCS) bucket (and a directory in that bucket) in my container and use it as a regular FS. Currently, it seems doable using s3fs-fuse (https://github.com/s3fs-fuse/s3fs-fuse) - thanks @brendanburns. It would be great if GCS was supported as a first clas... | priority/awaiting-more-evidence,sig/storage,kind/feature,needs-triage | high | Critical |
74,062,391 | youtube-dl | [vimeo] Support private channels | Hi there!
Some days ago I was able to download Videos from vimeo.com, but now I always get 404 error messages when I try it.
Output is this:
[debug] System config: []
[debug] User config: []
[debug] Command-line args: [u'-f', u'h264-hd', u'-u', u'PRIVATE', u'-p', u'PRIVATE', u'-4', u'https://vimeo.com/channels/90077... | request,account-needed | low | Critical |
74,301,732 | rust | lint “non_upper_case_globals” wrongly warns the consumer | The lint “non_upper_case_globals” wrongly warns the consumer about a ill-named constant ([playpen](http://is.gd/GplrQb)). It only seems to happen if the constant is imported into the current namespace and if you’re using it in a match statement:
``` rust
mod consts {
#![allow(non_upper_case_globals)]
pub const... | A-lints,T-lang,C-bug | low | Major |
74,331,174 | youtube-dl | Add support for http://triathlonlive.tv/ | site-support-request | low | Minor | |
74,420,006 | go | x/mobile/app: app crashes with DeadObjectException on Android | Applications seem to be throwing an exception during pause, makes them crash on resume. The case is consistently reproducible with the basic example.
1. Launch the basic example on an Android device
2. Press back to pause it
3. Bring app to the foreground
Application crashes with the following log.
```
W/ActivityMana... | mobile | low | Critical |
74,420,091 | kubernetes | Run services as non-privileged users | At the moment most services in kubernetes run as root. This includes (from glancing at ps aux on a minion):
- etcd
- kube2sky
- td-agent
- ~~skydns~~ (no longer exists in addons)
- elasticsearch
- ~~heapster~~ (removed in 31fb04fa98e34773e18bd32d5aa4dfc554a9b83e)
It's best practice to use non-root user account... | priority/backlog,area/security,kind/cleanup,sig/apps,help wanted,lifecycle/frozen | medium | Critical |
74,536,402 | rust | Pretty Printing on `*-windows-gnu` broken because .debug_gdb_scripts is not emitted | ```
rustc --version
rustc 1.0.0-beta.2 (e9080ec39 2015-04-16) (built 2015-04-16)
rustc -g main.rs
dumpbin /summary main.exe
Microsoft (R) COFF/PE Dumper Version 14.00.22816.0
Copyright (C) Microsoft Corporation. All rights reserved.
Dump of file main.exe
File Type: EXECUTABLE IMAGE
Summary
1000 .CRT
... | A-debuginfo,P-medium,T-compiler,O-windows-gnu,C-bug,WG-debugging | low | Critical |
74,675,518 | electron | Accelerators should be localized in the menu | Right now, for an accelerator like `Ctrl+F`, Electron shows `Ctrl+F` in the menu while other Windows apps show `Strg+F` on my German system.
Electron shows `Ctrl+F`:

Chrome shows `Strg+F`:

My cli: Using git for windows 1.9.5.msysgit.0 (latest)
Python 3.4.3 on windows.
Also, the require_confirmation setting has been set to True in the current screenshot.
| help wanted,windows | low | Minor |
74,788,587 | neovim | Idea: events for new/closed RPC channels | From gitter:
```
osa1 > my plugin is attached to a running nvim instance using unix socket address,
but how do I get rpc channel created by neovim for my plugin? is there a way to
do that without creating variables etc. in plugin side?
splinterofchaos > @osa1 Every socket connection forms a unique channel.
As an ... | enhancement,api | low | Critical |
74,936,381 | java-design-patterns | Add virtual field pattern | There's a new (I think) pattern called the Virtual field pattern, introduced in Java 8. https://kerflyn.wordpress.com/2012/07/09/java-8-now-you-have-mixins/ Scroll half way through till you find "Another Approach".
| info: help wanted,epic: pattern,type: feature | medium | Major |
75,039,055 | rust | Benchmarks are run when just executing tests, leading to very slooooow tests | In my benchmarks, I generate some non-trivial sized blobs of data. Recently, my regular test runs have been very slow, and I believe it's because the benchmarks are running even when not passing `--bench`
**bench.rs**
``` rust
#![feature(test)]
extern crate test;
use std::iter;
#[bench]
fn slow(b: &mut test::Benche... | I-slow,C-enhancement,C-feature-request,A-libtest,requires-nightly | medium | Critical |
75,706,805 | rust | non-hygienic lifetime-shadowing check can make macros non-modular | non-hygienic lifetime-shadowing check can make macros non-modular
This is sort of related to #24278
Here is some example code ([playpen](http://is.gd/qktKxW))
``` rust
macro_rules! foo {
($m:ident) => {
fn $m<'a>(x: &'a i8) -> i8 { *x }
}
}
struct Foo<'a>(&'a i8);
impl<'a> Foo<'a> {
foo!(bar);
... | A-lifetimes,A-macros,T-compiler,C-bug,A-hygiene | low | Critical |
75,747,842 | TypeScript | Feature Request: F# style Type Provider support? | Could we get support for something like F#'s type providers in the future?
Let me present some use case scenarios for this.. Let's suppose you have a TS project trying to access a REST API, and this REST API uses Swagger or RAML for documentation. Well in this case we could have something like this;
```
var fooClient... | Suggestion,Needs Proposal | high | Critical |
75,827,093 | angular | Can't retrieve attributes of the top-level component | http://plnkr.co/edit/5731Z9N6tQ391gQtfZrA?p=preview
I've been over the documentation 10 times, I've read through the source code, tutorials, the works... and I still can't wrap my head around what I'm doing wrong.
all I want to do is:
``` html
<app myTitle='my awesome title'>
```
and access myTitle from inside ... | area: core,core: di,type: confusing,P4 | high | Critical |
76,149,693 | go | cmd/link: merge dynlib handling for PE/Macho/ELF | The code that ensures that the binaries we create are linked against the right shared libraries is scattered all of the place and handled in inconsistent ways for all the binary formats. Clean this up.
(For Go 1.6, if that wasn't obvious)
| compiler/runtime | low | Minor |
76,452,289 | go | go/doc: comments dropped from interior of interface definition | The go doc output is missing some important comments from the definition of reflect.Type (so is godoc, but maybe go doc can do better). I've added the missing comments, bracketed by **, below. It's dropping anything that doesn't immediately precede a method definition.
```
$ go doc reflect.Type
type Type interface {
... | NeedsFix,early-in-cycle | low | Critical |
76,718,515 | youtube-dl | --get-filename not getting the final filename (was: get filename not working?) | "--get-filename" returns a different name from a normal execution.
~# youtube-dl -o 'test.%(ext)s' --prefer-ffmpeg --get-filename https://www.youtube.com/watch?v=f3gNU0rNIIo
test.webm
:~# youtube-dl -o 'test.%(ext)s' --prefer-ffmpeg https://www.youtube.com/watch?v=f3gNU0rNIIo
[youtube] f3gNU0rNIIo: Downloading webpa... | bug | medium | Major |
76,739,334 | go | cmd/asm: Allow data references to labels in assembly (support for jump tables) | I've noticed a couple comments in Go assembly routines "TODO replace this with a jump table in the future" and when I tried implementing an assembly routine with a jump table I realized why it hasn't been tried yet. The assembler does not support using labels in data, so there's no easy way to construct the jump table.... | compiler/runtime | low | Major |
76,784,126 | youtube-dl | Display JSON for videos with only some regions allowed | ex.:
./youtube-dl -j https://www.youtube.com/watch?v=JTIBV-86Pt0
ERROR: JTIBV-86Pt0: YouTube said: The uploader has not made this video available in your country.
When you look at the page source metas:
`<meta itemprop="regionsAllowed" content="AR,BO,CL,CO,DO,EC,PE,PR,PY,US,UY,VE">`
It would be great if instead of E... | request | low | Critical |
76,914,766 | youtube-dl | add support for Sotheby's | Example URL:
http://www.sothebys.com/content/sothebys/en/news-video/videos/2015/05/seven-artist-records-in-sothebys-contemporary-art-evening-auction.html
~ $
youtube-dl --verbose "http://www.sothebys.com/content/sothebys/en/news-video/videos/2015/05/seven-artist-records-in-sothebys-contemporary-art-evening-auction.ht... | site-support-request | low | Critical |
77,191,917 | neovim | foreground() function definition is empty | The definition of the `foreground()` function is empty (eval.c):
``` c
static void f_foreground(typval_T *argvars, typval_T *rettv)
{
}
```
Although the function is not useful for the default UI on Unix because it is not linked to X11 libraries and, thus, cannot raise the terminal window, it is useful for graphical u... | enhancement,gui | low | Minor |
77,368,144 | youtube-dl | Add support for mako.co.il | link to test: http://www.mako.co.il/mako-vod#/mako-vod-keshet/eretz_nehederet-s12/VOD-3ad468a2e9e3d41006.htm?sCh=de317051b0cfa410&pId=957463908
| site-support-request | low | Minor |
77,925,438 | go | x/tools/cmd/gomvpkg: fails on build problems elsewhere in the GOPATH | Was calling
gomvpkg -from github.com/jmhodges/foobar/baz -to github.com/jmhodges/foobar/quux
and gomvpkg errored out with
```
While scanning Go workspace:
Package "github.com/jmhodges/serve": /Users/jmhodges/src/github.com/jmhodges/serve/serve.go:1:1: expected 'package', found 'IDENT' ypackage.
Package "github.com... | Tools | low | Critical |
78,585,733 | youtube-dl | [youtube] Set Like to videos, which are downloaded. | I suppose people would download videos which they're liked.
So it is easy to send one more request right after video was downloaded to mark it as liked automatically?
Of course add an option key to enable/disable that feature. =]
Thanks a lot for your work.
| request | low | Major |
78,666,610 | rust | Default impls are not restricted to same module (or submodule) as the trait | In the [OIBIT RFC](https://github.com/rust-lang/rfcs/blob/master/text/0019-opt-in-builtin-traits.md) there are two limitations for default impls:
> 1. The default impl must appear in the same module as `Trait` (or a submodule).
> 2. `Trait` must not define any methods.
Limitation (1) does not appear to match the curr... | A-type-system,T-compiler,C-bug,T-types | low | Critical |
78,727,595 | rust | rust-lang repos that do not declare licenses | It came up today that kate-config does not have a license file. I filed a [PR](https://github.com/rust-lang/kate-config/pull/9) to fix that, but there are others.
- [ ] crates.io-index - I'm not sure if this needs a copyright license since it isn't a work of creative expression, but it might still be worth putting s... | P-low,T-core,C-tracking-issue,A-licensing | medium | Critical |
78,744,378 | youtube-dl | [site-support-request] music.naver.com | http://music.naver.com/artist/videoPlayer.nhn?videoId=99476
Support this site, please~
Thanks in advance. :)
| site-support-request | low | Minor |
Subsets and Splits
GitHub Issues Containing Next.js References
Filters training data to find examples mentioning "next.js", providing basic keyword search capability but offering limited analytical value beyond simple retrieval.