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
246,901,834
rust
rustc aborts when there is a compilation failure on FreeBSD and OpenBSD
When there is a compilation failure, the Rust compiler aborts with the following output: ``` $ rustc invalid.rs error: requires at least a format string argument --> invalid.rs:2:5 | 2 | print!() | ^^^^^^^^ | = note: this error originates in a macro outside of the current crate error: abo...
I-crash,T-compiler,O-openbsd,O-freebsd,C-bug
low
Critical
246,931,205
rust
"error: trait bound is not satisfied" when it is
### STR ``` toml # Cargo.toml [dependencies] typenum = "=1.9.0" ``` ``` rust // src/lib.rs extern crate typenum; use std::marker::PhantomData; use typenum::{Max, Maximum, Unsigned}; /// A resource, a mechanism to safely share data between tasks trait Resource { type Data: Send; type Ceil...
A-type-system,T-compiler,C-bug,T-types
low
Critical
247,028,611
kubernetes
Support httpHead for pod livenessProbe
/kind feature **What happened**: The docs for [http liveness probes](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#define-a-liveness-http-request) only reference `httpGet`, but a http `HEAD` request is better for healthchecks as no data is returned so it is lighter we...
sig/node,kind/feature,needs-triage
high
Critical
247,032,765
TypeScript
cannot redeclare exported variable
<!-- 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.4.2 **Co...
Bug,Domain: JavaScript
low
Critical
247,034,267
electron
Feature request: <webview> app-manifest-updated event
The Electron `<webview>` has events for notifying its parent when web page metadata changes including: * `page-title-updated` for `<title>` changes * `page-favicon-updated` for `<link rel=icon>` changes * `did-change-theme-color` for `<meta name=theme-color>` changes I'd like to propose a new event which is dispa...
enhancement :sparkles:,component/webview
low
Major
247,086,358
rust
Final link failed (with CARGO_INCREMENTAL)
Sometimes (it's not always reproducible and it doesn't happen with some specific code), I get a linker error complaining undefined references to rust functions in my project, something like this: ``` = note: /home/vorner/work/pakon/aggregator/target/debug/deps/aggregator-57e8a9355952fffd.aggregator-keeper-query-t...
A-linkage,T-compiler,A-incr-comp,C-bug
low
Critical
247,133,774
TypeScript
File altered by before transform does not remove new unused imports
**Description of the bug:** When using a before transform that makes an import unused, the import will not be removed by TypeScript. So if I have: ```ts import { unused } from 'unused-module'; import { something } from 'some-module'; const value = something; ``` And replace `const value = something` wit...
Bug,API,Domain: Transforms
low
Critical
247,150,281
vscode
macOS: Copying text to clipboard does not preserve tabs
This might be an Electron problem rather than VS Code, but copying text to the clipboard does not preserve tabs. Instead, it converts the tabs to an appropriate number of non-breaking space characters. Here is `settings.json`: ```javascript { "editor.fontFamily": "'SFMono Light', Hack, Menlo, Monaco, 'Couri...
bug,macos,editor-clipboard
low
Minor
247,166,771
rust
Tracking issue for oom=panic (RFC 2116)
**Update:** This now the tracking issue for a mechanism to make OOM / memory allocation errors panic (and so by default unwind the thread) instead of aborting the process. This feature was accepted in RFC https://github.com/rust-lang/rfcs/pull/2116. It was separated from https://github.com/rust-lang/rust/issues/4804...
B-RFC-approved,A-allocators,T-lang,T-libs-api,C-tracking-issue,Libs-Tracked,S-tracking-ready-to-stabilize
high
Critical
247,183,013
vscode
multiCursorModifier should be ctrlCmd by default for *nix users
- VSCode Version: Code - Insiders 1.15.0-insider (6328bae2bf8382fd4abd054c14976548eaea66cf, 2017-07-27T07:00:51.592Z) - OS Version: Linux x64 4.10.0-28-generic - Extensions: none --- Following on the heels of #21506, I feel that the default click action for *nix users should not be alt-click, but ctrl-click. W...
feature-request,editor-multicursor
low
Critical
247,263,333
flutter
Would like to be able to avoid asset load errors at runtime
Currently with Flutter it's very easy to end up with asset load errors at runtime since assets are keyed off of strings, which are not in any way validated at analyze time (or generated/provided by the system). Posse's currently most common crash in their live app is a failed asset string load. They also have a m...
tool,framework,a: assets,P3,team-framework,triaged-framework
low
Critical
247,264,281
rust
Confusing mismatched type error
If you forget to put a semicolon after the last expression in the body of a function that returns no values, `rustc` will infer that the type of the expression should be `()`. If the programmer didn't intend to return a value, but merely forgot to type a semicolon, the resulting error can be confusing. Consider, for ex...
C-enhancement,A-diagnostics,T-compiler,D-confusing,D-newcomer-roadblock
low
Critical
247,281,102
rust
"failed to run cargo build" on powerpc64 when installing rust 1.19.0
After downloading the latest Rust release tarball, 1.19.0, running ./configure, and then make, I get the following, after a few tarballs are downloaded successfully: ``` aperez@debian-sid-ppc64:~/rust-1.19.0$ make -j4 downloading https://static.rust-lang.org/dist/2017-06-08/rust-std-1.18.0-powerpc64-unknown-linux-...
I-crash,O-PowerPC,C-bug
low
Critical
247,403,434
angular
Angular Router + Browser History=> extra page view count in GA
<!-- PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION. ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION. --> ## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopp...
type: bug/fix,freq2: medium,area: router,state: confirmed,P3
low
Critical
247,446,381
electron
Register URL pattern as bypassing CSP?
Since `v0.30.3` we can register URL schemes (`http`, `file`, `chrome-extension`.. ) as bypassing CSP via `webFrame.registerURLSchemeAsBypassingCSP`. Is there a way to register URL patterns (like `https://mydomain.com/trusted-scripts/*`) as bypassing CSPs? If no, would it make sense to add such an API (`webFrame.reg...
enhancement :sparkles:
low
Minor
247,447,498
opencv
The Viz3d window seems to have broken.
<!-- If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses. If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute). This is a template helping you to create an issue which can be...
bug,category: viz
low
Critical
247,498,586
go
cmd/compile: incorrect type assertions on conflicting package names
This is a bug that has existed since Go1.0. Consider the following packages: ```go package iface // import "github.com/dsnet/example/iface1/iface" import "fmt" import "reflect" func CheckInterface() { type iface interface { unexported() } var v interface{} = foo{} t := reflect.TypeOf(v) t1 := refl...
NeedsFix
low
Critical
247,535,673
flutter
Refactor "pop" so that BackButton can quit the app on Android
![img_20170802_125117](https://user-images.githubusercontent.com/551196/28892026-641e774c-7781-11e7-8466-dd95e072e0d9.jpg) Specifically: * Remove the call to `SystemNavigator.pop` from the `didPopRoute` handler in the `WidgetsApp`. * Make `WidgetsApp` call `maybePop` instead of `pop` on the Navigator. (Or, make ...
framework,f: routes,P2,team-framework,triaged-framework
low
Critical
247,539,885
TypeScript
Support for a built-in "constructable" type or "class type"
<!-- 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.4.0 It w...
Suggestion,Awaiting More Feedback
medium
Critical
247,557,583
TypeScript
Generic values
TypeScript supports generic type/interface/class declarations. These features serve as an analog of "type constructors" in other type systems: they allow us to declare a type that is parameterized over some number of type arguments. TypeScript also supports generic functions. These serve as limited form of parametri...
Suggestion,Awaiting More Feedback
high
Critical
247,585,591
rust
-Zdump-mir is incomplete for dead functions
Given the following program ``` fn main() { let _closure = |x: i32| x+x; } ``` I would expect `rustc filename.rs -Zdump-mir=all` to dump all stages of the MIR of all functions. What happens instead is that for the closure, only the `000-*` and `001-*` passes are emitted; the `002-*` are missing. That's probab...
I-needs-decision,T-compiler,C-bug
low
Critical
247,659,096
vscode
[folding] show comment first line for folded sections
I think it could be really useful to change the multiline comment folding. When you fold a comment like this (like above php function) : ``` /** * Print person name on terminal * * @param person $p * @return void */ ``` You see this : ``` /** ... ``` In some editors like phpStorm or Eclipse, it...
feature-request,editor-folding
medium
Major
247,733,052
go
net/http: still return the content on malformed MIME header line
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.8.3 darwin/amd64 ### What operating system and processor architecture are you using (`go env`)? GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GOO...
NeedsDecision
medium
Critical
247,747,086
TypeScript
Allow object types to have property-like associated types
**Edit:** Add `static Type` variant for classes, make abstractness a little clearer, clarify things. *This has probably already been asked before, but a quick search didn't turn up anything.* This is similar, and partially inspired by, Swift's/Rust's associated types and Scala's abstract types. --- ## Ratio...
Suggestion,In Discussion
high
Critical
247,770,146
TypeScript
Extending string-based enums
Before string based enums, many would fall back to objects. Using objects also allows extending of types. For example: ```ts const BasicEvents = { Start: "Start", Finish: "Finish" }; const AdvEvents = { ...BasicEvents, Pause: "Pause", Resume: "Resume" }; ``` When switching over to st...
Suggestion,Waiting for TC39
high
Critical
247,770,607
angular
Component/declarative error handling (ala React 16's <ErrorBoundary/>)
## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopped working in a new release) [ ] Bug report <!-- Please search GitHub for a similar issue or PR before submitting --> [x] Feature request [x] Documentation issue or requ...
feature,area: core,core: error handling,feature: under consideration
medium
Critical
247,809,019
go
testing: collect performance counters for benchmarks
Performance counters may be helpful for benchmarking: - it can provide more information like cache misses, branch misprediction, etc. - number of cycles may be more stable than wall clock time. It may be hard to do it in a portable way. But doing it only on platforms that are available would still be nice. @acl...
Proposal,Proposal-Accepted
medium
Major
247,849,153
TypeScript
Don't allow `this` in decorator expressions
e.g. `@this.method()` is invalid
Bug,Domain: Decorators,ES Next
low
Minor
248,003,365
react
Too much unnecessary updates when a child element is moved to the front
**Do you want to request a *feature* or report a *bug*?** Not sure if it's a bug or an 'accepted' behavior. But this can affect performance in some situations or even 'break the expectations' in others (e.g. animating moved elements [i.e. simple moves]) **What is the current behavior?** When a child element m...
Type: Discussion,Component: Reconciler
low
Critical
248,050,044
go
x/build/cmd/gopherbot: don't fight humans
In #20892, I re-opened an issue, only to have @gopherbot re-close it. This is an issue to follow-up on what happened there. cc @andybons @kevinburke
Builders,NeedsFix
medium
Major
248,050,750
rust
Tuples of functions do not coerce to tuples of function pointers
Hi Following code does not compile in current nightly even though error message does not seem to have valid meaning. Returning single function in both match arms compiles successfully. ``` fn m(i:i8) { let (l, r) = match i { 0 => { fn f1()-> bool { true }; fn f2()-> bool { true }; ...
A-type-system,T-lang,C-feature-request,T-types
low
Critical
248,057,332
TypeScript
Suggestion: Provide better APIs to simplify converting CommentRanges into SynthesizedComments
**Scenario** [Tsickle from the Angular project](https://github.com/angular/tsickle) is a TypeScript transformer that makes the emitted JavaScript compatible with Google Closure Compiler. For this, it converts types into comments so that Closure Compiler can understand the types. E.g. ```ts /** * The test fun...
Suggestion,In Discussion,API
low
Minor
248,068,018
rust
Compiler unable to match types with trait implementation
`rustc 1.19.0 (0ade33941 2017-07-17)` The following piece of code: ```rust pub struct Foo { pub data: [u8; 64], } pub struct FooRef<'a> { pub data: &'a [u8; 64], } impl<'a> From<&'a Foo> for FooRef<'a> { fn from(foo: &'a Foo) -> Self { FooRef { data: &foo.data, } } } impl Foo { pu...
A-type-system,T-compiler,C-bug,T-types
low
Critical
248,073,371
go
cmd/compile, runtime: add and use go:nosplitrec compilation directive
A key error leading to #21306 was a call from a nosplit function to a function not marked nosplit, permitting preemption at a point where it was not permitted. Therefore, just as we have `go:nowritebarrierrec` meaning that such a function may not call any function that permits write barriers, we should have `go:nosp...
NeedsFix,compiler/runtime
medium
Critical
248,084,546
go
x/build: set up alerts for errors reported to stackdriver
Currently we get a bunch of errors reported, eg: 9/4/17 7:53AM: buildID: B32739cd61, name: windows-amd64-2016, hostType: host-windows-amd64-2016, error: failed to get a buildlet: Error creating instance: &{Code:QUOTA_EXCEEDED Location: Message:Quota 'CPUS' exceeded. Limit: 500.0 ForceSendFields:[] NullFields:[]} ...
Builders
low
Critical
248,098,767
opencv
Absence of GridAdaptedFeature detector, dense adapted feature detector
<!-- 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: features2d,RFC
low
Critical
248,114,062
react
<video /> attribute needed but not guaranteed by React
As @gaearon [mentioned](https://twitter.com/dan_abramov/status/893511715463340033), React does not guarantee an *attribute* will be set, so probably this is not a bug. If I understand well, react will ensure the property is set anyway. **Current behaviour** React renders the html `<video />` element without the...
Type: Feature Request,Component: DOM,HTML
high
Critical
248,174,074
TypeScript
Feedback to improve compileOnSave with tsserver.
I have implemented inside Eclipse `compile on save` with tsserver by consuming `compileOnSaveAffectedFileList` and `compileOnSaveEmitFile` commands. It works great but I think we could again improved it For `compileOnSaveAffectedFileList`: * `compileOnSaveAffectedFileList` should throw error when the given file...
Suggestion,Help Wanted,API,VS Code Tracked
low
Critical
248,246,915
go
all: inconsistent hyphenation
Grepping for `//.*[a-zA-Z]-\n` (see [CL 53510](https://go.dev/cl/53510)) yields some examples of phrases that are inconsistently hyphenated in the tree. Two prominent ones: * "floating-point" vs "floating point" * "run-time" vs "run time" Low priority, but we should pick one and use it consistently. (And also do a mo...
Documentation,NeedsInvestigation
low
Major
248,254,428
opencv
Please produce current C++ NuGet package for OpenCV
To whom it may concern, Please produce a current C++ NuGet package for OpenCV. This has become the standard way to deploy software libraries on Windows. Unfortunately, since there is no official current package, many non-official packages have arisen, causing confusion. The two I have found to work are: http...
feature,category: build/install
low
Major
248,255,666
youtube-dl
Add support for “danmaku” subtitles on nicovideo.jp
### Make sure you are using the *latest* version: run `youtube-dl --version` and ensure your version is *2017.08.06*. 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
248,257,179
flutter
Customizable BottomNavigationBar height
Although it implements the material design spec, plenty of apps do make the BottomNavigationBar shorter (Youtube, Facebook, Keep, etc). It would be nice to have this functionality, although it is not critical to our app.
c: new feature,framework,f: material design,P2,team-design,triaged-design
low
Minor
248,261,402
go
x/tools/cmd/eg: clean imports after refactoring
tl;dr: While new imports are correctly added by the refactoring, imports that are made obsolete still exist unnecessarily (and therefore __break compilation__). We need to run something like `goimports` after performing the eg transformation. ### What version of Go are you using (`go version`)? `go version go1.8.1 ...
Tools,Refactoring
low
Critical
248,291,973
java-design-patterns
Robot pattern
**Description:** The Robot design pattern is an advanced testing pattern commonly used in Android development to simplify and streamline UI testing. The core idea is to encapsulate the interactions with the UI components in a separate class, referred to as a "Robot," which then exposes high-level methods for test scrip...
epic: pattern,type: feature
low
Major
248,314,298
opencv
How to set key frame interval
<!-- 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: videoio
low
Critical
248,325,550
pytorch
DataParallel is not compatible with pack_padded_sequence
If the model has `pack_padded_sequence`, then with `DataParallel ` module it will output error `"ValueError: lengths array has incorrect size"`
awaiting response (this tag is deprecated),triaged,module: data parallel
low
Critical
248,329,188
tensorflow
Numerical instability of gradient calculation of tf.norm (nan at 0, inf for small values)
### System information - **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)**: Yes see below - **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)**: Mac OS X 10.11.6 - **TensorFlow installed from (source or binary)**: binary - **TensorFlow version (use command be...
stat:contribution welcome
medium
Critical
248,388,012
nvm
I can't use nvm install node, help me
I can't use nvm install node, help me error : ```sh Downloading and installing node v8.2.1... Local cache found: $NVM_DIR/.cache/bin/node-v8.2.1-linux-x64/node-v8.2.1-linux-x64.tar.xz Computing checksum with sha256sum Checksums do not match: 'f74e70e2c3c6d96e887286e605480f64487cd543f4a5988b29f491b32f1256c8' ...
installing node,needs followup
low
Critical
248,422,175
vscode
Provide an API to show hover-like tooltip
Please provide an API to trigger a hover-like tooltip. Use case: In my language extension, I want to let users know the type of the expression by pressing a combination of keys. This is similar to what hover does but: - It is triggered by pressing a shortcut - When the same shortcut is pressed again I want to wid...
feature-request,editor-api
medium
Critical
248,537,289
godot
Scripts not added retroactively to instanced inherited scenes open in editor
_**bugsquad edit**_: reproduction steps which were used to confirm the issue are here: https://github.com/godotengine/godot/issues/10156#issuecomment-320997658 ----------- **Operating system or device - Godot version:** OS: Windows Godot Version: 3.0 Alpha Build 1 **Issue description:** I have found a prob...
bug,topic:core,confirmed
low
Critical
248,574,665
go
x/net/http2: bogus greeting when providing TLSClientConfig
### What version of Go are you using (`go version`)? go version go1.9beta2 darwin/amd64 ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GOOS="darwin" GOPATH="/Users/jackson/" GORACE="" GOROOT="/Use...
NeedsFix
low
Critical
248,601,852
thefuck
Can we make thefuck learn alias + function in bash?
i have this function in .bash_profile ``` quickpush() { git add . git commit -m "$@" echo "🍏 commit message: [$@]" git push echo 🚀 quick push success... or not. } ``` when i use it in terminal (mac) ``` $: quickpus hello world // => suggest quickpush hello world ``` can we auto suggest like...
enhancement,help wanted,hacktoberfest,HackIllinois
low
Minor
248,615,229
rust
Can show operands at runtime when 'attempt to multiply with overflow' panic ?
Is it possible to show the two operands at runtime when this panic occurs ? thread 'main' panicked at 'attempt to multiply with overflow', src/main.rs:7 So maybe we can see `2*122` in the panic message? [example code](https://play.rust-lang.org/?gist=3d3739913cd5cbbff6159d1b9687427f&version=stable) [code with b...
T-lang,T-libs-api,C-feature-accepted
low
Critical
248,663,398
vscode
SCM - Support altCommand for SCM resources
Feature suggestion. Implement some keyboard button+Click combination on a file in Git Sidebar to `Open File` (not `Open Change`, which is being used by default by just clicking on a file). For example: Ctrl+Click (Command+Click), Option+Click (Alt+Click) or something like that. Make a life a bit easier for a user wh...
help wanted,feature-request,scm
low
Major
248,755,857
angular
Http ResponseType cannot be set
## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopped working in a new release) [x] Bug report <!-- Please search GitHub for a similar issue or PR before submitting --> [ ] Feature request [ ] Documentation issue or reques...
feature,area: common/http,feature: under consideration
high
Critical
248,796,599
opencv
Use imported targets for linking to CUDA
In https://github.com/opencv/opencv/pull/3893 CUDA targets where nicely marked as imported targets, but this change seems to be lost again over time. To repeat from original pull request moving to imported targets has two major advantages: * It removes the need to use link_directories, which doesn't guarantee that the...
feature,category: build/install,category: gpu/cuda (contrib)
low
Minor
248,878,972
opencv
Nested parallel_for_ no longer parallelized
##### System information (version) <!-- Example - OpenCV => 3.1 - Operating System / Platform => Windows 64 Bit - Compiler => Visual Studio 2015 --> - OpenCV => 3.3.0 - Operating System / Platform => All - Compiler => All ##### Detailed description Commit 006966e6295f44e48ade066d4eb56826439680fb breaks ...
category: core,RFC
low
Major
248,900,739
godot
Instances of inner class can't be load back with ConfigFile
**Operating system or device - Godot version:** Godot 3.0 alpha1 on Windows 10 **Issue description:** <!-- What happened, and what was expected. --> There is a class named `MyClass.gd`. Instance of this class can be save and load back with `ConfigFile` but something wrong with the member `subObj ` which is an I...
bug,topic:core,confirmed
low
Critical
249,046,169
neovim
API: timeout for blocking requests
<!-- Before reporting: search existing issues and check the FAQ. --> - `nvim --version`: 0.2.0 - Vim (version: ) behaves differently? N/A - Operating system/version: macOS Sierra 10.12.1 - Terminal name/version: a remote UI talking to a --headless nvim through the Nvim API - `$TERM`: N/A ### Steps to reproduc...
enhancement,api,channels-rpc
low
Critical
249,063,481
rust
Static library linkage error
This issue was previously submitted to https://github.com/rust-lang/cargo/issues/4351, which contains the description and the reproduction steps. Basically I suspect that rustc is not passing the static libraries in the correct order to the linker.
A-linkage,C-bug
low
Critical
249,063,486
kubernetes
Clear restart counter
/kind feature /sig feature-requests **What happened**: We use the restart counter (and his frequency) to monitor our apps health **What you expected to happen**: It we be helpful to have an option to clear the counter and the history of the pod without deleting it. **Environment**: - Kubernetes versi...
kind/documentation,sig/node,kind/feature,lifecycle/frozen,triage/needs-information,needs-triage
high
Critical
249,194,782
TypeScript
Allow narrowing generic type to single element of union type
It is a fairly common pattern to create a set of generic components, and then to use the generic component type within the system. Currently, typescript has an issue handling cases where some values of a generic component depend on others. **TypeScript Version:** 2.4.0 / nightly (2.5.0-dev.201xxxxx) 2.4 **Code** ...
Suggestion,Awaiting More Feedback
low
Critical
249,216,779
rust
Tracking issue for `#[doc(cfg(…))]`, `#[doc(cfg_hide(…))]` and `doc_auto_cfg`
This is a tracking issue for the `#[doc(cfg(…))]` attribute (feature: `doc_cfg`) introduced in #43348 and `#[doc(cfg_hide(…))]` (feature: `doc_cfg_hide`) attribute introduced in #89596, along with the `doc_auto_cfg` feature introduced in https://github.com/rust-lang/rust/pull/90502. **Steps:** - [x] Implement: #43348...
T-rustdoc,B-unstable,C-tracking-issue,F-doc_cfg,F-doc_auto_cfg
high
Critical
249,226,154
go
cmd/compile: gdb 8 on windows crashes reading Go binary
### What version of Go are you using (`go version`)? ``` > go version go version go1.9rc2 windows/amd64 ``` ### What operating system and processor architecture are you using (`go env`)? ``` > go env set GOARCH=amd64 set GOBIN= set GOEXE=.exe set GOHOSTARCH=amd64 set GOHOSTOS=windows set GOOS=windows...
OS-Windows,NeedsInvestigation
medium
Critical
249,260,263
vue
Line numbers for errors in the html parser
### What problem does this feature solve? Errors raised by the html parser (`options.warn` in the code) don't register the location of the error. With the location it will be much easier to debug. For example if I forget to close an HTML tag, the compiler will complain and tell me the name of the tag. However I ...
feature request,improvement,has PR
low
Critical
249,305,727
angular
Error message for missing `*directives` is wrong and confusing
<!-- PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION. ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION. --> ## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopp...
type: bug/fix,freq1: low,area: compiler,core: ng-template and *microsyntax,core: directive matching,P4,compiler: template type-checking
low
Critical
249,310,576
go
x/tools/cmd/stringer: cannot import vendored dependencies
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.8.3 linux/amd64 ### What operating system and processor architecture are you using (`go env`)? Ubuntu Linux, amd64 ### What did you do? Attempted to run golang.org/x/...
Tools
low
Critical
249,362,236
go
net/http: ResponseWriter.Write does not error after WriteTimeout nor is ErrorLog used
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? ``` go version go1.8.3 darwin/amd64 ``` ### What operating system and processor architecture are you using (`go env`)? ``` GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOS...
NeedsFix
medium
Critical
249,363,806
godot
Manually Resizing Viewport Render makes a Flickering Godot Splashscreen Background
**Operating system or device - Godot version:** Godot 2.1.3 stable Windows 7 service pack 1 **Issue description:** i wrote a script that will resize my Base Game Display Size Pixel Perfectly to a Screen/Window Size by having a Resize Value of Integers. in Project Settings Display * Game Display 144x216 * T...
bug,topic:rendering,confirmed
low
Major
249,515,034
go
cmd/compile: improve codegen for nested if statements
As observed in CL 54651, these two semantically equivalent bits of code do not always compile equivalently: ```go if a { if b { // ... } } ``` ```go if a && b { // ... } ``` This issue is to investigate why, and if the latter is systematically better, consider improving the former. Note that...
Performance,compiler/runtime
low
Minor
249,518,482
vscode
[GRIPE] "editor.mouseWheelScrollSensitivity" setting is not respected while making a text selection
the editor scrolls insanely fast while selecting large blocks of text which is quite unwieldy, so i tried to see if i could affect this behavior with the setting `editor.mouseWheelScrollSensitivity`, but it had no effect. please make a setting to control the sensitivity of scrolling while selecting text.
feature-request,editor-core
low
Minor
249,532,573
go
x/mobile: need API to hide Android status bar on native app
### What version of Go are you using (`go version`)? $ go version go version go1.9rc2 linux/amd64 ### What operating system and processor architecture are you using (`go env`)? $ go env GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GOPATH="/home/everton/go" GORACE="" G...
NeedsFix,mobile
low
Critical
249,552,074
opencv
Set manually the destination image size of LinearPolar / LogPolar
##### Detailed description The methods `linearPolar` and `logPolar` return the image of the same size as the source. I consider this behavior strange since the dimensions of the result image are ρ and φ and have nothing to do with the original image width and height. Ideally, the radial and angular dimensions ...
feature,category: imgproc
low
Major
249,552,206
go
encoding/xml: cannot marshal self-closing tag
Please answer these questions before submitting your issue. Thanks! ### What version of Go are you using (`go version`)? go version go1.8.3 darwin/amd64 ### What operating system and processor architecture are you using (`go env`)? GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GOOS=...
NeedsFix
high
Critical
249,576,669
rust
`x.py doc` cannot work when a junction point / symbolic link cannot be created.
... for instance, in a VirtualBox shared folder, which are mapped as network drive, does not support junction point on Windows, which causes `Incorrect function. (os error 1)` always. Symbolic links (junction points) are used because: > Here what we're doing is creating a *symlink* (directory junction on > Windo...
C-enhancement,T-bootstrap,A-docs,T-infra,C-optimization
low
Critical
249,614,120
flutter
Colors of Image Icon
I wanted to use a multi color image as my icon the way it was. But when i made it an image icon it got decolorized. How do I restore the original colors?
framework,a: images,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-framework,triaged-framework
low
Major
249,669,043
react
Cross-origin error passed to componentDidCatch incorrectly
tl;dr React is passing "A cross-origin error was thrown" to `componentDidCatch` when there are no cross-origin scripts. See [this discussion thread](https://github.com/facebook/react/pull/10353#issuecomment-321528685) and [this repro case](https://github.com/tessin/tessin-mini). I was able to confirm the behavior...
Component: DOM,Type: Needs Investigation,React Core Team
high
Critical
249,700,441
TypeScript
Generating type definitions for mixin classes with protected members
**TypeScript Version:** 2.4.2 **Code:** I'm using mixins as described by: https://github.com/Microsoft/TypeScript/pull/13743 ``` export type Constructor<T> = new(...args: any[]) => T; export function Unsubscriber<T extends Constructor<{}>>(Base: T) { class Unsubscriber extends Base implements OnDestroy ...
Bug,Domain: Declaration Emit
medium
Critical
249,706,531
vue
Update slot content without rerendering rest of component
### What problem does this feature solve? I have developed some components that can generate large amounts of HTML, and allow content to be added via slot. It appears that if the slot content is updated, the render function is called for the component; however, this seems like something that could be avoided through o...
improvement
medium
Major
249,718,931
go
container/heap: optimize heap to reduce number of comparisons during heapify and heap pop
This is an optimization specified in Knuth Volume 3 (Exercise 5.2, problem 18 I believe) where `down()` is called on an element in a certain position (during heap pop or init). It states that it's beneficial to move that element all the way to the leaf and then move up to its appropriate place instead of breaking out a...
Performance,NeedsFix
low
Major
249,777,729
flutter
Ballistic simulations may be created too frequently
Make a normal fling gesture. ~50% of the time, many goBallistic calls are triggered when I would have expected just one. In this example, it took 78ms cumulative recreating the simulations and causes frame drops. ![cw5hukq7xsp](https://user-images.githubusercontent.com/156888/29236274-6aabf178-7ebd-11e7-88e3-7a...
framework,c: performance,f: scrolling,P2,team-framework,triaged-framework
low
Major
249,822,177
go
cmd/compile: coalesce consecutive calls to print/println
CLs 55095–55098 change how the compiler (and runtime) implement the built-ins print and println, in order to reduce the amount of code they generate. (The goal is to both reduce the runtime's binary footprint and to increase instruction density in important runtime routines.) This issue spells out one further obviou...
Performance,NeedsDecision
low
Major
249,825,561
youtube-dl
Tudou/Youku Channel Support
## 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 this: `[x]`) - Use the *Preview* tab to see what your issue will actually look like ...
request
low
Critical
249,826,086
vscode
Can't drag selected text with Ctrl to second file
- VSCode Version: Code 1.14.2 (cb82febafda0c8c199b9201ad274e25d9a76874e, 2017-07-19T23:34:09.706Z) - OS Version: Windows_NT ia32 6.3.9600 ------------------------------------------------ Hi, See this gif: ![mgh](https://user-images.githubusercontent.com/5067331/29243110-db90592a-7fac-11e7-82b8-72ae0f6a8826.gif) ...
feature-request,editor-drag-and-drop
low
Major
249,851,597
pytorch
Add CRF Layer
I use blstm-crf in advance_tutorial, but it runs very slow, can you add crf layer in pytorch? cc @albanD @mruberry
feature,module: nn,triaged
low
Major
249,861,936
go
x/crypto/ssh: ssh connections and channels should be cancelable
When using x/crypto/ssh in a long-running program for communicating with many nodes that may come and go, it is necessary to be able to shutdown started SSH connections and channels cleanly. Currently there are many goroutines leaked. For example, https://github.com/golang/crypto/blob/master/ssh/connection.go#L79 t...
NeedsInvestigation
medium
Major
249,946,166
pytorch
Hard-negative mining using __getitem__ directive in Dataset class
If I wish to do online hard negative mining (for triplet based algorithms), then I wish to send the recent state dict of my network to the data loader to evaluate the criterion and select the negative. Currently, you need to have a lot of workaround for this to get it working. I think the major limitation is the usage ...
module: dataloader,triaged
low
Major
249,979,787
vscode
Cleanup ExtensionContext.workspaceState when a workspace no longer exists
feature-request,workbench-state
high
Critical
250,052,361
go
cmd/compile: optimize unsigned comparisons with zero/one
I started on an minor optimization effort earlier this summer that I won't have time to see through for 1.10. This issue is a snapshot of the work and a description of what to do next, in case anyone else wants to pick an architecture to work on and run with it. Comparing unsigned ints with zero/one is special and (...
Suggested,Performance,help wanted,compiler/runtime
low
Minor
250,085,125
kubernetes
apiserver errors should include reason
/kind feature **What happened**: Spend too much time figuring out that my apiserver didn't start because the etcd DNS name couldn't be resolved. I got the following error: ``` Error: error waiting for etcd connection: timed out waiting for the condition ``` And even `--v=10` didn't provide any more context. Thi...
area/api,area/apiserver,sig/api-machinery,kind/feature,lifecycle/frozen
medium
Critical
250,109,335
javascript
Support for ESnext Class Feature
Hello, Curious if support for [ESnext classes](https://github.com/tc39/proposal-class-fields) is can be expected now that the feature has been [moved from stage-2 to stage-3](https://github.com/tc39/proposal-class-fields/commit/5a4ff5fa4bf30885188279f6fb8070f2e1903c32). If not, at what point (if any) will this fe...
needs eslint rule change/addition
low
Major
250,132,888
kubernetes
Support on Containerized mounter with customer image
"Containerized Mounter" feature #community/pull/589 is work-in-progress. Currently Kuberentes supports a temporary solution for containerized mounter, but only works for NFS and GlusterFS. #37990 #41944 But based on the current mounter with chroot solution, we can also make other types of mount utitlities work in a...
sig/storage,lifecycle/frozen
low
Minor
250,294,909
vscode
Toggle the block comment without having to select it
<!-- Do you have a question? Please ask it on http://stackoverflow.com/questions/tagged/vscode. --> <!-- Use Help > Report Issues to prefill these. --> - VSCode Version: 1.15.0 - OS Version: windows10 There is a problem that bothers me. **If I want to remove the block comment, I have to select it**, like th...
feature-request,editor-comments
medium
Critical
250,327,117
flutter
Possible to capture the previous screen before an error
In relation to https://github.com/flutter/flutter/issues/10695, customer: six is asking if it's possible to capture the previous frame before an error. That way they could send that screen as part of a feedback report.
framework,P2,team-framework,triaged-framework
low
Critical
250,340,074
angular
Animations behaving differently despite equivalent definitions
<!-- PLEASE HELP US PROCESS GITHUB ISSUES FASTER BY PROVIDING THE FOLLOWING INFORMATION. ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED WITHOUT INVESTIGATION. --> ## I'm submitting a... <!-- Check one of the following options with "x" --> <pre><code> [ ] Regression (a behavior that used to work and stopp...
type: bug/fix,area: animations,freq2: medium,P3
low
Critical
250,372,948
vscode
[themes] Disable Italic Option Feature Request
- VSCode Version: 1.15.0 - OS Version: Windows 10 Version 1703 Build 15063.540 Steps to Reproduce: 1. 2. Reproduces without extensions: Yes/No Sometimes authors of themes use italic for `comments`, `language keywords` and for other things. In some cases that's looks not so good (as example what I mean you...
feature-request,themes,accessibility
high
Critical
250,374,131
go
x/mobile/gl: need API to retrieve error from GetAttribLocation()
### What version of Go are you using (`go version`)? $ go version go version go1.9rc2 linux/amd64 ### What operating system and processor architecture are you using (`go env`)? $ go env GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GOPATH="/home/esmarques/go" GORACE="" ...
mobile
low
Critical
250,377,554
go
.gitignore: Remove cruft and editor/OS-specific ignore files
Here's the current contents of the `.gitignore` file for the Go project. ``` .DS_Store *.[56789ao] *.a[56789o] *.so *.pyc ._* .nfs.* [56789a].out *~ *.orig *.rej *.exe .*.swp core *.cgo*.go *.cgo*.c _cgo_* _obj _test _testmain.go /VERSION.cache /bin/ /build.out /doc/articles/wiki/*.bin /go...
NeedsFix
low
Major
250,379,447
vscode
Add Opacity & Variable Height to Minimap
I'm looking for a way to change my VSCode Editor Minimap to behave more like the Atom Minimap. Specifically, to have container opacity and variable height as the file grows in length. The opacity is what is most important to me, but the variable container length would help a lot as well. Currently, my Atom minima...
feature-request,editor-minimap
medium
Critical
250,454,447
flutter
Flutter templates should support "com.android.library" Gradle plugin
The generated plugin template `build.gradle` files, and Flutter's `packages/flutter_tools/gradle/flutter.gradle` do not support Android library. In the `flutter.gradle` file, only `project.android.applicationVariants` are used. Android library does not have this property and instead offers `libraryVariants`. The ...
platform-android,tool,t: gradle,P2,a: plugins,team-android,triaged-android
low
Major