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
148,968,992
TypeScript
Use function type shorthands when displaying signature help
_From @unional on April 14, 2016 23:32_ ![image](https://cloud.githubusercontent.com/assets/3254987/14546974/4f88973e-025e-11e6-8053-724cc8ecc51e.png) I would be great if when `tape((<cursor>))` it would be able to drill in the `tape.TestCase` and show the signature of the callback. :tulip: This is probably on `tsc`...
Suggestion,Help Wanted,API,VS Code Tracked
low
Major
148,974,532
TypeScript
Cannot get symbol inside class decorator (Cannot read property 'members' of un...)
**TypeScript Version:** 1.8.10 **Code** ``` ts @Component({ selector: SELECTOR }) class SampleComponent {} const SELECTOR = 'ng-demo'; ``` **Expected behavior:** With sample [`SyntaxWalker`](https://github.com/palantir/tslint/blob/master/src/language/walker/syntaxWalker.ts) based on `tslint`, once I visit the `...
Bug,Help Wanted,API
low
Critical
149,011,192
youtube-dl
Site request: h-a.no
## Please follow the guide below - You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your _issue_ (like that [x]) - Use _Preview_ tab to see how your issue will actually look like --- ### Make s...
site-support-request,geo-restricted
low
Critical
149,037,249
go
git-codereview: allow disabling of "foo.mailed" tag creation
Every time you run "git codereview mail" it creates a new tag (as per [its doc](https://godoc.org/golang.org/x/review/git-codereview)). I've never actually used these tags for their advertised purpose (if I did need to diff against my last mailed commit, I would just use the advertised commit hash from within gerrit)...
NeedsInvestigation
low
Major
149,040,950
go
debug/pe: extend package so it can be used by cmd/link
CC: @minux @ianlancetaylor @crawshaw cmd/link and debug/pe share no common code, but they should - they do the same thing. If package debug/pe is worth its weight, it should be used by cmd/link. I accept that this was impossible to do when cmd/link was a C program, but now cmd/link is written in Go. I also tried to ...
help wanted,NeedsFix
medium
Critical
149,072,274
opencv
minMaxIdx not available in the JNI binding
Hi, I noticed that the function minMaxIdx (core) is not available through the JNI binding. Only minMaxLoc is available, which is a problem given that minMaxLoc is limited to 2-dimensional arrays. - OpenCV version: 3.1.0 - Host OS: Linux (Mint 17.3) This issue was discussed here: http://answers.opencv.org/question/9267...
feature,affected: 3.4,category: java bindings
low
Minor
149,072,396
three.js
Proposal: Making flattened math classes that operate directly on views the default
##### Description of the problem Clara.io has been struggling with the non-memory efficient Three.JS math classes for four years now. Basically Three.JS math classes use object members to represent their data, e.g.: ``` THREE.Vector3 = function( x, y, z ) { this.x = x; this.y = y; this.z = z; } ``` This patte...
Suggestion
medium
Major
149,168,960
react
Iframe load event not firing in Chrome and Safari when src is 'about:blank'
See: https://jsfiddle.net/pnct6b7r/ It will not trigger the alert in Chrome and Safari, but it will work in Firefox and even IE8. Is this a React issue or Webkit issue? If it is a Webkit issue, should we "fix it" in React given that we want [consistent events across browsers](http://facebook.github.io/react/docs/even...
Type: Bug,Component: DOM
low
Major
149,183,640
opencv
Mask is ignored in cv::CascadeClassifier
Output of mask generated by maskGenerator of cv::CascadeClassifier (see https://github.com/Itseez/opencv/blob/master/modules/objdetect/src/cascadedetect.cpp#L996) is ignored in detection step. It is assigned, but never actually used. ### In which part of the OpenCV library you got the issue? - objdetect ### Expected be...
feature,category: objdetect
low
Major
149,251,959
go
flag: handles unknown arguments in an unexpected less-helpful way
If the flag library encounters an unknown parameter, it discards that parameter and dumps everything else in the positional arguments bucket. Instead, the flag library should (optionally, probably when ContinueOnError is specified) put all unknown parameters in the positional arguments bucket (returned by Args) and ke...
NeedsDecision
low
Critical
149,255,868
youtube-dl
Option to combine -o and -g
- [X] I've **verified** and **I assure** that I'm running youtube-dl **2016.04.13** - [X] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [X] [Search...
request
low
Critical
149,541,041
go
encoding/asn1: better error message when unmarshaling non-pointer
Please answer these questions before submitting your issue. Thanks! 1. What version of Go are you using (`go version`)? NaCL / Playground 2. What operating system and processor architecture are you using (`go env`)? Playground 3. What did you do? https://play.golang.org/p/TnLoso9len 4. What did you expect to s...
NeedsInvestigation
low
Critical
149,548,258
go
cmd/link: move away from *LSym linked lists
The linked lists come from the original C code. Slices make the code a bit easier to follow.
compiler/runtime
low
Minor
149,560,385
go
cmd/compile: eliminate all (some?) convT2{I,E} calls
For pointer-shaped types, convT2{I,E} are already done by the compiler. We currently call into the runtime only for non-pointer-shaped types. There are two cases, where the interface escapes and where it doesn't. ``` type T struct { a, b, c int } func f(t T) interface{} { return t } func g(t T) { h(t) } /...
Performance,NeedsFix,early-in-cycle
low
Major
149,560,456
opencv
Delaunay Triangulation, possible wrong calculation for huge graphs?
Hi there, I was working with delaunay triangulation using OpenCV and trying to create a Gabriel Graph (https://en.wikipedia.org/wiki/Gabriel_graph) from delaunay. But the result is not like what I expected. Also, I compared results with R library (spdep). thanks ### Please state the information for your system - Ope...
bug,category: imgproc,affected: 3.4
low
Minor
149,561,444
TypeScript
Suggestion: Better error message when unable to resolve modules
Related to our woes with #8189, if the compilation errors gave some better hinting when it was unable to resolve a module, we might not have taken so long to find the solution (and we wouldn't have filed an issue!). The idea would be that if there is a compilation error of `cannot file module "whatever"`, to make some...
Docs
low
Critical
149,574,952
opencv
OpenCV build fails on Mac 10.10.5
I manage to run cmake successfully and build the configuration. However, when I run make -j5, there is an error on "lib/libopencv_videoio.3.1.0.dylib" that has stopped me from building. ### Please state the information for your system - OpenCV version: latest master branch for opencv and opencv_contrib - Host OS: Mac O...
bug,category: build/install,affected: 3.4
low
Critical
149,591,140
flutter
expose the navigator route as a service extension
Something like: - [ ] get the current value for the route - [ ] set a new value for the route - [ ] enable and disable receiving events on route changes @Hixie, I very briefly looked at the flutter sources, but didn't see how to get this info.
c: new feature,tool,framework,f: routes,P3,team-framework,triaged-framework
low
Minor
149,604,687
TypeScript
Preselect completion list entries based on contextual type
It should be cool if tsserver could provide a new command `guesstypes` to give the capability to guess parameter types when completion is applied In other word, I would like to support the [same feature that I have done with tern ](https://github.com/angelozerr/tern-guess-types) For instance if you open completion fo...
Suggestion,Help Wanted,API
low
Minor
149,780,545
go
os: Stdin is broken in some cases on windows
Please answer these questions before submitting your issue. Thanks! 1. What version of Go are you using (`go version`)? go version go1.6 windows/amd64 2. What operating system and processor architecture are you using (`go env`)? set GOARCH=amd64 set GOOS=windows 3. What did you do? I tried to make a Squid (...
OS-Windows
low
Critical
149,828,463
youtube-dl
Command line credentials are applied for all the extractors in extraction process
--- - [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.04.19** - [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] [Se...
bug
low
Critical
149,831,208
youtube-dl
Add support for hbonordic.com
- [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.04.19** - [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [x] [Search...
site-support-request,geo-restricted
low
Critical
149,846,384
three.js
BoundingBoxHelper for buffer geometry does not use drawrange neither groups
##### Description of the problem BoundingBoxHelper.update (setFromObject) for buffer geometry does not use drawrange.count ( neither groups), so the limits can include points with 0,0,0 (now it uses positions.length) if you have the typedarray with data still with 0,0,0, the box dimension figured out is not correct....
Suggestion
low
Critical
149,887,783
TypeScript
Do not rename imports from ambient modules
Issue explained by @bbgone in https://github.com/Microsoft/TypeScript/issues/8118#issuecomment-212218038 Renaming an import alias for a module coming from a .d.ts file, renames all instances. this is obviously wrong. Options, 1. error (obviously not helpful), 2. only rename local symbol (better, but leaves the code ...
Suggestion,Help Wanted,Effort: Moderate
low
Critical
149,937,239
go
runtime: significant performance improvement on single core machines
**1. What version of Go are you using (`go version`)?** ``` go version go1.5.4 linux/amd64 ``` **2. What operating system and processor architecture are you using (`go env`)?** ``` GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GOPATH="" GORACE="" GOROOT="/root/go" GOTOOLDIR="/root...
compiler/runtime
low
Major
149,941,579
go
go/build: allow Import to ignore build constraints
There's no way at the moment to use `Import` or `ImportDir` to select all the files in package ignoring build constraints. There is the `Package.IgnoredGoFiles` field, but that does not extend to finding the dependencies of the ignored files, and so requires extra parsing steps. One use case for this is in situations ...
NeedsInvestigation
low
Minor
149,943,919
rust
DWARF does not describe closure type
I wrote a simple test case that makes a closure. The closure is just: ``` let f2 = || println!("lambda f2"); ``` The resulting DWARF doesn't describe the closure type at all: ``` <7><11e>: Abbrev Number: 6 (DW_TAG_variable) <11f> DW_AT_location : 2 byte block: 91 78 (DW_OP_fbreg: -8) ...
A-debuginfo,C-enhancement,P-medium,T-compiler
low
Critical
149,951,109
rust
DWARF doesn't describe use declarations
I wrote a small test program of `use` declarations: ``` pub mod mod_x { pub fn f() { use ::mod_y::g; g(); } pub fn g() { println!("X"); } } pub mod mod_y { pub fn g() { println!("Y"); } } pub fn main() { mod_x::f(); } ``` Examining the DWARF, I don't see...
A-debuginfo,C-enhancement,P-medium,T-compiler
low
Minor
149,961,932
go
cmd/compile: ephemeral slicing doesn't need protection against next object pointers
``` func f(b []byte) byte { b = b[3:] return b[4] } ``` We compile this to something like (bounds checks omitted): ``` p = b.ptr inc = 3 if b.cap == 3 { inc = 0 } p += inc return *(p+4) ``` The `if` in the middle is there to make sure we don't manufacture a pointer to the next...
Performance,compiler/runtime
low
Major
150,014,693
vscode
Allow to scope settings by platform
Hi I develop on 3 different platform. When synchronizing settings, snippets and so on, i often must change path, adjust font-size, etc... So, it could be great if we had a per platform settings set (Windows, Mac, Unix)
feature-request,config
high
Critical
150,092,855
TypeScript
`Result value must be used` check
Hello. Quite often while working with `ImmutableJS` data structures and other immutable libraries people forget that values are immutable: They can accidentally write: ``` obj.set('name', 'newName'); ``` Instead of: ``` let newObj = obj.set('name', 'newName'); ``` These errors are hard to discover and they are ve...
Suggestion,Awaiting More Feedback
medium
Critical
150,184,770
nvm
Chakra
Any plans to support versions of node running on [Chakra from Microsoft](https://github.com/nodejs/node-chakracore/releases)?
OS: windows,feature requests,pull request wanted
low
Major
150,194,510
rust
trait objects with late-bound regions and existential bounds are resolved badly
## STR ``` Rust fn assert_sync<T: Sync>(_t: T) {} fn main() { let f: &(for<'a> Sync + Fn(&'a u32)->&'a u32) = &|x| x; assert_sync(f); } ``` ## Expected Result Code should compile and run ## Actual result ``` <anon>:4:33: 4:35 error: use of undeclared lifetime name `'a` [E0261] <anon>:4 let f: &(for<'a> ...
A-resolve,A-lifetimes,T-compiler,C-bug,T-types,A-trait-objects
low
Critical
150,222,463
youtube-dl
Soundcloud Go Track Fetching
## Please follow the guide below - You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your _issue_ (like that [x]) - Use _Preview_ tab to see how your issue will actually look like --- ### Make s...
geo-restricted,account-needed
low
Critical
150,226,679
youtube-dl
--verify-archive
--- ### Make sure you are using the _latest_ version: run `youtube-dl --version` and ensure your version is _2016.04.19_. 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
150,267,915
rust
--target should ignore the machine part of the triplet in most cases
Currently, rustc accepts a limited set of --target values. Those match _some_ of the values one can get out of the typical `config.guess`, but for most platforms, the machine/manufacturer part of the target triplet should be ignored, or allowed to be omitted. (the output of config-guess is of the form `CPU_TYPE-MANUFAC...
T-compiler,T-dev-tools,C-feature-request
low
Major
150,304,574
opencv
opencv cv2.waitKey() do not work well with python idle or ipython
### my OS - OpenCV version: 2.4.5 - Host OS: Linux (CentOS 7) ### descirption of the problem After loading an image, and then show the image, cv2.waitKey() can not work properly when I use opencv in python idle or jupyter console. For example, if I use `cv2.waitKey(3000)` after using `cv2.imshow('test', img)`, the i...
bug,category: python bindings,priority: low,affected: 2.4
low
Major
150,415,526
flutter
Would be nice to have `flutter screenrecord`
Even if it only worked on Android for now. I looked at writing it briefly this morning, but unlike a screen capture which is once and done, a screen recording is likely long running and waits for a keyboard interrupt to stop? I suspect other CPTs have implemented something like this. @devoncarew
c: new feature,tool,P3,team-tool,triaged-tool
medium
Major
150,440,734
youtube-dl
Make these errors optional
- [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.04.19** - [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [x] [Search...
request
low
Critical
150,496,561
rust
Missing auto-load script in gdb
When compiled with `-g`, we produce binaries which contain a `gdb_load_rust_pretty_printers.py` in `.debug_gdb_scripts` section. This makes gdb complain about missing scripts when run under plain gdb as opposed to the rust-gdb wrapper script. Distribution puts this script into `$INSTALL_ROOT/lib/rustlib/etc`, which is...
A-debuginfo,T-compiler,C-bug
medium
Critical
150,572,725
youtube-dl
Add an option to ignore PostProcessingError (was: --embed-thumbnail should warn, not error, on non-mp3/mp4)
- [ x ] I've **verified** and **I assure** that I'm running youtube-dl **2016.04.19** - [ x ] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [ x ] [...
request
low
Critical
150,603,403
angular
Input type='date' with ngModel bind to a Date() js object.
Hi, here it's the plunker. http://plnkr.co/edit/3ZDyWnabgp4S3m2rxJaX?p=preview **Current behavior** Input doesn't show the date at beginning (12-12-1900) Only changing the year in input value myDate variable get refresh. **Expected/desired behavior** First, I would expect the input to show the correct date (12-12-19...
feature,workaround1: obvious,freq3: high,area: forms,feature: under consideration
medium
Major
150,624,847
rust
DWARF does not mention Self type
I wrote a simple test program using the `Self` type: ``` struct Something(i32); impl Something { fn x(self: &Self) -> i32 { self.0 } } fn main() { let y = Something(32); let z = y.x(); () } ``` When I examine the resulting DWARF, I don't see any mention of `Self`. I think it should be emitted as a...
A-debuginfo,C-enhancement,P-low,T-compiler
low
Minor
150,643,388
rust
rustc::lint could use some helper functions for working with macros
(See #22451 and possibly others) Currently we have a few functions in [clippy](https://github.com/Manishearth/rust-clippy)`/src/util/mod.rs` to deal with macros. Namely we can check if some span stems from a macro expansion (though that one could need some work), or if some span was expanded by a given macro (by name)...
A-lints,T-compiler,C-feature-request
low
Major
150,677,226
neovim
Remove spaces from formerly-indented blank lines
- Neovim version: 0.1.3 - Vim behaves differently?: no - Operating system/version: Linux Fedora 23 - Terminal name/version: Gnome-terminal - `$TERM`: xterm-256color ### Steps to reproduce using `nvim -u NONE` 1. `nvim -u NONE` 2. Type: ``` This is a test. This is indented. ``` 3. Backspac...
enhancement,tui,core
low
Minor
150,703,506
youtube-dl
Is there an option that yields the best available audio quality among all formats?
- [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.04.24** - [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [x] [Search...
request
medium
Critical
150,779,779
neovim
defaults: "-u NORC" with invalid runtime shows E484
If syntax.vim is missing, it should be quiet, not raise E484 _unless_ the user explicitly did `:syntax on` (as opposed to merely allowing the default). https://github.com/neovim/neovim/pull/4252#issuecomment-183994718 https://twitter.com/ds26gte/status/724496755602128896 - Counterargument: if users normally allow the...
bug,ux,startup
low
Critical
150,952,640
kubernetes
Declarative update of configmaps and secrets from the contents of files
Currently AFAIK you can only create a secret from a file using: ``` kubectl create secret generic <name> --from-file=<key>=<file> ``` The drawback is this, If a change is made to the file you need to delete and then recreate the secret: ``` kubectl delete secret <name> kubectl create secret generic <name> --from-fil...
priority/important-soon,area/app-lifecycle,area/kubectl,kind/feature,sig/cli,area/secret-api,area/declarative-configuration,lifecycle/frozen
high
Critical
151,094,471
TypeScript
In JS, use JSDoc to specify a call's type arguments
In typescript we can specified template at function call ``` function A<T>(callBack:function(T):void) { } A<{name:string}>(function(item) { /** item is {name:string} */ }) ``` But I don't know how to force the type of its template when calling it from js file. And I can't find any clue. It seem like not possible so I...
Suggestion,Needs Proposal,Domain: JSDoc,Domain: JavaScript
low
Minor
151,105,027
youtube-dl
Unable to extract subtitles from TV3Play.no
## Please follow the guide below - You will be asked some questions and requested to provide some information, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your _issue_ (like that [x]) - Use _Preview_ tab to see how your issue will actually look like --- ### Make s...
geo-restricted
low
Critical
151,167,981
rust
linking staticlib files into shared libraries exports all of std::
Consider this toy example: ``` rust #[no_mangle] pub fn hello() { println!("hello world") } ``` ``` c++ extern "C" { void hello(); } void really_hello() { hello(); } ``` Compile and link: ``` sh $ rustc --crate-type staticlib --emit link=sl.a sl.rs $ g++ -o hello.so -fPIC -shared driver.cpp sl.a ``` With ...
A-linkage,T-compiler,C-bug
low
Major
151,170,595
opencv
Opencv with Qt cmd remains after actual opencv window is closed when it should be closed also
- OpenCV version: 2.4 / 3 - Host OS: Windows 7/10 have opencv various versions with Qt 4.x or 5.x build with visual sutdio 2010 when i run my exe, with simple opencv loading an image , waitkey and release , Qt seems to keep open the cmd window if i close the opecv window. ( it only closes the cmd window if i pres...
category: highgui-gui,RFC
low
Minor
151,194,391
go
cmd/compile: unexplained allocation for convT2I
Please answer these questions before submitting your issue. Thanks! 1. What version of Go are you using (`go version`)? `go version devel +2bf7034 Mon Apr 25 16:18:10 2016 +0000 darwin/amd64` 1. What operating system and processor architecture are you using (`go env`)? `````` darwin/amd64``` 3. What did you do? See...
Performance,compiler/runtime
low
Critical
151,206,372
three.js
Can character-based caching remove the memory manager from AnimationMixer?
##### Description of the problem Is there a way to remove the memory manager from the AnimationMixer? The memory manager is responsible for a large part of that code base. If we just made people pre-assign Clips/Actions to their characters, and then just not enable those Clips/Actions, the characters could act as th...
Suggestion
low
Minor
151,207,259
three.js
Request to refactor THREE.Interpolant to make it more flexible, less tightly coupled.
##### Description of the problem I would like to refactor THREE.Interpolant to be a bit simplier base class that has less assumptions about how it will be used. This would make it more flexible. I would like to make the following changes: - Remove the assumption in the base class that there is one sampleValues buffe...
Suggestion
low
Minor
151,209,325
neovim
Special marks change on diffupdate
- Neovim version: 0.1.4-dev - Vim behaves differently? Vim version: - Operating system/version: Ubuntu 15.10 - Terminal name/version: rxvt-unicode 9.21 - `$TERM`: tmux-256color ### Problem behaviour When editing buffers in "diff mode", a `:diffupdate` causes the `'[` and `']` marks to be moved to the first and ...
bug-vim,diff
low
Critical
151,219,639
opencv
/MT flag while building OpenCV
I am having problems while building OpenCV with /MT flags using Intel Compiler for Windows. ### Please state the information for your system - OpenCV version: 3.1 - Host OS: Windows 7 - Compiler: Intel Compiler ### In which part of the OpenCV library you got the issue? Building OpenCV ### Expected behaviour To be ab...
bug,priority: low,category: build/install
low
Minor
151,504,925
TypeScript
Issue an error if tsconfig.json results in no files to compile
**TypeScript Version:** 1.8.9 I'm trying to run `tsc -p .` to use the tsconfig.json file and compile app.ts but it gives no warnings and no output. The same tsconfig and app.ts in a Visual Studio project correctly gives app.js and app.d.ts files. This is happening on two different computers. By the way, is there no...
Bug,Help Wanted
low
Critical
151,511,386
kubernetes
Clarify security philosophy around update & delete
We had some vigorous discussion in the API machinery SIG earlier today about what a system administrator should expect when granting a user update rights on a given object or class of objects. My own position is that update is strictly more powerful than delete and you shouldn't give anyone update powers over an objec...
area/security,area/api,sig/api-machinery,lifecycle/frozen,sig/security
medium
Major
151,612,670
vscode
Handle pasting code from column selection specially
https://github.com/Microsoft/vscode/issues/1515#issuecomment-210166838 From @seva0stapenko --- Tried column selection in VSCode 1.0. Well, rectangular selection does work, cutting and pasting back also works, but that's about it. Cutting and pasting into a different part of the code does not work as expected....
feature-request,editor-columnselect
high
Critical
151,671,632
vscode
Support to print the editor contents
- VSCode Version: 1.0 - OS Version: Windows 10.0.10586.218 Steps to Reproduce: 1. Open a File in VSCode or enter some code 2. Try to print it to a printer Sometimes paper is unbeatable.
feature-request,editor-rendering
high
Critical
151,759,934
TypeScript
Allow `this` in static initializers
The following is an error: ``` ts function factory() { return class { static x = 1; static y = this.x * 2; } } ``` I can see some potential for confusion here, though I'm not sure what that confusion might be. On the flip side, it seems useful to be able to refer to an anonymous class in a static initiali...
Suggestion,ES Next,Awaiting More Feedback
low
Critical
151,777,021
kubernetes
Feature request: A way to signal pods
This has come up a bunch of times in conversations. The idea is that some external orchestration is being performed and the user needs to signal (SIGHUP usually, but arbitrary) pods. Sometimes this is related to ConfigMap (#22368) and sometimes not. This also can be used to "bounce" pods. We can't currently signal ...
priority/backlog,area/api,sig/node,kind/feature,lifecycle/frozen
high
Critical
151,853,106
youtube-dl
Implement --hls-prefer-livestreamer
- [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.04.24** - [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [x] [Search...
request
low
Critical
151,933,883
go
runtime/metrics: add goroutine state counts, total goroutines created, total threads
**Update**, Jun 7 2023: runtime/metrics now exists, but there are a few metrics in the draft CL here that aren't yet exposed. See https://github.com/golang/go/issues/15490#issuecomment-1564615291. - - - MemStats provides a way to monitor allocation and garbage collection. We need a similar facility to monitor ...
help wanted,Proposal,Proposal-Accepted,FeatureRequest,early-in-cycle
medium
Major
152,053,357
rust
Add additional LoopUnswitch and LICM passes
This is [recommended by LLVM](http://llvm.org/docs/Frontend/PerformanceTips.html#pass-ordering) for languages with lots of guards that are rarely executed. Rust certainly does (mostly array bounds checks, but also `Option::unwrap()` and `Result::unwrap()`).
A-LLVM,I-slow,C-enhancement,T-compiler
low
Major
152,117,856
electron
Add workspace API
All major platforms now support workspaces (virtual desktops), we should probably add a set of workspace related API, so it can: - get the workspace of window; - list available workspaces; - choose which workspace to put the new window; - move windows between workspaces.
enhancement :sparkles:
high
Critical
152,194,850
rust
Suggest move closures when a Sync bound is not satisfied through a closure
``` rust use std::thread; use std::sync::mpsc; fn main() { let (send, recv) = mpsc::channel(); let t = thread::spawn(|| { recv.recv().unwrap(); }); send.send(()); t.join().unwrap(); } ``` [playpen](https://play.rust-lang.org/?gist=2fa73177cd7f0935cbf9883c8348715d&version=stable&backtrace...
C-enhancement,A-diagnostics,A-closures,T-compiler
low
Critical
152,468,790
opencv
Compiling Opencv with cuda fails Mac OS 10.9.5
Opencv3.1.0 - Host OS:Mac 10.9.5 - Compiler & CMake: GCC 4.5 or NVCC from cuda 7.5 & CMake 3.5.2 cmake completes configuring and writes the build files. (Although the error log is unhappy with a variety of inscrutable errors) make gives ``` . . [ 5%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jp2_...
bug,category: build/install,category: gpu/cuda (contrib),platform: ios/osx
low
Critical
152,493,425
opencv
Please consider supporting RelWithDebInfo
I don't see the purpose of the following line in the top level CMake script: `set(CMAKE_CONFIGURATION_TYPES "Debug;Release" CACHE STRING "Configs" FORCE)` What are the reasons for disabling RelWithDebInfo?
RFC
low
Critical
152,584,753
go
net/http: send and understand the hop-by-hop Keep-Alive header
Now that we have `net/http.Transport.IdleConnTimeout` we could also advertise our timeout to the peer: https://tools.ietf.org/id/draft-thomson-hybi-http-timeout-01.html#rfc.section.2 It's a little useless for the client to send it, but perhaps the server could take care not to close the connection just before (~secon...
NeedsInvestigation
low
Minor
152,596,246
youtube-dl
[SR] Mediathek Site support request
- [x] I've **verified** and **I assure** that I'm running youtube-dl **2016.05.01** - [x] At least skimmed through [README](https://github.com/rg3/youtube-dl/blob/master/README.md) and **most notably** [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) sections - [x] [Search...
site-support-request
low
Critical
152,667,138
react
RFC: Configure Warning Levels Using ENV Variable
Would it be feasible to specify the version of warnings you want through a static environment variable? That would silence new warnings so that you can safely update minor versions without worrying about warning spew. Dynamic configuration creates stateful shared module dependencies which we're very close to getting ...
Type: Enhancement,React Core Team
low
Minor
152,669,545
nvm
Option to disable curl-like download progress
ERROR: type should be string, got "https://github.com/creationix/nvm/blob/1c3f8da6c38bdfecf3dbf01c6753a6fd27032b9d/nvm.sh#L45-L51\n\nThat section of code looks pretty messy when nvm is used in a CI system like Jenkins. Here's a small snippet of what that looks like to Jenkins' streaming console log.\n\n```\n...\n### 5.3%\n### 5.3%\n### 5.3%\n### 5.4%\n### 5.4%\n### 5.4%\n### 5.4%\n### 5.5%\n### 5.5%\n### 5.5%\n#### 5.6%\n#### 5.7%\n#### 5.8%\n#### 5.9%\n#### 6.0%\n#### 6.1%\n#### 6.2%\n#### 6.3%\n#### 6.4%\n#### 6.4%\n#### 6.4%\n#### 6.5%\n#### 6.5%\n#### 6.5%\n#### 6.6%\n#### 6.6%\n#### 6.7%\n#### 6.7%\n#### 6.7%\n#### 6.7%\n#### 6.8%\n#### 6.8%\n#### 6.8%\n#### 6.9%\n##### 7.0%\n##### 7.0%\n##### 7.0%\n##### 7.1%\n##### 7.2%\n##### 7.2%\n##### 7.3%\n##### 7.3%\n##### 7.4%\n...\n```\n\nIt would be great if there was an option to disable the progress bar. While it's true I can discard output (e.g. `nvm install v4.2.3 &> /dev/null`) I fear discarding potentially valuable troubleshooting output from stderr.\n"
installing node,feature requests,pull request wanted
medium
Critical
152,678,242
go
cmd/compile: evaluate the need for shortcircuit
For Go1.8 1. What version of Go are you using (`go version`)? go version devel +097e2c0 Mon May 2 21:02:54 2016 +0000 linux/amd64 2. What operating system and processor architecture are you using (`go env`)? linux/amd64 3. What did you do? ./make.bash & check the size of binaries in pkg/tools/linux_amd64 4. Wh...
Performance,NeedsInvestigation,early-in-cycle
low
Minor
152,739,187
go
x/net/publicsuffix: automate periodic regeneration
Please answer these questions before submitting your issue. Thanks! 1. What version of Go are you using (`go version`)? 1.6.1 2. What operating system and processor architecture are you using (`go env`)? linux/amd64 3. What did you do? I used golang.org/x/net/publicsuffix and it doesn't contain the last updated ...
Builders,NeedsInvestigation
low
Major
152,773,104
TypeScript
umd module compiler option doesn't have a fallback for global namespace.
Most umd patterns have a third fallback that allows exporting to the window.namesapace = export; As such the current umd module export is pretty broken when a huge number of users / library developers need to support all three. ``` js (function(root, factory) { if (typeof define === 'function' && define.amd) { d...
Suggestion,Needs Proposal
high
Critical
152,872,036
bitcoin
Script disassembly for short byte arrays is confusing
ScriptToAsmString will convert any push shorter than 4 bytes to a number before display. This can lead to some confusion if you were expecting a hex-encoded blob as it does for longer-than-4-byte chunks. I'm not sure this is even documented anywhere.
Docs
low
Minor
152,882,370
go
cmd/compile: SSA performance regression on polygon code
1. What version of Go are you using (`go version`)? go 1.6.2 and devel +15f7a66 2. What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GOPATH="/home/nkovacs/progs/go" GORACE="" GOROOT="/usr/local/go" GOTOOLD...
Performance,NeedsFix,early-in-cycle
low
Major
152,926,906
nvm
Should io.js be removed from nvm ls? Now that it is merged with node again
Since io.js isn't going to be developed anymore.
feature requests,io.js
medium
Critical
152,930,596
go
x/exp/shiny: widgets
Tracking bug for Shiny Widgets. | Widget | Assignee | Notes | | --- | --- | --- | | [Button](https://www.google.com/design/spec/components/buttons.html) | @nigeltao | | | [Cards](https://www.google.com/design/spec/components/cards.html) | | | | [Chips](https://www.google.com/design/spec/components/chips.html) | | ...
NeedsInvestigation
low
Critical
152,993,933
opencv
Traincascade tool: reported training time invalid on multicore systems
### Please state the information for your system - OpenCV version: 3.x --> current master branch - Host OS: Linux (Ubuntu 14.04) ### In which part of the OpenCV library you got the issue? OpenCV's embedded train_cascade tool for building cascade classifiers using the AdaBoost process ### Expected behaviour When runn...
feature,category: apps
low
Minor
153,069,303
kubernetes
Warn or error when a workload object (eg Deployment) would breach a quota
The quota system, in its current form, doesn't play well with high-level resources such as replication controllers/replica sets/deployments. While quota will correctly not allow my replicaset to scale up to the N pods I have asked for -because N pods may exceed {cpu,memory,pods} quota- the replicaset is blocked in limb...
priority/backlog,sig/scheduling,sig/architecture,lifecycle/frozen
medium
Critical
153,083,507
opencv
Unable to retrieve depth or points from occipital structure sensor using OpenNI2
### Please state the information for your system - OpenCV version: 3.1 master from git - Host OS: Windows 7 - MSVC 2013 & CMake 3.5 ### In which part of the OpenCV library you got the issue? Examples: - videoio ### Expected behaviour Acquisition of depth map and point cloud from sensor ### Actual behaviour ``` Atte...
bug,category: videoio,affected: 3.4
low
Minor
153,102,299
kubernetes
pod status does not reflect 'Reason' codes for failures that one sees when doing kubectl describe pod <podname>
When a pod (or rep controller, or service) fails for reason like 'no corresponding docker image' or PodExceedsFreeCPU we see this when we do a "pod describe". I have included the describe output for one of our test runs below. Notice that the Status for the replication controller is Pending -- however an event occ...
priority/backlog,sig/scheduling,area/usability,area/kubectl,area/reliability,sig/cli,lifecycle/frozen
low
Critical
153,115,780
youtube-dl
TheVideo.me site support request
I think that it's a [XFileShare](https://github.com/rg3/youtube-dl/blob/57d8e32a3ec7fe70522edad6fd0c2847b4e00944/youtube_dl/extractor/xfileshare.py) extractor which you can see because it's similar HTML and you can see the form fields (op=download1). I tried it but I couldn't get it work - seems like the `file url` reg...
site-support-request
low
Minor
153,242,372
TypeScript
Overriden class member annotated with a subtype could be a recipe for disaster (by design.. ;) )
**TypeScript Version:** `1.9.0-dev.20160505` with both `strictNullChecks` and `noImplicitAny` enabled. **Code:** ``` ts class Animal { name: string = "Any animal"; } class Dog extends Animal { name: string = "Dog"; bark() { console.log("bark"); } } class AnimalCage { member: Animal = n...
Suggestion,Needs Proposal
medium
Critical
153,297,034
go
cmd/compile: support inlining non-escaping closures
Split out from #9337 and #15537.
Performance,compiler/runtime
low
Major
153,338,284
kubernetes
Kubelet: We should separate status update with SyncPod
As is discussed in https://github.com/kubernetes/kubernetes/issues/19077#issuecomment-216686379. Now we only update pod status at the beginning of `SyncPod`, so the pod status could never be able to reflect the changes happening in `SyncPod`, for example image pulling progress. We should separate status update with `...
priority/backlog,area/kubelet,sig/node,kind/feature,lifecycle/frozen
low
Major
153,352,314
kubernetes
Expected behavior for Deployment replicas with HPA during update
I am seeing unexpected behavior from a user standpoint when `kubectl apply -f mydeployment.yml` The existing Deployment has an HPA associated with it and the current replica count is 3. When the deployment is accepted, the number of replicas jumps to 9, then scales down to 6, the value in the deployment. Eventually, t...
kind/bug,priority/backlog,kind/documentation,area/app-lifecycle,sig/autoscaling,area/workload-api/deployment,sig/cli,lifecycle/frozen
high
Critical
153,357,729
go
syscall: exec_windows.go: arguments should not be escaped to work with msiexec
Problem: When I try to run a command in Go on Windows using exec.Command() and then exec.Run(), the arguments are escaped using this logic: https://github.com/golang/go/blob/master/src/syscall/exec_windows.go#L26. That logic escapes the quotes around TARGETDIR="%v" which need to be there. I currently am assigning to Cm...
help wanted,OS-Windows,NeedsFix,early-in-cycle
medium
Critical
153,363,395
rust
Lint against leading 0 in integer literals
A literal like `0111` looks like an octal literal in C, but is actually decimal in Rust (octal would be`0o111`). This is [a footgun](http://stackoverflow.com/q/37062143/1256624), and so seems like something that could be trivially checked for. (I suppose this could be a "clippy" lint, but that seems like it would lose...
A-lints,C-feature-request
low
Major
153,390,508
flutter
Provide demo of heroes being driven by the transition animation
![2016-05-05-235622_2560x1440_scrot](https://cloud.githubusercontent.com/assets/551196/15066334/3aae6fb2-131d-11e6-8ce3-d57eac100b20.png)
c: new feature,framework,f: material design,d: api docs,P3,team-design,triaged-design
low
Minor
153,499,064
go
cmd/compile: better error message for scoped type error
1. What version of Go are you using (`go version`)? `go version go1.6.2 darwin/amd64` 2. What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GOOS="darwin" ``` 1. What did you do? https://play.golang.org/p/pJBsVvubBw ...
NeedsFix,compiler/runtime
low
Critical
153,517,698
go
x/build: find new cloud provider for Solaris, Illumos builders?
Now that we have SmartOS builders on Joyent in a custom image using the buildlet, let's use the Joyent API and dynamically create the containers as needed. This should be done by creating a new pool type in x/build/cmd/coordinator, similar to the GCE, reverse, and Kubernetes pool types. This will both be cheaper (run ...
help wanted,OS-Solaris,Builders,new-builder
medium
Critical
153,552,844
go
cmd/vet: check for duplicate input to some binary ops
[moved from #15570] @dominikh's [staticcheck](https://github.com/dominikh/go-staticcheck) found some bugs in the standard library -- see #15570. This issue is to consider whether it's worth adding a vet check along the same lines. The check would be to look for expressions of the form (x BOP x), where: - x is not of ...
NeedsDecision,Analysis
low
Critical
153,598,561
rust
Unhelpful error message for specialization-related type projection failures.
Playground: http://is.gd/QMg2a8
C-enhancement,A-diagnostics,T-compiler,F-specialization
low
Critical
153,600,746
go
x/net/http2: toggle HPACK dynamic table indexing for header
Often a service will have certain header fields that have no discernible repeatable pattern (or the possible combinations far outnumber the HPACK table slots). It would be good to be able to turn off HPACK for those headers so that these non-repeating values don't use up slots in the dynamic table. Here's a quote from...
FeatureRequest
low
Major
153,644,786
kubernetes
Requirements for multi-scheduler to graduate to Beta and then v1
We'd like to graduate multi-scheduler to Beta in 1.4. Beta - [ ] Change annotation key from `scheduler.alpha.kubernetes.io/name` to `scheduler.beta.kubernetes.io/name` - [ ] Make sure we have a rollback story or are sure we won't need to rollback earlier than when feature was first introduced v1 - [ ] Change annotati...
sig/scheduling,lifecycle/frozen
medium
Major
153,644,794
kubernetes
Requirements for Affinity to graduate to Beta and then v1
We'd like to graduate node and pod affinity to Beta in 1.4. Beta - [x] Change annotation key from `scheduler.alpha.kubernetes.io/affinity` to `scheduler.beta.kubernetes.io/affinity` - [x] Make performance of pod affinity acceptable (#26144) (and verify that performance of node affinity is acceptable) - [x] Better...
priority/important-soon,sig/scalability,sig/scheduling,lifecycle/frozen
medium
Major