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
213,971,283
vscode
Add padding when pressing space between a pair of curly braces
When I type `{` to create a pair of curly braces: ``` {} ``` ...and then when I press space, I would like 2 spaces to be inserted with the cursor in the middle: ``` { | } ^ cursor ``` Currently it just inserts a single space, so getting the same result requires pressing space twice then the back arrow once. ...
feature-request,editor-autoclosing
high
Critical
213,998,156
youtube-dl
Allow filtering out payment required videos
cannot download full video of http://www.le.com/ptv/vplay/2061436.html?ch=baiduald_ffdy this is an vip video, youtube-dl can only download the first 10min of the video . If cannot download the full video, then this behavior doesn't make much sense, better to remove the behavior .
request
low
Minor
214,094,391
youtube-dl
3player error msg "Unsupported url" for various videos downloadable a few days ago
## 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
214,153,091
youtube-dl
Add support for TheSurfNetwork
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.03.10*. 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** ...
geo-restricted,account-needed
low
Critical
214,189,787
nvm
nvm install node error
When I input nvm install node result is: `grep: brackets ([ ]) not balanced awk: nonterminated character class v0.12.18 input record number 1, file source line number 3 Version 'node' not found - try nvm ls-remote to browse available versions.` I uninstalled nvm and reinstalled it, no effect. I think it's a pr...
needs followup
low
Critical
214,224,697
neovim
tui: S8C1T (8-bit) mode, v:termresponse
## Problem https://github.com/neovim/neovim/issues/25856 implemented `v:termresponse` but we don't yet use it to detect whether we can use 8-bit key sequences. Related Vim help: > > > > > > xterm-8bit xterm-8-bit Xterm can be run in a mode where it uses 8-bit escape...
enhancement,tui
low
Minor
214,226,299
rust
rustbuild: if stage0 binaries can't be run, kindly inform user
Hello! I was trying to build rust within Alpine linux and since it comes with `musl` instead of `glibc` I've bumped into this confusing error message from rustbuild. ``` $ make check Traceback (most recent call last): File "/home/test/rust/src/bootstrap/bootstrap.py", line 614, in <module> main() Fil...
T-bootstrap,C-feature-request
low
Critical
214,235,466
TypeScript
Shorten method signatures (aka "type madness")
Some of the types that make everything work behind the scenes are ridiculous. For example, from Vue.js: ![image](https://cloud.githubusercontent.com/assets/820883/23925649/7be182ca-08cd-11e7-889b-07e907021dd7.png) For a Vue developer creating a new Vue instance in JavaScript, they will be exposed to this every ti...
Suggestion,Needs Proposal,Domain: Signature Help,Domain: Type Display
medium
Major
214,253,907
rust
Dyn compatibility error when using an associated type as a type parameter in the super-trait listing
I tried this code: ```rust trait Super<T> {} trait Foo: Super<<Self as Foo>::Bar> { type Bar; } type BoxFoo = Box<Foo<Bar = u8>>; ``` The code should compile since `Self::Bar` is the type parameter, not `Self`. Instead, it will fail with the following message: `the trait Foo cannot be made into an ...
A-type-system,C-enhancement,A-trait-system,A-associated-items,T-compiler,T-types,A-trait-objects,A-dyn-compatibility
low
Critical
214,356,102
rust
Produce a warning when using `const` with interior mutability
Originally reported in https://users.rust-lang.org/t/broken-atomics-puzzle/9533 Consider this code ```rust use std::sync::atomic::{AtomicBool, Ordering}; pub const A: AtomicBool = AtomicBool::new(false); fn main() { A.compare_exchange(false, true, Ordering::SeqCst, Ordering::SeqCst); println!("A ...
A-lints,T-compiler,C-feature-request
medium
Critical
214,538,233
youtube-dl
Feature Request: Alternate thumbnail embedder - tageditor
- [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.03.15** ### 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](https...
request,postprocessors
low
Critical
214,673,656
neovim
:nineties mode: disable various settings for slow terminals
On slow connections, 'showcmd', 'ruler', etc. can cause bad performance. We can serve that use-case by providing a single built-in mapping (`{count}CTRL-L` ?) or command (`:ni[neties]`) that disables various settings known to cause extra redraws. :ni[neties] Party like it's the 90s. Disable various feature...
enhancement,performance,tui
low
Major
214,675,163
go
plugin: requires CGO_ENABLED=1
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? `go version go1.8 linux/amd64` ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN="/home/johan/gows/bin" GOEXE="" GOHOSTARCH="amd64" ...
compiler/runtime
medium
Critical
214,721,571
rust
Rust allows function argument names to shadow unit structs imported in function body
Assume that `foo::bar` is a unit struct in all these examples. This fails to compile: ```rust use foo::bar; fn foo(bar: i32) {} ``` As does this: ```rust fn foo() { use foo::bar; let bar = 1; } ``` However, this compiles successfully: ```rust fn foo(bar: i32) { use foo::bar; } `...
A-resolve,T-lang,T-compiler,C-bug
low
Critical
214,758,107
go
x/build/cmd/gopherbot: ping a CL when it has +2 but OP can't submit
Have gopherbot ping a CL when it has +2 but OP can't submit.
Builders,FeatureRequest
low
Major
214,775,618
go
runtime: performance problem with many Cgo calls
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? `go version go1.8 darwin/amd64`, though I've also verified this happens on Linux. ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN...
Performance,compiler/runtime
medium
Critical
214,789,045
go
test: errorcheck support for intraline errors
Now that the compiler supports reporting column position for errors, we need a mechanism in test/run.go for testing this. I propose we use `/* ERROR "foo" */` placed just before where we expect the error to be emitted, except to allow for white space in between. E.g., for #19576, the test would be package ...
help wanted,NeedsFix,FeatureRequest
low
Critical
214,833,291
rust
Specialization and lifetime dispatch
I see this briefly mentioned in #31844 but no existing issue tracking the incorrect behavior. Something in the following code is unsound. It should not be possible to implement `make_static`. ```rust #![feature(specialization)] trait FromRef<'a, T: ?Sized> { fn from_ref(r: &'a T) -> Self; } impl<'a, ...
P-medium,T-compiler,B-unstable,I-unsound,A-specialization,C-bug,requires-nightly,F-specialization,S-bug-has-test,T-types
low
Minor
214,897,290
rust
Overflow on requirement evaluation with associated types
```rust trait Foo { } trait Bar<P> { type X; } impl<T, U> Foo for (T, U) where T: Bar<(T, U), X=U> { } impl<T, P: Foo> Bar<P> for T { type X = u32; } fn main() { } ``` produces on stable and nightly: ``` error[E0275]: overflow evaluating the requirement `<T as Bar<(T, U)>>::X` -...
A-type-system,T-compiler,C-bug,T-types
low
Critical
214,926,877
flutter
Color-code stack traces to ease interpretation of crash reports
There's been some discussion in `gitter` about how to pick out app-code/user-code from the super-long stack. Simply put some symbols around the line numbers would've just done the job, say `# 52` for framework code and `#* 53` for user code. Colored stacks may also be a good idea, though it involves much more wor...
c: new feature,c: crash,framework,a: quality,P3,team-framework,triaged-framework
low
Critical
214,932,859
node
Node.js' internal scripts should be hidden in the inspector.
Node.js' internal scripts are not distinguished from user scripts. So when debugging a user script, the inspector is polluted with these internal scripts. This could be solved either by blackboxing internal scripts by default, or setting a different script kind in V8 internally for these scripts. The latter probably...
module,feature request,inspector
high
Critical
215,047,264
opencv
OpenCL Kernel only takes up to 16 arguments
##### System information (version) - OpenCV => 3.2 - Operating System / Platform => Ubuntu 16.04 - Compiler => g++ ##### Detailed description cv::ocl::Kernel::args() only takes up to 16 arguments. This is hard-coded in the source (ocl.hpp). Presumably, the developer did not expect users to need more than tha...
feature,category: ocl,category: t-api
low
Major
215,058,511
opencv
OpenCL kernel does not support user defined callback function
<!-- If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses. If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute). This is a template helping you to create an issue which can be...
feature,category: ocl
low
Critical
215,129,286
create-react-app
Warn about duplicate dependencies
I havenโ€™t tried this plugin, but it looks cool: https://github.com/darrenscerri/duplicate-package-checker-webpack-plugin. Maybe we should do it?
issue: proposal
low
Minor
215,168,677
rust
`UnwindSafe` is unergonomic
As I expressed on IRC, I feel like, unless quickly taken care of, `UnwindSafe` is going to be a "failed feature". I've seen now quite a bit of people that told me that "they just wrap everything in `AssertUnwindSafe`" defeating the whole purpose of it. I've also seen comments that `UnwindSafe` is a PITA - sentiment tha...
C-enhancement,T-lang
medium
Critical
215,206,410
go
x/net/idna: support label separators other than ASCII dot
### What version of Go are you using (`go version`)? ``` go version go1.8 linux/amd64 ``` ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GOPATH="/home/admin/go" GORACE="" GOROOT="/usr/...
NeedsInvestigation
low
Critical
215,212,157
rust
E0122 says bounds aren't enforced, but they actually are?
For [multistr](https://docs.rs/multistr) I've included trait bounds in type aliases so that it's clear in the documentation what should be passed to the generics for these aliases, e.g. [SliceArray5](https://docs.rs/multistr/latest/multistr/type.SliceArray5.html). But because I've generated several of these aliases ...
T-compiler,C-feature-request
low
Critical
215,250,202
youtube-dl
[vbox] Add support for authentication
## 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 --- ...
nsfw
low
Critical
215,265,738
TypeScript
Type JSX elements based on createElement function
TypeScript currently uses a JSX namespace to type the props of JSX elements. This is customisable by modifying `JSX.IntrinsicElements`, `JSX.ElementClass`. However, the type of an element is always `JSX.Element`. Of course more interfaces could be added to the `JSX` namespace. However, I think that with less effort,...
Suggestion,In Discussion,Fix Available
high
Critical
215,433,319
go
mime: BEncoding and QEncoding don't respect the 76 character line limit in RFC2047
As a continuation of Issue #12300, mime: BEncoding and QEncoding don't respect the 76 character line limit in RFC2047. Here is the relevant part from Section 2 of RFC2047. (emphasis mine) > An 'encoded-word' may not be more than 75 characters long, including > 'charset', 'encoding', 'encoded-text', and delimiter...
help wanted,NeedsFix
medium
Critical
215,470,602
react
Compiler Optimization Umbrella
Spinoff from https://github.com/reactjs/react-future/issues/50 I wanted to create an umbrella task for when we start working on compiler level optimizations. We've had [a tag](https://github.com/facebook/react/issues?q=is%3Aopen+is%3Aissue+label%3A%22Component%3A+Optimizing+Compiler%22) open for a while but these ar...
Type: Umbrella,React Core Team
medium
Critical
215,471,600
go
doc: Update documentation on cherry-picking
The current documentation on "Reviewing code by others" in the contribution guidelines is for the old Gerrit UI. The new Gerrit UI does not have the same "Download" button, and when one goes to More/Cherry Pick it appears it needs to be cherry-picked onto another branch on Gerrit. I was also unable to reverse engineer...
Documentation,help wanted,NeedsFix
low
Minor
215,535,187
go
proposal: spec: change int to be arbitrary precision
An idea that has been kicking around for years, but never written down: The current definition of `int` (and correspondingly `uint`) is that it is either 32 or 64 bits. This causes a variety of problems that are small but annoying and add up: - overflow when constants like math.MaxUint64 is automatically promoted...
LanguageChange,Proposal,Proposal-FinalCommentPeriod,LanguageChangeReview
high
Critical
215,542,388
kubernetes
Feature Request: enable user-managed Pod Migration
A user wants to extend Kubernetes to allow for application-specific migration in response to pod deletion events, whenever possible. 1. Normally, there should be 1 instance of a pod -- call it `pod-1`. 1. However, something (usually the system, e.g. rescheduler or node upgrades) wants to delete `pod-1`, then a r...
sig/scheduling,sig/apps,lifecycle/frozen
low
Major
215,572,529
vscode
`editor.fontFamily` in settings should suggest list of available monospace fonts
_From @letientai299 on March 16, 2017 9:57_ _Copied from original issue: Microsoft/vscode-docs#889_
feature-request,settings-editor
medium
Critical
215,677,062
rust
refactor the `AssociatedItem` structures
During the work on https://github.com/rust-lang/rust/pull/40668, there was some discussion about refactoring the `ty::AssociatedItem` and `hir::{Impl,Trait}ItemRef` data structures. The precise plan is a *bit* unclear, so I'm opening this issue to try and discuss and lay it out. Observations: - Although `ty::Asso...
C-cleanup,A-associated-items,T-compiler
low
Minor
215,720,084
go
encoding/base64: decoding is slow
### What version of Go are you using (`go version`)? Go 1.8 ### What operating system and processor architecture are you using (`go env`)? amd64 ### What did you do? On my slow computer, using encoding/base64, I can decode data at ~100MB/s. It should be much faster as shown by https://github.com/aklomp/base6...
Performance
medium
Major
215,743,325
TypeScript
raise a type error on attempt to strict-equal-compare a value of string | null to undefined
the following examples are almost certainly bugs: ```typescript declare var one: string | undefined; // expected a type error: Operator '===' cannot be applied to types 'string | undefined' and 'null' // actual no problem if (one === null) { // unreachable, because one can't ever be null, undefined was like...
Suggestion,Awaiting More Feedback
medium
Critical
215,831,991
angular
There is no way to access inputs or outputs of Components created by NgComponentOutlet
**I'm submitting a ...** (check one with "x") ``` [ ] bug report => search github for a similar issue or PR before submitting [x] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ``` **Current b...
feature,area: common,feature: under consideration
high
Critical
215,872,016
rust
Switch `run-make` tests from Makefiles to rust
Rust currently has a suite of [`run-make`](https://github.com/rust-lang/rust/tree/master/src/test/run-make) tests, which generally test specific `rustc` invocations or behaviour, or require external tools (eg. `grep` or `nm`). The goal of this issue is to rewrite these `run-make` tests, which are currently written ...
A-testsuite,E-hard,C-enhancement,E-help-wanted,T-bootstrap,T-infra,A-compiletest,A-run-make
medium
Major
215,891,093
go
cmd/compile: use FP-based frame zeroing outside of package runtime on plan9
In 039d455f9d3d5d5109424f15d86b7f9b63768b42, we changed cmd/compile to avoid using DUFFZERO and other FP-based frame zeroing methods, because they're not permitted within note handlers. I think this is overly conservative. It should still be safe to use DUFFZERO on plan9 when we're compiling non-runtime packages, be...
Performance,OS-Plan9,NeedsInvestigation,compiler/runtime
low
Minor
215,893,524
go
x/build/kubernetes/gke: use non-deprecated auth
We're currently using `clusters.list` to get the certificate pair used to authenticate to the Kubernetes API. This is deprecated (and very confusing to set up in a new project). The docs say we should switch to just using OAuth directly with the API (which has the advantage that we don't need to also grant the coordina...
Builders,NeedsFix
low
Minor
215,902,659
rust
Type inference incorrectly selects specialized instance of type parameter
```rust #![feature(specialization)] use std::vec; struct Foo<T>(T); impl<T> Foo<T> { fn foo<I: IntoIterator<Item = T>>(it: I) -> Foo<T> { <Self as SpecExtend<_, _>>::from_iter(it.into_iter()) } } trait SpecExtend<T, I> { fn from_iter(iter: I) -> Self; } impl<T, I> SpecExtend<T, I...
T-compiler,A-specialization,A-inference,C-bug,F-specialization
low
Critical
215,935,876
opencv
Stitcher not working on the real Windows Phone (Lumia 950) but works fine on emulator
## System information (version) - OpenCV => 3.0.0-dev (master) - Operating System / Platform => Windows Phone 8.1 - Compiler => Visual Studio 2013 ## Detailed description Stitcher.stitch() function works pretty fine on Windows Phone emulators (x86 code, checked both WP8.1 and W10M) but fails on the real devi...
bug,category: stitching,platform: winrt/uwp
medium
Critical
215,979,030
TypeScript
Allow an interface in the JSX namespace to specify the element class type
We're writing a non-react library that uses TS's JSX support with custom interfaces defined in the JSX namespace. Unless we are very much mistaken (The documentation seems a little out-of-date in this area? Most of our current understanding comes from reading through issues on here, we may have missed something.) it se...
Suggestion,In Discussion
low
Major
216,002,644
youtube-dl
Hallmark Channel
## 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,tv-provider-account-needed
low
Critical
216,147,084
flutter
iOS build fails with "SecKey API returned: -25308" "codesign failed with exit code 1"
## Steps to Reproduce Follow Getting started guide to create to create default "myapp" Able to launch against simulator, but get following error against real iDevice first run i get the standard message: ``` Could not build the precompiled application for the device. โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•...
platform-ios,tool,t: xcode,P2,team-ios,triaged-ios
low
Critical
216,177,507
TypeScript
Improve feedback for abstract class instantiation error messages
<!-- 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 --> **SUGGESTION** Recently, I was trying...
Suggestion,Help Wanted,Effort: Moderate,Experience Enhancement
low
Critical
216,237,392
go
x/build: make trybots refuse to test a commit that's too old
Make trybots refuse to test a commit with a git parent over N commits or days old. Related to but different than #9858
Builders
low
Major
216,310,498
go
x/tools/go/ssa: docs describe a non-existent DebugRef.Object method
The documentation for the [DebugRef type](https://godoc.org/golang.org/x/tools/go/ssa#DebugRef) describes the possible values returned by the Object method. However, no such method exists. As far as I can tell, the method has never existed; the comment, however, dates back to at least 2013. Should the method be adde...
Documentation,NeedsInvestigation,Tools
low
Critical
216,339,417
go
html/template: dynamic substrings in HTML tags or attributes can result in unsafe HTML output
The following template: ```html <s{{.X}}>alert('pwned')</script> ``` produces the following HTML output when executed with `X = "cript"`: ```html <script>alert('pwned')</script> ``` This happens because: * **During HTML parsing/escaping time**, the parser interprets "s" as the tag name, since the rest of the t...
help wanted,NeedsFix
low
Major
216,349,717
go
x/tools/go/ssa: make opaqueType less annoying to use
The ssa package defines an opaqueType, which is an "opaque and degenerate" type, currently used by the Range instruction. It truly is degenerate, embedding a nil types.Type, causing a call to types.Type.Underlying to panic. Code that wants to operate on the types of instructions needs to specifically check for the ...
Tools
low
Minor
216,415,498
go
x/image/webp: issue with colors contrast when converting to jpeg/png
When i try to convert a webp image to a PNG image doing like that: https://play.golang.org/p/yAGNTfQrx2 The converted PNG dont keep the same "contrast" as the source webp image, while it's ok when converting the webp image with: `dwebp in.webp -o out.png` The same thing occurs when i convert a WEBP to JPEG. ...
NeedsInvestigation
low
Minor
216,445,813
vscode
Add dropdown for search input history
- VSCode Version: 1.10 - OS Version: Windows 10 Very closely related to https://github.com/Microsoft/vscode/issues/18735 This is a feature request. The UX around `find` is the one place where VS Code is not quite perfect - which speaks volumes to how wonderful this editor is. Wonderful job. Basically, it wo...
feature-request,search,editor-find
high
Critical
216,474,539
create-react-app
Show a transparent overlay with development warnings
As proposed [here](https://github.com/facebookincubator/create-react-app/issues/1873#issuecomment-288726204), maybe we should have a transparent "warning overlay" which is dismiss-able.
issue: proposal
low
Major
216,481,410
vscode
Allow to configure editor auto reload behaviour
**VSCode Version:** 1.10.2 **OS Version:** macOS 10.12.3 **Steps to Reproduce:** 1. Open editor 2. Modify a file in your git repository, but don't save it 3. Checkout a different branch that touches the same file 4. Go back to the editor and try to save 5. ERROR: "Failed to save 'file1': The content on disk is...
feature-request,workbench-editors,keep
high
Critical
216,583,890
go
cmd/compile: eliminate base.Pos and ir.CurFunc
This is an umbrella issue for eliminating the global `lineno` variable from package gc. Filing as a HelpWanted issue because I think it's a relatively low-barrier-to-entry issue that people can usefully contribute to the compiler with small incremental improvements. Here's the general algorithm: 1. Identify a f...
help wanted,NeedsFix,compiler/runtime
medium
Critical
216,585,386
rust
No unused import for std::f64 if only f64 types used
I recently came across several instances of the following problem in a code base: ```rust use std::f64; // No warning. fn main() { let x: f64 = 0.0; println!("{}", x); } ``` Why this didn't cause a warning baffled me for a while, until I realize that it was actually imported the *type* `f64`, even...
A-lints,A-resolve,T-compiler,C-bug
low
Minor
216,633,140
TypeScript
TypeScripts Type System is Turing Complete
This is not really a bug report and I certainly don't want TypeScripts type system being restricted due to this issue. However, I noticed that the type system in its current form (version 2.2) is turing complete. Turing completeness is being achieved by combining mapped types, recursive type definitions, accessing ...
Discussion
high
Critical
216,637,497
rust
To debug cargo project cause lots of 'symbol not found' problems on OSX
My workspace is on OSX. If I `touch hello.rs`, `rustc -g hello.rs` and then `gdb -q hello` of a single .rs file, there won't be any problem and it will load symbols successfully. However, when I use `cargo new hello --bin`, `cd hello`, then `cargo build` and then `gdb -q target/debug/hello`, it will be a blast on my it...
A-linkage,O-macos,T-compiler,C-bug
medium
Critical
216,642,394
rust
Weird error message for missing symbol if module name is the same as a macro
``` mod format { mod sub { pub fn foobar() { } } } fn main() { format::foobar(); } ``` ``` $ rustc a.rs error[E0423]: expected function, found macro `format::foobar` --> a.rs:8:5 | 8 | format::foobar(); | ^^^^^^^^^^^^^^ did you mean `format::foobar!(...)`? | = ...
C-enhancement,A-diagnostics,A-resolve,A-macros,T-compiler
low
Critical
216,652,325
kubernetes
[Storage] Add support for capacity isolation of shared partitions
Based on https://github.com/kubernetes/community/pull/306 This issue is meant to track work items and help collaboration between the community on adding support for capacity isolation of shared partitions. Note: Priority of these features can change based on the number of collaborators. **v1.7** Note: @jing...
priority/important-soon,sig/scheduling,sig/storage,sig/node,kind/feature,milestone/removed,lifecycle/frozen
medium
Critical
216,676,959
opencv
Setting GPhoto camera widgets (properties) fails due to supplying an incorrect pointer to GPhoto library
- OpenCV => 3.2.0 - Operating System / Platform => Ubuntu/Linux - Compiler => g++ 5.4.0 - GPhoto2 => version 2.5.9-3 ##### Detailed description Hello, While using a GPhoto camera through the VideoCapture interface I noticed that it is not possible to set the values of text widgets in the camera. While requ...
feature,category: videoio
low
Critical
216,791,411
rust
Mac lldb debuginfo behavior differs based on abs/rel input source path (?!)
I am observing varying behavior on my Mac depending on whether the input source files to `rustc` are denoted via an absolute source path or a relative one. The test where I am seeing varying behavior is the `cross-crate-spans.rs` debuginfo test: https://github.com/rust-lang/rust/blob/master/src/test/debuginfo/cross-...
A-testsuite,A-debuginfo,P-low,T-compiler,C-bug
low
Critical
216,821,144
TypeScript
Autocompletion for mapped type with inferred keys and values all the same.
**TypeScript Version:** nightly 2.3.0-dev.20170324 **Code** ```ts declare function f<T extends { [P in keyof T]: { x: number } }>(t: T): void; f({ arbitraryKey: { /*Here*/ } }); ``` **Expected behavior:** Autocomplete gives `x`. **Actual behavior:** Don't get useful autocompl...
Suggestion,Domain: Completion Lists,Experience Enhancement
low
Minor
216,829,119
go
x/sys/unix: add missing values from syscall pkg to enable complete migration
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go tip ### What operating system and processor architecture are you using (`go env`)? Ubuntu 16.04 and Fedora22, Red Hat 7.x on ppc64le & ppc64 ### What did you do? Trying to migrate Go c...
compiler/runtime
low
Critical
216,846,705
rust
Move libm bindings into separate crate
It is a followup for https://github.com/rust-lang/rust/issues/39473 There is Rust cleanup activity that aims to move complex, platform-specific dependencies outside of `std`. For examples `libc` bindings were moved to its own crate and `std` links to it. It worth checking if similar thing can be done for `libm` d...
C-cleanup,T-compiler
low
Critical
216,861,514
flutter
How to open the Scaffold's drawer using Flutter Driver?
I'm logging this because someone asked and I don't know the answer. I should try it myself and fix it if it's not currently possible.
a: tests,tool,framework,t: flutter driver,P3,team-framework,triaged-framework
medium
Critical
216,875,954
go
proposal: time: add civil time package
I propose a package with minimal implementations of the types Date, Time and DateTime, which represent times without a corresponding location. A civil time or date does not represent a point or interval of time, but they are useful for representing events transpiring between humans. For example, your birthday begins...
Proposal
high
Critical
216,943,287
angular
Child routes disappear immediately instead of playing :leave animation
<!-- IF YOU DON'T FILL OUT THE FOLLOWING INFORMATION WE MIGHT CLOSE YOUR ISSUE WITHOUT INVESTIGATING --> **I'm submitting a ...** (check one with "x") ``` [x] bug report => search github for a similar issue or PR before submitting [ ] feature request [ ] support request => Please do not submit support request...
type: bug/fix,area: animations,freq2: medium,P3
medium
Critical
216,986,242
go
cmd/compile: Unnecessary register high-bytes rezeroing after unsigned right shift
Please answer these questions before submitting your issue. Thanks! #### What did you do? Hello up there. Please consider the following function: ```go package xxx const hextable = "0123456789abcdef" func HexHi(v byte) byte { return hextable[v>>4] } ``` (https://play.golang.org/p/6t7Bq7lw2k) ...
Performance,compiler/runtime
low
Critical
216,995,030
go
cmd/compile: arm64: emit double-register loads and stores in lowering
ARMv8 has "double-register" loads and stores (`ldp` and `stp`), which the present SSA backend does not emit. Since these instructions can accept any general-purpose register (unlike the corresponding ARMv7 instructions `ldrd` and `strd`), they shouldn't require any changes to the register allocator in order to get t...
Performance,NeedsFix,compiler/runtime
low
Minor
217,038,999
opencv
Provide centroids and areas of new markers returned by watershed
##### System information (version) - OpenCV => ALL - Operating System / Platform => ALL - Compiler => ALL ##### Detailed description Current implementation of `cv::watershed()` only updates the input labels, but does not report the new centroids or areas. Although it can be computed externally through extra iter...
feature,category: imgproc
low
Minor
217,048,010
youtube-dl
Site Request: DisneyLife.com
- [x] I've **verified** and **I assure** that I'm running youtube-dl **2017.03.24** ### 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](https...
account-needed
low
Critical
217,095,635
youtube-dl
Support for KTLA videos
--- ### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.03.26*. If it's not read [this FAQ entry](https://github.com/rg3/youtube-dl/blob/master/README.md#how-do-i-update-youtube-dl) and update. Issues with outdated version will be rejected. - [X] I've **veri...
site-support-request
low
Critical
217,155,887
youtube-dl
Gaana Support
It would be nice to have Gaana.com support. Song urls : http://gaana.com/share/titemI21309714 http://gaana.com/song/do-naina-male Album urls: http://gaana.com/share/AitemI1863456 http://gaana.com/album/angamaly-diaries Thank you
site-support-request
low
Minor
217,161,128
go
proposal: introduce new html meta tag for issue trackers
For the users of the packages with vanity import paths uses, it is often impossible to find the package's issue tracker to file an issue. The package maintainers often have to manually add a link to the package comment to ensure that users will be able to find the package's issue tracker. This process is tedious and ad...
Proposal,Proposal-Hold
low
Minor
217,178,741
go
proposal: cmd/vet: missing error assignment check
I noticed a mistake during a code review that I think could be automatically detected. The idea is to detect code which looks like: ``` if f(); err != nil { ... } ``` which should instead assign the return value of f() ``` if err := f(); err != nil { ... } ``` For the code to compile at all, err...
Proposal,Proposal-Hold,Analysis
low
Critical
217,188,048
rust
Indexing tuple warning misleading
The following rust snippet: ```rust fn main() { let x = (0u32, 1u64, 2isize); for i in 0..3 { println!("{}\n", x[i]); // ERROR: to access tuple elements, // use tuple indexing syntax (e.g. `tuple.0`) // println!("{}\n", x.i); // This doesn't obviously work } } ``` produces...
C-enhancement,A-diagnostics,P-low,T-compiler,A-suggestion-diagnostics,D-newcomer-roadblock,D-terse
low
Critical
217,204,798
flutter
Doctor should check for hardware VM accelleration
If a developer is configured for Android, then we should check if they have hardware acceleration configured. If not, Flutter will run very slow. The command is: ``` $ ./emulator -accel-check accel: 0 HAXM version 6.0.1 (3) is installed and usable. accel ``` When the check fails, we should point developers...
platform-android,tool,t: flutter doctor,P3,team-android,triaged-android
low
Major
217,223,909
angular
Implement --help for compiler-cli tools
**I'm submitting a ...** (check one with "x") ``` [ ] bug report => search github for a similar issue or PR before submitting [x] feature request [ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question ``` **Current b...
feature,hotlist: error messages,area: compiler,feature: under consideration
low
Critical
217,296,587
TypeScript
Unable to access ServiceWorkerGlobalScope via `self.`
<!-- 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 --> Since `ServiceWorker` related types si...
Bug,Help Wanted,Domain: lib.d.ts
high
Critical
217,324,749
electron
Method to get/set file pointers in clipboard
There is currently no mechanism to get/set file pointers from/to clipboard. File pointers: The stuff in clipboard when you copy (`ctrl+c`) selected files in your OS file explorer. After ~15 min research, there was #2244 issue which went a different direction and than got closed. Also there are some projects on ho...
enhancement :sparkles:,component/clipboard
high
Critical
217,349,941
flutter
RepaintBoundaries should notice that they are next to each other
It seems like we should remove one of the following boundaries, and that the logic should complain that one of them is redundant. Maybe if the parent is a RenderRepaintBoundary, then it should always diagnose as redundant? ``` โ”‚ โ””โ”€child 1: RenderRepaintBoundary#699402239 โ”‚ creator: RepaintBoundary-[<1>] โ†...
framework,c: performance,c: proposal,P3,team-framework,triaged-framework
low
Minor
217,362,112
flutter
Highlight draws above Splash (which when opaque causes Splash to disappear)
Re: InkWell (and everything that uses it). If you use opaque (alpha = 255) colors or trigger multiple highlight events then the highlight layer will be rendered above the splash (or previous splash). I spoke briefly to @Hixie about it and the solution is probably to create a hierarchy or manager to ensure that the l...
framework,f: material design,customer: posse (eap),P3,team-design,triaged-design
low
Major
217,395,212
flutter
Add description for why some dependencies are needed in doctor
We're asking users to install more and more stuff. Some are more self evident like xcode. But why the user needs the six python module and cocoapods are a bit more obscure. We should probably explain why they're needed on the website or in doctor and what happens if they don't have them.
tool,t: flutter doctor,P3,team-tool,triaged-tool
low
Minor
217,428,328
go
cmd/compile: clumsy rematerialization in mapassign_fast*
On 73912a1b91 If you disassemble `runtime.mapassign_fast32` on ARM, you'll find the following code generated for the bucket probing loop: ``` 0.34 โ”‚ d4: cmp ip, #8 โ”‚ โ†“ bcs 1a0 โ”‚ ldrsb fp, [r2] โ”‚ add lr, r2, ip โ”‚ ldrb r0, [lr] โ”‚ an...
Performance,compiler/runtime
low
Minor
217,461,197
electron
Allow specifying udp port range for webrtc
It would be good to be able to provide some values for the policies that can be found here: chrome://policy/ (Tick the box "Show policies with no value set") For instance, this will allow a developer to set a particular range of UDP port for WebRTC (policy named WebRtcUdpPortRange) and avoid issue with some firew...
enhancement :sparkles:,beginner friendly
medium
Major
217,470,423
go
x/mobile: gobind reverse bindings mistakes struct fields with embedding a java class
### What version of Go are you using (`go version`)? go version go1.8 linux/amd64 ### What operating system and processor architecture are you using (`go env`)? GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GOPATH="/home/micro/Workspace" GORACE="" GOROOT="/usr/lib/go" G...
mobile
low
Critical
217,619,686
go
runtime: redirect println(runtime.writeErr) to NSLog(asl_log) on iOS
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.7.5 darwin/amd64 ### What operating system and processor architecture are you using (`go env`)? GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GOOS=...
Proposal,Proposal-Accepted,compiler/runtime
low
Critical
217,639,492
opencv
Mac crash in cvWaitKey after setting POS_FRAMES on file
##### System information (version) <!-- Example - OpenCV => 3.1 - Operating System / Platform => Windows 64 Bit - Compiler => Visual Studio 2015 --> - OpenCV => 3.2.0 - Operating System / Platform => Mac OS Yosemite/Sierra (verified on both) - Compiler => Apple LLVM version 7.0.2 (clang-700.1.81) ##### Det...
bug,category: videoio,platform: ios/osx
low
Critical
217,717,260
go
cmd/compile: slow to compile large map literals containing dynamic elements
### What version of Go are you using (`go version`)? `go version go1.8 darwin/amd64` ### What operating system and processor architecture are you using (`go env`)? ``` $ go env GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GOOS="darwin" GOPATH="/Users/afisk/gopath" GORACE="" G...
ToolSpeed,compiler/runtime
medium
Critical
217,738,555
kubernetes
Recommended liveness check for kube-apiserver
For 1.6, what is the healthz endpoint / recommended liveness check for a secure setup (RBAC, kubeadm discovery not enabled, insecure port disabled)? `curl https://127.0.0.1/healthz` is returning a 401 for me. Edit: What I originally called "kubeadm discovery not enabled" is now more commonly / correctly called "s...
area/security,sig/api-machinery,kind/feature,lifecycle/frozen
medium
Critical
217,797,421
go
cmd/go: document that generate processes packages in command line order
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? ``` go version go1.8 linux/amd64 ``` ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS...
Suggested,Documentation,help wanted,NeedsFix
low
Critical
217,844,148
angular
broken animations in angular4
[X ] bug report **Current behavior** I have animation on routerTransition and it is breaking my app. the error is like this > ERROR Error: Uncaught (in promise): Error: The provided animation trigger "c12#routeAnimation" has not been registered! > Error: The provided animation trigger "c12#routeAnimation" has ...
type: bug/fix,area: animations,freq3: high,P3
low
Critical
217,886,045
TypeScript
add a constraint for immutable types
say, i have a generic function that by design requires that its parameters may only take immutable arguments, i wish i could get such guarantee from TS by declaring my function as follows: ```typescript function doThings<readonly T>(value: T): Result<T> { // ... } ``` as far as how to make an interface immut...
Suggestion,Awaiting More Feedback
low
Major
217,895,869
rust
Rustdoc incorrectly orders trait impls
Documentation for `Rc`: https://doc.rust-lang.org/nightly/std/rc/struct.Rc.html Source code: https://doc.rust-lang.org/nightly/src/alloc/rc.rs.html#263-265 In the source impls for `!Send` and `!Sync` come one after another. In the generated documentation they don't. The docs should respect the order of impls in ...
T-rustdoc,C-bug
low
Minor
217,951,855
opencv
[Feature Request] VResizeLanczos4Vec_32s8u
Hi :) I was testing out some image resizing with opencv and I realized that Lanczos4 ran substantially slower than bicubic. I was curious why this was, so I went digging, and found out that the bicubic resampler engages a vectorized implementation `VResizeCubicVec_32s8u`, which I believe operates on 4, 8-bit unsigne...
feature,category: imgproc
low
Major
217,984,525
go
gccgo: unneeded hash/equal functions emitted for runtime types
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? gccgo trunk/tip go version devel +7e817859b3 Mon Mar 27 18:51:42 2017 +0000 linux/amd64 ### What operating system and processor architecture are you using (`go env`)? GOARCH="amd64" GOO...
NeedsInvestigation
low
Critical
218,002,500
rust
Add explicit or zero constructor for `std::time::Instant`
**Updated: [see below](https://github.com/rust-lang/rust/issues/40910#issuecomment-1015362071)** ---- I'd like to be able to construct an `Instant` with value 0 (whatever epoch that is, I don't care). Motivation: we have code to schedule timeouts taking a `Duration`. We have a mock version of the same schedule...
T-libs-api
low
Major