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 |
|---|---|---|---|---|---|---|
203,829,854 | youtube-dl | Add support for Adobe Pass Auth TV provider Frontier Communications | ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.01.28*. If it's not read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected.
- [X] I've **verified** ... | tv-provider-account-needed | low | Critical |
203,830,190 | rust | Non-upper case constant warning misapplied in patterns | A constant with `#[allow(non_upper_case_globals)]` applied still generates a warning when used in a pattern, unless the `match` also has the allow attribute. For example:
```rust
#[allow(non_upper_case_globals)]
mod keywords {
pub const If: u32 = 0;
pub const While: u32 = 1;
}
fn main() {
use ke... | A-lints,I-needs-decision,T-compiler,C-bug | low | Major |
203,853,311 | pytorch | Add Peephole connections for LSTMs? | From this [paper](http://www.jmlr.org/papers/volume3/gers02a/gers02a.pdf). Peephole connections seem to help in learning precise timings of events. | feature,triaged,Stale | medium | Major |
203,865,042 | youtube-dl | Lynda.com: Add support for extraction of "release-date" & "update-date" html elements | [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.01.28**
[x] [Searched](https://github.com/rg3/youtube-dl/search?type=Issues) the bugtracker for similar issues including closed ones
### What is the purpose of your *issue*?
- [x] Feature request (request for a new functionality)
Hi there... | request | low | Critical |
203,882,473 | go | x/net/webdav: PROPFIND fails on OpenBSD if the directory has a unix domain socket in it | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
1.7.4
### What operating system and processor architecture are you using (`go env`)?
openbsd/amd64
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="openbsd"
GOOS="openbsd"
... | OS-OpenBSD | low | Critical |
203,886,342 | pytorch | Feature Request: NegativeSampling and HierarchicalSoftmax loss functions | It's a bit difficult to write a SkipGram word2vec model without these functions.
Not entirely sure, but the Chainer implementations for [NegativeSampling](https://github.com/pfnet/chainer/blob/master/chainer/links/loss/negative_sampling.py) and [HierarchicalSoftmax](https://github.com/pfnet/chainer/blob/master/chain... | feature,module: nn,module: loss,triaged,Stale,module: primTorch | low | Major |
203,909,573 | youtube-dl | Please add support for Playstation Vue logins | ## 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
---
... | tv-provider-account-needed | low | Critical |
203,915,519 | rust | resolve: improve diagnostics for a single `super` at the crate root | For example,
```rust
fn main() {
let super = 0;
// ^^^^^ Ideally, the error here would be something like:
// - "the root module has not parent"
// - "`super` is not allowed in the crate root"
}
``` | C-enhancement,A-diagnostics,A-resolve,T-compiler | low | Critical |
204,071,120 | angular | Ngclass value not updating if form input field has errors. It seems to be one tick behind. | <!--
IF YOU DON'T FILL OUT THE FOLLOWING INFORMATION WE MIGHT CLOSE YOUR ISSUE WITHOUT INVESTIGATING
-->
**I'm submitting a ...** (check one with "x")
```
[x ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support reques... | type: bug/fix,freq3: high,area: forms,state: confirmed,core: change detection,P3 | low | Critical |
204,109,326 | go | go/doc: enable grouping of functions with common names and suffix N | Suggested by @griesemer in another proposal: https://github.com/golang/go/issues/18616#issuecomment-275761203.
An example of the proposed before and after output, for a series of functions called `TrailingZeros` with integer sizes "N" as a suffix:
Before:
```
// TrailingZeros16 returns the number of trailing ... | NeedsInvestigation | low | Major |
204,121,745 | rust | Tracking issue: declarative macros 2.0 | Tracking issue for declarative macros 2.0 (aka `macro` aka decl_macro aka macros-by-example).
RFC: https://github.com/rust-lang/rfcs/blob/master/text/1584-macros.md
RFC PR: https://github.com/rust-lang/rfcs/pull/1584
cc @rust-lang/compiler
---
### About tracking issues
Tracking issues are used to rec... | B-RFC-approved,A-macros,T-lang,B-unstable,C-tracking-issue,F-decl_macro,S-tracking-design-concerns | high | Critical |
204,128,640 | youtube-dl | Help adding DISH adobe support | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like that [x])
- Use *Preview* tab to see how your issue will actually look like
---
... | tv-provider-account-needed | medium | Critical |
204,250,273 | vscode | Copy line does not work properly with multi-cursor | <!-- Do you have a question? Please ask it on http://stackoverflow.com/questions/tagged/vscode -->
- VSCode Version: 1.8.1
- OS Version: OSX El Capitan 10.11.6
Steps to Reproduce:
1 .Invoke the "Insert cursor below" or "Inser cursor above" command.
2. Invoke the "Copy line (empty selection)" command.
3. Pas... | feature-request,editor-multicursor | low | Minor |
204,414,915 | neovim | Mixed languages in intro-screen: type (engl.) vs Tippe (german) | 
- `nvim --version`:
NVIM 0.1.7
Build type: Release
Compilation: /usr/bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -Wconversion -O2 -DNDEBUG -DDISABLE_LOG -Wal... | localization | low | Critical |
204,416,638 | TypeScript | Expose ts.matchFiles as public API to make implementing readDirectory easier. | Problem:
When implementing a custom host that virtualizes the file system, the `readDirectory` method is cumbersome to implement in a way that matches tsc behavior.
If you look at the hosts within typescript, the `matchFiles` method was added to unify behavior with `readDirectory` between hosts.
While `matchFi... | Suggestion,Help Wanted,API,Experience Enhancement | low | Major |
204,419,412 | go | proposal: reflect/v2: make Value uncomparable | Comparing two `Value` type does not do what the user expects. The type is documented as such:
> Using == on two Values does not compare the underlying values they represent, but rather the contents of the Value structs. To compare two Values, compare the results of the Interface method.
However, it is still commo... | v2,Proposal | low | Major |
204,458,667 | TypeScript | JSDoc syntax highlight. Not supported type '...*' | _From @IgorNovozhilov on November 9, 2016 11:2_
- VSCode Version:

- OS Version: win7 pro
Steps to Reproduce:
I'm used a Google Closure-Type notation:
https://github.com/google/closure-compiler/wi... | Bug,VS Code Tracked,Domain: JSDoc | low | Minor |
204,478,930 | rust | rustdoc: types used in exported type definitions are not documented. | When I generate docs via `cargo doc`, types used in type definitions are not documented. This is a problem when a module exports a type definition but not the types on which it is based, because even though the type definition is documented, it is entirely opaque.
For example:
```
pub mod foo {
mod bar {
... | T-rustdoc,C-bug,A-reachable-priv | low | Minor |
204,498,837 | TypeScript | Can't extend mixin constructor that constructs a generic type | This applies regardless of whether or not I intersect it with some bogus type, or have a reasonable constraint. So none of the following works.
**Returning a plain `T`**
```ts
export type Constructor<T> = new (...args: any[]) => T
export interface Timestamp {
timestamp: Date;
}
// plain old T
export... | Suggestion,In Discussion | low | Major |
204,608,573 | go | os: `Process` finalizer should wait for process on Unix systems | The os package sets a finalizer on all `Process` values. Currently, on Unix, that finalizer does nothing useful. It should probably call `wait` on the process if that has not already been done, to remove the otherwise zombie process. | NeedsDecision | low | Minor |
204,676,210 | TypeScript | Compiler should complain about implicit return value of child class constructor, if it does not satisfy child class type | **TypeScript Version:** 2.1.5
Since TypeScript 2.1 (due to #7574) the return value of a constructor call is the return value of the super constructor. So that
```typescript
class Child extends Base {}
```
is compiled to
```javascript
function Child() {
return _super !== null && _super.apply(this, argume... | Suggestion,Awaiting More Feedback | low | Critical |
204,704,169 | TypeScript | [typings installer] ensure that installed @types packages are supported by the current version of the TypeScript | If user have installed `@types` package using i.e. TypeScript 2.2 and then moved back to TypeScript 2.1 (via `tsdk` setting) it is possible that installed packages has some syntactic features that are now supported in the older versions of the compiler. Typings installer should detect such cases and updated installed p... | Bug | low | Minor |
204,709,183 | vscode | [folding] show folding lines | I would like to see more options with code folding and with bracket matching.
It seems the user base is quite split on how they want the collapsed region to display, so I think this should be a user configuration setting along with the other features listed.
### Feature Requests
1. Collapse fold to a single line [... | feature-request,editor-folding | medium | Major |
204,748,518 | flutter | Proposal: find.widgetWithText should return one widget instead of two if the widget has two children with the text given | I'm describing the situation like this,
```dart
new Row(children: [new Text('foo'), new Text('foo')]);
```
If I call `find.widgetWithText('foo')`, I expect `findsOneWidget`. But currently it finds two. Because two text widgets are found first and then trace the ancestors of they two. For both text widgets, the same... | a: tests,framework,c: proposal,P2,team-framework,triaged-framework | low | Minor |
204,757,567 | go | x/net/http2: make Transport check whether a GET Request.Body has any bytes before sending stream? | ### What version of Go are you using (`go version`)?
go version go1.7.5 darwin/amd64 (also tested on linux)
### What operating system and processor architecture are you using (`go env`)?
```
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
GOPATH="/Users/kalbasit/code"
GO... | NeedsInvestigation | low | Critical |
204,944,224 | three.js | AudioLoader and LoadingManager onLoad Race | ##### Description of the problem
`AudioLoader` calls `scope.manager.itemEnd` (through the file loader) after loading the buffer, but its own `onLoad` after decoding it. Since decoding the buffer is asynchronous (or at least, has a callback) you can get into a race condition if the audio loader is the last loader in... | Bug,Loaders | low | Minor |
204,998,706 | vscode | Add action to show inline all diagnostics in file. | `F8` and `Shift + F8` navigation between diagnostic is really nice but sometimes it would be useful to have nice view of all diagnostics in current file.
Looks like it would be fairly simple to implement, just one additional editor action in https://github.com/Microsoft/vscode/blob/2a40036dbb34aac4f5aefbe999c21f2ea... | feature-request,editor-contrib,languages-diagnostics | medium | Critical |
205,028,116 | TypeScript | Doc comment applied to all components of dotted namespace declaration | **TypeScript Version:** 2.1.5, 2.2-rc
**Code**
```ts
/** Performance measurements for the compiler. */
namespace ts.performance {}
```
**Expected behavior:**
The doc comment should show up in quickinfo/completion for references to the innermost declared namespace `performance`, but not for `ts`.
**Actua... | Bug,Help Wanted | low | Major |
205,078,216 | kubernetes | Disable restart of containers in multi-container pods | <!-- Thanks for filing an issue! Before hitting the button, please answer these questions.-->
**Is this a request for help?** (If yes, you should use our troubleshooting guide and community support channels, see http://kubernetes.io/docs/troubleshooting/.): No
**What keywords did you search in Kubernetes issues... | sig/node,kind/feature,lifecycle/frozen,needs-triage | high | Critical |
205,098,813 | youtube-dl | iqiyi not downloading properly | Log is as follows(including 2 examples):
```
$ ./youtube-dl http://www.iqiyi.com/a_19rrhanifd.html#vfrm=2-4-0-1 --verbose
[debug] System config: []
[debug] User config: []
[debug] Custom config: []
[debug] Command-line args: [u'http://www.iqiyi.com/a_19rrhanifd.html#vfrm=2-4-0-1', u'--verbose']
[debug] Encodings... | bug | medium | Critical |
205,099,122 | three.js | Inconsistent return value type from FileLoader.load() | ##### Description of the problem
`FileLoader.load()` returns three types of return value.
1. `XMLHttpRequest` instance when cache doesn't hit and url is not data: URI
2. cached data when cache hits
3. `undefined` when url is data: URI
As for me it'd be kinda confusing to users because the return value type
d... | Suggestion,Loaders | low | Major |
205,172,092 | vscode | Explore using formatters for indentation adjustment when formatters are available | VSCode 1.9 introduced initial support for line indenting as [per the release notes](https://code.visualstudio.com/updates/v1_9#_indentation-rules-improvements), I think it's this commit: https://github.com/Microsoft/vscode/commit/be1b5f75161a30dd63316b832067b41d2caec0b3. I'm very interested in this feature, big 👍 for ... | editor-autoindent,under-discussion | low | Major |
205,209,447 | neovim | syntax: "indent" grouping | There are several popular languages (Haskell, Python) and file formats (YAML, cabal) out there that are indentation sensitive and as far as I know `Vim` is not very good in supporting that when it comes to things like syntax highlighting.
The only approach that I'm aware of is doing backtracking with Vimscript which i... | enhancement,api,syntax | medium | Critical |
205,214,646 | rust | Escaping `char` in libcore adds 2k of static data for no_std cases | The PR to [improve char escaping](https://github.com/rust-lang/rust/pull/34485) unfortunately added 2k of static data to libcore, which impacts the `no_std` use case on small devices. Even if in some cases this data could be eliminated automatically, if you ever format a character, you'll definitely bring these tables ... | A-Unicode,T-libs-api,E-help-wanted,C-feature-accepted,WG-embedded,I-heavy | low | Major |
205,263,726 | rust | Incorrect type mismatch resolving when using return in closure | The following code is failing to compile in stable and nightly
```rust
fn main() {
let a = |hello| { return hello + 1; };
let _ = a(2);
}
```
with the following message:
```
rustc 1.15.0 (10893a9a3 2017-01-19)
error[E0271]: type mismatch resolving `<i32 as std::ops::Add>::Output == ()`
--> <anon... | A-inference,C-bug | low | Critical |
205,278,094 | opencv | iOS: Build only device archs, without simulator | It seems like there is no way currently to build opencv framework only for devices archs, without the ones for simulator.
Is there any specific reasons for that? I think it may help to reduce framework size. | feature,priority: low,category: build/install,platform: ios/osx | low | Minor |
205,333,055 | rust | Suggestion: make string/slice more efficient with match | The `match` clause is already flexible to generate a `switch` IR for enum and integers.
It would be good to see a good implementation for str, [T] too. https://github.com/sfackler/rust-phf is a good candiate, since it's translated to a switch+equality comparison, and the code generation doesn't take much time (.4s f... | I-slow,C-enhancement,T-compiler | low | Major |
205,340,808 | rust | dead_code warnings for functions/types used in a unused function | Hi everybody.
[Playground](https://is.gd/jMqXK2)
Code:
```rust
fn foo() {}
fn bar() {
foo();
}
fn main() {}
```
Output:
```
warning: function is never used: `foo`, #[warn(dead_code)] on by default
--> <anon>:1:1
|
1 | fn foo() {
| _^ starting here...
2 | |
3 | | }
| |_^ ...ending h... | A-lints,I-needs-decision,C-bug | medium | Major |
205,349,658 | youtube-dl | A model, well-commented extractor | Since I'm not intimately familiar with the youtube-dl codebase, when I make a change to an extractor I often want to review other extractors to see how things have been handled previously. But oftentimes, it's really not clear which of several choices is better, what is favored, and what is more elegant.
If I had ti... | request | low | Major |
205,368,737 | youtube-dl | site request | please add support for http://www.infowars.com/watch-alex-jones-show/
thanks | site-support-request | low | Minor |
205,369,256 | youtube-dl | [telebasel] Add site support for telebasel.ch | ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.02.04.1*. If it's not read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected.
- [x] I've **verified*... | site-support-request | low | Critical |
205,444,732 | go | x/net/html/charset: htmlEncoding incompatibility with x/text/encoding/htmlindex.Name | ### What version of Go are you using (`go version`)?
```
$ go version
go version go1.7.3 darwin/amd64
```
### What operating system and processor architecture are you using (`go env`)?
```go env
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
GOPATH="/Users/gautier... | NeedsInvestigation | low | Critical |
205,451,088 | TypeScript | Proposal: JSX.ElementType | Hello,
There are many GUI frameworks (ExtJs, SmartClient, OpenUI5) which do not works in React way and they could be easily be integrated with JSX/TSX if their JSX expressions would return correct "element type" e.g.
`const listGrid = <ListGrid/> ; // should be type of ListGrid or isc.IListgrid, not JSX.Element`
M... | Suggestion,In Discussion,Domain: JSX/TSX | medium | Major |
205,455,474 | react-native | Memory leak when programmatically changing 'source' prop of Image | ### Description
If you use an Image component in render and use the parent component's state to manage the source prop, each time the source is changed the previous source is not deallocated. Even when the parent component is unmounted, the previous images still use memory.
<img width="800" alt="imagetest_memory_... | Good first issue,Platform: iOS,Component: Image,Bug | medium | Critical |
205,495,677 | vscode | Suggestion - Add a line-spacing or line-margin option | i create a new post because i didn't see anything that exactly correspond to my demand in already existing tickets.
What i suggest is to add a line-spacing flag in the editor category, that should add a space, who is 0px by default BETWEEN lines.
It is different from lineHeight flag because line height also modif... | feature-request,editor-core | medium | Major |
205,647,427 | youtube-dl | Export fragments list with ism and f4m protocols | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.02.04.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] [Se... | request | low | Critical |
205,675,694 | youtube-dl | [condenast] please support wired.com | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like that [x])
- Use *Preview* tab to see how your issue will actually look like
---
... | request,broken-IE | low | Critical |
205,752,027 | opencv | Video file playback fail to open with Microsoft Media Foundation (CV_CAP_MSMF) | - OpenCV => 3.0
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 2013
##### Detailed description
VideoCapture Video "file" playback using Media Foundation (CV_CAP_MSMF) is failed to open given various video format I had tested, mostly in mp4, wmv, and avi format.
I used `VideoCaptu... | bug,priority: low,category: videoio,category: documentation | low | Critical |
205,759,424 | react | Clear button on iOS date input does not return correct event value | **Bug**
For iOS only.
When pressing `clear` on a date input, the `onChange` event is fired but` event.target.value` is showing the original value rather than an empty string.
**What is the current behavior?**
On Chrome and Android, when the clear button is pressed the onChange event has a value of `''`.
On iOS w... | Type: Bug,Component: DOM | medium | Critical |
205,829,735 | vscode | Code snippet control indentation | <!-- Do you have a question? Please ask it on http://stackoverflow.com/questions/tagged/vscode -->
How can I control unindentation in code snippets?
```json
{
"Create migration helper execute statement": {
"prefix": "mhe",
"body": [
"\\$helper->execute(<<<SQL",
"... | feature-request,snippets | medium | Major |
205,837,616 | TypeScript | Suggestion: DeepReadonly<T> type | **TypeScript Version:** 2.1.1 / nightly (2.2.0-dev.201xxxxx)
**Code**
It would be nice to have a shard, standard library type that allows to express deep readonly-ness (not really const, since methods are out of scope, but still...):
```ts
interface Y { a: number; }
interface X { y: Y; }
let x: Readonly<X>... | Suggestion,Needs More Info | high | Critical |
205,913,581 | go | cmd/compile: Fannkuch11 on AMD64 slow down 6% after removing assembler backend instruction reordering | CL https://go-review.googlesource.com/c/36205/ deletes assembler backend instruction reordering. This makes Fannkuch-11 on AMD64 slow down 6%. Figure out why and improve the compiler. | Performance,compiler/runtime | medium | Major |
205,914,034 | neovim | UI: externalize 'cursorline'/'cursorcolumn' | ```
$ nvim --version
NVIM 0.2.0-dev
Build type: RelWithDebInfo
Compilation: /usr/bin/x86_64-linux-gnu-gcc -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -g -DDISABLE_LOG -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gn... | performance,api,ui,ui-extensibility | low | Critical |
205,949,376 | angular | patchValue of Select with value not in options keeps the form valid | **I'm submitting a ...** (check one with "x")
```
[x] bug report => search github for a similar issue or PR before submitting
```
**Current behavior**
Using patchValue to set a value to a Select box (a value that *doesn't* exist in the Select options), sets the model to that value (and makes the field valid).
... | type: bug/fix,area: forms,forms: validators,forms: Controls API,P4 | low | Critical |
205,978,532 | youtube-dl | Support toukoucity.to | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.02.07**
### 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... | site-support-request,nsfw | low | Critical |
205,981,967 | TypeScript | Ignore __proto__ | **TypeScript Version:** 2.2.0
**Code:**
```ts
{ __proto__: {} } as { [key: string]: string }
```
**Expected behavior:**
Ok
**Actual behavior:**
`Type '{ __proto__: {}; }' cannot be converted to type '{ [key: string]: string; }'.` | Suggestion,Awaiting More Feedback | low | Major |
206,029,693 | go | proposal: how to specify mechanical code updates after API changes? | Go should adopt conventions for packages to explain to potential clients how to update their code in response to API changes in a mechanical way. That is, a package developer should have a way to write down the significant changes of API and compiler and/or tools can *apply* or *fix* them.
See also #18130 and https... | Proposal,Proposal-Hold | low | Major |
206,064,901 | TypeScript | Accept Input Source Maps | The typescript compiler produces sources maps mapping from the javascript it produces to the typescript sources it compiled. This is great, but doesn't go far enough if there are tools which generate the sources that are consumed by the typescript compiler.
For example, [Tsickle](https://github.com/angular/tsickle)... | Suggestion,In Discussion | medium | Critical |
206,122,816 | TypeScript | Computed property key names should not be widened | **TypeScript Version:** 2.1.5
**Code**
The latest `@types/react` (`v15.0.6`) use `Pick<S,K>` to correctly type the `setState` method of `React.Component`s. While this makes it now possible to merge the `state` of a component instead of replacing it, it also makes it harder to write a dynamic update function that u... | Bug | high | Critical |
206,129,048 | rust | Document unwind-safety without referencing an RFC | https://doc.rust-lang.org/std/panic/trait.UnwindSafe.html currently says:
> for more information about unwind safety and how it applies to Rust, see an [associated RFC](https://github.com/rust-lang/rfcs/blob/master/text/1236-stabilize-catch-panic.md).
While this RFC is very informative, much of it is dedicated to... | C-enhancement,P-medium,T-lang,A-docs | low | Major |
206,305,296 | kubernetes | Stricter checking/validation of statefulset pvcs | Currently theren's no enforcement around statefulset volume templates, which means the burden is on the user to make sure there's no collision. A user can create:
Petset 1: petset Claim: alpha-beta
Petset 2: beta-petset Claim: alpha
and end up with a collision. The controller should be smarter, maybe we need so... | kind/bug,area/stateful-apps,sig/apps,lifecycle/frozen | low | Critical |
206,306,331 | opencv | cv::VideoCapture leaks memory on ethernet cams | ##### System information (version)
- OpenCV => 3.2
- Operating System / Platform => Linux 64 Bit
- Compiler => GCC
##### Detailed description
I have been noticing my software memory usage grows (slowly) over time.
I used to believe it was some kind of buffer. But after I let it running overnight, and it cra... | incomplete | low | Critical |
206,322,684 | go | net/http/httptrace: add ServerTrace hooks | ## Problem
A very common pattern in Go HTTP servers is to implement an `http.ResponseWriter` that wraps another `http.ResponseWriter` and captures the status code. This is often used for logging and metrics collection.
For example,
```
type statusCaptureWriter struct {
http.ResponseWriter
status in... | FeatureRequest,early-in-cycle | high | Critical |
206,346,064 | rust | Add option to define environment vars | Right now, code can use `env!()` and `option_env!()` to query arbitrary environment variables set at the time rustc is invoked. This is a subtle leak of the compilation environment into the generated code, which can cause issues with build reproducibility, and could conceivably be considered a security problem.
I'd ... | C-feature-request | low | Major |
206,346,150 | rust | Assertion failed in llvm/include/llvm/Support/Casting.h | Source:
```rust
pub extern "C" fn alt_main() {
extern {
fn main() -> i32;
}
unsafe { main(); }
}
pub fn main() {
println!("Hello");
}
```
Result:
```
$ rustc alt_main.rs -C link-args="-e_alt_main"
Assertion failed: (isa<X>(Val) && "cast<Ty>() argument of incompatible typ... | I-crash,A-LLVM,T-compiler,C-bug | low | Critical |
206,447,640 | vscode | Offline spell checker for VSCode | Hello (first time contributing here)
There are few offline spell checkers among VSCode extensions, but they are based on seriously faulty JavaScript implementations of [Hunspell](http://hunspell.github.io/) spell checker.
[Hunspell](http://hunspell.github.io/) is nowadays probably the most widespread standard for... | feature-request,languages-basic | high | Critical |
206,486,035 | youtube-dl | Site Request: NowTV.com | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.02.07**
- [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,account-needed | low | Critical |
206,499,852 | youtube-dl | Site Request: anywhere.virginmedia.com | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.02.07**
- [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,account-needed | low | Critical |
206,560,094 | angular | Update DOM when changing template in reactive form fails | **I'm submitting a ...** (check one with "x")
```
[ x ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
```
**Cur... | type: bug/fix,freq3: high,area: forms,state: confirmed,P3 | medium | Critical |
206,561,332 | vscode | Git - Support GitHub 2FA | - VSCode Version: 1.9.1
- OS Version: Ubuntu 14.04, 16.04
Steps to Reproduce:
1. Make changes to a GitHub repo with two-factor authentication enabled
2. Push/Sync changes.
> Error: Authentication failed on the git remote.
A dialog box appears to enter your git username/password, but there is no subsequent... | help wanted,feature-request,git | low | Critical |
206,575,665 | flutter | `flutter doctor` should warn if `flutter` is not in your path. | `brew doctor` and other tools do this. Our current flutter.io/setup instructions don't instruct you how to permenently add `flutter` to your path so it's easy to get into this state (if you restart).
It's possible we separately will want a `flutter install-in-path` or `flutter fix-path` or whatever to help folks wi... | c: new feature,tool,t: flutter doctor,P2,team-tool,triaged-tool | low | Major |
206,587,100 | go | cmd/compile: add tool for understanding/debugging SSA rules | As discussed in [CL 36329](https://golang.org/cl/36329), debugging SSA rules can be tedious and time-consuming. [CL 36646](https://golang.org/cl/36646) adds some rudimentary tools to help. This issue describes a pie-in-the-sky tool. Maybe we'll settle on something in between. :)
ssa.html appropriately treats rule-ba... | compiler/runtime | low | Critical |
206,594,148 | rust | Tracking issue for sanitizer support | Currently we have:
- A rustc flag, `-Z sanitizer`, to sanitize rlibs (it adds an extra LLVM pass/attribute) and executables (it links to the sanitizer runtime). Added in #38699.
- An attribute `#[no_sanitize]` to disable sanitization on specific functions. Also lints if those functions are marked as requesting in... | B-unstable,T-dev-tools,A-sanitizers,C-tracking-issue,S-tracking-needs-summary,A-CLI | high | Critical |
206,600,235 | tensorflow | `tf.dynamic_stitch` gradient is incorrect | ### If possible, provide a minimal reproducible example (We usually don't have time to read hundreds of lines of your code)
Original reproduction code (TensorFlow 1.0)
``` python
import tensorflow as tf
x = tf.zeros((1, 3))
y = tf.dynamic_stitch([[0], [0]], [x, tf.ones((1, 3))])
with tf.Session() as sess:
... | stat:awaiting tensorflower,type:bug,comp:ops,TF 2.9 | medium | Major |
206,652,810 | pytorch | Feature Request: Easier to extend base RNN implementation | Currently base RNN class/functions are hard to extend. If someone would like to extend LSTM with new features to pytorch they would have to modify:
AutogradRNN ([nn/_functions/rnn.py](https://github.com/pytorch/pytorch/blob/master/torch/nn/_functions/rnn.py#L192-L234))
StackedRNN ([nn/_functions/rnn.py](https://githu... | feature,triaged,Stale | medium | Critical |
206,731,266 | go | cmd/pprof: invokeVisualizer is racy | In `invokeVisualizer`, we [defer deleting the temporary file](https://github.com/golang/go/blob/c439a5d8b77a3b87d94bc49714faeeb2a04112f4/src/cmd/pprof/internal/commands/commands.go#L205) when invoking the visualizer until the end of the `pprof` program. However, the `invokeVisualizer` [does not wait for the viewer to f... | compiler/runtime | low | Minor |
206,752,777 | neovim | "dd if=/dev/zero | nvim -s -" hangs | - `nvim --version: NVIM 0.1.7 // Compilation: /usr/bin/cc -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -Wconversion -O2 -DNDEBUG -DDISABLE_LOG -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnostics-color=auto -DINCLUDE_GENERATED_DECLA... | bug,io,input,system | low | Critical |
206,771,462 | opencv | CMake cannot find PythonLibs | ##### System information (version)
- OpenCV => 3.2.0
- Operating System / Platform => Windows 10
- Compiler => GNU 4.8.1
- Python => 3.5.0
- CMake => 3.7.2
- Generator => MinGW Makefiles
##### Detailed description
When I _configure_ using CMake-gui, I get
```
Found PythonInterp: D:/Python35/python.exe (... | wontfix,category: build/install | low | Major |
206,790,578 | youtube-dl | Site Request: wuaki.tv | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.02.10**
- [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,geo-restricted,account-needed | low | Critical |
206,830,780 | opencv | Clustering wiki page missing description of bestLabels function argument | - OpenCV => 2.4.3
- Operating System / Platform => Ubuntu 14.04
- Compiler => gcc
The wiki page on clustering (http://docs.opencv.org/2.4.3/modules/core/doc/clustering.html) doesn't have a description of what the function argument "bestLabels" does?
| feature,priority: low,category: documentation,affected: 2.4 | low | Minor |
206,845,091 | youtube-dl | Allow using ffmpeg -vf ( video filters ) in --external-downloader-args | ## 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 |
206,946,627 | go | net, net/http: unpredictable slowness of TestSendfile and TestOnlyWriteTimeout w/ squeezed TCP windows | This is probably not an issue for the standard library; for the runtime package which retrieves data readable/writable notifications from the kernel, for the net package which invokes read/write system calls, and for the net/http package which adds, drops and manages in-flight connections and IO calls for customer traf... | Performance | low | Major |
206,951,010 | opencv | cvtColor on OpenCL (AMD) doesn't compile | ##### System information (version)
- OpenCV => 3.2
- Operating System / Platform => Linux Ubuntu 16.04 64 Bit
- Compiler => gcc 5.4.0
- GPU => AMD FirePro S9300 x2
##### Detailed description
OpenCL kernel for cvtColor cannot be compiled using ROCm 1.4 driver. When the function compiles (when it is used) the co... | invalid,priority: low,category: ocl | low | Critical |
206,964,144 | vscode | search in files focus resets when line changed | - VSCode Version: Code 1.9.1 (f9d0c687ff2ea7aabd85fb9a43129117c0ecf519, 2017-02-08T23:44:55.542Z)
- OS Version: Linux x64 4.4.0-62-generic
- Extensions:
|Extension|Author|Version|
|---|---|---|
|glslx-vscode|evanw|0.0.8|
|cpptools|ms-vscode|0.10.1|
|csharp|ms-vscode|1.7.0|
|mono-debug|ms-vscode|0.13.0|
|debu... | bug,search,confirmed | high | Critical |
207,016,536 | go | cmd/internal/obj: optimize wrapper method prologue for branch prediction | Wrapper functions (such as those found in CL 36809) have an extra prologue inserted during preprocessing. Quoting cmd/internal/obj/xk86/obj6.go (after CL 36833), what this does is:
```
// if g._panic != nil && g._panic.argp == FP {
// g._panic.argp = bottom-of-frame
// }
//
// MOVQ g_panic(CX), BX
... | Performance,compiler/runtime | low | Minor |
207,018,351 | vscode | [html] prevent that embedded grammars can corrupt syntax highlighting of rest of document | Currently, when writing embedded language, a lot of the times the embedded grammar can cause disruption to the rest of DOCUMENT:
This is html grammar.

Imagine editing css in a `<style>` at the `<head>... | bug,upstream,languages-basic,debt | medium | Critical |
207,075,342 | youtube-dl | [site-support-request] Inform player | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.02.11**
- [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 |
207,093,160 | rust | Performance regression in nightly-2017-01-15 | I've recently run into a performance regression in the Rust compiler in a project I'm working on. I've used nightlies to narrow it down to somewhere in 778988174..bf6d7b665. Specifically, the 2017-01-14 nightly is good, and 2017-01-15 is bad. The regression is independent of `CARGO_INCREMENTAL=1`.
If you have a mach... | I-slow,C-enhancement,T-compiler,A-incr-comp | medium | Major |
207,117,260 | opencv | Minor C++11 type narrowing issues with IplImage->depth? | ##### System information (version)
- OpenCV => any
- Operating System / Platform => Mac OSX
- Compiler => Xcode 7.1.1
##### Detailed description
Building OpenCV itself with C++11 on Mac OS X used to fail
( http://code.opencv.org/issues/2263 ); the problem was probably suppressed by
https://github.com/opencv/... | bug,category: build/install | low | Critical |
207,132,707 | opencv | OpenCL Implementation for cv::StereoSGBM is missing | <!--
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... | feature,category: calib3d,category: ocl | low | Critical |
207,141,570 | vscode | Search: target particular set of files | - VSCode Version: Code 1.9.1 (f9d0c687ff2ea7aabd85fb9a43129117c0ecf519, 2017-02-08T23:31:51.320Z)
- OS Version: Darwin x64 15.6.0
- Extensions:
|Extension|Author|Version|
|---|---|---|
|cpptools|ms-vscode|0.10.1|
---
Steps to Reproduce:
1.when i use global search, it's not easy to type whole file path a... | feature-request,search | high | Critical |
207,221,694 | vue | Аn unexpected behaviour when using <transition> with a Vue component. | ### Vue.js version
2.1.10
### Reproduction Link
https://jsfiddle.net/bhrztdjn/4/
### Steps to reproduce
Click on "Toggle" button.
### What is Expected?
Transitions for a component should have the same behavior as transitions applied to HTML element.
### What is actually happening?
A CSS transition work... | improvement,transition | low | Major |
207,243,242 | go | database/sql: sql.Result has problems that should be fixed / replaced | I'm not proposing anything at this point. I'm just documenting various things I've come things I've come across that relate to sql.Result.
@mjibson has said:
> the current problem i'm having with the database/sql API is that it's not possible to get intermediate non-rows returning results when sending multiple stat... | NeedsInvestigation | medium | Major |
207,268,072 | go | proposal: runtime: add AlignedN types that can be used to increase alignment | The sync/atomic packages have this in the docs in the "Bugs" section: "On both ARM and x86-32, it is the caller's responsibility to arrange for 64-bit alignment of 64-bit words accessed atomically. The first word in a global variable or in an allocated struct or slice can be relied upon to be 64-bit aligned." This mak... | Proposal,Proposal-Hold | high | Critical |
207,286,621 | rust | rustdoc splits test-args wrongly | rustdoc is [splitting](https://github.com/rust-lang/rust/blob/717ac960b51a5a2bbedf0e4da899aec7ab2ab7ee/src/librustdoc/lib.rs#L238-L241) test-args using split_whitespace, it should use something like [shlex](https://crates.io/crates/shlex/).
After the output of rusdoc testing changes, it is not possible to run a spec... | T-rustdoc,C-feature-request | low | Major |
207,303,794 | flutter | Would like `flutter devices` to show gpu information | I have a lot of phones on my desk. Sometimes I want to know what GPU one has. Would be nice if `flutter devices` told me.
Might also be nice for bug reports, to save us one step in looking up a phone model.
For example, right now I have a phone which on the back says "Galaxy S III mini", and flutter devices say... | c: new feature,team,tool,P3,team-tool,triaged-tool | low | Critical |
207,311,845 | youtube-dl | Site Request: Blaze.TV | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.02.14**
- [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,geo-restricted | low | Critical |
207,314,547 | flutter | Add support for parallax effect in scrolling Widgets | I'd like to have a parallax scrolling effect in `ListView` items - namely, the actual image content be offset with regards to the `Image` displaying it in such a way as to create the impression that image is "behind" the main plane and thus moving slower.
I made a short video of the original Android version of the a... | c: new feature,framework,f: scrolling,d: examples,P3,team-framework,triaged-framework | low | Major |
207,363,099 | go | doc: Effective Go's "safelyDo" does not demonstrate safe use of recover | Effective Go gives an [example](https://golang.org/doc/effective_go.html#recover) of a server that captures and logs panics so that a single panicking goroutine does not take down the entire server. Copying the example below:
```go
func server(workChan <-chan *Work) {
for work := range workChan {
go s... | Documentation,NeedsFix | low | Critical |
207,363,717 | TypeScript | Re-export module namespace as global | We're attempting to migrate users within Google to new @types typings, which move most typings into modules, and having a ton of trouble. The basic problem is that a module (e.g. CodeMirror) used to declare a global complex interface:
```
declare function CodeMirror(...);
declare namespace CodeMirror { ... }
```... | Suggestion,In Discussion | medium | Critical |
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.