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 |
|---|---|---|---|---|---|---|
207,372,917 | TypeScript | Access `global` as a type | Since https://github.com/Microsoft/TypeScript/wiki/What%27s-new-in-TypeScript#augmenting-globalmodule-scope-from-modules it's been possible to augment the `global` from a module. However, in TypeScript definitions (such as `dom.d.ts` or `node.d.ts`) we're left to create our own "globals". This results in two issue:
... | Suggestion,Awaiting More Feedback | low | Major |
207,380,334 | go | x/mobile: X11 Key Events | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
1.7 (sorry i am using windows at the office, the issue occurs at home)
### What operating system and processor architecture are you using (`go env`)?
ubuntu amd64 (sorry i am using windows at... | mobile | low | Minor |
207,399,151 | rust | Trait object coercion supercedes deref coercion | This seems like it should work: [Playground link](https://is.gd/Q8MWVS)
```rust
use std::sync::Arc;
trait Foo {}
struct Bar;
impl Foo for Bar {}
fn takes_foo(foo: &Foo) {}
fn main() {
let foo: Arc<Foo> = Arc::new(Bar);
takes_foo(&foo);
}
```
However, it seems the compiler is attempting... | I-needs-decision,T-lang,C-feature-request,A-coercions,T-types,A-trait-objects | low | Critical |
207,436,887 | neovim | :grep doesn't detect ENOSPC in /tmp | - `nvim --version`: 0.1.7-3
- Vim (version: ) behaves differently? no
- Operating system/version: Debian amd64
- Terminal name/version: xterm/tmux
- `$TERM`: screen
### Actual behaviour
With a full `/tmp` the command `:grep ...` says `error 1`, doesn't show (partial) list of matches
### Expected behaviour
U... | enhancement,ux | low | Critical |
207,603,707 | go | x/text/collate: collation does not work for Korean | ### What version of Go are you using (`go version`)?
go1.8beta2 linux/amd64
### What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/home/anx/go"
GORACE=""
GOROOT="/usr/local/go"
GOTOOLDIR="/usr/... | NeedsFix | low | Critical |
207,607,505 | rust | Warn about `$x:expr` in `macro_rules` expansion | Maybe I'm the only one, but a stupid mistake I've made several times, when writing macros, is to accidentally include `$x:expr` in the output of a macro, when of course I should just write `$x`.
The result of this mistake is a working macro that includes the tokens `:expr` in its output. (!)
The error messages wh... | A-lints,T-lang,C-feature-request | low | Critical |
207,625,911 | TypeScript | VSCode compatibility: Find-all-references not working for special reference kinds | **TypeScript Version:** nightly (2.2.0-dev.20170214)
**Code**
```ts
label: while (true) {
break label;
}
function f(x: "abc") {}
f("abc");
const x: number;
const y: number;
```
In VSCode, find-all-references does not work for `label`, `"abc"`, or `number`. But document highlights does work for ... | Bug | low | Minor |
207,655,251 | go | runtime: do map growth work on reads | CLs [37011](https://golang.org/cl/37011) and [37012](https://golang.org/cl/37012) suggest that finishing map growth can be important. If an author knows that a particular map is done growing and will henceforth be read-only, and they can spend some cycles optimizing it, it would be useful for them to be able to ask the... | Performance,compiler/runtime | low | Major |
207,689,394 | go | os: support runtime poller with os.File on Windows | In order to use the runtime poller with `os.File` on Windows, the file or pipe will have to be opened with `FILE_FLAG_OVERLAPPED`. We shouldn't do that unconditionally unless we can remove it if the program calls the `Fd` method. Programs currently expect the `Fd` method to return a handle that uses ordinary synchron... | ExpertNeeded,Thinking,OS-Windows | low | Major |
207,729,562 | go | x/arch/arm/armasm: second source register is calculated incorrectly | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
golang.org/x/arch/arm
### What operating system and processor architecture are you using (`go env`)?
Ubuntu 16.04.1 LTS and ARM64
### What did you do?
Disassemble following two instructio... | NeedsFix | low | Major |
207,746,051 | TypeScript | Can not declaration merging for default exported class | <!-- BUGS: Please use this template. -->
<!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript -->
<!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md -->
**TypeScript Version:** 2.1.5
**Co... | Bug | medium | Critical |
207,804,341 | vscode | [themes] different themes for different filetypes | Is it possible to have different themes for different filetypes?
| feature-request,themes | high | Critical |
207,873,579 | youtube-dl | Introduce playlist level thumbnail and write it with --write-thumbnail | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.02.16**
- [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... | request | low | Critical |
207,920,294 | go | os: support runtime poller with os.File on Solaris | The os test `TestPipeThreads` is failing on the Solaris builder, suggesting that for some reason `os.File` values are not working with the runtime poller. The code looks OK to me. I don't know why it is not working. Filing this issue to record the problem.
| OS-Solaris | low | Minor |
207,987,040 | TypeScript | Implement missing members sometimes writes out inaccessible types | ```ts
function foo() {
abstract class C {
abstract myMethod(): C;
}
return C;
}
class D extends foo() {
}
```
Right now, we enable a codefix for implementing missing members of the class `C`. However, `C` is inaccessible, and the generated code will be something like the following
```ts
fu... | Bug,Domain: Quick Fixes | low | Critical |
208,009,500 | TypeScript | Support overload resolution with type union arguments | **TypeScript Version:** 2.1.6
**Code**
```ts
interface Foo {
bar(s: string): void;
bar(n: number): number;
bar(b: boolean): boolean;
}
type SN = string | number;
var sn1: string | number;
var sn2: SN;
var foo: Foo;
var x1 = foo.bar(sn1); // error
var x2 = foo.bar(sn2); // error
```
*... | Suggestion,Needs Proposal | high | Critical |
208,078,712 | youtube-dl | support for 9news | I want to download video from 9news link "http://www.9news.com/news/local/father-worries-about-immigration-status/408808900"
i tried youtube-dl.
```
% youtube-dl -v -F "http://www.9news.com/news/local/father-worries-about-immigration-status/408808900" :(
[debug] System ... | site-support-request | low | Critical |
208,132,182 | rust | Provide an easy way to use LLVM's Polly | [To use polly with clang](http://polly.llvm.org/example_load_Polly_into_clang.html) I just need to compile polly together with llvm and clang (just check it out and put it in the correct directory before compiling), load it as a clang plugin, and then enable `-mllvm polly`.
It would be nice if:
- [ ] rustc alway... | A-LLVM,T-compiler,C-feature-request | low | Major |
208,193,512 | vscode | Allow to create multi-cursor with keyboard | <!-- Do you have a question? Please ask it on http://stackoverflow.com/questions/tagged/vscode -->
- VSCode Version: 1.10.0 - insider
- OS Version: Windows
-- Sorry for the English, I used Google Translator --
Allow me to place multiple cursors by navigating with the arrow keys.
Like this extension [multi-... | feature-request,editor-multicursor | medium | Critical |
208,226,697 | TypeScript | Class mixins shouldn't require a specific signature of constructors | <!-- BUGS: Please use this template. -->
<!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript -->
<!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md -->
**TypeScript Version:** 2.2.0-dev.2017... | Suggestion,Awaiting More Feedback | low | Critical |
208,245,686 | go | testing: add -benchsplit to get more data points | For #18177, we need to make tradeoffs between worst-case latency and average throughput for the functions in question.
It's relatively easy to measure the average throughput today using benchmarks with the `testing` package.
It would be nice if I could use those same benchmarks to measure the distribution of timi... | help wanted,Proposal,Proposal-Accepted,NeedsFix,FeatureRequest | medium | Major |
208,254,868 | angular | Support Input/Output spread | <!--
IF YOU DON'T FILL OUT THE FOLLOWING INFORMATION WE MIGHT CLOSE YOUR ISSUE WITHOUT INVESTIGATING
-->
**I'm submitting a ...** (check one with "x")
```
[ ] bug report => search github for a similar issue or PR before submitting
[x] feature request
[ ] support request => Please do not submit support request... | feature,area: core,core: inputs / outputs,feature: under consideration | high | Critical |
208,293,598 | rust | Macros not included in back-traces when used in a crate | When a macro causes a panic (directly or indirectly) between crates, the line of code from which the macro is used isn't included in the back-trace.
This makes it impossible to know which use of the macro caused the panic.
I ran into this problem because my tests are in a separate directory, and use the code they... | A-debuginfo,E-needs-test,A-macros,T-compiler,C-feature-request | low | Critical |
208,299,323 | flutter | Platform specific assets | It would be great if you could use a platform (android/iOS) as a variant (automatically) with regards to Assets.
A good example is for icons representing actions like sharing. They have platform specific conventions and it would be great if you could just do `"assets/icons/share"` and have the one that is relevant ... | c: new feature,tool,customer: posse (eap),a: assets,P3,team-tool,triaged-tool | medium | Critical |
208,332,413 | TypeScript | strictNullChecks false-positive when returning or breaking from within loop | Compile the following with `--strictNullChecks`
```ts
function findScrollTarget(event: MouseEvent): { element: Element } | null {
let x = event.clientX;
let y = event.clientY;
let element: Element | null = document.elementFromPoint(x, y);
for (; element; element = element.parentElement) {
... | Bug | low | Critical |
208,335,929 | rust | bootstrap overrides -O in CFLAGS for LLVM | At OpenBSD, for building lang/rust package, we switched from using standard LLVM version (3.9.1) to embedded LLVM version, in order to be able to update LLVM at 4.0.0.
The switch has a big performance impact: the build of rust passed from approx 2h (build with linking to external LLVM) to 12h (with 2h for building L... | A-LLVM,T-bootstrap,C-bug,requires-custom-config | low | Major |
208,504,263 | youtube-dl | [MDR] Support playlists | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.02.17**
- [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... | request | low | Critical |
208,520,567 | react | event.preventDefault in click handler does not prevent onChange from being called | **Do you want to request a *feature* or report a *bug*?**
Bug!
**What is the current behavior?**
When rendering an `input` element of type `checkbox` with an `onClick` and `onChange` handler, `onChange` is still called even though `event.preventDefault()` is called in the `onClick` handler.
**If the current... | Type: Bug,Component: DOM | low | Critical |
208,530,134 | go | cmd/objdump: implement all disassemblers | Teach objdump how to disassemble all the supported architectures.
Tracking bug for all the architectures involved. We're currently missing 4.
s390x: #15255
mips: #19158
mips64: #19156
~~arm64: #19157~~
| NeedsFix,compiler/runtime | low | Critical |
208,538,484 | rust | Linking with LLD | LLVM 4.0 is shipping with LLD enabled, though AFAIK it is not yet production-ready on all platforms. I believe we've got an LLVM upgrade planned soon to resolve AVR/emscripten problems anyway, so now's the time to start determining what we might need to do to support it, how it impacts compiler performance/binary size/... | A-linkage,I-compiletime,T-compiler,C-feature-request | high | Major |
208,547,320 | TypeScript | Unsafe type-incompatible assignments should not be allowed | **TypeScript Version:** 2.1.6
**Code**
```ts
interface StringOnly {
val: string;
}
interface StringOrNull {
val: string | null;
}
const obj: StringOnly = { val: "str" };
// should not be allowed
const nullable: StringOrNull = obj;
nullable.val = null;
// obj is now in a bad state
```
... | Suggestion,Awaiting More Feedback | medium | Critical |
208,565,789 | go | cmd/compile: rewrite interface args by actual type args in functions called only with a single set of argument types | Sometimes programs use only a single set of interface implementations for every function call accepting interface args. In this case the compiler may safely rewrite such functions, so they'll accept actual type args instead of interface args.
This brings the following benefits:
- removal of interface conversion overh... | Performance,compiler/runtime | low | Major |
208,573,875 | flutter | Restarting ballistics misses a frame | framework,a: fidelity,f: scrolling,a: quality,P2,team-framework,triaged-framework | low | Minor | |
208,598,422 | kubernetes | Need pattern for updating controllers that works with extensions (TPR/Aggregated) |
Users may also write their own controllers as extensions -- Aggregated API Servers (AASes) or Third Party Resources (TPRs).
Controllers (core or extensions) may contain pod templates.
Those podTemplates need to be updateable, and that should cause a rollout of the new desired state.
We already support r... | area/extensibility,sig/apps,lifecycle/frozen | low | Major |
208,660,045 | rust | `#[deprecated]` does nothing if placed on an impl item. | Given the following two crates:
```rust
#![crate_name = "foo"]
pub struct Foo;
pub struct Bar;
pub trait IntoBar {
fn into_bar(self) -> Bar;
}
#[deprecated(note = "Just pass `Bar` instead")]
impl IntoBar for Foo {
fn into_bar(self) -> Bar {
Bar
}
}
```
```rust
extern crate ... | A-lints,A-trait-system,T-compiler,C-bug,T-types,L-deprecated | medium | Critical |
208,663,704 | go | x/build: auto-detect flakes | Request from @danp:
When the build system is idle, run builds of tip branches periodically (every 5 min?) to see if builds alternate between "ok" and "failed" state. Maybe auto-file flake bugs if test failures aren't consistent.
| Builders,FeatureRequest | low | Critical |
208,663,728 | go | x/build/cmd/coordinator: write proper scheduler | Currently if there are N builds waiting on a buildlet type (due to lack of machines or quota), the current implementation is a bunch of goroutines fighting over a mutex.
It's random who wins and gets the buildlet.
We should have them register interest and when a buildlet becomes available, pick the highest priori... | Builders,NeedsInvestigation | medium | Major |
208,684,748 | rust | Enum associated functions can name-clash with variants, but cannot be called. | ### Description
It's currently possible to name a function associated to an enum identically to the name of one of its variants.
This function cannot be called (see below), but rather than warning at the point that the function is defined, the compiler only emits an error upon trying to call said function (and in... | A-lints,T-compiler,C-bug | low | Critical |
208,685,704 | rust | rustc --test should not check linking when using --emit=metadata or -Z no-trans | Suppose I have a library configured with `panic = "abort"`:
```
$ cargo init --lib foo
$ cd foo
$ nano Cargo.toml
$ more Cargo.toml
[package]
name = "foo"
version = "0.1.0"
authors = ["Wilfred Hughes <me@wilfred.me.uk>"]
[dependencies]
[profile.dev]
panic = "abort"
```
I'm unable to build with wit... | C-feature-request,A-libtest | low | Critical |
208,717,980 | rust | error[E0275]: overflow evaluating the requirement `_: std::marker::Sized` | Reduced test case:
```rust
#![recursion_limit = "5"]
fn main() {}
trait Serialize {}
struct Ser<'a, T: 'a>(&'a T);
impl<'a, T> Ser<'a, T> where Ser<'a, T>: Serialize {
pub fn new(value: &'a T) -> Self {
Ser(value)
}
}
impl<'a, T> Serialize for Ser<'a, Option<T>> where Ser<'a, T>: ... | A-diagnostics,T-compiler,C-bug | medium | Critical |
208,718,621 | opencv | findCirclesGrid does not check circularity to detect blob | ##### System information (version)
- OpenCV => 3.2(master)
- Operating System / Platform => Windows 10 Pro 64bit
- Compiler => Visual Studio 2015
##### Detailed description
* findCirclesGrid [uses SimpleBlobDetector](https://github.com/opencv/opencv/blob/3.2.0/modules/calib3d/include/opencv2/calib3d.hpp#L750) by... | RFC | low | Minor |
208,726,625 | vscode | [Feature Request] Undo branches | Undo branches / undo tree allows you to undo some changes,
then make a new change, while keeping all changes available in the undo tree.
The undo tree can therefore prevent awkward scenarios such as:
* Losing all redo futures by accidentally pressing a button during undo
* Copying the file or save it with git whe... | feature-request,undo-redo | high | Critical |
208,744,742 | rust | making a temporary tuple for pattern matching tries to move borrowed content | [playground link](https://is.gd/Bunuc0)
This works, even though it looks like it's moving out of shared pointers, because of the `ref` keyword:
```rust
fn works(foo_opt1: &Option<Foo>, foo_opt2: &Option<Foo>) {
if let Some(ref foo1) = *foo_opt1 {
if let Some(ref foo2) = *foo_opt2 {
pri... | A-diagnostics,A-borrow-checker,T-compiler | low | Critical |
208,801,552 | go | cmd/compile: needlessly early return value loads in runtime.scanobject | runtime.scanobject contains this bit of code:
```go
// Mark the object.
if obj, hbits, span, objIndex := heapBitsForObject(obj, b, i); obj != 0 {
greyobject(obj, b, i, hbits, span, gcw, objIndex)
}
```
This compiles to (excerpt):
```
0x024b 00587 (/Users/josh/go/tip/src/runtime/mgcmark.go:1180) MOVQ R1... | Performance,compiler/runtime | low | Minor |
208,898,093 | rust | Range* should overrride more methods of Iterator | Like nth, last, count, max, min,... maybe even sum and product (using a direct formula). | I-slow,C-enhancement,T-libs-api | medium | Major |
208,917,656 | go | gccgo: add AIX support | ### What version of Go are you using (`go version`)?
Snapshots from gcc SVN repository
### What operating system and processor architecture are you using (`go env`)?
AIX 6.1/7.2 on Power7/8
### What did you do?
We are currently porting gccgo to AIX. This issue will be used to submit and discuss our changes... | OS-AIX | high | Critical |
208,992,912 | neovim | API: Do not translate errors; add more error "types" | Currently there are only two types of errors: Exception and Validation and translated exception text, but many languages like Python are supposed to translate them into something own: e.g. when indexing buffer it is expected that invalid index is IndexError, invalid buffer is something like ValueError and โLine index i... | api,needs:design | low | Critical |
209,066,920 | go | x/crypto/ocsp: asn1 marshal failed with ocsp | I am not sure that it is bug in go `asn1` or it's in `x/ocsp`
### What version of Go are you using (`go version`)?
i am using go version `go1.8 linux/amd64` and go version `go1.7.5 linux/amd64`
### What operating system and processor architecture are you using (`go env`)?
```
GOARCH="amd64"
GOBIN=""
GOEXE=""
... | NeedsInvestigation | low | Critical |
209,131,192 | rust | A new compiler flag: "link everything statically or die, dammit!" | My adventures with static linking and native dependencies have been frustrating โ because of the multitude of different `build.rs` scripts each configured in a different way, the build environment is fragile. Lately I made some changes to my environment, and since then, I've been trying to get all the native deps linki... | A-frontend,A-linkage,T-compiler,C-feature-request | high | Critical |
209,207,954 | opencv | Distance between multi-contour shapes | <!--
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: shape | low | Critical |
209,228,481 | TypeScript | Suggestion: tsc should display a one line summary | Suggestion:
tsc currently list the errors. Sometimes you want to see if the number of errors increases or decreases.
Proposition:
```
$ tsc
FooBar.tsx(66,59): error TS2339: Property 'query' does not exist on type 'Location'.
Hello.tsx(42,60): error TS2339: Property 'query' does not exist on type 'Location'.
di... | Suggestion,Help Wanted | medium | Critical |
209,276,453 | go | net/smtp: TestTLSClient failures with "connection reset by peer" on freebsd | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
1.8+ (development)
### What operating system and processor architecture are you using (`go env`)?
freebsd-amd64-gce101
### What did you do?
Tried to run Trybots for an unrelated change:
... | ExpertNeeded,Testing,OS-FreeBSD | low | Critical |
209,435,460 | vscode | When using Run to Cursor, then there is no inline instruction pointer decoration | Testing #20793
I would have expected to see an inline instruction pointer decoration when I use the 'Run to Cursor' command.

| feature-request,debug | low | Major |
209,445,065 | youtube-dl | Multi-Threaded postproc for playlists | Would be nice if postproc was done in separate thread(s) (up to N threads, N being the number of CPU cores). As soon as a download is finished, the postproc job should be dispatched and the next download should start immediately. But if all N cores are doing postproc, wait for one to finish before downloading another p... | request,postprocessors | low | Major |
209,469,386 | rust | Need a way to close standard output | It is sometimes appropriate for a program to close its standard output stream long before it's done running. For instance, I have a [C program](https://github.com/zackw/tbbscraper/blob/master/collector/scripts/tunnel-ns.c) that sets up some system-wide state, waits for its parent to be done using that setup, and then ... | T-libs-api,C-feature-accepted | low | Major |
209,489,894 | flutter | 'flutter daemon' reports an inconsistent device 'platform' field when starting up versus shutting down | The problem seems to be that 'flutter daemon' reports an inconsistent 'platform' field when starting up versus shutting down.
In the debugger, when a device is added, I see:
```
id: emulator-5554
name: Android SDK built for x86 64
platform: android-x64
```
On shutdown, the "id" and "name" fields are the same... | tool,P3,team-tool,triaged-tool | low | Critical |
209,510,106 | react | Disabling or destroying event's target stops further event propagation. | Disabling a submit button within a form on `onClick`, stops the event propagation to the forms `onSubmit` handler.
The fiddle:
```
import React from "react";
class SomeForm extends React.Component {
constructor(props){
super(props)
this.state = {
disabled:false
}
}
... | Component: DOM,Type: Discussion | low | Minor |
209,538,335 | TypeScript | [Salsa] Support jsdoc `@namespace` | Support treating variable declarations with [`@namespace`](http://usejsdoc.org/tags-namespace.html) JSDoc tag as TS namespaces.
```ts
/** @namespace */
var Documents = {
/**
* An ordinary newspaper.
*/
Newspaper: 1,
/**
* My diary.
* @private
*/
Diary: 2
};
``` | Suggestion,Committed,Domain: JSDoc,Domain: JavaScript | medium | Major |
209,569,295 | go | strings: Split1 slowdown | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
1.8
### What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
### What did you do?
Run strings/... | Performance | low | Major |
209,586,673 | flutter | Hard to test exceptions during layout | Exceptions during layout tend to cause a cascade of other exceptions, which makes it hard to test. See https://github.com/flutter/flutter/pull/8321 for an example of a layout exception we'd like to test. | a: tests,team,framework,P3,team-framework,triaged-framework | low | Major |
209,591,343 | TypeScript | JSDoc - generate @type for a variable | _From @egamma on February 22, 2017 11:21_
Generating a JSDoc comment for a variable/constant should generate an @type annotation
```js
/** |
var p;
```
Inserts
```js
/**
* @type {any}
*/
var p;
```
_Copied from original issue: Microsoft/vscode#21110_ | Suggestion,Awaiting More Feedback,Domain: JSDoc,Domain: JavaScript | low | Minor |
209,622,288 | angular | feature: support multiple case matching in `ngSwitch`/`@switch` | Like what anuglar 1 provide
https://docs.angularjs.org/api/ng/directive/ngSwitch
Also mentioned in here:
https://github.com/angular/angular/issues/12174
Angular version: 2.4.7 | feature,area: common,feature: under consideration | high | Critical |
209,653,764 | react-native | [Android] position: absolute shouldn't be cut off within a container with border | ### Description
If you have an element `position: absolute` with negative offset within a container with a border, it's going to be cut off, it's like `overflow: hidden` of the container is suddenly enabled by the border. But if you remove the border of the container, it works well. This issue only happens on Androi... | Ran Commands,Platform: Android,Bug,Never gets stale | high | Critical |
209,696,839 | vue | <textarea> and <input type=text> cursor issue in IE 11.0 | To reproduce:
- open https://vuejs.org/v2/guide/forms.html#Multiline-text with IE 11.0 (Edge) on Windows 7
- type some text in the textarea
- move the cursor at the beginning of the text (press the Home key)
- quickly type random chars
=> the cursor jumps to the end
same issue with input type=text (https://vuej... | improvement | low | Major |
209,796,982 | javascript | missing function expression name : naming / semantics | Assuming a function expression that toggles the visibility of `<tr>`s depending on some criteria,
```
const filterRows = function () {
...
}
```
` 39:23 warning Missing function expression name func-names`
I'm running into difficulty finding a name for that function expression as the rule suggests. Mor... | question | low | Major |
209,814,254 | TypeScript | Proposal: quoted and unquoted property names distinct | Closure Compiler is a JavaScript optimizer that also works well with TypeScript (using our https://github.com/angular/tsickle as an intermediate re-writer). It produces the smallest bundles, and we use this internally at Google and externally for some Angular users to get the smallest application.
In ADVANCED_OPTIMI... | Suggestion,In Discussion | low | Critical |
209,815,702 | rust | "Stability" of the `-C passes` and `-C llvm-args` flags | These flags are part of the stable `rustc` CLI but they let you tap into LLVM internals that we can't guarantee the stability of. Known usages of these flags include:
- Generating code coverage files. [Works on stable](https://github.com/rust-lang/rust/pull/38608#issuecomment-280797934)
- Fuzzing ([`cargo fuzz`](... | I-needs-decision,A-stability,T-compiler,T-dev-tools,C-bug,A-cranelift,A-gcc | low | Minor |
209,849,689 | youtube-dl | Please add support for animation.filmarchives.jp | ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.02.22*. 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 |
209,881,589 | rust | Error on bad pub(path) depends on module ordering | Which error message you get with a non-ancestral `pub(path)` visibility restriction depends on the ordering of module declarations.
These two struct declarations produce different errors;
```rust
mod foo {
pub(in ::bar) struct Foo;
}
mod bar {
pub(in ::foo) struct Bar;
}
```
The second produce... | A-diagnostics,A-resolve,E-mentor,T-compiler,C-bug,WG-diagnostics | low | Critical |
209,919,037 | TypeScript | Support JSDoc `@function` | <!-- BUGS: Please use this template. -->
<!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript -->
<!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md -->
From: https://github.com/Microsoft/vsc... | Suggestion,Committed,VS Code Tracked,Domain: JSDoc | low | Critical |
209,995,213 | TypeScript | Relax visibility rules for type-aliases when 'declaration' compiler option is set. | One common thing I use type-aliases for is to give shorter, more expressive names to commonly used types throughout a file.
This is especially useful for callback signatures that see common use throughout a module, as well as string-literal types used in a union type, like `type HttpMethods = 'get' | 'post' | 'put' ... | Suggestion,Awaiting More Feedback | low | Critical |
210,017,513 | opencv | cv::ml::Boost->predict always returns 0/1 with RAW_OUTPUT | <!--
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... | RFC | low | Critical |
210,080,347 | opencv | Invalid bind texture error at runtime with CUDA OpenCV functions | ##### System information
- OpenCV => 3.2
- Operating System / Platform => Ubuntu 64 Bit
- Compiler => g++, nvcc
- Cuda => 7.0
##### Description
When I try to call CUDA OpenCV functions, like cuda::remap, I get the following error:
OpenCV Error: Gpu API call (invalid texture reference) in bindTexture, file /hom... | bug,category: gpu/cuda (contrib) | low | Critical |
210,115,778 | go | runtime/race: adding support for the race detector on other platforms | Hi Everyone,
Following on from [this](https://groups.google.com/forum/#!topic/golang-nuts/5B4cXnaWcn8) discussion on the golang-nuts list, about supporting the race detector on ARM hardware, I'm opening this issue to track the suggestion.
The ThreadSanitizer that the Go race detector is based on supports x86_64, ... | RaceDetector,help wanted,FeatureRequest,compiler/runtime | medium | Major |
210,132,626 | opencv | [wishlist, feature, improvement] Doxygen documentation | <!--
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... | wontfix,category: documentation,incomplete | low | Critical |
210,133,537 | youtube-dl | Add support for toei-animation.com | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.02.24.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... | site-support-request | low | Critical |
210,145,448 | pytorch | BCELoss doesn't accept LongTensor targets | Unlike NLLLoss, BCELoss doesn't accept LongTensor targets
(Reported by Marc'Aurelio) | feature,module: loss,triaged,Stale | low | Minor |
210,158,505 | opencv | Affine3 class templated method operator* is using a type that does not exist! | ##### System information (version)
- OpenCV => 3.1.0
- Operating System / Platform => Ubuntu 14.04 on VirtualBoxVM
- Compiler => g++
##### Detailed description
The templated method
```
template<typename T, typename V> inline
V cv::operator*(const cv::Affine3<T>& affine, const V& v)
```
is using a type that... | bug,category: core | low | Critical |
210,179,915 | go | plugin: add Windows support | hi
Plugin Pkg Work for Windows!?
i want use this for mac,linux,win,... os.
when(what time) fix this?
https://golang.org/pkg/plugin/ | OS-Windows,NeedsInvestigation,FeatureRequest,compiler/runtime | high | Critical |
210,199,273 | TypeScript | Is there a way to use TypeScript to prevent accidental global access? | I just spent 2 hours tracking down this issue:
- We have a class with a prototype method called `focus()`
- Our code was calling `focus()`, but it should have been calling `this.focus()`
- The code compiled fine, because `window.focus()` shares the same signature as our `focus()` method
Is there a way to throw ... | Suggestion,Needs Proposal | high | Critical |
210,230,783 | opencv | buildOpticalFlowPyramid + calcOpticalFlowPyrLK + cloned pyramids | System Info: OpenCV 3.2.0, Win10 x64, VS2015
I am computing pyramids using `cv::buildOpticalFlowPyramid` and passing the result to `cv::calcOpticalFlowPyrLK`. This works only if the pyramids are passed as is (being a submatrix from the original images, i.e shared data with ROI). If we make a deep copy of the pyramid... | priority: normal,category: video,RFC | low | Critical |
210,234,894 | youtube-dl | Add support for authentication http://www.gracieuniversity.com/ | $ youtube-dl --verbose -u PRIVATE -p PRIVATE http://www.gracieuniversity.com/Players/FVLessonPlayer/FVLessonPlayer.aspx?enc=dkG2PaKrWHkbW%2bHxxa7%2bXA%3d%3d
[debug] System config: []
[debug] User config: []
[debug] Custom config: []
[debug] Command-line args: [u'--verbose', u'-u', u'PRIVATE', u'-p', u'PRIVATE', u'h... | site-support-request,account-needed | low | Critical |
210,259,252 | opencv | Aruco samples won't build with apparently correct minimum module configuration |
##### System information (version)
- OpenCV => 3.2
- Operating System / Platform => Ubuntu 16.01
- Compiler => g++-5
##### Detailed description
CMakeLists.txt for aruco lists the modules needed for the aruco libraries. But the aruco samples will not build with just these modules. They also require videoio. As... | bug,category: build/install | low | Critical |
210,268,337 | rust | Braced macros are inconsistent with other braced items | Consider the following macro:
```rust
macro_rules! test {
() => ( "hello" )
}
```
The following function compiles as expected if the macro is invoked with parenthesis:
```rust
fn string_len() -> usize {
test!().len()
}
```
However, if I invoke the macro with curly braces instead, Rust emits ... | A-macros,T-compiler,C-bug | low | Critical |
210,275,741 | youtube-dl | Split `README.md` into smaller files | The `README.md` is really long. Considering that it loads every time someone goes to the main page, wouldn't it be better to keep some of it (e.g., the FAQ) in separate files? | request,documentation | low | Minor |
210,280,874 | rust | Tracking issue for future-incompatibility lint `missing_fragment_specifier` | This is the summary issue for the `missing_fragment_specifier` future-compatibility warning and other related errors. The goal of this page is describe why this change was made and how you can fix code that is affected by it. It also provides a place to ask questions or register a complaint if you feel the change shoul... | A-lints,A-parser,A-macros,T-compiler,C-future-incompatibility,C-tracking-issue | low | Critical |
210,348,962 | kubernetes | No way to configure ExternalIP addresses for a node with kubelet | Kubelet currently will update the node addresses in the status, meaning it cannot be edited manually / with a controller.
However, there is also no way to tell kubelet to register anything other than a single `--node-ip` address flag, which gets registered as `NodeLegacyHostIP` and `NodeInternalIP`.
We should all... | priority/backlog,sig/network,area/kubelet,sig/node,kind/feature,lifecycle/frozen,needs-triage | medium | Critical |
210,351,785 | neovim | plugin: --startuptime statistics and visualization | I think it would be really great if something like timecop could be added directly into Neovim. For many users, using Neovim is all about performance. With the `--startuptime` option already there, I think all that's missing is some kind of cli visualization and statistic. It would be great to have it show on `:timecop... | enhancement,plugin | medium | Major |
210,369,692 | youtube-dl | MSNBC Livestream errors | ## 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
---
... | bug | low | Critical |
210,436,183 | youtube-dl | Download all episodes from stream.cz | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.02.24.1**
### Before submitting an *issue* make sure you have:
- [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](htt... | request | low | Critical |
210,480,599 | youtube-dl | Utime failing worryingly often | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.02.24.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... | cant-reproduce,incomplete | low | Critical |
210,565,422 | go | net/http: support content negotiation | Content negotiation is, roughly, the process of figuring out what content type the response should take, based on an Accept header present in the request.
An example might be an image server that figures out which image format to send to the client, or an API that wants to return HTML to browsers but JSON to command... | help wanted,Proposal,Proposal-Accepted,NeedsFix | high | Critical |
210,583,566 | opencv | Incorrect type traits for DMatch/Keypoint | DMatch should not be represented as 4 * int, because it is <int, int, int, float>.
Keypoint should not be represented as 7 * float, because this structure contains integers. This problem is worse than with DMatch, because a subset of integer values can be interpreted/mapped as single NaN value.
Problem can be observe... | bug,category: core | low | Critical |
210,752,858 | rust | 1.15.1 armhf run-make/relocation-model failed, "relocation [..] against `a local symbol' can not be used [..]; recompile with -fPIC" | Running manually on [abel.debian.org](https://db.debian.org/machines.cgi?host=abel):
~~~~
failures:
---- [run-make] run-make/relocation-model stdout ----
error: make failed
status: exit code: 2
command: "make"
stdout:
------------------------------------------
make[3]: Entering directory '/home/infin... | O-Arm,T-compiler,C-bug | low | Critical |
210,758,933 | youtube-dl | I cannot download playlist of Tutsplus Tutorials | Why youtube-dl does not work in tutsplus for downloading the whole course. it just download the first video. I think it only grabs the preview video of any course and it does not go through the playlist | site-support-request,account-needed | low | Major |
210,805,408 | youtube-dl | Support converting multilingual TTML to srt | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.02.27**
- [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,postprocessors,subtitles | low | Critical |
210,892,165 | go | os: Process.Signal on the current PID should signal the current thread | The Go standard library currently lacks an equivalent to the standard C `raise` function.
The closest portable analogue is something like:
```go
func raise(sig os.Signal) error {
p, err := os.FindProcess(os.Getpid())
if err != nil {
return err
}
return p.Signal(sig)
}
```
Unfortunately, thi... | NeedsDecision | low | Critical |
210,894,570 | go | x/build/cmd/coordinator: report pkg/bin changes, binary size changes | It would be helpful when reviewing changes, particularly toolchain changes, to be able to easily see which pkg/bin files have changed since the parent commit--an easy reviewer's toolstash -cmp.
It'd also be nice to have an automated report about the pkg/bin file size changes.
Could we cheaply/easily add this info... | Builders,NeedsInvestigation,FeatureRequest | low | Minor |
210,954,541 | TypeScript | Dom d.ts does not define event.target.parentNode | _From @linocatucci on February 28, 2017 19:25_
- VSCode Version: Code 1.9.1 (f9d0c687ff2ea7aabd85fb9a43129117c0ecf519, 2017-02-08T23:31:51.320Z)
- OS Version: Darwin x64 16.4.0
- Extensions:
|Extension|Author|Version|
|---|---|---|
|beautify|HookyQR|0.8.8|
|jslint|ajhyndman|1.2.1|
|jshint|dbaeumer|0.10.15|
|... | Bug,Help Wanted,Domain: lib.d.ts,VS Code Tracked | low | Major |
210,954,713 | go | go/internal/srcimporter: src importer cannot handle re-import | The existing importers go out of their way to augment partially imported packages (types, etc.).
A source importer doesn't do that - it uses go/types to always create a new package. If only the source importer is used, then (recursively), any package that is imported somewhere is imported as a whole, so all package... | NeedsInvestigation | 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.