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 |
|---|---|---|---|---|---|---|
453,846,074 | scrcpy | Input (screen presses) via command line? | Hello,
It's not listed as a feature but please can you tell me if it's possible to register touches via the command line. By this I mean in specific locations, not just the home or back button for example.
I understand this to be a feature of ADB using the following command, however I was just curious if it's p... | feature request | low | Major |
453,848,520 | youtube-dl | Feature: Add option to treat batch-file URLs as chunks and merge them | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | request | low | Critical |
453,849,051 | youtube-dl | Feature: Add support for custom m3u8 chunklist from local file. | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | request | low | Critical |
453,876,619 | neovim | Show search match close to the word being search | <!-- Before reporting: search existing issues and check the FAQ. -->
- `nvim --version`: v0.4.0-984-g3dd31b2b6
- Vim (version: ) behaves differently? no
- Operating system/version: fedora 30
- Terminal name/version: zsh
- `$TERM`: xterm-256color
### Steps to reproduce using `nvim -u NORC`
```
nvim -u NORC... | enhancement,ui,ui-extensibility | low | Minor |
453,881,044 | youtube-dl | Feature: Add ability to force remux to custom container even when not necessary | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | request | low | Critical |
453,881,790 | youtube-dl | Feature: Support merging subtitle-s + formats into supported container | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | request | low | Critical |
453,882,432 | youtube-dl | Feature: Support downloading multiple subtitle formats of the same language at once | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | request | low | Critical |
453,904,170 | go | cmd/go: accept main packages as dependencies in go.mod files | If this issue is a duplicate (other than #25922 and #30515): apologies ahead of time, and please feel free to close it.
### Summary
Many Go programs today not only depend on other packages, but they depend on other programs themselves. In other words, a module (whether a program or a library), may depend on other... | NeedsDecision,modules | medium | Major |
453,906,105 | rust | Tracking issue for `Result::into_ok` | I would like to propose adding a `unwrap_infallible` associated function to `core::result::Result`. The purpose is to convert `Result<T, core::convert::Infallible>` to a `T`, as the error case is impossible.
The implementation would basically be:
```rust
impl<T> Result<T, Infallible> {
#[inline]
pub fn... | T-libs-api,B-unstable,C-tracking-issue,A-result-option,Libs-Tracked,Libs-Small | medium | Critical |
453,911,416 | TypeScript | Return type annotations ignored with recursive closures using JSDoc | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Suggestion,Awaiting More Feedback | low | Critical |
453,911,864 | flutter | google_maps_flutter: Allow setting map feature listeners lazily | It is only possible to set `onTap` callbacks on `Marker/Circle/Polyline/Polygon` in the respective class's constructor. This prevents object creation in separate Isolates. It would be great if either the `onTap` fields were mutable or if `GoogleMap` hosted global `onTap[Marker|Circle|...]` callbacks. | p: maps,package,c: proposal,team-ecosystem,P3,triaged-ecosystem | low | Minor |
453,927,966 | youtube-dl | --reject-title exact match | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | question | low | Critical |
453,928,310 | flutter | [image_picker] GIF resize loses animation | Specifying maxWidth and maxHeight when picking a GIF will cause the animation to be lost. | platform-android,p: image_picker,package,has reproducible steps,P2,found in release: 3.10,found in release: 3.11,team-android,triaged-android | low | Major |
453,939,789 | go | x/tools/gopls: bad completion insertion after syntax error | In this code
```go
package foo
func foo() {
foo(a ...interface{})
f<>
}
```
Completing "f" to "foo" ends up inserting "ffoo" instead of "foo". This is because the syntax error on the previous line completely obscures the "f" *ast.Ident, so we don't detect it properly as the prefix. Perhaps if we are in ... | help wanted,NeedsInvestigation,gopls | low | Critical |
453,946,228 | godot | Colliding objects (RigidBody2d) gain energy | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:** 3.1.1
<!-- Specify commit hash if non-official. -->
**OS/device including version:** MacBookPro (Retinia 15", Mid 2015), 16gb, AMD Radeon R9 M370X ... | bug,confirmed,topic:physics | low | Critical |
454,037,683 | PowerToys | Disable Taskbar thumbnail preview | I would be really nice with an option to turn off the live taskbar thumbnail preivews. It's really annoying when using Remote Desktop in windowed mode or when using Parallells on a Mac. Often it overlaps another taskbar and you have to wait for it to disappear. | Idea-Enhancement,Product-Tweak UI Design | low | Minor |
454,040,989 | go | cmd/compile: prove pass unable to eliminate bounds check when a variable is assigned from len | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version devel +98100c56da Mon Jun 3 01:37:58 2019 +0000 linux/amd64
</pre>
### What did you do?
Consider -
```go
func bce2(s string) {
n := len(s)
buf := make([]byte, n+1)
for i := 0; i <= n; i++ {
_ = buf[i] // bounds ... | Performance,NeedsInvestigation,compiler/runtime | low | Major |
454,049,593 | vue-element-admin | 浏览器窗口卡死 | <!--
注意:为更好的解决你的问题,请参考模板提供完整信息,准确描述问题,信息不全的 issue 将被关闭。
Note: In order to better solve your problem, please refer to the template to provide complete information, accurately describe the problem, and the incomplete information issue will be closed.
-->
## Bug report(问题描述)
使用vue-admin-element打包之后,把文件发... | need repro :mag_right: | low | Critical |
454,068,614 | flutter | Refactor platform views to respect the Activity lifecycle on Android | Refactor platform views to respect the Activity lifecycle on Android.
Up to the point of writing this ticket, the platform views API has been based on the old embedding, which always has an Activity available. The new embedding, and add-to-app use-cases in general, do not always have an Activity available. In fact, ... | platform-android,engine,a: existing-apps,a: platform-views,P3,team-android,triaged-android | low | Major |
454,068,839 | opencv | cv2 resize channel limited | ##### System information (version)
- opencv-python == 4.1.0.25
- numpy == 1.15.0
- Operating System == MacOS Mojave 10.14.5
##### Detailed description
resize data which is multiple channels like 586 dimensions, code is as below:
```
data = np.random.uniform(low=0.0, high=1.0, size=(128, 586, 586))
data = cv2.... | category: python bindings,category: imgproc,RFC | low | Critical |
454,072,725 | flutter | [google_maps_flutter] ACCESS_FINE_LOCATION permission always return NOT GRANTED on android | Hi!
I’m testing a Google_maps_flutter sample.
```console
E[/GoogleMapController]()(25499): Cannot enable MyLocation layer as location permissions are not granted
```
Google maps are displayed fine, but my current location function does not work as the above errors occur.
Of course, Manifest also declared!
... | platform-android,customer: crowd,p: maps,package,has reproducible steps,P2,found in release: 1.22,found in release: 1.26,found in release: 2.0,found in release: 2.3,team-android,triaged-android | low | Critical |
454,079,302 | electron | downloadURL should have an optional destination argument | Handling the save path in will-download event works, sometimes. But right now I'm having problem when I have a custom file location picker to let the user pick a recent location. When I call downloadURL the only way I see to use this custom path is by using some hacky variables and compare dates to check if it's recent... | enhancement :sparkles: | low | Minor |
454,104,061 | kubernetes | Calculate oom_score_adj in a CPU-agnostic way, taking in consideration Pod Priority too |
**What would you like to be added**:
I would like to start a conversation to understand if we may improve `GetContainerOOMScoreAdjust` to:
1. Calculate the `oom_score_adj` in a CPU-agnosticy way
2. Take in account Pod Priority too
**Why is this needed**:
Currently, the `kubelet` sets a `oom_score_adj` ... | priority/backlog,sig/node,kind/feature,triage/accepted | medium | Major |
454,126,725 | puppeteer | Unable to move mouse on elements using Pointer Lock API | <!--
STEP 1: Are you in the right place?
- For general technical questions or "how to" guidance, please search StackOverflow for questions tagged "puppeteer" or create a new post.
https://stackoverflow.com/questions/tagged/puppeteer
- For issues or feature requests related to the DevTools Protocol (https://ch... | bug,confirmed,P3 | low | Critical |
454,171,515 | TypeScript | Allow extending types referenced through interfaces | ## Suggestion
Allow things like the following:
```ts
interface I extends HTMLElementTagNameMap['abbr'] {}
```
Currently, the following error message is given: "An interface can only extend an identifier/qualified-name with optional type arguments." Which I don't even understand.
I believe it requires no f... | Suggestion,In Discussion,Has Repro | medium | Critical |
454,177,923 | pytorch | RuntimeError: cublas runtime error | My env is :
Collecting environment information...
PyTorch version: 0.4.1
Is debug build: No
CUDA used to build PyTorch: 9.0.176
OS: Ubuntu 16.04.5 LTS
GCC version: (Ubuntu 5.4.0-6ubuntu1~16.04.11) 5.4.0 20160609
CMake version: version 3.14.0
Python version: 3.5
Is CUDA available: Yes
CUDA runtime version:... | triaged,module: cublas | low | Critical |
454,223,922 | flutter | [google_maps] CameraUpdate.newCameraPosition bearing, tilt & zoom always 0 if empty values | ## Use case
Currently if you call animateCamera method and give no values to bearing, tilt or zoom they will always default to 0.
Now when it does this, the map will move (bearing, tilt & zoom) even when it's not wanted.
```
await controller.animateCamera(
CameraUpdate.newCameraPosition(
... | p: maps,package,c: proposal,team-ecosystem,P3,triaged-ecosystem | low | Minor |
454,287,438 | TypeScript | Manually widen a type for conditional/mapped type | ## Search Terms
`manual widen`
## Suggestion
I would like some keyword or other mechanism to refer to the widened version of a type, e.g. `widened 42` would be `number` and `widened 'foo'` would be `string`. Importantly, `widened 42 & { foo: 'bar' }` would be `number & { foo: 'bar' }`.
## Use Cases
Our p... | Suggestion,Awaiting More Feedback | low | Minor |
454,298,149 | go | x/build/cmd/gopherbot: should not consider backport requests inside backport issues | A backport issue should never itself be backported, so gopherbot should reject requests to backport inside such issues.
See https://github.com/golang/go/issues/32261#issuecomment-496157952 where it happened by accident and caused confusing backport-backport issues to be created.
Also happened in https://github.co... | help wanted,Builders,NeedsFix | low | Minor |
454,352,330 | pytorch | Strange latency overhead of F.conv2d | ## Issue description
I'm trying to optimize the inference latency, but found that there's a strange overhead happens in one single conv layer. Even though it still fits `y=kx+b` linear relationship, but the `b` is extremely large.
The profiling result goes as follows.
|[filter, filter, input_channels, output_c... | module: performance,module: cpu,triaged | low | Critical |
454,371,233 | TypeScript | Document --incremental and composite project APIs | Follow-up from #29978, suggested by @MLoughry at https://github.com/microsoft/TypeScript/issues/29978#issuecomment-499674541 | Help Wanted,API,Docs,Fix Available | high | Critical |
454,412,640 | go | compress/gzip: provide user access to size trailer (when possible) | The current `gzip.Reader` reads and verifies the trailer crc and size at the end, but the user currently has no way of reading (to pre-allocate output resources) the size.
How much appetite do we have for adding something like a `func ReadSize(io.ReadSeeker) (uint32, error)` utility to the `compress/gzip` package?
... | NeedsInvestigation,FeatureRequest | low | Critical |
454,445,787 | rust | Lifetime mismatch from itself | I found myself encountering error[E0623], but the error message is not understandable and seems buggy: it says some variable's lifetime mismatches from itself.
Minimum Reproducible:
```
#[derive(Debug)]
enum IntOrRef<'a> {
I(u32),
R(&'a u32),
}
#[derive(Debug)]
struct V<'a> {
v: Vec<IntOrRef... | C-enhancement,A-diagnostics,A-lifetimes,T-compiler,D-newcomer-roadblock | low | Critical |
454,486,523 | flutter | Odd animation when scrolling in TextFormField when it is in TabView and PageStorageKey | ## Description
Wrap a series of `TextFormField` objects inside of a `ListView` where the `ListView` has a `PageStorageKey`. The `TabView` may not actually be required to repro, but having it helped narrow the problem to the presence of the `PageStorageKey`.
In both tabs, the tab loses the scroll state. But only... | framework,a: animation,f: material design,f: scrolling,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-design,triaged-design | low | Major |
454,486,974 | flutter | Add ability to scroll through buttons in BottomNavigationBar | Hi , Please Add **Draggable** (scroll) Feature To **Bottom Navigation Bar** Like TabBarView
It's Very Important For UX
Thanks | c: new feature,framework,f: material design,P3,team-design,triaged-design | low | Minor |
454,567,404 | go | cmd/vet: copylock does not warn when "lock_type_var = *func_return_pointer_to_locktype()" | I am using Go 1.12.1.
cmd/vet does not report any warning for example code below:
```go
package main
type noCopy struct{}
func (*noCopy) Lock() {}
func (*noCopy) Unlock() {}
func (*noCopy) MuteUnusedWarning() {}
func returnNCP() *noCopy {
var nc noCopy
return &nc
}
func m... | NeedsInvestigation,Analysis | low | Major |
454,589,440 | rust | What is a trailing expression in a block exactly? | Is it determined syntactically or semantically?
Before or after macro expansion?
Answering these questions is necessary to specify expansion of macros (stable fn-like ones or unstable attribute ones) in expression and statement positions.
The current implementation is sometimes inconsistent.
Below I'll be dumpi... | A-frontend,A-parser,A-macros,T-lang | medium | Major |
454,615,476 | flutter | setPreferredOrientations([up, down]) doesn't actually allow down | <!-- Thank you for using Flutter!
If you are looking for support, please check out our documentation
or consider asking a question on Stack Overflow:
* https://flutter.dev/
* https://api.flutter.dev/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you hav... | platform-android,platform-ios,engine,a: layout,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-engine,triaged-engine | low | Critical |
454,695,247 | vscode | Global regex search with "Not matching character" doesn't match newline |
Issue Type: <b>Bug</b>
I was trying to search for
```
Promise\.all\(\[[^\]]*await[^\]]*\]\)
```
but I had no way to turn on multiline support so that `^\]` would match newlines too. So searching for below would not be found.
```
return await Promise.all([
await this.someFunction1(),
await this.someFun... | feature-request,search | medium | Critical |
454,741,351 | kubernetes | Upgrade tests do not check pod instances and restart counts are identical for workload objects | **What happened**:
An upgrade of only the API server should not result in pod recreations or container restarts.
Today, this can accidentally be triggered by introducing new defaults to types within PodSpec (c.f. https://github.com/kubernetes/kubernetes/pull/69988, https://github.com/kubernetes/kubernetes/issues/... | kind/bug,priority/important-soon,sig/apps,sig/testing,lifecycle/frozen | medium | Major |
454,741,527 | go | cmd/compile: similar returns not optimized | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version devel +323212b Sun Jun 9 16:23:11 2019 +0000 linux/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes.
### What did you do?
I compiled the following function:
```go
func f1(x int, b bool) int {
if b... | Performance,NeedsFix,compiler/runtime | low | Minor |
454,774,533 | flutter | [web] Flush handleBeginFrame microtasks before handleDrawFrame | Flutter for web deviates from Flutter mobile in that it does not flush microtasks scheduled by `handleBeginFrame` before calling `handleDrawFrame`. This is done so we do not split the request animation frame into two separate VM events; animation frame event must be synchronous.
Relevant code: https://github.com/flu... | c: crash,framework,c: API break,platform-web,P2,team-web,triaged-web | low | Major |
454,816,902 | vscode | The new application icon lacks resolution on HiDPI systems | - VSCode Version: 1.35.0
- OS Version: Win 10 Pro x64 1809 build 17763.503
Steps to Reproduce:
1. Pin VSCode to the Start menu on a HiDPI system (for instance at 3840×2160 resolution with 200% custom scaling);
2. Open the start menu and observe that the icon appears blurry due to insufficient resolution
The VS... | bug,windows,icon-brand | low | Major |
454,836,027 | flutter | The DraggableScrollableSheet to go all the way up/down when fling/dragged. | Hi,
I want the list when its draggable to go all the way up or down as I fling or drag. Now in the DraggableScrollableNotification I only get the currentExtent which I believe is not enough data to implement that functionality. There is no way to set the currentExtent as well.
It would be nice if(possible) we could... | c: new feature,framework,f: material design,P3,team-framework,triaged-framework | low | Minor |
454,842,408 | pytorch | Batch Dataloader and Dataset | ## 🚀 Feature
A dataloader and dataset that operate at the batch level, rather than the item level, pulling batches from contiguous blocks of memory and avoiding random access patterns in the dataloader.
## Motivation
Loading data item by item and coallating into a batch is very inefficient, particularly in the ca... | feature,module: dataloader,triaged | low | Critical |
454,846,961 | TypeScript | Suggestion: extract to function expression | <!-- 🚨 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,Awaiting More Feedback | low | Critical |
454,942,741 | TypeScript | Performance Microbenchmark Infrastructure | (Ron to provide details on scenarios to support) | Infrastructure | low | Major |
454,944,138 | three.js | setProjectionFromUnion makes incorrect assumptions | The comment from `setProjectionFromUnion` states:
> Assumes 2 cameras that are parallel and share an X-axis
For Magic Leap devices, that is not the case and because of this, this function calculates incorrect values which results in the scene not rendering correctly.
It's observable by virtually pinning content to... | Bug | low | Critical |
454,949,399 | flutter | Add2app: When moving Flutter module the host project will no longer compile on iOS | When using "create module -t" for a Flutter project it creates a file <project>/.ios/Flutter/Generated.xcconfig and inside of it is an environment variable FLUTTER_APPLICATION_PATH which as the absolute path to the project. (example FLUTTER_APPLICATION_PATH=/Users/aaclarke/dev/NavFlutter/fluttermod=/Users/aaclarke/dev... | platform-ios,tool,a: existing-apps,P3,team-ios,triaged-ios | low | Critical |
454,957,594 | rust | `impl Trait` with multiple lifetimes imposes a strange lifetime requirement | Consider the [following code](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=4973e923873462ad1d3630ffbd463cd6):
```rust
pub struct Store;
impl Store {
fn scan<'a>(&'a self) -> Box<dyn Iterator<Item = u64> + 'a> { panic!() }
}
pub struct Transaction<'a> {
kv: &'a Store,
re... | C-enhancement,A-diagnostics,A-lifetimes,T-compiler,A-NLL,A-impl-trait | low | Critical |
454,970,402 | godot | Issue with AnimtationTree AutoAdvance property | **Godot version:**
v3.1.1.stable.official
**OS/device including version:**
Linux 4.15.0-51-generic (Linux Mint 19.1)
GPU: Radeon HD 8870M
Driver: amdgpu
Renderer: GLES2
**Issue description:**
Auto_play property of AnimationNodeStateMachineTransition ignore "condition" property (as described [here](http://d... | bug,topic:core | low | Critical |
455,024,860 | terminal | Search is often broken while console process is running | # Environment
```none
Windows build number: 10.0.18362.113
Windows Terminal version (if applicable):
Any other software?
```
# Steps to reproduce
have a long running process (e.g. msbuild), and ctrl+F to find something. Often the match will be off by one line
10.0.18362.113
# Expected behavior
I can f... | Product-Conhost,Help Wanted,Area-Interaction,Issue-Bug,Priority-3 | low | Critical |
455,029,085 | flutter | Generate flavor Xcode build setting (like FLUTTER_FLAVOR=dev) | <!-- Thank you for using Flutter!
If you are looking for support, please check out our documentation
or consider asking a question on Stack Overflow:
* https://flutter.dev/
* https://api.flutter.dev/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you hav... | c: new feature,platform-ios,tool,t: xcode,P2,team-ios,triaged-ios | low | Critical |
455,030,286 | pytorch | [FR] Diagonal Transform for Distributions | ## 🚀 Feature
Add a transform function in distributions that only transforms diagonal elements of matrix valued random variables, similar to the TransformDiagonal bijector in TensorFlow Probability.
## Motivation
Important for reparametrizing random objects defined on the space of covariance matrices (e.g. Inverse... | module: distributions,feature,triaged | low | Minor |
455,032,745 | flutter | Custom ScrollPhysics breaks NestedScrollView | ## Steps to Reproduce
I have a small app here: https://github.com/maks/flutter-space
that demonstrates the issue.
Its basically just the example code from the [NestedScrollView documentation](https://api.flutter.dev/flutter/widgets/NestedScrollView-class.html) but using a custom Physics class that just uses the... | framework,a: animation,f: material design,f: scrolling,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design | low | Major |
455,064,648 | flutter | Dismissible ListTile Overflow | Dismissible list tiles will overflow when there are two lists in a row layout.
Steps to reproduce:
1. Put two ListViews (wrapped in Expanded) next to each other in a row layout.
2. Wrap ListTiles in a Dismissible.
3. Now if you swipe a tile in the second list to the left, the tile's content will overflow it's li... | framework,f: material design,a: quality,has reproducible steps,P2,found in release: 2.5,found in release: 2.6,team-design,triaged-design | low | Major |
455,073,500 | create-react-app | add support for FBT | Facebook [FBT translations library](https://github.com/facebookincubator/fbt) seems very promising.
I was wondering if we can somehow add optional support to it in `create-react-app` projects,
Right now in order to use a project must be ejected in order to add the proper babel configuration.
If that's something you ... | tag: new feature | low | Major |
455,078,720 | puppeteer | lower level postdata | `postData` only takes a string and i thing that is too high abstract for me. I would like to try posting binary data, preferable with ArrayBuffer, ArrayBufferView or better yet: A byte stream. so I'm able to pipe a large file.
```js
page.on('request', request => {
const overrides = {}
if (request.url === 'htt... | feature,confirmed | low | Major |
455,130,052 | rust | unhelpful "expected item" error when putting let binding outside of function | ````rust
let s = String::new();
fn main() {
println!("Hello world");
}
````
````
Compiling playground v0.0.1 (/playground)
error: expected item, found keyword `let`
--> src/main.rs:1:1
|
1 | let s = String::new();
| ^^^ expected item
````
Could we have some suggestions what kind of item... | C-enhancement,A-diagnostics,A-parser,T-compiler,D-newcomer-roadblock | low | Critical |
455,148,953 | go | x/mobile: gomobile bind: add flag to disable package name prefix in iOS classes | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.12.5 darwin/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes
### What operating system and processor architecture a... | NeedsInvestigation,FeatureRequest,mobile | low | Critical |
455,208,774 | TypeScript | Add new `sourceRootDir` setting | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.5.1
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:** sourceRoot, sources, sourcemap
**Code**
1. Create a module like: ... | Suggestion,Awaiting More Feedback | medium | Critical |
455,221,789 | pytorch | C++ module API footgun: assigning to parameter doesn't update `parameters()` list | In https://github.com/pytorch/pytorch/issues/21679#issue-455182954 I saw a user do this:
```
auto m = torch::nn::BatchNorm(torch::nn::BatchNormOptions(2));
m->weight = torch::from_blob(&data[0][0],{2});
m->bias = torch::from_blob(&data[0][2],{2});
m->running_mean = torch::from_blob(&data[0][4],{2});
m... | module: docs,triaged | low | Minor |
455,254,184 | pytorch | The cuda problem in caffe2 | Hi
I install Caffe2 with Python3.6.8, cuda 9.0.176, cudnn 7 ,Driver Version: 384.130 OS ubuntu 17.10
Caffe2 install use: conda install pytorch-nightly cuda90 -c pytorch
when I try to run maskrcnn demo as below the "CUDA driver version is insufficient for CUDA runtime version" error occurs . pls help me! Thanks... | caffe2 | low | Critical |
455,258,923 | react-native | FlatList automatically scrolls after adding new items | FlatList automatically scrolls after change data and adds new data in the front or middle of the data list.
It only works correctly when adds new item to the end of list
I checked scroll offset and understand that FlatList scrolls to keep the latest content Y offset
I mean when the content size changes, the latest Y... | Component: FlatList,Bug | high | Critical |
455,270,629 | rust | `impl_trait_in_bindings` and pick-constraint region bounds | I'm working on https://github.com/rust-lang/rust/issues/56238. In the process, I'm extending how `impl Trait` lifetime inference works -- in particular in scenarios involving multiple, unrelated lifetimes, such as `impl Trait<'a, 'b>`. The challenge here is that each region `'h` in the hidden type must be equal to `'a`... | T-lang,T-compiler,A-impl-trait,F-member_constraints,F-impl_trait_in_bindings,requires-nightly | low | Major |
455,311,339 | pytorch | Batched Conv2d for sequence data | ## 🚀 Feature
A module that allows for batched 2d convolutions on sequence data. Essentially, a module that takes as input a tensor of dimensions (batch_size, sequence, channel, H, W) and returns a tensor of dimensions (batch_size,sequence,channel,H',W').
Note: This function is **NOT** conv3d. The convolution is 2d, ... | module: convolution,triaged,module: batching,function request | low | Minor |
455,337,187 | PowerToys | copy/move to folder | A powertoy rightclick menu item to copy/move to a different folder.
That would solve a lot of people's problem who save it in desktop and then thinking how to move properly to a specific folder without opening extra explorer etc.
used to have it. | Idea-New PowerToy,Status-In progress,Product-File Explorer | low | Major |
455,374,349 | terminal | [host] If you resize in a fullscreen app and the cursor is past the right of a line, but above the bottom of the buffer, then we'll insert an extraneous newline with the cursor on it. | From MSFT:19938308
Prior to fixing MSFT:16861099, if you change the size of the font in TMUX, then we'll incorrectly do a resize operation (despite the fact that the buffer hasn't changed size).
During that resize operation, we won't be able to find the cursor position, because the cursor is on a space character in... | Product-Conhost,Help Wanted,Area-Output,Issue-Bug,Priority-3 | low | Critical |
455,375,973 | godot | 3D CollisionObject signals do not trigger when mouse is in "captured" mode | **Godot version:**
3.1.1
**OS/device including version:**
Windows 10 Pro version 1809, Ryzen 5 2600X, GTX 660
**Issue description:**
First off, I'm not sure if this behavior is intended. The [documentation](https://docs.godotengine.org/en/3.1/classes/class_input.html) says that mouse movement and button pr... | discussion,confirmed,topic:input | medium | Major |
455,376,231 | terminal | [Docs] SetScreenBufferInfo* Doesn't actually set all the members in a SCREENBUFFER_INFO* struct. It only uses a subset of them. Documentation should reflect this. | From MSFT:10210059 | Product-Conhost,Issue-Docs,Area-CodeHealth | low | Minor |
455,401,753 | kubernetes | yaml may fail to parse spuriously | <!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks!
If the matter is security related, please disclose it privately via https://kubernetes.io/security/
-->
**What happened**: JSON with comm... | kind/bug,sig/api-machinery,lifecycle/frozen | medium | Critical |
455,412,262 | pytorch | (LLD 8.0.0) ld: error: can't create dynamic relocation R_X86_64_DTPOFF32 against symbol: ideep::utils::computation_cache | There's something wrong with `TORCH_STATIC` when building with MKL DNN.
Steps to reproduce:
1. Apply this diff to turn on static build:
```
diff --git a/caffe2/CMakeLists.txt b/caffe2/CMakeLists.txt
index 4b45b7bc8..b6e59c509 100644
--- a/caffe2/CMakeLists.txt
+++ b/caffe2/CMakeLists.txt
@@ -554,6 +554,7 @@... | module: build,triaged,module: static linking,module: mkldnn | low | Critical |
455,420,093 | flutter | ext.flutter.structuredErrors isn't compatible with code that manipulates FlutterError.onError multiple times | If you have code that temporarily adds a FlutterError.onError handler, then puts it back, and while that code has its handler hooked you temporarily turn on then off the inspector's support of structured errors, you'll lose the value of FlutterError.onError. There's other similar failures likely to happen here.
cc @... | framework,f: inspector,P3,team-framework,triaged-framework | low | Critical |
455,498,493 | go | proposal: spec: improvements to raw strings | ## Background
This proposal was branched off of #32190, which was a proposed HEREDOC syntax for Go. It was concluded that HEREDOC was not the correct syntax for Go to use, however the proposal did point out a large problem that Go currently has:
# Problem
There is only one option to use raw strings, which is t... | LanguageChange,Proposal,LanguageChangeReview | high | Critical |
455,516,046 | go | syscall/js: performance considerations | I was porting some frontend Go code to be compiled to WebAssembly instead of GopherJS, and noticed the performance was noticeably reduced. The Go code in question makes a lot of DOM manipulation calls and queries, so I decided to benchmark the performance of making calls from WebAssembly to the JavaScript APIs via `sys... | Performance,NeedsInvestigation,arch-wasm | medium | Critical |
455,525,195 | angular | ngSubmit should trigger after Asynchronous Validation completes | <!--🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅
Oh hi there! 😄
To expedite issue processing please search open and closed issues before submitting a new one.
Existing issues often contain information about workarounds, resolution, or progress updates.
🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅�... | type: bug/fix,help wanted,area: forms,forms: validators,P3 | medium | Critical |
455,535,802 | nvm | nvm installation fails on fedora 19 with "Unable to access nvm.git" error | <!-- Thank you for being interested in nvm! Please help us by filling out the following form if you‘re having trouble. If you have a feature request, or some other question, please feel free to clear out the form. Thanks! -->
- Operating system and version: Fedora 19 running on Virtual Box
- `nvm debug` output:
... | needs followup | low | Critical |
455,539,829 | flutter | Consider enabling semantics in tests and debug mode always | See https://github.com/flutter/flutter/issues/31139
We have asserts in various places (and want to add more) to guard against incorrect semantics constructions. Violating these asserts can result in crashes in the a11y bridge implementations at runtime in release mode.
However, even adding more asserts could sti... | a: tests,framework,a: accessibility,a: debugging,c: proposal,P3,team-framework,triaged-framework | low | Critical |
455,578,447 | TypeScript | wiki doc: @template reference re: jsdoc (and old usejsdoc.org reference) | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps b... | Help Wanted,Docs,PursuitFellowship | low | Critical |
455,583,649 | godot | Memory leak(~180KB) in EditorHelpSearch::Runner | **Godot version:**
3.2.dev.custom_build.15425b450
**OS/device including version:**
Ubuntu 19.04
**Issue description:**
When I opened and search some things in editor help search, and also change viewport from 2D, 3D to Script Editor, then this errors in Valgrind shows:
```
Invalid read of size 8
at 0x2B3... | bug,topic:editor,confirmed | low | Critical |
455,605,406 | vue | Regular slot and scoped slot with same name shouldn't be allowed | ### Version
2.6.10
### Reproduction link
[https://codepen.io/lee88688/pen/jjPpBm?editors=1010](https://codepen.io/lee88688/pen/jjPpBm?editors=1010)
### Steps to reproduce
as seen in codepen, "hello" component have only one slot. but rendered 2 div tag at last. I have a look at Vue's code [renderSl... | contribution welcome,feature request,warnings | low | Major |
455,615,803 | create-react-app | use axios is not working in ie9-ie11 | **### Environment**
node version: 11.12.0,
npm version: 6.7.0
create-react-app:3.0.1
This problem is specific for IE11 running on Windows 10
**index.js below:**
```
import 'react-app-polyfill/ie9';
import 'react-app-polyfill/ie11';
import 'react-app-polyfill/stable';
import 'es6-promise/auto'
```
**serv... | issue: needs investigation | low | Critical |
455,625,281 | TypeScript | Separate directories for map files | Hi!
I find it rather odd that the option mapRoot exists without a corresponding option which outputs the map files to said directory. I have to manually move them after transpiling, which is annoying (AND keep the same directory structure).
Here is a SO question which is valid for my case aswell: https://stackoverf... | Suggestion,Awaiting More Feedback | low | Minor |
455,682,828 | vue | Computed properties can have widely different performance characteristics on client and server (because they are not cached during SSR) | ### Version
[`v2.4.3`](https://github.com/vuejs/vue/releases/tag/v2.4.3) - current ([`v2.6.10`](https://github.com/vuejs/vue/releases/tag/v2.6.10))
### Reproduction link
[https://jsfiddle.net/anc6Lf23/2/](https://jsfiddle.net/anc6Lf23/2/)
### Steps to reproduce
1. Open the JSFiddle
2. You will see the time it... | discussion,feat:ssr | low | Major |
455,733,448 | rust | `error[E0275]: overflow evaluating the requirement` from type inference | Example:
https://play.rust-lang.org/?version=nightly&mode=debug&edition=2015&gist=03db32f00662d579ef0d91306b7c2ef5
If the trait type is listed explicitly instead of using type inference, then the error goes away. Likewise, if the recursive implementation for `Vec` is commented out, the error goes away.
This se... | T-compiler,A-inference,C-bug | low | Critical |
455,736,379 | pytorch | Improve multithreaded random number generation (RNG) | We received some internal reports (for FB employees: https://fb.workplace.com/groups/329222650990087/permalink/438424466736571/) that multithreaded processing with RNG performs poorly. This is probably because the majority of our CPU code takes out a lock (locking) for the entirety of the kernel in question.
@syed-a... | module: cpu,triaged,module: random,module: multithreading | low | Minor |
455,751,301 | flutter | Ability to disable Dismissible's clipper | Dismissible implements a [_DismissibleClipper](https://github.com/flutter/flutter/blob/f31fc1bd0faa9b706468cd4fed58b55e7d8eb509/packages/flutter/lib/src/widgets/dismissible.dart#L557) which prevents the background widget from displaying overflowing content beyond the current sliding state.
This causes widgets that are... | c: new feature,framework,f: material design,c: proposal,has reproducible steps,P3,workaround available,team-design,triaged-design,found in release: 3.16,found in release: 3.18 | low | Major |
455,765,041 | vscode | Breakpoint moves with copy line up/down action | **Version:**
- VSCode Version: 1.35.0
- OS Version: Windows 10.0.17134.799
**Steps to Reproduce:**
1. Create a new code file (of any supported language).
2. Write a few lines of code.
3. Place a break-point on a line.
4. Copy the line using _Copy Line Up_ or _Copy Line Down_ actions.
**Bug:**
The break-poi... | editor-contrib,under-discussion | low | Critical |
455,770,894 | youtube-dl | ProgramCode from Page Source as filename? | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check lis... | request | low | Critical |
455,816,529 | TypeScript | Add a new type PublicOf | ## Suggestion
Add the `PublicOf` type suggested in this [issue's comment](https://github.com/microsoft/TypeScript/issues/471#issuecomment-381842426) by @DanielRosenwasser
## Use Cases
Implement a `class` public properties/methods without the need to implement private/protected ones.
## Examples
```typescr... | Suggestion,In Discussion | low | Minor |
455,825,327 | pytorch | symbol lookup error: libmkl_intel_lp64.so: undefined symbol: mkl_blas_dsyrk (binaries built with static linking -DBUILD_SHARED_LIBS=OFF fail due to dynamic linker problem) | Steps to reproduce:
```
mkdir build
(cd build && cmake -DBUILD_CAFFE2_OPS=OFF -DBUILD_SHARED_LIBS=OFF -DUSE_CUDA=OFF -DUSE_MKLDNN=OFF -DPYTHON_EXECUTABLE=$(which python) -DBUILD_BINARY=ON .. && make -j)
```
Try to run one of the built binaries, e.g., `caffe2_benchmark`. It fails with:
```
build/bin/caffe2... | module: build,triaged,module: static linking,module: third_party,has workaround | low | Critical |
455,853,629 | go | cmd/go: add a new flag to disable unzipping after go mod download | The `go mod download` caches the module files into the `$GOPATH/pkg/mod/cache/download` by default and extracts them into the `$GOPATH/pkg/mod` after the downloads are complete. This's fine. But today I encountered a problem that reminds me that we may need to disable the unzipping operation at some point.
---
So... | NeedsInvestigation,FeatureRequest,GoCommand,modules | low | Critical |
455,869,584 | pytorch | torch.save also saves docstrings into pickle for some reason | Steps to reproduce:
1. Run:
```
from torch import nn
import torch
torch.save(nn.Conv2d(1, 1, 1, 1), 'moo.pt')
```
2. Open `moo.pt` in your editor
Expected result: a bunch of unintelligible binary gobbeldygook
Actual result: I see a docstring!!!
```
<80>^B<8a>
lü<9c>Fù j¨P^Y.<80>^BMé^C.<80>^B}q^@(X... | module: serialization,triaged | low | Major |
455,912,586 | rust | annotate-snippet emitter: Include suggestions in output | Part of https://github.com/rust-lang/rust/issues/59346
In order for the new `AnnotateSnippetEmitterWriter` to include suggestions in the output, we essentially have to pass `&db.suggestions` to `emit_messages_default` and deal with a couple of edge-cases.
Relevant `FIXME`:
https://github.com/rust-lang/rust/blo... | C-enhancement,A-diagnostics,T-compiler,E-help-wanted | low | Critical |
455,914,240 | flutter | Semantics for Material Date picker emits unnecessary semantics nodes | This may not be a bug with DatePicker, but rather with the semantics compiler.
Reproduction:
With semantics enabled, open a DatePicker and dump the tree.
You'll see several `SemanticsNode`s for the weekday header (each one is actually an `ExcludeSemantics`), and for each empty container for days of the week t... | framework,f: material design,a: accessibility,P2,team-design,triaged-design | low | Critical |
455,919,289 | flutter | Fix semantics offset rect for inline widgets | In `Paragraph.assembleSemanticsNode`, we are not properly including the offset of the placeholder rect in the semantics rect for the placeholder.
We should fix this, and fix that tests regarding this. See https://github.com/flutter/flutter/pull/34368 | framework,a: accessibility,a: typography,P2,team-framework,triaged-framework | low | Minor |
455,925,820 | kubernetes | Remove the /cluster directory | For years we have publicly stated that the /cluster directory is deprecated and not maintained. However every cycle it is updated and there are bugs found+fixed by sig-cluster-lifecycle.
I'd like to enumerate what needs to get done in order for us to wholesale remove the /cluster directory.
/assign @dims @spi... | area/test,sig/scalability,area/provider/gcp,sig/cluster-lifecycle,kind/feature,sig/testing,priority/important-longterm,lifecycle/frozen,sig/cloud-provider,area/code-organization,needs-triage | medium | Critical |
455,942,525 | TypeScript | Placeholder Type Declarations | # Background
There are times when users need to express that a type *might* exist depending on the environment in which code will eventually be run. Typically, the intent is that if such a type can be manufactured, a library can support operations on that type.
One common example of this might be the `Buffer` typ... | Suggestion,In Discussion | high | Critical |
455,955,433 | flutter | Determine if iOS's rapid render upon app switch is vsync'ed | Determine if iOS's rapid render upon app switch is vsync'ed | team,platform-ios,engine,P2,team-ios,triaged-ios | low | Minor |
455,962,437 | terminal | If setting change requires restart, notify user | # Summary
If a setting is changed that requires the Terminal to restart in order for the setting change to take effect, consider displaying a message to the user prompting them to restart their Terminal.
Also, consider making it easier to identify settings that require a Terminal restart if changed, perhaps using a... | Area-Settings,Product-Terminal,Issue-Task | low | Minor |
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.