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 |
|---|---|---|---|---|---|---|
309,118,332 | neovim | :substitute and preserve case of replaced text | FEATURE REQUEST:
New flag for the substitute command (:substitute / :s) to
perform search and replace while keeping the case.
Hello,
in Vim/NeoVim/MacVim/gVim there is currently no built-in solution
to run search-and-replace in a way that the replacement text
has the same lower and upper case letters as the... | enhancement,needs:vim-patch | medium | Major |
309,135,932 | rust | Confusing error message when returning impl Trait with multiple lifetimes | Given
```rust
use std::fmt::Debug;
fn foobar<'a, 'b>(foo: &'a str, bar: &'b str) -> impl Debug + 'a + 'b {
(foo, bar)
}
fn main() {
let foo = "hello".to_owned();
let bar = "world".to_owned();
println!("{:?}", foobar(&foo, &bar));
}
```
you currently (`rustc 1.26.0-nightly (188e693b3 ... | C-enhancement,A-diagnostics,A-lifetimes,T-compiler,A-impl-trait | low | Critical |
309,197,578 | godot | RichTextLabel::_process_line error makes Godot unresponsive during One-Click Deploy | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
<!-- Specify commit hash if non-official. -->
3.02
**Issue description:**
<!-- What happened, and what was expected. -->
I have changed nothing in ... | bug,topic:editor,usability,high priority | medium | Critical |
309,210,382 | rust | Tracking issue for generalized two-phase borrows | This can be sort-of considered a tracking issue for the implementation of rust-lang/rfcs#2025
Right now, two phase borrow support can only handle the very simple case where there is exactly one activation point. In particular, this means we can't expose two-phase borrows to user code since the following wouldn't wor... | C-enhancement,P-medium,A-NLL,C-tracking-issue,NLL-complete,S-tracking-design-concerns,T-types | low | Major |
309,251,903 | vscode | Issue reporter - disable extensions should be a button and not a link | Testing #46595
It is great that you can disable all extensions from the issue reporter. However, I got tricked by the fact that the action is triggered by a link.

I was expecting that the link points me ... | feature-request,issue-reporter | low | Minor |
309,270,196 | rust | Reject bounds in type aliases with edition 2024 | I propose to make the `type_alias_bounds` lint deny-by-default with the next edition. See <https://github.com/rust-lang/rust/issues/21903> for more information on the issue being linted, and https://github.com/rust-lang/rust/pull/48326 and https://github.com/rust-lang/rust/pull/48909 for the PRs implementing the lint.
... | A-type-system,C-enhancement,A-trait-system,T-lang,WG-epoch,T-types | medium | Critical |
309,319,897 | You-Dont-Know-JS | Async & Performance Chapter 3: Promises - ReferenceError instead of TypeError | https://github.com/iDanbo/You-Dont-Know-JS/blob/master/async%20%26%20performance/ch3.md#swallowing-any-errorsexceptions
```javascript
var p = new Promise( function(resolve,reject){
resolve( 42 );
} );
p.then(
function fulfilled(msg){
foo.bar();
console.log( msg ); // never gets here :(
},
function... | for second edition | medium | Critical |
309,357,514 | rust | Try different Deref/PartialEq orderings before erroring | I just got this error:
```rust
djc@djc-mbp cargo $ cargo check
Compiling cargo v0.27.0 (file:///Users/djc/src/cargo)
error[E0308]: mismatched types
--> src/cargo/core/summary.rs:150:58
|
150 | dependencies.iter().find(|d| d.name() == dep_name)
| ... | C-enhancement,A-diagnostics,T-compiler,A-inference,D-confusing | low | Critical |
309,360,955 | youtube-dl | Unable to extract OpenGraph title | ## 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 | low | Critical |
309,406,293 | puppeteer | Headless PDF printing inconsistent page width and height | I'm currently encountering some potential rounding issues with the PDF page size where I have to use an additional few 10ths of a millimetre on the width and height for the pages, the `@page`s declaration in my CSS, and also the CSS height of my `section`s to render (mostly) correctly.
Even after adding the extra mm... | bug,upstream,chromium,confirmed | high | Critical |
309,428,051 | pytorch | Repeated 'python setup.py install' with clang leads to -lcpuinfo not found | Steps to reproduce:
```
docker run -it registry.pytorch.org/pytorch/pytorch-linux-xenial-py3-clang5-asan:169 /bin/bash
cd ~
git clone https://github.com/pytorch/pytorch
cd pytorch
CC=clang CXX=clang++ LDSHARED='clang --shared' LDFLAGS=-stdlib=libstdc++ NO_CUDA=1 python setup.py build_deps develop
CC=clang CXX=... | module: build,triaged | low | Critical |
309,466,162 | youtube-dl | "OSError: Failed to write string" // Bilibili // Windows 7 x64 // Python 3.6.1 | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2018.03.26.1**
- [x] I have at least skimmed through the [README](https://github.com/rg3/youtube-dl/blob/master/README.md), **most notably** the [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS](https://github.com/rg3/youtube-dl#bugs) section... | cant-reproduce | low | Critical |
309,525,270 | neovim | writedelay cannot be canceled | Using `:set writedelay=10` and then calling `:redraw!` cannot be canceled using `Ctrl-c`: Neovim will stop the delayed redrawing, but appears to still apply the delays, i.e. it takes a while until the screen is updated and it accepts input again.
Vim behaves better in this regard.
NVIM v0.2.3-901-ga9c94f7bb | bug,ui | low | Major |
309,536,934 | pytorch | [feature request] DC-ASGD (Delay Compensated Asynchronous Stochastic Gradient Descent) | DC-ASGD is an optimizer described in this [paper](https://arxiv.org/abs/1609.08326)
Frameworks like [MXNET](https://mxnet.apache.org/api/python/optimization/optimization.html#mxnet.optimizer.DCASGD) have the feature, are there plans to implement this feature into PyTorch?
If approved by community, I would like t... | oncall: distributed,module: optimizer,triaged | low | Major |
309,537,688 | go | cmd/compile: opt: reuse interface payload during interface conversion | The current representation of interface values is a two-word (type, data) pair where data is always a reference; multiword values such as strings must be copied to a hidden variable whose address is saved in the data field. The compiler is currently smart about avoiding unnecessary allocations in some cases, such as t... | Performance,compiler/runtime | low | Major |
309,580,132 | flutter | Friction adding swift plugin to objective-c project | `flutter create` a non-swift project
In `pubspec.yaml`, add a swift plugin such as `flutter_iap`.
1. `flutter run` warns about `use_frameworks!` from `pod install`. Easy to resolve so far.
2. Building gives `The “Swift Language Version” (SWIFT_VERSION) build setting must be set to a supported value for targets w... | platform-ios,tool,a: first hour,t: xcode,P2,a: plugins,team-ios,triaged-ios | low | Critical |
309,633,280 | youtube-dl | [ninateka] "unsupported" error. | Hello, I am using windows version 2018.03.26.
This site http://ninateka.pl/ return "unsupported" error.
**url examples:**
http://ninateka.pl/film/2007-macbeth
http://ninateka.pl/film/swiadkowie-albo-nasza-mala-stabilizacja-jerzy-jarocki
**Below one feedback:**
youtube-dl -v "http://ninateka.pl/film/2007-macbe... | site-support-request | low | Critical |
309,675,038 | react-native | zIndex in a List | <!--
We use GitHub Issues exclusively for tracking bugs in React Native.
Questions? Visit http://facebook.github.io/react-native/help.html
If this issue is about documentation or the website, please file it at:
https://github.com/facebook/react-native-website/issues/new
-->
- [x] I have reviewed the [do... | Help Wanted :octocat:,Issue: Author Provided Repro,Component: FlatList,Bug | medium | Critical |
309,700,531 | youtube-dl | Add support for orfium.com | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2018.03.26.1**
### Before submitting an *issue* make sure you have:
- [x] At least skimmed through the [README](https://github.com/rg3/youtube-dl/blob/master/README.md), **most notably** the [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS... | site-support-request | low | Critical |
309,701,010 | vue | root opts attributes support | ### What problem does this feature solve?
The desired opts feature should offer the possibility to provide data from the markup (mostly from backend) to the vue instance.
So you can pass options/params from outside the vue scope. Example use case:
https://forum.vuejs.org/t/passing-props-to-root-instances-in-2-0/244
... | feature request | low | Major |
309,716,937 | pytorch | Well documented, safe method to deserialize model parameters from untrusted sources | Hi, I propose to add a safe way to store/load model weights (safe = can safely use weights downloaded from the internet). My vision:
- a serialization mechanism that is currently officially supported uses pickle (protocol=2) to store/load weights. Usage described [here](http://pytorch.org/docs/master/notes/serializati... | feature,module: pickle,module: serialization,triaged,onnx-triaged,topic: security | low | Critical |
309,717,121 | scrcpy | Request: even on split window mode, changing orientation changes the window size | Steps:
1. Have 2 windows on Windows OS, side by side, using the split window mode:
https://www.digitaltrends.com/computing/how-to-split-your-screen-in-windows-10/
One of Chrome (for example), and one of this tool.
2. On the device, change its orientation.
There is an issue with this:
The window of the tool ex... | feature request,window | low | Minor |
309,852,775 | TypeScript | Support max-line-length in organize imports | Referenced in https://github.com/Microsoft/TypeScript/issues/22974
> By the way, I ran "organize imports" on about 800 files. Works really well other than this problem and it puts imports that were previously on multiple lines onto one... so that will break my linting rule for "max-line-length". Luckily it's easy to... | Suggestion,Domain: Formatter,Domain: Organize Imports,Experience Enhancement | high | Critical |
309,858,329 | angular | Animations jump around during router-outlet transitions | <!--
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,freq1: low,P4 | low | Critical |
309,928,006 | flutter | Add a performance watchdog / diagnosis tool | Some sort of low-invasiveness profile runtime tool like https://developers.google.com/speed/pagespeed/insights/ that can print hints to console or to a formatted file.
Example outputs:
- Widget subtree descendent of widget X exceeded 5ms during build time. `build()` call site: Y. Widget subtree: Z.
- The same ... | c: new feature,tool,framework,c: performance,P2,team-framework,triaged-framework | low | Major |
310,044,981 | flutter | Document how centerSlice works, and how to use .9.png images with Flutter, with samples | ## Steps to Reproduce
I'm trying to use a .nine picture:

The Code:
```dart
return new Stack(children: <Widget>[
new Positioned(
child: new Image.asset("images/label_bg_left_9.png",
... | c: crash,framework,d: api docs,customer: alibaba,a: images,P2,team-framework,triaged-framework | low | Critical |
310,057,436 | rust | Salvage clone shim cleanup and carry it to completion | Cc @rust-lang/wg-codegen @rust-lang/wg-compiler-performance
#48063 | C-cleanup,A-codegen,I-compiletime,T-compiler,A-MIR,WG-llvm | low | Major |
310,061,927 | rust | Add compiler-internal lints | There are various "patterns" we don't want in the compiler out of one reason or another. I'm using this issue to collect them and create lints for detecting those patterns. The lints will only be available while building the compiler via a -Z flag. The flag will be enabled by the bootstrap script, so we don't have to w... | A-lints,E-mentor,T-compiler,E-help-wanted,C-tracking-issue,A-contributor-roadblock,S-tracking-impl-incomplete | medium | Major |
310,073,046 | rust | doctests marked with 'no_run' permit ICEs | irc discussion: https://botbot.me/mozilla/rust-docs/2018-03-30/?msg=98430464&page=1
run this example: https://doc.rust-lang.org/nightly/std/fs/fn.read_string.html
at the time of writing it ICEs, but doctests don't catch it because it's marked `no_run` | T-rustdoc,C-bug,A-doctests | low | Major |
310,097,853 | pytorch | Test suite should test implementations | This issue was prompted by #6132. To explain the situation, let us consider the situation of convolution.
Today, we have a number of tests for convolution. The majority of these tests go through the "official" convolution interface, which is what all of our users use. However, inside the implementation of convolutio... | module: tests,triaged | low | Minor |
310,106,354 | pytorch | [feature request] SIGNUM an optimizer that takes the sign of gradient or momentum. | The SIGNUM is an optimizer that takes the sign of gradient or momentum.
Please see the detailed description of SIGNUM in the original paper at: https://arxiv.org/abs/1802.04434
I would like to start the process of a feature request if accepted by the community.And I am willing to create a pull request and implement... | module: optimizer,triaged | low | Minor |
310,116,420 | rust | macros can observe raw identifier state [discuss] | In https://github.com/rust-lang/rust/pull/48942, @Lymia landed raw identifiers; "equality" in this implementation includes observing the "raw" state. Therefore, macros can observe if `r#foo` was used or not:
```rust
#![feature(raw_identifiers)]
macro_rules! foo {
(a) => {
1
};
(r#a)... | A-macros,T-compiler,C-feature-request,WG-epoch | low | Major |
310,228,399 | rust | Error message gives a (depreciated/unimplemented) -Z flag | Currently, when a macro fails, it gives this error:
```
note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
```
However, when running this:
```
cargo run -Z external-macro-backtrace
```
This error is given:
```
e... | C-enhancement,A-diagnostics,T-compiler,T-cargo,D-confusing | low | Critical |
310,235,684 | rust | Suboptimal inlining decisions | I suspect this can happen in more cases, but here is how I observed this:
```rust
pub fn foo() -> Box<[u8]> {
vec![0].into_boxed_slice()
}
```
This compiles to:
```asm
sub rsp, 56
lea rdx, [rsp + 8]
mov edi, 1
mov esi, 1
call __rust_alloc@PLT
test rax, rax
je .LBB2_1
mov byte ptr [r... | C-enhancement,A-codegen,T-compiler,WG-llvm | low | Major |
310,261,178 | nvm | nvm says 'no .nvmrc file found' when the problem is that the version inside of said .nvmrc is not installed. |
- Operating system and version:
CentOS 7, nvm latest version
- `nvm debug` output:
<details>
<!-- do not delete the following blank line -->
```sh
$SHELL: /bin/bash
$HOME: /home/kenny
$NVM_DIR: '$HOME/.nvm'
$PREFIX: ''
$NPM_CONFIG_PREFIX: ''
$NVM_NODEJS_ORG_MIRROR: ''
$NVM_IOJS_ORG_MIRROR: ''
shell ve... | bugs,pull request wanted | low | Critical |
310,270,274 | material-ui | Implement theme level states design tokens | Material Design provides a page: https://material.io/design/interaction/states.html#usage on how to style the different states. States are visual representations used to communicate the status of a component or an interactive element.
The components to handle:
- [x] Pagination
- [x] Select
- [x] TreeView
- [x... | umbrella | medium | Major |
310,280,733 | neovim | infercase for command mode? | I don't believe this behavior can be implemented with a plugin (though I've been wrong pretty much every time I've said that when it comes to vim), but it would be helpful to have an `infercase`-like option that would enable tab completion for command mode, but without turning off case sensitivity.
Currently, `infer... | enhancement,completion | low | Minor |
310,283,776 | rust | Incorrect error message about enum variant when trying to call a Result | Test case [(playground link)](https://play.rust-lang.org/?gist=2fdc42baa9d1920ebc04d4a253418354&version=nightly):
```rust
fn foo() -> Result<i32, i32> {
Ok(42)
}
fn main() {
foo()();
}
```
The real issue is an extra set of parentheses after `foo()`, which should produce an error because `Result<i32... | A-diagnostics,T-compiler,D-papercut | low | Critical |
310,286,430 | neovim | Add new literal arguments mode to :command | This is a suggestion for an additional command mode like `<f-args>` and `<q-args>` (let's say `<l-args>`) that would provide all arguments as-is to the command, without any interpretation or expansion and without any reserved characters requiring escaping.
The number of characters that need to be escaped while tryin... | enhancement | low | Minor |
310,287,775 | pytorch | Note about unusual stride situations in dev docs / make it easier to test for this in the library | On its face, strides are pretty simple: given strides `s`, the memory location of the indices `x` is `sum(s[i] * x[i] for i in dim)`. It's also fairly simple to say when strides are contiguous: that is when `s[i] == product(s[j] for j in range(0, i))`. And then the standard application of strides is to let you get non-... | module: docs,triaged,module: memory format | low | Minor |
310,301,676 | go | x/build/cmd/coordinator: store CL number in the query parameters | If the build completes, you get this message:
> TryBot result not found (already done, invalid, or not yet discovered from Gerrit). Check Gerrit for results.
If we stored the CL number in the URL (for example `commit=deadbeef&cl=123456`), and we couldn't find the commit number, we could assume the build is comple... | Builders | low | Minor |
310,328,167 | node | net: Don't unlink unix socket on server.close() | * **Platform**: Linux
Right now before an unix socket is closed [its file is also unlinked by libuv](https://github.com/nodejs/node/blob/master/deps/uv/src/unix/pipe.c#L125). This behavior seems to go against the [current docs](https://nodejs.org/api/net.html#net_identifying_paths_for_ipc_connections), which explici... | help wanted,net | low | Critical |
310,333,232 | godot | Particles with "one shot" enabled gets "emitting" turned off | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
[098c7ba4f9c49b472b9417819144378081996874](url)
(current master)
**Issue description:**
<!-- What happened, and what was expected. -->
When using t... | enhancement,topic:editor,confirmed,topic:particles | medium | Critical |
310,351,805 | rust | Cryptic LTO-related error message when performing `include_bytes!` on large files | When trying to include a large (> 500MiB) binary in a program, the compiler crashes with an error message relating to LTO (Link time optimization?)
I tried this code:
```rust
fn main() {
// the file below was generated with
// $ dd if=/dev/urandom of=output.dat bs=1M count=640
let v = include_bytes!("../... | A-codegen,A-diagnostics,T-compiler,C-bug | low | Critical |
310,356,892 | vue | Provide a way to define different name for prop attribute | ### What problem does this feature solve?
In most of cases, it's not really comfortable to use `initialProp` as prop name, for example, or have `normalizedProp` inside a component, which takes some passed prop and transforms it. Code looks bloated and reminds more workaround than a good solution.
Having ability to ... | feature request | medium | Critical |
310,357,627 | youtube-dl | Add Support for https://login.gci.com/ Adobe SSO | - [X] I've **verified** and **I assure** that I'm running youtube-dl **2018.03.26.1**
### Before submitting an *issue* make sure you have:
- [X] At least skimmed through the [README](https://github.com/rg3/youtube-dl/blob/master/README.md), **most notably** the [FAQ](https://github.com/rg3/youtube-dl#faq) and [BUGS... | account-needed | low | Critical |
310,376,295 | rust | The NonZero types don't tell LLVM that they're non-zero on get | Repro: https://play.rust-lang.org/?gist=0981601dda9c5800e353e31b22682bb5&version=nightly&mode=release
```rust
pub fn foo(x: std::num::NonZeroU32) -> bool {
x.get() != 0
}
```
Actual:
```llvm
%0 = icmp ne i32 %x, 0
ret i1 %0
```
Expected:
```llvm
ret i1 true
```
cc https://github.com/rust-lang/r... | A-LLVM,I-slow,C-enhancement,A-codegen,T-compiler,WG-llvm,C-optimization | medium | Critical |
310,389,589 | godot | Abrupt slide off on platform | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
<!-- Specify commit hash if non-official. -->
3.0
**OS/device including version:**
<!-- Specify GPU model and drivers if graphics-related. -->
Ubun... | enhancement,documentation,topic:physics | low | Critical |
310,438,613 | go | x/text: ianaindex returns no encoding for gb2312 | Using the `golang.org/x/text/encoding/ianaindex` package.
```
encoding, err := ianaindex.MIME.Encoding("gb2312")
fmt.Println(encoding, err) // prints <nil> <nil>
```
I believe it should be returning simplifiedchinese.HZBG2312.
cc @mpvl | NeedsFix | low | Minor |
310,593,635 | go | cmd/compile: document emitptrargsmap onebitwalktype1 calls | Perhaps I'm missing something, but this sequence of calls in emitptrargsmap looks suspect:
```go
if fn.IsMethod() {
onebitwalktype1(fn.Type.Recvs(), 0, bv)
}
if fn.Type.NumParams() > 0 {
onebitwalktype1(fn.Type.Params(), 0, bv)
}
```
If I'm reading it correctly, this will overwrite the Recvs bitmap... | Documentation,NeedsFix,compiler/runtime | low | Minor |
310,603,197 | rust | E0582 on valid HRTB code | The compiler rejects this code with E0582.
```rs
trait MyTrait
{
type T;
}
fn foo<T>(t: T)
where for<'x> &'x T: IntoIterator, for<'x> <&'x T as IntoIterator>::Item: MyTrait<T = &'x i32>
{}
```
The code is obviously valid.
| A-lifetimes,A-trait-system,A-associated-items,T-lang,T-compiler,C-bug,T-types,A-higher-ranked | low | Major |
310,612,644 | flutter | Get rid of frontend-server standalone executable, call frontend-server/compiler as in-process dart package directly. | frontend-server was built to run as standalone executable because flutter tools and engine were running on different versions of dart sdk. Few months back the change was made to run flutter tools and engine on the same dart sdk. That means that there is no need to have frontend-server as standalone process, compiler ca... | team,tool,framework,c: proposal,P3,team-framework,triaged-framework | low | Major |
310,619,142 | go | cmd/compile: eliminate empty switch cases | ```go
package p
var y int
func f(x int) {
switch x {
case 1:
case 2:
y = 1
}
}
```
This compiles to:
```
"".f STEXT nosplit size=31 args=0x8 locals=0x0
0x0000 00000 (x.go:5) TEXT "".f(SB), NOSPLIT, $0-8
0x0000 00000 (x.go:5) FUNCDATA $0, gclocals·33cdeccccebe80329f1fdbee7f5874cb(SB)
0x0... | Performance,NeedsFix,compiler/runtime | low | Minor |
310,622,651 | neovim | Memory leak in shada_read_next_item / STRING_KEY | ```
==13127==ERROR: LeakSanitizer: detected memory leaks
Direct leak of 142 byte(s) in 3 object(s) allocated from:
#0 0x558e911f89b1 in malloc (/home/user/.local/opt/neovim/bin/nvim+0x9909b1)
#1 0x558e91c269b1 in try_malloc …/Vcs/neovim/build/../src/nvim/memory.c:87:15
#2 0x558e91c26bc9 in xmalloc …/... | robustness | low | Critical |
310,651,420 | go | x/tools: document how golang.org is deployed | Agniva de Sarker and I were trying to figure out how an error in a recent godoc commit made it to golang.org. This required reverse engineering the deployment procedure for golang.org.
The instructions for tip.golang.org are (fairly) clear - there's a `cmd/tip` binary in the x/tools project with several YAML config ... | Documentation,NeedsInvestigation,Tools | low | Critical |
310,673,744 | opencv | opencv_highgui compiler error | <!--
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,priority: low,category: build/install | low | Critical |
310,777,830 | go | cmd/compile: Fannkuch11 can be speed up by ~ 30% via improving BCE | This is spin-off issue from https://github.com/golang/go/issues/20393. There in the discussion it was shown that [Fannkuch11 benchmark](https://github.com/golang/go/blob/master/test/bench/go1/fannkuch_test.go) from go1 benchmark suite runs ~30% faster with `-gcflags=-B`. A proof was also provided showing that all the b... | Performance,NeedsFix,compiler/runtime | medium | Major |
310,835,594 | youtube-dl | Downloading past first ad break on TBS/Adult Swim/other Turner sites | ## 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 | medium | Critical |
310,856,390 | electron | Rename and deprecate focusOnWebView | `focusOnWebView` is not accurately named as an API 😄
Ref: https://github.com/electron/electron/pull/12507#issuecomment-378263960
Requires some review as to what to rename it to and potentially where to move it, in particular, the difference in its effect compared to [`mainWindow.focus()`](https://github.com/ele... | enhancement :sparkles: | low | Minor |
310,868,342 | angular | Outer element animates on different timing curve from child | ## 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,P4 | low | Critical |
310,887,684 | vscode | Ctrl+Alt+Down (selecting lines) and Alt+Up (moving them) moves only 1 line | <!-- Do you have a question? Please ask it on https://stackoverflow.com/questions/tagged/vscode. -->
<!-- Use Help > Report Issue to prefill these. -->
- VSCode Version: 1.22.0-ins
- OS Version: win7x64

**What is the current behavior?**
I've been trying out the new Context API in my pr... | Type: Feature Request | medium | Critical |
310,900,516 | opencv | cv::viz::Mesh::load() does not properly load a ply file containing faces other than triangles | <!--
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: viz | low | Critical |
310,935,991 | go | cmd/go: add option to ignore local replace/exclude directives | If you have a go.mod with replace/exclude directives, those are used when building that module as the top-level target but not when used as a dependency. It might be helpful to have a command-line build flag that means "ignore those even in the top-level module" so that you can test more easily in the configuration use... | modules | low | Major |
310,939,442 | opencv | Base class like cv::Point, cv::Rect could be made easily trivially copiable in C++11, allowing optimizations | Because of C++98 compatibility, classes like cv::Point_, cv::Point3_, cv::Size_ and cv::Rect_ have an explicit copy constructor (and = operator), which copies field by field.
Using C++11 (conditional compiling I suppose) we could make these classes trivially copyable, simply defining the copy constructor and the = ope... | feature,category: core,category: build/install | low | Minor |
311,037,501 | go | proposal: crypto/tls: provide a way to access local certificate used to set up a connection | While TLS provides [ConnectionState()](https://golang.org/pkg/crypto/tls/#Conn.ConnectionState) to share some connection security info, like remote certificate (`PeerCertificates`), it lacks the info about local certificate used to set up a connection. And it's not always possible to predict local certificate used as ... | Proposal,Proposal-Crypto | low | Critical |
311,045,500 | TypeScript | Comparing constrained generic types/substitution types to conditional types | When comparing a generic type to a conditional type whose checkType is the same type, we have additional information that we are not utilizing.. for instance:
```ts
function f<T extends number>(x: T) {
var y: T extends number ? number : string;
// `T` is not assignable to `T extends number ? number : st... | Suggestion,Awaiting More Feedback | medium | Critical |
311,046,014 | pytorch | [feature request] adding a nonzero element "in-place" in sparse tensor | First mentioned here, but turns out to be non-existent.
https://github.com/pytorch/pytorch/pull/6225#pullrequestreview-108887248
This operation would simply add a new index and a new value to a sparse tensor.
cc @vincentqb @aocsa @nikitaved @pearu @mruberry | module: sparse,triaged | low | Minor |
311,082,573 | rust | New lookup functions on BTreeMap/Set | The current function `get` attempts to find an exact key match; if it fails, it returns `None`. I propose the addition of four variants:
- `get_lt` finds the greatest `(key, element)` in the map/set that is less than the given key.
- `get_lte` returns the lookup key and element in the map if present, otherwise retu... | C-enhancement,A-collections,T-libs-api | medium | Major |
311,122,175 | pytorch | [Caffe2] mobile_exporter init_net has code calling information | **The init_net file generated from the mobile_exporter function has code calling information,**
There is fragment information in my generated init_net file:
■146 "GivenTensorFill*
shape0*
values-6}■?-
{╓>-$└?R┐ File "Style_torch.py", line 186, in <module>
init_net, predict_net = mobile_exporte... | caffe2 | low | Minor |
311,143,000 | opencv | Viz3d memory leak - memory allocated for widgets never released | ##### System information (version)
- OpenCV => 3.1
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 2015
##### Detailed description
Memory allocated for widgets is never released once the event loop is triggered via spin() or spinOnce() so it is not possible to dynamically update the... | bug,category: viz | low | Minor |
311,145,977 | flutter | Document how FutureBuilder.builder shouldn't include logic beyond building widgets (e.g. don't call Navigator.push), and say where to put that logic instead | How to call Navigator.push in FutureBuilder
error log:
```
I/flutter (29158): ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═════════════════════════════════════════════
I/flutter (29158): The following assertion was thrown building FutureBuilder<Result>(dirty, state:
I/flutter (29158): _FutureBuilderState<Result>#de... | c: crash,framework,from: study,d: api docs,f: routes,customer: crowd,P2,team-framework,triaged-framework | low | Critical |
311,227,379 | vscode | [html] propose html 4 properties (cellPadding ...) | #Issue Type: <b>Bug</b>
Cell-padding and cell-spacing, valign and align attribute autocomplete not working
VS Code version: Code 1.21.1 (79b44aa704ce542d8ca4a3cc44cfca566e7720f1, 2018-03-14T14:46:47.128Z)
OS version: Windows_NT x64 10.0.16299
<details>
<summary>System Info</summary>
|Item|Value|
|---|--... | feature-request,html | low | Critical |
311,249,542 | rust | Stability attributes on moved items can be confusing | https://doc.rust-lang.org/beta/std/ops/enum.Bound.html
says it has been around since 1.17.0, but
https://doc.rust-lang.org/std/ops/enum.Bound.html
does not exist. (and I can't use it on stable in the playground)
Digging more into it, it looks the type itself was indeed stabilized in 1.17.0, but in a differe... | A-stability,T-compiler,C-bug,S-needs-repro | low | Minor |
311,255,133 | bitcoin | Wallet transactions affected by RBF double spends are not (always) clearly shown in GUI or RPC | # What behavior did you expect?
When the mempool contains a transaction that conflicts with a wallet transaction, for this to (always) be visible in both bitcoin-qt GUI and bitcoin-cli output.
# What was the actual behavior (provide screenshots if the issue is GUI-related)?
RPC:
If the conflicting transaction... | Feature,Brainstorming,Wallet,Mempool | low | Major |
311,261,266 | opencv | OpenCV static build fails on -lavcodec not found on macOS | ##### System information (version)
- OpenCV => master branch current tip on 2018-04-04 7bc980edaf7ff2f515e195e7fdd8f274f820d4a1
- Operating System / Platform => macOS 10.13.3
- Compiler => Apple LLVM version 9.1.0 (clang-902.0.39.1)
##### Detailed description
Building OpenCV as a static lib fails.
> [ 52%] ... | category: build/install,platform: ios/osx,incomplete | low | Critical |
311,261,408 | rust | Should -Ctarget-feature go straight to LLVM? | The `--print target-features` and `-C target-feature` options list/accept all target features LLVM knows, under the names LLVM gives them (see discussion in #49428). This is in contrast to `#[target_feature]` and `cfg(target_feature)`, which accept only explicitly whitelisted features, and in some cases change the LLVM... | A-LLVM,C-enhancement,A-stability,T-compiler | medium | Major |
311,280,278 | pytorch | Multithreading Scaling Issue with MKL | Trying to optimize my intel CPU and reach the performance mentioned [here](https://software.intel.com/en-us/blogs/2017/04/18/intel-and-facebook-collaborate-to-boost-caffe2-performance-on-intel-cpu-s) through muli-threading:
I build the binaries using MKL blas with OpenMP enabled. I'm running [convnet_benchmark.py](h... | caffe2 | low | Major |
311,281,878 | vscode | [json] completion has bad replacement span, overwrites comment | Issue Type: <b>Bug</b>
* Open a `tsconfig.json` containing:
```json
{
"compilerOptions": {
"target": "es5"
}
}
```
* Comment out `//"es5"`
* Put a `"` in front of it. Choose the completion that pops up for "es2015".
* Result:
```json
{
"compilerOptions": {
"target": "es2015"... | feature-request,json | low | Critical |
311,289,931 | go | runtime: add g.p | Some important and hot data is stored in Ps, such as write barrier buffers and defer pools. Getting from a G to a P currently requires evaluating `g.m.p`. We should consider adding a direct link, `g.p`, to avoid an extra memory lookup. This should reduce memory lookups and cache pressure / cache misses on hot code, par... | Performance,compiler/runtime | low | Major |
311,306,624 | vue | Transition on overflowed elements prevents scroll | ### Version
2.5.16
### Reproduction link
[https://codepen.io/johnjleider/pen/MVqyXB](https://codepen.io/johnjleider/pen/MVqyXB)
### Steps to reproduce
- Click the button to open the menu
- As the element is transitioning in, begin to scroll (try not to move your mouse while scrolling)
### What is expected?... | browser quirks,transition | low | Critical |
311,340,520 | TypeScript | In JS, auto types don't narrow with `if` |
```ts
var result;
if (!!!!true) {
result = { type: /** @type {"ok"} */("ok"), payload: 12 }
}
else {
result = { type: /** @type {"error"} */("error"), message: "Really, really bad" }
}
if (result.type === 'ok') {
result.payload
result.message
}
else if (result.type === 'error') {
... | Bug,Domain: JavaScript | low | Critical |
311,342,557 | TypeScript | In JS, auto type assignments don't add string index to literal types | **Code**
```js
function lit() {
return { a: 1 }
}
var result;
if (!!!!true) {
result = lit()
}
else {
result = { b: 1 }
}
result/**/
```
**Expected behavior:**
`result : { [x: string]: any, a: number } | { [x: string]: any, b: number}`
**Actual behavior:**
`result : { [x: string]: any... | Bug,Domain: JavaScript | low | Minor |
311,346,573 | opencv | OpenCV Android: FPS decrease over time with JavaCameraView on Nexus 7 |
##### System information (version)
<!-- Example
- OpenCV => 3.4.0dev
- Operating System / Platform => Android
-->
##### Detailed description
I think I found a bug in the current `JavaCameraView` or the underlying `CameraBridgeViewBase `Implementation. I compiled the OpenCv library by myself for multiple ... | platform: android | low | Critical |
311,418,076 | go | cmd/compile: incorrect column reported for "struct literal does not implement" error | Please answer these questions before submitting your issue. Thanks!
### What version of Go are you using (`go version`)?
go1.10.1
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
```
GOARCH="amd64"
GOOS="darwin"... | NeedsFix,compiler/runtime | low | Critical |
311,469,603 | godot | Distribute Godot on the Windows 10 Store | I know the open source art program Krita has done something similar, but perhaps Godot could be on the Windows 10 app store along with Steam to streamline the update experience for those who don't have the Steam client open all the time. Krita is also a paid app, so perhaps that could help fund development if there's i... | enhancement,platform:windows,topic:porting | medium | Critical |
311,505,700 | opencv | Android CameraGLRenderBase/CameraGLSurfaceView crash on application pause/exit due to invalid EGL context. | ##### System information (version)
- OpenCV => 3.4.1
- Operating System / Platform => Windows 64 Bit
- Compiler => Android Studio 3.1 (Clang NDK 16)
##### Detailed description
My Android activity creates a GL surface view that derives from CameraGLSurfaceView. During execution everything works as expected, but... | bug,platform: android | low | Critical |
311,506,711 | rust | Keeping references to #[thread_local] statics is allowed across yields. | *This does not affect stabilization of `async fn` unless `#[thread_local]` is also stabilized*
[Try on playground](https://play.rust-lang.org/?gist=8cf0763bd1ca6107622592a751c565d0&version=nightly):
```rust
#![feature(generators, generator_trait, thread_local)]
use std::ops::Generator;
use std::sync::atomic::{... | C-enhancement,P-medium,A-borrow-checker,T-compiler,I-unsound,A-coroutines,F-coroutines,requires-nightly,F-thread_local,S-bug-has-test | low | Critical |
311,593,492 | material-ui | [Accordion] Mobile performance | <!--- Provide a general summary of the issue in the Title above -->
On Mobile Devices the Expansion Panel is rather slow/feels sluggish when opening/closing it.
<!--
Thank you very much for contributing to Material-UI by creating an issue! ❤️
To avoid duplicate issues we ask you to check off the followi... | performance,component: Collapse,component: accordion | medium | Critical |
311,613,509 | rust | rustdoc: transitive Drop indicators should be shown | A type can contain types implements `Drop` but doesn't implement Drop itself; I'll call this "transitive Drop" below.
Such types doesn't explicitly implement drop, but still have destructors run. We should indicate this in some way; for example, `Drop` has a meaning in futures (cancellation), but we can't see that c... | T-rustdoc,C-enhancement,A-destructors | low | Minor |
311,700,773 | TypeScript | In JS, multiple prototype assignments give duplicate identifier error | ```js
function A() {
this.x = 1
}
function Am(n) { }
if (!!!true) {
A.prototype.m = Am
}
else {
A.prototype.m = function() { }
}
```
**Expected behavior:**
Multiple assignments should be allowed, but there should a type error on the second assignment because the types of `m` do not match.
... | Bug,Domain: JavaScript | low | Critical |
311,721,315 | nvm | What is NVM? in README.md for newbies | I was just thinking there should be a link to an article or website that explains what NVM is, why use NVM, example use cases for NVM, description of all NVM terminology, etc.
I have found the following links to assist with this but it would definitely be best coming from one of the core developers and/or core contr... | informational | low | Minor |
311,738,821 | rust | `extern type` cannot support `size_of_val` and `align_of_val` | Based on discussion on https://github.com/rust-lang/rust/issues/43467 and in @rust-lang/lang meetings, an opaque `extern type` type cannot support `size_of_val` or `align_of_val`. We believe that we should panic or abort in this case. We also believe that we should have a compile-time lint that detects this whenever po... | C-enhancement,T-lang,disposition-merge,finished-final-comment-period | high | Critical |
311,756,139 | go | cmd/objdump: symbolization of global variable doesn't work for shared objects | ### What operating system and processor architecture are you using (`go env`)?
darwin/amd64
### What did you do?
```
package main
var X int
//go:noinline
func F() { X = 5 }
func main() { F() }
```
```
$ go build p
$ go tool objdump -s "\.F$" p
TEXT main.F(SB) /tmp/p2/src/p/p.go
p.go:6 0x104b... | help wanted,NeedsInvestigation,compiler/runtime | low | Minor |
311,789,716 | tensorflow | [feature] js_func (for javascript) equivalent of py_func | ### System information
- **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)**:
n/a
- **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)**:
iOS, Android
- **TensorFlow installed from (source or binary)**:
n/a
- **TensorFlow version (use command below)**:
n/a
... | stat:awaiting tensorflower,type:feature | low | Major |
311,790,106 | vscode | Launch task directly into split terminal | Issue Type: <b>Feature Request</b>
The integrated terminal split panes should support launching a task from the command palette into a split terminal panel.
Here is the current workflow
1. Launch a long-running task from command palette by typing `ctrl+p -> task first-watcher-task -> enter`. (A new terminal win... | feature-request,api,tasks,api-finalization | medium | Major |
311,792,810 | TypeScript | Cannot Load Custom Definition File in Repository |
<!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 2.8.1
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** Definition File, Ambient type
**Detail**
I am importing a JavaScrip... | Suggestion,Help Wanted,Good First Issue,Domain: Error Messages,PursuitFellowship | low | Critical |
311,800,446 | TypeScript | Support locally scoped type alias nodes | We mentioned this at a previous design meeting while discussing conditional types but I don't think an issue was opened for it (nor can I find mention of it within some design meeting notes). We think it'd be useful for both conditional types (to make a bare type reference/parameter) and in complex types (to reduce dup... | Suggestion,In Discussion | medium | Major |
311,800,659 | pytorch | [feature request] Include libomp support (macOS) | The standard way to link OpenMP while using Apple Clang on macOS seems to be by using [libomp](https://openmp.llvm.org/), which is a bottle available in [brew](https://github.com/Homebrew/homebrew-core/blob/master/Formula/libomp.rb). Apple doesn't seem to include libomp in their version of the compiler, but this bottle... | module: build,triaged,module: macos | low | Critical |
311,858,508 | vscode | Make telemetry Data opt-in | <!-- Do you have a question? Please ask it on https://stackoverflow.com/questions/tagged/vscode. -->
<!-- Use Help > Report Issue to prefill these. -->
- VSCode Version: 1.22.1
- OS Version: Windows 10
Steps to Reproduce:
1. Start VS Code 1.22.1 for the first time
2. Now a notification pops up that tells me... | under-discussion | high | 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.