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 |
|---|---|---|---|---|---|---|
266,607,291 | rust | optimisation opportunity missed due to `assert!` | I have noticed interesting behaviour regarding `assert!` which was unexpected. I am not sure if this is a LLVM or Rust issue.
in the following code (See godbolt link below) I have a vec like structure `OwnedRegion`.
I want to iterate over the region (implemented as `slice::IterMut`) and populate an array.
I expect... | A-LLVM,C-enhancement,T-compiler,C-optimization | low | Major |
266,616,854 | vscode | Support fontName in textMateRules | This is a feature request, and I am not sure how it will be received. Probably not overwhelmingly positive, but nonetheless:
I would like to have support to change font family in my textmate theme. Right now you support `fontStyle`, `fontSize` and `foreground`. I believe the correct term is `fontName` as per https:/... | feature-request,editor-theming | high | Critical |
266,652,489 | bitcoin | Block Re-announcement post-compact-fast-announcement after a GETHEADERS or GETBLOCKS request | BIP 152, in the "Pre-Validation Relay and Consistency Considerations" section, point 3, suggests that nodes "SHOULD re-announce" a "block using the associated announcement methods after validation has completed if it is not included in the original response [to a GETHEADERS/GETBLOCKS message]". This is a pretty strange... | P2P | low | Minor |
266,661,027 | TypeScript | Anonymous function expressions aren't covered for 'infer from usage' | I'm not getting any codefixes on the parameters in the following example:
```ts
var f = function(x, y, z) {
return 0 + x + y + z;
}
f(1, 2, 3)
```
At the very least, `x`, `y`, and `z` should infer from their bodies.
Optimally, we should climb up looking for `PropertyAssignment`s, `PropertyDeclaratio... | Bug,Domain: Quick Fixes | low | Minor |
266,687,541 | go | cmd/gofmt: unexpected formatting of comments | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
`go version go1.9.1 linux/amd64`
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
```
GOARC... | NeedsInvestigation | low | Critical |
266,698,369 | go | x/crypto/ocsp: the responder cert is not provided along with the OCSP response signature | The docs on [`ocsp.CreateResponse`](https://github.com/golang/crypto/blob/ed5229da99e3a6df35c756cd64b6982d19505d86/ocsp/ocsp.go#L658) state that:
```
// The responder cert is used to populate the responder's name field, and the
// certificate itself is provided alongside the OCSP response signature.
```
But in... | NeedsInvestigation | low | Critical |
266,831,072 | pytorch | Add safety checks in `index_add`/`scatter_add` | Consider this snippet:
```python
a = torch.ones(5)
i = torch.ones(5)
a.index_add_(0, i, a)
```
Idk if we support repeated indices in `i` (we should), but we definitely shouldn't support adding to itself, as the result depends on the order of processing the additions. | triaged | low | Minor |
266,844,994 | opencv | setMouseCallback core dumped | ##### System information (version)
- OpenCV => 3.3
- Operating System / Platform => Ubuntu 16.04
- Compiler => gcc
##### Detailed description
Core dumped when setMouseCallback added.
##### Steps to reproduce
```
import cv2
point = [0,0]
def on_mouse(event,x,y,flags,params):
global poi... | incomplete | low | Minor |
266,981,357 | youtube-dl | Unable to download uuid | ## 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
... | account-needed | low | Critical |
267,019,638 | flutter | Align the Hero widget API doc with the Hero animation tutorial | Please update the [Hero widget API doc](https://docs.flutter.io/flutter/widgets/Hero-class.html) to reflect terminology used in the new [Hero animations tutorial](https://flutter.io/animations/hero-animations/). Specifically, mention that the Hero widget implements a style of animation also known as Shared Element Tran... | framework,a: animation,d: api docs,f: routes,c: proposal,P2,team-framework,triaged-framework | low | Major |
267,033,186 | kubernetes | Subresource for metadata | This is a tracker to consider the idea of a subresource for object metadata. In particular, for Secrets, you may want to grant a controller permission to read/edit metadata without granting access to the data.
Forked from https://github.com/kubernetes/community/pull/1163/files#r143342579:
@smarterclayton wrote:
... | sig/api-machinery,kind/feature,lifecycle/frozen | low | Major |
267,071,959 | rust | Rust compiler has unintuitive lifetime for returned mutable borrow in loops | Pardon if I have an incorrect view of how the borrow/lifetime system works.
Compiler complains about multiple mutable borrows in a loop, if a mutable borrow can be returned from the function.
Consider the following:
```
use std::collections::VecDeque;
struct Something;
struct Struct1 {
list: VecDeque<u... | A-lifetimes,A-borrow-checker,T-compiler,C-bug | low | Critical |
267,098,937 | rust | Add suggestion/explanation to error on trying to mutably borrow immutable reference | ```rust
let mut mem_buffer : &[u8] = &b"foo"[..];
let mut reader = &mut mem_buffer as &std::io::Read;
let mut read_buffer = [0u8, 10];
reader.read(&mut read_buffer);
```
reports
```
error[E0596]: cannot borrow immutable borrowed content `*reader` as mutable
--> src/main.rs:5:5
|
5 | ... | C-enhancement,A-diagnostics,P-low,T-compiler,WG-diagnostics | low | Critical |
267,132,908 | electron | Per monitor DPI awareness causes issues with window positioning and sizing | As per https://github.com/electron/electron/issues/9560 where previous issues regarding this were collapsed into.
If you have one monitor with non-100% scaling and one monitor with 100% scaling both `setSize` and `setPosition` do not act as expected (they always set incorrectly by a factor exactly equal to the scale... | platform/windows,machine-dependent,bug :beetle:,bug/regression :leftwards_arrow_with_hook:,2-0-x,5-0-x,component/BrowserWindow | high | Critical |
267,136,076 | flutter | secondaryAnimation in Router buildTransitions is never started | I’m trying to run second example from: https://docs.flutter.io/flutter/widgets/ModalRoute/buildTransitions.html
But it seems that `secondaryAnimation` is not started, it’s in `dismissed` state. When I print `secondaryAnimation.toString()` I’m getting
`kAlwaysDismissedAnimation➩ProxyAnimation➩ProxyAnimation`
From... | framework,d: api docs,f: routes,P2,team-framework,triaged-framework | low | Major |
267,156,695 | angular | Leave animation triggers child ngOnDestroy immediately | <!--
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 | medium | Critical |
267,210,903 | rust | Failing tests for x86_64-unknown-linux-gnux32 | As can see [here](https://travis-ci.org/rust-lang/rust/jobs/290436965), the are failing tests for x86_64-unknown-linux-gnux32
[run-pass](https://travis-ci.org/rust-lang/rust/jobs/290436965#L5218):
- `lto-unwind.rs`
- `backtrace-debuginfo.rs` (Fixed by https://github.com/rust-lang/rust/pull/45652)
- `backtrace.rs`... | O-linux,C-bug,O-x32 | low | Critical |
267,221,295 | TypeScript | Compiler gives two different errors for wrong number of type arguments | ```ts
class B<T, U = number> {
t: T
u: U
}
class D extends B<string, string, string> {
~
Generic type B<T, U> requires between 1 and 2 type arguments.
d: number
}
let b = new B<string, string, string>()
~~~
Expected 1-2 type arguments, but got 3.
... | Bug,Domain: Error Messages | low | Critical |
267,263,860 | TypeScript | Bug(?): Using attribute type of extended generic param and an intersection type | **TypeScript Version:** 2.7.0-dev.20171020
**Code**
```ts
interface Container {
foo: Foo;
}
interface Foo {
a: string;
}
interface Bar {
b: string;
}
function example<T extends Container>(): T['foo'] & Bar {
return {
a: 'foo',
b: 'bar',
};
}
```
**Expected behavior:**
... | Bug | low | Critical |
267,311,041 | go | go/ast: trailing func comments mishandled in CommentMap | Working example: https://play.golang.org/p/TlsDxVbGow
Prints: `g: "trailing comment in f\n"`
Seems like the correct output should either be nothing (if it is associated with `_ = x`), or `f: "trailing comment in f\n"`.
What's currently happening is that the "_ = x" in func f is the most recent "important" node... | help wanted,NeedsFix | low | Minor |
267,316,634 | vscode | Explore improving GDPR annotations | The current GDPR annotations are comment based. Thus, if we are not careful, they can easily go out of sync with the actual code. Scope of this exploration:
- using interfaces and types
- listing rules and quick fixes | plan-item | low | Minor |
267,345,241 | vue | Asset support for functional components | ### What problem does this feature solve?
Functional components with templates allow users to improve performance without sacrificing readability or ease of use. However, currently these do not support the "components" option. This limits this feature a lot, to a very limited set of use cases.
### What does the pr... | intend to implement,feature request,improvement,has PR | medium | Major |
267,354,869 | TypeScript | Polymorphic `this` breaks when a module exports a variable and interface with the same name | Importing a variable that has a corresponding interface of the same name from a module causes unexpected behavior.
In the screenshot below, the function, doSomething, should return the type `Model<number>` due to polymorphic `this`; however, it returns `Model<T>`, which is unusable.
<img width="1270" alt="screen ... | Bug | low | Minor |
267,379,740 | vue | Alert (possibly fix) SSR Mismatch in Production | ### What problem does this feature solve?
Currently there is no way to receive alerts (and possibly rerender) in production concerning SSR vs VDom mismatch.
This is critical because different browsers will handle this in unexpected ways. For instance, I just finished trouleshooting an issue that is specific to W... | improvement | low | Critical |
267,387,195 | rust | RawVec stores a capacity field even if T is zero-sized | When `std::mem::size_of::<T>() == 0` `RawVec<T>` has always a capacity equal to `std::usize::MAX` elements. It currently stores a `cap: usize` that always contains this value but doing so is unnecessary in this case.
@withoutboats this would be a not so far fetched case for allowing `struct` specialization like @ari... | I-slow,T-libs-api,A-specialization,C-feature-accepted,I-heavy,A-layout,A-zst | medium | Major |
267,411,018 | TypeScript | Suggestion: Allow merging of a wildcard import alias with a compile-time-only type alias of the same name | For projects with a lot of types with their own sets of functions, namespacing is of course a standard technique in programming to resolve naming conflicts between the functions of those types. The problem with namespacing in TypeScript (and JavaScript, by extension) is that it introduces an object-property hierarchy t... | Suggestion,Awaiting More Feedback | low | Major |
267,425,694 | youtube-dl | Dramafever - Unable to login | ## 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
... | cant-reproduce | low | Critical |
267,442,742 | rust | likely/unlikely intrinsics fail to propagate through inline functions | [See it live](https://godbolt.org/g/WhPRDs):
```rust
#![feature(core_intrinsics)]
extern crate core;
use core::intrinsics::unlikely;
#[inline(always)]
fn test(x: bool) -> bool {
unsafe {
unlikely(x)
}
}
pub fn foo(x: u32) -> u32 {
if test(x == 0) { 1 } else { x * 2 }
}
pub fn fo... | A-LLVM,T-compiler,C-bug | low | Minor |
267,444,620 | vue | Mouse button modifiers for "v-on" should have more precise aliases | ### What problem does this feature solve?
Currently mouse button modifiers, introduced in #4866, are `left`, `middle`, `right` for `$event.button` values `0`, `1`, `2` correspondingly. But that is only correct for the "default" right-handed layout. In the left-handed mode (when the buttons are switched in the OS) the ... | feature request,has PR | low | Critical |
267,453,604 | vscode | Allow to open two distinct editors side by side in one group | VsCode has the ability to horizonatally split an editor window. When you execute `code --diff file1 file2` both files are opened side by side in a single editor window with a single header tab. A similar view is presented when you edit the VsCode settings.
This is splitting. It would be nice to be able to do this fo... | feature-request,workbench-editors | high | Critical |
267,463,356 | rust | Document arithmetic operations on Instant | Some questions that have come up about using Instants:
1. What meaning does `Instant -= Duration` have?
2. What are the preconditions on the instant and the duration, so that it does not panic or cause arithmetic overflow assertions? One user noticed that `instant -= duration` can trip this assertion (specifically ... | C-enhancement,P-medium,T-libs-api,A-time | low | Minor |
267,476,594 | angular | Sorting an array displayed with ngForOf applies void animation state to some elements | ## 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... | type: bug/fix,area: animations,freq2: medium,P3 | low | Critical |
267,502,957 | neovim | VimL: string(): E724 with obj.func = obj.func | ```vim
let obj = {}
function obj.func()
endfunction
let obj.func = obj.func
echom string(obj)
```
Throws, but still displays:
```
E724: unable to correctly dump variable with self-referencing container
{'func': function('31', {E724@0})}
```
`let obj.func = get(ob... | vimscript,compatibility | low | Major |
267,507,547 | godot | Issue with flipping 2D characters (non uniform scaling) | Hello, so I wanted to try out 3.0 and began porting a game prototype I had in godot 2.1.4 and got a ridiculous "bug?"

This was working fine in godot 2.1.4. Flipping the main node of the character... | discussion,topic:physics | medium | Critical |
267,515,208 | opencv | Build issue with VS2017 and Cuda 9.0 | ##### System information
- OpenCV => 3.3 main branch snapshot
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 2017
CMake config output:
```
found Intel IPP (ICV version): 2017.0.3 [2017.0.3]
at: C:/Users/C/Documents/OpenCV/opencv-master/build/3rdparty/ippicv/ippicv_win
found Inte... | bug,category: build/install,category: gpu/cuda (contrib) | low | Critical |
267,516,056 | rust | Unnecessary compares and branches in asm output | https://godbolt.org/g/62GNZf
```rust
pub fn f1(v: &mut Vec<f32>) {
v.clear();
}
pub fn f2(v: &mut Vec<f32>) {
unsafe { v.set_len(0); }
}
```
```asm
example::f1:
push rbp
mov rbp, rsp
cmp qword ptr [rdi + 16], 0
je .LBB0_2
mov qword ptr [rdi + 16], 0
.LBB0_2:
pop rbp
ret
example:... | I-slow,C-enhancement,C-optimization | low | Minor |
267,518,454 | go | cmd/link: optimize init code, make it generate less asm code and make binary smaller and faster | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go version go1.9 darwin/amd64
### Does this issue reproduce with the latest release?
yes
### What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
G... | Suggested,NeedsInvestigation,compiler/runtime | low | Critical |
267,536,684 | rust | Inference worse in method signature using associated type than with new generic type parameter eq-constrained to the associated type | With this signature
```rust
fn try_fold<F, T: Try>(self, init: T::Ok, mut f: F) -> T where
Self: Sized, F: FnMut(T::Ok, Self::Item) -> T
```
This code
```rust
let a = [1, 2, 3];
let sum = a.iter().try_fold(0i8, |acc, &x| acc.checked_add(x));
```
Gets `error[E0619]: the type of this value m... | C-enhancement,A-associated-items,A-inference,T-types | low | Critical |
267,560,855 | opencv | Using WINDOW_OPENGL on QT window (MacOS) causes WINDOW_KEEPRATIO to not work | ##### System information (version)
- OpenCV => 3.3.0
- Operating System / Platform => MacOS 10.12.6
- Compiler => XCode 9.0.0.9000038
[Complete build information](https://drive.google.com/open?id=0B7qnSeyFcPCPbXBicERtQ242RVk)
##### Detailed description
When using `cv2.namedWindow` `WINDOW_KEEPRATIO` was wor... | feature,category: highgui-gui | low | Minor |
267,572,944 | kubernetes | [Feature Request] Support disk quota for docker runtime | As docker already support `docker run --storage-opt size=1G xxx` such way to limit container disk usage, it would be better if k8s introduced this feature.
On the other hand, it also would be OK if k8s support pass `--storage-opt` in `containers` spec.
Thanks. | area/reliability,sig/storage,sig/node,kind/feature,lifecycle/frozen,needs-triage | medium | Critical |
267,593,482 | angular | Can't pass parameters in template to animation | I have written a small animation which doesn't do much
my-animations.ts
```
export const leavingTowardsTop =
trigger('leavingTowardsTop', [
transition(':leave', [
style({position: 'relative'}),
animate("250ms ease-in", keyframes([
style({top: 0}),
... | type: bug/fix,area: animations,freq1: low,P4 | medium | Critical |
267,625,496 | opencv | calibrateCamera fails for random-pattern input and fix focal length aspect ratio | OpenCV 3.3dev, Windows 10 x64, Visual Studio 2017
Problem:
`calibrateCamera` computes bad instrinsics and extrinsics when used with object and image point generated from random-pattern input, and fix focal length aspect ratio (CALIB_FIX_ASPECT_RATIO) flag.
Details:
`random_pattern_calibration.cpp` sample code i... | category: calib3d | low | Minor |
267,660,561 | go | proposal: os: add a package to atomically create or replace a file | I propose adding a package to atomically create or replace a file to the golang.org/x/ namespace.
Moving the required logic into a Go package slightly reduces code length and duplication across programs, but more importantly documents the intricacies of this pattern in a central place.
An implementation of such a... | Proposal | medium | Critical |
267,671,251 | go | cmd/compile: generate correct DW_AT_external flag |
The current (1.9) Go compiler emits DWARF records for subprograms and variables that contain the "DW_AT_external" attribute, a flag which DWARF defines as:
_If the name of the subroutine described by an entry with the tag ... is visible
outside of its containing compilation unit, that entry has a DW_AT_exter... | NeedsFix,Debugging,compiler/runtime | low | Critical |
267,735,421 | angular | Support lazy-loaded event plugins | Currently all event plugins must be loaded at bootstrap. This can be an issue with lazy-loading, when only some subset of the application would need a certain plugin to be loaded. | feature,area: core | low | Major |
267,776,259 | vscode | Support envfile for tasks.json | The node and Go debuggers both support specifying an env file for environment variables instead of the `env` hash. It would be great if we could use the same file in tasks.json to have a single source of truth that can also be used by non-vscode scripts | feature-request,tasks | high | Critical |
267,780,047 | rust | Rustdoc doesn't show re-exports randomly | Some re-exports seem to not be shown in the rustc output. This is especially evident in the [amethyst](https://www.amethyst.rs/) crate.
Examples:
`amethyst_core::transform::bundle::TransformBundle` is re-exported as:
- `amethyst_core::transform::TransformBundle`
- `amethyst_core::TransformBundle`
- `amet... | T-rustdoc,C-bug | low | Minor |
267,819,348 | flutter | Merge custom TextStyle with Theme.of by default across all material widgets | A number of our widgets take `TextStyle` to allow developers customize the look of text. For example, `InputDecoration` takes `labelStyle`, `helperStyle`, `hintStyle`, etc. It is desirable that the least path of resistance for developers using these options lead to reasonable results.
Currently we expect that the de... | framework,f: material design,c: API break,c: proposal,P2,team-design,triaged-design | low | Critical |
267,866,855 | angular | HttpClientXsrfModule breaks compatibility with HttpModule by not handling GET requests | <!--
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>
[x] Regression (a behavior that used to work and stopp... | feature,freq3: high,area: common/http,state: needs eng input,type: use-case,design complexity: low-hanging,P4,feature: under consideration | medium | Critical |
267,887,341 | vue | Functional components data merging util | ### What problem does this feature solve?
Hi! Components have the extend feature, but there is nothing similar for functional components. The problem and the solution is well explained at https://github.com/alexsasharegan/vue-functional-data-merge and while that works fine and I am very grateful to the author, I would... | feature request | low | Major |
267,902,244 | react | RFC: Plan for custom element attributes/properties in React 19 | This is meant to address #7249. The doc outlines the pros and cons of various approaches React could use to handle attributes and properties on custom elements.
# TOC/Summary
- Background
- Proposals
* Option 1: Only set properties
+ Pros
- Easy to understand/implement
- Avoids conflict wit... | Component: DOM,Type: Discussion | high | Minor |
267,903,960 | go | x/mobile: exp/sprite lacks point -> sprite mapping function? | ### What version of Go are you using (`go version`)?
1.9
### What did you do?
Played with the exp/sprite package
### What did you expect to see?
A mechanism for taking a point (e.g., from touch.Event) and identifying a sprite or list of sprites which contain that point.
### What did you see instead?
... | mobile | low | Minor |
267,914,135 | TypeScript | HTMLCollection should be string indexable | <!-- BUGS: Please use this template. -->
According to [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLCollection), HTMLCollection should be string indexable:
> HTMLCollection also exposes its members directly as properties by both name and index. HTML IDs may contain : and . as valid characters, which woul... | Suggestion,Domain: lib.d.ts,Awaiting More Feedback | low | Critical |
267,923,538 | opencv | cv::cuda::stream Lag | <!--
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... | priority: low,category: gpu/cuda (contrib),RFC | low | Critical |
267,927,231 | neovim | dynamic --headless, nvim_ui_builtin() | I would like to request a vimscript function or api function that should negate the effect of the `--headless` command line switch. Lets call it `nvim_launch_builtin_tui()` for now. I imagine something like this:
```vim
if My_condition()
call nvim_launch_builtin_tui()
" now it looks as if we did start nvim with... | enhancement,ui,tui,ui-extensibility,remote | low | Minor |
267,947,353 | create-react-app | Add preload to script and link tags in production builds | I want to preload styles and main script. But the current config generates the .html without preload support. So is there any way to make that happens? | contributions: up for grabs!,tag: enhancement,difficulty: medium | medium | Critical |
267,963,512 | angular | NoopAnimationsModule animation callbacks NOT in right order | <!--
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,P4 | low | Critical |
267,974,919 | kubernetes | 100th percentile of e2e latency metrics are always zero | /kind bug
**What happened**:
```
Oct 24 10:01:56.171: INFO: Top latency metric: {Resource:pods Subresource: Verb:LIST Scope:namespace Latency:{Perc50:8.089ms Perc90:16.1ms Perc99:65.268ms Perc100:0s} Count:225}
Oct 24 10:01:56.171: INFO: Top latency metric: {Resource:pods Subresource: Verb:DELETE Scope:namespac... | kind/bug,sig/scalability,lifecycle/frozen | low | Critical |
267,977,259 | vscode | Have Shift+Tab remove whitespace within a line | Extracted from https://github.com/Microsoft/vscode/issues/32280#issuecomment-333843440
From @martinsuchan
---
Shift+Tab does not outdent. Tested in *.ps1 files. No idea if this has worked in previous versions, just noticed it now.
Edit it works when I'm on the start of the line, but not in between strings.... | feature-request,editor-core | medium | Major |
268,014,467 | opencv | imwrite/imencode fails with image higher than 8192 pixels width JP2 (JPEG 2000) | When compressing an image higher than 8192 pixels (by any width) the function imwrite generates an access violation (while using JP2 (JPEG 2000) encoding).
First-chance exception at 0x000007FED04A97A8 (opencv_imgcodecs300.dll) in FTIImagesHelpers_TestUnit-x64.exe: 0xC0000005: Access violation writing location 0x0000... | bug,priority: low,category: imgcodecs | low | Minor |
268,063,394 | vue | TypeScript: add Props type to component constructor | ### What problem does this feature solve?
It would be useful if we can infer Props type from component (`ExtendedVue`).
For example, we can write type safe wrapper of `CreateElement` with it (or improve interface of `CreateElement` directly).
```typescript
function renderComponent<Props>(
h: CreateElem... | improvement,typescript | low | Critical |
268,102,850 | go | os: Add example showing how to read data from stdin | A pretty common task, especially for new programmers, is to ask the user to type in some value at the command line and then have the program act on it. (think "interactive maze game", "determine if word is palindrome", etc). It would be nice if we had an example in the `os` package showing how to do this. | Documentation,help wanted,NeedsInvestigation | low | Minor |
268,116,773 | rust | Tails calls are not being emitted as such | The following rust code should get tail calls:
```rust
pub fn moo() -> String {
goo()
}
#[inline(never)]
pub fn goo() -> String {
"https://".to_string()
}
```
Instead we get:
```assembly
example::moo:
push rbp
mov rbp, rsp
push rbx
push rax
... | A-LLVM,T-compiler,C-bug | low | Minor |
268,164,854 | kubernetes | Increase test coverage for HA failure modes | Issues such as #47131 suggest our test coverage of failure modes for HA kubernetes configurations is insufficient.
This is a placeholder issue to review our existing test coverage, identify our most critical blind spots and propose a set of changes to improve our test coverage of HA failure modes.
The etcd team h... | area/test,kind/cleanup,sig/api-machinery,sig/cluster-lifecycle,kind/feature,lifecycle/frozen | medium | Critical |
268,182,397 | rust | Compilation Error when Mixing Line and Block comment | I have written a [small program](https://play.rust-lang.org/?gist=fb8ae0872ee993a786443f3a9900a5ec&version=stable).
```rust
fn main() {
println!("Hello, one!");
//*
println!("Hello, two!");
//*/
println!("Hello, three!");
}
```
The above program compiles and runs successfully. But.
```rus... | A-diagnostics,A-parser,T-compiler | low | Critical |
268,204,145 | TypeScript | Array.prototype.filter doesn't require callback to return | I dig a bit and found out in #5850 and subsequently in #7779 the signature of filter has been changed not to return a boolean, so that people could return a truthy value in the implementation of the filter.
While I undertand the _convenience_ in terms of ease of use, this as far as I observed puts developers at risk... | Suggestion,Domain: lib.d.ts,Awaiting More Feedback | low | Critical |
268,221,520 | kubernetes | Control plane bootstrapping order AKA we need a run-level concept | ### Background:
We are adding extension mechanisms to the Kubernetes control plane, initializers and admission webhooks. If e.g. the webhooks are configured but not actually running in the cluster, then the cluster is broken until an administrator can fix it. To make it possible to avoid this situation, we're going ... | area/controller-manager,sig/api-machinery,sig/cluster-lifecycle,kind/feature,area/admin,area/admission-control,priority/important-longterm,lifecycle/frozen | low | Critical |
268,258,563 | youtube-dl | Google Play Music 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
... | geo-restricted,account-needed | low | Critical |
268,297,986 | TypeScript | No compile error for satisfying function signature of only one branch of union of two | <!-- 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 -->
<!-- Please try to reproduce the issue... | Bug | low | Critical |
268,352,388 | pytorch | DataLoader "casting" non statndard objects to lists | **The Problem:**
Currently if you implement a nonstandard collate function which, for example returns a namedtuple and set pin_memory=True the namedtuple would be "casted" to a list by the following [code](https://github.com/pytorch/pytorch/blob/23a3f78988aeeaf3ca193ec0b03fd755ddbcdd49/torch/utils/data/dataloader.py#... | module: dataloader,triaged | low | Major |
268,358,392 | vscode | Git - Support to compare with arbitrary commit instead of the current HEAD | Currently numerous places (explorer, gutters, etc.) will display changes since the last commit. I believe it would be useful to allow to show the same annotations but related to a different branch or tag. I am currently working on a large pull request and find myself constantly running `git diff master` in a console. | feature-request,git | high | Critical |
268,382,699 | nvm | nvm uninstall... doesn't | - Operating system and version:
Ubuntu 14.04.3 LTS
- `nvm debug` output:
<details>
<!-- do not delete the following blank line -->
```
nvm --version: v0.31.0
$SHELL: /bin/bash
$HOME: /home/ubuntu
$NVM_DIR: '$HOME/.nvm'
$PREFIX: ''
$NPM_CONFIG_PREFIX: ''
nvm current: v6.11.5
which node: $NVM_DIR/versi... | uninstalling,bugs,pull request wanted | low | Critical |
268,481,772 | vue | Request: add v-model.lazy for components | ### What problem does this feature solve?
v-model for components already supports .trim and .number.
Lazy modifier support for components would make it more uniform across the platform.
### What does the proposed API look like?
The only change (backwards compatible) would be to add a new property to model definit... | feature request,has PR | medium | Critical |
268,486,228 | go | x/build/cmd/coordinator: staging environment doesn’t run current version | When running coordinator on the `go-dashboard-dev` project (our staging environment), it panics:
```
2017/10/25 17:24:24 Running in prod mode
panic: unknown builder "windows-386-gce"
goroutine 1 [running]:
main.stagingClusterBuilders(0x8)
/go/src/golang.org/x/build/cmd/coordinator/coordinator.go:396 +0x527
ma... | Builders | low | Minor |
268,495,799 | go | cmd/compile: escape analysis loopdepth should reset when blocks end | Compiling the package below with compile -m shows that `new(int)` escapes to heap:
package p
func g() bool
//go:noescape
func h(*int)
func f() {
var p *int
if g() {
x:
goto x
} else {
p = new(i... | NeedsInvestigation,compiler/runtime | low | Major |
268,583,775 | go | cmd/dist: feature request: control over maximum number of CPUs used during build and test | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go version
go version devel +a31e0a4aac Sat Oct 21 11:32:53 2017 +0000 darwin/amd64
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor ... | NeedsInvestigation | low | Critical |
268,594,175 | rust | Specialization: cannot specialize an impl of a local trait when the default impl is a blanket impl bounded by a non-local trait | Found this in the Chucklefish AMA thread, [in the subthread](https://www.reddit.com/r/rust/comments/78bowa/hey_this_is_kyren_from_chucklefish_we_make_and/dow4br2/?context=3) about working around the lack of `Ord` on floats.
This code compiles:
```rust
#![feature(specialization)]
trait Foo { fn foo(&self); }
... | T-compiler,A-specialization,C-feature-request,F-specialization | low | Critical |
268,616,696 | rust | ABI code generates oversize loads when returning with a cast | ## Meta
```
$ rustc --version
rustc 1.22.0-nightly (185cc5f26 2017-10-02)
```
## STR
```Rust
#![crate_type="rlib"]
#[no_mangle]
pub extern "C" fn foo(x: &(i8, i8, i8)) -> (i8, i8, i8) {
*x
}
```
target is x86_64-unknown-linux-gnu
## Expected Result
Code generated should not have UB
#... | I-crash,A-LLVM,A-codegen,P-medium,T-compiler,C-bug | low | Major |
268,663,623 | go | encoding/base64: make encoding/base64.init() smaller and faster | ### What version of Go are you using (`go version`)?
go version go1.9 darwin/amd64
### Does this issue reproduce with the latest release?
yes
### What operating system and processor architecture are you using (`go env`)?
GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
... | Performance,NeedsDecision | low | Critical |
268,694,251 | ant-design | Calendar Day View (extend dateCellRender) | ### What problem does this feature solve?
I think it would be helpful to also have a day view for the calendar, not just month or year, so we can see and manipulate the data from dataCellRender.
I'm trying to build a calendar where users can add items/events per hour(s) on a specific day or on multiple days (repeat... | 🗣 Discussion,💡 Feature Request,Inactive,IssueHuntFest | medium | Critical |
268,706,991 | vue | <input> rerenders while changes affects only sibling elements | ### Version
2.5.2
### Reproduction link
[https://codepen.io/anon/pen/OxKqbL?editors=1111](https://codepen.io/anon/pen/OxKqbL?editors=1111)
### Steps to reproduce
Please open codepen example and type something into input
### What is expected?
Input should not lose focus
### What is actually happening?
i... | bug,has workaround | medium | Major |
268,762,895 | react | React should recognize the `valueAsDate` property on DOM elements | The `valueAsDate` property on the ES6 definition of `HTMLInputElement` is not yet recognized by React. It should be, though.
The `valueAsDate` property relieves the pain of having to deal with both browsers that support HTML5 date inputs and those who don't; the former require the `value` property to be of the form ... | Type: Feature Request,Component: DOM | medium | Critical |
268,799,949 | three.js | Feature Suggestion : Sphere and Cylinder impostors shaders | Hi everyone,
I needed to be able to generate a very large number of spheres or cylinders. To do so, I've implemented a sphere impostor and a cylinder impostor shaders. Those shaders are generating pixel perfect objects with a reduced cost in memory.
This work has been developped thanks to this [scientific publica... | Suggestion | low | Critical |
268,892,697 | TypeScript | Use before declaration errors when using let statements within a switch case | **TypeScript Version:** 2.5.3
**Code**
```ts
function test(value) {
switch (value) {
case 1:
let foo = 10;
break;
case 2:
foo = 20; // Runtime ReferenceError: foo is not defined
break;
default:
}
}
test(2);
tsc --tar... | Bug | low | Critical |
268,954,673 | flutter | Add warning comment to Debug/Release.xcconfig files | We should add some warning boilerplate to the `Debug.xcconfig` and `Release.xcconfig` templates above the `#include "Generated.xcconfig"`. Something along the lines of:
```
// Generated.xcconfig is critical for Flutter builds and must be #included in all Flutter projects
#include "Generated.xcconfig"
``` | platform-ios,tool,t: xcode,P3,team-ios,triaged-ios | low | Critical |
268,955,317 | flutter | Flutter iOS builds should verify that Generated.xcconfig is included in the configuration | The `FLUTTER_*` variables defined in `Generated.xcconfig` are critical to successfully building for iOS. These are used in at least two key places:
1. To locate the the `xcode_backend.sh` file in the build run-script phase.
2. Within of `xcode_backend.sh`, for the various Flutter build settings.
We should detect t... | platform-ios,tool,t: xcode,P3,team-ios,triaged-ios | low | Minor |
268,956,081 | flutter | Verify that xcode_backend.sh snapshot build phase is in Xcode project | We should verify that the two xcode_backend.sh run-script build phases are present in the Xcode project when building for iOS.
There are two phases where we use this script:
1. Dart snapshotting phase: `xcode_backend.sh build`
2. Framework architecture-thinning phase: `xcode_backend.sh thin`
For the time being,... | platform-ios,tool,t: xcode,P3,team-ios,triaged-ios | low | Minor |
268,957,499 | flutter | Emit an actionable error message if FLUTTER_* not defined in Xcode run-script phases | If `Generated.xcconfig` has not been `#include`d in the Xcode project configuration, `FLUTTER_ROOT` is undefined and Xcode will be unable to locate `xcode_backend.sh`. In the `flutter create` project template, we should include something similar to the following boilerplate above the execution of the `xcode_backend.sh`... | platform-ios,tool,t: xcode,P3,team-ios,triaged-ios | low | Critical |
268,986,747 | go | cmd/link: cannot cross compile a linux plugin on macOS | ### What version of Go are you using (`go version`)?
`go version go1.9.2 darwin/amd64`
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
macOS Sierra 10.12.6 with latest Xcode 9.0.1 and Command Line Tools installed.
```
... | Documentation,help wanted,NeedsFix,compiler/runtime | medium | Critical |
269,020,252 | rust | std::process::Command hangs if piped stdout buffer fills | There's an issue on Windows when using `Stdio::piped()` for `stdout`. If the child process writes too many bytes to stdout, it appears to get permanently blocked. A minimal test case (echo 2049 blank lines to cmd) is:
```rust
fn main() {
::std::process::Command::new("cmd")
.args(&["/c", "for /l %i i... | E-help-wanted,C-bug,T-libs,A-process | low | Major |
269,124,639 | go | go/types: some facts are missing after an error | The type checker `go/types` records various facts about well-typed trees. For example, `Uses` records the relationship between each "using" (non-defining) identifier and the object to which it refers. However, when the type checker detects certain kinds of errors, it does not attempt to record facts about the errant su... | NeedsInvestigation | low | Critical |
269,148,824 | react | createPortal: support option to stop propagation of events in React tree | **Do you want to request a *feature* or report a *bug*?**
Feature, but also a bug cause new API breaks old `unstable_rendersubtreeintocontainer`
**What is the current behavior?**
We cannot stop all events propagation from portal to its React tree ancestors. Our layers mechanism with modals/popovers completely brok... | Type: Feature Request,Component: DOM | high | Critical |
269,149,356 | angular | [Bug] strange behaviour with error handlers and events | ## 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... | freq1: low,area: common/http,type: use-case,P4 | low | Critical |
269,152,063 | opencv | Building against OpenBLAS complains about missing lapacke.h | ##### System information (version)
- OpenCV => 3.3.1
- Operating System / Platform => Ubuntu 16.04. (xenial)
##### Detailed description
It is not possible to build openCV against libOpenBLAS unless one also installs an additional LAPACK implementation that includes the ```lapacke.h``` header, e.g. ```liblapacke... | category: build/install,category: 3rdparty | medium | Critical |
269,173,839 | ant-design | Add support for css grid layout | ### What problem does this feature solve?
CSS Grid Layout is now supported in every modern browser.
Usage of Grid Layout will allow for more flexibility and ease of use than flexbox.
### What does the proposed API look like?
grid layput can be achieved without modifying the current api
<!-- generated by ant-de... | 🗣 Discussion,💡 Feature Request,Inactive,IssueHuntFest | low | Major |
269,183,034 | puppeteer | Support response interception | As of today, we have "request interception" that allows puppeteer to intercept and amend requests before they are sent to the server.
Similarly to this, it would be really handy to have "Response interception" that would allow to intercept and amend responses from server before they are delivered to the browser. | feature,chromium | high | Critical |
269,197,298 | kubernetes | Admission webhook configuration API should report if the configuration is honored | The webhook [api](https://github.com/kubernetes/kubernetes/blob/v1.9.0-alpha.1/staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go#L152) doesn't tell if a webhook configuration is honored by the kube-apiserver or the extension apiservers. We should support it.
The problem is less critical for initializers... | sig/api-machinery,kind/feature,area/admission-control,priority/important-longterm,lifecycle/frozen | medium | Major |
269,217,388 | thefuck | Doesn't handle quotes and arguments with spaces well | v3.24 using Python 3.5.3, on Ubuntu 17.04, GNU bash 4.4.7(1)-release.
Using an alias, but with no alias is indifferent:
$ theheck "catt 'My File'"
cat My File [enter/↑/↓/ctrl+c]
$ theheck "catt My\ File"
cat My File [enter/↑/↓/ctrl+c]
$ theheck "ehco -e '\n'"
echo -e \n [e... | help wanted,hacktoberfest,HackIllinois | low | Critical |
269,256,024 | TypeScript | Try enforcing contextual type of array literal elements | Part of #19236
**Code**
```ts
const s1: string[] = ["x", 3, null as any];
const s2: string[] = ["x", 3];
```
**Expected behavior:**
* `s1` should be an error
* `s2` should have an error span on `3`
**Actual behavior:**
* `s1` is not an error
* `s2` has an error span on `s2`, which makes it impossibl... | Suggestion,Breaking Change,Committed | low | Critical |
269,280,994 | godot | Warn on connected functions without correct argument count | **Operating system or device, Godot version, GPU Model and driver (if graphics related):**
MacOS, Godot 3.0 alpha
**Issue description:**
<!-- What happened, and what was expected. -->
Connecting a signal to a function that doesn't have the correct number of arguments means that the function is never called (and I... | enhancement,topic:core,usability | low | Critical |
Subsets and Splits
GitHub Issues Containing Next.js References
Filters training data to find examples mentioning "next.js", providing basic keyword search capability but offering limited analytical value beyond simple retrieval.