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 |
|---|---|---|---|---|---|---|
218,065,971 | vscode | showInputBox should have the ability to have an array of quickpick options as well | If you do showInputBox, you can receive input from a user.
If you do showQuickPick you can have the user choose from a list.
There is no way to receive input from a user AND show a list of choices.
If you try this with showQuickPick, and the user enters something that is not in the array, undefined is returned... | feature-request,api,quick-pick | medium | Critical |
218,123,569 | go | x/mobile: fix x/mobile/gl just like c opengl or go-gl | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
1.7
### What operating system and processor architecture are you using (`go env`)?
mac os
### What did you do?
migrate a program from pc to mobile
go get -u github.com/go-gl/glfw/v3.2/gl... | mobile | low | Minor |
218,125,893 | go | proposal: spec: relax structural matching for conversions | Currently, as of Go 1.8, one can convert between two identical types, A and B, defined as follows:
```
type A struct {
Foo int
}
type B struct {
Foo int
}
```
It is however not possible to convert between `[]A` and `[]B`, even though the memory layout of both slices is identical, and one has to resort ... | LanguageChange,Proposal,LanguageChangeReview | medium | Major |
218,171,701 | rust | support deeply nested coercions | It would be nice if this code were to compile:
```rust
struct Foo {
v: Vec<i32>
}
fn bar(f: &Foo, g: &[i32]) {
let x = match true {
true => {
match f {
&Foo { ref v } => &v,
}
}
false => {
g
}
};
pr... | A-type-system,C-enhancement,T-compiler,T-types | low | Major |
218,181,198 | TypeScript | Broken inference between index typed object and Record | **TypeScript Version:** 2.2.2
**Code**
```ts
interface Errors {
[field: string]: {
key: string
message: string
}
}
const errors: Errors = {}
function genericObjectFunction<K extends string, V>(obj: Record<K, V>): [K, V][] {
return []
}
/*
Argument of type 'Errors' is not assignab... | Suggestion,In Discussion | low | Critical |
218,228,389 | go | proposal: spec: add decimal float types (IEEE 754-2008) | I know there was a proposal about decimal as an std package.
But according to https://en.wikipedia.org/wiki/Decimal_floating_point, there have already been multiple compliant hardware implementations, and supported by several commonly used programming languages. I think having decimal as first-class citizen like the o... | LanguageChange,Proposal,LanguageChangeReview | high | Critical |
218,256,550 | go | runtime/pprof: provide memory mapping info on macOS | Noticed during google/pprof#120
https://github.com/golang/go/blob/master/src/runtime/pprof/proto.go#L370
depends on /proc/self/maps which results in missing memory mapping info in
profile data from non-linux system (e.g. OSX).
Provide it to help offline symbolization for non-Go symbols. | help wanted,NeedsFix,compiler/runtime | low | Minor |
218,339,470 | youtube-dl | [cloudy] unable to download video data: HTTP Error 403 | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.03.26**
- [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md)
- [x] [Searched](https://github.com/rg3/youtube-dl/search?type=Issues) the bugtracker for similar issues including closed ones
### Wh... | cant-reproduce | low | Critical |
218,354,596 | vscode | Several fonts at the same time for different elements of the code | Please create a way to give themes and/or users the possibility of using several fonts at the same time. Please check this article that describes how this is possible to achieve on the Atom editor.
https://medium.com/@peterpme/operator-mono-fira-code-the-best-of-both-worlds-191be512fd5e
In this example, this allo... | feature-request,editor-core | medium | Critical |
218,358,410 | go | database/sql: think about a std error / informational messages | Many databases support returning multiple errors, with each error containing a line number, text, and numeric code. I want to explore what it would take to define a standard error interface that could be used to unpack this information. A concrete use case is to 1000 line SQL block that errored, then show just the cont... | Thinking | low | Critical |
218,363,074 | react | Define specific browser support guidelines | As it stands the only real solid guideline we have for browser support is that we support IE9+. But there are so many other outdated browser versions that are unreasonable to support or worry about.
It would be useful if we had more specific guidelines on what browsers we should target. Does Safari on iOS 3 matter? ... | Component: DOM,Type: Discussion | low | Major |
218,419,971 | youtube-dl | New Adobe Pass Provider Support (Mediacom) | ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.03.26*. If it's not read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected.
- [x] I've **verified** ... | tv-provider-account-needed | low | Critical |
218,510,040 | angular | AbstractControl.valueChanges event fires without respect on current disabled/enabled state |
**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... | freq1: low,area: forms,type: confusing,forms: Controls API,P4 | low | Critical |
218,553,580 | kubernetes | kubelet counts active page cache against memory.available (maybe it shouldn't?) | <!-- Thanks for filing an issue! Before hitting the button, please answer these questions.-->
**Is this a request for help?** (If yes, you should use our troubleshooting guide and community support channels, see http://kubernetes.io/docs/troubleshooting/.):
No
**What keywords did you search in Kubernetes issue... | sig/node,kind/feature,lifecycle/frozen | high | Critical |
218,572,012 | vscode | Allow project specific keybindings | same as the settings.json, I should be able to specify a local keybindings.json that overrides user keybindings and global keybindings.
A prompt alerting the user to the override and asking which to use might be appropriate. | feature-request,keybindings | high | Critical |
218,609,153 | go | cmd/internal/obj/arm: should not put instruction encoding into Reloc.Add | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
### What operating system and processor architecture are you using (`go env`)?
Whatever the trybots for linux-arm are using
### What did you do?
Built a sample file with -N -l then att... | NeedsFix | low | Major |
218,610,636 | flutter | Unify doctor checks and code that locates binary artifacts (executables, sdks) | A lot of the tool presence/version checks we perform in `flutter doctor` would be useful to perform before steps that involve invocation of those tools.
Examples from the iOS side include checking Xcode and CocoaPods presence/version and presence of the Python six module before iOS build/run.
One option would be ... | tool,t: flutter doctor,a: first hour,P3,team-tool,triaged-tool | low | Minor |
218,638,547 | go | proposal: spec: add typed enum support | I'd like to propose that enum be added to Go as a special kind of `type`. The examples below are borrowed from the protobuf example.
### Enums in Go today
```
type SearchRequest int
var (
SearchRequestUNIVERSAL SearchRequest = 0 // UNIVERSAL
SearchRequestWEB SearchRequest = 1 // WEB
SearchRequestIMAGE... | LanguageChange,Proposal,LanguageChangeReview | high | Critical |
218,701,015 | go | cmd/compile: avoid copying if copied value isn't modified | Go 1.8 emits unnesessary value copyings in the following code (didn't test go tip yet, but it is likely it has the same behaviour):
```go
func sum(p *[1000][1000]int) int {
s := 0
a := *p // copy a million of ints
for i := range a { // possible copy
b := a[i] // copy a thousand of ints
for j ... | Performance,compiler/runtime | low | Major |
218,702,499 | go | cmd/compile: share statictmp | Hello,
i have 2 file,
one ==> a go file with 10000 time repeat : `fmt.Print("...........\n")`
two ==> a c(gcc) file with 10000 time repeat : `printf("...........\n");`
size of output c is about 200kb.
size of output go is 50mb.(also long time need for build...)
| Performance,compiler/runtime | low | Major |
218,708,174 | opencv | Locality Preserving Projection (LPP) | Their appears not to be a built in LPP functions like PCA or LDA!
Locality Preserving Projection (LPP) are described here: https://newtraell.cs.uchicago.edu/files/tr_authentic/TR-2002-09.pdf
My motivation behind this is to facilitate the writing of a Laplacianfaces implementation as described here: http://scholar... | feature,category: core | low | Minor |
218,727,077 | vscode | Line height and font size are too large by default | <!-- Do you have a question? Please ask it on http://stackoverflow.com/questions/tagged/vscode -->
- VSCode Version: 1.10.2
- OS Version: win10 x64
My monitor native resolution is 1920x1200
<br>
When opening any file in VSCode, it shows only **56 lines** at any time.
I feel that the current line height and ... | feature-request,editor-core,config | low | Major |
218,757,675 | neovim | 'guicursor' does not reflect guifg/gui highlights | - `nvim --version`: NVIM v0.2.0-1147-g58422f17d
- Vim (version: ) behaves differently? N/A
- Operating system/version: Archlinux
- Terminal name/version: gnome-terminal
- `$TERM`: gnome-256color
### Actual behaviour
The cursor does not seem to pick up `guifg` and `gui` settings. Also the original cursor se... | bug,ui,complexity:low,options | low | Major |
218,767,211 | youtube-dl | [Feature Request] Change playback speed of downloaded files | ## Please follow the guide below
- You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *issue* (like that [x])
- Use *Preview* tab to see how your issue will actually look like
---
... | request | low | Critical |
218,948,131 | flutter | Add a Theme.merge that implements the logic of the main ThemeData constructor | "changing the accent color on an input on one screen is complicated" was feedback offered about our theming system.
Ian says on solution here would be to add a copyWith constructor onto theme?
Did I capture that correctly @Hixie? | c: new feature,framework,f: material design,customer: posse (eap),c: proposal,P2,team-design,triaged-design | low | Major |
218,954,022 | go | all: test that all examples run on golang.org, i.e. the playground | Right now, examples are only run via `go test` by the trybots. That checks whether or not they run as tests, but it doesn't check if they run in the playground.
For instance, see #19823. That example depends on its own test file, `example_test.go`. That will be available if one runs `go test`, but not if one presses... | Testing,help wanted,NeedsFix | low | Major |
218,963,108 | pytorch | Batched sparse QR factorizations and solves with cusolver | These should significantly speed up [qpth](https://github.com/locuslab/qpth) in some cases when sparse matrices can be used. Here is a [cusolver reference](http://docs.nvidia.com/cuda/cusolver/#cusolver-lt-t-gt-csrqrbatched) on these functions. This issue depends on the other core sparse functions being added (I think ... | module: sparse,feature,triaged,module: linear algebra,Stale | low | Major |
219,009,172 | angular | Platform Server - Attach cookies to HTTP requests | <!--
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 request... | type: bug/fix,freq2: medium,area: server,area: common/http,P3 | high | Critical |
219,016,922 | opencv | Crash when calling imencod with exr from multiple threads | <!--
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... | bug,priority: low,category: imgcodecs | low | Critical |
219,042,896 | go | x/mobile: reverse and swift | 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`)?
x-MacBook-Pro:gosync apple$ go env
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="da... | mobile | low | Critical |
219,047,345 | rust | LUB of a bivariant parameter is not fully general | In https://github.com/rust-lang/rust/pull/40570, I removed bivariance somewhat aggressively. One area where we are not *quite* doing the right thing, it appears, is when computing the LUB/GLB of a bivariant type parameter. The code currently just picks one side, which seems clearly wrong, but I was [not able to craft a... | I-needs-decision,T-compiler,C-bug | low | Minor |
219,055,529 | TypeScript | Control application of insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets for Array Literal vs Array Access Expression | _From @atian25 on March 28, 2017 0:25_
- VSCode Version: Code 1.10.2 **[Unsupported]** (8076a19fdcab7e1fc1707952d652f0bb6c6db331, 2017-03-08T13:56:35.908Z)
- OS Version: Darwin x64 16.3.0
- Extensions:
|Extension|Author|Version|
|---|---|---|
|output-colorizer|IBM|0.0.11|
|vscode-file-peek|abierbaum|1.0.1|
|... | Suggestion,Help Wanted,Domain: Formatter,VS Code Tracked | low | Critical |
219,075,376 | kubernetes | API-Linter: Add a verifier script using gengo to enforce API policies | Right now we have several generator scripts (openapi-gen, deepcopy-gen, etc.) that look at the code and generate types/functions. This infrastructure can be used to look at all API types and enforce some policies such as optional fields to be pointer, etc. Please add the policies you want this verifier to enforce in th... | sig/api-machinery,lifecycle/frozen | low | Major |
219,082,718 | angular | FormGroup reset() doesn't reset custom form control | <!--
IF YOU DON'T FILL OUT THE FOLLOWING INFORMATION WE MIGHT CLOSE YOUR ISSUE WITHOUT INVESTIGATING
-->
**I'm submitting a ...** (check one with "x")
```
[x ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support reques... | type: bug/fix,freq1: low,area: forms,state: confirmed,forms: ControlValueAccessor,P4 | medium | Critical |
219,128,045 | go | cmd/cgo: C code with function taking pointer typedef leads to C compiler warning | Building this file gets a warning from the C compiler:
package main
// typedef struct { int i; } *PS;
// void F(PS p) {}
import "C"
func main() {
C.F(nil)
}
The warning I see is:
# command-line-arguments
cgo-gcc-prolog: In function ‘_cgo_0164fa09626e_Cfun... | help wanted,NeedsFix,compiler/runtime | low | Minor |
219,177,385 | TypeScript | Unable to specify return type of class extends T implements IFooable | <!-- 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.1 / night... | Suggestion,In Discussion | low | Critical |
219,210,696 | angular | Leave animation not running in a nested animation of a child component | **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,area: animations,freq3: high,P3 | medium | Critical |
219,230,600 | rust | Get rid of the "rust-call" hack | *Based on https://github.com/rust-lang/rfcs/pull/1921#issuecomment-282164515*
Currently, we fake variadics by defining functions with the `rust-call` ABI. These functions receive a tuple as parameter (of arbitrary arity and types), but in their ABI the tuple is expanded. It would be great to get rid of this hack and... | C-cleanup,A-closures,T-compiler | low | Major |
219,284,568 | go | cmd/cgo: type error when using pointers to C functions | If I try to pass a C function pointer back to C from Go, I get a type error. It appears that cgo is mapping the function pointer type to `*[0]byte` (since there isn't a direct way to express C function-pointer types in the Go type system), but it isn't inserting the correct type conversions when referring to function-... | compiler/runtime | low | Critical |
219,286,224 | go | cmd/cgo: link error when using pointers to static C functions | If I try to pass a pointer to a static C function, I get a link error.
cgocallback/main.go:
```go
package main
/*
#include <stdio.h>
static void invoke(void (*f)()) {
f();
}
static void print_hello() {
printf("Hello, !");
}
typedef void (*closure)(); // https://golang.org/issue/19835
*/
impo... | help wanted,NeedsFix,compiler/runtime | low | Critical |
219,290,431 | go | cmd/cgo: emit forward-declarations for cgo-exported Go functions | I'm trying to pass a Go function as a C function pointer.
I expect to be able to do that by exporting the Go function to C, then passing the C name of the Go function:
```go
package main
/*
static void invoke(void (*f)()) {
f();
}
typedef void (*closure)(); // https://golang.org/issue/19835
*/
impor... | help wanted,NeedsFix | low | Critical |
219,390,939 | rust | Rustdoc impl blocks refer to private names | The [`flate2`](https://docs.rs/flate2/0.2.17/flate2/) crate is structured roughly like this:
```rust
mod gz {
pub struct EncoderReader;
impl EncoderReader {
pub fn new() -> EncoderReader {
unimplemented!()
}
}
}
pub use gz::EncoderReader as GzEncoder;
```
The ... | T-rustdoc,C-bug,A-local-reexports | low | Major |
219,403,248 | flutter | Improve flutter build latency on iOS | `flutter build ios` takes 30+s on my monster mac pro. Would be nice to get it faster.
Some candidates:
100+ms to read the CFBundleIdentifier from the project
1000+ms to print the build settings to do some variable substitution. Maybe we can cache this.
400+ms to check cocoapods version. Maybe we can ask for forgi... | platform-ios,tool,c: performance,platform-mac,t: xcode,P2,team-ios,triaged-ios | low | Minor |
219,411,439 | nvm | nvm doesn't understand error HTTP codes, like 522 | - Operating system and version:
OS X latest, Ubuntu 16.04
- `nvm debug` output:
<details>
<!-- do not delete the following blank line -->
```sh
nvm --version: v0.33.1
$SHELL: /bin/zsh
$HOME: /home/docwhat
$NVM_DIR: '$HOME/.nvm'
$PREFIX: ''
$NPM_CONFIG_PREFIX: ''
... | installing node | low | Critical |
219,420,170 | flutter | Optimize the animation phase's performance | #9138 caused a 0.4ms average frame draw latency increase on flutter_gallery_ios__transition_perf's average_frame_build_time_millis and 1500ms regression on microbenchmarks_ios's stock_build_iteration.
Suspect due to there being 2 SlideTransitions instead of 1. | framework,a: animation,c: performance,P3,team-framework,triaged-framework | low | Major |
219,448,643 | electron | API to access localStorage in the main process | I expect some apis to get, set and remove localStorage data, just like those apis of cookies.
Here are apis of cookies:
```
ses.cookies.get(filter, callback)
ses.cookies.set(details, callback)
ses.cookies.remove(url, name, callback)
```
Expected apis of localStorage
```
ses.localStorage.get(filter, callbac... | enhancement :sparkles: | high | Critical |
219,474,368 | rust | Confusing type error due to strange inferred type for a closure argument | This [example](https://play.rust-lang.org/?gist=e1edb587259e492444d69d63f2052537&version=nightly&backtrace=0):
```rust
pub struct Request<'a, 'b: 'a> {
a: &'a (),
b: &'b (),
}
pub trait Handler: Send + Sync + 'static {
fn handle(&self, &mut Request) -> Result<(),()>;
}
impl<F> Handler for F where... | A-type-system,C-enhancement,A-diagnostics,P-medium,A-closures,T-compiler,A-inference,D-confusing,D-newcomer-roadblock,T-types | medium | Critical |
219,492,991 | three.js | Object3D clone userData exception | When calling `Object3D.clone()` I get an exception `a.geometries is undefined` at `Object3D.toJSON` method line 11028. In my Object3D instance I try to clone, I also store a reference to the `Scene` object in the `userData` property.
As far as I can see, the exception appears since `Object3D.clone()` tries to copy t... | Suggestion | low | Critical |
219,508,922 | vscode | Symbol outline multi-line highlight is visually inconsistent when interleaved with code lens | If the symbol outline is highlighting an entry that spans multiple lines and there is a code lens within that range, the code lens line is not highlighted. See attached image.
It seems like the code lens line should also be highlighted in the same color.
- VSCode Version: 1.10.2, happens on 1.11 insiders as well.... | feature-request,ux,editor-core | low | Minor |
219,520,671 | youtube-dl | [bilibili]Can't support a video containing many pages. | ---
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.04.03*. 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 **veri... | request | low | Critical |
219,721,368 | vscode | [Feature] Option to disable cmd+click trigger for goToDefinition | Starting ~2 weeks ago, I have been plagued by this feature. Somehow I manage to trigger this feature about 60% of the time when I am trying to copy+paste. It is the same issue as reported here, but in the editor so am creating this ticket as suggested by @bpasero .
https://github.com/Microsoft/vscode/issues/7827#iss... | feature-request,editor-core | high | Critical |
219,793,404 | vscode | Keyboard mappings with `setxkbmap` on Linux not working | - VSCode Version: 1.11.0
- OS Version: Ubuntu 16.04
I have my Caps Lock key bound to Escape using `setxkbmap` on Linux. This worked fine till 1.10, but broke with 1.11. At first I thought it was an issue with the VSCodeVim extension, but the issue persists with all the other Vim extensions on the marketplace as wel... | bug,help wanted,keybindings,linux | high | Critical |
219,879,026 | vscode | Neo keyboard layout: Some Keys stopped working | - VSCode Version: Code 1.11.0 (9122ec4b1068bd391e41974f46a4b54c1b9c90f9, 2017-04-05T21:13:24.700Z)
- OS Version: Linux x64 4.4.0-72-generic
---
Steps to Reproduce:
1. Install and activate [Neo](https://en.wikipedia.org/wiki/Keyboard_layout#Neo) keyboard layout
2. Open any source file in VS code
3. Put curso... | bug,help wanted,linux,keyboard-layout | medium | Critical |
219,880,161 | TypeScript | Suggestion: one-sided or fine-grained type guards | ## The Problem
User-defined type guards assume that *all* values that pass a test are assignable to a given type, and that *no* values that fail the test are assignable to that type. This works well for functions that strictly check the type of a value.
```ts
function isNumber(value: any): value is number { /* .... | Suggestion,Awaiting More Feedback | high | Critical |
219,981,192 | rust | `rustc` fails to see a bound that is present, but also requires that the bound not be present | In certain cases, `rustc` will emit an error message on what appears to be valid code, claiming that
- a bound that is present is not present, and must be present
- but the bound is present and must not be present
Here is a MWE (or [playground](https://is.gd/mHDB4C)):
```
trait Foo<T> { type Quux; }
trait Bar<B... | A-trait-system,A-associated-items,T-compiler,C-bug,A-lazy-normalization,fixed-by-next-solver | low | Critical |
219,981,802 | awesome-mac | Replace icon with descriptions | The icons on the page may seem nice, but filtering or searching based on them is impossible unless you go directly to the markdown.
![Open-Source Software][OSS Icon] means **open source**, click to enter **open source** repo;
![Freeware][Freeware Icon] means **free** to use, or **free** personal license; ... | vote | low | Major |
220,039,759 | go | cmd/compile: possible infinite recursion in Type.cmp | If two of the types in fixedbugs/bug398.go make it into the backend and get passed to Type.cmp, they can cause infinite recursion. See https://go-review.googlesource.com/c/39710/ patch set 3 for a roundabout example.
It is non-obvious how to fix this, because if we detect infinite recursion, how should the types com... | NeedsInvestigation,compiler/runtime | low | Critical |
220,053,279 | godot | WindowDialog Drag Panel not visible | The drag panel is not visible with pos(0,0) is this intended?
Why is the origin not at the top left of the panel?

1. Add WindowDialog.
2. Run Game.
3. Try to drag the WindowDialog.
Edit:
Looks lik... | discussion,topic:gui | low | Minor |
220,063,855 | youtube-dl | [GameStar] ERROR: 92640: Failed to parse JSON (caused by JSONDecodeError('Invalid control character at...') | ## 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 |
220,089,384 | go | encoding/asn1: cannot unmarshal SET if its fields have different ordering | Please answer these questions before submitting your issue. Thanks!
#### What did you do?
If possible, provide a recipe for reproducing the error.
A complete runnable program is good.
A link on play.golang.org is best.
```go
package main
import (
"encoding/asn1"
"fmt"
)
type A struct {
Name string
... | NeedsInvestigation | low | Critical |
220,092,144 | rust | NVPTX: "LLVM ERROR: Cannot select" when translating `num::from_str_radix` | ### STR
```
$ rustc libcore/lib.rs
LLVM ERROR: Cannot select: 0x7f1356ad1170: i64,ch,glue = NVPTXISD::LoadParam<LDST0[<unknown>](align=8)> 0x7f13567aa6c0:1, Constant:i32<1>, Constant:i32<1454182880>, 0x7f13567aa6c0:2
0x7f13567aac00: i32 = Constant<1>
0x7f1356ad18e0: i32 = Constant<1454182880>
0x7f13567aa6... | A-LLVM,T-compiler,O-NVPTX,C-bug | low | Critical |
220,099,330 | go | crypto/tls: Dial returns io.EOF | If the server closes the connection before handshake completes, net/tls returns a non-descriptive error "EOF".
https://play.golang.org/p/zI-MazOG7v
Also locally go version go1.8 darwin/amd64
This may be same as https://github.com/golang/go/issues/13523#issuecomment-167636935 @rsc @bradfitz .
### What did y... | NeedsDecision | low | Critical |
220,323,300 | neovim | Remove code which uses locale dependent is*()/to*() libc functions | Currently there are a number of places where libc functions like islower()/etc (those from `ctype.h`) are used. The problem is that all our strings are UTF-8 ones and nobody bothered to set locale to UTF-8, so functions are only more or less safe to use for ASCII only (not safe at all if encoding happens to be not-ASCI... | refactor,localization,encoding,complexity:low | low | Critical |
220,359,406 | rust | Error message when VS 2015 build tools exist but not the SDK needs to be better | Today on Widows we tell users to install the MSVC 2015 build tools and the Windows SDK. If they install the build tools but not the Windows SDK they just get a mysterious linker error. It would be preferable to detect this situation and print a purpose-specific error. | C-enhancement,A-diagnostics,T-compiler,O-windows-msvc,E-help-wanted | low | Critical |
220,360,449 | go | database/sql: resurrect go-sql-test with modern container things | https://github.com/bradfitz/go-sql-test was an effort to automate testing of database/sql against all of the out-of-tree database drivers.
Nowadays there are many more drivers: https://golang.org/wiki/SQLDrivers
But https://github.com/bradfitz/go-sql-test is old & neglected & broken. It predates Dockers (by about... | Testing,help wanted | low | Critical |
220,377,652 | youtube-dl | Please Add MultiThread For Download Youtube Fragments | ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.04.03*. 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** ... | request | low | Critical |
220,378,425 | go | encoding/asn1: marshaling GeneralizedTime and UTCTime don't follow DER restriction | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
### What operating system and processor architecture are you using (`go env`)?
### What did you do?
If possible, provide a recipe for reproducing the error.
A complete runnable progr... | NeedsInvestigation | low | Critical |
220,388,177 | rust | `!` in Fn types | I've encountered the following issue ([playpen link](https://is.gd/E8Ae7Y)):
```rust
use std::process::exit;
fn main() {
let stuff = get_stuff().unwrap_or_else(exit); // ERROR
let stuff = get_stuff().unwrap_or_else(|e| exit(e)); // WORKS
let stuff = get_stuff().unwrap_or_else(|e| { exit(e); }); ... | A-type-system,T-compiler,C-feature-request,T-types | low | Critical |
220,388,958 | opencv | cv::randn generates unexpected result for multivariate Gaussian distribution | <!--
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 |
220,394,531 | youtube-dl | Subtitles present in browser not downloaded (viafree.no) | $ youtube-dl -v --write-sub --sub-lang en,no https://www.viafree.no/programmer/underholdning/paradise-hotel/sesong-9/episode-1
[debug] youtube-dl version 2017.04.03
[debug] Python version 2.7.10 - Darwin-16.5.0-x86_64-i386-64bit
[debug] exe versions: ffmpeg 3.2.2, ffprobe 3.2.2, rtmpdump 2.4
[ff... | geo-restricted | low | Critical |
220,403,579 | neovim | guicursor doesn't take affect after set all& | Starting nvim with `build/bin/nvim -u NONE` in an `xterm`. Then run
```
set guicursor?
set all&
set guicursor?
```
You can see the value has changed, but the affect doesn't change.
Running
```
set guicursor&
```
changes the affect, but it doesn't change the value observed with `set guicursor?`
| bug,complexity:low,core,options | low | Minor |
220,408,353 | three.js | Time warping bug in AnimationAction.crossFadeTo() and AnimationAction.crossFadeFrom() | After crossfading with time warping the timeScale value of the start action is not reset.
To reproduce the problem try [this example](https://rawgit.com/jostschmithals/three.js/crossfadeBugTest/examples/crossfadeTest.html) which is using [this animation code]( https://github.com/jostschmithals/three.js/blob/crossfad... | Needs Investigation | low | Critical |
220,442,083 | kubernetes | Removing flags at the end of their deprecation period is rarely easy | Removing deprecated flags is annoying because a number of components typically aren't kept up to date when the flags are initially deprecated - and it typically falls to the person doing the removal to fix these components.
Off the top of my head:
- Provisioning scripts are rarely kept up to date until it's time to... | area/test,area/api,priority/important-longterm,sig/architecture,lifecycle/frozen | low | Major |
220,473,335 | TypeScript | Add refactoring action to export selected JSX code as stateless component | Please add refactoring action that will improve productivity while working with JSX/TSX. Suppose that I have the following code:
```ts
class Page extends React.Component {
render() {
return (
<div>
<h1>{this.props.header}</h1>
</div>
);
}
}
``... | Suggestion,Domain: Refactorings,Experience Enhancement | low | Major |
220,494,334 | youtube-dl | OmniTV.ca Videos Get Stuck | ## 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 | low | Critical |
220,526,218 | vscode | SCM - Support workspace diff navigation | - Please improve the source control view by making it searchable, folder-wise grouping, bulk select.
- Allowing to write git commands right there would be great.
- Keyboard shortcuts to navigate through changed files
| feature-request,scm | high | Critical |
220,534,580 | rust | rustc: Disable color codes in non-tty terminal environments | When `rustc` is invoked from non-tty shell contexts, such as being piped to less `rustc ... | less`, or when `rustc` is run from an Emacs or Vim terminal, then terminal codes like `$<2>` should not be emitted on compiler messages. | A-frontend,C-enhancement,T-compiler | low | Minor |
220,544,296 | vscode | Support args for `editor.action.trimTrailingWhitespace` command | - VSCode Version: 1.11.1
- OS Version: Windows 10 Pro
## Feature Request
Support 2 additional args for the `editor.action.trimTrailingWhitespace` command:
```js
commands.executeCommand(
'editor.action.trimTrailingWhitespace',
uri, // (optional, but useful when the doc in question is not within an acti... | feature-request,api | low | Minor |
220,570,187 | opencv | Compilation error:Segmentation fault (core dumped) CMake Error at cuda_compile_generated_pyrlk.cu.o.cmake:266 (message): with current master branch | ```
System information (version)
- OpenCV => 3.2
[opencv cmake-result.txt](https://github.com/opencv/opencv/files/909411/opencv.cmake-result.txt)
- Operating System / Platform => ubuntu 16.04 64 Bit
- Compiler => gcc version 5.4.0 20160609
configure command:
cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL... | bug,priority: low,category: gpu/cuda (contrib) | low | Critical |
220,576,256 | kubernetes | clientset interface functions deprecated | Since we mark functions of clientset interface such as Core(), Autoscaling().... as deprecated, should we change all the calling of Core() to specific version like CoreV1() ... ?
https://github.com/kubernetes/kubernetes/blob/master/pkg/client/clientset_generated/clientset/clientset.go
| kind/cleanup,sig/api-machinery,lifecycle/frozen | low | Major |
220,657,401 | go | x/tools/refactor/rename: bad positions in "ambiguous specifier" error message | In directory `$GOROOT/src`:
```
$ gorename -from \"cmd/internal/obj/arm64\"::c -to ___ -d
gorename: ambiguous specifier c matches var at asm7.go:6, var at asm7.go:6, var at asm7.go:2, var at asm7.go:5, var at asm7.go:43, var at asm7.go:2
```
The positions here are bogus; there is no object c at any of these pl... | Tools,Refactoring | low | Critical |
220,680,336 | go | x/crypto/ssh/terminal: ReadPassword doesn't work on redirected stdin giving inappropriate ioctl for device | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
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=... | NeedsInvestigation | medium | Critical |
220,702,216 | angular | Feature: provide a way to dispose DetachedRouteHandle | <!--
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 here, i... | feature,area: router,feature: under consideration,feature: votes required | medium | Critical |
220,736,184 | rust | lldb print error and crash | I tried to debug wth lldb this code:
```
use std::collections::HashMap;
#[derive(Debug)]
enum En<'a> {
None,
Bar(&'a Bar<'a>),
}
#[derive(Debug)]
struct Bar<'a> {
next: En<'a>,
}
fn main() {
let mut all_objects = HashMap::new();
let bar: Bar = Bar {
next: En::None,
... | A-debuginfo,T-compiler,C-bug | low | Critical |
220,744,657 | flutter | Would like an example of how to do lazy network fetch and caching with a ListView | This came up twice today. Once from @collinjackson (in the context of firebase storage) and once from @kleak over gitter in the context of writing a chat app with history scrolling.
Seems an example showing how to do lazy fetching from a web service and wires that into an infinitely scrolling ListView with some cac... | framework,f: scrolling,d: api docs,d: examples,customer: crowd,P3,team-framework,triaged-framework | low | Major |
220,790,182 | flutter | Make "Slow Mode" ribbon interactive, showing a message that explains what it is | Tap slow mode banner: tapping it should make a dialog appear with information about debug mode. | c: new feature,framework,from: study,P3,team-framework,triaged-framework | low | Critical |
220,850,550 | opencv | GPUMat is not available in Java bindings of OpenCV | <!--
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,priority: low,category: gpu/cuda (contrib) | low | Critical |
220,912,820 | react | A number input will always have left pad 0 though parseFloat value in onChange | **Do you want to request a *feature* or report a *bug*?**
bug
**What is the current behavior?**
I have a number input with defalut value 0 and in onChange function I'll parse value to float to avoid invalid input, but I'll always get left pad 0 on input UI. But in previouse version, my code works.
**If the curr... | Type: Bug,Component: DOM | medium | Critical |
220,923,741 | neovim | vpeekc_any() appears superfluous in nvim | `vpeekc_any()` calls `vpeekc()`, then if it gets `NUL` from it and if `typebuf.tb_len > 0` it returns `ESC` instead.
The comments above this function say it's becase
> * Trick: when no typeahead found, but there is something in the typeahead
> * buffer, it must be an ESC that is recognized as the start of a key code... | refactor | low | Minor |
220,960,127 | vscode | [folding] Folding HTML tags should hide the closing tag. | <!-- Do you have a question? Please ask it on http://stackoverflow.com/questions/tagged/vscode -->
- VSCode Version: 1.11.1
- OS Version: Windows
instead of showing:
< div ... >
< /div>
just show
< div ...>
when folded
| feature-request,editor-folding | medium | Critical |
220,984,327 | go | runtime: crash in hybrid barrier initializing C memory | Received report via email of code crashing in write barrier finding a bad pointer (pointing to a free span). Code looks like:
keys := (*[1 << 20]*C.char)(unsafe.Pointer(C.malloc(C.size_t(uintptr(n)) * C.size_t(unsafe.Sizeof((*C.char)(nil))))))[:0:n]
values := (*[1 << 20]*C.char)(unsafe.Pointer(C.malloc(C.size_t(uint... | NeedsInvestigation,compiler/runtime | medium | Critical |
221,012,049 | rust | Inconsistency in trait item resolution between `Box<Trait>` and `impl Trait` | Consider this example:
```rust
#![feature(conservative_impl_trait)]
// use m::Tr;
mod m {
pub trait Tr {
fn method(&self) {}
}
impl Tr for u8 {}
pub fn dynamic_tr() -> Box<Tr> { Box::new(0) }
pub fn static_tr() -> impl Tr { 0u8 }
}
fn main() {
m::dynamic_tr().met... | A-type-system,A-resolve,A-trait-system,T-compiler,C-bug,T-types | low | Critical |
221,075,896 | angular | Create system for managing global event listeners | **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 here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
```
**Current b... | area: core,core: event listeners,core: host and host bindings,core: change detection,needs: discussion | medium | Critical |
221,104,366 | flutter | Have Scaffold know how to provide a SliverAppBar to a child ListView | The usage for the current implementation of SliverAppBar is unclear. There are two different ways of populating a material appbar:
```dart
new Scaffold(
// 1
appBar: new AppBar(),
body: new CustomScrollView(
slivers: [
// 2
new SliverAppBar(
title: new Text('Sc... | c: new feature,framework,f: material design,f: scrolling,P3,team-design,triaged-design | medium | Critical |
221,119,509 | go | x/build: get Alpine builders passing | Thanks to @jessfraz's setting up an Alpine Linux builder (#17891), we now get to deal with more bugs, like this one:
https://build.golang.org/log/09a1850a53ff39d403984ecc8c29114ecd0a4109
```
--- FAIL: TestCgoPprofPIE (8.39s)
crash_cgo_test.go:285: signal: segmentation fault (core dumped)
FAIL
FAIL runtime 16.2... | help wanted,Builders,NeedsFix | medium | Critical |
221,125,204 | TypeScript | Go to Definition for Non JS/TS File Imports | <!-- 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/vsco... | Suggestion,Awaiting More Feedback,VS Code Tracked,Domain: JavaScript,Domain: Symbol Navigation | high | Critical |
221,137,495 | flutter | Multi-step input composing range incorrectly styled on iOS | ## Steps to Reproduce
1. Open *Flutter Gallery* and select the *Text field* demo.
1. Tap the *Name* field.
1. Switch to Japanese/Chinese input and begin entering text.
The composing (a.k.a. mark) region is underlined, rather than appearing lightly selected.
See the following screenshots:
## Current Flutte... | a: text input,platform-ios,framework,a: internationalization,a: fidelity,has reproducible steps,P2,found in release: 3.3,found in release: 3.5,team-text-input,triaged-text-input | low | Major |
221,283,594 | vscode | vscode use webassembly | Vscode will use webassembly to improve the implementation of the application speed, webassembly standard is not already officially released!
It seems that nodejs 8 will be the first to introduce webassembly;
Hope to answer the next question, thank you, if you have caused trouble, very sorry | under-discussion | medium | Major |
221,332,166 | rust | GDB hardcodes startswith(producer, "clang ") to cope with LLVM debug line info in prologues. | Only observed on x86_32, see https://github.com/rust-lang/rust/pull/40367#issuecomment-293623287 and [relevant code in GDB source](https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=blob;f=gdb/i386-tdep.c;hb=8f10c9323357ad190c0383f2fc9d394316447905#l1856).
LLVM appears to generate the .loc` for the first LLV... | A-debuginfo,T-compiler,C-bug | medium | Critical |
221,404,914 | pytorch | Dice Loss PR | Hi, I have implemented a Dice loss function which is used in segmentation tasks, and sometimes even preferred over cross_entropy. More info in this paper:
http://campar.in.tum.de/pub/milletari2016Vnet/milletari2016Vnet.pdf
Here's the link of it:
https://github.com/rogertrullo/pytorch/blob/rogertrullo-dice_loss/torch... | module: loss,triaged,enhancement,Stale | high | Critical |
Subsets and Splits
GitHub Issues Containing Next.js References
Filters training data to find examples mentioning "next.js", providing basic keyword search capability but offering limited analytical value beyond simple retrieval.