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 |
|---|---|---|---|---|---|---|
227,317,267 | vscode | [json] use the schemastore catalog | The JSON server should use http://schemastore.org/api/json/catalog.json for schema associations | feature-request,json | medium | Major |
227,345,405 | kubernetes | Prevent status subresource from touching objectmeta | `/status` subresources are generally targeted updated for controllers set a logical whitelist of fields. Given the direction around creating new fields instead of abusing annotations, we should prevent the `/status` subresource from touching `ObjectMeta` fields in new resources that we add.
To do this, we need to m... | sig/api-machinery,priority/important-longterm,lifecycle/frozen | medium | Major |
227,361,846 | go | log/syslog: defaults to LOG_KERN facility | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go1.8 linux/amd64
### What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPA... | Documentation,NeedsDecision | low | Critical |
227,375,553 | kubernetes | Use meta.k8s.io/v1 for meta types like *Options and Status | We have moved *Options and Status into a meta apigroup, but do not use `meta.k8s.io/v1` as the groupversion. Instead, we either use the apigroup of the request context or "/v1" as a fall-back (like in the dynamic client, compare VersionedParameterEncoderWithV1Fallback). We should change this. | sig/api-machinery,lifecycle/frozen | low | Major |
227,396,210 | angular | Style bindings with gradient functions containing color functions as their colors get stripped out by the style sanitizer | **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
```
**Current b... | type: bug/fix,freq1: low,area: core,core: styling bindings,core: sanitization,P3 | medium | Critical |
227,468,819 | TypeScript | strictNullChecks not recognizing evaluated key in object | **TypeScript Version:** 2.3.2
**Code**
This version errors with strictNullChecks
```ts
export interface Opts {
params?: { [s: string]: string };
}
let token;
let options: Opts = { params: {} };
if (token) {
options.params["access_token"] = token;
}
```
This version does not error with stri... | Bug | low | Critical |
227,476,256 | flutter | Add a cached-ness dimension to the run timing measurements | All runs of same success-ness, same platform, same build mode, same residence-ness are clumped together. Though we would want a cache-ness dimension to the speed measurement to differentiate fresh first builds vs subsequent builds.
Either split the dimensions into phases such as getting plugins, running native tool... | c: new feature,team,tool,P3,team-tool,triaged-tool | low | Major |
227,519,295 | vscode | [html] Javascript intellisense in inline scripts from external references | This request is to provide intellisense capabilities for referenced script tags on inline javascript, for example:
```
<script src="myJs.js">
<script>
myJs.IntellisenseGoesHere
</script>
```
Ideally typings files are also supported for an even better experience
I could not find an open issue on this ... | feature-request,javascript,html | high | Critical |
227,525,031 | go | runtime/pprof: extend mutex profiling to select case blocking | Inspired by #20302, it'd be helpful if mutex profiling showed cases where select cases are blocked waiting to lock the various cases. Right now we have no easy way to get visibility into that.
| NeedsFix,compiler/runtime | low | Minor |
227,534,891 | go | runtime: GC turning on/off disruptive to scheduler and locality | I generated a trace of the concurrent compiler backend, and see some unfortunate things in it.
```bash
$ go tool compile -traceprofile=t.p -c=8 fmt/{doc,format,print,scan}.go
$ go tool trace t.p
```
Screenshot:
<img width="1559" alt="compile_fmt_trace_zoomed" src="https://cloud.githubusercontent.com/assets/... | Performance,ToolSpeed,NeedsInvestigation,compiler/runtime | low | Major |
227,565,400 | TypeScript | Support JSDoc `@property` | _From @BrunnerLivio on May 8, 2017 9:1_
- VSCode Version: 1.12.1
- OS Version: Ubuntu 16.04.1 LTS (Xenial Xerus)
Example code:
MyController.js
```JavaScript
// @ts-check
class MyController {
getWorld() {
return this.world; // <--- Marked as error
}
}
angular
.module('myApp')
.com... | Suggestion,Committed,Domain: JSDoc,Domain: JavaScript | low | Critical |
227,582,484 | flutter | Pan gesture recognizer should yield to the scale gesture recognizer | In his [reply to my question](http://stackoverflow.com/questions/43869027/gesturedetector-within-tabbarview-nested-scrolling/43876032#43876032) regarding zooming a picture inside a `TabBarView` @collinjackson suggested that: "[...] Flutter's pan gesture recognizer should probably yield to the scale gesture recognizer i... | framework,d: api docs,f: gestures,c: proposal,P2,team-framework,triaged-framework | low | Major |
227,598,398 | vscode | Git - Support file stat mode changes | <!-- Do you have a question? Please ask it on http://stackoverflow.com/questions/tagged/vscode -->
- VSCode Version:
1.12.1
- OS Version:
win7(with cygwin), and linux ubuntu
Steps to Reproduce:
If I change filestat modes on files aka "chmod ugo-x dsfmocklist.py" vsc indicated diff, but it does not say
anywher... | feature-request,git | low | Minor |
227,633,996 | angular | ng-if on root elements of projected content fails to render on initialisation | **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
```
**Current b... | type: bug/fix,effort1: hours,freq1: low,area: upgrade,state: confirmed,P4 | low | Critical |
227,732,019 | TypeScript | noImplicitReturnType [Suggestion] | We have `noImplicitReturns` which is great and helps tick up silly mistakes but it woud great to have `noImplicitReturnType` as well.
**So what would `noImplicitReturnType` do?**
Currently we can write a function like so:
```ts
function life () {
return 42;
}
let x = life(); // Number
```
So all is great... | Suggestion,In Discussion | low | Critical |
227,795,636 | pytorch | [feature request] Caching allocator diagnostics and memory allocation tracing/visualization | Would be cool to peek into the state of the caching allocator on things like:
- [x] Total cached memory
- [x] Total currently used memory, referenced by Tensors
- [x] Forced free of unused segments
- [ ] Tracing of memory allocations (along with some measure of fragmentation) and deallocations (both logical and p... | feature,module: memory usage,triaged | medium | Critical |
227,803,227 | neovim | Rendering bug when nvim_eval request received during typing multiline prompt | - `nvim --version`: 33ca9f711e9a80df8edfc3e5c7519fb5fb7fff2b
- Vim (version: ) behaves differently? not applicable
- Operating system/version: Gentoo linux
- Terminal name/version: not applicable, functional tests’ environment
### Steps to reproduce
Consider the following tests put inside `test/functional/eval... | bug,channels-rpc,event-loop,display | low | Critical |
227,834,141 | go | cmd/compile: inlining isn't performed on generated init functions | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go version devel +c061f51 Wed May 10 20:19:50 2017 +0000 linux/amd64
### What operating system and processor architecture are you using (`go env`)?
amd64/linux
### What did you do?
``... | early-in-cycle,compiler/runtime | low | Major |
227,840,957 | react | [RFC] onChange -> onInput, and don't polyfill onInput for uncontrolled components | `onChange` is a nicer name for what `onInput` does and the fact that it has propagated up to other high-level components as the default name is much nicer than `onInput` as a high level event name.
Generally it has been helpful for the many new-comers to React that don't know the DOM well (which is a lot more than t... | Component: DOM,Type: Discussion,Type: Breaking Change,React Core Team | medium | Critical |
227,854,071 | flutter | Plugins could avoid warnings by installing UIApplicationDelegate methods dynamically | ### Issue about warning message on console
https://github.com/flutter/engine/pull/8843
Right now iOS apps have the following in their logs:
> You've implemented -[ application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of your supported UIBa... | platform-ios,engine,a: annoyance,P2,a: plugins,team-ios,triaged-ios | low | Critical |
227,865,992 | youtube-dl | Cannot download YouTube Red video because TFA rejected | ## 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
---
... | cant-reproduce | low | Critical |
227,919,871 | rust | Collision of Borrow::borrow() and RefCell::borrow() | The trait `std::borrow::Borrow` and type `std::rc::RefCell` both have a method `borrow()`. This leads to ambiguity, possibly hard-to-understand errors and most importantly breaking unrelated code by adding `use std::borrow::Borrow;`.
Consider the following code:
```rust
use std::rc::Rc;
use std::cell::RefCell;
... | C-enhancement,A-diagnostics,T-compiler | medium | Critical |
227,926,398 | kubernetes | Refactor hollow-node into hollow-kubelet and hollow-proxy & make them config-driven | Currently it's a mess having the same file for both hollow- kubelet and proxy that morphs into one or the other based on a flag.
- This should be refactored into separate files for each.
- Define the right set of configs/flags for either and not take everything together.
- Move almost all logic in hollow-node.go to ... | priority/backlog,kind/cleanup,sig/scalability,lifecycle/frozen | low | Minor |
227,958,200 | go | net: IPv6 lookup fails when IPv4 hosts entry is present | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
```
go version go1.6 linux/amd64
```
### What operating system and processor architecture are you using (`go env`)?
```
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="li... | help wanted,NeedsFix | low | Critical |
228,103,615 | flutter | Test for API stability | We should create a test that checks out the Gallery (or some other representative app that uses lots of our APIs, but this seems like the best we have today) for each past release, then tries to run its tests against the tip of tree. | a: tests,framework,c: API break,P3,team-framework,triaged-framework | low | Minor |
228,138,755 | bitcoin | Add "effective fee rate" in rpc's mempool entries | For both `getrawmempool true` and `getmempoolentry` it should probably have a field `effectivefeerate`.
Where as "effective fee rate" is defined as what miners sort transactions by (when taking into consideration the whole CPFP stuff).
I need this field for when trying to create my own CPFP transactions, but it's... | RPC/REST/ZMQ | low | Major |
228,214,362 | react-native | Click and hold to select text using a text component | ### Description
I want click-and-hold-to-select-text using a Text component and then i searched it and i found `selectable` property.It good works but it copy the entire text field.I want to selecting a subset of the text field for copying.Actually this question is asked on stackoverflow .Here is question on stackov... | Resolution: Locked | high | Critical |
228,291,987 | rust | `:vis` matcher can't parse EOF | # Observed behavior
The code below leads to parse error in `rustc 1.19.0-nightly (e40beb3af 2017-05-11)`.
```rust
#![feature(macro_vis_matcher)]
macro_rules! foo {
($v:vis) => {}
}
fn main() {
foo!(); //~ ERROR unexpected end of macro invocation
foo!(pub(in self));
}
```
# Expected behavio... | A-macros,T-lang,C-bug | low | Critical |
228,351,524 | flutter | Refactor FormField into separate abstract and concrete classes | Right now `TextFormField` extends `FormField` and that's the only place in Flutter where a class extends a concrete subclass of `StatefulWidget`. We should take the parts of `FormField` that `TextFormField` uses and refactor them into an abstract subclass of `StatefulWidget` that they both extend.
/cc @xster @abarth | a: text input,c: new feature,framework,c: API break,c: proposal,P3,team-text-input,triaged-text-input | low | Major |
228,408,118 | go | cmd/link: fails once more than one function of a .syso file is called | ### What version of Go are you using (`go version`)?
`go version go1.8.1 linux/amd64`
### What operating system and processor architecture are you using (`go env`)?
```
GOARCH="arm64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/home/michael/go"
GORACE=""
GOROOT="/home/m... | NeedsInvestigation,compiler/runtime | low | Critical |
228,417,337 | vscode | Find in Files "files to include" override .gitignore | VSCode 1.12: I have a TypeScript project with a `src` folder and a `.gitignore` file containing this:
```
/src/**/*.js
```
If I search for something, it is OK with 'files to include' is empty:

b... | feature-request,search,upstream-issue-linked | high | Critical |
228,422,889 | rust | Incorrect suggestion in error when accessing field on raw pointer | When compiling this code:
```rust
struct A {
n: i32
}
struct B {
n: i32
}
fn main() {
let x = A{n:3};
let a = &x as *const _;
unsafe { println!("{}", (a as *const B).n); }
}
```
You get the following error message:
```
error: no field `n` on type `*const B`
--> <anon>:11:45
... | A-diagnostics,T-compiler,C-bug | low | Critical |
228,434,733 | go | runtime: select on a shared channel is slow with many Ps | @tombergan and I have been debugging a severe performance regression that Kubernetes observed when switching from Go 1.7 to Go 1.8. The problem ended up being the addition of `net/http.Server.Shutdown` that's currently implemented by closing a channel that all the open connections select on.
(Details in https://gith... | Performance,compiler/runtime,Scalability | medium | Critical |
228,439,498 | rust | "consider adding an explicit lifetime bound `R: 'static" suggestion is misleading | Consider an (incorrect) code:
```rs
trait Foo {}
struct Bar<R>(R);
impl<R> Foo for Bar<R> {
}
fn bb<R>(r: R) -> Box<Foo> {
Box::new(Bar(r))
}
fn main() {
let a = 10;
let _b = bb(&a);
}
```
Rustc suggests:
```
consider adding an explicit lifetime bound `R: 'static`
```
This ... | C-enhancement,A-diagnostics,A-lifetimes,T-compiler,A-suggestion-diagnostics,D-newcomer-roadblock,D-invalid-suggestion,A-trait-objects | low | Major |
228,478,772 | go | cmd/compile: trim more blocks? | In ssa/trim.go, func emptyBlock, the only op that counts as not generating instructions is OpPhi. But OpVarDef, OpVarKill, OpVarLive, and OpKeepAlive could probably qualify as "not generating instructions" as well. This would allow trimming more blocks.
cc @randall77 | Performance,compiler/runtime | low | Minor |
228,484,882 | go | cmd/compile: lay out loop-free, likeliness-free control flow more compactly | ```go
package p
func f() int {
x := 0
for i := 0; i < 10; i++ {
odd := 0
if i%2 == 0 {
odd = 2 // not 1, otherwise this branch gets optimized away!
}
x += odd
// Distract the layout pass with a bunch of loops.
for j := 0; j < 10; j++ {
for j := 0; j < 10; j++ {
for j := 0; j < 10;... | Performance,compiler/runtime | medium | Major |
228,497,806 | vscode | Marked brackets range on scrollbar | - VSCode Version:1.12.1
- OS Version:Linux
Steps to Reproduce:
1. Click on the code, inside the brackets.
2. Marked brackets range on scrollbar.
Internal bracket marked with a main color.
External brackets in gray (all). Same with more nesting brackets.
.
I've tried to condense the reproduction sample as much as possible, without it being utterly abstract:
```rust
use std::io::Result;
use std::fmt::*;
pub trait CanDecode... | C-enhancement,A-diagnostics,A-lifetimes,A-trait-system,A-borrow-checker,T-compiler,D-confusing | low | Critical |
228,530,619 | electron | Allow ASAR to work with `child_process.spawn()` | > There are Node APIs that can execute binaries like child_process.exec, child_process.spawn and child_process.execFile, but only execFile is supported to execute binaries inside asar archive.
> This is because exec and spawn accept command instead of file as input, and commands are executed under shell.
> - http... | enhancement :sparkles: | medium | Critical |
228,550,011 | TypeScript | Transpile to multiple targets at once | By allowing multiple targets, transpilation speeds would be vastly improved for any project doing this already, as the AST only needs to be generated once. | Suggestion,Awaiting More Feedback | medium | Critical |
228,550,336 | TypeScript | lib.d.ts: members in CSSStyleDeclarations cannot be null per the spec | **TypeScript Version:** 2.2.1
**Code**
```ts
// with --strictNullCheck
document.body.style.fontFamily.toString() // this should always work, fontFamily cannot be null
document.body.style.fontFamily = null; // this should also work per the spec...
document.body.style.fontFamily = ""; // semantically same
... | Bug,Help Wanted,Domain: lib.d.ts | low | Minor |
228,582,334 | opencv | CMake-GUI doesn't allow multiple choices of CPU_BASELINE and CPU_DISPATCH | ##### System information (version)
- OpenCV => 3.2 30170512
- Operating System / Platform => Windows 10 64 bit
- CMake => 3.8.1
##### Detailed description

CMake-GUI doesn't allow multiple choices no... | feature,category: build/install | low | Minor |
228,643,165 | vscode | Can't see Newlines when Render Control Characters is turned on | <!-- Do you have a question? Please ask it on http://stackoverflow.com/questions/tagged/vscode -->
- VSCode Version: 1.12.1
- OS Version: Win 10 15063.296
Steps to Reproduce:
1. turn on render control chars in settings
```
"editor.renderControlCharacters": true
```
2. open a file with newlines
Expect to see s... | feature-request,editor-core | medium | Critical |
228,706,520 | flutter | Wish for one canonical place to edit the string that appears as "version" on the Play Store and App Store | Feature request: it would be nice to manage the version of an app through Flutter (have it somewhere in the flutter yaml file and be automatically reflected in both android and iOS builds).
| c: new feature,tool,a: release,P3,team-tool,triaged-tool | low | Major |
228,733,007 | youtube-dl | Site Support Request: http://www.schooltube.com/ (SchoolTube) | ## 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
---
... | site-support-request | low | Critical |
228,793,288 | flutter | Removing a plugin may make project unbuildable on iOS | I wanted to convert https://github.com/perlatus/flutter_zoomable_image from a plugin to a regular dart package (since it doesn't use any native code). That was more complicated than I thought. I expected to just do the following:
1. delete `android/` folder
1. delete `ios/` folder
1. remove `plugin` section from `... | platform-ios,tool,has reproducible steps,P2,found in release: 2.2,a: plugins,team-ios,triaged-ios | low | Critical |
228,829,841 | TypeScript | Report errors (and quickfixes) for incorrect JSDoc | **TypeScript Version:** nightly (2.4.0-dev.20170515)
**Code**
```ts
/**
* @param abcdeg A parameter
*/
function f(abcdefg: number) {
abcdeg;
}
```
**Expected behavior:**
Can fix spelling for either `abcdeg`.
**Actual behavior:**
Does not work in jsdoc. | Suggestion,In Discussion,Domain: JSDoc | low | Critical |
228,834,400 | rust | Add (a lot of) tests to rustdoc | Since we now have a more complete way to compare two HTML contents, I think we can now _**strongly**_ reinforce rustdoc's tests (which are a bit weak and lacking for now).
cc @rust-lang/docs | A-testsuite,T-rustdoc,C-tracking-issue | low | Major |
228,951,882 | vscode | VS Code keyboard shortcuts suggestion to learn | Keyboard shortcuts are central part of VS Code, there are a lot of them and I think I use only a fraction of them. It would be awesome if VS Code could suggest what shortcut should I learn, based on how I use the app with mouse. For example if I click between editors a lot, then VS Code could somehow tell me to use `c... | feature-request,keybindings | high | Critical |
228,977,048 | youtube-dl | site support request "Numero 23" french TV | ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.05.09*. 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.
- [ ] I've **verified** ... | site-support-request,geo-restricted | low | Critical |
229,053,060 | realworld | Challenge: Search | Search is the lifeblood of any good app worth its salt. Perhaps we can consider putting up an "extra credit" challenge to add the ability to search text in posts, tags, authors.
| Status: RFC,v2 changelog | low | Major |
229,082,798 | flutter | CI should check that flutter/packages uses the template where possible | We could diff against the output of flutter create --plugin (with allowed exceptions for files that are normal to differ like main.dart, Info.plist, etc.) to ensure that they stay in sync with master.
This would have caught #10106 as well as a similar issue we saw in April with the hello_services sample. | team,package,team-ecosystem,P2,triaged-ecosystem | low | Major |
229,122,843 | go | go/build: does not support examples that use cgo | While prototyping a library to work around #13656, I ran in to a pretty major issue with the godoc tool. It doesn't generate any documentation at all for packages whose tests use cgo, which implies that packages designed for use with cgo *cannot* contain idiomatic examples.
```
bcmills:~/src$ go version
go versio... | help wanted,NeedsInvestigation | low | Minor |
229,156,144 | rust | Result-based error handling optimizes very poorly for large payloads | The overhead seems to mostly be extra memcopies.
## Method
I tested three cases:
* `direct() -> Result<Huge, ()>`
* `direct_boxed() -> Result<Box<Huge>, ()>`
* `indirect(&mut Huge) -> Result<(), ()>`
<details>
<summary>Click For Code</summary>
```rust
#![feature(test, box_syntax)]
extern crate tes... | I-slow,C-enhancement,T-compiler,A-error-handling,C-optimization | low | Critical |
229,223,671 | kubernetes | Hook initContainers into lifecycle | **Is this a BUG REPORT or FEATURE REQUEST?** (choose one): FEATURE REQUEST
**Kubernetes version** (use `kubectl version`):
```
Client Version: version.Info{Major:"1", Minor:"6", GitVersion:"v1.6.2", GitCommit:"477efc3cbe6a7effca06bd1452fa356e2201e1ee", GitTreeState:"clean", BuildDate:"2017-04-19T22:51:55Z", GoVersi... | kind/feature,sig/apps,lifecycle/frozen | low | Critical |
229,236,718 | youtube-dl | Can't download OnDemandKorea Plus Content | ## 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
---
... | geo-restricted,account-needed | low | Critical |
229,253,809 | opencv | Persistence: overflow for long values | ##### System information (version)
- OpenCV => Current head
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 2013
##### Detailed description
OpenCV cannot deserialize ``long long`` and truncates to int instead.
long long a; fs["element"] >> a;
does not compile because
> op... | RFC | low | Critical |
229,283,561 | go | cmd/internal/src: XPos.After doesn't necessarily match Pos.After | XPos.After (and XPos.Before) compares XPoses with different bases according to their base index, which is determined by the order they're added to the PosTable. I think this is worrying because we don't currently have any code in the compiler to ensure PosBase are registered in order.
Possible solutions I see:
1.... | NeedsInvestigation,compiler/runtime | low | Minor |
229,368,340 | opencv | cv::drawMarker should support sub-pixel precision using shift parameter | Most of OpenCV's drawing functions support sub-pixel precision using the `shift` parameter. It would be nice to add support for that to `cv::drawMarker` too. | feature,category: imgproc | low | Minor |
229,446,122 | flutter | `flutter doctor` has strange adb message (even though I'm not running anything) | I don't have Android Studio installed, nor any Android devices connected.
```
Framework • revision 10decc7c19 (27 hours ago) • 2017-05-16 21:30:46 -0700
Engine • revision 6fef702cfa
Tools • Dart 1.23.0-dev.11.11
Running "flutter packages upgrade" in posse_gallery... 7.7s
Running flutter doctor...
[✓] Flut... | platform-android,tool,t: flutter doctor,P2,team-android,triaged-android | low | Minor |
229,469,861 | TypeScript | Plugins - support a 'willSave' hook | Background angelozerr/tslint-language-service#32.
The tslint language server extension should support an option to auto fix lint rules with a fixer before a file is saved. The plugin API should support a willSave method that a plugin can use to perform an operation like auto fixing before the document is saved. In a... | Suggestion,Awaiting More Feedback | low | Major |
229,472,269 | rust | rustdoc: disambiguate between types of the same name | As an extension to #38414 and #39589, any hyperlinked reference to some type should be checked against everything within that crate - within any dependent crate too, if possible. This will help clear the confusion between the perennial problem types in std, `std::result::Result` and `std::io::Result` (and to a lesser e... | T-rustdoc,C-enhancement | medium | Major |
229,519,721 | go | doc: add screencast to docs | This is a tracking bug to add screencasts to the docs.
A brief draft of the content we want to cover with the screencasts, these are not sorted by priority at this moment - please contribute to the discussion of prioritization:
- Installation
- Platform dependent
- Environment set-up
- Platform dependent... | Documentation,NeedsInvestigation,DevExp | low | Critical |
229,574,038 | vscode | See git diff of two files in horizontal layout | I followed the thread of impementing horizontal window splitting, thank you for that.
I don't seem to be able to achieve the same effect with the git diff view:

Am I missing something? I know there's ... | feature-request,diff-editor | high | Critical |
229,618,058 | opencv | cudaDeviceSynchronize() affects multi-thread CUDA performance | ##### System information (version)
- OpenCV => any version (with CUDA support)
- Operating System / Platform => any platform (with Nvidia Graphics Card)
- Compiler => any cuda compiler
##### Detailed description
Here are some codes in functions that support `cv::cuda::Stream`:
```cpp
if (stream == 0)
CV... | bug,category: gpu/cuda (contrib) | low | Major |
229,744,458 | opencv | cuda::reprojectImageTo3D does not handle missing values | In the CPU version of `reprojectImageTo3D` there is an option to ignore (or handle) pixels where no disparity was calculated (giving them, for example, an enormous Z-value). This is useful for quick filtering of the output point cloud.
There is no such option in the CUDA version, but it should be fairly trivial to i... | feature,category: gpu/cuda (contrib) | low | Minor |
229,757,752 | go | cmd/compile: improve loop rotation | This is a follow-on to #20355 for the 1.10 cycle. See CL 43491 for more discussion of these points.
* Should we work from innermost loops out?
* Do we want to move contained loops?
* Do we want to reinstate some form of loop skipping?
* Other improvements?
See also #18977 and #20356.
cc @randall77 @dr2chase... | Performance,compiler/runtime | low | Minor |
229,759,579 | go | x/build: mention notable benchmark changes in Gerrit comment | I think it's going to be too easy to miss significant benchmark changes with the current state of things where the URL to perf.golang.org is always included in the final Gerrit comment.
I think the gerrit comment should also mention any notable changes.
/cc @quentinmit @josharian | Builders | low | Major |
229,837,263 | pytorch | Pad PackedSequences to original batch length | The current flow for handling variable length sequences in RNNs is:
```python
packed_input = torch.nn.utils.rnn.pack_padded_sequence(input, lengths)
packed_output = rnn(packed)[0]
output = torch.nn.utils.rnn.pad_packed_sequence(packed_output)
```
The output size of the Variable returned by pad_packed_sequence... | hackamonth,triaged,module: nestedtensor | low | Major |
229,944,198 | go | crypto/tls: customisable max TLS record size | Hi,
The default TLS record/chunk size is 16kB - and this is what golang uses (`maxPlaintext` in crypto/tls/common.go I think).
It would be useful if the max TLS record size was customisable via `Config`.
Use-case is we have memory restricted embedded devices (running mbed TLS) talking TLS to a golang server. T... | Proposal-Accepted,NeedsFix,Proposal-Crypto | medium | Critical |
229,965,628 | TypeScript | module: "system" and outFile generates wrong module names | <!-- 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.4.0-dev.2017... | Bug | low | Critical |
230,024,116 | youtube-dl | SITE REQUEST: pruffme.com webinars live video downloads | Hello dearest coders.
I want to ask you to code this pruffme.com site into YDL so it will get live feed to one .mp4 file, or what video format it has. The log:
R:\>youtube-dl.exe -F -v https://pruffme.com/a1eae7cd-662c-4938-9d19-2448fb34db0d
[debug] System config: []
[debug] User config: []
[debug] Custom config: ... | site-support-request | low | Critical |
230,059,034 | electron | Provide ffmpeg.so file that plays all common videos | Hey, I have been struggling with playing more than the few video codecs supported by electron by default. There are dozens of GitHub issues and posts somewhere else of people like me who are trying to get decent video support in electron. If I understand this correctly, the main issue is licensing. It's possible to com... | enhancement :sparkles: | low | Critical |
230,062,687 | create-react-app | Add Travis test with empty NODE_PATH | Since Travis tests run with `NODE_PATH` specified, it doesn't catch issues in code that does something wrong on empty `NODE_PATH`. We should add end-to-end tests for starting, building, and running tests with empty `NODE_PATH`. | contributions: up for grabs!,tag: internal,difficulty: medium | low | Minor |
230,122,637 | go | x/exp/shiny: allow bounded types for Deque | Calls to window.NextEvent() and the processing of the returned event all happen in the same goroutine. For paint and size events, this can cause Deque to congest with stale events.
Given the generic nature of type Deque, one method of addressing this is to allow declaring certain event types to be bounded, in that o... | NeedsInvestigation | low | Major |
230,166,596 | youtube-dl | Site Support Request: www.opsgility.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
---
... | site-support-request,account-needed | low | Critical |
230,190,103 | youtube-dl | OSError: [Errno 22] Invalid argument | ## 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
---
... | cant-reproduce | low | Critical |
230,200,839 | flutter | Shadow under Shrine app bar is darker than YouTube app bar shadow | Brought up by someone on Twitter. Here's a screenshot:

| framework,f: material design,a: fidelity,P2,team-design,triaged-design | low | Major |
230,238,277 | go | proposal: spec: add read-only slices and maps as function arguments | Background
---
I recently stumbled upon a bug and after hours of searching, I managed to find the culprit, which is a function that accidentally modifies the slice argument passed to it. The problem is that as I took several subsets of the original slice and gave them new identities, I forgot that they were still poi... | LanguageChange,Proposal,LanguageChangeReview | high | Critical |
230,340,520 | opencv | Why not use the default in FileNode::operator >> ? | <!--
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... | category: core,RFC | low | Critical |
230,340,780 | nvm | Documenting how to install NVM for all users | I needed a global install of NVM because I have some node based cron jobs and a few legacy applications that are rather picky about which version of node they are able to work on. For a time I worked around this by sourcing the nvm script everywhere but that seems to be a somewhat unmaintainable solution.
The requi... | root / multiuser issues | medium | Major |
230,436,756 | TypeScript | AllowJs and duplicate identifier | <!-- 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 -->
Potential bug, potential feature, depe... | Suggestion,Awaiting More Feedback,Domain: JavaScript | low | Critical |
230,453,383 | go | time: time.Local is always UTC on Android | initLocal() in zoneinfo_android.go is hard-coded to UTC: https://github.com/golang/go/blob/bc495c5751201854366b422e5a642ac55b42414a/src/time/zoneinfo_android.go#L43-L46
```golang
func initLocal() {
// TODO(elias.naur): getprop persist.sys.timezone
localLoc = *UTC
}
```
x/mobile currently uses a hack to set... | NeedsInvestigation | low | Major |
230,497,286 | angular | ReactiveForms: FormArray.at could return undefined | <!--
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 reque... | type: bug/fix,help wanted,freq1: low,area: forms,state: confirmed,cross-cutting: types,P4 | low | Critical |
230,497,539 | neovim | glob fails to expand wildcard with wildignorecase and a parent directory without read permission |
### Problem
With `wildignorecase` set (without `fileignorecase`) `glob` fails to expand `*` in a path when one of the parent directories does not have read access. Suppose I want to run `glob` on the expression `temp/test/*`, where `temp` does not have the read flag set, but `test` does.
This returns no results with `... | bug-vim,completion,filesystem | low | Minor |
230,541,357 | go | plugin: Add support for closing plugins | Adding support for closing plugins would give a simple way to do hot code reloading in long running applications like web servers.
This would add another method to `src/plugin/plugin.go` and a new file `src/plugin/dl_close.go` that would handle closing the dlhandle and destroying the go symbol map.
It would also ad... | FeatureRequest,compiler/runtime | high | Critical |
230,543,993 | kubernetes | CRI: Image IDs and references | CRI in its current state mostly passes an undefined image “string” when invoking image-related operations (e.g., pull, status, remove). I think it's time we revist to define/clarify better. Here are my thoughts:
Below is a list of terms used for
1. **Image ID**: A canonical, content-addressable image identifier. ... | area/api,sig/node,kind/feature,lifecycle/frozen | medium | Critical |
230,566,164 | TypeScript | Quick Fix: Suggest correct capitalization when importing a file with incorrect capitalization | <!-- 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.3
Mac do... | Suggestion,Domain: Quick Fixes,Experience Enhancement | low | Critical |
230,566,209 | neovim | feedkeys(.., 'x!') causes nvim to exit when stdin is /dev/null | - `nvim --version`: 0.2.0
- Vim (version: ) behaves differently? 8.0.0197
- Operating system/version: Debian GNU/Linux
### Actual behaviour
`call feedkeys('a', 'x!')`, in `Test_cursorhold_insert`, causes nvim to exit when stdin is `/dev/null`.
<details>
<summary>Stack trace when <code>read_error_exit()</code>... | bug,input | low | Critical |
230,652,760 | rust | Tracking issue for `step_trait` stabilization | Split off from https://github.com/rust-lang/rust/issues/27741 because the stabilization path for `step_by` has moved to being on iterators (https://github.com/rust-lang/rust/pull/41439), and thus not using the `Step` trait.
- [ ] Remove `step`, `steps_between`, and `is_negative` once Range::step_by is deleted
- [ ]... | T-libs-api,B-unstable,C-tracking-issue,A-iterators,Libs-Tracked | high | Critical |
230,758,944 | TypeScript | Determine when isDeclaration and isDeclarationName should check for special property assignments | **TypeScript Version:** nightly (2.4.0-dev.20170523)
Currently neither function handles special JS assignments such as `exports.x = ...`. We should review each case where we use these functions and see if special assignments need to be handled. | Infrastructure | low | Minor |
230,799,628 | TypeScript | Type narrowing with foo.constructor | **TypeScript Version:** 2.3.1
**Code**
```ts
class FooTask {
foo: number;
}
class BarTask {
bar: number;
}
type taskType = FooTask|BarTask;
function createEvent(task: taskType) {
if (task instanceof FooTask) {
task.foo; // Works.
}
switch (task.constructor) {
case FooTask:
... | Suggestion,Awaiting More Feedback | medium | Critical |
230,803,589 | opencv | OpenCVDetectCUDA.cmake doesn't detect properly CUDA ARCH types | When compiling opencv it takes ages on core i7 8x thread and I think the reason lies in nonfunctional OpenCVDetectCUDA.cmake file, which instead of detect single architecture pulls in all available:
`-gencode arch=compute_20,code=sm_20 -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode ar... | bug,priority: low,category: build/install,category: gpu/cuda (contrib) | low | Critical |
230,808,276 | vscode | PreLaunchTask: support passing parameters from configuration to preLaunchTask | Currently when invoking preLaunchTask, the only possible is the task name. It would be great if properties in the associated configuration can be passed to preLaunchTask.
Scenario:
I am writing a pre-launch task to automate remote node.js debugging. The pre-launch task will launch the node.js process remotely an... | feature-request,debug,tasks | high | Critical |
230,810,764 | TypeScript | Private Member Minification Design Proposal | **Problem:** For front end data binding frameworks such as Angular, Knockout, React, etc, making the choice to use typescript results in larger minified output files.
**Proposal:** Add a tsconfig option "minifyPrivateMembers" (default false)
**Details:**
Since front end binding frameworks can have references... | Suggestion,Needs More Info | medium | Critical |
230,838,893 | opencv | solvePnPRansac behavior wrt to the documentation | In OpenCV 3.2 (and since OpenCV 3.0), `solvePnPRansac` does not behave as we could expect after reading the corresponding [documentation](http://docs.opencv.org/3.2.0/d9/d0c/group__calib3d.html#ga50620f0e26e02caa2e9adc07b5fbf24e).
The function prototype is: `bool cv::solvePnPRansac(objectPoints, imagePoints, cameraM... | feature,category: documentation,category: calib3d | low | Critical |
230,875,938 | neovim | Lua: interrupt / cancel Lua code | There is a known issue both with Vim and Neovim: if you write an endless loop inside `:lua` then it can’t be interrupted. The lua itself handles the problem by simply running the following
```C
static void lstop (lua_State *L, lua_Debug *ar) {
(void)ar; /* unused arg. */
lua_sethook(L, NULL, 0, 0);
luaL_e... | enhancement,needs:design,input,lua | low | Critical |
230,905,923 | realworld | Validation Messages Spec | Looking at the API spec I noticed that the clients are expecting validation errors in the form of
```json
{
"errors":{
"body": [
"can't be empty"
]
}
}
```
However, I didn't see any specs about the validation messages expected. I think this would be helpful knowing what types of validation ... | issue in core repo,v2 | low | Critical |
230,933,605 | opencv | OpenCL optimization for Snapdragon830 GPU on android |
##### System information (version)
- OpenCV => 3.2.0
- Operating System / Platform => android/arm64-v8a
- Compiler => ninja, cmake parameters:
cmake <opencv-dir> -GNinja -DANDROID_ABI:STRING="arm64-v8a" -DANDROID_NDK:PATH=<ndk-bundle-dir> -DWITH_OPENCL:BOOL=ON -DBUILD_SHARED_LIBS:BOOL=OFF -DCMAKE_TOOLCHAIN_FILE... | feature,category: core,category: ocl | 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.