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 |
|---|---|---|---|---|---|---|
168,206,767 | TypeScript | Protected nested classes | **TypeScript Version:** 1.8.9
**Code**
``` ts
class Outer {
protected static Inner = class {}
private myInner: Outer.Inner;
}
```
**Expected behavior:** No errors.
**Actual behavior:** Compiler error: `Cannot find namespace 'Outer'. Line 3, Column 24`
**Code**
``` ts
class Outer {
protected static In... | Suggestion,Awaiting More Feedback | low | Critical |
168,263,008 | vscode | Allow to bring up a dialog with multiple inputs | ## Feature request
It would be nice if an extension could present a single dialog with multiple input fields. For example, the [New Project command in Ionide](https://github.com/ionide/ionide-vscode-fsharp/blob/a58b470dfd2a891eb46a545df0eb326fb0d93038/src/Components/Forge.fs#L142) asks for project directory and projec... | feature-request,api,linux,dialogs | medium | Critical |
168,407,633 | rust | Tracking issue for promoting `!` to a type (RFC 1216) | Tracking issue for rust-lang/rfcs#1216, which promotes `!` to a type.
### About tracking issues
Tracking issues are used to record the overall progress of implementation. They are also used as hubs connecting to other relevant issues, e.g., bugs or open design questions. A tracking issue is however *not* meant ... | A-type-system,B-RFC-approved,T-lang,B-unstable,C-tracking-issue,finished-final-comment-period,F-never_type,Libs-Tracked,S-tracking-design-concerns,T-types | high | Critical |
168,424,883 | You-Dont-Know-JS | This & prototype inheritance - Chapter 1 - Grammar issue | > JavaScript's this mechanism isn't actually that advanced, but developers often paraphrase that quote in their own mind by inserting "complex" or "confusing", and there's no question that without lack of clear understanding, this can seem downright magical in your confusion.
Towards the end of the sentence the part t... | for second edition | medium | Minor |
168,452,608 | TypeScript | TSX related formatting bugs | **TypeScript Version:** 2.0 beta
**Code**
`|` is indicating cursor here.
``` ts
<Scene key="root"
| // cursor should be indented so that attribute definitions can be naturally indented
```
``` ts
<Scene key="root">
| // cursor should be indented, as cursor on unfinished array does
```
``` ts
<Sce... | Bug,Help Wanted,Domain: Formatter | low | Critical |
168,456,455 | opencv | Set CAP_PROP_FOURCC does not work under Windows for USB camera | ##### System information (version)
- OpenCV => 3.1.0
- Operating System / Platform => Windows 7 64 Bit
- Compiler => Python
##### Detailed description
Trying to switch camera output from YUY2 to MJPG but it does not work. MJPG mode is working in other software packages.
##### Steps to reproduce
```
import c... | feature,priority: low,category: videoio(camera),platform: win32 | low | Major |
168,465,163 | angular | Problem when adding dynamically a component with g[test] selector in SVG | **I'm submitting a ...** (check one with "x")
[ x ] bug report
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
**Current behavior**
I try to add dynamically this component within SVG:
```
@Comp... | type: bug/fix,freq2: medium,area: core,state: confirmed,core: dynamic view creation,cross-cutting: SVG,P3,bug | medium | Critical |
168,495,104 | godot | Improve tool script debugging | I am currently developping a GDScript editor plugin, and just like developping a game, I make mistakes and am getting countless errors, yay!
But the problem here is that I only get the error and the line where it occurred. I am currently spending a lot of time trying to figure out a bug happening everytime I use Ctrl+S... | enhancement,topic:editor,usability | medium | Critical |
168,506,254 | rust | Test runner interacts badly with redirected child process | (Moved here from rust-lang/cargo/2936 as it is believed to be a standard library bug.)
Consider the code at https://gitlab.com/BartMassey/ptyknot/tree/pipes-direct/misc/piperef-rs . The relevant portion is in piperef.rs:
```
...
// Write "hello world" to stdout.
... | C-enhancement,A-libtest,A-process | low | Critical |
168,534,134 | bitcoin | Separate resource usage profiles | There has been talk before (and I'm surprised to not find an existing issue about it) of having different memory usage profiles. This could encompass defaults for:
- `-dbcache`
- `-par`
- `-maxsigcachesize`
- `-maxmempool`
- `-maxorphantx`
- `-maxconnections`
- `-maxreceivebuffer`
- `-maxsendbuffer`
For desktop system... | Feature,Resource usage | low | Minor |
168,534,903 | react | Attach Stack at setState Calls in DEV Mode | We have a queue for state transitions. There is a natural place for a `new Error()` stack frame to be stored there.
We could use this information to work our way back from errors to show information about which `setState` call was the source of the error.
Because of batching, it is not always possible to make the cor... | Type: Enhancement,Component: Core Utilities,React Core Team | low | Critical |
168,536,401 | rust | type_id is not crate-independent with object associated types | ## Meta
```
$ rustc -V
rustc 1.12.0-dev (5556554e2 2016-07-31)
```
## STR
``` Rust
#![feature(core_intrinsics, rustc_private)]
#[cfg(arena_first)]
extern crate arena;
extern crate term;
#[cfg(not(arena_first))]
extern crate arena;
use std::intrinsics::type_id;
fn main() { unsafe {
println!("same={:?} different... | A-trait-system,E-needs-test,T-compiler,C-bug | low | Major |
168,541,166 | rust | Verify that the AST does not have DUMMY_SP | Currently, syntax extensions can generate code with `DUMMY_SP` in its AST. All compiler diagnostics from that code, and all stack backtraces generated by that code, are basically worthless.
That should not be possible. The lowered HIR should not have any DUMMY_SP.
cc @rust-lang/compiler
| A-debuginfo,C-enhancement,T-compiler,A-proc-macros | low | Major |
168,663,304 | go | fmt: Scanf EOF error inconsistency | Please answer these questions before submitting your issue. Thanks!
_What version of Go are you using (`go version`)?_
`go version devel +ff227b8 Thu Jul 21 01:04:22 2016 +0000 linux/amd64`
but older versions of Go are also affected.
_What operating system and processor architecture are you using (`go env`)?_
``` t... | NeedsFix | low | Critical |
168,743,597 | TypeScript | Suggestion: output fewer errors for incorrectly implemented interface | **TypeScript Version:** nightly
**Code**
``` ts
interface A {
f(): void;
}
class B implements A {
eff() {}
}
var b: B;
b.f();
b.f();
b.f();
```
**Expected behavior:**
```
src/a.ts(4,7): error TS2420: Class 'B' incorrectly implements interface 'A'.
Property 'f' is missing in type 'B'.
```
**Actual behav... | Suggestion,Help Wanted,Effort: Difficult | low | Critical |
168,838,480 | rust | unsatisfyable HKL error message prints broken bound (`for<'b> 'b : `) | the full error is
```
error[E0279]: the requirement `for<'b> 'b : ` is not satisfied (`expected bound lifetime parameter 'b, found concrete lifetime`)
--> <anon>:2:5
|
2 | test::<FooS>(&mut 42);
| ^^^^^^^^^^^^
|
= note: required because of the requirements on the impl of `for<'b> Foo<'b>` for `FooS<'_... | A-diagnostics,T-compiler,C-bug | low | Critical |
168,857,681 | opencv | loading 32 bit TIFF requires imread flags to be set | According to the documentation flag `IMREAD_ANYDEPTH`
> If set, return 16-bit/32-bit image when the input has the corresponding depth, otherwise convert it to 8-bit
When reading 32bit TIFF image without any flags the image should load and get converted to 8bit. In practice however image is empty.
When flag `IMREAD_A... | bug,category: imgcodecs | low | Major |
168,885,234 | TypeScript | Inconsistent DocComment merging for merged declarations | _From @unional on July 14, 2016 7:17_
Likely tsc error?
VSCode: 1.3.1
ts: 2.1.0-dev.20160712
``` ts
/**
* some function
*/
function foo() {}
/**
* some interface
*/
interface foo {}
/**
* some namespace
*/
namespace foo {}
```
, where it was said that Chrome Push would not be supported at the time since Google's private services are not included in Electron's content bundle. Now that Chrome 52 [supports a non-proprietary protocol](http://blog.chromium.org/20... | enhancement :sparkles:,component/chrome-api | high | Critical |
169,000,245 | rust | Tracking issue for future-incompatibility lint `patterns_in_fns_without_body` | Code using patterns in parameters of foreign functions, function pointers or trait methods without body is not accepted by the compiler.
```rs
extern {
fn f((a, b): (u8, u16)); // ERROR
}
type T = fn((a, b): (u8, u16)); // ERROR
trait Tr {
fn f((a, b): (u8, u16)); // ERROR
}
```
Previously som... | A-lints,T-lang,T-compiler,C-future-incompatibility,C-tracking-issue | low | Critical |
169,015,802 | flutter | determinate circular progress indicators have wrong animation | See: https://material-design.storage.googleapis.com/publish/material_v_8/material_ext_publish/0B14F_FSUCc01N2kzc1hlaFR5WlU/061101_Circular_Sheet_xhdpi_005.webm
| framework,f: material design,P2,team-design,triaged-design | low | Minor |
169,015,985 | flutter | Improve transition from indeterminate to determinate circular progress indicators | We should transition cleanly. Right now we just switch modes with a sudden change.
| framework,f: material design,a: quality,has reproducible steps,P2,found in release: 3.7,found in release: 3.9,team-design,triaged-design | low | Minor |
169,027,689 | go | x/net/http2: rename and export Transport's t1 field | Please answer these questions before submitting your issue. Thanks!
1. What version of Go are you using (`go version`)?
go version go1.7rc4 darwin/amd64
2. What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
... | NeedsFix | low | Major |
169,059,888 | youtube-dl | count of videos when giving playlist-start should number downloads starting from given number | ### Make sure you are using the _latest_ version: run `youtube-dl --version` and ensure your version is _2016.08.01_. 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** a... | request | low | Critical |
169,072,431 | vscode | Git - Support git-bash ssh agent for Windows | cc @saggafarsyad
From #6202
| help wanted,feature-request,git | medium | Major |
169,215,074 | javascript | The use of || operator in assignments | In the topic 15.7 this kind of assignment is favored over ternaries: `const foo = a || b;`. Actually, this pattern is used in a lot of the examples, but should it be discouraged since it can produce undesired behavior when the left operand is falsy? In the above example if `a` is falsy so `b` would be the result.
I kn... | question | low | Major |
169,232,831 | kubernetes | Bulk deletes are resource intensive on caches. | We have a series of tests that fill a cluster, settle, then bulk delete using namespaces.
This bulk delete is very memory intensive and expensive on the api-server. The profile of the operation shows a large spike in memory, which is likely due to how we cache.
?
`go version go1.6.2 darwin/amd64`
1. What operating system and processor architecture are you using (`go env`)?
```
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin... | NeedsInvestigation | low | Major |
169,423,227 | kubernetes | Storage should not allow multiple users of a PVclaim, if the claim is RWO, even if the PV is RWX | This is hard to validate, but it is a bug. We need to clarify the meaning of a claim's mode. Today it means "at least" but I think we also need to express "this pod demands exclusive access" vs "shared access is OK". That is more of an app-level semantic than infrastructure.
Concretely, assume my app needs a RWO vo... | priority/important-soon,area/kubelet,sig/storage,lifecycle/frozen | low | Critical |
169,436,644 | youtube-dl | Introduce compatible-merge operators for format selection (was: Need a bestvideo+bestcompatibleaudio format selector) | ### I have
- [x] **Verified** and **I assure** that I'm running youtube-dl **2016.08.01**
- [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... | request | medium | Critical |
169,489,569 | flutter | Dropdown button menu is not repositioned after rotating the screen | 1) Run Gallery -> Buttons -> Dropdown
2) Tap on one of the dropdown buttons to show the popup menu
3) Rotate the screen
The popup menu will remain at the same coordinates it had before the rotation (and it may be offscreen). It should be moved to match the position of the dropdown button in the new layout.
| framework,f: material design,a: fidelity,P3,team-design,triaged-design | low | Minor |
169,636,045 | angular | feat(Forms) Expose FormControl errors to parent FormGroup | **I'm submitting a ...** (check one with "x")
```
[ ] bug report
[x feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
```
**Current behavior**
When there are errors in a form group, the formGroup.statu... | feature,state: Needs Design,freq3: high,area: forms,feature: under consideration | high | Critical |
169,650,181 | go | runtime/trace: implement user events | https://golang.org/s/go15trace specifies user events:
> Runtime/pprof package also exposes a set of functions for emission of user events:
>
> ```
> package pprof
> func TraceEvent(id string)
> func TraceScopeStart(id string)
> func TraceScopeEnd(id string)
> ```
But there is no implementation at this time.
Those w... | help wanted,NeedsFix,early-in-cycle | medium | Critical |
169,652,986 | go | proposal: sync: mechanism to select on condition variables | Sometimes condition variables are the best fit for a problem, and sometimes channels are. They don't compose well, though.
I've increasingly been finding myself in a position where I would like to select on both channel(s) and a condition variable. This has come up a few times in http2, where I use condition variables... | Proposal | high | Critical |
169,696,164 | awesome | More non-{tech,science} awesome lists please! | There are so many interesting topics in this world. Let's not limit ourselves to just tech and science!
I think the only non-{tech,science} list we have here is the [Economics](https://github.com/antontarasenko/awesome-economics) list.
Examples:
- [Life hacks](https://en.wikipedia.org/wiki/Life_hack)
- Skateboarding
... | list request | high | Critical |
169,700,944 | go | cmd/cgo: arrange to pass unmodified Go source files to compiler, go/types | Currently cgo support is implemented with cmd/cgo as a separate tool that analyzes cgo-using Go code and transforms it into standard Go code. This proposal is to extract the analysis logic into a separate internal package that can be reused by cmd/compile and go/types directly without needing source rewrites. I.e., t... | Proposal-Accepted | high | Critical |
169,730,382 | neovim | Exiting :terminal kills split | - `nvim --version`: 0.1.4
- Vim (version: ) behaves differently?
- Operating system/version: OSX 10.11.6
- Terminal name/version: iTerm 2 Build 3.0.5
- `$TERM`: xterm-256color
### Actual behaviour
Start: Run Neovim in a vertical split, with a file on each side.
Next: Start a terminal session in the left split.
Next: ... | terminal | medium | Critical |
169,744,867 | youtube-dl | Request: introduce new field `short_description` | Many a supported site often has both a short description and a longer. Introducing a new field `short_description` (or a similar name), would allow for both to be extracted.
| request | low | Minor |
169,747,160 | TypeScript | Provide a way to alias namespaces | TypeScript should have a way to embed (type) namespaces. In the following case, assigned (embeded) namespace NS.A should have a C type.
**TypeScript Version:** master
**Code**
``` ts
namespace NS_A {
export class C {
}
}
namespace NS {
export var A = NS_A;
export type A = NS_A;
}
var C = NS.A.C;
type C = NS... | Suggestion,Needs More Info | medium | Critical |
169,762,151 | rust | Add `is_empty` function to `ExactSizeIterator` | Tracking issue for functionality introduced in https://github.com/rust-lang/rust/pull/34357
| T-libs-api,B-unstable,C-tracking-issue,A-iterators,Libs-Tracked | high | Critical |
169,807,578 | youtube-dl | Add support for Voot.com | ### Make sure you are using the _latest_ version: run `youtube-dl --version` and ensure your version is _2016.08.07_. 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** a... | site-support-request,geo-restricted | low | Critical |
169,856,870 | youtube-dl | Not downloading all videos from a Vimeo channel | ### Make sure you are using the _latest_ version: run `youtube-dl --version` and ensure your version is _2016.08.07_. 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** a... | site-support-request | low | Critical |
169,925,440 | TypeScript | Error message for invalid string literal type could be improved | <!-- BUGS: Please use this template. -->
<!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript -->
<!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md -->
**TypeScript Version:** 2.0 Beta
**Cod... | Suggestion,Help Wanted,Effort: Moderate,Domain: Error Messages,Experience Enhancement | low | Critical |
169,933,943 | go | runtime: use frame pointers for callers | Traceback is the main source of slowdown for tracer. On net/http.BenchmarkClientServerParallel4:
BenchmarkClientServerParallel4-6 200000 10627 ns/op 4482 B/op 57 allocs/op
with tracer:
BenchmarkClientServerParallel4-6 200000 16444 ns/op 4482 B/op 57 allocs/op
That... | Performance,NeedsFix,early-in-cycle | medium | Major |
169,965,894 | kubernetes | Controller manager special-cases NFS and other volumes | code in `cmd/kube-controller-manager/app/plugins.go`:
```
nfsConfig := volume.VolumeConfig{
RecyclerMinimumTimeout: int(config.PersistentVolumeRecyclerConfiguration.MinimumTimeoutNFS),
RecyclerTimeoutIncrement: int(config.PersistentVolumeRecyclerConfiguration.IncrementTimeoutNFS),
Recycle... | priority/backlog,sig/storage,sig/api-machinery,lifecycle/frozen | low | Minor |
170,025,995 | gin | Is there a way to match hosts like you can in Gorilla? | For example, Gorilla has: `r.Host("www.example.com")`
Is that possible?
| feature | low | Minor |
170,035,532 | rust | `array.push(Foo { ... })` should construct `Foo` in-place | Right now when you push an immediate we construct a temporary copy on the stack and then move it into place on the heap. This is wasteful and results in a good deal of code bloat. Can we do better (with MIR perhaps)?
One possible sketch of a solution is to implement MIR inlining and then use some variant of #32966 tha... | I-slow,C-enhancement,T-compiler,A-MIR,A-array | low | Major |
170,044,224 | rust | Bad codegen: unnecessary on-stack copy in WebRender 2 | Here's an unncessary on-stack copy in WebRender 2 with an inefficient `mov` chain.
Original code: https://github.com/servo/webrender/blob/master/src/tiling.rs#L111
```
fn add_layer_to_ubo(layer_ubos: &mut Vec<Vec<PackedLayer>>,
layer_to_ubo_map: &mut Vec<Option<usize>>,
layer_i... | A-LLVM,I-slow,C-enhancement,T-compiler | low | Major |
170,121,916 | youtube-dl | please support flyvidz.com - a really spammy site with strange pop-up like stuff | <img width="1304" alt="screen shot 2016-08-09 at 11 33 40" src="https://cloud.githubusercontent.com/assets/1093836/17511847/29425bf0-5e25-11e6-89ed-76b3b85d2af8.png">
flyvidz.com is a spamy site, even with ad blocking there is fishy stuff. I wish to get their videos.
Warning: this site sadly hosts not only porn also t... | request | low | Critical |
170,310,057 | youtube-dl | Support futurelearn.com | ### Make sure you are using the _latest_ version: run `youtube-dl --version` and ensure your version is _2016.08.10_. 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** a... | site-support-request,account-needed | low | Critical |
170,333,200 | rust | Only the first expression in an `include!`d file is included. | If you have a file that invokes a macro and you `include!` it, the following happens:
### `main.rs`
``` rust
fn main() {
macro_rules! my_macro {
($name:expr) => {{
printn!("{}", $name);
}}
}
include!("helper.rs");
}
```
### `helper.rs`
``` rust
my_macro!("foo");
my_macro!("bar... | A-diagnostics,A-macros,T-compiler,C-bug | low | Major |
170,344,580 | TypeScript | Function composition challenge for type system | How would you type the following JavaScript function?
``` ts
function wrap(fn) { return (a, b) => fn(a, b); }
```
Obviously, the naive typed declaration would be:
``` ts
type Func<A, B, R> = (a: A, b: B) => R;
declare function wrap<A, B, R>(fn: Func<A, B, R>): Func<A, B, R>;
```
But it does not really describe its ... | Suggestion,In Discussion | high | Critical |
170,349,861 | go | x/sys/windows: named pipes support on Windows | 1. What version of Go are you using (`go version`)?
go version go1.7rc3 windows/amd64
2. What operating system and processor architecture are you using (`go env`)?
set GOARCH=amd64
set GOBIN=
set GOEXE=.exe
set GOHOSTARCH=amd64
set GOHOSTOS=windows
set GOOS=windows
set GOPATH=d:\developing\go\xx... | OS-Windows,compiler/runtime | low | Critical |
170,382,643 | opencv | ThinPlateSplineShapeTransformer::wrapImage transformed X and Y values are located in the oposite side | <!--
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute).
This is a template helping you to create an issue which can be pro... | bug,affected: 3.4,category: shape | low | Critical |
170,505,114 | flutter | No good way to determine who is causing my RenderObject to paint (without markNeedsPaint being called) | ```
debugPrintMarkNeedsPaintStacks = true;
```
The above gives a stack trace but it's not helpful in finding the culprit - it's all RenderObjects and RenderProxyBoxes usually.
| c: new feature,framework,a: debugging,P3,team-framework,triaged-framework | low | Critical |
170,511,567 | flutter | Stack and other multi-child layout renderers should not call markNeedsPaint if they don't actually change their layout | Example is a Stack with two children, one always changing and the other never changing. The changing child shouldn't cause the non-changing child to repaint.
| framework,c: performance,P3,team-framework,triaged-framework | low | Major |
170,514,027 | kubernetes | design and implement kubeconfig v2 api version | The kubeconfig v2 api is intended to address usability issues of the v1 api. Design is in progress but i'm hoping to use this issue aggregate some ideas and problems we would like to address in v2.
v2 kubeconfig should:
- be composable: adding new clusters or auth infos should not require modifying existing files. We ... | area/kubectl,sig/api-machinery,lifecycle/frozen | medium | Major |
170,515,702 | nvm | Add `prune` support to nvm | I was exploring setting up a machine that would continuously test against different versions of node. Seeing how `nvm` is very easy to use for installing (think nightly `nvm i 6` etc) my next concern was removing older versions of node. A `nvm prune` suggestively should remove all older versions of each major; for inst... | feature requests | medium | Major |
170,544,376 | flutter | Should have finer grained linkability | Ideas from earlier:
# Linkability
This file has ideas only, so far. Comments welcome.
## Scenarios
- soduku app:
- want to share the board layout, but not my progress so far
- want to transfer my progress to another device
- a wikipedia-like app:
- follow links to other topics
- have links from other apps (e.g... | framework,f: routes,P3,team-framework,triaged-framework | low | Minor |
170,575,889 | java-design-patterns | Entity component system (ECS) pattern | Description:
The Entity Component System (ECS) design pattern is a robust architectural pattern used in game development and other performance-critical applications. This pattern provides a flexible and efficient way to manage entities and their behaviors by breaking them down into distinct components. The main element... | epic: pattern,type: feature | low | Major |
170,662,684 | TypeScript | Scope of this is lost when passing a member function to setInterval | TypeScript Version: 1.8.10
When passing a member function to setInterval, the scope of 'this' is lost within the callback, though the structure of the code (given experience of any object orientated language) indicates it shouldn't be.
**Example code**
```
export class SetIntervalTest {
private someNumber: number ... | Suggestion,Help Wanted,Domain: lib.d.ts,Good First Issue | low | Major |
170,687,707 | TypeScript | This-function parameters must be specified in caller *and* callee, even for methods | This means that only very careful people will benefit from assignability checking (and therefore argument checking at call sites). (Due to contextual typing, code that uses a this-typed library will get improved body checking a lot of the time.)
Specifically, assignability checking only happens when `this` is explicit... | Suggestion,Needs Proposal | low | Critical |
170,773,416 | rust | `self` and `super` behave inconsistently in `use` statements and as module names | Handling of `self` and `super` in `use` and `mod` statements is inconsistent. [Playpen](https://is.gd/znBchD):
``` rust
use self; // error: `self` imports are only allowed within a { } list [E0429] (expected)
// error: unresolved import `self`. There is no `self... | C-enhancement,A-resolve,T-lang | low | Critical |
170,790,834 | youtube-dl | ffmpeg/avconv does not support SOCKS proxies | ### Make sure you are using the _latest_ version: run `youtube-dl --version` and ensure your version is _2016.08.12_. 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** a... | external-bugs | medium | Critical |
170,793,554 | youtube-dl | Site request: Anime Planet | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your _issue_ (like that [x])
- Use _Preview_ tab to see how your issue will actually look like
---
### Make s... | site-support-request,geo-restricted | low | Critical |
170,821,643 | youtube-dl | new site: webstream.eu requested | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.08.12**
### Before submitting an _issue_ make sure you have:
- [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master
- [x] [Searched](https://github.com/rg3/youtube-dl/search?type=Issues) the bugtracker for similar... | site-support-request | low | Critical |
170,822,360 | youtube-dl | Seperate Exception for authentication error in an extractor | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your _issue_ (like that [x])
- Use _Preview_ tab to see how your issue will actually look like
---
### Make s... | request | low | Critical |
170,857,540 | vscode | Lift `setContext` from a command to proper API | This would be very useful to activate extension build feature per project type.
would help for [this issue](https://github.com/Microsoft/vscode/issues/9280)
| feature-request,api,context-keys | high | Critical |
170,956,054 | You-Dont-Know-JS | ECMAScript editors: JS classes are not fake | > But does that mean JavaScript actually has classes? Plain and simple: No. ... the classes you have in other languages are not like the "classes" you're faking in JS.
At least a couple ECMAScript editors, Brian Terlson and Allen Wirfs-Brock, have implied or explicitly stated that the notion that JS classes are "fake"... | for second edition | medium | Major |
170,981,657 | godot | "Sync script changes" doesn't work for Visual Scripts | I have "Sync script changes" enabled, but when I change and save the visual script nothing happens...
My project: [HelloTriangle.zip](https://github.com/godotengine/godot/files/416323/HelloTriangle.zip)
Try to enable "Sync script changes" under Debug options and change one of the position values while app is running.... | bug,topic:editor,topic:visualscript | low | Critical |
170,992,526 | TypeScript | 'innerText' should not be nullable in most of Node's derived types | Compile the following with `--strictNullChecks` with the DOM available.
``` ts
const foo = document.createElement("div");
const s: string = foo.textContent;
```
Expected: No error
Actual: `Type 'string | null' is not assignable to type 'string'.`
From https://developer.mozilla.org/en-US/docs/Web/API/Node/textContent... | Bug,Help Wanted,Domain: lib.d.ts | low | Critical |
171,036,986 | youtube-dl | Site support request: Spotify | ### Make sure you are using the _latest_ version: run `youtube-dl --version` and ensure your version is _2016.08.13_. 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** a... | site-support-request,account-needed | medium | Critical |
171,051,248 | kubernetes | Setting a message when cordoning nodes | Hey,
when draining a node or cordon a node I think its important to be able to set a message why this node was cordoned.
e.g (two examples)
kubectl cordon K8S_NODENAME "disabled due to docker maintenance"
kubectl drain K8S_NODENAME --set-message "disabled due to docker maintenance"
| area/kubectl,sig/node,sig/cli,lifecycle/frozen | medium | Major |
171,060,487 | three.js | Editor: Light targets are not editable. | ``` json
{
"uuid": "F7A1537F-0DA9-4FC2-9436-1BCC2A930EDA",
"type": "SpotLight",
"castShadow": true,
"matrix": [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 215.52757263183594, -383.2663269042969, 587.3773193359375, 1],
"color": 255,
"intensity": 2,
... | Editor | medium | Major |
171,072,396 | opencv | Android Camera2Renderer can't find the correct size | Hi,
I'm trying to run this opencv4android example (android tutorial 4): https://github.com/opencv/opencv/tree...
The project compiles fine, but when i tryied to run, there is only a black screen and org.opencv.android.Camera2Renderer can't find the correct size (always 0x0). This is the log cat:
```
08-07 23:02:57.... | bug,priority: low,platform: android,affected: 3.4 | low | Critical |
171,105,210 | youtube-dl | Problem with Discovery.com playlist | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your _issue_ (like that [x])
- Use _Preview_ tab to see how your issue will actually look like
---
### Make s... | geo-restricted | low | Critical |
171,148,476 | TypeScript | Auto-indentation problem with promise blocks | _From @lumaxis on August 12, 2016 0:7_
- VSCode Version: 1.5.0-insider (666ed83a2d465257201cdac215a553ddee3cccbe)
- OS Version: 10.11.6
Steps to Reproduce:
1. Create a Typescript file and start writing code using promises
2. Auto-indent file using ~~Shift+Alt+D~~ Shift+Alt-F
Expected Result:
``` typescript
return ou... | Bug,Help Wanted,Domain: Formatter,VS Code Tracked | medium | Major |
171,154,672 | rust | [rustbuild] Support `exclude` in config.toml, not just as a flag | debuginfo-gdb tests fail on my system due to gdb not existing/gdb being misconfigured/gdb being not actually gdb/gdb being too new/gdb being too old/gdb outputting stuff to stderr/etc. There should be a way to disable selected collections of tests altogether in rustbuild.
I tried setting debuginfo-tests to false, but ... | E-easy,T-bootstrap,C-feature-request | low | Critical |
171,248,235 | vscode | Execute functions during snippet expansion | - VSCode Version: 1.4
- OS Version: any
There are several snippets that exist in Visual Studio today that I would like to introduce to the C# extension for VS Code, but require generating dynamic text are executing code to perform other actions during snippet expansion. For example:
- `ctor` -- generate a constructor ... | feature-request,api,snippets | high | Critical |
171,383,407 | opencv | When creating a PR containing only doc changes | Wouldn't it make sense to disable the buildbots for the source code if only files from doc folder are edited? This would speed up the build of the docs for verification.
| feature,category: infrastructure | low | Minor |
171,447,769 | opencv | Camera calibration thoughts | I'm trying to use the calibrateCamera function to calibrate an industrial camera but it doesn't give the results I'm expecting. I took 10 pictures.
I'm using a planar calibration pattern with about one thousand of points.
I know that I cannot have a sub pixel accuracy for the all detected points but I'm pretty sure th... | RFC | low | Critical |
171,456,327 | javascript | [Request] use constants for linter error levels | My team has forked this project a couple times because linting rules are mostly 2/error instead of 1/warning, so it obscures genuine errors.
Something like this:
```
<Foo b={} a={} /> // props sorted wrong
```
Should not have the same severity as a critical bug! This adds a ton of mental overhead to every line when ... | question | low | Critical |
171,473,774 | youtube-dl | MKV thumbnail not correctly embedded | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.08.13**
- [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections
- [x] [Search... | bug,postprocessors | low | Critical |
171,513,236 | go | cmd/compile: move SSA boolean optimizations to generic level | Boolean optimizations were at the arch-specific level, because we had not yet decided that bools will be 0/1 everywhere. Now that that decision has been made, boolean optimizations could be migrated earlier. Filing this issue as a reminder on behalf of @brtzsnr.
| compiler/runtime | low | Minor |
171,540,554 | go | cmd/compile: make SSA IDs stable across passes | GOSSAFUNC's ssa.html's help text says:
> Values and blocks are highlighted by ID, which may vary across passes. (TODO: Fix this.)
But what is the bug? Maybe this is.
/cc @josharian @randall77
| NeedsFix,compiler/runtime | low | Critical |
171,600,491 | TypeScript | Comments on inner properties are stripped | TS: 2.0.0
``` ts
// code.ts
/**
* Some foo
*/
export const foo = {
/**
* Some boo
*/
boo = 0
}
```
expect:
``` ts
// code.d.ts
/**
* Some foo
*/
export declare foo: {
/**
* Some boo
*/
boo: number;
}
```
actual:
``` ts
// code.d.ts
/**
* Some foo
*/
export declare foo: {
boo: number;
}... | Suggestion,Help Wanted | low | Minor |
171,610,859 | opencv | boxFilter unexpected behaviour | While trying to use boxFilter on floating-point CV_32FC3 images, I noticed a strange behaviour where negative numbers appear.
The following code snippet should reproduce the issue with the image attached:
``` .cpp
cv::Mat testImg = cv::imread("data/castle.jpg");
testImg.convertTo(testImg, CV_32FC3, 1.0 / 255.0);
for ... | RFC | low | Critical |
171,637,648 | TypeScript | Trailing trivia removed for some object properties | **TypeScript Version:** 1.8.x / Playground
**Code**
``` ts
// the export annotations
export function bug() {
// hello
// another?
// return annotation
return {
// return object annotation
outer: {
// more!
inner1: { // here too
// and more
... | Bug,Domain: Comment Emit | low | Critical |
171,647,332 | youtube-dl | Support for rio2016.francetvsport.fr | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your _issue_ (like that [x])
- Use _Preview_ tab to see how your issue will actually look like
---
### Make s... | site-support-request,geo-restricted | low | Critical |
171,764,676 | vscode | Glob matching should be case insensitive | - VSCode Version: 1.4.0
- OS Version: Win10 1511
Steps to Reproduce:
1. using VSCode, open a directory stored in an NTFS volume, which has files named FooContainer.cs
2. press CTRL+SHIFT+F to invoke Find in Files
3. press "..." to show 'files to include'
4. enter "*_/_container.cs"
5. search for something that is know... | feature-request,search,file-glob | high | Critical |
171,766,442 | kubernetes | Rethink how we manage/name/publish annotations | NB: This is about the annotations that kubernetes itself uses, not about end-user annotations. Those are explicitly reserved for use by end-users.
We use annotations for 2 main things.
1) To prototype new would-be fields in existing objects.
2) To decorate objects with bits of state from the core system components.
... | area/kubectl,sig/api-machinery,lifecycle/frozen | low | Minor |
171,778,370 | youtube-dl | Windows 10 x64 - Fatal Python error: Py_Initialize: unable to load the file system codec | ### Make sure you are using the _latest_ version: run `youtube-dl --version` and ensure your version is _2016.08.17_. 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** a... | external-bugs | medium | Critical |
171,928,304 | youtube-dl | Feature request for site http://www.t-online.de/tv/ | ## Please follow the guide below
i wount do cause i am sure i am right and i am programmer myself, not python, and i have done this questioner once and seen that there are many unrelated questions to my situation.
This is a feature request for the page http://www.t-online.de/tv/
Example videos:
http://www.t-online.... | site-support-request | low | Critical |
172,008,546 | TypeScript | [Proposal] Type assertion statement (type cast) at block-scope level | This is a proposal in order to simplify the way we have to deal with type guards in TypeScript in order to enforce the type inference.
The use case is the following. Let us assume we have dozens (and dozens) of interfaces as the following:
**Code**
``` ts
interface AARect {
x: number; // top left corner
y: n... | Suggestion,Revisit | high | Critical |
172,014,147 | youtube-dl | support for zoig.com and zoig channels | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your _issue_ (like that [x])
- Use _Preview_ tab to see how your issue will actually look like
---
### Make s... | site-support-request | low | Critical |
172,186,577 | go | runtime,cmd/compile: -buildmode=c-shared and dlopen-ing a shared library | consider the following `GOPATH`:
```
sh> tree .
.
βββ mylib.so
βββ src
βββ main.go
βββ my-cmd
βΒ Β βββ main.go
βββ pkg1
βΒ Β βββ pkg.go
βββ pkg2
βββ pkg.go
5 directories, 6 files
```
with:
``` go
// src/pkg1
package pkg1
import "fmt"
var Int = 0
var Map = make(map[string]int)
func i... | NeedsInvestigation,early-in-cycle,compiler/runtime | low | Critical |
172,237,050 | TypeScript | probable bug in typeof type guard | **TypeScript Version:** 1.8.0
**Code**
``` ts
const numbers: {[key: string]: number} = {a: 1, b: 2};
const mixed: {[key: string]: number|string} = {a: 1, b: 'two'};
function test(something: {[key: string]: number|string}) {
Object.keys(something).forEach(k => {
if (typeof something[k] === 'number') {
... | Bug | low | Critical |
172,245,399 | vscode | Support Windows Narrator for screen reading | - VSCode Version: 1.4.0
- OS Version: Windows
Hi,
I'm trying to test Accessibility on VSCode. I found that VsCode doesn't support Windows Narrator. However, I was able to use NVDA tool. It works perfectly fine.
Is this the known issue ? It's working fine on mac os with voiceover utility
| feature-request,upstream,accessibility,electron,a11ymas | medium | Major |
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.