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
164,770,402
neovim
:connect to another Nvim server (dynamic detach/reattach, like screen/tmux)
With nvim's terminal mode, if it had the ability to detach and reattach, it could serve as a replacement for screen or tmux. This would require a few additional bits: - A `:detach` function, to stop running the text UI and daemonize into a --headless instance that will survive the current user session ending. - A comm...
enhancement,gui,ui,tui,server,ui-extensibility
medium
Critical
164,806,808
rust
`#[may_dangle]`, a refined dropck escape hatch (tracking issue for RFC 1327)
Tracking issue for https://github.com/rust-lang/rfcs/pull/1327 - [x] Allow attributes on lifetime/type formal parameters (`generic_param_attrs` feature): https://github.com/rust-lang/rust/pull/34764 - [x] Add `#[may_dangle]` attribute for lifetime/type formal parameters on `unsafe impl<...> Drop` (`dropck_eyepatch` f...
B-RFC-approved,T-lang,B-unstable,C-tracking-issue,F-dropck_eyepatch,S-tracking-perma-unstable
medium
Critical
164,849,962
godot
When error in script and "Open dominant script on Scene change" is checked, related scene shoud be opened
**Operating system or device - Godot version:** **Issue description** (what happened, and what was expected): Was avoiding to open this issue for a very long time, mostly because I don't feel like a lot of people would benefit from this, but it's coming back to me constantly, so here we go: In general I'm not using sc...
enhancement,topic:editor,usability
low
Critical
164,854,599
TypeScript
New option to remove spaces around braces: insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces
_From @aymone on July 8, 2016 17:59_ - VSCode Version: 1.3 - OS Version: Ubuntu 16.04 - Language: JS Steps to Reproduce: 1.Create a simple object with functions shorthand like: ``` js const x = { a(){} }; ``` 2.Use VSCode auto format (ctrl+shift+i): ``` js const x = { a(){ } // why vscode add this extra sp...
Bug,Help Wanted,Domain: Formatter,VS Code Tracked
medium
Critical
164,865,701
vscode
support font-size in DecorationRenderOptions
Feature request: support specifying the font size in `DecorationRenderOptions` and `ThemableDecorationAttachmentRenderOptions`.
feature-request,api,editor-api
medium
Major
164,876,200
flutter
control-C does not exit app on iOS device from `flutter run`
``` Application running. Type "h" or F1 for help and "q", F10, or ctrl-c to quit. Type "w" to print the widget hierarchy of the app, and "t" for the render tree. ^CApplication finished. ``` Seems we should either fix the instructions or fix the behavior. I don't really care which. :)
platform-ios,tool,P3,team-ios,triaged-ios
low
Major
164,914,484
TypeScript
Strict null checks for Map members
<!-- 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.0-beta **Co...
Suggestion,Needs Proposal
high
Critical
164,953,760
TypeScript
Sourcemap - names array empty for all files
**TypeScript Version:** 1.8.34.0 **Module System:** AMD **ECMAScript Version:** ECMAScript 5 **VS 2015 Update 3** All of my map files have the names array empty. I would expect that to have been populated. This has been an issue with VS2015 with all updates **Code** ``` ts class HomeIndex { someVar: number; ...
Suggestion,Help Wanted,Experience Enhancement
high
Critical
164,997,041
You-Dont-Know-JS
es6 & beyond: ch2, fix inline code snippet to be less confusing
This text: "...with the `config.options.enable` assignment references." Change that to "...with the `config.options.XYZ` assignment references."
for second edition
medium
Minor
165,043,655
react
Attributes and properties for Custom Components
**Do you want to request a _feature_ or report a _bug_?** Feature **What is the current behavior?** Custom component's properties are always set as attribute. **What is the expected behavior?** Maybe React should watch at the static `observedAttributes` property for custom elements (https://w3c.github.io/webcomponents...
Type: Feature Request,Component: DOM
high
Critical
165,068,045
vscode
Double click after curly brace to select the content
This is a feature-request. A common use case for me in Eclipse, is to double click on the right after a brace or a curly brace, to select all the content inside it. It's a fast way to select, indent, remove the content. It's a lot more handy to see the ending curly brace (especially for JS and other functionnally lan...
feature-request,editor-bracket-matching
medium
Major
165,070,163
TypeScript
Suggestion: should non-null assert propagate?
I was wondering whether `!` should be taken into account by the dataflow analysis, and I don't see why it shouldn't. It is like a cast that says "this value is not null", so from this point I guess the compiler could remove undefined/null from future uses. For example, I use `!` to work around #9631, so I have code t...
Suggestion,Needs Proposal
medium
Major
165,130,384
neovim
Replace the builtin pager
- `nvim --version`: NVIM 0.1.4 ### Actual behaviour When doing e.g. `:map`, nvim uses the old clunky vim pager. Which cannot, for instance, _search text._ ### Expected behaviour Totally open - I'd be happy with `:terminal less` or putting the text-to-be-paged into a readonly temporary buffer so that I can stay in Vi...
enhancement,ui,pager
medium
Critical
165,179,635
TypeScript
String methods should have `this` parameters in `lib.d.ts`
``` ts // @noImplicitThis: true String.prototype.indexOf = function(substr, start) { this./**/ } ``` Expected: Method suggestions. No error. Actual: Nothing. `this: any` error. Other types in lib.d.ts should probably also have `this` added too.
Suggestion,Help Wanted
low
Critical
165,250,541
go
cmd/asm: a flag to dump Prog initialization as Go code
When writing code for compiler backends, we sometimes need to manual create assembly instructions by initializing `cmd/internal/obj.Prog` structs directly. Even though the revamped `Addr` types makes the task much easier than it was, the process is still very error-prone and any mistakes made there is pretty hard to di...
Proposal,Proposal-Accepted,compiler/runtime
low
Critical
165,278,377
gin
Custom BindWith error managing
Hello @danslimmon, @DennyLoko, @sidbusy, @stxml, @dgsi, @kongfei605, @LeBronoMars and @tsirolnik, First of all, sorry for delay in answering, I was just a little bit busy with university (final exams). Regarding all the following issues (#629, #633, #636, https://github.com/danslimmon/gin/pull/1 and #661), here is wh...
enhancement
low
Critical
165,317,028
vscode
Offer code mark styles and gutter marks
_From @darkred on July 10, 2016 23:30_ _(Using VSCode 1.3.0 in win 10 x64 build 10586 with vscode-eslint extension 1.10.18)._ Currently the code marks(for errors and warnings) appear only as squiggly underline (i.e. as **spellchecker errors** in browsers, e.g. Firefox, Chrome): _(the error is in red, and the warning ...
feature-request,ux
high
Critical
165,337,611
opencv
Invalid YML when storing strings containing control characters
### Please state the information for your system - OpenCV version: 3.1 ### In which part of the OpenCV library you got the issue? - persistence ### Expected behaviour Strings containing only FileStorage control characters like `[` or `{` should be correctly (de)serializable, below code should generate: ``` %YAML:1.0 ...
bug,category: core,RFC
low
Critical
165,353,527
java-design-patterns
Asynchronous Retry pattern
**Description:** The Asynchronous Retry design pattern is aimed at handling transient failures in a reliable and efficient manner. This pattern allows an application to retry an operation asynchronously, ensuring that the application does not block waiting for an operation to complete. This is particularly useful in d...
info: help wanted,epic: pattern,type: feature
low
Critical
165,374,232
youtube-dl
Request Support for https://open.hpi.de/
## 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...
account-needed
low
Critical
165,390,329
go
proposal: Add an x/media package
# The Proposal Golang has an `x/image` "extension" library. Adding an `x/media` package for parsing video and audio transports (and possibly codecs) seems a logical extension. Interacting with media is an extremely common task today, having this as part of the standard library would probably be beneficial for all. # P...
Proposal,Proposal-Hold
medium
Major
165,404,088
TypeScript
Typescript type annotations as comments
Typescript’s goal is simply be Javascript + Types. There are many use cases where one might want to use the excellent typechecker but not really have any emit stage. Projects already written in javascript work with allowJS. Typescript already supports parsing types from jsdoc comments. What would be really awesome...
Suggestion,Needs Proposal,Domain: JavaScript
high
Critical
165,457,272
rust
Wrapping<_> implements ShX<usize> but wrapping_shX takes u32
This is mostly just slightly confusing. [`impl ShX for Wrapping<_>`](https://github.com/rust-lang/rust/blob/61d3b263a793b390f6231f08d862e8c71d04e3ef/library/core/src/num/wrapping.rs#L188-L205) (the code refers to #23545, I'm not sure how this is related). [`wrapping_shX`](https://github.com/rust-lang/rust/blob/ma...
T-libs-api,C-bug
low
Minor
165,462,210
youtube-dl
Feature request: "-v" reports the actual selected format
## 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
165,523,413
TypeScript
Way of specifying non-enumerable properties
Object assign is defined like below in TS: ``` ts interface ObjectConstructor { /** * Copy the values of all of the enumerable own properties from one or more source objects to a * target object. Returns the target object. * @param target The target object to copy to. * @param source The so...
Suggestion,Awaiting More Feedback
high
Critical
165,549,671
go
go/printer: confusing indentation for nested structs
Please answer these questions before submitting your issue. Thanks! 1. What version of Go are you using (`go version`)? go version go1.6.1 linux/amd64 2. What operating system and processor architecture are you using (`go env`)? GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="linux" G...
NeedsInvestigation
medium
Critical
165,562,784
vscode
User configurable menus
We now allows extension writer to contribute menu items. The next logical step is to allow user to configure their menus - this is analog to the keybindings-story. One idea is to have a `menus.json` file which defines your menus: ``` json { "editor/context": [ { "command": "my command", "when": "editorHasS...
feature-request,api,menus
high
Critical
165,600,589
youtube-dl
Site request: Dish anywhere / sling player
## 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,tv-provider-account-needed
low
Critical
165,618,638
go
cmd/trace: the trace command should not contain hardcoded javascript
Please answer these questions before submitting your issue. Thanks! 1) What version of Go are you using (`go version`)? Latest master 1.7. 2) What operating system and processor architecture are you using (`go env`)? n/a, but darwin/linux amd64. 3) What did you do? I originally tried to use `go tool trace` in 1.6...
NeedsFix,compiler/runtime
low
Critical
165,669,608
neovim
Echo output in a callback handler
When doing `:call s:test()` manually, it prints two lines. I'd expect the same to happen when called from a callback handler, but then, only the last line is printed (although both get logged in the message history of course). The same happens for all `:echo*` commands. Bug or is there are technical reason? It's as i...
bug,event-loop,display,messages
low
Critical
165,691,642
youtube-dl
Site Support Request: CBT Nuggets
## 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...
account-needed
low
Critical
165,734,073
rust
Spurious (?) "trait bound not satisfied" with associated type constructors
I’m using the technique mentioned at https://github.com/rust-lang/rfcs/pull/1598/files/8e922c0cede49b0b07ac6fcf29ea736aab29acb9#r68995241 and used at https://github.com/nikomatsakis/nll/blob/master/graph-algorithms/src/lib.rs to have in a trait an associated type constructor that takes a lifetime parameter. rustc 1.12...
A-type-system,E-needs-test,T-compiler,C-bug,T-types
low
Critical
165,811,970
youtube-dl
Support for wenoo.net
## 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
165,863,580
youtube-dl
[iqiyi] Support videos unavailable on TV (was: Error code:A00110)
I was able to watch , but you can not use YouTubeDL.EXE download file F:\yy\you>youtube-dl.exe http://www.iqiyi.com/v_19rrm8ddgg.html [iqiyi] temp_id: download video page [iqiyi] ba3f3aba19610a46d55734663b8cde23: Downloading JSON metadata ERROR: Unable to load data. Error code: A00110; please report this issue on http...
broken-IE
low
Critical
165,921,803
opencv
HOGDescriptor/Detection produces inconsistent results between CPU and OpenCL implementations
<!-- 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/Itseez/opencv/wiki/How_to_contribute). This is a template helping you to create an issue which can be pro...
bug,category: objdetect,affected: 3.4,category: t-api
low
Critical
165,925,771
godot
RigidBody and RigidBody2D ignore scaling on runtime
**Operating system or device - Godot version:** Mageia 6 x64, Godot 2.0.4.1 and master HEAD. **Issue description** (what happened, and what was expected): RigidBody2D does not respect its scale parameter, or that of its parents. When scaling a RigidBody2D (directly or by scaling its parent), it shows properly scal...
bug,confirmed,topic:physics
high
Critical
165,934,247
opencv
OpenCV 3.1 cannot explicitly set OpenCL device
##### System information (version) I checked the following environment. - OpenCV => 3.1 - Operating System / Platform => Windows 10 64bit - Compiler => Visual Studio 2013 - CUDA Toolkit => 7.5(64bit) **addtional information** - [x] WITH_OPENCL - [ ] WITH_OPENCLAMDBLAS - [ ] WITH_OPENCLAMDFFT - [ ] WITH_OPENCL_SVM Bu...
feature,category: core,category: t-api
low
Minor
165,940,517
nvm
Add --verbose option to help diagnose remote/install slowness
I ran into some slowness here, thought `nvm` was hanging since it took over 2 minutes to do an `nvm ls-remote`: https://github.com/creationix/nvm/issues/1157 A `--verbose` option for `nvm install`/`nvm ls-remote`/`nvm version-remote` would really be useful to enable end users to diagnose their own issues. Specifically...
installing node,feature requests,pull request wanted
medium
Major
165,952,770
go
cmd/go: provide better error message when cross-compiling toolchain is required
1. What version of Go are you using (`go version`)? 510fb6397dfc93067dc90d42c58dfc5f8b995285: tip between 1.7rc1 and 1.7rc2 1. What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN="/Users/josh/bin" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GOOS="darwin" GOPATH="/User...
help wanted,NeedsFix
low
Critical
165,962,620
youtube-dl
Issue downloading a video from smithsonian Channel with uses brightcove
### What is the purpose of your _issue_? - [x] Site support request (request for adding support for a new site) --- ### The following sections concretize particular purposed issues, you can erase any section (the contents between triple ---) not applicable to your _issue_ --- ### If the purpose of this _issue_ is a _...
site-support-request,tv-provider-account-needed
low
Critical
165,968,257
opencv
OpenCV protobuf error with CUDA8RC
With all the dependencies installed, I'm getting the following error while installing OpenCV in ubuntu 16.04: ``` [ 64%] Building CXX object modules/videoio/CMakeFiles/opencv_test_videoio.dir/test/test_video_pos.cpp.o [ 64%] Building CXX object modules/superres/CMakeFiles/opencv_test_superres.dir/test/test_main.cpp.o ...
bug,category: build/install,category: gpu/cuda (contrib)
low
Critical
165,972,855
neovim
rshada|wshada merges jumplists
- NVIM v0.1.5-539-g204f557 - Vim (version: ) behaves differently? Vim doesn't merge I like to use rshada|wshada to merge register content, but this also merges the jumplists. A combined jumplist with the most recent jumps is fine with me on nvim startup, but I like to keep my jumplists separated per window while usin...
enhancement,editor-state
low
Major
165,987,432
youtube-dl
Add support for cartoonnetwork.com show pages
## 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,tv-provider-account-needed
low
Critical
165,989,799
youtube-dl
Unable to download with a Dish provider, cookie file, and a supported site.
## 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...
tv-provider-account-needed
low
Critical
166,050,458
opencv
Extract code snippets from documentation
Instead of adding code snippets to documetnation directly using `@code` Doxygen command it is better to paste code from compilable source file using `@snippet` command. All (or as many as possible) snippets should be extracted into separate static libraries or example programs to be checked during library build.
feature,category: documentation,affected: 3.4
low
Minor
166,127,702
rust
`rust-call` call ABI is not feature gated at call-sites
Note: This may be a feature, not a bug. But I wanted to make the point explicit. If I make a crate named `defs` with this: ``` rust #![feature(unboxed_closures)] pub extern "rust-call" fn foo(_: (), _: ()) { println!("defs::foo"); } ``` and then a bin crate `uses` with a dependency on `defs` and this for its `main....
P-medium,A-stability,T-lang,C-bug,F-unboxed_closures
low
Critical
166,152,343
go
release: cannot install from .pkg into any dir except /usr/local/go
Please answer these questions before submitting your issue. Thanks! 1. What version of Go are you using (`go version`)? 1.7rc2 2. What operating system and processor architecture are you using (`go env`)? Mac OS 10.11.4, darwin amd64 3. What did you do? I installed 1.7rc2 from the pkg build (go1.7rc2.darwin-am...
NeedsFix
low
Major
166,212,939
go
cmd/compile: lower % using multiply and subtract when the result of / is known
CL 25004 allows amd64 to compute a % b and a / b with a single instruction. However, rewriting code to use it currently risks a regression on architectures with a divmod instruction. We could probably do the rewrite at a generic level instead, and lower a % b to a - b \* (a / b) on architectures without divmod. Then we...
Performance,compiler/runtime
low
Major
166,215,854
rust
Cannot link to `--crate-type dylib`
```sh cd $(mktemp -d) cat <<EOF > foo.rs pub fn foo() {} EOF cat <<EOF > bar.rs extern crate foo; fn main() { foo::foo(); } EOF rustc foo.rs --crate-type dylib rustc bar.rs -L . ``` ``` error: cannot satisfy dependencies so `std` only shows up once help: having upstream crates all available in o...
A-linkage,T-compiler,C-bug
low
Critical
166,216,739
flutter
Support peek/pop on iOS
Once we have 3D touch support (https://github.com/flutter/flutter/issues/4838) we can then enable developers to build "peek/pop". See http://www.apple.com/iphone-6s/3d-touch/ for more.
c: new feature,platform-ios,framework,a: fidelity,f: cupertino,f: routes,P2,team-ios,triaged-ios
low
Major
166,233,908
go
proposal: add a parseutils sub-package under x/net/html
When using `x/net/html` to parse a HTML Spec to generate Go code in the [colornames](http://godoc.org/golang.org/x/image/colornames) package, we wrote several [useful and fairly generalised functions](https://github.com/golang/image/blob/master/colornames/gen.go) to interact with HTML parse trees such as a generalised ...
Proposal,Proposal-Hold
low
Minor
166,275,837
youtube-dl
--playlist-items shouldn't apply on inner playlists
## 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...
bug
low
Critical
166,295,263
vscode
Git: Add support for staging a subset of deleted lines
From @kachkaev I can't find out how to select just two deleted lines out of 5 going sequentially and stage only the ones I want. Any time I select something and click that menu item, the whole block gets staged. The same happens when unstaging.
feature-request,git
medium
Critical
166,332,955
TypeScript
Inlined constrained type using control flow analysis
Some recent features like "String Literals" or "strict null check" in Typescript can be used to shift responsibility of checking the validity of a parameter from function/API developer's side to caller's side. And with control flow analysis, one can start with an discriminated union type and based on the flow of the co...
Suggestion,Awaiting More Feedback
low
Critical
166,392,740
vscode
Allow to save a list of opened editors in a group and switch between them
- VSCode Version: 1.3.1 - OS Version: all There are many times I have a set of open editors in the middle of working on something but need to stop and look at a completely different part of the project. Currently, I can: 1. Just open the new set of files I need, which clutters up the open editors 2. Close my open edi...
feature-request,workbench-editors
high
Critical
166,542,293
neovim
localized --version output ill formatted
- `nvim --version`: NVIM v0.1.5-608-g8c1fb99 - Vim (version: ) behaves differently? Yes, because VIM does not have any translations (at least on my system). - Operating system/version: macOS 10.11.5 - Terminal name/version: Terminal.App Version 2.6.1 - `$TERM`: xterm-256color ### Actual behavior ``` > export LANG=en_...
bug-vim
low
Minor
166,544,932
nvm
nvm exec/run does not let signals through
Node.js server started with `nvm run` does not receive signals sent to shell script which executed nvm.
bugs,needs followup
low
Major
166,569,210
nvm
Unable to install 'Permission denied'
I have run the install script and gotten the following error: ``` {Wed Jul 20 07:19:50 CDT 2016} <ScaryTerry.ttys000> (master) [dzimm at ~/Codes/] [} curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.3/install.sh | bash % Total % Received % Xferd Average Speed Time Time Time Current ...
needs followup,installing nvm
low
Critical
166,625,760
go
x/net/websocket: Naming of TLSConfig
`Server` class of `net/httpConfig` uses the name `TLSConfig` for its `tls.config` variable whereas `Config` class of `x/net/websocket` uses `TlsConfig`. Can the inconsistent naming be resolved, or will it be kept due to backwards compatibility?
NeedsInvestigation
low
Major
166,711,553
react
Optimizing Compiler: Component Folding
This is like the final frontier for React but I never really wrote anything about it so I figured I'd create an issue. Basically, the idea is to utilize information about how React works to do [constant folding](https://en.wikipedia.org/wiki/Constant_folding) and [inlining](https://en.wikipedia.org/wiki/Inline_expansi...
Component: Optimizing Compiler,React Core Team
high
Critical
166,713,601
react
Optimizing Compiler: Compiling to Internals
This optimization is a renderer specific optimization. It is about knowing how React will process a particular component in its internals and then inlining that internal work into the user code. It comes in two flavors. # Known Host Component ``` js function Foo(props) { if (props.data.type === 'img') { return ...
React Core Team
low
Critical
166,727,546
rust
u32 saturating_mul with small constant is slower than a multiply+compare
``` #![feature(test)] #![feature(core_intrinsics)] extern crate test; static mut XXX: u32 = 10; use test::Bencher; #[bench] fn bench_sat_mul(b: &mut Bencher) { b.iter(|| unsafe { for _ in 1..1000 { let mut r = std::intrinsics::volatile_load(&XXX); r = r.saturating_mul(3); ...
I-slow,C-enhancement
low
Major
166,732,968
rust
u32 saturating_mul+compare slower than u64 mul+compare
``` rust #![feature(test)] #![feature(core_intrinsics)] extern crate test; static mut XXX: u32 = 10; use test::Bencher; #[bench] fn bench_sat_mul(b: &mut Bencher) { b.iter(|| unsafe { for _ in 1..1000 { let r = std::intrinsics::volatile_load(&XXX); let r2 = std::intrinsics::volat...
I-slow,C-enhancement
low
Major
166,806,593
react
IE 11 and Edge no longer prompt to remember password on controlled form
**Do you want to request a _feature_ or report a _bug_?** Bug (regression) IE/Edge **What is the current behavior?** On React > v15.2.0, Edge and IE11 do not prompt the user to save the password for the form **Steps to reproduce** With react 15.1.0: https://jsfiddle.net/69z2wepo/49876/ With React 15.2.0: https://jsfi...
Type: Bug,Component: DOM
low
Critical
166,867,948
go
x/crypto/ssh: Additional information from HostKeyCallback or Handshake failure
Please answer these questions before submitting your issue. Thanks! 1. What version of Go are you using (`go version`)? 1.6.2 2. What operating system and processor architecture are you using (`go env`)? linux/amd64 3. What did you do? Set a custom callback for ClientConfig HostKeyCallback 4. What did you expe...
NeedsInvestigation
low
Critical
166,885,213
nvm
`nvm run` does not work with files whose names consist of digits
If file name consist only digits before point, `nvm run` doesn't work. How test: ``` bash mkdir /tmp/nvm_run cd /tmp/nvm_run echo 'console.log("hi")' > 123.js nvm run 123.js ``` Output: ``` N/A: version "123.js" is not yet installed. You need to run "nvm install 123.js" to install it before using it. ``` The foll...
bugs,pull request wanted
low
Critical
166,912,236
three.js
Compress RectAreaLight BRDF Data and include in three.js build files
This issue can serve as discussion for improving the preliminary RectAreaLight implementation being reviewed in #9234. Currently, the BRDF for the RectAreaLight implementation is approximated using float textures totaling ~80kb when the data is included as discrete, raw, float values. Methods to compress that data ne...
Enhancement
medium
Critical
166,933,990
TypeScript
Proposal: Type Relationship API
They type checker has no public API for checking type relationships or for looking up types in a given scope. This can make writing semantic-analysis informed lint rules very difficult (either because you need to replicate a lot of logic, or because you simply don't have enough information). Since [tslint enabled seman...
Suggestion,In Discussion,API
high
Critical
166,950,085
TypeScript
Proposal: Type Builder API
Alongside the relationship API proposed in #9879, it would be very useful to expose an API to programatically build types - this is useful for making comparisons between a build-in type, and a type structure which isn't a part of the original compilation (lint rules, language service extensions, and external tools coul...
Suggestion,Awaiting More Feedback
medium
Major
166,957,044
vscode
Indent Guides Have Breaks Where CodeLens UI is Rendered
- VS Code Version: 1.4.0-insiders (a4522) - OS Version: Windows 10 1607 (Build 14393) Steps to Reproduce: 1. Enable indent guides in VS Code. 2. Open code file that uses CodeLens (C#, etc.) 3. Observe breaks in rendered indent guides where CodeLens UI is rendered. ![image](https://cloud.githubusercontent.com/assets/2...
feature-request,code-lens,editor-indent-guides
medium
Critical
166,973,016
nvm
`nvm use` does not fully respect `--silent`
It runs `nvm_rc_version`, which echos "Found ..." and "Now using..." All output should be silenced (or introduce --silence-all or `nvm --quiet use` or something)
feature requests,needs followup
low
Major
167,016,600
vscode
Cursor Up and Down should place the cursor at end of line if it's current state is end of line
- Move the cursor to End of line by using `End` or `Cmd + Right` - Now doing Up or Down commands should place the cursor at the End. But currently VS Code is placing the cursor at `min(previousPos, lineLength)`
feature-request,api,VIM
low
Minor
167,039,715
TypeScript
Suggestion: Allow local types to be declared in interfaces
I have something like this: ``` export interface Reducer<State, Types extends Action<string, any>> { add<TypeName extends string, Payload>(action: { type: TypeName, reduce: (state: State, action: Payload) => State }): Reducer<State, Types | Action<TypeName, Payload>>; readonly cursorType:...
Suggestion,Awaiting More Feedback
medium
Critical
167,097,667
rust
"Type annotations needed" with mixed lifetimes in trait bounds
This was encountered from a [derive plugin that created where bounds for all member types](https://github.com/serde-rs/serde/issues/443#event-731862636). Occurs on stable, beta, and nightly. ``` rust struct S<'a>(&'a ()); trait Tr { } impl<T> Tr for Option<T> { } impl<'a> Tr for S<'a> where Option<&'a str>: Tr, Optio...
A-type-system,C-enhancement,A-lifetimes,P-medium,T-lang,T-types
low
Critical
167,113,479
vscode
Problem matchers for error messages that span multiple lines
- VSCode Version: 1.4.0-insider 01a3f8 - OS Version: Windows 10 x64 I'm unable to get a message built up from several lines in the output. In the output below, I would like the message to contain the spec name, and the reason it failed. Any ideas if this is possible? I have the following output from NUnit: ``` Proje...
feature-request,tasks
medium
Critical
167,124,410
go
proposal: io/v2: CopyBuffer should avoid ReadFrom/WriteTo
Currently, io.CopyBuffer uses WriteTo if the src supports it and ReadFrom if the dst supports it, presumably to avoid an allocation. The problem is that there exist certain io.ReaderFrom that are not efficient 100% of the time. For example, consider the following implementation of ReadFrom: ``` go type myWriter struc...
Performance,v2,Proposal
medium
Critical
167,194,919
TypeScript
how can i implement ts.CompilerOptions in a class?
![image](https://cloud.githubusercontent.com/assets/937933/17079355/a476d0be-50db-11e6-880f-7a92f3eabdbf.png) ``` typescript class implements ts.CompilerOptions { } ```
Docs
low
Major
167,245,251
go
x/tools/cmd/goyacc: endless loop on unterminated comment at EOF
1. What version of Go are you using (`go version`)? go version go1.6.2 windows/amd64 go version devel +10538a8 Fri Jul 22 22:23:14 2016 +0000 windows/amd64 1. 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...
Tools
low
Critical
167,254,733
go
x/tools/refactor/rename: fails to move nested packages on Windows with error "invalid move destination ... package or subpackage <origpkg> already exists" (suspect backslash vs. forward slash issue)
**1) What version of Go are you using (`go version`)?** ``` go version go1.5.2 windows/amd64 ``` Note: One of my colleagues first hit this same problem on 1.6.2. I personally happen to be still be using go 1.5.2 and would prefer not to upgrade right now on my laptop, but I at least endeavored to get the latest gomvp...
Tools,Refactoring
low
Critical
167,258,874
rust
path attribute on modules is useless in nested modules
My crate has some test support data in `tests/support/mod.rs`. When trying to load this module for unit tests like this: ``` rust mod tests { #[path="../tests/support/mod.rs"] mod support; } ``` I get an error like this: ``` error: couldn't read "src/tests/../tests/support/mod.rs": No such file or directory ...
C-enhancement,A-diagnostics,P-low,E-mentor,T-compiler,E-medium
medium
Critical
167,442,730
flutter
Flutter should offer some way to test at a minimum size
@sethladd has recently started filing bugs about our Material Widgets looking wrong on an iPod touch (which is slightly less wide than the Nexus 5s many of us test on). Many of these bugs could presumably be caught by some automated system which at least tested to make sure views didn't throw exceptions at known resol...
a: tests,framework,f: material design,P2,team-design,triaged-design
low
Critical
167,464,152
flutter
Update license collection script to perform line wrapping and indentation normalization
This would improve both the rendering of the licenses and reduce the total number of licenses, which would reduce the executable size.
c: new feature,engine,P3,team-engine,triaged-engine
low
Minor
167,491,157
godot
3D KinematicBody is not correctly detecting collision with PlaneShape
**Operating system or device - Godot version:** Windows 10 64bit - Godot 2.1 RC1 **Issue description** (what happened, and what was expected): The KinematicBody `is_colliding()` function does not return true when the body is colliding with an object that has a PlaneShape collision shape. It does still get stopped by t...
bug,confirmed,topic:physics
low
Major
167,523,952
go
encoding/xml: panics with Field index out of range when XMLName is in embedded struct
Please answer these questions before submitting your issue. Thanks! 1. What version of Go are you using (`go version`)? `go version devel +67f799c Tue Jul 26 00:18:42 2016 +0000 linux/amd64` But it also affects the version of 1.6 on the playground at the moment. 1. What operating system and processor architecture are...
NeedsInvestigation,early-in-cycle
low
Critical
167,532,785
go
x/net/http2: Server doesn't respect client's flow control
Go's http2.Server doesn't respect the client's flow control. It accounts for it partly, and enforces the other direction (that the client can't send too much to the server), but does not ever deduct its own credit when sending DATA frames, and doesn't wait for flow control when doing so. In the process of fixing #164...
NeedsFix
low
Minor
167,622,244
opencv
OpenCV Stereo SGBM release/debug results differ
<!-- 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,category: calib3d,affected: 3.4
low
Critical
167,662,910
opencv
crash at cv::TiffDecoder::readData(cv::Mat&)
based on opencv-2.4.10. my code was: ``` #include <opencv2/opencv.hpp> #include <iostream> #include <sys/time.h> using namespace std; using namespace cv; int main (int argc, char **argv) { cv::Mat img = cv::imread (argv[1], -1); cout << img.channels () << endl; return 0; } ``` the input image was http:...
bug,affected: 2.4,category: imgcodecs
low
Critical
167,685,620
youtube-dl
Embedded Videos Not Supported/Detected + Possible Solution
### Make sure you are using the _latest_ version: run `youtube-dl --version` and ensure your version is _2016.07.26.2_. 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
medium
Critical
167,740,665
TypeScript
Private/protected properties on siblings in union types
**TypeScript Version:** 1.8.9 **Code** ``` ts class Example { protected width = 0; constructor(sibling: Example | HTMLCanvasElement) { console.log(sibling.width); } } ``` **Expected behavior:** No errors. **Actual behavior:** Error: `Property 'width' does not exist on type 'Example | HTMLCanvas...
Suggestion,Help Wanted,Domain: Error Messages
low
Critical
167,833,378
godot
negative scale changed into rotation after a spatial node is translated using the 3d viewport gizmo
**Operating system or device - Godot version:** 2.1rc1 official win64 2.1beta official win64 2.0.4.1 stable official win64 2.0.2stable official win64 **Issue description** (what happened, and what was expected): When you set a negative scale for a Spatial node and move it using the 3d viewport gizmo, the inspector s...
enhancement,topic:editor,usability,documentation
low
Major
167,896,578
flutter
Material components: Ability to long-press a menu icon to open menu, follow finger
A user should be able to long-press the three-dot menu icon in the upper right, and have the menu open. Then, the user should be able to move their finger down to an item and have the selection indicator follow their finger. All without lifting their finger. This behavior also applies to drop-down buttons, as seen in ...
c: new feature,framework,f: material design,from: review,P2,team-design,triaged-design
low
Major
167,909,665
flutter
Once a drawer is transitioning out, don't let it grab taps on its components
A design review asked us for the following enhancement: Once a user triggers a transition to remove the left drawer from the screen, that drawer's components (e.g. checkboxes on the drawer) should no longer grab any inputs or taps. The reasoning: once you've requested the drawer to be removed, you no longer want to in...
framework,f: material design,from: review,P2,team-design,triaged-design
low
Minor
167,984,634
TypeScript
Trade-offs in Control Flow Analysis
Some rough notes from a conversation @ahejlsberg and I had earlier about trade-offs in the control flow analysis work based on running the real-world code (RWC) tests. For obvious reasons I'll be comparing what Flow does with similar examples to compare and contrast possible outcomes. The primary question is: When a...
Discussion
high
Critical
168,002,065
go
cmd/compile: print better error message when assigning to keywords
I saw a new programmer struggle with the following: ``` go func main() { map := "f" fmt.Println(map) } ``` which is an invalid program since `map` is a keyword. However, the error being printed is currently: ``` prog.go:6: syntax error: unexpected :=, expecting [ prog.go:7: syntax error: unexpected ), expec...
compiler/runtime
low
Critical
168,008,669
go
reflect: NamedOf
Consider adding a function to the reflect package for creating a new named type with a method set: ``` func NamedOf(t Type, name string, methods []Method) Type ``` (Broken out from #4146.)
NeedsFix,FeatureRequest,compiler/runtime
medium
Critical
168,027,617
go
x/crypto/ssh/agent: Support ssh.Signer for AddedKey
## 1. What version of Go are you using (`go version`)? go1.7rc3 ## 3. What did you do? I want to use a `crypto.Signer` as a private key for an SSH Agent. This would allow using keys that are stored on an HSM or have other reasons that a full `*rsa.PrivateKey` is not available. Creating an `ssh.Signer` from a `crypto...
NeedsInvestigation
low
Minor
168,078,204
go
cmd/trace: execution tracer is essentially not documented
I was able to find only 3 short mentions: - [Command trace](https://golang.org/cmd/trace/) - [Package trace](https://golang.org/pkg/runtime/trace/) - [Go 1.5 changelog](https://golang.org/doc/go1.5#trace_command) They are not very helpful. Compare this to how race detector ([article](https://golang.org/doc/articles/ra...
Documentation,NeedsInvestigation,compiler/runtime
medium
Critical
168,080,689
rust
Rust should allow specifying a custom .def file
… on Windows. Especially for `cdylib`s.
A-linkage,O-windows,T-compiler,C-feature-request
low
Minor
168,090,540
opencv
camera_calibration app fails fisheye calibration
Note I've accidentaly posted this as [issue #742](https://github.com/opencv/opencv_contrib/issues/742) in opencv_contrib. I've already closed it. Sorry for the noise. ##### System information - OpenCV => 3.1 https://github.com/opencv/opencv/commit/8cdd91cd236f88915eb34658527f511f8a321e86 - Operating System / Platform ...
bug,category: calib3d,affected: 3.4
low
Minor
168,150,856
rust
Make LLVM better at using XMM registers to perform structure moves
Here's a small snippet of Servo code from block flow fragmentation: ``` servo[0x100bf974e] <+6638>: mov r10b, byte ptr [rbp - 0x729] servo[0x100bf9755] <+6645>: mov r9, qword ptr [rbp - 0x728] servo[0x100bf975c] <+6652>: mov rax, qword ptr [rbp - 0x720] servo[0x100bf9763] <+6659>: mov rdi, qword ptr [r...
A-LLVM,I-slow,C-enhancement,A-codegen,O-x86_64,I-compiletime,T-compiler,E-help-wanted,C-optimization,O-x86_32
low
Major