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
507,510,214
flutter
Support customizable page transition durations
The latest Android 10 activity transition occurs over 400ms. Currently, `MaterialPageRoute` has a transition duration that is set to a constant of 300ms. We should create a new parameter so that developers can modify/customize the transition duration if they'd like. This also allows Flutter's Android 10 transition ...
framework,f: material design,f: cupertino,P2,team-design,triaged-design
low
Minor
507,518,387
godot
[Mono] ResourceSaver.Save() not working with custom classes
**Godot version:** Godot Engine v3.2.alpha.mono.custom_build.119bf2372 **OS/device including version:** Windows 10 **Issue description:** Using C#, ResourceSaver.Save() does not work with custom classes. **Steps to reproduce:** The MRP constains a custom scene and a custom resource. Running the project wi...
bug,confirmed,topic:dotnet
low
Major
507,539,701
pytorch
Traced resnet101 leaks memory during `forward`
## πŸ› Bug Memory consumption increases when running inference with torch script module. ## To Reproduce code samples: ``` import os import psutil import torch import torchvision traced_script_module = torch.jit.trace(torchvision.models.resnet101(pretrained=True), torch.rand(1, 3, 224, 224)) process = ...
module: memory usage,triaged
low
Critical
507,631,696
flutter
The platform in editable.dart should probably be obtained from the BuildContext
The platform in [editable.dart](https://github.com/flutter/flutter/blob/b9817b4f595c9ee83bc0625efa60a19599565d63/packages/flutter/lib/src/rendering/editable.dart) should probably be obtained from the `BuildContext`. https://github.com/flutter/flutter/blob/b9817b4f595c9ee83bc0625efa60a19599565d63/packages/flutter/lib...
a: text input,framework,c: proposal,P2,team-framework,triaged-framework
low
Minor
507,668,009
youtube-dl
How To Download A Video from Hotstar which has more than 1 audio track
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
question
low
Critical
507,699,537
vue
<template> tag which inside v-pre directive, will be ignore if v-pre doesn't use at staticRoot
### Version 2.6.10 ### Reproduction link [https://jsfiddle.net/vuetest/c5uw870y/3/](https://jsfiddle.net/vuetest/c5uw870y/3/) ### Steps to reproduce 1、click jsfiddle link 2、you will see result is {{msg}},is incorrect ### What is expected? render template tag as html element, dom looks like tha...
regression,has workaround
low
Minor
507,709,939
rust
Make the documentation about `#![allow(unused)]` more visible
I like to build functions as a series of parts, for example I might write the following skeleton, then plan to fill in the loop ``` fn sorter(x: Vec<Vec<isize>>, modifier: bool) -> Vec<isize> { let mut out = vec![]; for i in x { } out } ``` If I run a cargo check on this, just to check...
C-enhancement,A-lints,A-diagnostics,T-compiler,A-docs
low
Minor
507,710,412
terminal
"less" pager renders in the wrong color when started at the bottom of the screen from powershell
# Environment ```none Windows build number: 10.0.18362.356 Windows Terminal version (if applicable): 0.5.2762.0 Any other software? less pager (https://chocolatey.org/packages/Less) ``` # Steps to reproduce Open PowerShell Tab `less <somefile>` will show the file in foreground color `gci` `less <somef...
Help Wanted,Area-Rendering,Product-Conpty,Area-Output,Issue-Bug,Priority-3
low
Major
507,740,955
flutter
Support `pub upgrade --dry-run`
The issue has mostly been resolved on the dart side already and it actually supports the `--dry-run` option https://github.com/dart-lang/sdk/issues/15243. However, flutter does not. So in a dart project one can run: ``` pub upgrade --dry-run ``` But with a flutter project you can't do that. If you try using the p...
c: new feature,tool,P3,team-tool,triaged-tool
low
Critical
507,742,224
flutter
Text decoration underline is not aligning some characters or space
## Steps to Reproduce Setting text decoration to underline or overline, the decoration is not aligned in some languages' characters or space. I thought there should be an issue here but didn't find any. Is this considered to be a feature which is intended or it's a bug? <img width="438" alt="Screenshot_2019-10-16 17 ...
framework,engine,a: internationalization,a: quality,a: typography,has reproducible steps,P2,found in release: 3.7,found in release: 3.9,team-engine,triaged-engine
low
Critical
507,751,961
rust
`unused_variables` and `unused_assignments` lints do not catch array usage
I recently had a problem where I was accidentally implicitly copying an array with `if let` bindings, and the writes to the original array were never made (I needed to add `ref` in my bindings). I thought it was strange that there was no warnings for this, and noticed this is true for these lints in general. Here's a s...
C-enhancement,A-lints,T-lang,T-compiler,A-array
low
Critical
507,803,345
svelte
Documentation crosslinking
Following [this conversation](https://github.com/sveltejs/svelte/issues/3694#issuecomment-541454741) I've started a spreadsheet to track down what parts of the API, the tutorial and the examples can eventually be interlinked [1]. Once we'll have figured out all the links we can figure out eventually how to add links...
site,documentation
low
Minor
507,838,561
youtube-dl
Add URL's from "Comedy Central Brasil" to extractor comedycentral.py
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
request
low
Critical
507,847,123
godot
Cannot load texture imported as TextureAtlas
**Godot version:** Godot Engine v3.2.alpha2.official **OS/device including version:** Windows 10 (1709) **Issue description:** It exists in filesystem, but can't be used After opening the project: ``` ERROR: get_multiple_md5: Condition ' !f ' is true. Continuing..: At: core/os/file_access.cpp:667 ERROR: Ca...
bug,topic:core,confirmed,topic:import
low
Critical
507,884,642
flutter
Stylus doesn't trigger PointerDownEvent
## The main problem When you use a stylus as an input device, sometimes a PointerDownEvent gets triggered and then for the next 5-30sec the application doesn't handle any pointer inputs(it probably just freezes). Then I get a notice from the system that the app isn't responding and in that moment everything works as i...
e: device-specific,platform-android,framework,f: gestures,P2,found in release: 1.20,team-android,triaged-android
low
Critical
507,886,151
rust
Support index size != pointer width
## Preliminaries `usize` is the pointer-sized unsigned integer type [1]. It is also Rust's index type for slices and loops; this definition works well when pointer size corresponds to the space of indexable objects (most targets today). Informally, `uintptr_t == size_t`. Note that the target pointer width is indis...
A-type-system,T-lang,C-feature-request,needs-rfc,T-types
medium
Critical
507,914,316
pytorch
[discussion] Smarter version of torch.reshape (can avoid realloc in some cases)
Imagine a following situation: ```python a = torch.rand(2,3,4) a_ = a.transpose(-1, -2) b_ = someltwiseinplacefunc(a_.reshape(2, -1)) # reshape seems to reallocate (checked by data_ptr), view will error out b = b_.view_as(a) # or b_.view_as(a_) (currently view_as copies dimension order, disregarding the strides, t...
triaged,function request,module: viewing and reshaping
low
Critical
507,941,340
opencv
Inconsistent behaviour in cvtColor
When converting from RGB to Lab, cvtColor will apply a gamma curve to the input data before doing the conversion, which implicitly means that the conversion function expects the input to be in a non-linear space. When converting from RGB to XYZ however, no linearization step is performed which makes the use of cvtColor...
category: imgproc,RFC
low
Minor
507,942,784
pytorch
Move options logic in _like functions from parsing layer to implementations
We have fairly complex parsing logic for _like functions (e.g. empty_like) for dealing with dtypes, etc. This was necessary when we didn't have optional TensorOptions parameters, because we had no way of distinguishing "default dtype" from "the dtype wasn't specified" once we got past the parser level. But this isn...
triaged
low
Minor
507,947,384
godot
Godot crashes when using CurveTexture::set_curve
**Godot version:** 3.2.alpha.custom_build. 1fed266bf **OS/device including version:** Ubuntu 19.04 **Issue description:** The minimal project is very, very big because Godot crashes very rarely, sometimes after 5s but sometimes doesn't crash after 10 min. Backtrace: ``` core/vmap.h:86:21: runtime error: mem...
bug,topic:core,crash
low
Critical
507,967,613
TypeScript
`static abstract` methods and properties
This is a continuation of #14600 which had two separate features proposed in the same issue (static members in interfaces *and* abstract static class members) ## Search Terms static abstract method property properties implement concrete ## Suggestion Currently, this code is illegal: ```ts abstract class A...
Suggestion,Needs Proposal
high
Critical
507,971,517
pytorch
Stable docs show dead __config__ section link
## πŸ“š Documentation Hey folks, there is a `__config__` section showing up in the docs which leads to a 404 page; see - https://pytorch.org/docs/stable/index.html - https://pytorch.org/docs/stable/__config__.html See screenshot below ![torch-config](https://user-images.githubusercontent.com/527241/66940551-6b...
module: docs,triaged
low
Minor
508,028,059
pytorch
Provide function similar to cdist that returns dist_p^p
## πŸš€ Feature Provide a function similar to cdist (or add an option to cdist) that would compute \sum_k (x_ik - xj_k)^p instead of (\sum_k (x_ik - xj_k)^p(^(1/p) ## Motivation The function proposed above is differentiable at zero, while norm is not. Requested in #25799 ## Alternatives Raising existing cdist ...
triaged,function request,module: distance functions
low
Major
508,049,644
rust
Extend overlapping ranges lint to cover cases with more than a single element overlapping
#64007 introduces an overlapping ranges lint that triggers only if the beginning or the end overlap with another arms' pattern, like in `0..10`/`9..20`. [There should be a conversation](https://github.com/rust-lang/rust/pull/64007#issuecomment-542628737) on whether it should also trigger when the overlap is beyond that...
A-lints,I-needs-decision,T-lang,A-exhaustiveness-checking
low
Major
508,087,853
flutter
How can I set value to my `CupertinoDatePicker`?
I use CupertinoDatePicker in form. My form has a button "Reset all". But I didn't find a way to reset the value in a picker.
c: new feature,framework,f: date/time picker,f: cupertino,c: proposal,P3,team-design,triaged-design
low
Major
508,109,579
pytorch
Named Tensor: Support -1 in `unflatten`.
Would be convenient to write: `tensor.unflatten("h", (("height", 8), ("q", -1))).shape` Similar to view. cc @zou3519
triaged,module: named tensor
low
Minor
508,111,509
pytorch
Named tensor: align_to align_as error messages
For new users `align_as` and `align_to` seem synonymous. If you write `align_to(tensor)` it should either fail nicely or call align_as. Currently you get a very scary error message (if you don't know what ellipses are). ``` /usr/local/lib/python3.6/dist-packages/torch/_namedtensor_internals.py in is_ellipsis(item)...
triaged,module: named tensor
low
Critical
508,135,757
flutter
[flutter_android_lifecycle] Throw when obtaining lifecycle from a too old engine
`FlutterLifecycleAdapter.getLifecycle` should throw if running with an engine version that doesn't support the hidden lifecycle API. As that API isn't available on stable we're temporarily not throwing so that the example app works on stable. After next stable release we should be able to make `getLifecycle` throw.
platform-android,package,P2,c: tech-debt,p: flutter_plugin_android_lifecycle,team-android,triaged-android
low
Minor
508,143,843
godot
File.open_encrypted_with_pass() returns ERR_FILE_UNRECOGNIZED
**Godot version:** 3.1.1.stable-official **OS/device including version:** Windows 7 **Issue description:** If you try to read or write a file using `File.open_encrypted_with_pass()` it returns `ERR_FILE_UNRECOGNIZED` and doesn't say much more. Windows cmd displays: ``` ERROR: open_and_parse: Condition ` m...
bug,topic:core,confirmed
low
Critical
508,151,837
godot
Audio clips when changing volume of audio bus
**Godot version:** 3.1.1 stable **OS:** Windows 10 Pro version 1903 build 18362.418 **Device:** ASUS ROG Zephyrus S GX502GW (using both integrated laptop speaker and OnePlus USB-C bullet earbuds) **Issue description:** Changing the volume of an audio bus using `AudioServer.set_bus_volume_db()` or through the visu...
bug,topic:editor,confirmed,topic:audio
low
Critical
508,180,795
pytorch
[JIT] Allow user to provide aliasing information on input tensors and model parameters
## πŸš€ Feature <!-- A clear and concise description of the feature proposal --> We need to create API that allows user to provide aliasing information on input tensors and model parameters. Graph mode does not own parameters and takes them as input through `prim::GetAttr` and `ClassType<xxx>`. User has full visibili...
triage review,oncall: jit,triaged
low
Minor
508,182,990
flutter
[Request Feature]SnackBar offset option
<!-- 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,P3,team-design,triaged-design
low
Critical
508,185,552
pytorch
New Stochastic Optimization Algorithms in Pytorch
## πŸš€ Feature I would like to suggest new stochastic optimizer additions to Pytorch. ### For non-convex loss functions It is known that adaptive stochastic optimizers like Adam, Adagrad, RMSprop can indeed fail to converge. Moreover the test error of the trained models can be larger when compared to the models tra...
feature,module: optimizer,triaged
low
Critical
508,194,220
go
net/http: performance collapse when http/2 requests wait for connection
### Does this issue reproduce with the latest release? / What version of Go are you using (`go version`)? The code that causes this behavior is present in Go 1.13 and in tip, but #34941 shadows the bug in releases newer than Go 1.11β€”so for today, I'll demonstrate it with go1.11.13. <pre> $ go1.11 version go ver...
Performance,NeedsInvestigation
low
Critical
508,197,297
TypeScript
Type discrimination in function calls for callable types doesn't work if discriminating property is optional
<!-- 🚨 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
508,205,754
rust
Frequent use of line 0 in debug info reduces effectiveness of Cachegrind
I frequently use Cachegrind (and Callgrind) to profile rustc and other Rust programs. Cachegrind attributes instruction counts (and possibly cache misses and branch mispredictions) to specific lines of code, like this: ``` . /// Maps a string to its interned representation. 320,664 ( 0.27%) ...
A-LLVM,A-debuginfo,T-compiler,C-bug,S-waiting-on-LLVM
medium
Critical
508,227,689
youtube-dl
NoodleMagazine URL Support Request
<!-- ###################################################################### 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
508,241,758
pytorch
torch.utils.tensorboard.SummaryWriter.add_graph do not support non-tensor inputs
## πŸ› Bug <!-- A clear and concise description of what the bug is. --> ## To Reproduce Steps to reproduce the behavior: 1.Run my script below: ```python import torch import torch.nn as nn import torch.nn.functional as F from torch.utils.tensorboard import SummaryWriter # from tensorboardX import Summa...
oncall: visualization
low
Critical
508,292,773
youtube-dl
FA Player
<!-- ###################################################################### 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
508,372,725
flutter
Run `flutter run --verbose` should stream the output of `pod install --verbose` so useful information is displayed during long operations
1. when some pod version changed. 2. I run `flutter run --verbose` to see the detail progress. 3. And I found that it's run `pod install`, since these step is so long, it stuck there for a while. 4. I just stop there, and go into /ios/ folder and run `pod install --verbose` myself 5. it seems it will Expected r...
platform-ios,tool,platform-mac,c: proposal,P3,team-ios,triaged-ios
low
Critical
508,376,462
go
cmd/compile: consider flagging ops that should not be moved between blocks
Some intrinsics (such as population count, FMA and rounding) are emitted by the compiler but are not present in the base ISA of the CPU the compiler is targeting. In these cases the compiler emits code to guard the execution of the instruction and fall back to a slower implementation if the required CPU feature is not ...
NeedsInvestigation,compiler/runtime
low
Critical
508,440,465
TypeScript
Add quick fix to export unexported members to fix unresolved symbol errors
## Search Terms import export unexported symbols auto import completion global globals intellisense ## Suggestion tsserver can auto-complete exported symbols from other modules, and add an import statement that imports the symbol you selected. It should also suggest **global symbols** from other mod...
Suggestion,Awaiting More Feedback,Domain: Quick Fixes
low
Critical
508,449,203
pytorch
reflective padding for 5D tensor
## πŸš€ Feature <!-- A clear and concise description of the feature proposal --> Reflective padding can be implemented for 5D tensor. ## Motivation Reflective padding works great in image convolution. However, it is not yet implemented for 3D data (5D tensors) <!-- Please outline the motivation for the proposal. Is ...
triaged,function request,module: padding
low
Minor
508,454,688
flutter
Internationalized words in text widgets are not centered vertically.
Having a problem regarding displaying Kannada language words using the Text widget. The text is not aligned vertically center. ```dart import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { // This widget is the root of your application. @override ...
framework,engine,a: internationalization,a: typography,has reproducible steps,P2,found in release: 1.22,found in release: 2.0,team-engine,triaged-engine
low
Major
508,491,491
bitcoin
bench: Add BIP 143 sighash benchmark
I believe there is no benchmark for the BIP 143 signature hash. Just for completeness, it would be nice to have a few different sighash flags benchmarked.
Feature,Tests
low
Minor
508,502,022
pytorch
index_sub, index_mul and index_div
## πŸš€ Feature Provide `index_sub`, `index_sub_`, `index_mul` etc. functions that work like existing functions `index_add` and `index_add_` ## Motivation If we have a 2-dimensional tensor `T`, and want to multiply `T[0]`, `T[3]` and `T[15]` by 2, there seems to be no way to do this at the moment (in the case where ...
triaged,enhancement,OSS contribution wanted
low
Minor
508,512,405
create-react-app
Coverage report not working
### Describe the bug The problem is that I can't get the coverage report for any project. I used a brand new cra project to test if something is wrong locally but I still have the same problem. This is what I am supposed to see: ![image](https://user-images.githubusercontent.com/18174459/67017097-16dbf380-f0ae-11e9-...
issue: bug,issue: needs investigation
medium
Critical
508,536,733
go
runtime: throw should print more diagnostics
As of Go 1.14 tip, `runtime.throw` enables slightly more diagnostic information in the traceback. It would help with debugging runtime crashes if it printed more diagnostics, such as: 1. FP/SP/and PC for all frames in all goroutines, not just the throwing goroutine (which doesn't even work if the throw happens on a ...
NeedsFix,compiler/runtime
low
Critical
508,539,659
pytorch
TorchScript custom ops like `cuda` `byte` etc. doesn't support memory_format argument
cc @suo
oncall: jit,triaged
low
Minor
508,540,365
pytorch
TorchScript doesn't support torch.channels_last or any other memory format constants
cc @suo @VitalyFedyunin
oncall: jit,triaged,module: memory format
low
Minor
508,543,553
pytorch
Convert manually bound `cuda` `cpu` `byte` `float` operators to native_functions
I am a bit skeptical that these should be manually bound. They seem like fairly simple functions that the code generator should be able to understand... _Originally posted by @ezyang in https://github.com/pytorch/pytorch/pull/27228#discussion_r335551596
triaged,module: ux
low
Minor
508,569,371
pytorch
Allow to disable polling for CUDA synchronization
## πŸš€ Feature When using CUDA, by default, synchronization of the host and GPU works through a tight loop that polls a particular memory location, running a CPU core at 100%. CUDA provides two alternative modes: (1) a tight loop that yields to other threads in between, and (2) synchronization via an interrupt (trans...
high priority,module: performance,module: cuda,triaged,enhancement
medium
Critical
508,610,915
rust
Use structured suggestion for closure needed instead of inner function
We currently emit the following error ``` error[E0434]: can't capture dynamic environment in a fn item --> $DIR/bad-env-capture3.rs:4:31 | LL | fn bar() { log(debug, x); } | ^ | = help: use the `|| { ... }` closure form instead ``` It'd be nice if we provi...
C-enhancement,A-diagnostics,T-compiler,A-suggestion-diagnostics,D-papercut
low
Critical
508,623,942
pytorch
torch native functions cannot be used with inspect.signature
## πŸš€ Feature <!-- A clear and concise description of the feature proposal --> It would be nice if native functions were annotated with the necessary metadata to allow runtime introspection via the `inspect` module. ## Motivation <!-- Please outline the motivation for the proposal. Is your feature request rel...
triaged,module: pybind,module: language binding
low
Critical
508,645,041
vscode
Provision trusted domains for enterprise setup
As referenced in https://github.com/microsoft/vscode/issues/80595#issuecomment-539794968, currently there's no way to pre-configure VS Code with a list of trusted domains. This is a common case in enterprise setup.
feature-request,workbench-link
low
Major
508,659,578
rust
Quadratic slowdown for lookup of bounds on associated types.
There are two factors here, which we've spotted combined in the wild: 1. we hoist all `type X: ...;` bounds to the trait-level, i.e.: ```rust trait Trait { type X: A + B; type Y: C + D; } ``` is sugar for: ```rust trait Trait where Self::X: A, ...
A-trait-system,I-compiletime,A-associated-items,T-compiler
low
Major
508,665,816
pytorch
support class annotations in __init__
``` class MyMod(torch.nn.Module): def __init__(self): self.foo : List[int] = [] ``` should work. cc @suo
oncall: jit,triaged,jit-backlog
low
Minor
508,681,230
rust
Reduce the places where `stable` annotations are needed
Looking at the definition of `std::option::Option`, we have the following `stable` annotations: ```rust #[derive(Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)] #[stable(feature = "rust1", since = "1.0.0")] pub enum Option<T> { /// No value #[stable(feature = "rust1", since = "1.0.0")] None, ...
C-enhancement,P-medium,A-stability,T-compiler,F-staged_api
medium
Critical
508,681,730
rust
[Edition vNext] Consider deprecating weird nesting of items
For example, do we really want `mod`s inside random function? Similarly, IIRC https://youtu.be/LIYkT3p5gTs mentioned that it's unfortunate for incremental that we allow `impl`s of random things inside functions. Though at the same time, it's nice to allow all sorts of things for how `?eval` bots work on Discord and...
T-lang,finished-final-comment-period,disposition-postpone,A-maybe-future-edition
medium
Critical
508,683,063
rust
Direct users to crate-type=cdylib in crate-type=dylib documentation
The dylib crate type is well known to be misleading and rarely useful (to put it politely) among rustc developers, but if a user reads about crate types in `rustc --help`, [the reference](https://doc.rust-lang.org/reference/linkage.html), or [the rustc book](https://doc.rust-lang.org/rustc/command-line-arguments.html#-...
A-frontend,C-enhancement,A-FFI,T-compiler
low
Critical
508,686,768
flutter
Fix invalid WeakPtr usage in Shell::Setup()
Shell::Setup() is called on the platform thread, but we deref the Engine WeakPtr to get the display refresh rate which requires us to deref it on the UI thread.
engine,P2,team-engine,triaged-engine
low
Minor
508,689,449
flutter
Fix invalid WeakPtr usage in Shell::CreateShellOnPlatformThread()
Shell::CreateShellOnPlatformThread() calls into PlatformView::CreateResourceContext which requires us to be on the IO thread (and so it does so in an IO task) and derefs the PlatformView's WeakPtr inside that lambda, which was created on the platform thread.
engine,P2,team-engine,triaged-engine
low
Minor
508,690,460
flutter
Remove WeakPtr::getUnsafe()
getUnsafe() is used as a stopgap measure to allow us to turn on thread safety checks again for most WeakPtr usages. These are the issues that need fixing to remove getUnsafe(): https://github.com/flutter/flutter/issues/42946 https://github.com/flutter/flutter/issues/42947 https://github.com/flutter/flutter/issu...
engine,P2,team-engine,triaged-engine
low
Minor
508,702,842
pytorch
ProcessGroupMPI reports incorrect world size
## πŸ› Bug ## To Reproduce If you add the test method below to `ProcessGroupGlooTest` in test_c10d.py it fails: ``` def test_new_group(self): print ('WORLD SIZE: {}\n'.format(self.world_size)) store = c10d.FileStore(self...
oncall: distributed,triaged
low
Critical
508,708,518
pytorch
PyTorch RPC should expose critical metrics to the application.
## πŸš€ Feature Context for Model Parallel: https://github.com/pytorch/pytorch/issues/23110 ## Motivation When applications are using complex distributed primitives like RPC, RRef and Distributed Autograd, debugging issues can be cumbersome. We should have a way of exposing metrics to applications. This could si...
feature,triaged,module: rpc
low
Critical
508,714,962
pytorch
Add scopes to autograd profiler
## πŸš€ Feature Add scopes within a torchscript model so you can get profile information per scope for both the forward and backward pass. ## Motivation For distributed execution (model parallelism) we want to be able to measure the exact CPU time spent on different parts of a torchscript module so we can shard ...
triaged
low
Major
508,721,555
TypeScript
Expose TypeScript-specific globbing behavior
Today, TypeScript's globber uses a custom strategy that acts differently from other tools. This is an issue for 3rd party users who need to consume TypeScript's APIs, but need to validate that a file belongs to a compilation. #32564 dives into some of the discussion around this. This API doesn't have to be the same ...
Suggestion,API,Awaiting More Feedback
low
Minor
508,751,943
flutter
"iproxy cannot be opened because the developer cannot be verified"
**If you're looking for a quick fix, this should work:** https://github.com/flutter/flutter/issues/42969#issuecomment-568303471 ## Steps to Reproduce 1. Going through the macOS install tutorial for Flutter (https://flutter.dev/docs/get-started/install/macos), step-by-step, on a brand new MacBook running 10.15. 2...
c: crash,tool,platform-mac,β€Žβ€platform-catalina,P2,team-tool,triaged-tool
low
Critical
508,755,801
pytorch
[jit] TorchScript classes don't work in notebooks
In IPython: ```python @torch.jit.script class Container(object): def __init__(self): pass ``` gives ``` TypeError: <module '__main__'> is a built-in class ``` since the `inspect` module can't get the source of a class inside of a notebook cc @suo
oncall: jit,triaged
low
Critical
508,761,953
vscode
Minimap: Render overview ruler decorations (for extension support)
Originally mentioned in the comments here: https://github.com/microsoft/vscode/issues/20934 Rendering overview ruler decorations on the minimap would not only eventually allow the minimap to optionally replace the scrollbar by supporting the same decorations, but would also allow extensions to provide decorations on...
feature-request,editor-minimap
medium
Critical
508,787,836
flutter
parsing line table prologue at offset 0x6f697463 found unsupported version 0x00
**I can't build ios --release**. ## Steps to Reproduce Pretty similar to https://github.com/flutter/flutter/issues/20685, which is closed and instructed to open a new issue in case problem persists. 1. Happens with both New and Legacy system builds. 2. build apk --release OK 3. build ios --debug OK 4. build...
c: crash,platform-ios,tool,customer: google,P2,team-ios,triaged-ios
low
Critical
508,790,649
pytorch
Problem with jit TorchScript while copying data between GRUs
## πŸ› Bug Not able to create TORCHSCRIPT when copying data between GRU to GRUCell using '.' operator. It not able to identify `.` operator. <!-- A clear and concise description of what the bug is. --> ## To Reproduce Steps to reproduce the behavior: 1. [colab](https://colab.research.google.com/drive/1A4IERK...
triage review,oncall: jit,triaged
low
Critical
508,806,530
youtube-dl
US Commerce Senate Hearing not downloading
## Checklist - [ x] I'm reporting a new site support request - [ x] I've verified that I'm running youtube-dl version **2019.10.16** - [ x] I've checked that all provided URLs are alive and playable in a browser - [ x] I've checked that none of provided URLs violate any copyrights - [ x] I've searched the bugt...
site-support-request
low
Critical
508,828,146
go
crypto/x509: select a certificate store for systemVerify on Windows
### What version of Go are you using (`go version`)? <pre> $ go version go version go1.13 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes. ### What operating system and processor architecture are you using (`go env`)? Windows. ### What did you do? Attempted to build...
OS-Windows,NeedsInvestigation
low
Major
508,844,182
flutter
WebView JavaScriptChannelHandler didReceiveScriptMessage should JSON-encode collections
### Problem Now JavaScriptChannelHandler.m `- (void)userContentController:didReceiveScriptMessage:` arguments receive Dictionary or Array will got a string that hard to serialized like below. ```json { action = do_somethineg; data = { key_1 = some_info; key_2 = "some_info"; };...
platform-ios,p: webview,package,c: proposal,P3,p: requires breaking change,team-ios,triaged-ios
low
Critical
508,855,105
pytorch
nn.parallel.replicate in v1.1+ is much slower than v1.0
[https://github.com/pytorch/pytorch/issues/28212#issue-508340762](https://github.com/pytorch/pytorch/issues/28212#issue-508340762) I run nn.DataParallel with only replicate operation and found that is much slower in v1.3. For v1.0, the GPU util is ![image](https://user-images.githubusercontent.com/28811637/670667...
module: performance,triaged,module: data parallel
low
Major
508,867,774
flutter
Create end-to-end test for platform brightness on Android
Create end-to-end test for platform brightness on Android. The Android embedding is responsible for reporting Android's platform brightness to Flutter, either light or dark. This ticket is to setup an end-to-end test that verifies that real platform brightness values are correctly reported from the Android embedding...
a: tests,team,engine,P2,team-engine,triaged-engine
low
Minor
508,891,601
godot
Tileset Editor does not support shape transforms
**Godot version:** 3.2 alpha 2 **OS/device including version:** Windows 10 64 bits **Issue description:** Convert to TileSet generates incorrect collision shapes when sprites have ```centered``` set to true. It seems to just take the ```polygon``` property inside the CollisionPolygon2D and use those values t...
bug,topic:editor,confirmed
low
Minor
508,893,848
opencv
opencv read model file size 2GB error
train a model file size over 2GB. but use model read fail get message "Traceback (most recent call last): File "try.py", line 86, in <module> face_recognizer.read("mingxing3000.xml") cv2.error: OpenCV(4.1.1) C:\projects\opencv-python\opencv\modules\core\src\persistence.cpp:1456: error: (-215:Assertion failed...
feature,priority: low,category: core
low
Critical
508,900,482
scrcpy
scrcpy white/blank screen (only on second windows desktop)
I have everything working. scrcpy is connected to two windows desktops via wifi. - on the main desktop I can see and control my android - the second desktop is also connected and I'm able to control the android. But shows a white screen (so I can't see anything) I've tried a lower resolution with scrcpy -m 800 -b ...
display
low
Minor
508,935,560
kubernetes
OpenAPI definition for AdmissionReview
<!-- Please only use this template for submitting enhancement requests --> **What would you like to be added**: I would like an OpenAPI schema definition for admission controllers for the purposes of generating the API types (and potentially servers or server stubs) in multiple languages. **Why is this needed*...
sig/api-machinery,kind/feature,lifecycle/frozen
medium
Major
508,941,144
node
fs.chmod behaviour should change to be more expected across platforms
<!-- Thank you for suggesting an idea to make Node.js better. Please fill in as much of the template below as you're able. --> **Is your feature request related to a problem? Please describe.** fs.chmod currently behaves a bit odd across different platforms: On linux and unix like system it behaves as expecte...
fs
low
Critical
508,954,991
TypeScript
Future-proof non-aliasing/always-expanding of mapped/intersection/union/etc. types
<!-- 🚨 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,Needs Proposal
low
Critical
509,005,506
flutter
SIGSEGV during hot reload
## Steps to Reproduce 1. Random change of the running app source code 2. Save, triggers hot reload 3. Crash <!-- Please tell us which target platform(s) the problem occurs (Android / iOS / Web / macOS / Linux / Windows) Which target OS version, for Web, browser, is the test system running? Doe...
c: crash,tool,dependency: dart,t: hot reload,customer: crowd,P2,team-tool,triaged-tool
low
Critical
509,129,757
go
syscall: memory corruption when forking on OpenBSD, NetBSD, AIX, and Solaris
``` #!watchflakes default <- `fatal error: (?:.*\n\s*)*syscall\.forkExec` && (goos == "aix" || goos == "netbsd" || goos == "openbsd" || goos == "solaris") ``` ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.13.2 openbsd/amd64 </pre> ### Does this issue reproduce wit...
OS-NetBSD,OS-OpenBSD,OS-Solaris,NeedsInvestigation,OS-AIX,compiler/runtime
high
Critical
509,150,711
rust
Confusing error msg without indication of where the error occured
Although admittedly pretty new to Rust, the notes in this error message doesn't help me in anything other than general terms: ``` error[E0495]: cannot infer an appropriate lifetime for lifetime parameter `'a` due to conflicting requirements | note: first, the lifetime cannot outlive the lifetime 'a as defined on ...
A-diagnostics,A-lifetimes,A-macros,T-compiler,D-confusing
low
Critical
509,161,626
go
proposal: x/text: provide an option for compact number formatting
The Unicode Technical Standard specifies a list of long and short [Compact Number Formats](http://www.unicode.org/reports/tr35/tr35-numbers.html#Compact_Number_Formats) for use in formatting truncated versions of numbers (e.g. 35K, 2M). For reference, the JSON representation of these formats in English can be viewed [h...
Proposal
low
Major
509,167,271
terminal
Conditional settings - i.e. different colors when Administrator
<!-- 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨 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-Feature,Area-Settings,Product-Terminal
low
Critical
509,204,006
rust
Investigate replacing most of the debugger pretty-printing scripts with traits.
In the case of `Vec<T>` and `String`, it would be possible to have e.g.: ```rust impl<'a, T> DebuggerView<'a> for Vec<T> { type View = &'a [T]; fn debugger_view(&'a self) -> Self::View { &self[..] } } ``` ```rust impl<'a> DebuggerView<'a> for String { type View = &'a str; fn debugger_view(&'a ...
A-debuginfo,E-hard,P-medium,T-compiler,WG-debugging,E-needs-design,E-needs-investigation
medium
Critical
509,204,820
vue
transition-group has stutter when component updated elsewhere
### Version 2.6.10 ### Reproduction link [https://jsfiddle.net/zncxud6q/](https://jsfiddle.net/zncxud6q/) ### Steps to reproduce Use test1, test2, or test3 buttons to see transition without stutter. Use test4, test5, or test6 buttons to see transition with stutter. ### What is expected? No stu...
bug,transition
low
Minor
509,225,095
rust
Audit uses of pprint in suggestions
The preferred source of user code in suggestions should be coming from `span_to_snippet`, optionally with `pprint`ing an expression if desired. There are places in the codebase where older code might be using `pprint` directly, which can end up with us suggesting code that doesn't look like what the user already wrote....
C-cleanup,A-diagnostics,T-compiler
low
Minor
509,255,334
terminal
Code health: consider splitting Pane class into leaf and parent classes
Idea: Split `Pane` class into `LeafPane` and `ParentPane`, both inheriting from abstract base `Pane`. Currently Pane class has many members that are used only in leaf or only in parent mode. IMHO proposed splitting would make the code much cleaner and safer (e.g. from accidentally accessing a terminal when we're not...
Area-UserInterface,Product-Terminal,Issue-Task,Area-CodeHealth
low
Minor
509,297,519
pytorch
[jit] scripted module and user defined methods
Currently, for a scripted module, user-defined methods that return `self` will return a **unscripted** module, yet builtin ones return the scripted one: ```py In [14]: import torch ...: ...: class SimpleNet(torch.nn.Module): ...: def __init__(self, mult): ...: super().__init__() ...
oncall: jit,triaged
low
Critical
509,307,804
react
SuspenseList in DevTools could cycle through the Suspense states
We currently have a way to force a fallback on a Suspense boundary in DevTools. It might be cool to have a "play" button or something on SuspenseList that cycles through the states. E.g. if it's "together" mode it shows all the fallbacks and then switches to showing all the content and then back again in a loop. ...
Component: Developer Tools,React Core Team
medium
Minor
509,308,221
pytorch
jit script fails with `AttributeError: 'str' object has no attribute 'lineno'`
## πŸ› Bug <!-- A clear and concise description of what the bug is. --> ## To Reproduce minimum failing code: ```python import torch from torch import jit from torch import nn class Bar(nn.Module): def __init__(self, a): super(Bar, self).__init__() self.a = a @torch.no_grad() def f...
oncall: jit,triaged
low
Critical
509,321,994
flutter
Documentation for how to share assets from the host app to the flutter module
cc @gaaclarke, @matthew-carroll
framework,engine,d: api docs,a: existing-apps,P2,team-engine,triaged-engine
low
Minor
509,335,700
pytorch
`torch.nn.Module._load_state_dict` catch-all error message can be misleading
## πŸ› Bug `torch.nn.Module._load_state_dict` loads parameter values by an in-place `copy_` operation on the module parameters. Sometimes the parameter values may be initialized to an expanded tensor, in which case the `copy_` call fails with a catch-all error message, ``` RuntimeError: Error(s) in loading state_...
triaged
low
Critical
509,339,721
pytorch
Seg-fault in LayerNormKernelImpl
## πŸ› Bug While implementing a recurrent neural network with Layer normalization on the GPU I get a segmentation fault in the kernel implementation of the normalization. The model runs fine on CPU. ## To Reproduce Steps to reproduce the behavior: 1. create a model with layerNormalization and try to run it o...
needs reproduction,module: crash,module: cuda,triaged
low
Critical
509,343,806
pytorch
Unable to install pytorch with cuda 10.0 using conda
## πŸ› Bug Corrupted archive of pytorch 1.3.0 with cuda 10.0 ## To Reproduce Steps to reproduce the behavior: install pytorch with cuda 10.0 in conda ## Expected behavior installation of pytorch with cuda 10.0 ## Environment Collecting environment information... PyTorch version: N/A Is debug bu...
module: build,triaged
low
Critical
509,354,939
TypeScript
Creating too many types for DOM & D3
Commit 06fe1ed53721862b56c61ebb89b1daee2bc10710 introduced a regression in the number of types created when compiling a snippet of `@types\d3`. Specifically, it appears to be elaborating types for an error message that ends up getting dropped. Repro: ```json { "compileOnSave": false, "compilerOptions": { ...
Domain: Performance
low
Critical