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 |
|---|---|---|---|---|---|---|
690,958,807 | gin | Can gin have a group without a prefix? | Can gin have a group without a prefix?
According to the documentation on the method, the answer is YES. but I need to make sure it is supported.
https://github.com/gin-gonic/gin/blob/0304ee96edb2f7f863d5e8337073cade0327af4a/ginS/gins.go#L50
What I am trying to achieve is to group some routes together and apply... | question | low | Minor |
691,036,697 | opencv | dnn::Net: Get shape of multiple input layers (`getUnconnectedInLayers()`) | ##### System information (version)
- OpenCV => 4.4.0-dev
##### Detailed description
I was wondering if dnn::Net offers a similar method to `getUnconnectedOutputLayers()` for input layers. Use case would be a model that has multiple input layers, and I want to perform a dummy forward to preload the model and warm u... | feature,category: dnn | low | Major |
691,048,136 | rust | Large performance drop in compiled binary in stable rust 1.45.2 vs 1.44.0 on x86_64 linux | I have experienced more than 300% longer execution time in specific functions that use loops along with indexing into slices. After several hours of work with a profiler, I was able to isolate the problem from a 60K lines codebase into the following short program
```rust
use std::cmp;
#[inline(never)]
pub fn cm... | A-LLVM,I-slow,E-needs-test,T-compiler,regression-from-stable-to-stable,C-bug | medium | Major |
691,050,801 | godot | ScrollContainer does not follow focus correctly when changing Rect scale |
**Godot version:**
3.2.2
**OS/device including version:**
Linux 5.8.3-2-MANJARO
**Issue description:**
By clicking on a button and pressing UP and DOWN arrows on the keyboard, the ScrollContainer follows the focus fine but if the
size of the container is reduced using the scale property then the co... | bug,topic:gui | low | Minor |
691,054,018 | rust | Unstable Book: "gen_future" leads to a closed tracking issue | Unstable Book in section [gen_future](https://doc.rust-lang.org/nightly/unstable-book/library-features/gen-future.html) leads to a closed tracking issue https://github.com/rust-lang/rust/issues/50547 titled `Tracking issue for async/await (RFC 2394)`.
There are a few solutions to this:
\- reopen the tracking issue,... | A-docs | low | Minor |
691,056,765 | pytorch | [Feature] Einsum like ShapeGuard | ## ๐ Feature
ShapeGuard allows you to very succinctly assert the expected shapes of tensors in a dynamic, einsum inspired style.
## Motivation
Itโs easy to make bugs in ml. One particular rich source of bugs is unintended broadcasting and the flexibility of the operators: a*b works whether a and b are vectors, ... | feature,triaged,shadow review | low | Critical |
691,076,861 | PowerToys | [KBM] Adding exceptions to "All Apps", or defining a list of apps for a same shortcut | ## ๐ Provide a description of the new feature
In Keyboard Manager, it's possible to remap a shortcut globally. Since there are many annoying programs that not only don't use what I consider the standard shortcut, Ctrl+Shift-Z, for Redo, but some of them even have another action on there, which results in a loss of ... | Idea-Enhancement,Help Wanted,Product-Keyboard Shortcut Manager | medium | Critical |
691,092,737 | go | x/tools/go/ssa: relies on explicitly-unstable testing.MainStart | https://build.golang.org/log/83ea7f332b5b9c7b09ee1f00d5ac8d6f947b29b0:
```
Entering directory `/workdir/gopath/src/golang.org/x/tools/go/pointer'
2020/09/02 14:32:24 internal error type-checking main$testmain: main$testmain.go:42:25: cannot use match (variable of type deps) as testing.testDeps value in argument to... | NeedsFix | low | Critical |
691,110,681 | pytorch | Immutable (read-only) tensors | Previously: https://github.com/pytorch/pytorch/issues/30458
An immutable tensor is a tensor which cannot be mutated, e.g., via inplace operations or `out=` operations. Due to the reduced API surface of immutable tensors, they can be implemented in several different ways without an observable difference in user behav... | triaged | medium | Critical |
691,157,349 | rust | Windows SOCKET type defined inconsistently between libc vs std::os::windows | - https://github.com/rust-lang/rust/blob/master/library/std/src/sys/windows/ext/raw.rs says u32/u64
- https://github.com/rust-lang/libc/blob/master/src/windows/mod.rs#L51 says uintptr_t aka usize
For some reason official MS SDK docs likes to [keep the actual definition a secret](https://docs.microsoft.com/en-us/win... | O-windows,T-libs-api,C-bug,A-io | low | Major |
691,162,523 | PowerToys | [Run] Add Telemetry for exceptions | Powertoys run has a number of try-catch blocks across the Pt Run project, which could potentially result in a number of critical functionalities failing silently. | Product-PowerToys Run,Area-Quality,Area-Telemetry,Issue-Task | low | Minor |
691,176,388 | PowerToys | [Run] Synchronize settings file read/write | The following events happen during a setting update :
1. The settings process communicates updates to the runner using IPC.
2. Runner updates `settings.json` file.
3. FileWatcher for `settings.json` is triggered in the PowerLauncher process, updating current runtime settings.
FileWatcher in step 3 is called sev... | Issue-Bug,Product-PowerToys Run,Area-Quality | low | Minor |
691,182,931 | PowerToys | [PowerRename] Log to a file old and new filename | ## ๐ The Renaming tool is quite powerful but lacks a log-entry
_A nice addition would be just a simple txt-file as a log so that one can use the tool for blinding e.g. filenames for a scientific experiment quickly and simply open a created log-file that tells the old and new name._
---
If you'd like to see t... | Idea-Enhancement,Help Wanted,Product-PowerRename | low | Minor |
691,276,056 | TypeScript | Can Module Resolution Cache Usage Be Improved? | **TypeScript Version:** 4.1.0-dev.20200902
**Search Terms:**
- module resolution cache
- resolveModuleNamesReusingOldState
- module resolution performance
**Expected behavior:**
Module resolution cache for files from a different `Program` is reused by `resolveModuleNamesReusingOldState`.
**Actual behavior... | Suggestion,In Discussion,Needs Investigation,Rescheduled | low | Major |
691,329,951 | flutter | Export CalendarDateRangePicker class at material public api |
## Use case
My design created his own style range date picker, but since CalendarDateRangePicker class is not exported `/material/pickers/pickers.dart` (only the function showDateRangePicker) we can use this as a widget, so we can customize, com compose anything with this function.
:
for _ in range(x.size(0)):
x += 1.0
return x
class Foo(... | triaged,module: fx | low | Critical |
691,353,342 | react-native | Persist user preferences of React DevTools when debugging with Flipper | ## Description
When I am debugging my React Native app using the React DevTools in Flipper, I like to change the settings/preferences available, in particular the component filter to remove components I don't care about so I can locate the component I'm after more easily.
However, when the app is being reloaded, ... | DX,Tool: Flipper,Never gets stale | low | Critical |
691,379,062 | TypeScript | ?? and ??= behave differently when they shouldn't | <!-- ๐จ STOP ๐จ STOP ๐จ 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 before lo... | Bug,Help Wanted,Effort: Moderate | low | Critical |
691,388,533 | PowerToys | [Run] Customizable icons for search results | ๐ The choice to customize icons for PowerToys Run
What is the expected behavior of the proposed feature?
-- A feature, where we are able to customize our own icons for each application rather than the once given by Microsoft or any
other developer.
What is the scenario this would be used?
-- To mak... | Idea-Enhancement,Product-PowerToys Run | low | Minor |
691,399,471 | three.js | Wrong animation duration/offsets with FBXLoader | ##### Description of the problem
I have a FBX file with multiple animations created with Maya.
The animations are created on a single timeline and exorted with the Game Exporter - that's the only way I found to pack multiple animations in a single file.
 and 250millis | Currently: easeInOut and 200millis.
It should be: fastOutSlowIn and 250millis.
Perhaps the curve and duration should be configurable parameters on the `NavigationRail` too. | framework,a: animation,f: material design,c: proposal,team-design,triaged-design | low | Major |
691,413,259 | svelte | Audio Element Bindings Working Unreliably in Firefox | **Describe the bug**
When (1) Server-side rendering and (2) Browsing in firefox, Svelte fails to set bindings for values that are initialized to a value on page reload.
For instance, with code like
```
<audio ... bind:duration={myDuration} />
```
if `myDuration` is initialized to 0, then it will remain zero... | stale-bot | low | Critical |
691,504,226 | pytorch | [jit] Better type refinement for class attributes which are class types | Reported internally but seen this several times, our type refinement works for container types, but not for class attributes, this is pretty UX disruptive as the user need to assign it to local variable and then do the type refinement
```
class MyClass:
weight: Optional[torch.Tensor]
def func(self):
... | oncall: jit,weeks,months,TSRootCause:TypeRefinement,TSUsability | low | Minor |
691,526,920 | create-react-app | Add support for enabling Jest automock without ejecting | ### Describe the solution you'd like
<!--
Provide a clear and concise description of what you want to happen.
-->
It would be great to be able to enable `automock` in the `jest` configuration for our application's `package.json`.
```
"jest": {
"automock": true,
/* ... */
}
```
Currently... | issue: proposal,needs triage | low | Major |
691,541,118 | pytorch | [RFC] Manage CUDA Stream in TensorPipe RPC Agent | with @lw @beauby
## API
There is no new API, but has a new behavior for sending/receiving CUDA tensors. The TensorPipe RPC agent will maintain a stream pool, and grab streams from the pool to 1) send tensors 2) receive tensors 3) run user functions.
The guarantees we offer are:
1. RPC user functions are l... | feature,triaged,module: rpc,module: tensorpipe | low | Major |
691,593,408 | angular | Angular SwPush subscription refresh | # ๐ feature request
### Relevant Package
This feature request is for @angular/service-worker
### Description
Using Angular's SwPush, we are looking for:
1) A way to refresh old or expired web push subscriptions. The standard explains how the browser is expected to do this automatically (https://www.w3.org/... | type: bug/fix,area: service-worker,state: confirmed,P3 | low | Major |
691,599,609 | flutter | Expose access to iOS's 'preferredScreenEdgesDeferringSystemGestures' | I show a modal tray at the bottom of my app, and I want users to be able to swipe down to dismiss it. On iOS, this triggers the OS to pull the whole app down as part of iOS's "reachability" feature.
iOS exposes a way to prefer in-app gestures over system gestures: [preferredScreenEdgesDeferringSystemGestures](https:... | c: new feature,platform-ios,framework,f: cupertino,f: gestures,c: proposal,team-design,triaged-design | medium | Major |
691,599,812 | electron | BrowserWindow.getContentSize() does not behave the same as expected | <!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-... | platform/windows,bug :beetle:,status/confirmed,component/BrowserWindow,10-x-y,has-repro-gist,12-x-y | medium | Critical |
691,632,761 | ant-design | Drag nodes between trees and tables | - [ ] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate.
### What problem does this feature solve?
Is there any ways to drag and drop nodes between two trees in different components
### What does the proposed API look like?
... | ๐ก Feature Request,Inactive | low | Minor |
691,635,787 | vscode | [json] Format selection doesn't fix indentation | * have the JSON snippet below
* select the 2nd line
* run "Format Selection"
* :bug: the indentation isn't fixed
```json
{
"foobar": true,
"bazz": false
}
```
_Originally posted by @misolori in https://github.com/microsoft/vscode/issues/105800#issuecomment-685804555_ | feature-request,json | low | Critical |
691,732,341 | vscode | Workbench hover: a lot of whitespace in this case | I am using web and just saw this hover which appeared very large:

| bug,workbench-hover | low | Minor |
691,738,421 | rust | Memory overflow when compiling | When compiling this code the compiler starts using more and more memory trill it gets terminated by signal: 15, SIGTERM: termination signal
That's the best minimal code I could come up with...
### Code
```Rust
use actix_web::{web, App, HttpServer, Responder};
use mongodb::Client;
async fn get(
client: ... | T-compiler,I-compilemem,C-bug,E-needs-mcve | low | Critical |
691,760,068 | pytorch | Item seems to affect the backward process of DataParallel | PyTorch :1.5.0
model : resnet50
Background:
I currently have two test environments, one is a physical machine with 8 gpus, and the other is a 4 gpus Docker on this physical machine.
Run the 4 gpus resnet50 model (using DataParallel) in these two environments. The code of the train part is as follows:
```
model.... | module: cuda,triaged,module: data parallel | low | Minor |
691,896,431 | rust | [ER] Cargo features fix suggestions | Please tell me if I have to move this diagnostic Enhancement Request elsewhere (into the the Cargo stuff).
In a new Cargo project I create in vec_test\src\main.rs:
```rust
use tinyvec::*;
fn main() {
let mut v = TinyVec::<[u8; 15]>::new();
}
```
It doesn't compile and it doesn't explain how to fix the... | A-diagnostics,T-compiler,C-feature-request | low | Critical |
691,931,029 | flutter | [web] Enter key event is not called in the FocusNode's onKey | <!-- 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... | a: text input,framework,engine,f: material design,platform-web,has reproducible steps,P2,found in release: 3.7,found in release: 3.9,team-web,triaged-web | low | Critical |
691,939,405 | PowerToys | updating: check for the newer version after clicking the toast | <!--
**Important: When reporting BSODs or security issues, DO NOT attach memory dumps, logs, or traces to Github issues**.
Instead, send dumps/traces to secure@microsoft.com, referencing this GitHub issue.
-->
## ๐ Provide detailed reproduction steps (if any)
if we don't click 'update' button on the notificat... | Issue-Bug,Area-Setup/Install,Cost-Large | low | Major |
691,944,739 | create-react-app | Percentage opacities in CSS files will compile to "1%" in a production build | Originally reported by @mruiz42: https://github.com/facebook/react/issues/19747
* Source code: https://codesandbox.io/s/trusting-glitter-0icl7
* Deployed sandbox: https://csb-0icl7.netlify.app/
[Recap of the problem](https://github.com/facebook/react/issues/19747#issuecomment-686297888), courtesy of @eps1lon:
... | tag: underlying tools,issue: bug report | low | Critical |
691,954,724 | neovim | Structural Editing : Tracking Issue | # Structural editing
Currently, we use treesitter as an overlay over buffer contents.
While this is already really cool, what would be better is being able to edit the tree itself and change the content of the buffer, keeping it in a valid state syntactically speaking : this is Structural Editing.
We can think o... | enhancement,syntax,treesitter | medium | Major |
691,964,584 | vscode | setting UI: support color settings | #105811 added the `screencastMode.mouseIndicatorColor` setting representing a color
- open the JSON settings (JSON), add "screencastMode.mouseIndicatorColor": "#ff00ff"
- see that there's a color decorator and that there's validation if you change the value to an invalid color
Now open the same setting in the se... | feature-request,settings-editor | low | Critical |
691,980,074 | go | x/playground: falsely detects a deadlock when running Cmd.StderrPipe example code | <!--
Please answer these questions before submitting your issue. Thanks!
For questions please use one of our forums: https://github.com/golang/go/wiki/Questions
-->
### What version of Go are you using (`go version`)?
The playground
### Does this issue reproduce with the latest release?
Works on latest r... | NeedsDecision | low | Critical |
691,984,910 | fastapi | Automatic OPTIONS request with route schema | ### First check
Yes to all (great list of checks btw, I might copy them to pydantic ๐ )
### Thank you
@tiangolo FastAPI is great. This is the first time I've used it in production and I'm really impressed by both the range of features and particularly the documentation. I've written and deployed web apps usin... | feature,investigate,reviewed | medium | Major |
692,014,254 | godot | Crash IDE when connecting nodes |
**Godot version:**
v3.2.3.rc4.official
**OS/device including version:**
OS: Windows 10 64-bit
Graphics card: NVIDIA GeForce 930M
**Issue description:**
When these nodes are connected, the IDE just crashes.
I understand that this is not the correct connection, but it can be reported somehow better =)
... | bug,confirmed,topic:visualscript,crash | low | Critical |
692,014,512 | rust | Add regression tests for rust-lldb python wrappers | I am posting this issue mostly as a reminder that we should investigate why our current test suite didn't seem to catch the breakage from #76006 on any of our CI platforms | A-testsuite,T-compiler,T-infra,C-bug | low | Minor |
692,081,243 | PowerToys | PowerToysRun: Custom labels on results | It would be useful to add "tags" or "labels" to current results (mainly for running process) and use them in search.
Something like labels in github issues or gmail.
For example if I have many Chrome or VisualStudio windows opened, now I am "forced" to search for "chrome":
?
<pre>
$ go version
go version go1.15 darwin/amd64
</pre>
### Does this issue reproduce ... | NeedsInvestigation,Analysis | medium | Critical |
692,170,075 | rust | Add file owner to os::windows::fs::MetadataExt | `os::unix::fs::MetadataExt` has [a uid method](https://doc.rust-lang.org/std/os/unix/fs/trait.MetadataExt.html#tymethod.uid) for getting the file owner, but there is no equivalent for `os::windows::fs::MetadataExt`.
It would be great to have this as an option. | O-windows,T-libs-api,C-feature-request,A-io | low | Minor |
692,188,531 | rust | --extern-html-root-url uses library names to identify dependencies, failing to handle multiple versions | With this package that uses dependency renaming:
```toml
# Cargo.toml
[package]
name = "foobar"
version = "0.1.0"
edition = "2018"
[dependencies]
ac = { package = "async-compression", features = ["stream", "gzip"], version = "0.3" }
ac02 = { package = "async-compression", features = ["stream", "gzip"], v... | T-rustdoc,C-bug,requires-nightly | low | Critical |
692,192,116 | terminal | Allow color fields to refer back to the active color scheme (like "cursorColor = yellow") | I can't do this
"cursorColor": "yellow"
AFAICT, to get a "yellow" cursor I must (look up and) hard code the "yellow" value from the current theme.
Is there a better way? If not I suggest that you allow color names for "cursorColor"
And what's the difference between "#rgb" and "#rrggbb"? | Area-Settings,Product-Terminal,Issue-Task | low | Major |
692,287,977 | kubernetes | test/e2e/upgrade tests are not running | **Which test(s) are failing**:
All tests in https://github.com/kubernetes/kubernetes/tree/master/test/e2e/upgrades
**Which jobs are failing**:
All jobs running those tests, e.g. https://prow.k8s.io/job-history/gs/kubernetes-jenkins/logs/ci-kubernetes-e2e-gce-stable2-stable1-upgrade-cluster
**Since when has ... | priority/important-soon,sig/cluster-lifecycle,sig/testing,kind/failing-test,sig/architecture,lifecycle/frozen | low | Critical |
692,307,406 | flutter | Cannot flutter attach, failed to complete: _flutter.runInView: (-32000) Could not run configuration in engine | ### Steps to Reproduce
1. `flutter create` a new app
2. Open terminal session A and a second session B.
3. In terminal A, `flutter run`. Wait until the observatory attaches. Hot restart works fine.
4. In terminal B, `flutter attach`. It will never attach, and will be stuck at `Updating files`.
5. Back in term... | c: crash,tool,P2,team-tool,triaged-tool | low | Critical |
692,334,344 | terminal | Text selection breaks in funny ways when program keeps printing to console | 
| Help Wanted,Area-Rendering,Issue-Bug,Area-TerminalControl,Product-Terminal,Priority-2 | low | Major |
692,345,227 | PowerToys | [Run] Improve priority of results having match from start of a word. | I would expect `Microsoft teams` to show above `Steam` in results on querying `Team`.

| Issue-Bug,Product-PowerToys Run,Area-Quality | low | Minor |
692,351,756 | go | x/website: make supported OS versions easier to find | I spent a long time just now trying to identify which versions of Go support which operating system versions.
I thought this used to be documented on the install page.
All I can find is the text _inside_ the "featured download" buttons on https://golang.org/dl/.
That can't be the only source for this info.
FreeBSD is a... | Documentation,NeedsFix,website | low | Major |
692,431,596 | flutter | Significant Android rendering performance issue using Path.addPath() | <!-- 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,engine,a: animation,c: performance,dependency: skia,perf: speed,P2,team-android,triaged-android | low | Critical |
692,447,971 | pytorch | CUDA memory leak in multi-processing | ## ๐ CUDA memory leak in multi-processing
I'm working on parallelizing my training tasks (that are independent) in a multi-GPU setting. For this, I have created several workers (processes) that take a list of tasks and work parallelly to finish them. Each task is assigned with a device and any process that executes... | module: performance,module: cuda,module: memory usage,triaged | low | Critical |
692,466,715 | pytorch | [Feature Request] Add an option to run GPU tests only, and skip all CPU tests | ## ๐ Feature
Add an option to run GPU tests only, and skip all CPU tests
For example, we can have an environment variable `PYTORCH_TEST_GPU_ONLY=1`.
## Motivation
Usually, when people only want to test GPU functionalities, they can skip CPU tests to save plenty of times.
## Pitch
<!-- A clear and co... | feature,module: tests,triaged | low | Major |
692,486,816 | material-ui | Add Image component | - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate.
## Summary ๐ก
Implement an enhanced version of the native `<img>` element.
## Examples ๐
```jsx
import { Image } from '@material-ui/core';
<Image src="" />
```... | new feature,waiting for ๐ | medium | Critical |
692,510,718 | material-ui | Support simple badges | - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate.
## Summary ๐ก
Broaden the use cases supported by the Chip/Badge component, make it support the use cases of what most designers and developers associate with a "badge".
... | new feature,waiting for ๐,component: badge | medium | Minor |
692,521,788 | material-ui | Add Stat component | - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate.
## Summary ๐ก
Display one number on a dashboard.
## Examples ๐
```jsx
<Stat>
<StatLabel>Avg. Open Rate</StatLabel>
<StatNumber>58.16%</StatNumber>
... | new feature,discussion,waiting for ๐ | low | Major |
692,567,163 | flutter | integration_tests fail on a CI system targeting iOS 14, stuck on local network permission popup | On iOS 14, an integration_test test will prompt the user to allow local network access when the observatory publishes:
<img src="https://user-images.githubusercontent.com/682784/92187737-726eb700-ee0f-11ea-889b-856559c2ef3c.png" width="500">
The tests hang forever until you hit OK, so fails in a CI setup when the... | a: tests,team,platform-ios,e: OS-version specific,f: integration_test,P2,team-ios,triaged-ios | low | Critical |
692,578,763 | terminal | Build with ASAN (address sanitizer) and run against those builds in Helix | > ASan is a fast memory error detector that can find runtime memory issues such as use-after-free and perform out of bounds checks.
> ([source](https://devblogs.microsoft.com/cppblog/addresssanitizer-asan-for-windows-with-msvc/)) | Area-Build,Product-Meta,Issue-Task,Area-CodeHealth | low | Critical |
692,614,825 | pytorch | Deadlock with RPC and dist.barrier() for TensorPipeAgent and NCCL. | ## ๐ Bug
I ran into an interesting issue when using TensorPipe GPU tensors with dist.barrier() (backend being NCCL). Something simple like the following, would hang occasionally due to a deadlock (each worker executes the following):
```
# Worker0 sends RPC to Worker1 and Worker1 sends to Worker0
rpc.rpc_sync(... | triaged,module: nccl,module: rpc,module: tensorpipe | low | Critical |
692,615,806 | flutter | [macOS] Launch isolate with an entrypoint from another library? | <!-- 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-mac,c: proposal,a: desktop,P2,team-macos,triaged-macos | low | Critical |
692,648,780 | pytorch | build from scratch failed because of the expansion of macro | ## ๐ Bug
<!-- A clear and concise description of what the bug is. -->
build from source(commit:4bb5d33076ca79836a780df9473fdc96cad21a45) failed๏ผand I commented the line 212 in anaconda3/include/python3.8/pyport.h๏ผthen made the compilation completed.
## To Reproduce
Steps to reproduce the behavior:
1ใpython se... | module: build,triaged | low | Critical |
692,655,211 | flutter | ListView is missing frames when using API "animateTo" | <!-- 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... | framework,a: animation,c: performance,f: scrolling,perf: speed,P2,team-framework,triaged-framework | low | Critical |
692,686,227 | TypeScript | Type Cast or Assertions on the FunctionDeclaration | <!-- ๐จ STOP ๐จ ๐ฆ๐ง๐ข๐ฃ ๐จ ๐บ๐ป๐ถ๐ท ๐จ
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker.
Please help us by doing the following steps before logging an issue:
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues
* Read the FAQ, especia... | Suggestion,Awaiting More Feedback | low | Critical |
692,740,314 | rust | Tracking Issue for atomic_from_mut | Feature gate: `#![feature(atomic_from_mut)]`
### Public API
```rust
impl AtomicU32 {
pub fn from_mut(v: &mut u32) -> &mut Self;
pub fn from_mut_slice(v: &mut [u32]) -> &mut [Self];
pub fn get_mut_slice(this: &mut [Self]) -> &mut [u32];
}
// And same for AtomicBool, AtomicU8, AtomicU16, AtomicU... | A-concurrency,T-libs-api,C-tracking-issue,Libs-Tracked,A-atomic | medium | Critical |
692,791,398 | flutter | OK/Select on IR Remotes causing Exception | I am receiving this exception when pressing the OK/DPAD_CENTER button.
This is happening on two separate systems, on running Android 4.4 and the other Android 9.0.
```
Attempted to send a key down event when no keys are in keysPressed. This state can occur if the key event being sent doesn't properly set its modif... | a: text input,c: crash,platform-android,framework,P2,team-android,triaged-android | low | Critical |
692,831,316 | pytorch | REINFORCEMENT LEARNING (DQN) TUTORIAL is not working anymore due to matplotlib.pyplot.imshow() | ## ๐ Documentation
Dear @apaszke,
I would like to kindly remind you of an matplotlib NameError exception due to matplotlib.pyplot.imshow(). To reproduce this error, you may run [reinforcement_q_learning.ipynb in google colab](https://colab.research.google.com/github/pytorch/tutorials/blob/gh-pages/_downloads/2b3... | module: docs,triaged | low | Critical |
692,853,450 | pytorch | Support keep stride for neg with requires_grad=False | ## ๐ Feature
<!-- A clear and concise description of the feature proposal -->
Support that the output stride is identical to the input stride for `__neg__`, at least, when `requires_grad=False`.
Advantage: Less memory consumption and fewer computations.
The code
```python
import torch
print(torch.__version__)... | module: memory usage,triaged,enhancement,module: numpy | low | Major |
692,911,942 | pytorch | caffe2: Python 3 deprecation warnings about inspect.getargspec | ## ๐ Bug
I work with a legacy code which uses caffe2. I've recently switched the code from Python 2 to Python 3. When I run *pytest*, it catches several deprecation warnings about `inspect.getargspec`. This function is not compatible with Python 3.
## To Reproduce
Steps to reproduce the behavior:
* This is... | caffe2,triaged | low | Critical |
692,948,291 | rust | [ER] Suggest usage of .try_into().unwrap() for desired slices => array | This is an Enhancement Request. This wrong code:
```rust
fn foo1(a: [u32; 3]) -> [u32; 2] {
&a[1 ..]
}
fn main() {}
```
With rustc (1.48.0-nightly 0d0f6b113 2020-09-03) gives:
```rust
error[E0308]: mismatched types
--> ...\test.rs:4:5
|
3 | fn foo1(a: [u32; 3]) -> [u32; 2] {
| ... | C-enhancement,T-compiler,A-suggestion-diagnostics | low | Critical |
692,954,907 | flutter | [tool_crash] FileSystemException: Cannot create file, OS Error: The system cannot find the file specified., errno = 2 | ## Command
```
flutter create buji
```
## Steps to Reproduce
1. ...
2. ...
3. ...
## Logs
FileSystemException: Cannot create file, OS Error: The system cannot find the file specified.
, errno = 2
```
#0 _File.throwIfError (dart:io/file_impl.dart:635:7)
#1 _File.createSync (dart:io/file_impl.d... | c: crash,tool,P2,team-tool,triaged-tool | low | Critical |
692,976,742 | opencv | imread fail in android's JNI sometimes. | ##### System information (version)
- OpenCV => :4.4.0, 4.2.0, 4.1.0, 4.0.1
- Operating System / Platform => :android api 29, ndk 21
##### Detailed description
I'm trying to read images by opencv on android's JNI. Here is my code.
```
#include <android/asset_manager_jni.h>
#include <android/bitmap.h>
#include ... | platform: android,category: imgcodecs,incomplete,needs investigation | low | Critical |
693,051,503 | go | x/sys/windows: GetLastError always returns nil | <!--
Please answer these questions before submitting your issue. Thanks!
For questions please use one of our forums: https://github.com/golang/go/wiki/Questions
-->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.14.7 windows/amd64
</pre>
### Does this issue reprodu... | OS-Windows,NeedsDecision,compiler/runtime | low | Critical |
693,099,591 | flutter | Support stylus input on Windows 10 devices | Flutter is currently unable to properly detect stylus events on Windows 10 (that requires information about pressure sensitivity and tilt). This feature is available on mobile platforms, but not on desktop platforms (the request for Linux can be found [here](https://github.com/flutter/flutter/issues/63209)). Stylus in... | c: new feature,engine,platform-windows,c: proposal,a: desktop,P3,team-windows,triaged-windows | medium | Critical |
693,173,057 | go | cmd/cover: //line directives frequently handled incorrectly | (This combines #35781, #33690, #25280, and https://github.com/golang/vscode-go/issues/603)
Source files that contain //line directives confuse the coverage tool, prducing coverage output that is unhelpful or confusing to users.
For instance, a short main.go (import path `foo.gak`) with first lines
```
//
pack... | help wanted,NeedsInvestigation | low | Minor |
693,220,659 | PowerToys | Template repository for new PowerToys |
A new public template repository with all files needed to code a new PowerToy would be awesome.
---
If you'd like to see this feature implemented, add a ๐ reaction to this post.
| Help Wanted,Issue-Docs | low | Major |
693,229,478 | material-ui | [docs-infra] Have inline previews for most of the demos | <!-- Provide a general summary of the feature in the Title above -->
<!--
Thank you very much for contributing to Material-UI by creating an issue! โค๏ธ
To avoid duplicate issues we ask you to check off the following list.
-->
<!-- Checked checkbox should look like this: [x] -->
- [x] I have searched the ... | priority: important,scope: docs-infra | low | Major |
693,265,329 | material-ui | Support a second design system | ## Summary ๐ก
Provide a second theme the community would love. It has to gain traction on its own to make it a successful effort.
## Examples ๐
One example of a component library that supports multiple themes:
<img width="500" alt="Capture dโeฬcran 2020-09-04 aฬ 16 39 02" src="https://user-images.githubuse... | new feature,priority: important,design,design: joy | high | Critical |
693,322,375 | material-ui | Add NProgress component | - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate.
## Summary ๐ก
Provide a component to display a progress bar with Next.js, Gatsby, etc.
## Examples ๐
```jsx
import * as React from 'react';
import NProgressBar fr... | new feature,component: nprogress | medium | Critical |
693,334,496 | go | x/tools/go/packages: use goroutine only for load-ready packages in (*loader).refine | (*loader).refine uses (*loader).loadRecursive internally, which may produce a large amount of goroutine as the import graph grows.
With code like following, you can use goroutine only for packages that are ready to load. ([existing code](https://github.com/golang/tools/blob/93eecc3576be04bf4c262289a280dfe13690c317/g... | NeedsInvestigation,Tools | low | Minor |
693,337,855 | vscode | Provide an option for TextEdit to respect the indentation level | When using `vscode.CompletionItem.additionalTextEdits` to perform additional textedits after a code completion, the textedits don't respect the indentation level at the point where the edits are made, unlike the autocompletion itself which, if it wraps to multiple lines, respects the current indentation level. This is ... | feature-request,api,suggest | low | Minor |
693,485,478 | rust | Is rustc missing an optimisation in this short code sample? | Here are two samples of source code - a [Rust sample](https://rust.godbolt.org/z/7er15d) compiled with Rust 1.46.0 using the `thumbv4m-none-eabi` target, and a [C sample](https://godbolt.org/z/nPqGaP) compiled using clang 10.0.0. (The results are identical using Rust nightly and clang trunk.) They are as far as I can t... | I-slow,T-compiler | low | Major |
693,524,432 | flutter | Possibility to disable drawer open gesture on certain condition | <!-- 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... | framework,f: material design,c: proposal,a: layout,P3,team-design,triaged-design | low | Critical |
693,642,466 | TypeScript | Proposal: Spread Interface Operator | ## Suggestion
When we want to extend a interface we use the "extends" keyword. So for example:
```javascript
interface Foo {
keyA: string,
keyB: number,
}
interface ExtendsFoo extends Foo {
keyC: any
}
```
My idea is to define the same interface ExtendsFoo but using what I would call t... | Suggestion,Awaiting More Feedback | low | Major |
693,712,324 | flutter | Users can't tap menu items that haven't appeared yet. | Users should be able to interact with UI elements before they have finished animating, otherwise the animations are an active hindrance to users who are familiar with the application.
For popup menus in particular, this means the user should be able to select a menu item before it's fully rendered. ~~We used to supp... | framework,a: animation,f: material design,a: accessibility,a: fidelity,a: quality,has reproducible steps,P3,team-design,triaged-design,found in release: 3.19,found in release: 3.20 | low | Major |
693,835,928 | PowerToys | Thumbnails for flv, webp, and webm files | A while back I suggested adding thumbnails for SVG files. Can you add some for *.flv, *.webp, and *.webm files? | Idea-Enhancement,Product-File Explorer | low | Major |
693,836,677 | rust | Recursive Trait Hang in rustc | The code below, as the sole content of main.rs, should reproduce the error:
```rust
pub trait Indexed {
type Index;
}
pub trait At<Address> {
type AtItem;
fn at(&self, address: Address`) -> &Self::AtItem;
}
impl <T, U> At<(T::Index,U)> for T
where
Self: At<T::Index>,
<T as At<T::In... | P-medium,T-compiler,regression-from-stable-to-stable,C-bug,I-hang | low | Critical |
693,865,514 | rust | Extremely confusing error around function pointers with inferred arguments | Consider the following code ([playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=f28baa0f92dd6719da86c30648e1894a)):
```rust
struct S<'a>(&'a str);
fn f(inner: fn(&str, &S)) {
}
#[allow(unreachable_code)]
fn main() {
let inner: fn(_, _) = unimplemented!();
f(inner)... | A-type-system,A-diagnostics,T-compiler,A-inference,D-confusing,T-types | low | Critical |
693,867,438 | rust | Does `[T]::array_chunks` really need to be an iterator? | After bit after reviewing the code in https://github.com/rust-lang/rust/pull/75021 I had a thought: if this iterator is mostly just a wrapper on a slice iterator, does it even need to be an iterator at all?
The original `.chunks()` call does (as does `.windows`), because the slices it wants to return don't exist any... | T-libs-api,B-unstable,A-array | medium | Critical |
694,007,145 | rust | Error reporting from attribute macros regressed in 1.46.0 | We take particular care to make sure that compilation errors associated with the items to which our attribute macros are applied are comprehensible. To that end we have tests to check the output of a variety of expected illegal programs to make sure developers could reasonably be expected to understand and correct thos... | A-diagnostics,P-high,T-compiler,regression-from-stable-to-stable,WG-diagnostics,ICEBreaker-Cleanup-Crew,A-proc-macros | medium | Critical |
694,037,601 | pytorch | torch.mv with sparse matrix gives internal assert on cuda | ## ๐ Bug
torch.mv with sparse matrix gives internal assert on cuda, but works on cpu
## To Reproduce
device = "cuda"
vector = torch.tensor([0.1, 0.2], device=device)
indexes = torch.tensor([[0, 1], [0, 1]])
values = torch.rand(2)
tensor = torch.sparse.FloatTensor(indexes, values, torch.Size([2, 2]))
tens... | module: cuda,triaged,module: assert failure | low | Critical |
694,047,985 | pytorch | Additional clutter memory allocated on GPU 0 when training on GPU 1+ | ## ๐ Bug
Might be related to https://discuss.pytorch.org/t/model-always-allocate-some-memories-on-gpu-0/58340/8
I get similar issue forking via multiprocessing and processing on seperate gpus in separate processes. Additional memory clutter is being allocated on GPU 0 (233mb in my case, seemingly independent of ... | module: cuda,triaged | low | Critical |
694,053,666 | TypeScript | Type narrowing fails when there is a break/return in loop | **TypeScript Version:** 4.0.2
**Search Terms:**
flow type narrowing loop
**Code**
```ts
for (let p: number | string = 1; p; p = p + 1) {
// Just make sure for iterator is reachable
if (p) {
continue
}
// Actually unreachable here
// Comment this line out, everything works c... | Bug | low | Critical |
694,132,494 | go | net/http: ConfigureTransport does not work for Transport with custom DialTLS | <!--
Please answer these questions before submitting your issue. Thanks!
For questions please use one of our forums: https://github.com/golang/go/wiki/Questions
-->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.15 linux/amd64
</pre>
### Does this issue reproduce... | NeedsInvestigation | low | Critical |
694,136,310 | bitcoin | noban permission probably shouldn't give additional permissions implcitly | "Ignore block request below NODE_NETWORK_LIMITED threshold" is skipped for `noban` permission in a manner which actually sends to requested block.
We should probably change it to use `download` permission, or simply ignore the request.
Ignoring requests could cause existing peer software to stall/timeout in theor... | Brainstorming,Bug | low | Minor |
694,139,789 | rust | Get rid of `clean` in rustdoc | Currently, rustdoc has its own data structure for basically everything in the compiler: [`librustdoc::clean::types`](https://doc.rust-lang.org/nightly/nightly-rustc/rustdoc/clean/types/index.html). Collecting these ahead of time is expensive (https://github.com/rust-lang/rust/pull/74590#issuecomment-674587005) and it w... | C-cleanup,T-rustdoc,E-hard,I-compiletime,I-compilemem,C-tracking-issue | low | Critical |
694,147,226 | neovim | :make should be async | ### Actual behaviour
When I use the make command with makeprg set and compile with it the rest of nvim freezes.
### Expected behaviour
nvim shouldn't freeze since this reduces productivity | enhancement,job-control,multiproc | low | Minor |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.