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
619,473,369
flutter
Add support for MediaStore to path_provider
## Use case I want to contribute files of various types (e.g. videos, images, generic files of yet to be defined types to Download) to MediaStore, specifially to MediaStore.downloads, since ExternalStorage seems to be deprecated starting Android SDK 29. ## Proposal The path_provider package only returns paths...
c: new feature,customer: crowd,p: path_provider,package,c: proposal,team-ecosystem,P3,triaged-ecosystem
medium
Critical
619,475,429
create-react-app
Reporter options for Jest
### Is your proposal related to a problem? <!-- Provide a clear and concise description of what the problem is. For example, "I'm always frustrated when..." --> CRA only supports overriding a few Jest options and `reporters` is not one of them. I know that I can add reporters via cli `--reporters=my-report...
issue: proposal,needs triage
low
Minor
619,529,513
ant-design
Unable to demonstrate mobile adaptiveness / friendly capabilities of ant design on ant-design/components/table
- [ ] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate. ### Reproduction link [https://ant.design/components/table/](https://ant.design/components/table/) ### Steps to reproduce 1. Open https://ant.design/components/table/ ...
Inactive,📱Mobile Device
low
Minor
619,548,484
PowerToys
[FZ Editor] Colorful emoiji support for Zone names
0.17 Color >>> black & white. And those monochrome icons are just.....not very good-looking. It would be really cool, if the win+; icons could show in full color.
Idea-Enhancement,FancyZones-Editor,Product-FancyZones,External Dependency-WinUI 3
low
Major
619,554,590
pytorch
Investigate using -cospi(u) / sinpi(u) instead of tan(pi * (u - 0.5)) in transformation::cauchy
> The following code correctly implements the Cauchy quantile function. Again, for the sake of > simplicity, it has been assumed that 0 < u < 1, a ∈ R and b > 0. Infinity should > be returned for u = 0, 1. > ``` > double cauchy_inv(double u, double a, double b) > { > double x; > x = -cospi(u) / sinpi(u); /* x = ...
module: distributions,triaged,module: random
low
Minor
619,555,275
pytorch
Investigate exponential distribution improvements
described in [Reconditioning your quantile function by Keith Pedersen](https://arxiv.org/abs/1704.07949) cc @vincentqb @fritzo @neerajprad @alicanb @vishwakftw @pbelevich @peteroupc
module: distributions,triaged,module: random
low
Minor
619,555,726
pytorch
Investigate using log1p instead of log in transformation functions(TransformationHelper.h)
Investigate performance and precision advantages of log1p cc @vincentqb @fritzo @neerajprad @alicanb @vishwakftw @pbelevich @peteroupc
module: distributions,triaged,module: random
low
Major
619,560,816
pytorch
`SummaryWriter.add_graph` borks with simple example
## 🐛 Bug Something funky is happening with `SummaryWriter.add_graph`. I was actually trying to dumb down some code from a private repo into a toy example to reproduce our issue, and ran into separate issue where a `RuntimeError` was thrown and the message told me to report it as a bug 🤷 . Here's a picture of the s...
oncall: visualization
low
Critical
619,576,271
flutter
[google_maps_flutter] Get duration of animateCamera
Is there any way to know the duration of the animation created by`animateCamera()`? Since the Future completes at the start of the animation and not at the end (I don't understand why), if I want to perform some actions based on the new camera position I have to use a `Timer()` but so far I am using an arbitrary `Durat...
c: new feature,p: maps,package,team-ecosystem,P3,triaged-ecosystem
low
Minor
619,577,368
opencv
Why the efficientnet no support OPENCL of Intel CPU?
- OpenCV => 4.3 - Operating System / Platform => Win10 64 Bit - Compiler => Visual Studio 2017 --> - OpenCV => :The efficientnet no support OPENCL of Intel CPU: --> ex:: net.setPreferableTarget(cv::dnn::DNN_TARGET_OPENCL); What the tips means? (the efficientnet forward Inference is so slow) ...
optimization,priority: low,category: ocl,category: dnn
low
Major
619,600,647
flutter
[flutter pub outdated] doesn't expose the arguments of the equivalent pub command
The command `flutter pub outdated` has been added to the Flutter SDK with #53251, however it doesn't expose all the arguments of the original pub command: ```console > flutter pub outdated -h Analyze dependencies to find which ones can be upgraded. This runs the "pub" tool in a Flutter context. Usage: flutter ...
c: new feature,tool,c: proposal,P3,team-tool,triaged-tool
low
Major
619,602,830
pytorch
Can you add NMS,RoIAlign,RoIPool for libtorch?
https://pytorch.org/docs/master/torchvision/ops.html Can you add NMS,RoIAlign,RoIPool for libtorch? cc @fmassa
triaged,module: vision
low
Major
619,613,242
vscode
Support Language, not just Editor Language in the keybindings "when" property.
<!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Describe the feature you'd like. --> Support Language, not just Editor Language in ke...
feature-request,context-keys
low
Minor
619,623,663
go
net/http: broken https connections reuse on arm64
<!-- 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 go1.14.3 linux/arm64 </pre> ### Does this issue reproduce with the l...
NeedsInvestigation,arch-arm64
low
Critical
619,653,479
flutter
Adding onChanged method in SearchDelegate class
<!-- 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,framework,f: material design,c: proposal,team-design,triaged-design
low
Critical
619,669,192
pytorch
Clarification for usage of negative loss with optim.lr_scheduler.ReduceLROnPlateau
## 📚 Documentation <!-- A clear and concise description of what content in https://pytorch.org/docs is an issue. If this has to do with the general https://pytorch.org website, please file an issue at https://github.com/pytorch/pytorch.github.io/issues/new/choose instead. If this has to do with https://pytorch.org/...
module: docs,triaged
low
Minor
619,675,588
pytorch
Providing CUDA tensor to model on CPU causes a crash
## 🐛 Bug Pytorch crashes Google colab session when calling a LSTM model running on CPU (located in RAM) on input located in GPU VRAM. NOTE: This doesn't happen with Linear model. ## To Reproduce Colab notebook https://colab.research.google.com/drive/1ojp92wmp_Rh_NWMLbQJEeXmDdTL-TSkE?usp=sharing Steps to...
module: crash,module: rnn,module: cuda,triaged
low
Critical
619,686,233
TypeScript
Safe decorator implementation with ^ type operator.
## Outline Nowadays, lots of famous JavaScript libraries like [`typeorm`](https://typeorm.io) or [`nestjs`](https://nestjs.com) are supporting the `decorator` feature. However, the `decorator` feature is not suitable for core philosophy of the TypeScript; the safe implementation. When defining a `decorator` onto a...
Suggestion,Awaiting More Feedback
medium
Critical
619,699,655
go
encoding/csv: skipping of empty rows leads to loss of data in single-column datasets
### What version of Go are you using (`go version`)? <pre> $ go version go version go1.14 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</summa...
NeedsInvestigation
medium
Critical
619,722,540
rust
Splitting borrows through smart pointers has confusing diagnostics
```rust use std::cell::RefCell; #[derive(Default)] struct NotCopy; #[derive(Default)] struct Split { one: Option<NotCopy>, two: NotCopy, } fn read(_: &NotCopy) {} fn main() { let mut split = Split::default(); // comment this: let split = &mut split; // uncomment...
C-enhancement,A-diagnostics,A-borrow-checker,T-compiler,D-confusing
low
Critical
619,722,654
pytorch
Wheels not manylinux1 compliant
The current 1.5.0 manylinux1 release of torch links against `libcuda.so.1` which is against the specification. According to the [manylinux1 policy](https://www.python.org/dev/peps/pep-0513/#the-manylinux1-policy) from PEP-513, manylinux1 wheels must only link against a limited set of external shared libraries. Py...
module: binaries,triaged
low
Major
619,740,369
excalidraw
Free draw with many points fails to filp
It's probably because some of the point positions become too close to zero, and can't rescale properly. ![exdraw44](https://user-images.githubusercontent.com/490574/82153534-fc1b6880-98a2-11ea-8719-bf8c4542bf49.gif)
bug
low
Major
619,773,607
godot
Root viewport texture filtering only works in GLES2
**Godot version:** 3.2.stable **OS/device including version:** Windows 10 **Issue description:** Enabling texture filtering on the root viewport is the only way for a consistent visual result with proper font hinting that works equally well with fullscreen/windowed mode. For this I'm using an AutoLoad (by the way...
enhancement,topic:rendering
low
Critical
619,777,213
godot
Items remain highlighted or tooltips remain up when cursor leaves window
**Godot version:** 3.2.1 stable **OS/device including version:** Fedora 32, x86_64 **Issue description:** If I alt-tab to another app or move my mouse quickly out of the app window then any tooltip or highlighted control will remain in that state. **Steps to reproduce:** The best way to show this issue is ...
bug,topic:editor,topic:gui
low
Major
619,781,849
opencv
Sample Python code not included in "Random generator and text with OpenCV" tutorial
The [Random generator and text with OpenCV](https://github.com/opencv/opencv/blob/master/doc/tutorials/imgproc/random_generator_and_text/random_generator_and_text.markdown) tutorial only contains C++ code but the program has already been translated to Python and is contained in the OpenCV samples [here](https://github....
category: documentation
low
Critical
619,784,959
godot
OS.execute returns ERR_CANT_FORK
**Godot version:** 3.2.1 **OS/device including version:** Windows 10 **Issue description:** I need to run a batch file, which sets some env vars and launches a java applet, from inside Godot. The only way how is to use OS.execute: `OS.execute("C:/build/gateway/bin/run.bat", [], false)` Contents of the .b...
bug,platform:windows,topic:porting
medium
Critical
619,789,192
pytorch
Torchvision error TypeError: _resolve_type_from_object()
## 🐛 Bug <!-- A clear and concise description of what the bug is. --> ## To Reproduce Steps to reproduce the behavior: 1.import torchvision 2.print(torchvision.__version__) > --------------------------------------------------------------------------- TypeError Traceback (most recent call last) in ---...
triaged,module: vision
low
Critical
619,803,231
flutter
[camera] startVideoRecording/stopVideoRecording() freezes the UI
Flutter (Channel stable, v1.17.1, on Linux, locale en_US.UTF-8) camera: ^0.5.8+1 I've noticed that await _controller.stopVideoRecording() takes several seconds. I'm trying to animate a spinner during this time. The spinner renders, but does not spin. Logs show frames are skipped during this time `I/Choreographer...
platform-android,c: performance,customer: crowd,p: camera,package,has reproducible steps,P2,found in release: 2.2,found in release: 2.6,team-android,triaged-android
low
Critical
619,810,185
flutter
[in_app_purchase] Subscriptions being cancelled after 3 days
I have +2 million downloads and some users are complaning about subscriptions being automaticaly cancelled without their interactions. The app is more than 3 years old (at least 1 year in Flutter), no change in the in app purchase (this behavior started last week). Since the first issues, I'm logging the purchase...
platform-android,p: in_app_purchase,package,P2,team-android,triaged-android
low
Critical
619,842,231
godot
When the computer memory is not enough, Godot will lose the tscn scene data
**Godot version:3.2.1 64bit** **OS/device including version:windows7 64bit 4G Ram ** **Issue description:When the computer memory is not enough, Godot will lose the tscn scene data,I tried to restart the computer, opened the tscn file with Notepad + +, and found that there was no data in the file** **Steps to ...
bug,platform:windows,topic:editor
low
Major
619,847,262
rust
Missed optimization: Array shadowed in same scope of declaration unnecessarily copied.
Edit: initial attempt at reducing the scope led to an incorrect example, updating with the motivating example. https://rust.godbolt.org/z/g4imX- The above shadow on line 119 `let position_deltas = position_deltas;` results in a series of vmovups, but should be optimized to a noop.
I-slow,C-enhancement,T-compiler,E-needs-mcve,A-mir-opt,A-mir-opt-nrvo,C-optimization
low
Minor
619,934,400
material-ui
enUS locale is exported, but as an empty object
<!-- Provide a general summary of the issue 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] The issue is present i...
ready to take,l10n
medium
Critical
619,943,488
three.js
LWOLoader: add support for Discontinuous UV maps
Copied from https://github.com/threejs/lwoloader/issues/28, initially reported by @onthez (last one!): > Having used the loader over the past 6 months or so, the biggest pain point in authoring models that will successfully load is having to avoid discontinuous UV maps. When you create a uv map in Lightwave it will...
Loaders
low
Minor
619,981,975
vscode
Add an option to save files atomically
(prior art: https://github.com/microsoft/vscode/issues/56361) All our writes in VSCode today operate on the target file: * truncate the file to 0 bytes * write the contents into the file If a crash happens after truncation, the file will remain empty. This should typically not result in dataloss because we have...
feature-request,file-io,keep
low
Critical
620,053,503
opencv
Expose RANSAC classes in calib3d
I am working on the GSoC Project idea #9 Add Robust Plane/Sphere/Cylinder Fitting into 3D Point Clouds. The project heavily depends upon RANSAC. The current implementation of RANSAC is as a PointSetRegistrator in ```opencv/calib3d```. However, I would probably be making the pull request in opencv_contrib's rgbd mod...
category: calib3d,GSoC
low
Major
620,065,507
pytorch
Difference between using a python list and nn.ModuleList
After creating this thread - https://discuss.pytorch.org/t/is-it-mandatory-to-add-modules-to-modulelist-to-access-its-parameters/81622 I understood that as soon as you add any module to a python list the parameters of that module get invisible and hence can't be seen by the optimizer. I think this should be added to th...
module: docs,module: nn,triaged
low
Minor
620,071,226
pytorch
Maxunpool seems to give a weird error message
I am trying to design an autoencoder and when i try to train it i get the error :- **invalid output_size "torch.Size([100, 100])" (dim 0 must be between 96 and 100)** This error shows up at the unpool2 layer . My confusion is that I'st the dim0 already between 96 and 100 ? The code is given below :- `class T2Encode...
triaged
low
Critical
620,090,115
pytorch
Synchronization problem in torch.distributed with MPI on CUDA
## 🐛 Bug Using the `send` and `recv` primitives of `torch.distributed` with MPI on CUDA, I sometimes receive different messages than I sent. I also sometimes get `illegal memory access` crashes. In the example below, it seems that the `torch.zeros_like` is still running while the receive starts, leading to a dec...
oncall: distributed,triaged
low
Critical
620,093,327
pytorch
torch while loading weighs found runtime error on storage has wrong size: expected 4254413747647032608 got 1024
filepath = 'mask1_model_resnet101.pth' model = torch.load(filepath,map_location=torch.device("cpu")) RuntimeError Traceback (most recent call last) <ipython-input-2-1a9fb782fda2> in <module> 38 39 filepath = 'mask1_model_resnet101.pth' ---> 40 model = torch.load(filepat...
module: serialization,triaged
low
Critical
620,109,598
flutter
Accessing Pressure from a MotionEvent
## Use case When there's a MotionEvent on Android it's possible to access the pressure that the user used when they tapped on the screen via [getPressure(int pointerIndex)](https://developer.android.com/reference/android/view/MotionEvent#getPressure(int))). I want to detect patterns in the pressure that my user is...
c: new feature,platform-android,framework,f: gestures,c: proposal,P3,team-android,triaged-android
low
Minor
620,126,265
angular
Improve TestModuleMetadata typings
<!--🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅 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. 🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅�...
feature,area: testing,cross-cutting: types,feature: under consideration
low
Critical
620,133,129
scrcpy
Audio Playback (at least for Android 10)
Continuing on grounds of #14, Android 10 now has an official API for playback capture. https://developer.android.com/guide/topics/media/playback-capture This API is being used by AZ Screen Recorder (for Android 10) and works perfectly. We can utilize it for playing audio with `scrcpy`. I am willing to code th...
audio
low
Major
620,155,575
flutter
flutter doctor: detect broken avdmanager: Cannot find executable for null
You can get this error both through command line `flutter emulator --create flutteremu` or using *Flutter: Launch Emulator* in Visual Studio Code on macOS. After installing Android SDK and Flutter SDK, the Flutter emulator run does not work. ``` Oops; flutter has exited unexpectedly: "Invalid argument(s): Cannot...
c: crash,platform-android,tool,t: flutter doctor,P2,team-android,triaged-android
low
Critical
620,243,192
rust
fails to infer inner-scope type if it is specified in an outer scope
[playground](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=02f11b57445cc7b55c7f3e4c2b86d80c) ````rust fn main () { let iter = vec![4,2,3,1,0,0,42].into_iter(); let nums: Vec<i32> = { let mut v = iter.collect(); // consider giving a type here v.sort(); // cannot infer type v }...
A-type-system,C-enhancement,T-compiler,A-inference,T-types
low
Critical
620,250,411
TypeScript
Generic type not assignable if extends type with optional field and passed object does not include the optional field
**TypeScript Version:** 3.9.2 **Search Terms:** optional generic "not assignable" **Code** ```ts const foo = <V extends { s?: string }>(v: V) => {}; // This works: foo({ s: "1", v: 2 }); // This doesn't work: foo({ v: 2 }); // Argument of type '{ v: number; }' is not assignable to parameter of type ...
Suggestion,In Discussion
low
Minor
620,282,095
pytorch
Implement torch.erf for complex dtypes
``` >>> torch.erf(torch.tensor([2j, -3.5, 4j])) Traceback (most recent call last): File "<stdin>", line 1, in <module> RuntimeError: erf_vml_cpu not implemented for 'ComplexFloat' >>> torch.erf(torch.tensor([2j, -3.5, 4j]).cuda()) Traceback (most recent call last): File "<stdin>", line 1, in <module> Runtim...
triaged,module: complex
low
Critical
620,307,572
flutter
WillPopScope in url_launcher
Is there already a feature like WillPopScope in url_launcher? I would be very happy if there is. I have a game that I created in web, so I used url_launcher instead of webview_flutter, because webview_flutter is very slow in animation compared to url_launcher. I would like to request WillPopScope in url_launcher so I c...
c: new feature,p: url_launcher,package,c: proposal,team-ecosystem,P3,triaged-ecosystem
low
Major
620,309,605
react-native
SectionList unnecessarily unmounts and mounts items when filtering (in between renders)
## Description When a SectionList rerenders, sometimes it unmounts and remounts some of its items unnecessarily, even though the items preserve the same "key" prop in between renders. This impacts performance. A scenario where this could happen is when filtering data. Imagine a SectionList with a search bar (TextIn...
Platform: Android,Component: SectionList,Needs: Attention
medium
Critical
620,310,742
flutter
Remove temporary desktop plugin dartPluginClass workaround
On 1.18 (current master), desktop plugins can either specify a `pluginClass` for a standard plugin with native code, or a `dartPluginClass` to allow that platform's implementation of a plugin to be Dart-only. However, the current stable build, 1.17, doesn't have this logic, and requires a `pluginClass` for all desktop ...
tool,platform-mac,platform-windows,platform-linux,a: desktop,P3,c: tech-debt,team-tool,triaged-tool
low
Minor
620,311,164
TypeScript
Improve declare module wildcards so that they can match parts of a path more like a glob
<!-- 🚨 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
medium
Critical
620,314,133
godot
AddFontOverride seems not to work in C #
**Godot version: 3.2.1 mono** **OS/device including version: Windows 10 ** **Issue description:** AddFontOverride on Label dont change font and policies size (c#) **Steps to reproduce:** Create a custom label, Set a font dynamically to _Ready() function **Minimal reproduction project:** Here a sample, I ...
bug,topic:gdscript,topic:dotnet
low
Minor
620,314,642
terminal
Allow the user to "Pin" tabs
With #5787 merging soon, we'll be able to have compact tabs, the same size as "pinned" tabs in lots of browsers. We should add a context menu option to let users pin tabs as well. When tabs are pinned, they'd move to the start of the list of tabs, to the left of the test of the tabs. We'd probably need to have diff...
Area-UserInterface,Product-Terminal,Issue-Task
medium
Major
620,314,648
vscode
API Proposal for multiline quick input
## Problem Currently there's no way to take a multiline input via `showInputBox`. We need one because we use `showInputBox` to take the commit message (which can be multiline) in git extension. (#40295, #39969) ## Solution APIs <details><summary>TLDR: allow passing a <code>multiline</code> property to the <cod...
feature-request,quick-pick,api-proposal
medium
Critical
620,352,817
godot
Some menus in the script editor disappear after using the "Close Other Tabs" context menu action
**Godot version:** v3.2.stable.official **OS/device including version:** Windows 7 ultimate (version 6.1.7601 Service Pack 1 compilation 7601) Ubuntu 20.04 aswell (versión 3.2.1.stable.official) **Issue description:** Sometimes when I use *Close other tabs* within the text editor it gets to another "mode", in...
bug,topic:editor,confirmed
low
Critical
620,364,390
rust
LLVM specific code in backend agnostic part
Hi. It seems like we have LLVM-specific code in the backend agnostic part. For instance, [here](https://github.com/rust-lang/rust/blob/64db428967131be1f3966b82748fe8818eadb25b/src/librustc_codegen_ssa/mir/place.rs#L107-L108). That should be moved to the LLVM codegen part.
C-cleanup,A-codegen,T-compiler
low
Minor
620,367,984
pytorch
Unify CPU/CUDA exponential transformation formula
To preserve original logic([CPU](https://github.com/pytorch/pytorch/blob/8292742ba020fcff90f14418c18741ebf606103b/aten/src/ATen/core/DistributionsHelper.h#L246)/[CUDA](https://github.com/pytorch/pytorch/blob/8292742ba020fcff90f14418c18741ebf606103b/aten/src/ATen/native/cuda/DistributionTemplates.h#L575)) we use differe...
triaged,module: random
low
Minor
620,416,871
TypeScript
Implemented method JSDocs not behaving correctly for @param
*TS Template added by @mjbvz* **TypeScript Version**: 4.0.0-dev.20200518 **Search Terms** - completionEntryDetails - jsdoc - tags --- <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please searc...
Bug,Domain: JSDoc
low
Critical
620,420,417
TypeScript
Confusing definition found for `function`s in some cases
`goToDefinition` handles `function`s specially, leading to this confusing highlight: let f1, f2; f2 = f1 = function () {}; // ^^ f1(); this is different from: let g1, g2; g2 = g1 = () => {}; // ^^^^^^^^ g1(); which seems like a better choice in the former case ...
Bug
low
Minor
620,422,644
pytorch
Add CUDA callback to Python API
As discussed in [this forum thread](https://discuss.pytorch.org/t/mpi-cuda-stream/80702/4). CUDA stream/event callback can be a useful feature. It might be helpful to add it to the Python API. Besides, some recent discussion for TensorPipe RPC backend also considered using CUDA callback to sync streams and handle e...
feature,module: cuda,triaged,module: rpc
low
Critical
620,474,714
youtube-dl
anyporn.com
Hi, Video URL: https://anyporn.com/621202/ And this is only support the following data: Actors: Category: timestamp: Quality Video: 360p & 720p Thanks Team
site-support-request
low
Minor
620,480,046
go
cmd/cgo: does not correctly read DWARF data for unsigned types
<!-- 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.2 darwin/amd64 </pre> ### Does this issue reproduc...
NeedsInvestigation,compiler/runtime
low
Critical
620,502,358
youtube-dl
pornbimbo.com
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
site-support-request
low
Critical
620,514,892
pytorch
TestCase.assertEqual does not distinguish Python builtin types and single-element Tensor
The test below can pass. Is this the expected behavior? Adding this to triage review for discussion. ```python self.assertEqual(2, torch.ones(1, 1) * 2) ``` cc @mruberry
module: tests,triaged
low
Minor
620,525,633
flutter
SystemSound.play(SystemSoundType.click) not working
The below code is not working ```dart static Future<void> play(SystemSoundType type) async { await SystemChannels.platform.invokeMethod<void>( 'SystemSound.play', type.toString(), ); play(SystemSoundType.click); ``` Also it is not showing any errors. Please help. Let me know if you need mor...
platform-android,platform-ios,framework,engine,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-engine,triaged-engine
low
Critical
620,531,196
terminal
Terminal should treat the spaces at the right edge of a nonwrapped line as one region
In most other terminal emulators, when you drag a selection off the right edge of the text it selects the entire empty region up to the edge of the screen as a single unit. There may be an impact, if we do this, on how we copy versus do not copy newlines. ``` +----------------------------------------------+ |TE...
Area-UserInterface,Product-Terminal,Issue-Task
low
Minor
620,548,872
pytorch
Add Plackett-Luce distribution
## 🚀 Feature Add PlackettLuce and RelaxedPlackettLuce distributions. It is a simple distribution over permutations. ## Motivation For optimization over categorical/binary variables (i.e. variational inference with discrete variational approximate posteriors, RL and etc) we already can use `RelaxedBernoulli` /`R...
feature,triaged
low
Minor
620,576,003
opencv
Implement 17 Photoshop blending modes
##### System information (version) - OpenCV => 4.3: - Operating System / Platform => ALL: - Compiler => ALL: ##### Detailed description Inspired by GIMP and [Formulas for Photoshop blending modes,](http://www.deepskycolors.com/archivo/2010/04/21/formulas-for-Photoshop-blending-modes.html) I'd like to implement...
feature,category: imgproc
low
Critical
620,582,099
vscode
Allow extensions to fully control workspace symbol search (matching and highlights)
<!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> For qualified workspace-symbols queries like `llvm::Str`, our language server returns resul...
feature-request,api,workspace-symbols,quick-open
medium
Critical
620,593,352
flutter
Flutter App Flashes Black When Acting as Default Home Application
## Steps to Reproduce 1. Create a new Flutter application 2. Assign it the following intent filter categories: ``` <category android:name="android.intent.category.HOME" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.LAUNCHER"/> ``` ...
platform-android,framework,engine,dependency: android,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-android,triaged-android
low
Critical
620,598,811
terminal
Cloud Shell terminal failed to initialize: The download of the specified resource has failed
<!-- 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨 I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING: 1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement. 2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further expl...
Issue-Bug,Product-Terminal,Area-AzureShell,Priority-2
low
Critical
620,628,226
flutter
Image.network getting retained on iOS
See app in https://github.com/flutter/flutter/issues/56482#issuecomment-628297404 Use an `Image.network` on iOS instead of `Image.asset`. Tap the FAB repeatedly. The image will get disposed, but it is retained and rooted in a `Context` object: ![image](https://user-images.githubusercontent.com/8620741/82277837...
platform-ios,framework,c: performance,dependency: dart,a: images,perf: memory,P2,team-ios,triaged-ios
low
Major
620,658,367
pytorch
torch.as_tensor(np_array) is sometimes much faster than torch.tensor(np_array)
Per title. Reported internally. See related (but distinct) https://github.com/pytorch/pytorch/issues/13918, which discusses conversion from lists of arrays. cc @mruberry @VitalyFedyunin @ngimel
module: performance,triaged,module: numpy
low
Minor
620,659,979
TypeScript
TS Sever: find all references didn't find ref forms like `typeof import("...")`
<!-- 🚨 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...
Bug
low
Critical
620,661,882
neovim
Unnecessary pager in spell prompt on narrow windows
<!-- Before reporting: search existing issues and check the FAQ. --> - `nvim --version`: v0.4.3 - `vim -u DEFAULTS` (version: ) behaves differently? No - Operating system/version: NixOS 20.03 - Terminal name/version: Alacritty 0.5.0-dev - `$TERM`: alacritty ### Steps to reproduce using `nvim -u NORC` Creat...
bug-vim,spell
low
Minor
620,697,696
pytorch
NaN Loss for FasterRCNN on Multiclass Object Detection on Custom Dataset COCO
## 🐛 Bug <!-- A clear and concise description of what the bug is. --> ## To Reproduce Code # Dataloader / DataLoading ``` class OwnDataset(torch.utils.data.Dataset): def __init__(self, root, annotation, transforms=None): self.root = root self.transforms = transforms self.coco ...
triaged,module: vision
low
Critical
620,767,703
TypeScript
enum to string (and number) literals keeping the opacity
## Search Terms enum typing, enum valueOf, enum string literal ## Suggestion The values of the strings enum are by design [opaque](https://github.com/microsoft/TypeScript/issues/17690#issuecomment-321319291) it might however be useful to have a way to type them out of the enum. This is what we have now: ```typ...
Suggestion,Awaiting More Feedback
low
Minor
620,772,117
godot
Procedural Sky Ground Color Bug
Godot version: Godot Engine v3.2.stable.mono.official OS/device including version: OS Name: Microsoft Windows 10 Home Version: 10.0.18363 Build 18363 Issue description: procedural sky object breaks and no longer renders. Steps to reproduce: I am using a C# script that gets the world environments procedural sky...
bug,topic:rendering
low
Critical
620,784,146
flutter
[Camera] getHorizontalViewAngle and getVerticalViewAngle
actually i am working on a project which require horizontal and vertical camera angle which in android java can be done using Camera.Parameters p = camera.getParameters(); horizontalcameraangle = p.getHorizontalViewAngle(); verticalcameraangle = p.getVerticalViewAngle(); but in flutter i didn't fi...
c: new feature,p: camera,package,team-ecosystem,P3,triaged-ecosystem
low
Minor
620,810,664
go
cmd/compile: intrinsify bits.RotateLeft32 on mipsle
<!-- 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> Build env: go1.14.3 linux/amd64 Runtime: GOOS=linux GOARCH=mipsle GOMIPS=softf...
Performance,NeedsInvestigation,compiler/runtime
low
Major
620,821,423
rust
Conditional jumps equivalent to if(0 != 0) can appear in optimized assembly
I've got a reasonably minimal test case whose assembly (with `opt-level=1` and above) includes this sequence of opcodes, which is effectively a no-op as far as I can tell: ```asm xor eax, eax test eax, eax jne .LBB0_3 ``` This is the code in question ([playground](https://play.rust-lang.org/?version=nightly&m...
A-LLVM,I-slow,A-codegen,P-medium,T-compiler,regression-from-stable-to-stable,C-bug,E-needs-bisection,ICEBreaker-LLVM
low
Major
620,890,481
flutter
Global CocoaPods installation is required in projects with plugins, no longer able to use bundler version of pod
It seems that starting from 1.17.0 a global CocoaPods is required to build an iOS project which has plugins. This wasn't the case before, resulting in only a warning regarding the cocoa pods installation. Our current use case is that we install CocoaPods locally in the project using `bundler` rather than requiring a...
platform-ios,tool,c: proposal,P3,team-ios,triaged-ios
low
Critical
620,917,253
go
x/mobile/cmd/gomobile: bind command fails with "direct call too far" with 100 MB executable file
### What version of Go are you using (`go version`)? <pre> $ go version go version go1.13.11 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</summary...
NeedsInvestigation,mobile
low
Critical
620,923,959
material-ui
[material-ui][examples] Create a Storybook template
- [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. When working with material-ui you usually end up adjusting the typography, overwriting some global styles and so on to create your own "themed variant" of material-ui. Within...
docs,priority: important,ready to take,examples
medium
Minor
620,943,831
godot
Normals in imported 3D model look different when importing obj vs other formats
**Godot version:** Godot Engine v3.2.1.stable.official **OS/device including version:** Arch Linux (rolling release, last updated at the time of submitting). **Issue description:** I have a 3d model (included below) created in blender. When I export this as an obj mesh, it works fine in godot. However, when ex...
bug,topic:import,topic:3d
low
Major
620,966,635
pytorch
Building NVCC (Device) failed when building from source
## 🐛 Bug when i build Pytorch (1.4.1)from source in a conda env, i ran into this error ## To Reproduce Steps to reproduce the behavior: 1. export CMAKE_PREFIX_PATH=${CONDA_PREFIX:-"$(dirname $(which conda))/../"} 2. python setup.py install [1543/3479] Building NVCC (Device) object caffe2/CMakeFiles/tor...
module: build,triaged
low
Critical
620,967,372
godot
Stretch shrink messes up the ui
**Godot version:** 3.2.1 stable **OS/device including version:** Windows 10 **Issue description:** From the docs I get, that using scale shrink can be used to get a performance boost, by lowering the 3d resolution. > > If Stretch Mode is set to something other than Disabled, the size of > the root viewport ...
bug,topic:rendering,topic:gui
low
Major
621,006,915
flutter
iOS app is 16% larger than the same Android app (37% larger when considering the compressed size)
The issue is quite simple: The same project makes an iOS final build that is roughly 9 times the size of the Android one. The iOS build is gigantic, around 300MB, but I know it contains bitcode, so I uploaded it to the store anyway. The size on the App Store is still way too large, 63.7MB, as can be seen here: http...
platform-ios,engine,a: size,a: release,found in release: 1.17,P2,team-ios,triaged-ios
low
Critical
621,009,888
material-ui
Community themes
## Summary 💡 In the documentation website, have a section to list the opensource themes built with MUI (using `createTheme()`) <!-- Describe how it should work. --> ## Examples 🌈 One [opensource theme built with MUI](https://github.com/Pearson-Higher-Ed/pearson-mui-theme) for instance is [Perason Material-U...
docs,priority: important,design
low
Major
621,012,080
flutter
Add customization Option for CupertinoDatePicker
Please provide options to configure: 1) TextStyle 2) Custom borders 3) BoxDecoration which could allow us to add shadows, gradient 4) also respect height, width from the parent Container ![image](https://user-images.githubusercontent.com/5774873/82337113-3f0f3600-99a0-11ea-831c-9ddccc13c1fc.png) CupertinoDate...
c: new feature,framework,f: date/time picker,f: cupertino,c: proposal,team-design,triaged-design
low
Minor
621,014,091
pytorch
DOC: add documentation for undocumented classes and methods
## 📚 Documentation Many classes, methods and functions lack docstrings. They should be added or clear reasons provided for not documenting them. xref gh-38244 which refactored the documentation coverage checks: the undocumented items are all listed in `docs/source/conf.py` in `coverage_ignore*` lists
module: docs,triaged
low
Minor
621,042,797
godot
Many math_funcs.h float-related functions actually promotes floats to doubles
**Godot version:** 3.2.1.stable (seems that occurs in current master branch also) **Issue description:** Hi all. I might be wrong with that (then just close the issue), but I thought generally the whole point in switching to `float` related calculations instead of using `double` is a need for speed. For some occasio...
bug,topic:core
low
Major
621,045,062
PowerToys
[test] generate code coverage report
Generate code coverage report for unit tests.
Area-Tests,Issue-Task
low
Minor
621,068,109
TypeScript
Union in a computed property allows any assignment to property value
**TypeScript Version:** 4.0.0-dev.20200518 **Search Terms:** computed property, union **Code** ```ts type Key = 'a' | 'b'; const index1: Record<Key, string> = { a: '', b: 0 }; // Errors as expected, ok const index2: Record<Key, string> = { a: '', b: '' }; const b: Key = 'b'; const index3: Record<Key,...
Suggestion,Experimentation Needed
low
Critical
621,094,538
godot
PHashTranslation.get_message_count and get_message_list always return 0 and [] in GDScript
**Godot version:** 3.2.1 **OS/device including version:** Windows 10 **Issue description:** See title. As a positive control for a non-empty Translation resource, method get_message **does** work. **[EDIT:** I changed the title to reflect insight from PapaFl below. Basically, everything in this post applies...
bug,topic:core
low
Major
621,105,404
PowerToys
Save Desktop Icon Positions
It would be great to have a tool to save AND restore the location of all shortcut icons on the desktop. For some reason with single monitor, or multiple monitors with different resolutions, different zoom/font size/icon size and spacing/etc. The location of these icons is reset and you're left with all icons Auto-Ar...
Idea-New PowerToy
low
Major
621,126,165
PowerToys
[Run] Provide history of last commands in search results
# Summary of the new feature/enhancement Provide a history of the last x commands via arrow up and down keys. This would help to prevent typing similar commands. ~For example I typed > ping x.x.x.x and after that I opened I don't know code and then I would like to execute the ping command again. It would be nice...
Idea-Enhancement,Product-PowerToys Run
medium
Major
621,136,580
godot
Wrong gdns inheritance information in project.godot
**Godot version:** 3.2.1 **OS/device including version:** Windows 10 and Ubuntu 18.04 LTS **Issue description:** Importing addon containing gdns script won't set inheritance in project.godot. ie you have something like : ``` { "base": "", "class": "IsometricMap", "language": "NativeScript", "path":...
bug,topic:editor,confirmed,topic:gdextension
low
Critical
621,140,833
kubernetes
Allow setting EmptyDir Medium Disk
would be nice to be able to call this out instead of being stuck with not setting it https://github.com/kubernetes/kubernetes/blob/323f34858de18b862d43c40b2cced65ad8e24052/pkg/volume/emptydir/empty_dir.go#L219-L228
sig/storage,kind/feature,lifecycle/frozen
low
Major
621,148,430
rust
Counting bytes with high bit set optimizes badly for x86_64
I tried this code: ```rust pub fn count_non_ascii(buffer: &[u8]) -> u64 { let mut count = 0; for &b in buffer { if b >= 0x80 { count += 1; } } count } ``` [Godbolt link](https://rust.godbolt.org/z/qfppbo) I expected to see this happen: I expected the compiler...
A-LLVM,I-slow,O-x86_64,T-compiler,C-bug
low
Critical
621,151,436
PowerToys
[Run] Launching a process starts it in `c:\Program Files\PowerToys` (default working directory)
<!-- **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. --> # Environment ``` Windows build number: `_dep.200508` PowerToys version: 0.18 PowerToy module for ...
Issue-Bug,Help Wanted,Product-PowerToys Run
medium
Critical