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
540,583,857
flutter
BouncingScrollPhysics has an enormous fling velocity limit
I have tried using `BouncingScrollPhysics` and found out that it has just an enormously huge limit of max repeating fling velocity. This is important for me because I have a long list in my application (it's songs list and it is for like 400 songs on my device). This is the piece of code that found that I guess car...
platform-ios,framework,a: fidelity,f: scrolling,c: proposal,P2,team-framework,triaged-framework
low
Major
540,610,786
go
encoding/json: the Decoder.Decode API lends itself to misuse
I'm observing the existence of several production servers that are buggy because the `json.Decoder.Decode` API lends itself to misuse. Consider the following: ```go r := strings.NewReader("{} bad data") var m map[string]interface{} d := json.NewDecoder(r) if err := d.Decode(&m); err != nil { panic(err) // n...
NeedsDecision
high
Critical
540,642,138
terminal
Don't printf wstring_views by copying them into wstrings; use `%.*s`!
`StringCchPrintf` and--since C99--`printf` support a specifier that indicates that a string is counted: ``` auto size = /* ... */; auto data = /* ... */; printf("%.*s", size, data); ``` The `.*` suggests that printf should consume one register-width argument to determine how many characters the string that fo...
Product-Conhost,Help Wanted,Product-Terminal,Issue-Task,Area-CodeHealth
low
Minor
540,673,554
tensorflow
unbounded memory leak in tf.io.gfile.isdir()
This was discovered in debugging of https://github.com/tensorflow/tensorboard/issues/766 by a combination of @psybuzz, @wchargin, and myself. From empirical evidence from TensorBoard users it appears that this grows without bound, so in practical usage it only takes a day or so to consume dozens of GB of memory. Ca...
comp:tensorboard,stat:awaiting tensorflower
low
Critical
540,680,125
go
x/build/cmd/coordinator: runSubrepoTests (golang.org/x repo tests) should also check maxTestExecErrors constant
In my investigation at https://github.com/golang/go/issues/35581#issuecomment-567275354, I wrote: > It is intentional to keep retrying "communications failures" forever, because the expectation is that they should eventually succeed. I'm seeing now that this isn't quite true. There is a constant defined: ``` ...
Builders,NeedsFix,FeatureRequest
low
Critical
540,684,380
nvm
Add "rm" alias for "uninstall"
As a developer more regularly engaged with `npm`'s command aliases, I would like a way to use the same kinds of shortened syntax with `nvm`. For example: - `npm i` == `npm install` - `npm rm` == `npm uninstall` - etc. It seems odd to me that `nvm` doesn't consistently use long- or short-form verbs for comman...
feature requests
low
Minor
540,714,853
ant-design
Custom line in Tree's showLine
- [x] 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? In `Tree` Component, currently I can set `showLine` to show the line, but I can't customize this line's style. ### What do...
Inactive
low
Minor
540,774,455
flutter
Callback to be ran when StreamBuilder rebuilds?
<!-- 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,c: proposal,P3,team-framework,triaged-framework
low
Critical
540,781,824
flutter
Typography().dense and TextBaseline.ideographic cannot work with Chinese?
Typography().dense and TextBaseline.ideographic cannot work with Chinese? When I write a widget, just like this: ```dart Row(crossAxisAlignment: CrossAxisAlignment.center, mainAxisSize: MainAxisSize.max, children: [ Text('我是中文'), Spacer() ,Text('123456'), ]) ``` The first `Text` and the second `Text` cann't ...
engine,a: internationalization,a: typography,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-engine,triaged-engine
low
Critical
540,785,213
opencv
OE-30 "Color Calibration" Discussion
Please see https://github.com/opencv/opencv/wiki/OE-30.-Color-Calibration I think we need to: - Create a function that will robustly find common MacBeth charts (allowing for partial occlusion of hands holding the corners) and their homography - [This one](https://www.bhphotovideo.com/c/product/1014557-REG/dgk_c...
evolution
low
Minor
540,865,195
go
cmd/trace: grey colour is undocumented in goroutine analysis
<!-- Please answer these questions before submitting your issue. Thanks! --> 1.13.4 ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture are you using (`go env`)? not need ### What did you do? I use go tool trace to analysis goroutines #...
Documentation,NeedsDecision,compiler/runtime
low
Minor
540,887,056
opencv
Support OpenCV Swift for macOS catalina
At the moment we are supporting latest version of Xcode in iOS, but would be really good to support macOS catalina as it is already compatible with iOS apps
feature,platform: ios/osx
low
Minor
540,912,539
TypeScript
Invalid output emited as the result of javascript file compilation: amd, default export, jsdoc
**TypeScript Version:** 3.7.3 **Search Terms:** compile javascript default function **Code** ./index.js ```js /** * @typedef {Does_Not_Matter} <does.not.matter> does_not_matter */ export default function MyClass(){ } MyClass.data = []; ``` **Expected result:** ./out/index.js ```js define(["requi...
Bug,Help Wanted
low
Critical
541,016,339
kubernetes
Upgrades of large clusters should be scalability tested
As shown in https://github.com/kubernetes/kubernetes/issues/86483, performance of up-and-running large clusters was fine in 1.17, but upgrade of such cluster has high probability of killing the cluster. We should add "control plane upgrade" scalability test to release blocking tests. @kubernetes/sig-scalability-b...
kind/bug,priority/important-soon,sig/scalability,lifecycle/frozen
medium
Critical
541,016,373
scrcpy
stop recording option is not available in scrcpy
I am trying to build a script that can automatically get video from scrcpy without opening the scrcpy application is there any way i can do this. is there any way so that scrapy can record video for some specific time lets say 5 - 10 seconds and then automatically exit the program. or atleast any command that can close...
feature request
medium
Critical
541,110,830
TypeScript
__decorate helper should not use `this` when targeting modules
<!-- 🚨 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
541,134,150
godot
Opening more than 1 editors at the same time, shows error
**Godot version:** 3.2 beta 4 **OS/device including version:** Ubuntu 19.10 **Issue description:** **Steps to reproduce:** 1. Download all repository https://github.com/godotengine/godot-demo-projects 2. Scan it 3. Open ~10 projects at the same time This error should appear ``` ERROR: move_child: Parent no...
bug,topic:editor,confirmed
low
Critical
541,142,122
PowerToys
Add Recycle Bin to Windows Task Bar
I do this manually with every system I configure. Many coworkers and family ask how I manged to get the Recycle Bin into my task bar so it's proven to be very popular! Super handy for dragging files to delete and file recovery. I think every Windows user would love to have this automated. The PowerToy should have a ...
Idea-New PowerToy,Product-Tweak UI Design
medium
Critical
541,143,426
kubernetes
Enable deleting API objects even when storage-level decryption is not working properly
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: Users are unable ...
kind/feature,sig/auth,lifecycle/frozen,needs-triage
low
Critical
541,152,999
godot
Invalid read in audio demo
**Godot version:** Godot 3.2 beta 4 **OS/device including version:** Ubuntu 19.10 **Issue description:** Sanitizer Log(asan) ``` ==7635==ERROR: AddressSanitizer: heap-use-after-free on address 0x631006a5480c at pc 0x00000163132e bp 0x7ffc6bce04d0 sp 0x7ffc6bce04c0 READ of size 4 at 0x631006a5480c thread T0 ...
bug,topic:audio
low
Critical
541,171,498
godot
Memory leak when reverting type changing
**Godot version:** 3.2 beta 4 **OS/device including version:** Ubuntu 19.10 **Issue description:** Leak info from Leak Sanitizer ``` Indirect leak of 72 byte(s) in 1 object(s) allocated from: #0 0x7f843360dae8 in malloc (/lib/x86_64-linux-gnu/libasan.so.5+0x10dae8) #1 0xea532ff in Memory::alloc_static(...
bug,topic:core,confirmed,topic:gui
low
Critical
541,176,103
go
cmd/go: two possible canonical states when go.sum is empty, the file may or may not exist
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? go version go1.13.5 darwin/amd64 ### Does this issue reproduce with the latest release? using latest ### What operating system and processor architecture are you using (`go env`)?...
NeedsInvestigation,GoCommand,modules
low
Critical
541,198,170
javascript
Rules for nullish coalescing and optional chaining
I noticed that babel-preset-airbnb added the following stage 4 proposals in [v4.2.0](https://github.com/airbnb/babel-preset-airbnb/blob/master/CHANGELOG.md#420---20191114): - @babel/plugin-proposal-nullish-coalescing-operator - @babel/plugin-proposal-optional-chaining Are there any rules/guidelines for these fea...
semver-breaking: guide change,needs eslint rule change/addition
low
Major
541,204,789
godot
Main screen EditorPlugins don't set the bottom anchor
**Godot version:** Checked in v3.1.2-stable, and latest master **OS/device including version:** linux, 4.19.84-1-MANJARO **Issue description:** If you add a GraphEdit node to the panel used in a MainScreen in an EditorPlugin, it won't appear. Every other node i've tested shows up fine. **Steps to reproduc...
topic:plugin,topic:gui
low
Minor
541,221,374
node
Rscript throws error "missing value where TRUE/FALSE needed" when analyzing benchmarks
* **Version**: master * **Platform**: Ubuntu * **Subsystem**: http2 Followed documentation to create [comparison benchmarks](https://github.com/nodejs/node/blob/master/benchmark/writing-and-running-benchmarks.md#comparing-nodejs-versions) Command run: ```console $ node benchmark/compare.js --old ../node-maste...
benchmark
low
Critical
541,225,305
pytorch
cuCtxGetDevice error and seg fault with DDP and OpenMPI
## 🐛 Bug <!-- A clear and concise description of what the bug is. --> When using DistributedDataParallel with OpenMPI+UCX for certain tested models I'm getting this error in the DDP constructor (I believe it's during the model broadcast): ``` 0: [1576565271.426514] [cgpu06:45376:0] cuda_ipc_md.c:62 UCX E...
oncall: distributed,module: cuda,triaged
low
Critical
541,230,018
node
http2/write.js benchmark throws "ERR_HTTP2_ERROR"
* **Version**: v10.18.0, v12.14.0 * **Platform**: Ubuntu * **Subsystem**: http2 Command run: ```console $ h2load --version h2load nghttp2/1.41.0-DEV $ node benchmark/run.js --filter write http2 http2/write.js http2/write.js benchmarker="h2load" size=100000 length=65536 streams=100: 1,898.23 http2/write....
http2
low
Critical
541,251,688
go
x/tools/internal/event: improve package documentation
I know it's an internal package, but the package doc for internal/telemetry is poorly conceived: ``` Package telemetry provides an opinionated set of packages that cover the main concepts of telemetry in an implementation agnostic way. As a library author you should look at... ``` It doesn't say what the pack...
Documentation,NeedsInvestigation,Tools
low
Major
541,265,436
terminal
TermControl key down handling investigation and refactoring
<!-- 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨 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...
Area-TerminalControl,Product-Terminal,Issue-Task
low
Critical
541,271,126
godot
[Modifier + Key] action is fired when pressing Key without modifier
Sorry if this should be a duplicate. Its not that easy finding anything in 5000+ open issues tho. **Godot version:** 3.1.2 **OS/device including version:** Manjaro with kernel 5.4.2 **Issue description:** When creating an action with a modifier key `event.is_action_released()` returns `true` when only press...
bug,confirmed,topic:input
low
Minor
541,305,813
godot
C# threads / tasks don't work on the web (async / await)
**Godot version:** 3.2 beta 4 **OS/device including version:** Windows 10 **Issue description:** Threading and tasks don't seem to work at all when exporting mono projects to the web. **Steps to reproduce:** 1. Create a new project. 2. Create a new thread or task in a c# script that does something ( I tried pri...
enhancement,platform:web,topic:dotnet
low
Major
541,308,437
vue
Inline style binding is NOT corporate with web standard
### Version 2.6.11 ### Reproduction link [https://codesandbox.io/s/thirsty-heisenberg-elvz6?fontsize=14&hidenavigation=1&theme=dark](https://codesandbox.io/s/thirsty-heisenberg-elvz6?fontsize=14&hidenavigation=1&theme=dark) ### Steps to reproduce 1. open the repo 2. check the style of the green bo...
improvement
medium
Minor
541,313,660
svelte
Flip animations skipped in Firefox and Chrome, but not in Safari
**Describe the bug** In rare instances, flip animations are skipped (in browsers other than Safari). I'm making a sliding puzzle. I have a fixed start position. As shown in the attached GIF, when I click 2 followed by 3, the sliding animation is skipped for the second click (i.e. the 3-piece teleports to its end po...
bug,temp-stale
low
Critical
541,322,847
youtube-dl
Has the support for decko been implemented yet?
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
question
low
Critical
541,322,934
flutter
Support protected GL contexts
This is related to #32082 Support of [EGL_EXT_protected_content](https://www.khronos.org/registry/EGL/extensions/EXT/EGL_EXT_protected_content.txt) and [GL_EXT_protected_textures](https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_protected_textures.txt) seems to be an alternative way to resolve #32082 In thi...
c: new feature,platform-android,engine,a: video,customer: crowd,a: platform-views,p: video_player,package,c: proposal,P2,team-android,triaged-android
low
Major
541,336,998
rust
[mir-opt] Simplify `SwitchInt`s of explictly written ranges to range tests
Consider the program: ```rust fn program(x: u8) -> u8 { match x { 1 | 2 | 3 | 4 => 0, _ => 1, } } ``` We will generate the following `SwitchInt`: ```rust switchInt(_1) -> [1u8: bb2, 2u8: bb2, 3u8: bb2, 4u8: bb2, otherwise: bb1]; ``` Ostensibly, something like this would be mor...
I-slow,C-enhancement,T-compiler,A-mir-opt
low
Minor
541,343,568
godot
Exported mac executables don't have proper permissions to run when exported from Mac
**Godot version:** 3.2 beta4 **(mono)** **OS/device including version:** Mac OSX (Mojave) **Issue description:** When exporting mac applets, they don't run because they don't have the correct permissions when exported on a mac. **Steps to reproduce:** 1. Create basic project, set main scene 2. Export for ...
bug,platform:macos,topic:porting
low
Critical
541,344,656
pytorch
IndexExpressions (or slice) for jit.script functions
## 🚀 Feature We should be able to do something like: ```py @jit.script def foo(x, b: int): bs = x.size(0) // b for i in range(bs): bi = np.s_[i*b:(i+1)*b] # or slice(i*b, (i+1)*b) bar(x[bi]) ``` ## Motivation Giving names to long/repeated index expressions makes kernels a lot e...
oncall: jit,triaged
low
Minor
541,347,892
vscode
[Feature Request] Create collapsed and expanded elements in tooltips
### Description I try create my own extension. I use vscode api extensions. But I didn't find any methods for create collapsed / expanded elements in tooltip > I try found any methods with keywords: `collapse`, `collapsed` etc. I found only **treeItems**, but I think this is other. **So, I want create request...
markdown,under-discussion
low
Critical
541,348,610
pytorch
[Feature Request] Make torch.solve output NaN for singular matrix
## 🚀 Feature Make torch.solve output NaNs instead of crashing for singular matrix ```python import torch sol, lu = torch.solve(torch.zeros(3,1), torch.ones(3,3).unsqueeze(0)) ``` Now it leads to crash: > Traceback (most recent call last): > File "<stdin>", line 1, in <module> > RuntimeError: solve_cpu...
triaged,module: linear algebra
low
Critical
541,363,340
rust
Switching to opt-level=z on i686-windows-msvc triggers STATUS_ACCESS_VIOLATION
I have a crate which compiles and tests fine, but as soon as I switch `opt-level=z` it triggers `STATUS_ACCESS_VIOLATION` in some tests, but only on the windows targets. Tested on - nightly-2019-11-06 - nightly-2019-12-20 The corresponding log outputs can be found here https://ci.appveyor.com/project/dignifiedq...
A-LLVM,O-windows,P-high,T-compiler,I-unsound,C-bug,E-needs-mcve,O-x86_32,E-needs-investigation
medium
Critical
541,363,850
TypeScript
Support for all type features in declaration files.
I'm on TS 3.7.3 at time of writing this. It seems like this issue should simply be focused on and fixed before continuing to add more and more features to the language and widening the source vs declaration gap. This is quite a problem! ## Search terms "typescript declaration file limitations" "has or is u...
Meta-Issue
high
Critical
541,364,094
pytorch
c++ PReLUFuncOptions declared, not used or valid
## 🐛 Bug nothing serious, parameterized relu's functional form requires the input tensor and the weight(s), not the _num_parameters_ & _init_ arguments of the module: ``` struct TORCH_API PReLUOptions { /// number of `a` to learn. Although it takes an int as input, there is only /// two values are legi...
triaged
low
Critical
541,375,751
pytorch
TorchBind broken on rocm
with https://github.com/pytorch/pytorch/pull/29501 ``` 20:15:47 ====================================================================== 20:15:47 ERROR: test_torchbind (__main__.TestScript) 20:15:47 ---------------------------------------------------------------------- 20:15:47 Traceback (most recent call last): ...
oncall: jit,triaged
low
Critical
541,377,842
terminal
terminal/parser: determine what to do when split escape sequence writes show up
# Environment ```none Windows build number: Version 10.0.18363.535 (reproducible with OpenConsole from master) Windows Terminal version (if applicable): n/a Any other software? - Simple ConPTY test code ``` # Steps to reproduce - Create pseudo console as seen in examples - Copy I/O to and from seria...
Product-Conpty,Area-Input,Issue-Task,Priority-3
medium
Major
541,387,273
pytorch
allow setting different batch size splits for data_parallel.py and distributed.py
## 🚀 Feature Allow allocation of a second parameter when assigning devices to parallel implementations to control how the batch will be split between the devices involved. ## Motivation The main limitation in any multi-GPU or multi-system implementation of PyTorch for training i have encountered is that each ...
oncall: distributed,feature,triaged,module: data parallel
low
Major
541,396,519
flutter
Server-side rendering for Flutter web
Status: If your interest is in SEO, see https://github.com/flutter/flutter/issues/46789; otherwise, see https://github.com/flutter/flutter/issues/47600#issuecomment-1016920547. ---- As an app/web developer, I think Server-side rendering may offer a few advantages: 1. Easier search engine optimization. 2. Bett...
c: new feature,customer: crowd,platform-web,c: proposal,P3,team-web,triaged-web
high
Major
541,407,765
storybook
How to show viewport on the docs page?
**Describe the bug** How to show viewport on the docs page? The canvas page has viewport options,But the documentation page is not。Is this a bug or does it require additional configuration? **Screenshots** The canvas page has viewport options. ![image](https://user-images.githubusercontent.com/20339327/71317340-376368...
help wanted,addon: viewport,addon: docs,medium
low
Critical
541,413,610
TypeScript
Assigning to a string fails if it was previously compared to an enum
**TypeScript Version:** What is installed on the TypeScript playground <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Assigning to a string fails if it was previously compared to an enum** If you run the code below in the TypeScript playground, line `widgetName...
Bug,Fix Available,Rescheduled
low
Critical
541,447,153
godot
UniformTexture in VisualShader Not Being Applied / Saved in Some Situations
**Godot version:** 3.2 beta 4 **OS/device including version:** Windows 10 **Issue description:** UniformTexture in VisualShader is not being applied / saved in some situations. It is shown in the viewport, but running the game has no effect and when I reload the project no longer appears the texture placed. I not...
bug,topic:editor,topic:shaders
low
Minor
541,464,800
pytorch
[docs] F.ctc_loss docs to warn clearly about invalid inf-causing inputs; zero_infinity to become enabled by default
**UPD** summary of all the long discussion for further discoverability: 1. F.ctc_loss will produce inf loss if presented with invalid unalignable examples 2. Such invalid examples may be generated by official usage code example if one is extremely unlucky or if one twists the dimension sizes a little bit 3. When pre...
module: docs,triaged
low
Major
541,470,592
flutter
[google_maps_flutter] MissingPluginException When using in PageView
## Steps to Reproduce I have an issue combining PageView and Google maps, as follows: 1. Install [google_maps_flutter: ^0.5.21+15] 2. Run attached app 3. Google maps will appear, swtich to next page by clicking Font size icon 4. Exception will be thrown `MissingPluginException (MissingPluginException(No impleme...
c: crash,framework,p: maps,package,team-ecosystem,has reproducible steps,P2,found in release: 2.3,triaged-ecosystem
low
Major
541,470,981
youtube-dl
Fallback to import cryptodome if crypto is missing
<!-- ###################################################################### WARNING! IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE ###################################################################### --> ## Checklist <!-- Carefully read and work through this check lis...
question
low
Critical
541,472,510
TypeScript
Named imports should respect Record<string, any> types
<!-- 🚨 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
541,483,215
pytorch
More dynamic PyTorch APIs
## 🚀 Feature Implement some of the pytorch APIs taking tensors as inputs, instead of python scalars. ## Motivation Many of the pytorch APIs takes some of the inputs as python scalars. Example: https://pytorch.org/docs/stable/tensors.html#torch.Tensor.narrow This is OK when the inputs are step constants...
high priority,triaged,module: ux
medium
Major
541,489,101
vscode
Reserve shortcut prefix for user
While installing multiple third-party extensions my shortcuts quickly become messed up. I found almost any direct ctrl-key sequences on my linux based system where bound, mostly by default vscode commands, with the single exception of `ctrl-e`. I started adding the individual commands I needed under that prefix in...
feature-request
low
Minor
541,497,141
create-react-app
Cannot find module './logo.svg' using custom react-scripts and Typescript template
### Is your proposal related to a problem? Yes. When I forked this repo and re-published version 3.3.0 of react-scripts (WITHOUT ANY CHANGES!) under my own organization on npmjs, I was unable to successfully build/start a project using these custom scripts. Steps used: 1. Execute `npx create-react-app my-app...
issue: proposal
low
Critical
541,507,732
youtube-dl
Please add support for likemoi.telequebec.tv
## Checklist - [x] I'm reporting a new site support request - [x] I've verified that I'm running youtube-dl version **2019.11.28** - [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 bugtracker ...
site-support-request,geo-restricted
low
Critical
541,513,863
rust
In the lexer, accept number suffixes that start with `e`.
Currently, the lexer will reject tokens like `1.0etest` expecting an exponent after the `e`. It could alternatively accept this token as `LitFloat { value: 1.0, suffix: "etest" }`. This would mean that proc macros could use suffixes that start with an `e` (although not the suffix `e` itself of course).
A-parser,T-lang,C-feature-request,A-proc-macros
low
Minor
541,522,391
rust
Don't emit "value assigned to ... is never read" for each instance?
Scrolling through warnings when compiling projects during the early development stages can be a bit of a chore, but there's not much the compiler can do about it as it doesn't know whether you just haven't gotten around to something or if you forgot about it. I typically add `#![allow(unused_code)]` and `#![allow(dead_...
C-enhancement,A-diagnostics,T-compiler,D-verbose
low
Critical
541,563,614
go
cmd/asm: doesn't handle register offset correctly when GOARCH=arm
<!-- Please answer these questions before submitting your issue. Thanks! --> ### What version of Go are you using (`go version`)? <pre> $ go version go version go1.13.5 darwin/amd64 </pre> ### Does this issue reproduce with the latest release? yes ### What operating system and processor architecture a...
help wanted,NeedsInvestigation,compiler/runtime
low
Critical
541,599,878
electron
Cascading of windows
Will electron has any plan to provide a flag for cascading of windows based on OS? It will be helpful in many applications if flag is provided. ### Problem Description I have a use case in my application to cascade the windows based on last opened window. we implemented it based on screen module provided in electro...
enhancement :sparkles:
low
Minor
541,646,027
youtube-dl
Please add support for play.nova.bg
<!-- ###################################################################### 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
541,662,945
pytorch
Force libtorch to use CUDA context
I’m trying to integrate C++ libtoch to load a model into my application. My application does many CUDA staff before I load the model with libtorch. Thus, the CUDA context has already been created. For some reason, even the CUDA context has already been created and the calling thread has already a valid context, when...
oncall: jit,triaged
low
Minor
541,741,505
TypeScript
Generator helper should include [Symbol.toStringTag]
**TypeScript Version:** `3.8.0-dev.20191223` and `3.7.3` **Search Terms:** Generator, toStringTag, transformer, helper, tslib **Code** The following code will error in when using `compilerOptions.target = es5`, but works correctly when compiled with `target = es2015` or greater. ```ts // index.ts func...
Needs Investigation
low
Critical
541,741,872
terminal
no { with German Keyboard via RDP (Remote Desktop APPx App only)
Version: 0.7.3451.0 local machine: Microsoft Windows [Version 10.0.18363.535] RDP (PAW): Microsoft Windows [Version 10.0.18363.535] WinPS 5.1 and PSCore 7 rc1 I am using the Remote Desktop and Remote Desktop Preview APPx apps to connect to my virtual PAW where I run Windows Terminal Preview (version above and pre...
Help Wanted,Area-Input,Issue-Bug,Area-TerminalControl,Product-Terminal,Priority-2
low
Minor
541,774,651
flutter
[webview_flutter] on IOS onPageFinished is never called (while being offline)
If my iPhone is in Airplane mode `onPageFinished` is never called. For Android it works as expected (`onPageFinished` is called and "Web page not available" is shown) Implementation: ``` WebView( onWebViewCreated: (WebViewController controller) { webViewController = control...
platform-ios,customer: crowd,p: webview,package,has reproducible steps,P2,found in release: 2.2,found in release: 2.5,team-ios,triaged-ios
low
Major
541,778,888
pytorch
Can't pin storage memory
## 🐛 Bug Can't pin storage memory. Not sure if this is planned or common behavior, but if this is part of the interface I guess it shouldn't fail. ## To Reproduce Steps to reproduce the behavior: 1. ```import torch; torch.randn(10).storage().pin_memory()``` AttributeError: module 'torch.cuda' has no at...
module: docs,module: cuda,triaged
low
Critical
541,783,771
pytorch
Bug in ForkingPickler for multiprocessing spawn context for shared storages on Linux
Hello! This code ```python import torch import multiprocessing def _mp_foo(*args, **kwargs): pass if __name__ == '__main__': ctx = multiprocessing.get_context("spawn") t = torch.randn(100) t1 = t.narrow(0, 0, 10) t2 = t.narrow(0, 0, 10) t3 = t.narrow(0, 10, 20) ...
module: multiprocessing,triaged
low
Critical
541,829,352
pytorch
attribute and register_buffer are not the same on gpu
## 🐛 Bug According to the [jit documentation](https://pytorch.org/docs/stable/jit.html), "2. register_buffer - Values wrapped in register_buffer will work as they do on nn.Modules. This is equivalent to an attribute (see 4) of type Tensor." However, when using attribute, an error is raised, see below for an exam...
oncall: jit,triaged
low
Critical
541,833,715
TypeScript
Undetected unreachable code
These are obvious mistakes. <!-- Please try to reproduce the issue with the latest published version. It may have already been fixed. For npm: `typescript@next` This is also the 'Nightly' version in the playground: http://www.typescriptlang.org/play/?ts=Nightly --> **TypeScript Version:** 3.7.x-dev.20191221 ...
Suggestion,In Discussion
low
Critical
541,840,789
youtube-dl
subtitles urls only listed when used with "writesubtitles" in extract_info()
## Checklist <!-- Carefully read and work through this check list in order to prevent the most common mistakes and misuse of youtube-dl: - Look through the README (http://yt-dl.org/readme) and FAQ (http://yt-dl.org/faq) for similar questions - Search the bugtracker for similar questions: http://yt-dl.org/search-i...
question
low
Critical
541,846,946
flutter
flutter assembly fails if the project path contains ! (exclamation mark)
flutter assemble (and hence - build and everything) fails if the project path includes a ! character (an exclamation mark). It raises error: ``` --output directory is required for assemble. ``` Discovered today (rather painfully), after an upgrade to 1.12. ## Steps to Reproduce <!-- Please tell us exactly how...
c: regression,tool,platform-windows,P2,team-tool,triaged-tool
low
Critical
541,857,538
tauri
Tracking : accessibility (a11y)
Hi, pretty new here, but as a discussion where ongoing on the project Discord, doing a tracking issue for this seemed like a good idea (Disclaimer : I'm not an accessibility expert at all, let alone a Tauri one, so suggestions are highly encouraged) Accessibility is something very important, it allows people with vi...
type: documentation,type: feature request
medium
Major
541,863,901
godot
BUTTON_MASK_MIDDLE and BUTTON_WHEEL_UP both have a value of 4
**Godot version:** 3.1.2-mono **OS/device including version:** Windows 10 LTSC Version 1809 and Manjaro Linux **Issue description:** I'm not sure if it's intentional but BUTTON_MASK_MIDDLE and BUTTON_WHEEL_UP in the ButtonList enum both have a value of 4. BUTTON_MIDDLE has a value of 3 so I would assume BUTTO...
discussion,topic:input
low
Minor
541,907,426
pytorch
Option to apply weights to gradients when using DistributedDataParallel
## 🚀 Feature I would like to propose that the API expose an option to weight the gradients during backpropagation in when using DistributedDataParallel. ## Motivation Let’s say I have 4 GPUs and I am training a semantic segmentation network on a dataset with an ignore class. As I understand it, in the DataParal...
oncall: distributed,feature,module: autograd,triaged,module: data parallel
low
Major
541,920,611
flutter
Add ability to consume XML fonts <font-family> on Android
[XML fonts](https://developer.android.com/guide/topics/ui/look-and-feel/fonts-in-xml) allow Android apps not to bundle the font assets. Internally, apps use these to pull fonts out of play services. Would it be possible to consume these from Flutter as well? This could significantly reduce the assets that need to be...
c: new feature,platform-android,engine,a: typography,P2,team-android,triaged-android
low
Minor
541,975,224
ant-design
TreeSelect - TreeNode `selectable` false is same style as other one
- [x] 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? Design should update: https://codesandbox.io/s/r5ff9 ### What does the proposed API look like? N/A ref: https://github....
Inactive
low
Minor
542,115,623
rust
illegal instruction on x86_64-linux-android since 1.40.0
It looks like when running the tests on x86_64-linux-android through qemu (via cross) they seem to fail due to an illegal instruction since the Rust 1.40 release. This happens consistently. https://github.com/LiveSplit/livesplit-core/runs/362238400#step:8:141
I-crash,O-android,O-x86_64,P-medium,T-compiler,regression-from-stable-to-stable,C-bug
low
Minor
542,120,950
pytorch
pytorch forward hangs in multiprocess environment
## 🐛 Bug <!-- A clear and concise description of what the bug is. --> This a very peculiar bug I am encountering. I am using MTCNN face detector from https://github.com/TreB1eN/InsightFace_Pytorch/ on pytorch 1.3.1+cpu The face detection works fine when API is called from __main__ thread. But if I forked a new...
module: multiprocessing,triaged
low
Critical
542,127,484
youtube-dl
Support request for app.myoutdoortv.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
542,133,411
godot
Viewport sliders don't properly update size when dragged manually
**Godot version:** 3.2 beta4 **Issue description:** When you pan viewport outside view, the slider will shrink, but it won't expand again when dragged manually, which later results in the grabber "teleporting" on zoom. ![pB6iT2rD7w](https://user-images.githubusercontent.com/2223172/71415356-83014780-265b-11ea-8af...
bug,topic:editor,confirmed
low
Minor
542,168,293
pytorch
ATen not compiled with MKL support
I want to run torchaudio with this code ``` import torch import torchaudio import matplotlib.pyplot as plt filename = "./steam-train-whistle-daniel_simon-converted-from-mp3.wav" waveform, sample_rate = torchaudio.load(filename) print("Shape of waveform: {}".format(waveform.size())) print("Sample rate of wavefor...
module: build,triaged,module: mkl
low
Critical
542,171,675
flutter
Need support for placeholder widget in FadeInImage
<!-- 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,a: images,c: proposal,P3,team-framework,triaged-framework
low
Critical
542,213,054
flutter
TextEditingController should have a keepValue field just like ScrollController has a keepScrollOffset value
c: new feature,framework,a: quality,P2,team-framework,triaged-framework
low
Minor
542,255,141
TypeScript
Suggestion: type narrowing based on user-defined type guards against properties
<!-- 🚨 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,In Discussion
low
Critical
542,283,057
pytorch
Typo in `torch.utils.tensorboard.add_image`
## 📚 Documentation In [`torch.utils.tensorboard.add_image`](https://pytorch.org/docs/stable/tensorboard.html#torch.utils.tensorboard.writer.SummaryWriter.add_image) there is a small typo: > ... is also suitible as long as corresponding `dataformats` argument is passed. e.g. CHW, HWC, HW. "suitible" should be ...
oncall: visualization
low
Minor
542,286,998
pytorch
No auto-suggest capacity for Transformer
## 🐛 Bug 1. I use Pycharm for my developing tools. 1. When I typed `from torch.nn import Trans`, I couldn't find the prompt for Transformer 1. Then I checked the source code in[torch.nn.modules.__init__.pyi.in](https://github.com/pytorch/pytorch/blob/master/torch/nn/modules/__init__.pyi.in) and cannot find the si...
triaged,enhancement
low
Critical
542,312,735
flutter
Duration and curve for FocusTraversalPolicy
<!-- 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,c: proposal,a: desktop,f: focus,P3,team-framework,triaged-framework
low
Critical
542,322,061
TypeScript
Optional chaining not working with void type
# Demo ## [playground demo](http://www.typescriptlang.org/play/?ts=3.8.0-dev.20191224#code/C4TwDgpgBAggJnAThAziqBeKBvAUFAqAYwEtQAuKFYREgOwHNcBfXXUSKAVRQkUxz5CACwD2AWwiV4SVOgA+UAK504EAGb0IcIQQDuoxAGtpCZGiiKAbqJI7WuNUQA2AQ2RRnEYMso8+bEoAdGKSAPxBpKC4wQbGEVEgbEA) ### TypeScript source with nightly version 3.8.0-dev.201...
Bug
medium
Critical
542,328,528
youtube-dl
Please add support for the onion URL of invidious.
<!-- ###################################################################### 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
542,334,036
youtube-dl
Support to https://live.fc2.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
542,382,023
rust
[Rustdoc] A way to disambiguate between Trait methods and implemented ones in search?
![image](https://user-images.githubusercontent.com/15225902/71450140-60bc1680-278e-11ea-96c6-17aaf20c8b7b.png) Maybe a duplicated of #48069.
T-rustdoc,C-feature-request,A-rustdoc-search
low
Minor
542,389,720
neovim
Setting langmap doesn't handle macros.
- `nvim --version`: ``` NVIM v0.4.3 Build type: Release LuaJIT 2.1.0-beta3 Compilation: /usr/lib/ccache/bin/cc -fstack-clash-protection -D_FORTIFY_SOURCE=2 -mtune=generic -O2 -pipe -g -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -DNDEBUG -DMIN_LOG_LEVEL=3 -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-protot...
bug-vim
medium
Critical
542,396,057
godot
Scene opens as [Unsaved] when it's already opened in Script Editor
**Godot version:** 3.2 beta4 **Issue description:** This one is complicated, but well, a bug is a bug. Related to #33320 **Steps to reproduce:** 1. Add .tscn to `editor/search_in_file_extensions` 2. Search for something in a .tscn file (make sure it's not currently opened) 3. Click on the result 4. The .tsc...
bug,topic:editor,confirmed
low
Critical
542,404,799
opencv
3.4.9 build error with matlab2019b
Ubuntu 16.04.06, opencv3.4.9 with modules, build with matlab 2019b. ``` [ 99%] Built target opencv_test_videostab CMake Error at /home/<USER_NAME>/opencv/opencv_contrib-3.4.9/modules/matlab/compile.cmake:54 (message): Failed to compile CamShift: In file included from /home/<USER_NAME>/opencv/opencv-3.4.9/build...
priority: low,category: build/install,category: contrib,category: matlab bindings
low
Critical
542,407,070
pytorch
'torch.load' report 'bad pickle data'
## 🐛 Bug <!-- A clear and concise description of what the bug is. --> ## To Reproduce Hello, everyone. I am using pytorch1.0.1 to load pretrained models. According to torch/serialization.py, ``` Example: >>> torch.load('tensors.pt') # Load all tensors onto the CPU >>> torch.load(...
module: serialization,triaged
low
Critical
542,433,178
rust
Wrong compiler error message.
```rust trait Baz {} trait Bar2<A> { type X; } struct Foo<'a>(&'a str); impl<'a, A, B> Baz for B where B: Bar2<Foo<'a>, X=A> {} ``` The current error message is "error[E0207]: the type parameter `A` is not constrained by the impl trait, self type, or predicates" but the actually error in the code is that `'a...
A-diagnostics,T-compiler,C-bug,D-incorrect
low
Critical
542,455,573
svelte
Allow to specify custom base class for Svelte Components
Could we have an option to specify a custom base class for Svelte components? ```html <script> import {BaseSvelteComponent} from './base'; </script> <svelte:options base="BaseSvelteComponent"/> ``` base.js: ``` import {SvelteComponent} from 'svelte'; export class BaseSvelteComponent extends SvelteComp...
feature request,custom element
medium
Minor
542,503,964
flutter
Horizontal Stepper in flutter
I am trying to create a horizontal stepper, but I am failing to do so. I have raised a stackover flow question here as well, https://stackoverflow.com/questions/59484581/horizontal-stepper-in-flutter/59485333#59485333 Please let me know where am I wrong
framework,d: examples,would be a good package,c: proposal,P3,team-framework,triaged-framework
low
Minor