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 |
|---|---|---|---|---|---|---|
431,039,445 | rust | Build fail when specify a local source for libc | $ git clone https://github.com/rust-lang/rust.git
$ git clone https://github.com/rust-lang/libc.git
$ cd rust
$ # edit Cargo.toml in rust to contain this line in field [patch.crates-io]:
libc = {path = “…/libc” }
$ ./x.py build
Then the erros appear:
error: the feature cfg_target_vendor has been st... | T-bootstrap | low | Critical |
431,046,270 | flutter | [image_picker] new feature to allow original image to be saved when scaling image.. | After https://github.com/flutter/plugins/pull/1445 the original image is deleted after scaling on Android. This caused breaking for some people who needs the original image even after scaling.
Need to find a way to provide a way to choose to keep the original image. Preferably on both platforms.
| c: new feature,p: image_picker,package,team-ecosystem,P3,triaged-ecosystem | low | Minor |
431,121,827 | go | x/crypto/ssh: implement zlib@openssh.com compression | this is an internal google request for implementation of zlib compression in the x/crypto/ssh library, as specified at
https://tools.ietf.org/html/draft-miller-secsh-compression-delayed-00
| help wanted,NeedsFix,FeatureRequest | low | Major |
431,145,041 | flutter | [webview_flutter] Accessibility element not focused when trying to select the element directly. | When using a11y on iOS webview, we are able to focus on accessibility elements by going through all the elements one by one.
However, if we want to directly select an element inside the webview, by dragging a finger on the webview.
This issue can be reproduced directly using the example app in webview_flutter plu... | platform-ios,a: accessibility,a: platform-views,p: webview,package,e: OS-version specific,P3,found in release: 2.2,found in release: 2.5,team-ios,triaged-ios | low | Major |
431,181,208 | go | cmd/go: 'mod verify' should not modify the go.mod file | <pre>
$ go version
go version go1.12 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes.
### What operating system and processor architecture are you using (`go env`)?
<details><summary><code>go env</code> Output</summary><br><pre>
$ go env
GOARCH="amd64"
GOBIN=""
GOCACHE="... | NeedsFix,modules | low | Critical |
431,205,758 | vscode | Disable hover but keep Ctrl+Hover | Hover can be very frustrating when selecting text etc. Longer delay (eg 1500ms) solves this but when you actually need the hover information it is frustrating to wait.
Having the full hover information by pressing control and hover the mouse on specific code is very nice. Please leave this functionality while let u... | feature-request,under-discussion,editor-hover | medium | Major |
431,211,116 | rust | Clarify precedence with ^ in chained comparison | ```rust
fn foo(x: i32, y: i32, z: i32) -> bool {
x < y ^ y < z // error: chained comparison operators require parentheses
}
```
Actual output:
```
error: chained comparison operators require parentheses
--> src/lib.rs:2:7
|
2 | x < y ^ y < z
| ^^^^^^^^^^^
|
= help: use `::<...>` inst... | C-enhancement,A-diagnostics,T-compiler,A-suggestion-diagnostics,D-papercut | low | Critical |
431,227,064 | rust | Rustdoc formatting presents accessibility issues | In a [thread on Reddit](https://www.reddit.com/r/rust/comments/bazy8u/how_do_experienced_rust_developers_read_the/ekg4ipg/) about finding Rust's documentation hard to read, one user pointed out that it's especially bad for people with dyslexia.
Not having dyslexia myself, I did a little bit of research on UX design ... | T-rustdoc,C-enhancement,A-rustdoc-ui,A-a11y | medium | Critical |
431,234,454 | flutter | Review _TabSwitchingViewState's internal caching behavior | `_TabSwitchingViewState` displays the content for a selected tab. It also caches the content of any previously selected tab offstage. But there are 2 things to consider:
1. Should we really apply caching automatically to every tab, regardless of what the developer wants? Could there be uncontrollable performance imp... | team,framework,c: performance,f: cupertino,P2,team-design,triaged-design | low | Major |
431,251,679 | neovim | syntax API | Followup to https://github.com/neovim/neovim/issues/9421#issuecomment-477773593 . The [roadmap](https://neovim.io/roadmap/) mentions "Syntax API" as a long-term goal. Concretely:
- `nvim_buf_attach_hl({buffer}, {send_buffer}, {opts})` - Subscribe to [all buffer "decorations"](https://github.com/neovim/neovim/issues/... | enhancement,api,syntax | medium | Critical |
431,254,702 | pytorch | [RFC] Memory format (aka layout aka NHWC) support | ## Problem statement
CNN operators utilize canonical order of tensor dimensions and assign them semantic meaning. For the 2D case in PyTorch today an input to torch.nn.Conv2d has to be a 4d tensor in NCHW order - <batch, channels, width, height>.
For performance reasons, it's often beneficial to reorder dimension... | module: internals,triaged,module: mkldnn | high | Critical |
431,301,304 | godot | Sometimes mono get corrupted and project crashes at editor startup | **Godot version:**
3.1 stable
**OS/device including version:**
Win10
**Issue description:**
Sometimes my project which uses C# get corrupted and editor crashes after loading the first scene
```
ERROR: reload: FATAL: Condition ' native == __null ' is true.
At: modules/mono/csharp_script.cpp:2716
... | bug,topic:editor,topic:dotnet | low | Critical |
431,332,408 | go | runtime: ARM uClinux crash with -buildmode=c-archive | Please answer these questions before submitting your issue. Thanks!
#### What did you do?
main.go
package main
/*
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
*/
import "C"
//export TestAdd
func TestAdd(a C.int32_t, b C.int32_t) C.int32_t {
return a + b
}
func main() {}
build:
CG... | help wanted,NeedsFix | low | Critical |
431,390,721 | go | x/net: Gccgo port for aix/ppc64 | I'm currently porting x/net for `aix/ppc64` for GC implementation (https://go-review.googlesource.com/c/net/+/170557). I was aiming to port it for Gccgo implementation as well.
In my understanding, for most of the OSes, a package implementation doesn't need to be changed according to which compiler is being used.
... | NeedsInvestigation | low | Major |
431,434,568 | pytorch | Performance issue with torch.jit.trace(), slow prediction in C++ (CPU) | Hi,
Scripted CNNs are predicting much slower, especially on C++.
On the python side, this test shows the decrease in performance:
```
model = Model(128, 128, 19**2, 0.1)
input = torch.tensor(torch.ones(1,1,128,128))
torch.cuda.synchronize()
torch.set_num_threads(1)
start_time1 = time.time()
output1 = model... | triage review,needs reproduction,module: performance,oncall: jit,module: cpp | medium | Major |
431,448,856 | pytorch | pytorch/caffe2/onnx/backend.cc:1668:57: error: invalid conversion from ‘google::protobuf::int32 {aka int}’ to ‘onnx_torch::TensorProto::DataType {aka onnx_torch::TensorProto_DataType}’ [-fpermissive] | ## ❓ Questions and Help
my god, when i compile the pytorch1.0 form source(v1.0rc0 v1.0rc1), i get this error.
### Please note that this issue tracker is not a help form and this issue will be closed.
We have a set of [listed resources available on the website](https://pytorch.org/resources). Our primary means of s... | caffe2 | low | Critical |
431,537,490 | youtube-dl | Fox.com doesn't let me download a clip (HTTP Error 403: Forbidden) | - [x] I've **verified** and **I assure** that I'm running youtube-dl **2019.04.07**
- [x] At least skimmed through the [README](https://github.com/ytdl-org/youtube-dl/blob/master/README.md), **most notably** the [FAQ](https://github.com/ytdl-org/youtube-dl#faq) and [BUGS](https://github.com/ytdl-org/youtube-dl#bugs) s... | cant-reproduce | low | Critical |
431,538,348 | godot | Spaces are counted in RichTextLabel but not Label when using `get_total_character_count()` | **Godot version:**
3.1
There are differences in how **richtextlabel** and **label** hadle spaces in their texts. **richtextlabel** counts spaces when using _get_total_character_count()_ while **label** does not:

This isn't that much of a problem because you can just use... | bug,confirmed,topic:gui | low | Critical |
431,539,555 | godot | Duplicating Visual Script node loses custom script reference | **Godot version:**
3.1-stable-windows64
**Steps to reproduce:**
Create a custom node type using GD script
Add a "Custom Node" to a new Visual Script
Set the type to your custom node using Reference/Script thing in the Inspector
Press Ctrl-D to duplicate your node
Notice Script only shows a gear
(if you then... | bug,confirmed,topic:visualscript | low | Critical |
431,569,893 | rust | Controls and search in Rustdoc header are visually distracting | This is being broken out of #59829 to provide smaller, actionable items that can be independently discussed and worked on.
A visual inspection of the Rustdoc design reveals that there are a lot of distracting design elements, which can be especially problematic for people with dyslexia or attention disorders.
One of ... | T-rustdoc,A-rustdoc-ui | low | Critical |
431,574,673 | rust | E0623: Incorrect or ambiguous message | I encountered the following error:
```
error[E0623]: lifetime mismatch
--> src/algorithm/simplex/branch_and_bound/logic.rs:47:73
|
34 | tableau: Tableau<'data_provider, NonArtificial, AdaptedMatrixProvider<'original_data, MP>, PR>,
| ---------------------------------------------------... | C-enhancement,A-diagnostics,A-lifetimes,T-compiler,D-confusing,D-newcomer-roadblock | low | Critical |
431,605,321 | rust | rustdoc styling improvements for readability | This is being broken out of #59829 to provide smaller, actionable items that can be independently discussed and worked on.
Comparing the overall rustdoc styling with recommendations for accessibility, including for dyslexia and attention disorders, there are a number of improvements that could be made.
In additio... | T-rustdoc,A-rustdoc-ui | medium | Critical |
431,618,613 | pytorch | [jit] Can't `torch.jit.script` a lambda | Something like `torch.jit.script(lambda x: x + 2)` fails since our source introspection requires a standalone function
cc @suo | oncall: jit,low priority,triaged,jit-backlog | low | Minor |
431,635,610 | pytorch | Embedding layer does not check input range | ## 🐛 Bug
Embedding layer does not check input range when running on cuda
## To Reproduce
Code to reproduce the behavior:
```
import torch
import torch.nn as nn
emb = nn.Embedding(10, 20).cuda()
x = torch.zeros(5, 1).long() + 10
x = x.cuda()
y = emb(x)
z = torch.zeros(10).cuda()
```
```
... | module: cuda,module: error checking,triaged | low | Critical |
431,671,359 | rust | Reduce visual prominence of controls, source links, and version numbers in rustdoc | This is being broken out of #59829 to provide smaller, actionable items that can be independently discussed and worked on.
A review of rustdoc for accessibility, especially for dyslexia and attention disorders, finds that there are a number of visually distracting elements in rustdoc which can draw attention away from... | T-rustdoc,C-enhancement,A-rustdoc-ui | medium | Critical |
431,674,694 | pytorch | Multi-gpu via torch::nn::parallel::data_parallel | ## 🐛 Bug
I tried to use multi-gpu capability in `C++`, but when I write `torch::nn::parallel::data_parallel`, I am getting `No member named 'parallel' in namespace 'torch::nn'` error.
## To Reproduce
Steps to reproduce the behavior:
Just add `torch::nn::parallel::data_parallel` in code with torch.h included... | oncall: distributed,module: cpp,feature,triaged | low | Critical |
431,679,055 | go | net/http: http.Client Timeout incompatible with writable bodies | As part of #26937, Transport started returning writable bodies for 101 Switching Protocol responses. This is great, thank you!
However, if you have a non-zero Timeout on your http.Client, you can't use this, because of the following [lines from client.go](https://github.com/golang/go/blob/fda5e6d6fa7abfe974a58dfeece... | NeedsInvestigation | low | Minor |
431,689,040 | pytorch | weight_norm doesn't support eta and returns nan for zero weights | ## 🐛 Bug
backprop on weights generated with torch._weight_norm that are zero filled yields nan gradients. I don't see a way to add an eta to the norm to prevent this.
## To Reproduce
Steps to reproduce the behavior:
```
w = torch.zeros(1, 3)
v = w / w.norm()
g = w.norm()
v.requires_grad = True
g.requi... | module: nn,triaged,module: NaNs and Infs,module: norms and normalization | low | Critical |
431,691,614 | rust | thumbv7a-pc-windows-msvc cannot find cl.exe when trying to expand c file for openssl-sys | I'm working on Windows 10 building Azure iot-edge for arm32, I was able to compile rust for arm successfully, using below command
`c:\python27\python.exe x.py build --host x86_64-pc-windows-msvc --build x86_64-pc-windows-msvc --target thumbv7a-pc-windows-msvc`
However, when I use the output to build iotedge, which ... | O-Arm,T-compiler,O-windows-msvc,C-bug | low | Minor |
431,710,420 | godot | Remember the value of the animation timeline scale slider for each animation | - Create an animation.
- Drag the timeline scale slider to some non-default value.
- Save the project.
- Close the project.
- Reopen the project. The value that was set with the slider has been forgotten. The expected behaviour is that the value is saved in e.g. the project file or some file specific to the project... | enhancement,topic:editor,usability | low | Minor |
431,717,149 | pytorch | pytorch.version.cuda is None when compiling with CUDA support | Compiling PyTorch from sources (487388d8) ends up with torch.version.cuda = None leading to errors when trying to import apex:
```
from apex import amp
File "/data/Workspace/miniconda3/envs/pytorch/lib/python3.7/site-packages/apex/__init__.py", line 2, in <module>
from . import amp
File "/data/Works... | needs reproduction,module: build,module: cuda,triaged | low | Critical |
431,746,196 | go | regexp: improve test coverage | There are some areas of the regexp module that are not covered by the tests, as extensive as they already are.
Mostly, they include some prefix stuff (that may have caused #30511 & #30425), some utf8 code paths, some case folding, some paths in onepass and the RuneReader input interface.
Does the idea of trying ... | Testing,NeedsFix | low | Minor |
431,771,222 | rust | Suggestion for improved nested trait error messages when not implemented. | Hi,
I was recently experiencing a confusing error message communication due to an error while developing an actix-web application. The error was:
```
error[E0277]: the trait bound `fn((actix_web::Json<proto::LoginRequest>, actix_web::HttpRequest)) -> actix_web::HttpResponse {login}: actix_web::with::WithFactory<... | A-diagnostics,A-trait-system,T-compiler,D-terse,S-needs-repro | low | Critical |
431,776,619 | rust | x.py's naming of stages is confusing | Rust has the standard multi-stage structure that all bootstrapping compilers have.
A newcomer who knows about compiler stages will be confident with this, until they run a command like `./x.py build --stage 1` and get output like this:
```
Building stage0 std artifacts
...
Copying stage0 std from stage0
Bu... | T-bootstrap,A-contributor-roadblock,C-discussion | medium | Critical |
431,779,161 | rust | lifetime error mentions implemented trait instead of the associated type and the mismatched type. | In [this reddit thread](https://www.reddit.com/r/rust/comments/bbswe6/confusing_error_message_cannot_infer_lifetime/) a user commented on their confusion with an error message.
The problem is that the lifetime error for this code mentions `Iterator` twice in the error message instead the types whose lifetimes don't ... | C-enhancement,A-diagnostics,A-lifetimes,T-compiler | low | Critical |
431,784,704 | youtube-dl | Authenticated GDC Vault 2019 content throws exception | ---
- [x] I've **verified** and **I assure** that I'm running youtube-dl **2019.04.07**
- [x] At least skimmed through the [README](https://github.com/ytdl-org/youtube-dl/blob/master/README.md)
- [x] [Searched](https://github.com/ytdl-org/youtube-dl/search?type=Issues) the bugtracker for similar issues including clo... | account-needed | low | Critical |
431,789,547 | rust | rustdoc: module flag to prevent code blocks without a lang item from counting as rust | So, I've got some code being generated by `bindgen`. The C source has `doxygen` doc comments in it, which `bindgen` faithfully converts over into doc comments. However, some of the `doxygen` content is indented with spaces (numbered lists and the like), so when converted into rustdoc it becomes a code block. These code... | T-rustdoc,C-feature-request | low | Major |
431,792,665 | TypeScript | Add option to include default typeRoots when overriding typeRoots | ## Search Terms
default typeRoots
## Suggestion
By default, when `typeRoots` is unspecified, TypeScript looks for `node_modules/@types` in the project's directory and all ancestor directories, similar to Node's module resolution algorithm. This is covered in [the tsconfig.json docs](https://www.typescriptlang.... | Suggestion,Awaiting More Feedback | high | Critical |
431,804,973 | pytorch | Support memoryview() method on torch.Tensor | ## 🚀 Feature
Support .tobytes() method on torch.Tensor
## Motivation
If I need to extract the raw bytes from a Tensor, I need to convert to numpy first and then use `tobytes`. It would be nice to have a tobytes() method for the Tensors themselves. For example, if I have a jpg image stored in a ByteTensor and I ... | feature,triaged,module: numpy | low | Major |
431,807,828 | create-react-app | Should the CRA ESLint config warn for unused vars? | I just started playing with React through create-react-app and was surprised when I wasn't warned about unused variables.
I had a look [at the ESLint config](https://github.com/facebook/create-react-app/blob/master/packages/eslint-config-react-app/index.js#L172) and it seems like it should. However, it isn't working... | issue: needs investigation | low | Critical |
431,839,535 | pytorch | Make operators like logsumexp and cumsum operate over dimension 0 by default (or at least for 1D arrays) | It's pretty ridiculous that, for a 1D input like `x = torch.rand(5)`, `torch.logsumexp` still requires you to specify you're operating over dimension 0.
In particular `torch.logsumexp(x)` will error, saying that it needs a dim argument. `torch.logsumexp(x, 0)` works.
My suggestion is that, at the very least for 1... | module: docs,triaged,enhancement,module: numpy,module: reductions | low | Critical |
431,841,668 | pytorch | Improve unit test coverage of torch.unique | Currently it only covers `torch.unique(tensor, ...)`, but not `tensor.unique(...)` We should improve this after https://github.com/pytorch/pytorch/pull/18649 series get merged.
cc @mruberry @VitalyFedyunin | module: tests,triaged,module: sorting and selection | low | Minor |
431,847,061 | create-react-app | Need support for Typescript Project references | Recently typescript has added the feature of project references:
https://www.typescriptlang.org/docs/handbook/project-references.html
In the projects created with create-react-app (with --typescript switch), we are not able to use this feature of typescript because babel complains that we cannot refer files for ... | issue: proposal | high | Critical |
431,855,217 | neovim | OptionSet should not be fired during 'modeline' (E12) |
## Steps to reproduce
```
nvim --clean +'au OptionSet filetype lua print()'
:h h
```
## Actual behaviour
When vim help is shown (e.g. <F1> or `:help`), the following error message appears and after that every single keystroke will have this error message happening, making neovim totally unusable.
`... | bug-vim | medium | Critical |
431,925,681 | pytorch | Suggest model.eval() in torch.no_grad (and vice versa) | ## 📚 Documentation
`model.eval()` and `with torch.no_grad` are both commonly used in evaluating a model.
[Confusion exists about whether setting `model.eval()` also sets `autograd.no_grad`](https://discuss.pytorch.org/t/does-model-eval-with-torch-set-grad-enabled-is-train-have-the-same-effect-for-grad-history/1... | module: docs,triaged | low | Major |
431,943,151 | go | doc: net/http/httputil: add example for reuse of Director | **Not a bug, it's a ~~API change proposal~~ documentation enhancement**:
# Rationale
Since go1.12 enhanced further the ReverseProxy implementation a closed source library (and many more open-source ones) that provide a reverse proxy for HTTP and WS can be deprecated.
The only difference between the closed sour... | Documentation,NeedsDecision | low | Critical |
431,968,549 | rust | Variance should perhaps take into account 'static bounds. | For example, when trying to build something resembling a pointer w/ optional metadata:
```rust
struct Ptr<T: ?Sized + Pointee> {
addr: usize,
meta: T::Meta,
}
trait Pointee {
type Meta: 'static + Copy;
}
impl<T> Pointee for T {
type Meta = ();
}
impl<T> Pointee for [T] {
type Meta = u... | T-lang | low | Critical |
431,976,746 | go | cmd/vet: +build comment error is confusingly worded | Please answer these questions before submitting your issue. Thanks!
#### What did you do?
Hello up there. I was updating my [tracing/xruntime](https://godoc.org/lab.nexedi.com/kirr/go123/tracing/internal/xruntime) package for Go1.12 and hit test error:
```
.../src/lab.nexedi.com/kirr/go123/tracing/internal/xr... | help wanted,NeedsFix,Analysis | low | Critical |
432,007,288 | pytorch | LayerNorm is very slow (almost frozen) in CPU of multiprocessing | The context of the use case is doing ES over small network in multiprocessing.
It turns out that with `LayerNorm` it becomes extremely slow on CPU.
To reproduce the effect, the code is attached below:
```python
import os
import torch
import torch.nn as nn
import torch.nn.functional as F
from torch.nn.uti... | module: cpu,triaged | low | Major |
432,060,588 | rust | meta matches pseudo-identifiers | [This (playground)](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=f0a01f8d82a2ce3c19b6ffac01a6050f) fails:
```rust
macro_rules! foo {
($($m:meta => $i:item)* _ => $j:item) => {};
}
foo! {
_ => { fn f() -> i32 { 2 } }
}
fn main() { f(); }
```
```
error: local ambiguit... | A-macros,T-lang,T-compiler,C-bug,S-has-mcve | low | Critical |
432,164,810 | flutter | Support clipOp for clipRRect | `Canvas.clipRect` accepts `clipOp: ClipOp` argument but `Canvas.clipRRect` does not.
Skia's https://skia.org/user/api/SkCanvas_Reference#SkCanvas_clipRRect does support clipOp argument so in Dart this can be also supported.
Same for `Canvas.clipPath`.
This is really handy for implementing fully transparent windo... | c: new feature,engine,dependency: skia,c: proposal,P3,team-engine,triaged-engine | low | Minor |
432,169,934 | pytorch | [Feature Request] Common constants in the torch.* namespace | ## 🚀 Feature
Two feature requests asked for constants from the `math` package to be included in `torch` as well:
- https://github.com/pytorch/pytorch/issues/19123
- https://github.com/pytorch/pytorch/issues/6510
## Motivation
- To avoid adding an `import math` when you want to do it
- Because NumPy and Sci... | triaged,enhancement,module: numpy | low | Major |
432,213,552 | go | net: TestUnixAndUnixpacketServer flaky on linux | https://build.golang.org/log/09fce21c31d8c4435fb99a4f7c0e8a1bb2bf900f and
https://build.golang.org/log/faa4560674d8e7d406b7031bfe985db237b9860a:
```
--- FAIL: TestUnixAndUnixpacketServer (0.00s)
server_test.go:197: #3: EOF
FAIL
FAIL net 8.796s
```
See previously #13205 (CC @bradfitz).
| Testing,help wanted,NeedsInvestigation | low | Major |
432,293,887 | go | cmd/go/internal/modfetch: module path validation inconsistent between repo and proxy fetch paths | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.11.4 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture are you using (`go env`)?
<details><summary><code>go env</code> Output</summar... | NeedsInvestigation,early-in-cycle,modules | low | Major |
432,302,736 | pytorch | 8 tests in test_c10d fail when running all tests in one command | ## 🐛 Bug
All tests in test_c10d pass if run individually in separate commands, but 8 fail consistently if run together in one pytest command. They all hit the similar error as shown below:
```
test/test_c10d.py::DistributedDataParallelTest::test_sync_reduction Process process 0: ... | oncall: distributed,module: tests,triaged | low | Critical |
432,310,433 | godot | HBoxContainer default separation not shown | **Godot version:**
3.1.1 Mono 2fbc421
**Issue description:**
`HBoxContainer` has a default separation of some kind. But the field for it in the editor, when unchecked, displays 0. This is very confusing. Either it should display the correct separation value or the default should be set to 0.
I would prefer the ... | enhancement,discussion,documentation,topic:gui | low | Major |
432,334,206 | TypeScript | react-redux type inference is broken since v3.1 | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.1.0-dev.20180810
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** react-redux connect type inference
I've noticed this is... | Bug | low | Critical |
432,355,793 | flutter | The height of CupertinoTextField will reduce on editing when the placeholder is not in English | I set the placeholder to non-English words when using CupertinoTextField, then I found that the height of the widget will reduce on editing.

I have tried four languages, and here is my test code:
```... | a: text input,framework,a: internationalization,f: cupertino,has reproducible steps,P3,found in release: 3.3,found in release: 3.7,team-text-input,triaged-text-input | low | Major |
432,386,807 | rust | Implement `CStr` as a pointer rather than a slice | Littered throughout the `CStr` documentation are notes and hints that it should be eventually converted to using a pointer underneath the hood instead of a slice. This change will make `CStr::from_ptr` O(1) instead of O(n). Other constructors may still be O(n) because they have to check to ensure there is only one nu... | C-enhancement,A-FFI,T-libs-api | medium | Major |
432,394,801 | neovim | 'nofsync' may lose data (empty file + swapfile) after system crash | I was using nvim to write a small python script. I had another program watching the python script to run it when I wrote it to disk. In addition, I had Syntastic installed and python support, but syntastic was temporarily set to not check (SyntasticCheckToggle off).
When I updated the file, the script was run, but... | bug,robustness,complexity:high,has:workaround,has:plan,system,filesystem | medium | Critical |
432,414,006 | TypeScript | Rename field to a name with dash does not transform the field with quotes. | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.5.0-dev.20190412
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** hyphen refactor, dash rename
**Code**
```ts
interfa... | Suggestion,Experience Enhancement | low | Minor |
432,429,997 | go | x/all: gccgo support | In #31382, @mikioh asks an interesting questions about the maintenance of golang.org/x packages on gccgo.
How are we sure that the changes made in golang.org/x will work on gccgo ?
For Go toolchain, they are builders on every GOOS/GOARCH which check that it's working but what about the Gccgo toolchain ? Do we a... | NeedsDecision | low | Minor |
432,457,184 | material-ui | [Tabs] Update to match the specification | Hi, I have to disagree with this change.
We are using scrollable and fullWidth together just fine, it only requires adding a minWidth to the Tab button components but otherwise it works just fine.
This is a breaking change for our layout - could this be reverted / are there other solutions to keep fullWidth and scrol... | design: material,breaking change,component: tabs | medium | Critical |
432,516,427 | create-react-app | Check for port conflict before compilation in npm start | I'd like to suggest that CRA attempts to pre-bind the port it is configured to run on when doing `npm start` before compilation starts. The compilation is slow and I often forget I have a different CRA running on 3000 (I use the default) already, so it costs some time to find out only after the server attempts to start... | issue: proposal,contributions: claimed | low | Major |
432,548,118 | go | crypto/x509: unexpected name mismatch error | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
Sorry, I'm not actually using Go itself, but I'm using etcd (https://github.com/etcd-io/etcd; apparently written in go) and got an error about subject and issuer names not matching in my... | Unfortunate,NeedsInvestigation | medium | Critical |
432,559,951 | three.js | Light Probe interpolation using Tetrahedral Tesselations | ##### Description of the problem
Now that we have a LightProbe class (https://github.com/mrdoob/three.js/pull/16191), the Spherical harmonic class (https://github.com/mrdoob/three.js/pull/16187) merged as well as some shader support(https://github.com/mrdoob/three.js/pull/16152), we should explore adding a Tetrahedr... | Enhancement | medium | Critical |
432,601,060 | go | proposal: spec: improve error handing using `guard` and `must` keywords | I'll start with an example. Here's a version of the `CopyFile` example function form the [proposal for improved error handling in Go 2.0](https://go.googlesource.com/proposal/+/master/design/go2draft-error-handling-overview.md), rewritting using `must` and `guard`:
```
func CopyFile(src, dst string) (err error) {
... | LanguageChange,Proposal,error-handling,LanguageChangeReview | high | Critical |
432,609,501 | pytorch | index_put_ take min when there are repeated indices | ## 🚀 Feature
<!-- A clear and concise description of the feature proposal -->
Assume we want to get this:
image[x,y]=p, where x, y, p are lists. For example,
x=[1, 1, 2]
y=[3, 3, 4]
p=[1, 2, 3]
It should be mentioned that image[x][y] may be updated twice, since x[0]=x[1]=1, y[0]=y[1]=3, but p[0]=1, p[... | low priority,triaged,enhancement,module: advanced indexing | low | Major |
432,626,223 | TypeScript | Request: Infer generics | The request is to let `infer` support generics.
Background:
I recently published a recursive `Pipe` and `Compose`. It offers some key advantages, including the preservation of variable names.
https://github.com/babakness/pipe-and-compose-types
Its shortcoming is in the case of generics. This is because `in... | Suggestion,Awaiting More Feedback | low | Major |
432,655,113 | godot | Weird behavior of 3x3 vs 3x3 minimal autotiling | **Godot version:** v3.1.stable.official (installed via steam)
**OS/device including version:** Ubuntu 18.04, GTX 1080ti
**Issue description:**
The same tiling works well with "3x3 (minimal)" but breaks with "3x3", even though all the needed tiles are seemingly present.
This is what it looks like with "3x3 (... | discussion,topic:core,documentation | low | Critical |
432,663,554 | pytorch | Deprecate torch.add(tensor, value, other) | ## 🚀 Feature
It's confusing that add has the scale argument. Could we create a new `torch.axpy` function that does this?
## Motivation
Numpy also makes this separation: they have numpy.add, and scipy.blas.axpy.
This could also make things nicer: add can be treated as an example of a binary pointwise operation ... | module: bc-breaking,triaged,module: numpy,module: deprecation,module: ux | low | Minor |
432,678,866 | flutter | Support High Contrast Text/Fonts | Android has an A11y setting for high contrast text/fonts. Fuchsia would like this as well.
The framework and engine don't currently respect this flag. We should implement it.
On Android, this is documented as forcing all fonts to black or white: https://support.google.com/accessibility/android/answer/6151855?hl... | customer: fuchsia,platform-android,framework,engine,a: accessibility,platform-fuchsia,a: typography,P3,team-android,triaged-android | low | Major |
432,687,607 | TypeScript | IntelliSense Parses JSDoc Namepath Part "module" as a Actual Module File Path | _- VSCode Version: 1.34.0-insider_
_- OS Version: 10.14.3 (18D109)_
_- Does this issue occur when all extensions are disabled?: Yes_
## Background
JSDoc uses [namepaths](http://usejsdoc.org/about-namepaths.html) to link variables in documentation. If you use the [@module](http://usejsdoc.org/tags-module.html) blo... | Needs Investigation | low | Minor |
432,688,038 | rust | Add /SOURCELINK debug support on Windows | It would be useful to add support for the VC++ linker option /SOURCELINK. This option embeds a json file mapping local source file paths to URLs to enable debugging on machines that might not have source. Documentation is [here](https://docs.microsoft.com/en-us/cpp/build/reference/sourcelink?view=vs-2019).
/SOURCELI... | A-debuginfo,T-compiler,O-windows-msvc,C-feature-request | low | Critical |
432,689,146 | create-react-app | GENERATE_SERVICEWORKER environment variable | Suggested new feature
**Goal**
- Be able to prevent the generation of service worker related files during a build.
**Justification**
- For the simplest applications (i.e. not using a service worker):
- Avoid loading unnecessary resources (see #6684).
- Remove a bit of clutter / have a more streamlined bui... | issue: proposal | low | Minor |
432,708,147 | go | cmd/go: implicit go install of std in $GOROOT/src has weird error | I did this by mistake (hit enter too early) and then noted the kinda weird error message:
```
bradfitz@go:~/go/src$ go install
can't load package: package std: unknown import path "std": cannot find module providing package std
bradfitz@go:~/go/src$ go install std
bradfitz@go:~/go/src$ echo $?
0
```
I guess... | NeedsInvestigation,modules | low | Critical |
432,717,582 | TypeScript | Export an interface for JSON `CompilerOptions` | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section.
-->
## Search Terms
- CompilerOptions
- convertCompilerOptionsFromJson
## Sugges... | Suggestion,Awaiting More Feedback | low | Critical |
432,728,855 | flutter | flutter create, app_name, AndroidManfest.xml, strings.xml | When I use Android Studio to generate a new Android project, the project contains a generated file `app/src/main/res/values/string.xml` with the following content
<resources>
<string name="app_name">cheetah</string>
</resources>
and the file `app/src/main/AndroidManifest.xml` contains the line
... | platform-android,tool,c: proposal,P2,team-android,triaged-android | low | Major |
432,729,828 | godot | Command line export with Linux headless always re-imports PNG resources | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
3.1
<!-- Specify commit hash if non-official. -->
**OS/device including version:**
linux_headless
<!-- Specify GPU model and drivers if graphics-... | bug,topic:editor,confirmed,topic:import | medium | Critical |
432,754,188 | angular | DatePipe date issue 0001-01-01T00:00:00Z | # 🐞 bug report
### Affected Package
DatePipe
### Is this a regression?
### Description
When passing 0001-01-01T00:00:00Z into DatePipe it is being formatted as "12/31/0001 BC"
{{ledgerEntry.date | date: 'MM/dd/yyyy GGG':'UTC'}}
## 🔬 Minimal Reproduction
https://stackblitz.com/edit/angular-sz4zdy?emb... | type: bug/fix,area: common,area: i18n,freq1: low,state: confirmed,P4 | low | Critical |
432,755,553 | TypeScript | Intersection type intellisense duplicates jsdoc, rather than overriding | <!-- Please search existing issues to avoid creating duplicates. -->
<!-- Also please test using the latest insiders build to make sure your issue has not already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- Use Help > Report Issue to prefill these. -->
- VSCode Version: 1.33.1
- OS Version: macOS... | Suggestion,Experience Enhancement | low | Minor |
432,757,819 | TypeScript | "require" is not an autocomplete option for blank js file | <!-- Please search existing issues to avoid creating duplicates. -->
<!-- Also please test using the latest insiders build to make sure your issue has not already been fixed: https://code.visualstudio.com/insiders/ -->
Steps to Reproduce:
1. Open a blank JavaScript file
2. type `var x = r`
`require` should ... | Suggestion,Experience Enhancement | low | Minor |
432,785,330 | three.js | Editor should have most of THREE's features | ##### Description of the problem
There are several features of `THREE` that aren't accessible from the Editor. When I say accessible, I mean combination of:
* properties are not visible for editing
* objects not being able to be created
* objects not being able to be imported or exported.
Ideally, the Editor ... | Enhancement,Editor | medium | Major |
432,792,796 | storybook | Add url parameter for collapsing sidebar | **Is your feature request related to a problem? Please describe.**
Currently collapsing the sidebar is only available globally in the options, but not as a URL parameter.
For instance we can embed the story in a buttons section of a docs with all the correct options and knobs selected and present in the URL. Howev... | feature request,core | low | Major |
432,806,746 | pytorch | Different behavior of torch.nn.MultiMarginLoss on CPU/GPU Tensors | ## 🐛 Bug
According to the documentation, the input to torch.nn.MultiMarginLoss() should be:
- x (a 2D mini-batch Tensor)
- y (a 1D tensor of target class indices, **0 <= y <= x.size(1)**).
For CPU tensors, it will raise RuntimeError when target (y) is out of range, however that seems not the case for GPU tenso... | module: cuda,module: error checking,triaged | low | Critical |
432,808,360 | rust | Change powerpc64 base CPU | Currently, following targets use “ppc64” as base CPU: powerpc64-unknown-linux-gnu, powerpc64-unknown-linux-musl, powerpc64-unknown-freebsd.
In LLVM, “ppc64” implies “+altivec”. This is unfortunate, because it means Rust targets are unusable on devices based on PowerPC e5500, which is fairly popular. In particular, #... | C-enhancement,T-compiler,O-PowerPC,A-target-specs | medium | Major |
432,809,206 | puppeteer | Support Electron and other content embedders | ## What's a "content embedder"?
Chromium codebase is organized into layers:
- `//blink` - HTML rendering engine
- `//content` - an API for browser implementers (think of it as a library that you'd use if you were to write your own browser). Things like process model are handled here; uses `//blink`.
- `//chrome` ... | feature,chromium | medium | Critical |
432,837,352 | godot | Attach Node Script dialog should be wider in order to show more of script path | The problem can be seen here:
<img width="532" alt="Screen Shot 2019-04-13 at 1 24 07 PM" src="https://user-images.githubusercontent.com/6002340/56079070-85828080-5def-11e9-8d59-1ec24ec76933.png">
Each time I create a new script I want to make sure it's in the right place (path) and has the correct file name. The... | enhancement,topic:editor,usability | low | Minor |
432,843,525 | TypeScript | Additive inverse of number literals | ## Search Terms
Using unary minus on variable that is of number-literal type. Negative number literals.
## Suggestion
This is a specific case of #26382. My proposal is simply that if we apply unary minus on an expression whose type is a union of number literal types, the result should be a union of their additive ... | Suggestion,Awaiting More Feedback | low | Critical |
432,854,228 | godot | AnimationPlayer: Adding Animations became more tedious in 3.1 instead of easier compared to 3.0.6 because of UI change | **Godot version:**
3.1 stable
**Issue description:**
Unlike the 3D workflow, the 2D workflow has no build in support to import animations from from external sources to the AnimationPlayer. https://github.com/godotengine/godot/issues/18269
While adding 2D animations to the AnimationPlayer has always been very time... | enhancement,discussion,topic:editor,usability | medium | Critical |
432,870,431 | pytorch | [Caffe2] Retraining saved model | https://github.com/caffe2/tutorials/blob/master/CIFAR10_Part2.ipynb
Above documentation is incorrect. Also, the Exporter fails if a model has Batch Norm in it. Also, following the same steps in above document for retraining a model gives a segmentation fault.
Please guide. I also posted this on PyTorch discuss bu... | caffe2 | low | Minor |
432,886,601 | TypeScript | Suggestion: shorthand for templated type to extend and default to the same type | ## Search Terms
default extends equals generics = template types is
## Suggestion
Can we have a way to declare that a templated (generic) type both `extends` and is `=` a type value without repeating the type value?
```typescript
declare function example<T extends Base = Base>(value: T): T;
```
A clean... | Suggestion,Awaiting More Feedback | low | Major |
432,891,038 | opencv | Memory corruption in computing optical flow | ##### System information (version)
- OpenCV => 3.1.0
- Operating System / Platform => Ubuntu 16.04
- Compiler => cmake (3.14.0) , g++ (5.4.0), C++14
##### Detailed description
Looks like there is a problem with `cv::calcOpticalFlowPyrLK`. I checked and made sure that the inputs (prev image, next image, prev pt... | bug,category: video,incomplete | low | Critical |
432,897,902 | rust | Add CLI argument to set favicon URL | T-rustdoc,C-feature-request,A-rustdoc-ui,A-CLI | low | Minor | |
432,910,773 | godot | AnimationPlayer: adding keys to Method Track has become unintuitive and complicated |
**Godot version:**
3.1 stable
**Issue description:**
When you want to add a keyframe to an empty Call method track, you will get to a window saying "select method"
This is not what I want. I want to add a keyframe not a select a method. Even if you already wrote a function in your script, you cannot select it... | enhancement,discussion,topic:editor,usability | low | Major |
432,944,849 | godot | Autocompletion doesn't work if other scene is opened | **Godot version:**
3.1 stable
**OS/device including version:**
Windows 7 x64
**Steps to reproduce:**
**_Prerequisite_**: 2 scenes, one of them should have at least one node
Ex.:
```
- Scene 1
- Node
- Scene 2
```
1. Create script for Scene 1,
2. While Scene 1 tab is opened start typing `$` / `ge... | bug,topic:editor,confirmed | low | Critical |
432,958,506 | pytorch | add stable distribution in torch.distributions | ## 🚀 Feature
<!-- A clear and concise description of the feature proposal -->
Add stable distribution in torch.distributions
## Motivation
I would like to get a pdf of stable distribution on GPU. So far, I have to transfer to Numpy and use Scipy to do that and transfer back to tensor on GPU. This process becomes a... | module: distributions,feature,low priority,triaged | low | Major |
433,005,422 | opencv | LineIterator pos() overflows when coordinates and/or base data type is large | <!--
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).
Please:
* Read the documentation to test with the latest de... | bug,category: imgproc,affected: 3.4 | low | Critical |
433,024,695 | rust | async/await: cannot move out of captured variable in an `Fn` closure | Hello,
recently faced with strange behavior, please comment, is this a bug, or not?
Compiler version: 1.35.0-nightly 2019-04-12 99da733f7f38ce8fe684
```rust
#![feature(futures_api, async_await, await_macro)]
use std::future::Future;
struct Task<T> {
task: T,
}
impl<T> Task<T>
where
T: Fn(),
... | A-closures,T-compiler,A-async-await,AsyncAwait-Triaged,requires-nightly,fixed-by-async-closures | low | Critical |
433,025,222 | TypeScript | Type Math.min & Math.max using generic | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please read the FAQ first, especially the "Common Feature Requests" section.
-->
## Search Terms
<!-- List of keywords you searched for before creating this issu... | Suggestion,In Discussion | medium | 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.