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
221,405,549
rust
Unclear error with type inference failure
```rust struct S { v: Vec<(u32, Vec<u32>)>, } impl S { pub fn remove(&mut self, i: u32) -> Option<std::vec::Drain<u32>> { self.v.get_mut(i as _).map(|&mut (_, ref mut v2)| { v2.drain(..) }) } } ``` Errors with: ``` error: the type of this value must be known in th...
C-enhancement,A-diagnostics,T-compiler,A-inference,D-terse
low
Critical
221,418,822
youtube-dl
Feature request: Have youtube-dl teat search-result page (on C-Span.org) as a playlist
--- - [X] I've **verified** and **I assure** that I'm running youtube-dl **2017.04.11** ### Before submitting an *issue* make sure you have: - [X] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](...
request
low
Critical
221,483,470
TypeScript
Iterator interface for LanguageService
Currently, functions like `LanguageService.getReferencesAtPosition()` or `getNavigateToItems()` return an array. That means, they have to collect all references/navigation items before returning, and blocks the CPU until then. If you invoke such a function in repos like angular/angular the returned array can easily ha...
Suggestion,API,Awaiting More Feedback
low
Minor
221,509,585
youtube-dl
[youtube] Youtube Red videos fail with '403: Forbidden'
## 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 --- ...
account-needed
low
Critical
221,568,626
go
all: check build reproducibility
It'd be nice to have the builder (and ideally also a trybot) check reproducibility of builds. This is not an good thing to add to all.bash, because it is slow and computationally expensive. The implementation is fairly straightforward. I usually do it by running something like: ``` $ ./make.bash $ toolstash sav...
Builders,NeedsInvestigation
low
Major
221,579,456
go
build: run race-enabled toolchain
The compiler already has a concurrent lexer and parser, and it will soon have a concurrent backend. We should have a fast builder running a race-enabled version of the toolchain to catch data races. I have in mind something like this (very rough sketch): ``` $ ./all.bash # instead of doing 'go install cmd' afte...
Builders,NeedsFix
low
Critical
221,647,272
opencv
Unable to stop the stream: Inapproriate ioctl for device - ARM
Hi, I noticed an error while I try to open a video file (in this case is an **avi** file), just on ARM arch (bot 32 and 64) . Once I try to open the file, the following error is fired up: **Unable to stop the stream: Inapproriate ioctl for device** Looking into the source code, it seems a problem related t...
priority: low,category: videoio(camera),incomplete
low
Critical
221,657,505
flutter
Support keyboard events in flutter_driver
Add an API for sending keyboard events to devices in Flutter Driver tests. Useful for writing comprehensive tests of text input, input from physical keyboards, IME compose region etc.
a: tests,a: text input,tool,t: flutter driver,customer: crowd,c: proposal,P3,team-tool,triaged-tool
high
Critical
221,688,677
flutter
Flutter driver finder/scrollIntoView does not scroll lazily-created items into view
## Steps to Reproduce 1. Edit `examples/flutter_gallery/test_driver/transitions_perf_test.dart` 1. From the `demos` list, remove `profiled: true` on any demos that include them. 1. Add `profiled: true` to the 'Sliders' demo or other demo that's initially offscreen. 1. `flutter drive test_driver/transitions_perf.d...
a: tests,c: new feature,tool,framework,t: flutter driver,P3,team-framework,triaged-framework
low
Minor
221,717,029
kubernetes
Make fsType specifyable in volumeClaimTemplates
<!-- 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...
kind/feature,area/stateful-apps,sig/apps,lifecycle/frozen
low
Critical
221,759,401
youtube-dl
[sabaq.pk] Site support request
## 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
221,807,586
rust
document what "thin pointers" are
I got the following error message: error: casting `*const T` as `usize` is invalid --> src/refset.rs:17:9 | 17 | (self.0 as *const T as usize).hash(state); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: cast through a thin pointer first which was quite cl...
C-enhancement,A-diagnostics,T-compiler,D-confusing
low
Critical
221,815,421
go
doc: explain how to debug performance problems in Go programs
We should probably have a doc explaining how to debug performance problems in Go programs. There is the profiling blog post, but a larger survey of the field might be good. /cc @aclements @alandonovan
Documentation,help wanted,NeedsFix
medium
Critical
221,825,598
vscode
vscode reads AltGr key as cursor-left move through X11 connections
<!-- Do you have a question? Please ask it on http://stackoverflow.com/questions/tagged/vscode --> - VSCode Version: 1.11.2 (Commit 6eaebe3b9c70406d67c97779468c324a7a95db0e) - OS Version: Ubuntu 16.04.2 / Windows 10 Steps to Reproduce: 1. install/start X server on Windows system (Xming, MobaXterm or VcXsrv) ...
bug,help wanted,keybindings,linux
medium
Critical
221,845,953
kubernetes
CRI: Clearly define the `Privileged` field in the security context
CRI inherits the `Privileged` field from the kubernetes (and Docker) API. It's there to improve the user experience. Since CRI is not intended to be directly user-facing, it should translate the field into a set of fields (e.g., capabilities). At the least, we should clearly define what `Privileged` means in the CR...
sig/node,kind/feature,lifecycle/frozen
medium
Major
221,846,784
youtube-dl
Some M3U8 Downloads frozen indefinitely
## 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
221,867,309
go
database/sql: add option to customize Begin statement
Currently, the `*DB.BeginTx` method looks like this: ```go func (db *DB) BeginTx(ctx context.Context, opts *TxOptions) (*Tx, error) type TxOptions struct { // Isolation is the transaction isolation level. // If zero, the driver or database's default level is used. Isolation IsolationLevel Rea...
NeedsInvestigation,FeatureRequest
medium
Critical
221,879,424
flutter
Installation needs to be simpler
Our current installation process is multi-step, involves the command line, etc. We have data showing that this results in failed installations and abandoned installations. I think we need to have a single-step install. I suggest: - [ ] On Mac OS, have a single DMG that you can drag onto your machine (Apps direct...
tool,a: first hour,customer: crowd,P3,team-tool,triaged-tool
medium
Critical
221,940,929
vscode
Allow to reset “Don't Show Again” preference
VSCode’s “top banner” often includes a “Don't Show Again” button. However it's not clear how a user should undo this action. Would it be possible to save these preferences to the user's workspace settings, perhaps? Then it is easy for the user to undo this action. An example of a user needing this: https://github...
feature-request,workbench-notifications
medium
Critical
221,945,520
opencv
Issue with BestOf2NearestMatcher on Opencv 3.x.x VS15
##### System information (version) - OpenCV => 3.2 - Operating System / Platform => Windows 64 Bit - Compiler => Visual Studio 2015 ##### Detailed description BestOf2NearestMatcher does not work on Opencv 3 compiled with Visual Studio. See the code: ##### Steps to reproduce vector<cv::DMatch> vDMatches...
incomplete
low
Critical
221,958,461
vscode
More font options
A lot of people use fonts like Fira Code, which doesn't has italics. Wouldn't that be great to have options to force no_italics, no_bold, etc?
feature-request,editor-core
low
Major
221,961,281
youtube-dl
Curiositystream HTTP Error 422
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.04.15*. 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** ...
account-needed
low
Critical
221,978,024
go
runtime: reuse evacuated map overflow buckets
runtime/hashmap.go contains this TODO: ```go // TODO: reuse overflow buckets instead of using new ones, if there // is no iterator using the old buckets. (If !oldIterator.) ``` This issue is to track this TODO, and make it easier to refer to in commit messages, etc., since I am looking into some related o...
Performance,compiler/runtime
low
Major
222,036,719
vscode
[json] option to format code with leading commas
Can we get an option in VS Code to have it format all lists by using leading commas instead of trailing commas? This would so much simplify editing code and it would also greatly simplify the IDE's automatic code completion (e.g. the VS Code Settings editor). With the suggested option set to `true`, comma separat...
help wanted,feature-request,json,formatting
medium
Critical
222,038,139
go
crypto/x509: AKI is left blank even for non-self-signed cert when subject matches CA's subject field
### What version of Go are you using (`go version`)? 1.8.1 ### What operating system and processor architecture are you using (`go env`)? GOARCH="amd64" GOBIN="/home/dev/go/bin" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GOPATH="/home/dev/go" GORACE="" GOROOT="/usr/lib/golang" GOTOOLDIR="/usr...
NeedsInvestigation
low
Critical
222,040,247
rust
Long trait bounds don't get broken up in rustdoc
Here's an example of some long bounds: [num_traits::NumAssignOps](https://docs.rs/num-traits/latest/num_traits/trait.NumAssignOps.html) Copy-pasted here: ```rust pub trait NumAssignOps<Rhs = Self>: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs> { } ``` Rustfmt, when given ...
T-rustdoc,C-enhancement
low
Critical
222,056,962
go
cmd/go: unify DWARF knowledge
Knowledge about what platforms we should generate DWARF for is currently spread between the linker and cmd/go. We should put it all in one place, probably cmd/go. See CLs 40859 and 40865 for discussion.
NeedsInvestigation
low
Minor
222,058,108
go
runtime: add per-G shadows of writeBarrier.enabled
1. A large fraction of static instructions are used to implement the write barrier enabled check, which currently always uses an absolute memory reference. 2. On supported RISC architectures accessing data at a small offset from a pointer takes fewer instructions than accessing data at an absolute offset. On all(?) s...
Performance,Proposal,Proposal-Accepted,compiler/runtime
low
Major
222,071,589
youtube-dl
Site-support request: 100huntley.com
- [X] I've **verified** and **I assure** that I'm running youtube-dl **2017.04.17** - [X] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [X] [Sear...
site-support-request
low
Critical
222,121,812
kubernetes
Downward API does not support gpu resource
I can not fetch the GPU limit resource by downward API using YAML like : ```yaml valueFrom: resourceFieldRef: resource: limits.alpha.kubernetes.io/nvidia-gpu ``` The errror message: ```yaml The Job "gpu-job" is invalid: spec.template.spec.containers[0].env[4].valueFrom.reso...
sig/node,kind/feature,needs-triage
medium
Major
222,149,127
youtube-dl
[Swivl] Site support request
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.04.17*. If it's not read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected. - [x] I've **verified** ...
site-support-request
low
Critical
222,150,579
angular
Routing: Preserve trailing slash
<!-- 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,freq2: medium,area: router,hotlist: devrel,state: confirmed,router: URL parsing/generation,P3,feature: under consideration
high
Critical
222,167,031
rust
Misleading error when a trait method implementation has explicit lifetime parameters but the trait signature does not.
Consider this example ([playground](https://play.rust-lang.org/?gist=f6e6314f04cbe19a3f30d1e03208a281&version=nightly&backtrace=0)): ``` use std::vec::Vec; use std::option::Option; trait MyTrait { fn bar(&self, vec: &Vec<u32>) -> Option<&u32>; } struct Foo; impl MyTrait for Foo { fn bar<'a>(&self...
C-enhancement,A-diagnostics,A-lifetimes,A-trait-system,T-compiler,D-papercut
low
Critical
222,207,728
flutter
Is there a way to dynamically collapse / control SliverAppBar?
Hi, I am just starting to learn flutter and I would like to know how to for example collapse SliverAppBar when I click on a button. Best regards Matej
c: new feature,framework,f: material design,f: scrolling,P3,team-design,triaged-design
low
Major
222,209,689
angular
Async Router Guard Navigation Issue
**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 behavior...
type: bug/fix,freq4: critical,area: router,state: confirmed,router: guards/resolvers,P3
medium
Critical
222,233,307
vscode
SCM - Support keyboard shortcuts
<!-- Do you have a question? Please ask it on http://stackoverflow.com/questions/tagged/vscode --> - VSCode Version: 1.11.2 - OS Version: macOS Sierra 10.12.4 Steps to Reproduce: 1. Open a project under git, with some changed files 2. Ctrl-Shift-G to open the SCM view. It has a commit message at the top and...
feature-request,scm
high
Critical
222,242,132
go
reflect: StructOf should support embedding types with non-exported methods
There's this code in reflect/type.go: if ift.nameOff(m.name).pkgPath() != "" { // TODO(sbinet) panic("reflect: embedded interface with unexported method(s) not implemented") ...
help wanted,NeedsFix,compiler/runtime
low
Minor
222,334,283
go
cmd/compile: go:linkname prevents inlining
go version devel +33c3477039 Tue Apr 18 03:56:16 2017 +0000 linux/amd64 `sync_runtime_procPin` is marked with `//go:linkname sync_runtime_procPin sync.runtime_procPin`. Runtime marks it as inlinable (which is good). However, sync fails to inline it with `cannot inline runtime_canSpin: no function body`. There are m...
Performance,compiler/runtime
medium
Major
222,356,680
You-Dont-Know-JS
Add some 'why' explanation to the 4 ways that `this` is set
You briefly introduce this here https://github.com/getify/You-Dont-Know-JS/blob/master/up%20%26%20going/ch2.md#this-identifier and here https://github.com/getify/You-Dont-Know-JS/blob/master/up%20%26%20going/ch3.md#this--object-prototypes. I know that you don't want to get into details about these four methods, and ...
for second edition
medium
Minor
222,428,421
go
cmd/compile: big array not allocated on heap, which make program panic.
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.8.1 linux/amd64 ### What did you do? ```golang package main const N = 1000 * 1000 * 537 var a [N]byte func main() { // this will stack overflow for _, v := rang...
NeedsFix,compiler/runtime
medium
Critical
222,431,052
go
cmd/compile: some problems on optimization when takes care about of arrays in struct
As @ianlancetaylor and @ALTree mentioned, I changed the version from 1.7.4 to 1.8.1 to show the bug clearly. ### What version of Go are you using (`go version`)? ```go go version go1.8.1 linux/amd64 ``` ### What operating system and processor architecture are you using (`go env`)? ```go GOARCH="amd64" GOBIN="...
Performance,help wanted,NeedsFix,compiler/runtime
low
Critical
222,443,933
opencv
CV_CAP_GSTREAMER_QUEUE_LENGTH fails
I have a scenario in which I am processing an mp4 file in batch mode using VideoCapture via gstreamer. In this case appsink requires the sync=false property so that the execution is at fastest speed without delays. The problem is that the appsink is configured by cap_gstreamer.cpp as drop with buffer 1. Using the ...
bug,category: videoio
low
Critical
222,521,773
TypeScript
The check "Parameter cannot be referenced in its initializer" for default parameters is too strict
<!-- 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...
Bug
low
Critical
222,524,094
go
net/http: Server hangs and cannot receive any more requests when using ReverseProxy
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? $ go version go version go1.7.5 linux/amd64 ### What operating system and processor architecture are you using (`go env`)? $ go env GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" G...
NeedsInvestigation
medium
Critical
222,587,432
opencv
imdecode should allow more control over decode process
Presently, imdecode is all-or-nothing. If the user's data decodes correctly into some type of image, then the image is returned, and otherwise it isn't. It would be really helpful if the user had more control over this process. For example, it would be handy if the user could decide if they want to abort the decode ...
feature,category: imgcodecs
low
Minor
222,587,621
opencv
imdecode does not reuse dst if size differs
imdecode does allow users to reuse a pixel buffer by passing it as dst. Unfortunately, this only works if the size is actually the right size to be decoded. Otherwise, opencv allocates a new buffer. It seems this is not really within the intent for this argument. It would be really useful if users could make sure that ...
feature,category: imgcodecs
low
Minor
222,790,685
opencv
Rigid body transformations using estimateAffine3D
##### System information (version) - OpenCV => 3.0+ - Operating System / Platform => ALL - Compiler => ALL ##### Detailed description In case of rigid body transforms, the determinant of the rotation part returned is positive and equal to one. However, `estimateAffine3D` seems to estimate non-rigid scale as well...
feature,category: calib3d
low
Critical
222,792,162
vscode
full width tab glyph for editor.renderWhitespace
When viewing invisible characters (editor.renderWhitespace), I would like the character/glyph used for tabs to extend across the full width of the tab (N spaces / to the next tab stop). Sublime Text 3 uses what looks like an emdash(?) or essentially a line than runs to the next tab stop. VSCode uses a single character ...
feature-request,editor-render-whitespace
medium
Major
222,941,303
opencv
Python wrapper: Incorrectly wrapped members of cv::ml::TrainData
##### System information (version) - OpenCV => 3.0+ - Operating System / Platform => ALL - Compiler => ALL ##### Detailed description - `cv::ml::TrainData::getSample` has a `NULL` pointer as a default argument for its `buf` parameter. However, this is incorrectly wrapped in the generated code as a pointer to a ...
bug,category: python bindings
low
Critical
222,969,430
kubernetes
Understand why resource usage of master components is noticeably different in Kubemark
We see pretty big discrepancy between what we see in kubemark clusters and real ones. It needs to be understood. Difference is mostly in the API server usage. E.g. 99 percentile in kubemark (both results from after Density, which is run as a first test): ``` container cpu(cores) memor...
sig/scalability,lifecycle/frozen,lifecycle/stale
medium
Critical
222,997,448
TypeScript
Casting of a union type variable doesn't work if interface has all optional properties
<!-- 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:** at least 2.0....
Suggestion,In Discussion
low
Critical
223,120,273
thefuck
Use type annotations and mypy
It would be nice to have type annotations and check code with [mypy](http://mypy-lang.org/). It can be done in a few steps: - [X] write [type eraser](https://github.com/nvbn/thefuck/blob/types/type_eraser.py) that will remove annotations from code before release (for python 2 support); - [ ] annotate sources; -...
enhancement,WIP
low
Minor
223,139,106
go
net/http: Transport doesn't support NTLM challenge authentication
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? Go 1.8 ### What operating system and processor architecture are you using (`go env`)? OSX darwin-amd64 ### What did you do? I have send an https request to a proxy (ntlm) below r...
help wanted,FeatureRequest
low
Critical
223,139,536
kubernetes
Proportional scaling in Deployments in not fully re-entrant
The fix is to avoid scaling replica sets with replica annotations synced to the actual size of the deployment. While doing that, we need to handle gracefully the case where all replica sets have their annotations synced but the sum of their spec.replicas does not match spec.replicas of the deployment. @kubernetes/si...
kind/bug,area/workload-api/deployment,sig/apps,lifecycle/frozen
low
Critical
223,171,991
angular
canActivate=>false can result in blank screen/dead link
<!-- 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 here,...
type: bug/fix,freq3: high,area: router,state: has PR,state: confirmed,P3
high
Critical
223,181,479
go
crypto/tls: slow server-side handshake performance for RSA certificates without client session cache
Both go 1.8 and go tip provides too slow server-side handshake performance for RSA certificates if the client doesn't use TLS session cache: ``` $ go get -u github.com/valyala/fasthttp/fasthttputil $ GOMAXPROCS=1 go test github.com/valyala/fasthttp/fasthttputil -bench=TLSHandshake goos: linux goarch: amd64 pkg:...
Performance,help wanted
medium
Major
223,184,677
youtube-dl
[Youtube] Unable to download the videos on a web page that has Youtube videos embedded inside (http://www.doxtremesports.com/archery-tag)
## 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
223,209,532
flutter
Template files for Android do not pass IntelliJ Code Inspection
## Steps to Reproduce - Create a new Intellij flutter project - VCS/Import into version control/Create GIT repository - Commit changes on unversioned files - Browse and add unversioned files - Select all the files - Do the commit - Code analysis dialog box says there are errors ![image](https://cloud.github...
platform-android,tool,t: gradle,P2,team-android,triaged-android,fyi-tool
low
Critical
223,217,737
rust
Attribute macros invoked at crate root have issues
When invoking some attribute procedural macro with inner form, i.e. `#![foo_attr]` at the crate root, a resolution error occurs: ```rust #![feature(proc_macro)] #![foo_attr] //^ ERROR: cannot find attribute macro `foo_attr` in this scope extern crate foo_macros; use foo_attr_macro::foo_attr; ``` This shou...
A-attributes,T-compiler,A-macros-2.0,C-bug
medium
Critical
223,234,231
flutter
If debugDumpRenderTree crashes during a "t" tree dump, so does the flutter tool
I did something to the framework that made the debugDumpRenderTree function throw. This means the RPC did not return successfully when I hit "t" in `flutter run`. The result was that the tool itself crashed, with the following stack (I was running in `--verbose` mode): ``` Unhandled exception: JSON-RPC error -3200...
tool,P3,team-tool,triaged-tool
low
Critical
223,273,649
react
Seb's Deprecation Wishlist Umbrella
I have a list of breaking changes that I'd like to see because I think they're not strictly necessary features, can often be replaced by other APIs and their very existence makes implementations more constrained, even when they're not used. This list is not meant to be anything we're planning on actively doing. It's...
Type: Umbrella,React Core Team
low
Major
223,428,054
awesome-mac
This is a crazy plan. Everybody vote for me.
I am going to develop an APP for this list. The following is the design draft. Design drafts welcome comments. ![image](https://cloud.githubusercontent.com/assets/1680273/25285918/8b511e20-26ee-11e7-8ffe-53308da93c64.png) I will use [React Native macOS](https://github.com/ptmt/react-native-desktop) or [Electron...
vote
medium
Critical
223,469,118
neovim
stderr from clipboard provider is drawn over buffer
- `nvim --version`: ``` NVIM v0.2.0-1395-gce7cba6d Build type: Debug Compilation: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DNVIM_MSGPACK_HAS_FLOAT32 -g -Wall -Wextra -pedantic -Wno-unused-parameter -Ws...
provider,ux,clipboard
low
Critical
223,476,019
go
net/http/httputil: ReverseProxy gives "context canceled" message when client disappears
When clients prematurely abandon a proxied HTTP request, there is no identified cause other than "context canceled". ### What version of Go are you using (`go version`)? `go version go1.8.1 darwin/amd64` ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN="...
NeedsInvestigation
medium
Critical
223,503,425
go
net: Windows test use PowerShell "getmac", not always available
The Windows tests use PowerShell "getmac", which only works in Windows Server 2008. In 2012 and 2016, it fails. Maybe the replacement is now "Get-NetAdapter | select Name,MacAddress" ? /cc @alexbrainman @mikioh
Testing,OS-Windows
low
Major
223,519,780
go
runtime: TestSetGCPercent flaky
Despite CL 41374, I'm seeing a bunch of trybot failures like https://storage.googleapis.com/go-build-log/6c83b9bd/linux-amd64_cce08b9e.log: ``` --- FAIL: TestSetGCPercent (0.17s) garbage_test.go:151: NextGC = 172 MB, want 150±20 MB ``` cc @aclements
Testing,help wanted,NeedsInvestigation,compiler/runtime
low
Critical
223,540,151
pytorch
Unhelpful CrossEntropyLoss dimension error message
I believe I've stumbled upon a slight whoops in nn.CrossEntropyLoss(). If the criterion is called with (a, y) where a in (N, C) and y in (N) such that some yi > C, I get the internal error message below (took a while to parse)... seems like this could use a wrapper. A simple note following the internal error would suff...
module: loss,module: cuda,module: error checking,triaged
low
Critical
223,544,396
pytorch
[proposed feature] Eve: Improving Stochastic Gradient Descent with Feedback
Hi all, I implemented a paper "Improving Stochastic Gradient Descent with Feedback" as called [Eve](https://arxiv.org/abs/1611.01505). Eve is a modified version of Adam, and outperforms other SGD algorithms on some benchmark tasks including image classification. Please, give me any advice and code review. The c...
feature,module: optimizer,triaged
low
Critical
223,588,182
go
runtime: fatal error: addspecial on invalid pointer
A user of our library, github.com/ethereum/go-ethereum/mobile, has submitted the crash report below. The JNI library that crashed was built using gomobile and go1.8.1 android/arm64 and ran on a Galaxy Note 4. We don't have more details, sorry. ```text 04-22 20:42:32.717 11258 11351 E Go : fatal error: addspeci...
help wanted,OS-Android,NeedsInvestigation,mobile,compiler/runtime
low
Critical
223,603,575
node
readline: prompt opt-out behavior
* **Version**: v8.0.0-rc.0 * **Platform**: Windows 4 x64 * **Subsystem**: readline I am not sure if this is a bug or a feature. Consider this simple echo interface: ```js 'use strict'; const readline = require('readline'); const rl = readline.createInterface({ input: process.stdin, output: process...
confirmed-bug,help wanted,readline
low
Critical
223,605,000
TypeScript
Variable declaration list comments from async functions are removed
**TypeScript Version:** 2.2.1 **Code** ```typescript async function example() { // result.value will be promise const promise = Promise.resolve("foo"); await promise; // result.value will be "foo" return "foo"; } ``` **Expected behavior:** Ignoring `__awaiter` and `__generator...
Bug,Effort: Difficult,Domain: Transforms,Domain: Comment Emit
low
Major
223,636,199
go
cmd/compile: postpone argument conversions after inlining
Look at this code: ```go package main import ( "fmt" ) type Log struct { Enabled bool } func (l *Log) Print(args ...interface{}) { if l.Enabled { fmt.Println(args...) } } func main() { var x int = 1000 l := Log{Enabled: false} l.Print("data", x) } ``` If the code is compiled wit...
Performance,NeedsFix,compiler/runtime
low
Critical
223,640,342
go
cmd/compile: add special binary export encoding for iotas?
Poking around the export data for the ssa package, I noticed a lot of runs of constants generated by iota--each with an int value + 1 and a line +1 from its predecessory. It is a somewhat common structure that admits of a compact encoding, something like this: ```go // export func (p *exporter) iotas(e []*Node) { ...
ToolSpeed,compiler/runtime
low
Major
223,704,000
youtube-dl
abc.go.com: Season playlist only downloads the first episode.
## 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,geo-restricted
low
Critical
223,720,411
opencv
Issues Compiling opencv3.2 with CUDA on Mac OS 10.12
My env and lib versions: `Mac OS 10.12`, `opencv 3.2`(download from [here](https://sourceforge.net/projects/opencvlibrary/) ) `cuda8.0` , `qt5` installed via `brew`, `Xcode8 & Xcode7`(with CLT to compile cuda stuff) I intended to install opencv3.2 by compiling source code. cmake settings like below: bu...
bug,priority: low,category: build/install,category: gpu/cuda (contrib),platform: ios/osx
low
Critical
223,730,524
go
cmd/compile: big binary and slow compilation times with maps & []interface{} in static code
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.8.1 darwin/amd64 ### What operating system and processor architecture are you using (`go env`)? darwin_amd64 ### What did you do? I switched some static data from bei...
ToolSpeed,NeedsInvestigation
low
Major
223,745,272
rust
include!() in statement position expects an expression
a.rs ```rust fn main() { include!("b.rs") } ``` b.rs ```rust fn b() {} ``` rustc 1.18.0-nightly (2bd4b5c6d 2017-04-23) ```rust error: expected expression, found keyword `fn` --> b.rs:1:1 | 1 | fn b(){} | ^^ ```
A-macros,I-needs-decision,T-lang,C-bug
low
Critical
223,972,618
rust
Tracking issue for trait aliases
This is a tracking issue for trait aliases (rust-lang/rfcs#1733). TODO: - [x] Implement: [tracking issue](https://github.com/rust-lang/rust/issues/55628) - [x] #56485 — Bringing a trait alias into scope doesn't allow calling methods from its component traits (done in https://github.com/rust-lang/rust/pull/59166)...
A-trait-system,B-RFC-approved,T-lang,B-unstable,C-tracking-issue,F-trait_alias,S-tracking-needs-summary
high
Critical
223,982,899
go
cmd/compile: move arch-specific rewrite rules and ops into arch-specific packages
Right now, all the .rules files, all the generated code, and all the ops are in package ssa. This monolith has a few downsides: It seems a bit semantically incorrect, and it contributes to issues like #20084, and it makes rebuilding the compiler slower when working on the ssa package. I'd like to move all the arch-s...
Performance,ToolSpeed,NeedsFix,compiler/runtime
low
Major
224,009,950
angular
@ContentChildren not populating from parent <ng-content>
``` [*] 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 behavior** @ContentChildren does not seem to wor...
feature,effort2: days,state: Needs Design,workaround3: complex,area: core,core: queries,core: content projection,P4,feature: under consideration
high
Critical
224,173,335
go
x/arch/x86/x86asm: 64-bit CMOV is disassembled as 32-bit CMOV
These two sequences are disassembled by x86asm with the same string: ``` 0f4dd0 CMOVGE AX, DX 480f4dd0 CMOVGE AX, DX ``` If I'm not mistaken, the second is the 64-bit version and should probably use a mnemonic like `CMOVQGE` (or the other one should use `CMOVLGE`).
NeedsFix
low
Minor
224,238,896
go
proposal: cmd/vet: detect homograph attacks
A [homograph attack](https://en.wikipedia.org/wiki/IDN_homograph_attack) is an attack that exploits the visual similarity of two glyphs. Traditionally, this has been used in phishing attacks to trick a user into visiting a malicious domain that looks identical to the real domain. However, homographs can also be used to...
Proposal,Proposal-Hold,Analysis
medium
Major
224,297,549
go
go/types: vague docs about "incrementally" type checking files
The go/types documentation twice mentions "incrementally": > Alternatively, create a new type checker with NewChecker and invoke it incrementally by calling Checker.Files. > NewChecker returns a new Checker instance for a given package. Package files may be added incrementally via checker.Files. However, it's ...
Documentation,NeedsInvestigation
low
Minor
224,297,714
kubernetes
apimachinery - Support for Float comparisons in selector.go for Gt Lt operations
FEATURE REQUEST Provide support for label selector comparisons of Float values. One use case is for targeted selection to nodes with a label greater than a specific major version number of some component. There may be other use cases. ``` [{"key": "myComponentVersion", "operator": "Gt", "values": ["1.8"]}] ``` ...
sig/api-machinery,lifecycle/frozen
low
Major
224,298,572
angular
Each HammerJS event is causing a new HammerJS instance to be created.
**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: core,core: event listeners,P4
low
Critical
224,313,485
vscode
Problem saving keybindings
<!-- Do you have a question? Please ask it on http://stackoverflow.com/questions/tagged/vscode --> - VSCode Version: 1.11.2 and 1.12.0 - insiders - OS Version: Windows 10 -- Sorry for the English, I used Google Translator -- When I set a shortcut, if you press <kbd>Ctrl</kbd> + <kbd>k</kbd>, the VSCode is wai...
feature-request,ux
low
Minor
224,332,412
flutter
Dropdown menus are expected to animate both width and height
Feedback from Material Design review: "Overflow menu popup animates incorrectly. It is supposed to expand both vertically and horizontally, instead it seems to jump to full width and then animates the height" I believe this is in reference to menus such as the dropdown menus seen in Flutter Gallery > Menus demos. ...
framework,f: material design,from: review,has reproducible steps,P2,found in release: 3.3,found in release: 3.4,team-design,triaged-design
low
Major
224,362,797
opencv
GaussianBlur in OpenCL work incorrectly
<!-- 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: ocl,incomplete
low
Critical
224,392,856
vscode
Editor drag and drop mouse feedback missing
Refs: #25338 OS X, insider 1. Enable editor drag and drop and select some text 2. Drag that text 3. Notice that the editor cursor nicely updates however the mouse cursor does not update to reflect that I am dropping something. This leaves me puzzled as the user what is going on as there is no prominent feedback...
ux,under-discussion,editor-drag-and-drop
low
Minor
224,406,200
vscode
Drop cursor missing if drop location === current cursor location
<!-- Do you have a question? Please ask it on http://stackoverflow.com/questions/tagged/vscode --> Refs: #25338 IMO the current cursor location is less important that the drop indication. So the cursor should show the drop location style. ![cast](https://cloud.githubusercontent.com/assets/1931590/25428184/5e0f...
ux,under-discussion,editor-drag-and-drop
low
Minor
224,411,656
neovim
'guicursor' coloring is not updated by `:highlight Cursor`
- `nvim --version`: ```console $ n -v NVIM v0.2.0-1464-g7e571bca Build type: RelWithDebInfo Compilation: /usr/local/Homebrew/Library/Homebrew/shims/super/clang -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DNVIM_MSGPACK_HAS_FLOAT32 -O2 -g -DDISABLE_LOG -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-...
bug,highlight,options
low
Critical
224,413,263
pytorch
Conjugate Gradient mentioned in docs, but not implemented
The torch.nn.optim docs promised me conjugate gradient descent (mentions it in the closure section), but it's not there. No references to the algorithm in the code base either :(. Not yet ported from Lua? cc @vincentqb
todo,feature,module: optimizer,triaged
medium
Major
224,415,200
go
x/pkgsite: list types that satisfy an interface within its package
Forked from https://github.com/golang/go/issues/19412#issuecomment-296766847, to continue discussion with @jimmyfrasche and any others without taking over that proposal thread. The pattern of having an interface with an unexported method and types that implement it is a fairly common pattern in Go as we don't have [...
Proposal,Proposal-Accepted,Tools,pkgsite
medium
Critical
224,515,103
go
runtime: shrink map as elements are deleted
### What version of Go are you using (`go version`)? go version go1.8 windows/amd64 ### What operating system and processor architecture are you using (`go env`)? set GOARCH=amd64 set GOBIN= set GOEXE=.exe set GOHOSTARCH=amd64 set GOHOSTOS=windows set GOOS=windows set GOPATH=C:\dev\Go set GORACE= set GOROO...
Performance,NeedsFix,compiler/runtime
high
Critical
224,562,251
pytorch
Feature Request: noise contrastive estimation/negative sampling
There isn't a standard loss function implementing this, even though it's pretty common. I am perfectly willing to implement it myself, if nobody else feels like it. It shouldn't be terribly complicated. I would structure it something like: ```python class NCELoss(torch.nn.modules.loss._Loss): r"""Noise contrasti...
feature,module: nn,triaged
medium
Critical
224,586,490
TypeScript
Proposal: Add new __construct helper for better ES5/ES6 class interop
I propose we add a new helper to assist with class instance construction runtime semantics when extending ES6 built-in classes while compiling with `--target ES5`. ## Background Our current emit for classes for `--target ES5` assumes that the superclass follows the same runtime semantics as the classes we emit. Gen...
Suggestion,Awaiting More Feedback
medium
Critical
224,597,303
TypeScript
Suggestion: a built-in TypedArray interface
I would have expected a [`TypedArray`][ecma-typed-array] interface to exist in the built-in declaration libraries. Instead, there are independent types for [`Int8Array`][lib-int8-array], etc, with no common base type. ```ts interface Int8Array { /* ... */ } interface Int8ArrayConstructor { /* ... */ } declare c...
Suggestion,Help Wanted,Domain: lib.d.ts,Fix Available
medium
Critical
224,611,346
pytorch
"Sparsified" mathematical operations
I had a discussion with @soumith about this on Friday, but I wanted to record things down here so that I don't forget. **Background.** Imagine that you are @martinraison and you are implementing sparse Adagrad. You end up writing this code: if p.grad.data.is_sparse: grad_indic...
module: sparse,low priority,triaged
medium
Critical
224,870,953
flutter
Canonical routing example code isn't documented
We find that our developers learn by reading the code, and documenting the code with dartdocs is a helpful way to teach and orient the developer. https://github.com/flutter/flutter/blob/master/examples/stocks/lib/main.dart is our canonical "simple" example of routing. We'd love to see inline dartdocs here, pointing ...
framework,d: api docs,d: examples,f: routes,P2,team-framework,triaged-framework
low
Minor
224,872,518
nvm
--reinstall-packages-from fails when local repositories are npm link'd
- Operating system and version: macOS Sierra 10.12.4 - `nvm debug` output: <details> <!-- do not delete the following blank line --> ```sh nvm --version: v0.33.0 $SHELL: /bin/zsh $HOME: /Users/phulce $NVM_DIR: '$HOME/.nvm' $PREFIX: '' $NPM_CONFIG_PREFIX: '' nvm current: v7.9.0 which node: $NVM_DIR/vers...
bugs,needs followup
medium
Critical