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 |
---|---|---|---|---|---|---|
493,352,437 | vue | Click Event Triggers on Complex Buttons are ignored in Pale Moon browser | ### Version
2.6.10
### Reproduction link
[https://jsfiddle.net/ye6vs8h3/](https://jsfiddle.net/ye6vs8h3/)
### Steps to reproduce
Install Pale Moon browser http://www.palemoon.org/
Open the jsfiddle (https://jsfiddle.net/ye6vs8h3/).
When clicking directly on the Vue logo image, a click is not registered.
When clicking just next to it, still on the grey background, a click *is* registered correctly.
### What is expected?
When clicking on a nested component, the click should bubble up to the parent element that has a `@click` handler.
### What is actually happening?
The click is not bubbled up, so takes no effect.
---
This issue is similar to several other bugfixes, for Adobe CEP and Mobile Safari:
https://github.com/vuejs/vue/issues/9462
https://github.com/vuejs/vue/issues/10366
<!-- generated by vue-issues. DO NOT REMOVE --> | browser quirks,has PR | medium | Critical |
493,419,762 | flutter | Addd onTabChanging to TabConctroller with interception | ## Use case
Sometimes you want to prevent that a tab is changed e.g. when not all fields of a Form were filled out or an action hasn't finished.
Currently you only get informed after a change.
## Proposal
I propose to add a new Handler ` OnTabChangingHandler TabController.onTabChanging`
```Dart
typedev OnTabChangingHandler = bool Function(int index)
```
if the handler returns `true` the tab is changed if `false` the TabBarView doesn't change.
As a side note, why do we need a Listener to get informed that the tab changed. Couldn't this be made easier by providing an event in the TabBarController? | c: new feature,framework,f: material design,f: scrolling,c: proposal,P3,team-design,triaged-design | low | Minor |
493,430,261 | neovim | macOS binary: sign, notarize | Currently running macOS Catalina and NeoVim fails to start with error:
"“nvim” can’t be opened because its integrity cannot be verified."
That's running: `./nvim-osx64/bin/nvim` after having run install instructions:
> Download nvim-macos.tar.gz
> Extract: tar xzvf nvim-macos.tar.gz
> Run ./nvim-osx64/bin/nvim
Was working in macOS Mojave. Have downloaded and followed the install again but problem persists.
Anyone have any idea why this might be?
| platform:macos,security,distribution | medium | Critical |
493,447,732 | go | runtime: "panic: runtime error: growslice: cap out of range" when creating slice from an unsafe.Pointer in another part of program | <!-- 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 windows/amd64
</pre>
### Does this issue reproduce with the latest release?
Yes (1.13, also reproducible on 1.12.9)
### What operating system and processor architecture are you using (`go env`)?
<details><summary><code>go env</code> Output</summary><br><pre>
$ go env
set GO111MODULE=
set GOARCH=amd64
set GOBIN=
set GOCACHE=C:\Users\user\AppData\Local\go-build
set GOENV=C:\Users\user\AppData\Roaming\go\env
set GOEXE=.exe
set GOFLAGS=
set GOHOSTARCH=amd64
set GOHOSTOS=windows
set GONOPROXY=
set GONOSUMDB=
set GOOS=windows
set GOPATH=C:\Users\user\go
set GOPRIVATE=
set GOPROXY=https://proxy.golang.org,direct
set GOROOT=c:\go
set GOSUMDB=sum.golang.org
set GOTMPDIR=
set GOTOOLDIR=c:\go\pkg\tool\windows_amd64
set GCCGO=gccgo
set AR=ar
set CC=gcc
set CXX=g++
set CGO_ENABLED=1
set GOMOD=
set CGO_CFLAGS=-g -O2
set CGO_CPPFLAGS=
set CGO_CXXFLAGS=-g -O2
set CGO_FFLAGS=-g -O2
set CGO_LDFLAGS=-g -O2
set PKG_CONFIG=pkg-config
set GOGCCFLAGS=-m64 -mthreads -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=C:\Users\user\AppData\Local\Temp\go-build617861358=/tmp/go-build -gno-record-gcc-switches</pre></details>
### What did you do?
<!--
If possible, provide a recipe for reproducing the error.
A complete runnable program is good.
A link on play.golang.org is best.
-->
As we are calling specific win32 API not available on previous versions, Windows 8.1+ is needed to reproduce.
```cmd
go get -u github.com/shirou/gopsutil/process
cd "%HOME%\go\src\github.com\shirou\gopsutil\"
git remote add fork https://github.com/Lomanic/gopsutil.git
git checkout fork/issue250-bugreport
go run <path_to_main.go>
```
main.go
```go
package main
import (
"fmt"
"os"
"time"
"github.com/shirou/gopsutil/process"
)
func main() {
start := time.Now()
procs, err := process.Processes()
if err != nil {
fmt.Println("err", err)
os.Exit(1)
}
for _, proc := range procs {
fmt.Println("PID", proc.Pid)
fmt.Println(proc.Cmdline())
}
elapsed := time.Now().Sub(start)
fmt.Println("Elapsed time", elapsed, "(", elapsed/(time.Duration(len(procs))), "per process).", len(procs), "processes")
}
```
### What did you expect to see?
The commandline for all (non-elevated) processes on the host. Extract sample using WMI (current implementation in gopsutil master):
```
PID 4580
"C:\Users\user\Downloads\cmder\vendor\conemu-maximus5\ConEmu64.exe" <nil>
PID 4616
<nil>
PID 4652
"C:\Users\user\Downloads\cmder\vendor\conemu-maximus5\ConEmu\ConEmuC64.exe" /CINMODE=600020 /AID=4636 /GID=4580 /GHWND=00030172 /BW=238 /BH=53 /BZ=1000 "/FN=Lucida Console" /FW=3 /FH=5 /TA=10100007 /HIDE /ROOT cmd /k ""%ConEmuDir%\..\init.bat" " <nil>
PID 4660
\??\C:\Windows\system32\conhost.exe 0x4 <nil>
PID 4756
C:\Users\user\AppData\Local\Temp\go-build614473794\b001\exe\proccmdline.exe <nil>
PID 4760
"C:\Windows\SYSTEM32\cmd.exe" /k ""C:\Users\user\Downloads\cmder\vendor\conemu-maximus5\..\init.bat" " <nil>
PID 4852
"C:\Windows\SYSTEM32\cmd.exe" /k ""C:\Users\user\Downloads\cmder\vendor\conemu-maximus5\..\init.bat" " <nil>
PID 4884
<nil>
PID 4948
go run proccmdline.go <nil>
Elapsed time 3.5995457s ( 52.167328ms per process). 69 processes
```
### What did you see instead?
When running as an elevated user, the main.go sample is able to retrieve every possible process commandline it can retrieve like the WMI implementation. The issue occurs with non-elevated user with a panic runtime as explained in https://github.com/shirou/gopsutil/issues/250#issuecomment-523231311.
```
PID 0
<nil>
PID 4
<nil>
PID 68
<nil>
PID 140
sihost.exe <nil>
PID 184
"C:\Windows\system32\cmd.exe" <nil>
PID 304
<nil>
PID 332
<nil>
PID 392
<nil>
PID 460
<nil>
PID 468
<nil>
PID 528
<nil>
PID 552
<nil>
PID 560
<nil>
PID 672
<nil>
PID 680
<nil>
PID 688
<nil>
PID 696
\??\C:\Windows\system32\conhost.exe 0x4 <nil>
PID 776
<nil>
PID 784
"C:\Users\user\Downloads\cmder\vendor\conemu-maximus5\ConEmu64.exe" <nil>
PID 856
panic: runtime error: growslice: cap out of range
goroutine 1 [running]:
fmt.(*buffer).writeString(...)
c:/go/src/fmt/print.go:82
fmt.(*fmt).padString(0xc000044e10, 0x75006d0045006e, 0x65002e00340036)
c:/go/src/fmt/format.go:110 +0xfa
fmt.(*fmt).fmtS(0xc000044e10, 0x75006d0045006e, 0x65002e00340036)
c:/go/src/fmt/format.go:359 +0x68
fmt.(*pp).fmtString(0xc000044dd0, 0x75006d0045006e, 0x65002e00340036, 0xc000000076)
c:/go/src/fmt/print.go:447 +0x138
fmt.(*pp).printArg(0xc000044dd0, 0x51bfc0, 0xc0000f8300, 0x76)
c:/go/src/fmt/print.go:698 +0x87e
fmt.(*pp).doPrintln(0xc000044dd0, 0xc000075e80, 0x2, 0x2)
c:/go/src/fmt/print.go:1173 +0xb9
fmt.Fprintln(0x578480, 0xc000006020, 0xc000075e80, 0x2, 0x2, 0x0, 0x0, 0x0)
c:/go/src/fmt/print.go:264 +0x5f
fmt.Println(...)
c:/go/src/fmt/print.go:274
main.main()
C:/Users/user/go/src/github.com/Lomanic/gopsutiltest/proccmdline.go:25 +0x1b2
exit status 2
```
Commenting out [this line](https://github.com/Lomanic/gopsutil/blob/issue250-bugreport/process/process_windows.go#L348) doesn't trigger the panic and hints that the issue resides in the [unicodeString.String()](https://github.com/Lomanic/gopsutil/blob/issue250-bugreport/process/process_windows.go#L306-L313) function (got it from an [UNICODE_STRING implementation in hillu/go-ntdll](https://github.com/hillu/go-ntdll/blob/dd4204aa705ec72221a10165524a261ac3f5ef64/unicode_string.go#L23)). What's puzzling is that it works properly running as an elevated user and that the stacktrace looks completely unrelated (in fmt stdlib), the stacktrace appears even for a PID where `buf.String()` is not even called, hinting about some memory/stack corruption maybe? | NeedsInvestigation,compiler/runtime | low | Critical |
493,448,495 | rust | Higher rank trait bounds cannot genericise across functions with a bound sharing a lifetime with the prototype | The current implementation of higher rank trait bounds does not appear to be able to match on functions which take a bound that uses a lifetime that the function also uses. Case in point:
```rust
pub trait U<T> {}
impl<T> U<T> for () {}
pub fn inner<'a, T>(_: &'a ())
where T: U<&'a ()>
{
unimplemented!()
}
fn outer<F>(f: F)
where F: for<'a> Fn(&'a ()),
{
unimplemented!()
}
fn foo() {
outer(inner)
}
```
([Playground](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=268e418107096468f8588dd9fdecb17c))
Errors:
```
Compiling playground v0.0.1 (/playground)
error[E0631]: type mismatch in function arguments
--> src/lib.rs:18:5
|
5 | / pub fn inner<'a, T>(_: &'a ())
6 | | where T: U<&'a ()>
7 | | {
8 | | unimplemented!()
9 | | }
| |_- found signature of `fn(&()) -> _`
...
18 | outer(inner)
| ^^^^^ expected signature of `for<'a> fn(&'a ()) -> _`
|
note: required by `outer`
--> src/lib.rs:11:1
|
11 | / fn outer<F>(f: F)
12 | | where F: for<'a> Fn(&'a ()),
13 | | {
14 | | unimplemented!()
15 | | }
| |_^
error[E0271]: type mismatch resolving `for<'a> <fn(&()) {inner::<'_, _>} as std::ops::FnOnce<(&'a (),)>>::Output == ()`
--> src/lib.rs:18:5
|
18 | outer(inner)
| ^^^^^ expected bound lifetime parameter 'a, found concrete lifetime
|
note: required by `outer`
--> src/lib.rs:11:1
|
11 | / fn outer<F>(f: F)
12 | | where F: for<'a> Fn(&'a ()),
13 | | {
14 | | unimplemented!()
15 | | }
| |_^
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0271`.
error: Could not compile `playground`.
To learn more, run the command again with --verbose.
```
You can get this to compile by swapping out `where T: U<&'a ()>` with `where T: U<()>`. | A-lifetimes,A-trait-system,T-compiler,C-bug,A-higher-ranked | low | Critical |
493,474,333 | TypeScript | Types for async functions do not handle `void` assignments like normal ones | <!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps before logging an issue:
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues
* Read the FAQ: https://github.com/Microsoft/TypeScript/wiki/FAQ
Please fill in the *entire* template below.
-->
<!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.4.0-dev.201xxxxx
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
**Code**
```ts
const w: void = "";
const x: () => void = () => "";
const y: () => Promise<void> = async () => "";
function a(): void {
return "";
}
async function b(): Promise<void> {
return "";
}
const y2: () => Promise<() => void> = async () => () => "";
function a2(): () => void {
return () => "";
}
function b2(): Promise<() => void> {
return () => "";
}
```
**Expected behavior:**
Generally speaking, all of them should be an error, or all of them shouldn't be.
**Actual behavior:**
We have a special "function returning void" rule that allows `() => ""` to be assignable to `() => void`, but this doesn't carry thru to async scenarios, so a `async () => ""` is _not_ assignable to a `() => Promise<void>`.
[**Playground Link**](http://www.typescriptlang.org/play/#code/MYewdgzgLgBA7gLhgNxASwCYwLwwER4DcAUMaJLAB5IAUAlDgHwrpa71P5GnnQwCetBtmYAFAE4gAtmggBTADypMzXAEMI-MMBgcRXEsQBmAV21Q04GGvpJlWAN7EYLmOLlQT4sAeIBfUg0tHVNzSx8AI1sYCWlZRXtmJ1c3Dy8fAhIAsnA+fgAmIU5YmXkFPWZEnBcg7V1hZgrfYzNgCys1fOim+xhk13dPb3rOTP9SULbwmAiuuiQS+PKGlhU+5wG04aaxgKA) | Bug | low | Critical |
493,483,075 | flutter | palette_generator sample is not reliable; _onPanUpdate called before _onPanDown | When you select a sub-area using [palette_generator sample](https://github.com/flutter/packages/tree/master/packages/palette_generator), `_onPanEnd` is called [asynchronously](https://github.com/flutter/packages/blob/db155615d189250f2d357ab5674dc9a732b6c8ce/packages/palette_generator/example/lib/main.dart#L120), but everything else is called synchronously. So it happens that `onPanUpdate` is called before `onPanDown` has happened, which makes [startDrag](https://github.com/flutter/packages/blob/db155615d189250f2d357ab5674dc9a732b6c8ce/packages/palette_generator/example/lib/main.dart#L106) become null.
The issue happens sometimes (not every time, but not uncommon), when you are selecting multiple times, it throws exceptions and don't show any result. If you make `_onPanEnd` work synchronously, this issue is solved but there is.. well.. the slowdown issue because it would work on main thread.
```
The following NoSuchMethodError was thrown while handling a gesture:
The getter 'dx' was called on null.
Receiver: null
Tried calling: dx
When the exception was thrown, this was the stack:
#0 Object.noSuchMethod (dart:core-patch/object_patch.dart:51:5)
#1 new Rect.fromPoints (dart:ui/geometry.dart:659:16)
#2 _ImageColorsState._onPanUpdate.<anonymous closure> (package:material/image_picker.dart:247:25)
#3 State.setState (package:flutter/src/widgets/framework.dart:1141:30)
#4 _ImageColorsState._onPanUpdate (package:material/image_picker.dart:244:5)
...
Handler: "onUpdate"
Recognizer: PanGestureRecognizer#e7f04
debugOwner: GestureDetector
start behavior: start
```
```
E/flutter (20190): Receiver: null
E/flutter (20190): Tried calling: left
E/flutter (20190): #0 Object.noSuchMethod (dart:core-patch/object_patch.dart:51:5)
E/flutter (20190): #1 Rect.intersect (dart:ui/geometry.dart:750:28)
E/flutter (20190): #2 _ImageColorsState._onPanEnd (package:material/image_picker.dart:267:54)
E/flutter (20190): <asynchronous suspension>
E/flutter (20190): #3 DragGestureRecognizer._checkEnd.<anonymous closure> (package:flutter/src/gestures/monodrag.dart:439:41)
E/flutter (20190): #4 GestureRecognizer.invokeCallback (package:flutter/src/gestures/recognizer.dart:182:24)
E/flutter (20190): #5 DragGestureRecognizer._checkEnd (package:flutter/src/gestures/monodrag.dart:439:5)
E/flutter (20190): #6 DragGestureRecognizer.didStopTrackingLastPointer (package:flutter/src/gestures/monodrag.dart:348:9)
E/flutter (20190): #7 OneSequenceGestureRecognizer.stopTrackingPointer (package:flutter/src/gestures/recognizer.dart:336:9)
E/flutter (20190): #8 DragGestureRecognizer._giveUpPointer (package:flutter/src/gestures/monodrag.dart:357:5)
E/flutter (20190): #9 DragGestureRecognizer.handleEvent (package:flutter/src/gestures/monodrag.dart:281:7)
E/flutter (20190): #10 PointerRouter._dispatch (package:flutter/src/gestures/pointer_router.dart:75:13)
E/flutter (20190): #11 PointerRouter.route (package:flutter/src/gestures/pointer_router.dart:102:11)
E/flutter (20190): #12 GestureBinding.handleEvent (package:flutter/src/gestures/binding.dart:218:19)
E/flutter (20190): #13 GestureBinding.dispatchEvent (package:flutter/src/gestures/binding.dart:198:22)
E/flutter (20190): #14 GestureBinding._handlePointerEvent (package:flutter/src/gestures/binding.dart:156:7)
E/flutter (20190): #15 GestureBinding._flushPointerEventQueue (package:flutter/src/gestures/binding.dart:102:7)
E/flutter (20190): #16 GestureBinding._handlePointerDataPacket (package:flutter/src/gestures/binding.dart:86:7)
E/flutter (20190): #17 _rootRunUnary (dart:async/zone.dart:1136:13)
E/flutter (20190): #18 _CustomZone.runUnary (dart:async/zone.dart:1029:19)
E/flutter (20190): #19 _CustomZone.runUnaryGuarded (dart:async/zone.dart:931:7)
E/flutter (20190): #20 _invoke1 (dart:ui/hooks.dart:263:10)
E/flutter (20190): #21 _dispatchPointerDataPacket (dart:ui/hooks.dart:172:5)
```
```
➜ flutter doctor -v
[✓] Flutter (Channel dev, v1.10.1, on Mac OS X 10.14.6 18G95, locale en-BR)
• Flutter version 1.10.1 at /usr/local/Cellar/flutter/dev
• Framework revision ce45c2d3e6 (6 days ago), 2019-09-06 20:11:41 -0400
• Engine revision b9ce2500d9
• Dart version 2.5.0 (build 2.5.0-dev.4.0 be66176534)
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
• Android SDK at /Users/bernardoferrari/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling
support)
• Platform android-29, build-tools 29.0.2
• Java binary at: /Users/bernardoferrari/Library/Application
Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/191.5791312/Android
Studio 3.5 Preview.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build
1.8.0_202-release-1483-b49-5587405)
• All Android licenses accepted.
[✓] Xcode - develop for iOS and macOS (Xcode 10.3)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 10.3, Build version 10G8
• CocoaPods version 1.7.3
[✓] Android Studio (version 3.5)
• Android Studio at /Users/bernardoferrari/Library/Application
Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/191.5791312/Android
Studio 3.5 Preview.app/Contents
• Flutter plugin version 39.0.3
• Dart plugin version 191.8423
• Java version OpenJDK Runtime Environment (build
1.8.0_202-release-1483-b49-5587405)
[✓] Android Studio
• Android Studio at /Users/bernardoferrari/Library/Application
Support/JetBrains/Toolbox/apps/AndroidStudio/ch-1/192.5863777/Android
Studio 3.6 Preview.app/Contents
• Flutter plugin version 39.0.4
• Dart plugin version 192.6527
• Java version OpenJDK Runtime Environment (build
1.8.0_212-release-1586-b4-5784211)
[✓] IntelliJ IDEA Ultimate Edition (version 2019.2.2)
• IntelliJ at /Users/bernardoferrari/Applications/JetBrains Toolbox/IntelliJ
IDEA Ultimate.app
• Flutter plugin version 38.2.4
• Dart plugin version 192.6459
[✓] VS Code (version 1.38.1)
• VS Code at /Applications/Visual Studio Code.app/Contents
• Flutter extension version 3.4.1
[✓] Connected device (1 available)
• Android SDK built for x86 64 • emulator-5554 • android-x64 • Android 10
(API 29) (emulator)
• No issues found!
``` | package,p: palette_generator,team-ecosystem,P3,triaged-ecosystem | low | Critical |
493,488,813 | vscode | Ability to disable language features provided by extensions | Some languages are supported by multiple extensions that provide an overlapping set of language features.
Seems like much effort has been done to support this use case. For some features, the provider's 'score' is used to select which provider to use (e.g. for formatting and syntax highlighting). For other features, results from all providers are merged (e.g. completion, hover, definition, problems, symbols).
My problem is that in some cases I would like to choose which features to use from which extension. For example, I have three extensions that provide overlapping language features for Python: Microsoft's Python, pyright, and mypy extensions.
* For hovers, I only like the ones provided by the Python extension (it supports showing documentation while the others don't). Seeing hovers from all three extensions is distracting.
* For error reporting, I would like to see only the ones from mypy. It is possible to filter the problems view, but it's annoying to filter every time, and filtering just for 'mypy' will ignore errors from other languages I have in my workspace. Without filtering, many duplicate errors are shown.
* For 'go to definition' and code completion, I would like to use only pyright. By default, results from all three extensions are shown – this requires multiple clicks for every 'go to definition' call because results slightly differ between extensions, so they are shown side by side instead of immediately jumping to the definition.
One solution is to ask every extension author to provide options for disabling some features. This is already done by some extensions but AFAIK not by most. It can be solved centrally by allowing users to selectively disable language features provided by extensions. Something similar has [already been implemented](https://github.com/microsoft/vscode/issues/41882) for formatting, using a dedicated setting. I think it should be extended to other language features.
Something like:
```json
"languageFeatures.[extension].goToDefinition.enabled": false
```
By default all features from all extensions would be enabled. | feature-request,extensions,under-discussion | low | Critical |
493,520,534 | flutter | Not all font weights are addressable by Flutter (macOS) | macOS uses a 16 point scale to distinguish between a font family's weights ([NSFontManager.fontWithFamily:traits:weight:size:](https://developer.apple.com/documentation/appkit/nsfontmanager/1462332-fontwithfamily?language=objc)), while Flutter uses a 9 point scale ([FontWeight](https://api.flutter.dev/flutter/dart-ui/FontWeight-class.html)). As such, many fonts that are available on the host system cannot be used in the Flutter environment.
Please consider allowing a Flutter application to reference a font by its PostScript name, or some other unique identifier. | c: new feature,platform-mac,a: desktop,P3,team-macos,triaged-macos | low | Minor |
493,530,207 | pytorch | Dispatch Tracing/Debugging | Dispatch is already complicated, and (depending on your perspective) becoming more complicated with multiple dispatch.
When I was debugging https://github.com/pytorch/pytorch/issues/26206, I really wanted something I could just trace through that said:
"I'm executing dispatch key X because parameter A has type_set AA, parameter B has type_set BB..."
etc.
cc @ezyang @gchanan @zou3519 | triaged,enhancement,internals,module: dispatch | low | Critical |
493,533,823 | flutter | Flutter migrate | ## Use case
The platforms that Flutter supports introduce new features every year. To support these features, the Flutter tool may need to change the files in an existing project.
Features introduced in Flutter may also require changes to the underlaying project structure.
Because developers may configure project files in ways that we don't see ahead of time, changes to the project files may cause issues that are hard to revert. Even when the files are source controlled, the developer could have unstaged changes.
As a result, changes performed by the tool must ensure that they won't disrupt the developer's workflow.
## Proposal
Create a new subcommand: `flutter migrate` that tracks all the migrations performed to an existing project and provides an option to revert the change.
DevX: If `flutter build apk` updated some files, the changes can be reverted by using `flutter migrate --revert`.
There are still more details to figure out:
1. What happen if they are multiple migrations?
2. Can a migration depend on another migration?
2. Can the order of the migrations cause issues?
## Design doc
https://flutter.dev/go/flutter-migrate
## Sub-issues to track progress | c: new feature,tool,P3,team-tool,triaged-tool | low | Major |
493,539,847 | PowerToys | Make fancyzones touch friendly. | # Summary of the new feature/enhancement
People with touch inputs are unable to use the Shift key to activate zones.
While zones can always stay active if toggle is disabled, windows are the not able to be dragged without snapping.
This would be one of the solutions for usage of Fancy zones for people with only touch input available.
# Proposed technical implementation details (optional)
My suggestion is to add another toggle that will activate touch control.
Parallel to the shift key, zones are to be activated when window is dragged and another 1 finger is touching the screen (So 2 fingers 1 dragging [1st finger], 1 touching [2nd finger]).
Zones would disappear if [2nd finger] is lifted, and reappear if [2nd finger] is placed on the screen, the first finger would still be dragging the window.
| Idea-Enhancement,FancyZones-Dragging&UI,Product-FancyZones | low | Major |
493,540,493 | flutter | Ability to hide suffix in a text field when not focused | Right now, I'm using an IconButton widget as my suffix for my text field. Users of my app are able to click on the suffix from another text field. That is causing numerous focus issues with my app that could be solved if the suffix could be hidden with a boolean value while configuring the form field. If so, people who want to be able to see the suffix of a text field can do so at all times while others can choose to hide it until the field is focused on. | c: new feature,framework,f: material design,c: proposal,P3,team-text-input,triaged-text-input | low | Minor |
493,547,108 | pytorch | Default adam epsilon to 1e-7 when on fp16 | ## 🚀 Feature
If you use 1e-8 as default and you use 16 bit, it will round to zero, and thus you get no stability gains.
cc @vincentqb | module: numerical-stability,module: optimizer,triaged,enhancement,module: half | low | Major |
493,562,720 | flutter | Use xcodebuild app thinning report in perf tests to track size of iOS apps over time | ## Description
The perf tests currently [`tar`s the iOS ipa](https://github.com/flutter/flutter/blob/master/dev/devicelab/lib/tasks/perf_tests.dart#L370) as a proxy for final app size. Instead, an "app thinning report" could be generated from a xcarchive:
```
xcodebuild -exportArchive -archivePath /path/to/xcarchive -exportPath /path/to/export/location -exportOptionsPlist ExportOptions.plist
```
See `xcrun xcodebuild -h` for the valid export options plist keys. This was the plist I used for veggieseasons:
```
$ plutil -p ExportOptions.plist
{
"method" => "ad-hoc"
"thinning" => "<thin-for-all-variants>"
}
```
(The "thinning" value should probably be a specific [hardware string](https://en.wikipedia.org/wiki/List_of_iOS_devices#In_production_and_supported) like "iPhone10,1" to trade-off for test time).
This command generates the ipas, as well as a `App Thinning Size Report.txt` and `app-thinning.plist`.
Also see "Getting app size report" in [this tutorial](https://medium.com/@ankur.s20/implementing-app-thinning-in-your-project-step-by-step-tutorial-ios-app-b3cfd139896d). | a: tests,team,platform-ios,tool,c: performance,a: size,perf: app size,P3,team-ios,triaged-ios | low | Minor |
493,563,316 | TypeScript | F12 go to definition get 2 same result | *Template info added by @mjbvz*
**TypeScript Version**: 3.7.0-dev.20190913
**Search Terms**
- JavaScript
- Commonjs / node
- go to definition
**Repo**
1. Using the code below
1. Run `go to definition` on `m1echo` in the call `m1.m1echo()` inside `m2.js`
*Original report below*
---
// Win10(x64) + node js 10.16.3 + npm -v 6.9.0
// Peek m1echo/m2echo definition will get **2 SAME** definitions
// index.js
```
const m1 = require('./m1.js');
const m2 = require('./m2.js');
m1.m1work();
m2.m2work();
```
// m1.js
```
module.exports = {};
const m2 = require('./m2.js');
module.exports.m1work = function () {
console.log('m1.m2.echo = <' + m2.m2echo() + '>');
}
module.exports.m1echo = function () {
return 'this m1.';
}
```
// m2.js
```
module.exports = {};
const m1 = require('./m1.js');
module.exports.m2work = function () {
console.log('m2.m1.echo = <' + m1.m1echo() + '>');
}
module.exports.m2echo = function () {
return 'this m2.';
}
``` | Bug,Domain: Symbol Navigation | low | Minor |
493,564,759 | go | cmd/go: add go doc -json | To build better language support for editors and ide's it could be helpful to have the docs as json.
For example `https://golang.org/pkg/strings.json` to get the `strings` package documentation.
Or via terminal by a flag like `go doc fmt -format json`
Then the docs can be used to generate snippets based on the documentation. | help wanted,Proposal,Proposal-Accepted,NeedsFix | medium | Major |
493,570,593 | flutter | TextFormField + isDense + prefixIcon = unaligned text | ```dart
isDense: true,
prefixIcon: Icon(Icons.settings)
```

```dart
isDense: true,
prefix: Icon(Icons.settings)
```

```dart
isDense: true,
prefix: Icon(Icons.settings, size: 16)
```

Full code:
```dart
TextFormField(
initialValue: "123456",
decoration: InputDecoration(
filled: true,
isDense: true,
prefix: Icon(Icons.settings, size: 16,),
),
```
```
➜ flutter doctor -v
[✓] Flutter (Channel dev, v1.10.1, on Mac OS X 10.14.6 18G95, locale en-BR)
• Flutter version 1.10.1 at /usr/local/Cellar/flutter/dev
• Framework revision ce45c2d3e6 (6 days ago), 2019-09-06 20:11:41 -0400
• Engine revision b9ce2500d9
• Dart version 2.5.0 (build 2.5.0-dev.4.0 be66176534)
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
• Android SDK at /Users/bernardoferrari/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling
support)
• Platform android-29, build-tools 29.0.2
• Java binary at: /Users/bernardoferrari/Library/Application
Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/191.5791312/Android
Studio 3.5 Preview.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build
1.8.0_202-release-1483-b49-5587405)
• All Android licenses accepted.
[✓] Xcode - develop for iOS and macOS (Xcode 10.3)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 10.3, Build version 10G8
• CocoaPods version 1.7.3
[✓] Android Studio (version 3.5)
• Android Studio at /Users/bernardoferrari/Library/Application
Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/191.5791312/Android
Studio 3.5 Preview.app/Contents
• Flutter plugin version 39.0.3
• Dart plugin version 191.8423
• Java version OpenJDK Runtime Environment (build
1.8.0_202-release-1483-b49-5587405)
[✓] Android Studio
• Android Studio at /Users/bernardoferrari/Library/Application
Support/JetBrains/Toolbox/apps/AndroidStudio/ch-1/192.5863777/Android
Studio 3.6 Preview.app/Contents
• Flutter plugin version 39.0.4
• Dart plugin version 192.6527
• Java version OpenJDK Runtime Environment (build
1.8.0_212-release-1586-b4-5784211)
[✓] IntelliJ IDEA Ultimate Edition (version 2019.2.2)
• IntelliJ at /Users/bernardoferrari/Applications/JetBrains Toolbox/IntelliJ
IDEA Ultimate.app
• Flutter plugin version 38.2.4
• Dart plugin version 192.6459
[✓] VS Code (version 1.38.1)
• VS Code at /Applications/Visual Studio Code.app/Contents
• Flutter extension version 3.4.1
[✓] Connected device (1 available)
• Android SDK built for x86 64 • emulator-5554 • android-x64 • Android 10
(API 29) (emulator)
• No issues found!
```
| a: text input,framework,f: material design,a: quality,has reproducible steps,P3,found in release: 2.5,found in release: 2.6,team-text-input,triaged-text-input | low | Minor |
493,573,511 | pytorch | Higher dimension support for `MultiLableSoftMarginLoss` | ## 🚀 Feature
In the current version, input and target shape of `MultiLableSoftMarginLoss` is (N, C), which only support one dimension tensor for batch data. I wonder if this can support high dimension as shape of input and target can be (N, C, d1, d2, ...), just like the `CrossEntropyLoss`.
## Motivation
Motivation comes from the sequence tagging task in NLP. In traditional cases, if we get padding length for `P`, batch size for `N`, classification amount for `C`. We can use `CrossEntropyLoss` for sequence tagging loss as input and target shape is (N, C, P) for batch training. However, this only works when each word belongs to ONE of the classes. If I want to train the data with multi labels for each word, I must use Multi-Label loss function such as `MultiLableSoftMarginLoss`. And in this case, I have to calculate the loss one sentence at a time as input and target shape is (P, C). Batch calculation is disabled in this case, which makes the process time-consuming.
| module: nn,module: loss,triaged,enhancement | low | Minor |
493,592,986 | TypeScript | Generator that never returns should have return type 'never' | <!-- 🚨 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, especially the "Common Feature Requests" section: https://github.com/Microsoft/TypeScript/wiki/FAQ
-->
## Search Terms
<!-- List of keywords you searched for before creating this issue. Write them down here so that others can find this suggestion more easily -->
## Suggestion
Generator function that yields `T` but never return should return `Generator<T, never, unknown>`
```typescript
function * generator<T> (x: T) {
while (true) yield x
}
const iter = generator(3) // expect: Generator<number, never, unknown>
```
## Use Cases
<!--
What do you want to use this for?
What shortcomings exist with current approaches?
-->
## Examples
<!-- Show how this would be used and what the behavior would be -->
## Checklist
My suggestion meets these guidelines:
* [ ] This wouldn't be a breaking change in existing TypeScript/JavaScript code
* [x] This wouldn't change the runtime behavior of existing JavaScript code
* [x] This could be implemented without emitting different JS based on the types of the expressions
* [x] This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, etc.)
* [x] This feature would agree with the rest of [TypeScript's Design Goals](https://github.com/Microsoft/TypeScript/wiki/TypeScript-Design-Goals).
| Needs Investigation | low | Critical |
493,595,288 | node | Node Debugger Caught in Loop When Debugging Async Functions | <!--
Thank you for reporting a possible bug in Node.js.
Please fill in as much of the template below as you can.
Version: output of `node -v`
Platform: output of `uname -a` (UNIX), or version and 32 or 64-bit (Windows)
Subsystem: if known, please specify the affected core module name
If possible, please provide code that demonstrates the problem, keeping it as
simple and free of external dependencies as you can.
-->
* **Version**: 1.38.1
* **Platform**: MacOS
* **Subsystem**:
<!-- Please provide more details below this comment. -->
When debugging Jest tests, if there is a breakpoint in an async function stepping over the end of the function takes the debugger into a file called `async_hooks.js` where it loops through a for loop on line 168 then jumps to line 183 before returning to 168 and ending up in an infinite loop. This makes it impossible to debug NodeJS code if it uses Async Functions (pretty much any modern script).
| inspector,async_hooks | low | Critical |
493,610,343 | react-native | BUG - FlatList automatically scrolls to first when data is too large in horizontal mode RTL (Android) | - [x] Review the documentation: https://facebook.github.io/react-native
- [x] Search for existing issues: https://github.com/facebook/react-native/issues
- [x] Use the latest React Native release: https://github.com/facebook/react-native/releases
## Environment
```
System:
OS: macOS 10.15
CPU: (6) x64 Intel(R) Core(TM) i5-8400 CPU @ 2.80GHz
Memory: 448.96 MB / 8.00 GB
Shell: 3.2.57 - /bin/bash
Binaries:
Node: 12.10.0 - /usr/local/bin/node
Yarn: 1.19.0 - /usr/local/bin/yarn
npm: 6.11.3 - /usr/local/bin/npm
SDKs:
iOS SDK:
Platforms: iOS 13.1, DriverKit 19.0, macOS 10.15, tvOS 13.0, watchOS 6.0
IDEs:
Android Studio: 3.5 AI-191.8026.42.35.5791312
Xcode: 11.1/11A1027 - /usr/bin/xcodebuild
npmPackages:
react: 16.8.6 => 16.8.6
react-native: 0.61.2 => 0.61.2
```
<!--
Please provide a clear and concise description of what the bug is.
Include screenshots if needed.
Please test using the latest React Native release to make sure your issue has not already been fixed: http://facebook.github.io/react-native/docs/upgrading.html
-->
React Native version: **0.61.2**
<!--
Run `react-native info` in your terminal and copy the results here.
-->
## Code
```
<FlatList
style={{
flexDirection: 'row',
marginHorizontal: -wp('3%'),
zIndex: 40
}}
initialNumToRender={10}
data={this.state.data}
horizontal={true}
key={item => item.groupNo}
keyExtractor={(item, index) => index.toString()}
showsHorizontalScrollIndicator={false}
showsVerticalScrollIndicator={false}
ref={ref => (this.flatList = ref)}
renderItem={({ item }) => (
<GroupAyeItem item={item} />
)}
/>
```
## Steps To Reproduce
1. Added some data to my FlatList
2. Add horizontal={true} property to flatlist
3. Set `I18nManager.allowRTL(true)`
4. Set `I18nManager.forceRTL(true)`
5. Make my renderItem component extends as PureComponent.
6. Tested with Real Android Device and Emulator
As you see below when my app is running on RTL direction `FlatList` automatically scrolls to top/first of the list but LTR direction is OK!
**RTL:**

**LTR:**

**UPDATE ON THIS ISSUE ! :**
onScroll will get called rapidly in` VirtualizedList.js:1443` when RTL is enabled without scrolling!

But in LTR :

| Component: FlatList,Bug | medium | Critical |
493,624,883 | flutter | FormField validators are invoked with incorrect/old values | ## Steps to Reproduce
Created a test file that explains what I get and what I expect. Can be found here: https://gist.github.com/daniel-v/f1133f3e39a5714a3774760dab3841b2
**In short**
I'd expect that when I call `FormState.validate()` in response to a `TextEditingController` notification, the validators would receive the value of the `TextEditingController`. This isn't the case, it seems that `FormState` caches a value, which seems to be updated AFTER validators would run. FormState's value is passed to the validators, therefore validators are always receive a value that's old.
**Question**
Is that expected and is this how this should work?
**Repro**
```
flutter create repro_proj
cd repro_proj
curl https://gist.githubusercontent.com/daniel-v/f1133f3e39a5714a3774760dab3841b2/raw/f41c63228c5bfaadbd56210582613706d095856c/input_validation_test.dart -o test/form_validator_test.dart
flutter test test/form_validator_test.dart
```
## Logs
```
00:02 +0: Triggers validation with right value
══╡ EXCEPTION CAUGHT BY FLUTTER TEST FRAMEWORK ╞════════════════════════════════════════════════════
The following TestFailure object was thrown running a test:
Expected: 'a'
Actual: ''
Which: is different. Both strings start the same, but the actual value is missing the following
trailing characters: a
```
## Doc tells me:
```
[√] Flutter (Channel stable, v1.9.1+hotfix.2, on Microsoft Windows [Version 10.0.18362.356], locale hu-HU)
• Flutter version 1.9.1+hotfix.2 at C:\Users\Dev\Documents\3rdParty\flutter
• Framework revision 2d2a1ffec9 (8 days ago), 2019-09-06 18:39:49 -0700
• Engine revision b863200c37
• Dart version 2.5.0
[√] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
• Android SDK at C:\Users\Dev\AppData\Local\Android\sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-28, build-tools 28.0.3
• Java binary at: C:\Users\Dev\Documents\3rdParty\AndroidStudio\jre\bin\java
• Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b03)
• All Android licenses accepted.
```
| a: text input,framework,f: material design,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-text-input,triaged-text-input | low | Critical |
493,625,847 | rust | Don't discriminate unions and structures and enums | Unions, structures and enums are all different kinds of data, but I don't think it makes any sense to discriminate them in the documentation.
Whenever I explore the documentation of a crate, I don't know if the concept I'm looking for is an enum or a structure, but I most often have a vague idea what it is named, and I don't want to look at multiple lexicographically ordered lists to find it.
I suggest we make a single list of "data items", with all structures, enums and unions lexicographically listed. | T-rustdoc | medium | Critical |
493,632,254 | terminal | Feature Request: Allow use of named system colours, like SystemAccentColor | # Description of the new feature/enhancement
Allow the use of named System or Theme colours for things like **cursorColor**
# Proposed technical implementation details (optional)
ThemeResources get passed through to the rendering, when a colour name is used in place of a Hex or RGB Colour.

| Issue-Feature,Help Wanted,Area-Settings,Product-Terminal | low | Minor |
493,637,351 | rust | Foreign type tests not covering all operations | For example foreign type pointer comparison is not tested. Also `&(*val).0` where field `0` of `*val` is a foreign type is not tested. As a last thing pointer to `*mut ForeignType` casting it not tested.
These were all cases which were mishandled in [rustc_codegen_cranelift](https://github.com/bjorn3/rustc_codegen_cranelift/). I didn't discover them until I tried to compile rustc itself using cg_clif. | A-testsuite,C-enhancement,A-FFI,E-needs-test,T-compiler,requires-nightly,F-extern_types | low | Minor |
493,640,074 | flutter | /storage/emulated/0/ & /mnt/sdcard/ not accessible using Flutter | There has been discussions about this all over the place, however, this still needs a definitive issue (and fix).
---
When trying to write files, create directories, etc. in `/storage/emulated/0/` on Android using Flutter, the following error is thrown:
```
OS Error: Permission denied, errno = 13
```
The only operations that work are [`exists` operations](https://api.flutter.dev/flutter/dart-io/FileSystemEntity/existsSync.html) after specifying the `WRITE_EXTERNAL_STORAGE` permission and granting it. | platform-android,engine,has reproducible steps,P2,team-android,triaged-android,found in release: 3.19,found in release: 3.22 | low | Critical |
493,644,043 | youtube-dl | ODC - ondemandchina please | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check list in order to prevent the most common mistakes and misuse of youtube-dl:
- First of, make sure you are using the latest version of youtube-dl. Run `youtube-dl --version` and ensure your version is 2019.09.12.1. If it's not, see https://yt-dl.org/update on how to update. Issues with outdated version will be REJECTED.
- Make sure that all provided video/audio/playlist URLs (if any) are alive and playable in a browser.
- Make sure that site you are requesting is not dedicated to copyright infringement, see https://yt-dl.org/copyright-infringement. youtube-dl does not support such sites. In order for site support request to be accepted all provided example URLs should not violate any copyrights.
- Search the bugtracker for similar site support requests: http://yt-dl.org/search-issues. DO NOT post duplicates.
- Finally, put x into all relevant boxes (like this [x])
-->
- [x] I'm reporting a new site support request
- [x] I've verified that I'm running youtube-dl version **2019.09.12.1**
- [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 for similar site support requests including closed ones
## Example URLs
<!--
Provide all kinds of example URLs support for which should be included. Replace following example URLs by yours.
-->
- Playlist: https://www.ondemandchina.com/drama/the-legendary-tavern/
- Single video: https://www.ondemandchina.com/drama/the-legendary-tavern/1
- Single video: https://www.ondemandchina.com/drama/the-legendary-tavern/2
## Description
<!--
Provide any additional information.
If work on your issue requires account credentials please provide them or explain how one can obtain them.
-->
No accounts/credentials required.
| site-support-request | low | Critical |
493,649,273 | TypeScript | jsconfig.json gives broken intellisense for js files with module.exports | - VSCode Version: 1.38.0
- TS Version: 3.6.2
- OS Version: Ubuntu 18.04 LTS bionic beaver
- Tested with no extensions
- Can not really find a solution to this problem after a lot of searching
I have a personal js library that I use both in browser-side and node-side for a lot of my personal projects . In fact the library itself has its own project . The js library looks like this :
```
const library = {};
library.foo = function() {/*browser code*/}
if (typeof module === 'object') {
library.bar = function() {/*node code*/}
module.exports = library;
}
```
For a browser project (library is used via script tag) If I try to get intellisense via jscofig.json for such a file I get broken intellisense (by typing f or b I get suggestions for foo or bar respectively , but there is no library suggestion when I type l , and even if I type library I get no suggestion about its properties ) .
For a node project everything works fine regarding intellisense using `require` .
The issue here is with `module.exports` . If I change it to `var substitute = module; substitute.exports = library;` then I get intellisense for browser project via `jsconfig.json` but broken intellisense (as described before) for node via `require` .
How can I get intellisense to work for both `require` and `jsconfig.json` ?
Before you attempt to check intellisense you should know the following :
> I open index.js in a project that does not have any other js file and no `jsconfig.json` file . Then I view in the same VScode session some other , completely unrelated to my project , js files . For whatever file I view I get intellisense (of the globally scoped variables that have been defined via `let` , `var` or `const`) when I am editing index.js . If the unrelated js file happens to have module.exports then the intellisense that I get in index.js for that file is broken like it has been described before .
> I stop getting intellisense for files that I view when I create a `jsconfig.json` file file in the folder of index.js . But still there is the same broken behavior with intellisense for files that are included via `jsconfig.json` and have module.exports .
Please restart vscode to test if intellisense really works . | Suggestion,Awaiting More Feedback | low | Critical |
493,650,328 | godot | Incorrect bounce angle of RigidBody2D when using the Cast Ray Continuous Cd mode | **Godot version:**
v3.1.1.stable.official
**OS/device including version:**
Mac OS X and Linux Ubuntu
**Issue description:**
RigidBody2d collides with flat StaticBody2d and bounces with random angle. Often, with the same it came from. Happens on relatively high speed of RigidBody2d
**Steps to reproduce:**
1. Run the project
2. Bump the RigidBody2d with KinematicBody2d so it's speed increases
3. Observe the bug.
Here are the description with video and screenshots attached:
https://www.reddit.com/r/godot/comments/d4455z/bug_i_godot_physics_system/
**Minimal reproduction project:**
https://github.com/GaidamakUA/GodotExperiments/tree/master/arcanoid | bug,confirmed,topic:physics,topic:2d | low | Critical |
493,657,373 | flutter | Add support for external storage(Sd Card, USB Storage etc) in flutter. | I didn't find any method to locate external storage like Sd Card, USB Storage etc which is supported in native android. When I call this method `getExternalStorageDirectory()` which returns `/storage/emulated/0` that is Internal storage (not external). Also, add support for "Scoped Storage access". The official Android doc on [storage](https://developer.android.com/guide/topics/data/data-storage) is very well written hope to see some improvement on flutter too. | c: new feature,customer: crowd,p: path_provider,package,c: proposal,team-ecosystem,P3,triaged-ecosystem | high | Critical |
493,663,241 | go | proposal: x/net/html: add offset & line tracking, case preservation | After looking at https://github.com/golang/go/issues/31312 closer and trying some things out, I wanted to open a new issue with a more specific and succinct proposal:
### Features
At a high level, the desired features are:
1. Line and column tracking (actually offset tracking, see below)
2. A way to get at the original element and attribute name text before lower casing.
### Motivation
The motivation for 1 is cases where a caller needs to know the context of a token or node so this can be reported to the user. Indicating the position of an error, or where in the source HTML a particular element comes from, etc.
The motivation for 2 is for situations where the caller simply needs to know what was originally there before lower-casing. It could be useful in error reporting to show the original element name for example. (The case for me specifically is I'm doing code generation based on HTML and so allowing the user to use mixed case in a tag name means they can specify the exact name of a Go struct with CamelCase - the documents in question are mostly standard HTML but of course these elements are treated differently.)
### Observations
* Tracking the byte offset of each token and node is simple and unambiguous.
* Line and column information can be derived from this offset, but raises other questions like the definition of a line ending, how do tabs impact the reported column position, multi-byte characters, etc.
* Thus these concerns would seem to be better handled outside the parser - if the parser reports the byte offset into the original input, that's enough.
* Providing an option to keep the original case of an element in the `Data` field seems, in retrospect, dangerous. I can't prove that this won't cause things to break (the parser does many weird and wonderful things internally to handle special cases with different tags - for which I have a new found respect after diving deeper into the source :) ). A new field seems much more sensible.
* Both tracking offset information and preserving the original text require fields to be added to the appropriate structs (see below). The performance impact of them seems negligible. I thus opted to not implement them as ParserOptions, as it would provide little benefit to disable these features - the fields would still be there just unpopulated.
### Changes
Here's a summary of how this could work (how it works in the prototype):
* Add `OrigData string; Offset int` to `Token`. OrigData is the same as data but before lower casing. (If they are the same they point to the exact same bytes.)
* Add `OrigData string; Offset int` to `Node`, same behavior (fields are just copied from Token to Node).
* Add `OrigKey` to `Attribute`. Original Key before lower casing. (In retrospect Attribute probably could have an Offset too, I might add that.)
* And basically just the book keeping to fill out those fields.
* Separately, a LineCounter struct is added which is wraps an io.Reader and records the positions of every line ending and provides a call to go from an offset to line number and line start offset. Callers can use this to reconstruct "line:col" given a byte offset from Node.Offset, etc. Notice that the question of how to deal with tabs or multi-byte characters becomes the caller's responsibility; this is intentional. (I didn't bother to implement alternate line endings, it assumes \n for now, but this could be done easily.) I'm not sure if it is appropriate to have a LineCounter inside the HTML package, it could just as well be somewhere else.
### Working Prototype
The working code with these modifications is here: https://github.com/vugu/html .
The main commit that touches the internal stuff is: https://github.com/vugu/html/commit/da33d265c2a8fa501665a122efbf1441162a6b3b
Some basic tests are in there, I'm sure more could be done. (I also haven't looked at code that writes out HTML to see how the originally-cased data can be used there too or if this would be an option or what.) I also understand if some of this needs to be split up, this proposal is a few different things lumped together.
I believe these features could be generally useful and so I wanted to see if this is something that could potentially end up being merged, and if so discuss what's required to get to that point. | Proposal,FeatureRequest | low | Critical |
493,664,930 | youtube-dl | add option --prefer-ipv6 | - [x] I'm reporting a feature request
- [x] I've verified that I'm running youtube-dl version **2019.09.12.1**
- [x] I've searched the bugtracker for similar feature requests including closed ones
It's somewhat useful as some of the websites may not be available through IPv6. | request | low | Critical |
493,668,847 | TypeScript | Explicit module resolution | ## Search Terms
explicit module resolution
Semi-Related: #11979
## Suggestion
Have the ability to specify a pragma/directive that provides a definitive resolution to a module to use at compiler time in place of one that is specified at runtime. During transpilation, the directive could be elided, leaving the module specifier it was overriding untouched.
## Use Cases
Specifically in Deno, we don't use any form of "magic" resolution (like Node.js resolution logic), and we include a fully qualified module specifier. This information would change the resolved module for the purposes of the compiler, but not change the runtime module specifier. The logic applied to the module specifier in the pragma/directive could be applied "as normal", it simply would indicate there is a compile time only substitution to be made.
## Examples
Currently in Deno we utilise a special directive to accomplish this: `@deno-types="..."`. We parse a source file as the module is being resolved by the TypeScript compiler, parse out any instances of the directive and apply that substitution to any `import`/`export` between that point and the next directive or the end of the file.
So to load prettier, we would do something like this:
```ts
// @deno-types="./prettier/standalone.d.ts"
import "./prettier/standalone.js";
```
Or if we load lo-dash:
```ts
// @deno-types="https://unpkg.com/@types/lodash@^4.0.0/index.d.ts"
import * as _ from 'https://cdn.pika.dev/lodash-es/v4';
```
So while we have something that works for us, we think that if solving this problem was done in the TypeScript compiler, it would be something that could benefit a wider community as we go more to situations people might not rely upon Node.js module resolution to resolve the compile time and runtime paths and expect the compiler to magically know what their intent is, but also it would be part of the parse of a source file and therefore TypeScript's understanding of the file, instead of having to "trick" the compiler.
There maybe other ways to solve this than some sort of positional directive, so thoughts, feedback are more than welcome. The intent is "the module specifier says X, which is important at runtime, but TypeScript needs to be told to resolve to Y instead".
## Checklist
My suggestion meets these guidelines:
* [X] This wouldn't be a breaking change in existing TypeScript/JavaScript code
* [X] This wouldn't change the runtime behavior of existing JavaScript code
* [X] This could be implemented without emitting different JS based on the types of the expressions
* [X] This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, etc.)
* [X] This feature would agree with the rest of [TypeScript's Design Goals](https://github.com/Microsoft/TypeScript/wiki/TypeScript-Design-Goals).
| Suggestion,In Discussion | medium | Critical |
493,694,516 | flutter | Setting custom navActionTextStyle broke transition | ## Steps to Reproduce
With CupertinoApp add CupertinoThemeData where set:
```
textTheme: CupertinoTextThemeData(
navActionTextStyle: TextStyle(
color: Colors.red,
),
),
```
or
```
primaryColor: CupertinoColors.black,
```
Setting any custom changing of navActionTextStyle broke transition per pages.
Also setting primaryColor doesn't changing color of back button, which i really need.
## Logs
```
[+2919 ms] [DEVICE LOG] 2019-09-15 07:36:32.223310+0300 localhost Runner[7495]: (Flutter) flutter: ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════════════════════════
[ +7 ms] [DEVICE LOG] 2019-09-15 07:36:32.223541+0300 localhost Runner[7495]: (Flutter) flutter: The following assertion was thrown building Positioned(left: 16.2, top: 90.2, right: -0.2, bottom:
[ ] [DEVICE LOG] 2019-09-15 07:36:32.223617+0300 localhost Runner[7495]: (Flutter) flutter: 8.8):
[ ] [DEVICE LOG] 2019-09-15 07:36:32.223685+0300 localhost Runner[7495]: (Flutter) flutter: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b
[ ] [DEVICE LOG] 2019-09-15 07:36:32.223751+0300 localhost Runner[7495]: (Flutter) flutter: == null || a.inherit == b.inherit': is not true.
[ ] flutter: ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════════════════════════
[ ] flutter: The following assertion was thrown building Positioned(left: 16.2, top: 90.2, right: -0.2, bottom:
[ +3 ms] flutter: 8.8):
[ ] flutter: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b
[ ] flutter: == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:32.223840+0300 localhost Runner[7495]: (Flutter) flutter:
[ ] [DEVICE LOG] 2019-09-15 07:36:32.223943+0300 localhost Runner[7495]: (Flutter) flutter: Either the assertion indicates an error in the framework itself, or we should provide substantially
[ ] [DEVICE LOG] 2019-09-15 07:36:32.224115+0300 localhost Runner[7495]: (Flutter) flutter: more information in this error message to help you determine and fix the underlying cause.
[ ] [DEVICE LOG] 2019-09-15 07:36:32.224223+0300 localhost Runner[7495]: (Flutter) flutter: In either case, please report this assertion by filing a bug on GitHub:
[ ] [DEVICE LOG] 2019-09-15 07:36:32.224476+0300 localhost Runner[7495]: (Flutter) flutter: https://github.com/flutter/flutter/issues/new?template=BUG.md
[ ] [DEVICE LOG] 2019-09-15 07:36:32.224707+0300 localhost Runner[7495]: (Flutter) flutter:
[ ] [DEVICE LOG] 2019-09-15 07:36:32.224948+0300 localhost Runner[7495]: (Flutter) flutter: Widget creation tracking is currently disabled. Enabling it enables improved error messages. It can
[ ] [DEVICE LOG] 2019-09-15 07:36:32.225014+0300 localhost Runner[7495]: (Flutter) flutter: be enabled by passing `--track-widget-creation` to `flutter run` or `flutter test`.
[ ] [DEVICE LOG] 2019-09-15 07:36:32.225090+0300 localhost Runner[7495]: (Flutter) flutter:
[ ] [DEVICE LOG] 2019-09-15 07:36:32.225308+0300 localhost Runner[7495]: (Flutter) flutter: When the exception was thrown, this was the stack:
[ ] [DEVICE LOG] 2019-09-15 07:36:32.225533+0300 localhost Runner[7495]: (Flutter) flutter: #2 TextStyle.lerp (package:flutter/src/painting/text_style.dart:928:12)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.225788+0300 localhost Runner[7495]: (Flutter) flutter: #3 TextStyleTween.lerp (package:flutter/src/widgets/implicit_animations.dart:213:41)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.225926+0300 localhost Runner[7495]: (Flutter) flutter: #4 Tween.transform (package:flutter/src/animation/tween.dart:260:12)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.226060+0300 localhost Runner[7495]: (Flutter) flutter: #5 Animatable.evaluate (package:flutter/src/animation/tween.dart:53:46)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.226207+0300 localhost Runner[7495]: (Flutter) flutter: #6 _AnimatedEvaluation.value (package:flutter/src/animation/tween.dart:87:31)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.226289+0300 localhost Runner[7495]: (Flutter) flutter: #7 _AnimatedEvaluation.toString (package:flutter/src/animation/tween.dart:91:46)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.226362+0300 localhost Runner[7495]: (Flutter) flutter: #8 DiagnosticsProperty.valueToString (package:flutter/src/foundation/diagnostics.dart:2591:61)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.226504+0300 localhost Runner[7495]: (Flutter) flutter: #9 DiagnosticsProperty.toDescription (package:flutter/src/foundation/diagnostics.dart:2605:21)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.226713+0300 localhost Runner[7495]: (Flutter) flutter: #10 TextTreeRenderer.render (package:flutter/src/foundation/diagnostics.dart:1170:31)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.226839+0300 localhost Runner[7495]: (Flutter) flutter: #11 TextTreeRenderer.render (package:flutter/src/foundation/diagnostics.dart:1280:39)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.227016+0300 localhost Runner[7495]: (Flutter) flutter: #12 DiagnosticsNode.toStringDeep (package:flutter/src/foundation/diagnostics.dart:1710:7)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.227168+0300 localhost Runner[7495]: (Flutter) flutter: #13 DiagnosticsNode.toString (package:flutter/src/foundation/diagnostics.dart:1633:14)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.227332+0300 localhost Runner[7495]: (Flutter) flutter: #14 DiagnosticableMixin.toString.<anonymous closure> (package:flutter/src/foundation/diagnostics.dart:2988:78)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.227518+0300 localhost Runner[7495]: (Flutter) flutter: #15 DiagnosticableMixin.toString (package:flutter/src/foundation/diagnostics.dart:2990:6)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.227603+0300 localhost Runner[7495]: (Flutter) flutter: #16 _StringBase._interpolate (dart:core-patch/string_patch.dart:843:19)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.227673+0300 localhost Runner[7495]: (Flutter) flutter: #17 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3946:44)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.227759+0300 localhost Runner[7495]: (Flutter) flutter: #18 Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.228051+0300 localhost Runner[7495]: (Flutter) flutter: #19 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.228202+0300 localhost Runner[7495]: (Flutter) flutter: #20 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.228372+0300 localhost Runner[7495]: (Flutter) flutter: #21 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.228733+0300 localhost Runner[7495]: (Flutter) flutter: #22 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.228959+0300 localhost Runner[7495]: (Flutter) flutter: #23 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.229170+0300 localhost Runner[7495]: (Flutter) flutter: #24 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.229365+0300 localhost Runner[7495]: (Flutter) flutter: #25 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.229569+0300 localhost Runner[7495]: (Flutter) flutter: #26 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ +1 ms] [DEVICE LOG] 2019-09-15 07:36:32.229727+0300 localhost Runner[7495]: (Flutter) flutter: #27 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.229865+0300 localhost Runner[7495]: (Flutter) flutter: #28 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.230024+0300 localhost Runner[7495]: (Flutter) flutter: #29 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.230226+0300 localhost Runner[7495]: (Flutter) flutter: #30 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.230433+0300 localhost Runner[7495]: (Flutter) flutter: #31 Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.230629+0300 localhost Runner[7495]: (Flutter) flutter: #32 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.230748+0300 localhost Runner[7495]: (Flutter) flutter: #33 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
[ +9 ms] [DEVICE LOG] 2019-09-15 07:36:32.230966+0300 localhost Runner[7495]: (Flutter) flutter: #34 ParentDataElement.mount (package:flutter/src/widgets/framework.dart:4314:11)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.231159+0300 localhost Runner[7495]: (Flutter) flutter: #35 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.231401+0300 localhost Runner[7495]: (Flutter) flutter: #36 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.231559+0300 localhost Runner[7495]: (Flutter) flutter: #37 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.231767+0300 localhost Runner[7495]: (Flutter) flutter: #38 Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.231967+0300 localhost Runner[7495]: (Flutter) flutter: #39 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
[ +1 ms] [DEVICE LOG] 2019-09-15 07:36:32.232195+0300 localhost Runner[7495]: (Flutter) flutter: #40 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.232358+0300 localhost Runner[7495]: (Flutter) flutter: #41 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.232683+0300 localhost Runner[7495]: (Flutter) flutter: #42 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.233250+0300 localhost Runner[7495]: (Flutter) flutter: #43 MultiChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5233:32)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.233417+0300 localhost Runner[7495]: (Flutter) flutter: #44 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.233626+0300 localhost Runner[7495]: (Flutter) flutter: #45 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.233889+0300 localhost Runner[7495]: (Flutter) flutter: #46 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.234134+0300 localhost Runner[7495]: (Flutter) flutter: #47 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ +1 ms] [DEVICE LOG] 2019-09-15 07:36:32.234819+0300 localhost Runner[7495]: (Flutter) flutter: #48 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.235497+0300 localhost Runner[7495]: (Flutter) flutter: #49 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
[ ] flutter:
[ ] flutter: Either the assertion indicates an error in the framework itself, or we should provide substantially
[ ] flutter: more information in this error message to help you determine and fix the underlying cause.
[ ] flutter: In either case, please report this assertion by filing a bug on GitHub:
[ ] flutter: https://github.com/flutter/flutter/issues/new?template=BUG.md
[ ] flutter:
[ ] flutter: Widget creation tracking is currently disabled. Enabling it enables improved error messages. It can
[ ] flutter: be enabled by passing `--track-widget-creation` to `flutter run` or `flutter test`.
[ ] flutter:
[ ] flutter: When the exception was thrown, this was the stack:
[ ] flutter: #2 TextStyle.lerp (package:flutter/src/painting/text_style.dart:928:12)
[ ] flutter: #3 TextStyleTween.lerp (package:flutter/src/widgets/implicit_animations.dart:213:41)
[ ] flutter: #4 Tween.transform (package:flutter/src/animation/tween.dart:260:12)
[ ] flutter: #5 Animatable.evaluate (package:flutter/src/animation/tween.dart:53:46)
[ ] flutter: #6 _AnimatedEvaluation.value (package:flutter/src/animation/tween.dart:87:31)
[ ] flutter: #7 _AnimatedEvaluation.toString (package:flutter/src/animation/tween.dart:91:46)
[ ] flutter: #8 DiagnosticsProperty.valueToString (package:flutter/src/foundation/diagnostics.dart:2591:61)
[ ] flutter: #9 DiagnosticsProperty.toDescription (package:flutter/src/foundation/diagnostics.dart:2605:21)
[ ] flutter: #10 TextTreeRenderer.render (package:flutter/src/foundation/diagnostics.dart:1170:31)
[ ] flutter: #11 TextTreeRenderer.render (package:flutter/src/foundation/diagnostics.dart:1280:39)
[ ] flutter: #12 DiagnosticsNode.toStringDeep (package:flutter/src/foundation/diagnostics.dart:1710:7)
[ ] flutter: #13 DiagnosticsNode.toString (package:flutter/src/foundation/diagnostics.dart:1633:14)
[ ] flutter: #14 DiagnosticableMixin.toString.<anonymous closure> (package:flutter/src/foundation/diagnostics.dart:2988:78)
[ ] flutter: #15 DiagnosticableMixin.toString (package:flutter/src/foundation/diagnostics.dart:2990:6)
[ ] flutter: #16 _StringBase._interpolate (dart:core-patch/string_patch.dart:843:19)
[ ] flutter: #17 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3946:44)
[ ] flutter: #18 Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
[ ] flutter: #19 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
[ ] flutter: #20 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
[ ] flutter: #21 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
[ ] flutter: #22 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] flutter: #23 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] flutter: #24 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
[ ] flutter: #25 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] flutter: #26 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] flutter: #27 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
[ ] flutter: #28 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] flutter: #29 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ +7 ms] flutter: #30 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
[ ] flutter: #31 Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
[ ] flutter: #32 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
[ ] flutter: #33 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
[ ] flutter: #34 ParentDataElement.mount (package:flutter/src/widgets/framework.dart:4314:11)
[ ] flutter: #35 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] flutter: #36 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] flutter: #37 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
[ ] flutter: #38 Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
[ ] flutter: #39 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
[ ] flutter: #40 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
[ ] flutter: #41 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
[ ] flutter: #42 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] flutter: #43 MultiChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5233:32)
[ ] flutter: #44 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] flutter: #45 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] flutter: #46 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
[ ] flutter: #47 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] flutter: #48 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] flutter: #49 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.235890+0300 localhost Runner[7495]: (Flutter) flutter: #50 Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.236446+0300 localhost Runner[7495]: (Flutter) flutter: #51 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.236807+0300 localhost Runner[7495]: (Flutter) flutter: #52 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.237036+0300 localhost Runner[7495]: (Flutter) flutter: #53 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.237355+0300 localhost Runner[7495]: (Flutter) flutter: #54 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.239203+0300 localhost Runner[7495]: (Flutter) flutter: #55 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.239650+0300 localhost Runner[7495]: (Flutter) flutter: #56 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.240388+0300 localhost Runner[7495]: (Flutter) flutter: #57 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.241005+0300 localhost Runner[7495]: (Flutter) flutter: #58 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.241497+0300 localhost Runner[7495]: (Flutter) flutter: #59 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.242070+0300 localhost Runner[7495]: (Flutter) flutter: #60 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.242434+0300 localhost Runner[7495]: (Flutter) flutter: #61 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.242744+0300 localhost Runner[7495]: (Flutter) flutter: #62 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.242944+0300 localhost Runner[7495]: (Flutter) flutter: #63 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.243163+0300 localhost Runner[7495]: (Flutter) flutter: #64 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.243393+0300 localhost Runner[7495]: (Flutter) flutter: #65 Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.243629+0300 localhost Runner[7495]: (Flutter) flutter: #66 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.243849+0300 localhost Runner[7495]: (Flutter) flutter: #67 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.243917+0300 localhost Runner[7495]: (Flutter) flutter: #68 ParentDataElement.mount (package:flutter/src/widgets/framework.dart:4314:11)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.244000+0300 localhost Runner[7495]: (Flutter) flutter: #69 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.244095+0300 localhost Runner[7495]: (Flutter) flutter: #70 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.244349+0300 localhost Runner[7495]: (Flutter) flutter: #71 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.244469+0300 localhost Runner[7495]: (Flutter) flutter: #72 Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.244562+0300 localhost Runner[7495]: (Flutter) flutter: #73 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.244644+0300 localhost Runner[7495]: (Flutter) flutter: #74 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.244840+0300 localhost Runner[7495]: (Flutter) flutter: #75 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.244900+0300 localhost Runner[7495]: (Flutter) flutter: #76 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.244944+0300 localhost Runner[7495]: (Flutter) flutter: #77 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.244998+0300 localhost Runner[7495]: (Flutter) flutter: #78 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.245074+0300 localhost Runner[7495]: (Flutter) flutter: #79 Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.245165+0300 localhost Runner[7495]: (Flutter) flutter: #80 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.245342+0300 localhost Runner[7495]: (Flutter) flutter: #81 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.245424+0300 localhost Runner[7495]: (Flutter) flutter: #82 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.245478+0300 localhost Runner[7495]: (Flutter) flutter: #83 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.245554+0300 localhost Runner[7495]: (Flutter) flutter: #84 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.245804+0300 localhost Runner[7495]: (Flutter) flutter: #85 RenderObjectElement.updateChildren (package:flutter/src/widgets/framework.dart:4910:32)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.245857+0300 localhost Runner[7495]: (Flutter) flutter: #86 MultiChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:5243:17)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.245946+0300 localhost Runner[7495]: (Flutter) flutter: #87 Element.updateChild (package:flutter/src/widgets/framework.dart:2893:15)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.246153+0300 localhost Runner[7495]: (Flutter) flutter: #88 _TheatreElement.update (package:flutter/src/widgets/overlay.dart:607:16)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.246256+0300 localhost Runner[7495]: (Flutter) flutter: #89 Element.updateChild (package:flutter/src/widgets/framework.dart:2893:15)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.246408+0300 localhost Runner[7495]: (Flutter) flutter: #90 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.246487+0300 localhost Runner[7495]: (Flutter) flutter: #91 Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.246595+0300 localhost Runner[7495]: (Flutter) flutter: #92 BuildOwner.buildScope (package:flutter/src/widgets/framework.dart:2348:33)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.246653+0300 localhost Runner[7495]: (Flutter) flutter: #93 WidgetsBinding.drawFrame (package:flutter/src/widgets/binding.dart:760:20)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.246706+0300 localhost Runner[7495]: (Flutter) flutter: #94 RendererBinding._handlePersistentFrameCallback (package:flutter/src/rendering/binding.dart:280:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.246785+0300 localhost Runner[7495]: (Flutter) flutter: #95 SchedulerBinding._invokeFrameCallback (package:flutter/src/scheduler/binding.dart:1033:15)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.246871+0300 localhost Runner[7495]: (Flutter) flutter: #96 SchedulerBinding.handleDrawFrame (package:flutter/src/scheduler/binding.dart:975:9)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.247151+0300 localhost Runner[7495]: (Flutter) flutter: #97 SchedulerBinding._handleDrawFrame (package:flutter/src/scheduler/binding.dart:891:5)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.247217+0300 localhost Runner[7495]: (Flutter) flutter: #101 _invoke (dart:ui/hooks.dart:249:10)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.247267+0300 localhost Runner[7495]: (Flutter) flutter: #102 _drawFrame (dart:ui/hooks.dart:207:3)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.247589+0300 localhost Runner[7495]: (Flutter) flutter: (elided 5 frames from class _AssertionError and package dart:async)
[ ] [DEVICE LOG] 2019-09-15 07:36:32.247677+0300 localhost Runner[7495]: (Flutter) flutter:
[ ] [DEVICE LOG] 2019-09-15 07:36:32.247782+0300 localhost Runner[7495]: (Flutter) flutter: ════════════════════════════════════════════════════════════════════════════════════════════════════
[ ] [DEVICE LOG] 2019-09-15 07:36:32.252131+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:32.254454+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:32.256258+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:32.257590+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:32.259320+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:32.261288+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:32.263522+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: #50 Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
[ ] flutter: #51 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
[ ] flutter: #52 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
[ ] flutter: #53 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] flutter: #54 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ +8 ms] flutter: #55 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
[ ] flutter: #56 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] flutter: #57 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] flutter: #58 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
[ ] flutter: #59 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] flutter: #60 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] flutter: #61 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:5127:14)
[ ] flutter: #62 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] flutter: #63 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] flutter: #64 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
[ ] flutter: #65 Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
[ ] flutter: #66 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
[ ] flutter: #67 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
[ ] flutter: #68 ParentDataElement.mount (package:flutter/src/widgets/framework.dart:4314:11)
[ ] flutter: #69 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] flutter: #70 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] flutter: #71 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
[ ] flutter: #72 Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
[ ] flutter: #73 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
[ ] flutter: #74 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
[ ] flutter: #75 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
[ ] flutter: #76 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] flutter: #77 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] flutter: #78 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
[ ] flutter: #79 Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
[ ] flutter: #80 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3924:5)
[ ] flutter: #81 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:4088:11)
[ ] flutter: #82 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3919:5)
[ ] flutter: #83 Element.inflateWidget (package:flutter/src/widgets/framework.dart:3101:14)
[ ] flutter: #84 Element.updateChild (package:flutter/src/widgets/framework.dart:2904:12)
[ ] flutter: #85 RenderObjectElement.updateChildren (package:flutter/src/widgets/framework.dart:4910:32)
[ ] flutter: #86 MultiChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:5243:17)
[ ] flutter: #87 Element.updateChild (package:flutter/src/widgets/framework.dart:2893:15)
[ ] flutter: #88 _TheatreElement.update (package:flutter/src/widgets/overlay.dart:607:16)
[ ] flutter: #89 Element.updateChild (package:flutter/src/widgets/framework.dart:2893:15)
[ ] flutter: #90 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3961:16)
[ ] flutter: #91 Element.rebuild (package:flutter/src/widgets/framework.dart:3738:5)
[ ] flutter: #92 BuildOwner.buildScope (package:flutter/src/widgets/framework.dart:2348:33)
[ ] flutter: #93 WidgetsBinding.drawFrame (package:flutter/src/widgets/binding.dart:760:20)
[ ] flutter: #94 RendererBinding._handlePersistentFrameCallback (package:flutter/src/rendering/binding.dart:280:5)
[ ] flutter: #95 SchedulerBinding._invokeFrameCallback (package:flutter/src/scheduler/binding.dart:1033:15)
[ ] flutter: #96 SchedulerBinding.handleDrawFrame (package:flutter/src/scheduler/binding.dart:975:9)
[ ] flutter: #97 SchedulerBinding._handleDrawFrame (package:flutter/src/scheduler/binding.dart:891:5)
[ ] flutter: #101 _invoke (dart:ui/hooks.dart:249:10)
[ ] flutter: #102 _drawFrame (dart:ui/hooks.dart:207:3)
[ ] flutter: (elided 5 frames from class _AssertionError and package dart:async)
[ ] flutter:
[ ] flutter: ════════════════════════════════════════════════════════════════════════════════════════════════════
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ +32 ms] [DEVICE LOG] 2019-09-15 07:36:32.317222+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: _TransitionableNavigationBar.renderBox should be called when building hero flight
shuttles when the from and the to nav bar boxes are already laid out and painted.
[ ] flutter: Another exception was thrown: _TransitionableNavigationBar.renderBox should be called when building hero flight shuttles when the from and the to nav bar boxes are already laid out and painted.
[ +2 ms] [DEVICE LOG] 2019-09-15 07:36:32.319883+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ +3 ms] [DEVICE LOG] 2019-09-15 07:36:32.321376+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ +3 ms] [DEVICE LOG] 2019-09-15 07:36:32.324520+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:32.327072+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ +2 ms] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ +1 ms] [DEVICE LOG] 2019-09-15 07:36:32.334969+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:32.336277+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ +1 ms] [DEVICE LOG] 2019-09-15 07:36:32.337282+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:32.338018+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:32.338600+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ +15 ms] [DEVICE LOG] 2019-09-15 07:36:32.350277+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ +998 ms] [DEVICE LOG] 2019-09-15 07:36:33.354304+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.354406+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.354494+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.354582+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.354662+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.354742+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.355054+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.355180+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.355522+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.355622+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.355768+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.356097+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ +6 ms] [DEVICE LOG] 2019-09-15 07:36:33.356338+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.356722+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.357012+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.357352+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.357730+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.358204+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.358499+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.358710+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.359198+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.359941+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.360209+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.360337+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.360493+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.360669+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.360886+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ +1 ms] [DEVICE LOG] 2019-09-15 07:36:33.361064+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.361206+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.361332+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.361440+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.361578+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.361716+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.361814+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ +7 ms] [DEVICE LOG] 2019-09-15 07:36:33.361891+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.362064+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.362285+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.362395+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.362461+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.362509+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.362584+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.362722+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.362835+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.363031+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.363219+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.363360+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.363457+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.363876+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.363952+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.364038+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.364192+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.364378+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.364510+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.364596+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.364709+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.364843+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.365107+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.365227+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.365368+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.365631+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.365806+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.366002+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.366186+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.366688+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.367024+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ +6 ms] [DEVICE LOG] 2019-09-15 07:36:33.367315+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.367515+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.367737+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.367969+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.368146+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:33.368472+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ +970 ms] [DEVICE LOG] 2019-09-15 07:36:34.374128+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.374199+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.374259+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.374334+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.374407+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.374560+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.374711+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.374824+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.374967+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.375372+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.375502+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.375680+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.375796+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.375931+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.376192+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.376426+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.376579+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.376783+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.377027+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.377317+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.377525+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.377638+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.377822+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.378055+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.378249+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.378363+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.378529+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.378735+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.378984+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.379135+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.379347+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.379597+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.379734+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.379942+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.380108+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.380327+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14:
'owner._debugCurrentBuildTarget == this': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.380551+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.380743+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.380913+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.381148+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.381466+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.381597+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.381771+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.381993+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.382230+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ +5 ms] [DEVICE LOG] 2019-09-15 07:36:34.382339+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.382527+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3740 pos 14: 'owner._debugCurrentBuildTarget == this': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.382727+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.382851+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12:
'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] [DEVICE LOG] 2019-09-15 07:36:34.382985+0300 localhost Runner[7495]: (Flutter) flutter: Another exception was thrown: Duplicate GlobalKeys detected in widget tree.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: 'package:flutter/src/painting/text_style.dart': Failed assertion: line 928 pos 12: 'a == null || b == null || a.inherit == b.inherit': is not true.
[ ] flutter: Another exception was thrown: Duplicate GlobalKeys detected in widget tree.
```
<!--
Run `flutter analyze` and attach any output of that command below.
If there are any analysis errors, try resolving them before filing this issue.
-->
```
```
<!-- Finally, paste the output of running `flutter doctor -v` here. -->
```
[✓] Flutter (Channel stable, v1.9.1+hotfix.2, on Mac OS X 10.14.6 18G95, locale ru-RU)
• Flutter version 1.9.1+hotfix.2 at /Users/toothless/flutter
• Framework revision 2d2a1ffec9 (8 дней назад), 2019-09-06 18:39:49 -0700
• Engine revision b863200c37
• Dart version 2.5.0
[✓] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
• Android SDK at /Users/toothless/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-28, build-tools 28.0.3
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1343-b01)
• All Android licenses accepted.
[✓] Xcode - develop for iOS and macOS (Xcode 10.3)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 10.3, Build version 10G8
• CocoaPods version 1.7.5
[✓] Android Studio (version 3.4)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin version 38.2.1
• Dart plugin version 183.6270
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1343-b01)
[✓] VS Code (version 1.38.1)
• VS Code at /Applications/Visual Studio Code.app/Contents
• Flutter extension version 3.4.1
[✓] Connected device (1 available)
• iPhone Xʀ • A40A0587-6C7E-415B-82C6-8251689AF14A • ios • com.apple.CoreSimulator.SimRuntime.iOS-12-4 (simulator)
```
| c: crash,framework,f: cupertino,d: api docs,f: routes,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design | low | Critical |
493,696,065 | flutter | Flutter upgrade failed with unhandled "Future already completed" exceptions | ## Steps to Reproduce
1. ... Download latest flutter macOS version; Put flutter folder into ```/Applications/```; Add ```flutter/bin``` to ```$PATH```
2. ... Run ```flutter precache``` and it finishes successfully.
3. ... Run ```flutter upgrade```
## Logs
```
$ flutter upgrade
Upgrading Flutter from /Applications/Android/flutter...
From https://github.com/flutter/flutter
+ 20e59316b...2d2a1ffec stable -> origin/stable (forced update)
* [new branch] Hixie-patch-1 -> origin/Hixie-patch-1
+ 20e59316b...2d2a1ffec beta -> origin/beta (forced update)
0a39d8d92..f5733f7a6 dev -> origin/dev
* [new branch] generated_explicit_type -> origin/generated_explicit_type
* [new branch] keyonghan-deviceLabReadme -> origin/keyonghan-deviceLabReadme
aa6384cba..0ef89bb96 master -> origin/master
* [new branch] potato620-patch-1 -> origin/potato620-patch-1
* [new branch] refactor -> origin/refactor
* [new branch] revert-37962-show-search-app-bar-theme -> origin/revert-37962-show-search-app-bar-theme
* [new branch] revert-38861-use_frame_timings -> origin/revert-38861-use_frame_timings
* [new branch] revert-38922-text-docs -> origin/revert-38922-text-docs
* [new branch] v1.9.1-hotfixes -> origin/v1.9.1-hotfixes
* [new tag] v1.10.2 -> v1.10.2
* [new tag] v1.8.3 -> v1.8.3
* [new tag] v1.8.4 -> v1.8.4
* [new tag] v1.9.0 -> v1.9.0
* [new tag] v1.9.1 -> v1.9.1
* [new tag] v1.9.1+hotfix.1 -> v1.9.1+hotfix.1
* [new tag] v1.9.1+hotfix.2 -> v1.9.1+hotfix.2
* [new tag] v1.10.0 -> v1.10.0
* [new tag] v1.10.1 -> v1.10.1
* [new tag] v1.9.2 -> v1.9.2
* [new tag] v1.9.3 -> v1.9.3
* [new tag] v1.9.4 -> v1.9.4
* [new tag] v1.9.5 -> v1.9.5
* [new tag] v1.9.6 -> v1.9.6
* [new tag] v1.9.7 -> v1.9.7
Updating d51fd86cd..2d2a1ffec
PATENTS => PATENT_GRANT | 0
dev/automated_tests/icon/test.png | Bin 0 -> 423 bytes
.../AppIcon.appiconset/[email protected] | Bin 11112 -> 10932 bytes
dev/devicelab/images/agent-statuses.png | Bin 18399 -> 13842 bytes
dev/devicelab/images/broken-test.png | Bin 69897 -> 56878 bytes
dev/devicelab/images/legend.png | Bin 48845 -> 30220 bytes
.../drawable-land-xxhdpi/flutter_splash_screen.png | Bin 0 -> 3861 bytes
.../res/drawable-xxhdpi/flutter_splash_screen.png | Bin 0 -> 4428 bytes
.../app/src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 544 bytes
.../mipmap-land-xxhdpi/flutter_splash_screen.png | Bin 0 -> 3861 bytes
.../app/src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 442 bytes
.../app/src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 721 bytes
.../res/mipmap-xxhdpi/flutter_splash_screen.png | Bin 0 -> 4428 bytes
.../app/src/main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 1031 bytes
.../src/main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 1443 bytes
.../app/src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 544 bytes
.../app/src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 442 bytes
.../app/src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 721 bytes
.../app/src/main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 1031 bytes
.../src/main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 1443 bytes
.../app/src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 544 bytes
.../app/src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 442 bytes
.../app/src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 721 bytes
.../app/src/main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 1031 bytes
.../src/main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 1443 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 10932 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 564 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 1283 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 1588 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 1025 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 1716 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 1920 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 1283 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 1895 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 2665 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 2665 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 3831 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 1888 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 3294 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 3612 bytes
.../LaunchImage.imageset/LaunchImage.png | Bin 0 -> 68 bytes
.../LaunchImage.imageset/[email protected] | Bin 0 -> 68 bytes
.../LaunchImage.imageset/[email protected] | Bin 0 -> 68 bytes
.../AppIcon.appiconset/[email protected] | Bin 11112 -> 10932 bytes
.../AppIcon.appiconset/[email protected] | Bin 11112 -> 10932 bytes
.../ios_host_app/Flutter/.gitkeep | 0
.../AppIcon.appiconset/[email protected] | Bin 11112 -> 10932 bytes
dev/snippets/assets/code_sample.png | Bin 58572 -> 39037 bytes
dev/snippets/assets/code_snippet.png | Bin 202228 -> 113476 bytes
.../app/src/main/res/mipmap-hdpi/ic_background.png | Bin 18209 -> 2583 bytes
.../app/src/main/res/mipmap-hdpi/ic_foreground.png | Bin 3581 -> 2063 bytes
.../app/src/main/res/mipmap-hdpi/ic_launcher.png | Bin 3951 -> 3116 bytes
.../src/main/res/mipmap-xhdpi/ic_background.png | Bin 31807 -> 3231 bytes
.../src/main/res/mipmap-xhdpi/ic_foreground.png | Bin 5455 -> 2721 bytes
.../app/src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 5326 -> 3980 bytes
.../src/main/res/mipmap-xxhdpi/ic_background.png | Bin 72301 -> 4963 bytes
.../src/main/res/mipmap-xxhdpi/ic_foreground.png | Bin 10303 -> 4613 bytes
.../app/src/main/res/mipmap-xxhdpi/ic_launcher.png | Bin 9650 -> 7167 bytes
.../src/main/res/mipmap-xxxhdpi/ic_background.png | Bin 125855 -> 6802 bytes
.../src/main/res/mipmap-xxxhdpi/ic_foreground.png | Bin 16499 -> 6155 bytes
.../src/main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 13901 -> 9897 bytes
.../AppIcon.appiconset/Icon-120.png | Bin 1787 -> 1750 bytes
.../AppIcon.appiconset/Icon-152.png | Bin 2162 -> 2003 bytes
.../app/src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 544 bytes
.../app/src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 442 bytes
.../app/src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 721 bytes
.../app/src/main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 1031 bytes
.../src/main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 1443 bytes
examples/image_list/images/coast.jpg | Bin 0 -> 202344 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 11112 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 564 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 1283 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 1588 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 1025 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 1716 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 1920 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 1283 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 1895 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 2665 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 2665 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 3831 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 1888 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 3294 bytes
.../AppIcon.appiconset/[email protected] | Bin 0 -> 3612 bytes
.../LaunchImage.imageset/LaunchImage.png | Bin 0 -> 68 bytes
.../LaunchImage.imageset/[email protected] | Bin 0 -> 68 bytes
.../LaunchImage.imageset/[email protected] | Bin 0 -> 68 bytes
.../app/src/main/res/mipmap-hdpi/ic_launcher.png | Bin 3481 -> 3041 bytes
.../app/src/main/res/mipmap-mdpi/ic_launcher.png | Bin 2121 -> 1958 bytes
.../app/src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 5061 -> 4372 bytes
.../app/src/main/res/mipmap-xxhdpi/ic_launcher.png | Bin 8878 -> 7152 bytes
.../src/main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 13629 -> 10393 bytes
.../AppIcon.appiconset/[email protected] | Bin 7210 -> 5633 bytes
.../AppIcon.appiconset/[email protected] | Bin 12818 -> 9562 bytes
.../Assets.xcassets/AppIcon.appiconset/Icon-76.png | Bin 3804 -> 3115 bytes
.../AppIcon.appiconset/[email protected] | Bin 10082 -> 7587 bytes
.../AppIcon.appiconset/[email protected] | Bin 11552 -> 8627 bytes
.../AppIcon.appiconset/[email protected] | Bin 1529 -> 1404 bytes
.../AppIcon.appiconset/[email protected] | Bin 2663 -> 2297 bytes
.../AppIcon.appiconset/Icon-Small-40.png | Bin 1529 -> 1404 bytes
.../AppIcon.appiconset/[email protected] | Bin 4058 -> 3282 bytes
.../AppIcon.appiconset/[email protected] | Bin 7210 -> 5633 bytes
.../AppIcon.appiconset/[email protected] | Bin 2518 -> 2164 bytes
.../AppIcon.appiconset/[email protected] | Bin 4520 -> 3725 bytes
.../AppIcon.appiconset/[email protected] | Bin 11112 -> 10932 bytes
.../AppIcon.appiconset/[email protected] | Bin 11112 -> 10932 bytes
.../test_data/basic_project.dart | 0
.../test_data/hot_reload_project.dart | 0
.../test_data/project.dart | 0
.../test_data/stepping_project.dart | 0
.../test_data/tests_project.dart | 0
1259 files changed, 84888 insertions(+), 19872 deletions(-)
Upgrading engine...
Downloading Dart SDK from Flutter engine b863200c37df4ed378042de11c4e9ff34e4e58c9...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 263M 0 3492 0 0 7449 0 10:19:07 --:--:-- 10:19:07 7445
3 263M 3 9854k 0 0 7488k 0 0:00:36 0:00:01 0:00:35 7488k
15 263M 15 40.5M 0 0 17.4M 0 0:00:15 0:00:02 0:00:13 17.4M
27 263M 27 71.9M 0 0 21.7M 0 0:00:12 0:00:03 0:00:09 21.6M
42 263M 42 112M 0 0 26.1M 0 0:00:10 0:00:04 0:00:06 26.1M
52 263M 52 137M 0 0 25.9M 0 0:00:10 0:00:05 0:00:05 28.4M
62 263M 62 163M 0 0 25.7M 0 0:00:10 0:00:06 0:00:04 30.5M
71 263M 71 188M 0 0 25.8M 0 0:00:10 0:00:07 0:00:03 29.6M
80 263M 80 212M 0 0 25.4M 0 0:00:10 0:00:08 0:00:02 28.0M
90 263M 90 237M 0 0 25.5M 0 0:00:10 0:00:09 0:00:01 24.9M
96 263M 96 255M 0 0 24.7M 0 0:00:10 0:00:10 --:--:-- 23.5M
100 263M 100 263M 0 0 25.0M 0 0:00:10 0:00:10 --:--:-- 23.9M
Building flutter tool...
Unhandled exception:
Bad state: Future already completed
#0 _AsyncCompleter.complete (dart:async/future_impl.dart:39:31)
#1 _NativeSocket.startConnect.<anonymous closure>.connectNext.<anonymous closure> (dart:io-patch/socket_patch.dart:523:23)
#2 _NativeSocket.issueWriteEvent.issue (dart:io-patch/socket_patch.dart:878:14)
#3 _NativeSocket.issueWriteEvent (dart:io-patch/socket_patch.dart:885:12)
#4 _NativeSocket.multiplex (dart:io-patch/socket_patch.dart:906:11)
#5 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:172:12)
Error: Unable to 'pub upgrade' flutter tool. Retrying in five seconds... (9 tries left)
Unhandled exception:
Bad state: Future already completed
#0 _AsyncCompleter.complete (dart:async/future_impl.dart:39:31)
#1 _NativeSocket.startConnect.<anonymous closure>.connectNext.<anonymous closure> (dart:io-patch/socket_patch.dart:523:23)
#2 _NativeSocket.issueWriteEvent.issue (dart:io-patch/socket_patch.dart:878:14)
#3 _NativeSocket.issueWriteEvent (dart:io-patch/socket_patch.dart:885:12)
#4 _NativeSocket.multiplex (dart:io-patch/socket_patch.dart:906:11)
#5 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:172:12)
Error: Unable to 'pub upgrade' flutter tool. Retrying in five seconds... (8 tries left)
Unhandled exception:
Bad state: Future already completed
#0 _AsyncCompleter.complete (dart:async/future_impl.dart:39:31)
#1 _NativeSocket.startConnect.<anonymous closure>.connectNext.<anonymous closure> (dart:io-patch/socket_patch.dart:523:23)
#2 _NativeSocket.issueWriteEvent.issue (dart:io-patch/socket_patch.dart:878:14)
#3 _NativeSocket.issueWriteEvent (dart:io-patch/socket_patch.dart:885:12)
#4 _NativeSocket.multiplex (dart:io-patch/socket_patch.dart:906:11)
#5 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:172:12)
Error: Unable to 'pub upgrade' flutter tool. Retrying in five seconds... (7 tries left)
Unhandled exception:
Bad state: Future already completed
#0 _AsyncCompleter.complete (dart:async/future_impl.dart:39:31)
#1 _NativeSocket.startConnect.<anonymous closure>.connectNext.<anonymous closure> (dart:io-patch/socket_patch.dart:523:23)
#2 _NativeSocket.issueWriteEvent.issue (dart:io-patch/socket_patch.dart:878:14)
#3 _NativeSocket.issueWriteEvent (dart:io-patch/socket_patch.dart:885:12)
#4 _NativeSocket.multiplex (dart:io-patch/socket_patch.dart:906:11)
#5 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:172:12)
Error: Unable to 'pub upgrade' flutter tool. Retrying in five seconds... (6 tries left)
Unhandled exception:
Bad state: Future already completed
#0 _AsyncCompleter.complete (dart:async/future_impl.dart:39:31)
#1 _NativeSocket.startConnect.<anonymous closure>.connectNext.<anonymous closure> (dart:io-patch/socket_patch.dart:523:23)
#2 _NativeSocket.issueWriteEvent.issue (dart:io-patch/socket_patch.dart:878:14)
#3 _NativeSocket.issueWriteEvent (dart:io-patch/socket_patch.dart:885:12)
#4 _NativeSocket.multiplex (dart:io-patch/socket_patch.dart:906:11)
#5 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:172:12)
Error: Unable to 'pub upgrade' flutter tool. Retrying in five seconds... (5 tries left)
Unhandled exception:
Bad state: Future already completed
#0 _AsyncCompleter.complete (dart:async/future_impl.dart:39:31)
#1 _NativeSocket.startConnect.<anonymous closure>.connectNext.<anonymous closure> (dart:io-patch/socket_patch.dart:523:23)
#2 _NativeSocket.issueWriteEvent.issue (dart:io-patch/socket_patch.dart:878:14)
#3 _NativeSocket.issueWriteEvent (dart:io-patch/socket_patch.dart:885:12)
#4 _NativeSocket.multiplex (dart:io-patch/socket_patch.dart:906:11)
#5 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:172:12)
Error: Unable to 'pub upgrade' flutter tool. Retrying in five seconds... (4 tries left)
Unhandled exception:
Bad state: Future already completed
#0 _Completer.completeError (dart:async/future_impl.dart:21:31)
#1 _NativeSocket.startConnect.<anonymous closure>.connectNext (dart:io-patch/socket_patch.dart:459:23)
#2 _NativeSocket.startConnect.<anonymous closure>.connectNext.<anonymous closure> (dart:io-patch/socket_patch.dart:537:48)
#3 _NativeSocket.reportError (dart:io-patch/socket_patch.dart:1101:32)
#4 _NativeSocket.multiplex (dart:io-patch/socket_patch.dart:939:13)
#5 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:172:12)
Error: Unable to 'pub upgrade' flutter tool. Retrying in five seconds... (3 tries left)
Unhandled exception:
Bad state: Future already completed
#0 _Completer.completeError (dart:async/future_impl.dart:21:31)
#1 _NativeSocket.startConnect.<anonymous closure>.connectNext (dart:io-patch/socket_patch.dart:459:23)
#2 _NativeSocket.startConnect.<anonymous closure>.connectNext.<anonymous closure> (dart:io-patch/socket_patch.dart:537:48)
#3 _NativeSocket.reportError (dart:io-patch/socket_patch.dart:1101:32)
#4 _NativeSocket.multiplex (dart:io-patch/socket_patch.dart:939:13)
#5 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:172:12)
Error: Unable to 'pub upgrade' flutter tool. Retrying in five seconds... (2 tries left)
Unhandled exception:
Bad state: Future already completed
#0 _Completer.completeError (dart:async/future_impl.dart:21:31)
#1 _NativeSocket.startConnect.<anonymous closure>.connectNext (dart:io-patch/socket_patch.dart:459:23)
#2 _NativeSocket.startConnect.<anonymous closure>.connectNext.<anonymous closure> (dart:io-patch/socket_patch.dart:537:48)
#3 _NativeSocket.reportError (dart:io-patch/socket_patch.dart:1101:32)
#4 _NativeSocket.multiplex (dart:io-patch/socket_patch.dart:939:13)
#5 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:172:12)
Error: Unable to 'pub upgrade' flutter tool. Retrying in five seconds... (1 tries left)
Command 'pub upgrade' still failed after 10 tries, giving up.
```
```
$ flutter doctor -v
Building flutter tool...
Unhandled exception:
Bad state: Future already completed
#0 _AsyncCompleter.complete (dart:async/future_impl.dart:39:31)
#1 _NativeSocket.startConnect.<anonymous closure>.connectNext.<anonymous closure> (dart:io-patch/socket_patch.dart:523:23)
#2 _NativeSocket.issueWriteEvent.issue (dart:io-patch/socket_patch.dart:878:14)
#3 _NativeSocket.issueWriteEvent (dart:io-patch/socket_patch.dart:885:12)
#4 _NativeSocket.multiplex (dart:io-patch/socket_patch.dart:906:11)
#5 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:172:12)
Error: Unable to 'pub upgrade' flutter tool. Retrying in five seconds... (9 tries left)
```
| tool,dependency: dart,P2,team-tool,triaged-tool | low | Critical |
493,710,734 | TypeScript | Type of heterogeneous enum value can't be inferred correctly when used in object literal | **TypeScript Version:** 3.5.3
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
heterogeneous enum value type
**Code**
```ts
const enum Heterogeneous {
Foo = 1,
Bar = 'zzz',
}
var a1: string = Heterogeneous.Bar; // <= OK. no error.
var a2: {name: string} = {name: Heterogeneous.Bar}; // <= Type 'Heterogeneous' is not assignable to type 'string'.
var b1: Heterogeneous = Heterogeneous.Bar; // Type of 'b1' is 'Heterogeneous'.
var b2 = {name: b1}; // Type of 'b2' is still inferred as '{name: Heterogeneous.Bar;}'
var b3: {name: string} = {name: b1}; // OK. 'Heterogeneous.Bar' is assignable to 'string'.
```
**Expected behavior:**
no error.
**Actual behavior:**
var a2: {name: string} = {name: Constants.Bar}; // <= Type 'Constants' is not assignable to type 'string'.ts(2322)
I often use a heterogeneous const enum as a constant provider, for compile time optimizing.
Specifying the string type literal explicitly will work, like:
```
var a2: {name: string} = {name: <string>Heterogeneous.Bar};
```
but it looks verbose. | Bug | low | Critical |
493,715,885 | rust | thread 'rustc' panicked at 'called `Option::unwrap()` on a `None` value', src/libcore/option.rs:347:21 | when following [these install instructions](https://github.com/mad-de/IMPP#build-library-for-android) (which work under Ubuntu 18.04) compiling for openssl-sys fails with:
thread 'rustc' panicked at 'called `Option::unwrap()` on a `None` value', src/libcore/option.rs:347:21
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace.
error: internal compiler error: unexpected panic
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
note: rustc 1.37.0 (eae3437df 2019-08-13) running on x86_64-apple-darwin
note: compiler flags: -C opt-level=3 -C ar=/Users/bianca/Library/Android/sdk/ndk/20.0.5594570//toolchains/llvm/prebuilt/darwin-x86_64/bin/aarch64-linux-android-ar -C linker=/Users/bianca/Library/Android/sdk/ndk/20.0.5594570//toolchains/llvm/prebuilt/darwin-x86_64/bin/aarch64-linux-android29-clang --crate-type lib
note: some of the compiler flags provided by cargo are hidden
error: Could not compile `openssl-sys`.
warning: build failed, waiting for other jobs to finish...
error: build failed
.cargo/config file:
[target.aarch64-linux-android]
ar = "/Users/bianca/Library/Android/sdk/ndk/20.0.5594570//toolchains/llvm/prebuilt/darwin-x86_64/bin/aarch64-linux-android-ar"
linker = "/Users/bianca/Library/Android/sdk/ndk/20.0.5594570//toolchains/llvm/prebuilt/darwin-x86_64/bin/aarch64-linux-android29-clang"
[target.armv7-linux-androideabi]
ar = "/Users/bianca/Library/Android/sdk/ndk/20.0.5594570//toolchains/llvm/prebuilt/darwin-x86_64/bin/arm-linux-androideabi-ar"
linker = "/Users/bianca/Library/Android/sdk/ndk/20.0.5594570//toolchains/llvm/prebuilt/darwin-x86_64/bin/arm-linux-androideabi-clang"
[target.i686-linux-android]
ar = "/Users/bianca/Library/Android/sdk/ndk/20.0.5594570//toolchains/llvm/prebuilt/darwin-x86_64/bin/i686-linux-android-ar"
linker = "/Users/bianca/Library/Android/sdk/ndk/20.0.5594570//toolchains/llvm/prebuilt/darwin-x86_64/bin/i686-linux-android28-clang"
System:
MacOS Mojave (10.14.5 (18F132))
rustc 1.37.0 (eae3437df 2019-08-13)
build commands:
export CC=/Users/bianca/Library/Android/sdk/ndk/20.0.5594570/toolchains/llvm/prebuilt/darwin-x86_64/bin/aarch64-linux-android29-clang
export AR=/Users/bianca/Library/Android/sdk/ndk/20.0.5594570/toolchains/llvm/prebuilt/darwin-x86_64/bin/aarch64-linux-android-ar
cargo build --target aarch64-linux-android --release | O-macos,A-codegen,I-ICE,T-compiler,C-bug | low | Critical |
493,717,742 | youtube-dl | Allow "file://" URLs | ## Checklist
- [x] I'm reporting a feature request
- [x] I've verified that I'm running youtube-dl version **2019.09.12.1**
- [x] I've searched the bugtracker for similar feature requests including closed ones
## Description
#8228 disabled use of "file://" for good reasons. However not all of us run youtube-dl on a server, and there are instances where treating a local file as a URL with a "file://" protocol is necessary and desired.
While a command-line option to override that security fix would be trivial to circumvent (if youtube-dl is being run on a server), a config-file-only option would retain security where it is needed (and allow that functionality if it's needed on a desktop).
Request: A config-file option to allow use of "file://" URLs (eg "--allow-file-url"). If that option is present on the command-line, youtube-dl should respond either by ignoring it or exiting immediately with a non-zero status.
This would allow a secure method for users to explicitly choose to allow use of "file://" URLs. The default behaviour would remain secure, and it would not be possible to over-ride the secure behaviour via command-line options. | request | low | Critical |
493,718,410 | youtube-dl | I want to add multi-channel into my format selection config can, can I do that? | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## 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-issues
- Finally, put x into all relevant boxes (like this [x])
-->
- [x] I'm asking a question
- [X] I've looked through the README and FAQ for similar questions
- [X] I've searched the bugtracker for similar questions including closed ones
## Question
Hello!
I already have a convoluted format selection configuration, that I got with some help. Which prefers opus over Vorbis over AAC. (Also video with resolution preferred over format up to a certain size, otherwise vp9 preferred)
But recently I noticed that new higher bitrate multi-channel audio streams (formats 258, 256) were added which makes sense to be preferred, but apparently only in AAC. So I'd like to add them somehow.
`-f "(bestvideo[vcodec=vp9]/bestvideo[vcodec^=avc]/bestvideo[vcodec!=vp8])[height<=1440]+(bestaudio[acodec=opus]/bestaudio[acodec=vorbis]/bestaudio[acodec^=m4a]/bestaudio)/(best[vcodec=vp9]/best[vcodec^=avc]/best[vcodec!=vp8])[height<=1440]"`
Example video:
https://www.youtube.com/watch?v=_ttYSpt8oiw
Or should I just revert to bestaudio? I don't know if bestaudio actually selects bestaudio, or tries to combine AAC for AVC and opus/vorbis to VP9. Besed on the formats available for the example video it might work if bestaudio only looks at bitrate only. Though I'm not sure if there are videos with residual stereo AAC streams of higher bitrate than opus which I don't want. Or vorbis streams for which the bitrate I don't remember.
| question | low | Critical |
493,718,756 | youtube-dl | Support for https://xxxdan.com/ | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check list in order to prevent the most common mistakes and misuse of youtube-dl:
- First of, make sure you are using the latest version of youtube-dl. Run `youtube-dl --version` and ensure your version is 2019.09.12.1. If it's not, see https://yt-dl.org/update on how to update. Issues with outdated version will be REJECTED.
- Make sure that all provided video/audio/playlist URLs (if any) are alive and playable in a browser.
- Make sure that site you are requesting is not dedicated to copyright infringement, see https://yt-dl.org/copyright-infringement. youtube-dl does not support such sites. In order for site support request to be accepted all provided example URLs should not violate any copyrights.
- Search the bugtracker for similar site support requests: http://yt-dl.org/search-issues. DO NOT post duplicates.
- Finally, put x into all relevant boxes (like this [x])
-->
- [x] I'm reporting a new site support request
- [x] I've verified that I'm running youtube-dl version **2019.09.12.1**
- [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 for similar site support requests including closed ones
## Example URLs
<!--
Provide all kinds of example URLs support for which should be included. Replace following example URLs by yours.
-->
- Single video: https://xxxdan.com/livecams/faa90ea558d129221553b146f58ed99c/big-tits-brunette-melisagreen-dildoing-herself.html
- Single video: https://xxxdan.com/zya5Y/colombian-shemale-with-big-cock-masturbating.html
- Playlist: n/a
## Description
<!--
Provide any additional information.
If work on your issue requires account credentials please provide them or explain how one can obtain them.
-->
Pornographic website which currently is not supported in youtube-dl. No account is required for viewing. BTW even though the one link has "livecams" in the url it is actually a static video
| site-support-request | low | Critical |
493,728,250 | CS-Notes | HashMap 扩容-重新计算桶下标 | 假设原数组长度 capacity 为 16,扩容之后 new capacity 为 32:
capacity : 00010000
new capacity : 00100000
对于一个 Key,
它的哈希值如果在第 5 位上为 0,那么取模得到的结果和之前一样;
如果为 1,那么得到的结果为原来的结果 +16。
没有看懂,有没有大佬详细讲解一下~ | question | medium | Minor |
493,774,853 | flutter | Help new users avoid odd patterns with more analyzer warnings | I saw a new Flutter developer write code something like this:
```dart
class BlueRect extends Container {
BlueRect(double argDim) {
globalDim = argDim;
}
static double globalDim;
final double dim = globalDim;
Widget build(BuildContext context) {
return Container(
width: dim,
height: dim,
color: Colors.blue,
);
}
}
```
Their complaint was "when I hot reload it works, but when I restart it doesn't appear".
It's analyzer-clean, which is distressing. I'm not really sure how to help them, but we should be able to notice _something_ is off here, right...?
cc @devoncarew @stereotype441 @goderbauer @a14n | framework,dependency: dart,a: first hour,c: proposal,P2,team-framework,triaged-framework | low | Minor |
493,791,650 | godot | Bumpy issue when dealing with moving platforms and Animation Player | **Godot version:**
3.1.1 stable
**OS/device including version:**
Ubuntu 18.04.2 LTS
**Issue description:**
A bumpy player in moving Platform when using `AnimationPlayer` in `CollisionShape2D`.

**Steps to reproduce:**
Given the following Node2D Structure:
```
* Node2D
* KinematicBody2D
* Sprite
* Animation Player
* Collision Shape 2D
```
If we animate `CollisionShape2D` and `Sprite` up and down, simulating a vertical moving platform, we get a bump effect on the character.
But if we animate the `KinematicBody2D` up and down directly, it doesn't happen. It works, but some times it is not wanted since I don't want to mess the base location of that object.
Make sure to set `Sync to Physics` to `on` in your platform object.
**Minimal reproduction project:**
Clone this and hit play in your Godot:
https://github.com/raphaklaus/animation-player-issue
| bug,discussion,topic:core,confirmed,usability,topic:physics | low | Major |
493,792,653 | pytorch | "git describe" shows incorrect version 1.0 instead of 1.2 | ## 🐛 Bug
After cloning
`git describe --tags` shows version 1.0 instead of 1.2. This impacts packaging from git source.
## To Reproduce
`git describe --tags`
results in:
`v1.0rc0-7015-g31139b5f9a`
## Expected behavior
`v1.2.0-7015-g31139b5f9a`
## Environment
## Additional context
cc @ezyang @gchanan @zou3519 | module: build,triaged | low | Critical |
493,803,795 | go | x/mobile: bind example does not work under xcode 11 GM | <!-- 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 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><br><pre>
$ go env
GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/Users/user/Library/Caches/go-build"
GOENV="/Users/user/Library/Application Support/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GONOPROXY=""
GONOSUMDB=""
GOOS="darwin"
GOPATH="/Users/user/gocode"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/usr/local/Cellar/go/1.13/libexec"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/local/Cellar/go/1.13/libexec/pkg/tool/darwin_amd64"
GCCGO="gccgo"
AR="ar"
CC="clang"
CXX="clang++"
CGO_ENABLED="1"
GOMOD="/Users/user/gocode/src/golang.org/x/mobile/go.mod"
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/mj/vc775djd4p73ftqvkrphl01m0000gn/T/go-build395480379=/tmp/go-build -gno-record-gcc-switches -fno-common"
</pre></details>
### What did you do?
checked out the go mobile repo (follow instructions https://github.com/golang/go/wiki/Mobile) and opened it in xcode 11 and built.
verified Hello.framework exists in "Framework, Libraries and Embeded contents" and also listed in "Link Binary with Libraries".
<!--
If possible, provide a recipe for reproducing the error.
A complete runnable program is good.
A link on play.golang.org is best.
-->
### What did you expect to see?
able to build and run the package.
### What did you see instead?
"Module 'Hello' not found" in ViewController.m
| NeedsInvestigation,mobile | low | Critical |
493,821,454 | go | database/sql/driver: DefaultParameterConverter breaks driver expectations when decimalDecompose is implemented | ### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.13 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><br><pre>
$ go env
GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/Users/richjddavis/Library/Caches/go-build"
GOENV="/Users/richjddavis/Library/Application Support/go/env"
GOEXE=""
GOFLAGS="-tags=noaws"
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GONOPROXY=""
GONOSUMDB=""
GOOS="darwin"
GOPATH="/Users/richjddavis/go"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/usr/local/Cellar/go/1.13/libexec"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/local/Cellar/go/1.13/libexec/pkg/tool/darwin_amd64"
GCCGO="gccgo"
AR="ar"
CC="clang"
CXX="clang++"
CGO_ENABLED="1"
GOMOD=""
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/bq/603y7lh10433_w66hbr38t480000gn/T/go-build565497442=/tmp/go-build -gno-record-gcc-switches -fno-common"
</pre></details>
### What did you do?
Provided a `"github.com/shopspring/decimal".Decimal` as a query parameter, using the `github.com/lib/pq` driver.
You'll need a PostgreSQL server running somewhere so that `sql.Open` can do its thing and get to the problematic point. I'm running a 10.10 server locally, but it shouldn't matter, so long as it's able to be connected to.
```go
package main
import (
"database/sql"
"fmt"
"os"
_ "github.com/lib/pq"
"github.com/shopspring/decimal"
)
func main() {
// Should `POSTGRES_CONNSTR` be not set, it'll check for a locally running instance on the default port of 5432
db, err := sql.Open("postgres", os.Getenv("POSTGRES_CONNSTR"))
if err != nil {
panic(err)
}
in := decimal.New(101, -1)
var out decimal.Decimal
row := db.QueryRow("select $1", in)
if err := row.Scan(&out); err != nil {
panic(err)
}
fmt.Println(in, out, in.Equal(out))
}
```
### What did you expect to see?
```
POSTGRES_CONNSTR='sslmode=disable' go run main.go
10.1 10.1 true
```
### What did you see instead?
```
POSTGRES_CONNSTR='sslmode=disable' go run main.go
panic: pq: encode: unknown type for decimal.Decimal
goroutine 1 [running]:
main.main()
~/go/src/github.com/richjddavis/go-1-13-pq-decimal/main.go:23 +0x35f
exit status 2
```
***
This seems to happen because due to the intersection of a few different behaviours:
* Go `1.13` introducing the `driver.decimalDecompose` interface as part of https://golang.org/issue/30870
* github.com/shopspring/decimal providing an implementation of `driver.decimalDecompose` in https://github.com/shopspring/decimal/pull/141
* github.com/lib/pq only supporting the pre-1.13 set of `IsValue()` types
[This comment](https://github.com/golang/go/blob/master/src/database/sql/driver/types.go#L252) in `driver.defaultConverter.ConvertValue()` seems to suggest that if a type implements `Valuer` (which `"github.com/shopspring/decimal".Decimal` [does](https://github.com/shopspring/decimal/blob/master/decimal.go#L1003)), then that implementation should be used over `decimalDecompose`. However, `IsValue`, which has a positive match for `decimalDecompose`, is checked prior to this, and early exits without any conversion. If I remove the case for `decimalDecompose` in [`driver.IsValue()`](https://github.com/golang/go/blob/master/src/database/sql/driver/types.go#L183), the sample program runs as expected (and as it did in Go 1.12).
I'm not really sure which layer is "at fault" here, but in response to someone else raising this in in https://github.com/shopspring/decimal/pull/141#issuecomment-530427315, @kardianos had requested that an issue be created here and that they be mentioned. | NeedsInvestigation | medium | Critical |
493,844,361 | flutter | Proposal: make material `Stepper` pass proper `isActive` to its children `Step`s, based on `currentStep` | <!-- 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 have found a bug or if our documentation doesn't have an answer
to what you're looking for, then fill our the template below. Please read
our guide to filing a bug first: https://flutter.dev/docs/resources/bug-reports
-->
## Use case
For now, the users of `Stepper` have to pass duplicate information twice, that is:
1. `currentStep` to `Stepper`
2. `isActive: ([corresponding step of the Step widget] == currentState)` to each `Step`
However, I think it's safe to assume that in major cases, users would want to show `Step` at index `currentStep` to appear as selected one (I mean style-wise). If we implement exactly that, the users of `Stepper` aren't required to pass (redundant, in my opinion) `isActive` to `Step` widget.
<!--
Please tell us the problem you are running into that led to you wanting
a new feature.
Is your feature request related to a problem? Please give a clear and
concise description of what the problem is.
Describe alternative solutions you've considered. Is there a package
on pub.dev/flutter that already solves this?
-->
## Proposal
Make `Stepper` pass proper `isActive` parameter for children, based on its own `currentStep`. If needed, pass opt-out option for `Step` which disables enabled styling. (I think I can start [here](https://github.com/flutter/flutter/blob/master/packages/flutter/lib/src/material/stepper.dart#L512-L533)?)
I'm filing an issue first instead of PR, as I'm not sure if the core team agrees with this change, and/or if there's any possible unintended outcome that I couln't think of. If there's any, please let me know! Thanks for the awesome product.
<!--
Briefly but precisely describe what you would like Flutter to be able to do.
Consider attaching images showing what you are imagining.
Does this have to be provided by Flutter directly, or can it be provided
by a package on pub.dev/flutter? If so, maybe consider implementing and
publishing such a package rather than filing a bug.
-->
| framework,f: material design,c: proposal,P3,team-design,triaged-design | low | Critical |
493,851,856 | youtube-dl | Support for https://www.keekass.com/ | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check list in order to prevent the most common mistakes and misuse of youtube-dl:
- First of, make sure you are using the latest version of youtube-dl. Run `youtube-dl --version` and ensure your version is 2019.09.12.1. If it's not, see https://yt-dl.org/update on how to update. Issues with outdated version will be REJECTED.
- Make sure that all provided video/audio/playlist URLs (if any) are alive and playable in a browser.
- Make sure that site you are requesting is not dedicated to copyright infringement, see https://yt-dl.org/copyright-infringement. youtube-dl does not support such sites. In order for site support request to be accepted all provided example URLs should not violate any copyrights.
- Search the bugtracker for similar site support requests: http://yt-dl.org/search-issues. DO NOT post duplicates.
- Finally, put x into all relevant boxes (like this [x])
-->
- [x] I'm reporting a new site support request
- [x] I've verified that I'm running youtube-dl version **2019.09.12.1**
- [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 for similar site support requests including closed ones
## Example URLs
<!--
Provide all kinds of example URLs support for which should be included. Replace following example URLs by yours.
-->
- Single video: https://www.keekass.com/videos/41359/lorien-ejaculates/
- Single video: n/a
- Playlist: n/a
## Description
<!--
Provide any additional information.
If work on your issue requires account credentials please provide them or explain how one can obtain them.
-->
Pornographic website which currently is not supported in youtube-dl. No account is required for viewing.
| site-support-request | low | Critical |
493,858,658 | flutter | Better documentation of flutter install flags and side-effects | <!-- 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 have found a bug or if our documentation doesn't have an answer
to what you're looking for, then fill our the template below. Please read
our guide to filing a bug first: https://flutter.dev/docs/resources/bug-reports
-->
## Steps to Reproduce
<!--
Please tell us exactly how to reproduce the problem you are running into.
Please attach a small application (ideally just one main.dart file) that
reproduces the problem. You could use https://gist.github.com/ for this.
If the problem is with your application's rendering, then please attach
a screenshot and explain what the problem is.
-->
1. [main.dart](https://gist.github.com/mazei513/cd5dce338323031d2a5e07a800a592f5)
2. `flutter run --release` with a device connected, it should print `true`. Quit out of the `flutter run --release` with `q`.
3. `flutter run --release` again, and it will print `false`. Quit out of the `flutter run --release` with `q`.
4. `flutter build apk && flutter install`, then run the app on the device. It prints `true`.
5. `flutter build apk && flutter install` again, then run the app on the device. It prints `true` again.
## Expectations
From my understanding, SQFLite DB would not be lost between installations, which results in the expected output when using `flutter run --release`. However, when updating the app through `flutter install` the DB file is lost, presumingly during the `Uninstalling old version...` step. Is there a way to perform `flutter install` without the uninstall step?
## Context
Developing an app to be used personally only on my phone. Would like to keep the install size small by splitting the apk with `flutter build`.
## Doctor
<!-- Finally, paste the output of running `flutter doctor -v` here. -->
```
[✓] Flutter (Channel stable, v1.9.1+hotfix.2, on Mac OS X 10.14.6 18G95, locale en-GB)
• Flutter version 1.9.1+hotfix.2 at /Users/[user_here]/flutter/flutter
• Framework revision 2d2a1ffec9 (9 days ago), 2019-09-06 18:39:49 -0700
• Engine revision b863200c37
• Dart version 2.5.0
[✓] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
• Android SDK at /Users/[user_here]/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-28, build-tools 28.0.3
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
• All Android licenses accepted.
[✓] Xcode - develop for iOS and macOS (Xcode 10.3)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 10.3, Build version 10G8
• CocoaPods version 1.7.5
[✓] Android Studio (version 3.5)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin version 38.2.3
• Dart plugin version 191.8423
• Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
[✓] VS Code (version 1.38.1)
• VS Code at /Applications/Visual Studio Code.app/Contents
• Flutter extension version 3.4.1
[✓] Connected device (1 available)
• Mi A1 • e4916a3d0504 • android-arm64 • Android 9 (API 28)
```
| c: new feature,tool,P3,team-tool,triaged-tool | low | Critical |
493,963,394 | flutter | would like a feature in image_picker video to set recording resolution and/or resize resulting video | I am using image_picker. The file size is too big for me: 5 seconds video become a 30 MB file size. Any way to resize that? | c: new feature,p: image_picker,package,team-ecosystem,P3,triaged-ecosystem | low | Minor |
494,033,116 | flutter | Keyboard closes if something rebuilds underneath it |
## Steps to Reproduce
1. ... Run the gist here https://gist.github.com/matejthetree/198c6c7463bd2a1a138b70f4b1175f48
Don't forget to add the plugin to the yaml.
`keyboard_visibility: 0.5.6 `
2. ... Press the textfield
3. ... The keyboard will close automatically.
If you comment out line 63+
```
_keyboardOn
? Container()
: Text('keyboard is off'), //comment this line to make it work
```
Then, everything works.
How to go around this?
```
flutter doctor -v(base) stablos-MacBook-Pro:set_state_tf korijen$ flutter doctor -v
[✓] Flutter (Channel master, v1.10.3-pre.47, on Mac OS X 10.14.6 18G95, locale en-HR)
• Flutter version 1.10.3-pre.47 at /Users/korijen/Work/SDKs/flutter
• Framework revision 928245d07c (3 hours ago), 2019-09-16 06:14:41 -0400
• Engine revision 224ab48f1b
• Dart version 2.6.0 (build 2.6.0-dev.0.0 f8f0b845c2)
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.1)
• Android SDK at /Users/korijen/Work/SDKs/android
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-29, build-tools 29.0.1
• ANDROID_HOME = /Users/korijen/Work/SDKs/android
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
• All Android licenses accepted.
[✓] Xcode - develop for iOS and macOS (Xcode 10.3)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 10.3, Build version 10G8
• CocoaPods version 1.7.5
[✓] Android Studio (version 3.5)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin version 38.2.3
• Dart plugin version 191.8423
• Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
[✓] IntelliJ IDEA Ultimate Edition (version 2019.2.1)
• IntelliJ at /Applications/IntelliJ IDEA.app
• Flutter plugin version 38.2.4
• Dart plugin version 192.6262.58
[✓] IntelliJ IDEA Community Edition (version 2019.1.3)
• IntelliJ at /Applications/IntelliJ IDEA CE.app
• Flutter plugin version 37.1.3
• Dart plugin version 191.7830
[!] VS Code (version 1.37.1)
• VS Code at /Applications/Visual Studio Code.app/Contents
✗ Flutter extension not installed; install from
https://marketplace.visualstudio.com/items?itemName=Dart-Code.flutter
[✓] Connected device (1 available)
• Android SDK built for x86 • emulator-5554 • android-x86 • Android 10 (API 29) (emulator)
```
| a: text input,framework,f: material design,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-framework,triaged-framework | low | Major |
494,037,656 | flutter | CupertinoNavigationBar/CupertinoSliverNavigationBar previous route title replacement logic differs from native iOS | Currently, the back button title is replaced with "Back" only when the previous route title is longer than 12 characters, which doesn't seem to match the native iOS logic.
The attached screenshots demonstrate how native iOS navigation bar replaces the previous route title only when there's not enough room to fit the title.
A common parent route:
<img src="https://user-images.githubusercontent.com/5076429/64959902-ddd81580-d89a-11e9-9278-d295a30fa42e.PNG" width ="300">
Back button title is "Back" instead of "Keyboards" since there's not enough room to fit it:
<img src="https://user-images.githubusercontent.com/5076429/64959913-e3cdf680-d89a-11e9-9aea-9da4468c9362.PNG" width ="300">
Back button title is "Keyboards" since there's enough room to fit it:
<img src="https://user-images.githubusercontent.com/5076429/64959926-e7fa1400-d89a-11e9-9bd5-3b05e96910e3.jpg" width ="300">
Flutter version:
```
Flutter 1.9.1+hotfix.2 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 2d2a1ffec9 (9 days ago) • 2019-09-06 18:39:49 -0700
Engine • revision b863200c37
Tools • Dart 2.5.0
```
| platform-ios,framework,a: fidelity,f: cupertino,f: routes,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design | low | Major |
494,132,357 | pytorch | Inplace and out arguments for BatchNorm (and other norm layers: InstanceNorm / LayerNorm / GroupNorm ...) | Following the discussion in https://github.com/pytorch/pytorch/issues/23756, a simple way to enable users implementing inplace-activated batchnorm:
1) provide inplace mode for BatchNorm and batch_norm
2) expose backward methods of BatchNorm so that the user can hook or provide their own recomputed input (actually the user can do their own affine transformation fused with activation, so even just(1) would do, given we can call backward of batchnorm explicitly in an autograd function)
Then the users can reuse the bulk of already existing code while implementing inplace-activated batchnorm, probably without having to write any C++.
When the inverse/flow operations are figured out, this input recomputation may be more broadly supported.
cc @VitalyFedyunin @ngimel | module: performance,triaged,function request,module: norms and normalization | high | Critical |
494,155,431 | rust | Cargo build fails to spawn thread when out of disk quota | I've written a small client program for connecting to a server using TCP/TLS. The code successfully compiles on my local machine, but fails to compile on a remote server. The compilation error only happens during the phase where the crates are compiled.
Crates:
bufstream v0.1
clap v2
openssl v0.10
openssl-sys v0.9
Compiler output: [gist](https://gist.github.com/donnellycolton/ed18a989f275f6fed5e8739779635c8d)
Local machine:
Distro: Manjaro 18.1.0 Juhraya
CPU: x86_64 x4 cores
rustc 1.37.0 (eae3437df 2019-08-13)
binary: rustc
commit-hash: eae3437dfe991621e8afdc82734f4a172d7ddf9b
commit-date: 2019-08-13
host: x86_64-unknown-linux-gnu
release: 1.37.0
LLVM version: 8.0
Server:
Distro: CentOS 7 Core
CPU: x86_64 x48 cores
rustc 1.36.0
binary: rustc
commit-hash: unknown
commit-date: unknown
host: x86_64-unknown-linux-gnu
release: 1.36.0
LLVM version: 7.0 | I-ICE,T-compiler,C-bug | low | Critical |
494,168,241 | flutter | Horizontal Stepper Overflows Title (with no way to allow for scrolling) | ## Steps to Reproduce
1. Create a stepper with 5+ steps with any title such as "Step Title"
2. Make its direction horizontal
3. The Stepper widget puts step icons into a row until it overflows the screen, with no way to make it scroll
```
Stepper(
type: StepperType.horizontal,
currentStep: currentStep,
steps: <Step>[
Step(
content: Text('content'),
title: Text('title'),
isActive: currentStep == 0),
Step(
content: Text('content'),
title: Text('title'),
isActive: currentStep == 1),
Step(
content: Text('content'),
title: Text('title'),
isActive: currentStep == 2),
Step(
content: Text('content'),
title: Text('title'),
isActive: currentStep == 3),
Step(
content: Text('content'),
title: Text('title'),
isActive: currentStep == 4),
Step(
content: Text('content'),
title: Text('title'),
isActive: currentStep == 5),
Step(
content: Text('content'),
title: Text('title'),
isActive: currentStep == 6),
],
)
```
Wrapping the stepper with a horizontal `SingleChildScrollView` does not fix the issue.
`Stepper._buildHorizontal`
```
Material(
elevation: 2.0,
child: Container(
margin: const EdgeInsets.symmetric(horizontal: 24.0),
child: Row(
children: children,
),
),
),
```
As you can see from the source code which builds the title row with steps and titles, there is no capability to scroll over overflow gracefully at all. If the `children` of the `row` don't fit on the screen, it will overflow.
| framework,f: material design,customer: crowd,has reproducible steps,P2,found in release: 3.3,has partial patch,found in release: 3.7,team-design,triaged-design | low | Critical |
494,171,720 | tensorflow | Bazel workspace.bzl requires a dependency on rules_closure | Per https://stackoverflow.com/questions/52482972/running-load-within-skylark-macro
users of Tensorflow are adding rules_closure to their `WORKSPACE` file even though they don't use it.
rules_closure is minimally maintained (my team has just acquired it). We don't want new dependencies on it and have discovered that most dependencies are due to this issue.
I suspect the Tensorflow users don't actually want to build a Closure Compiler-minified UI, so any `load()` statement from rules_closure doesn't belong in the tensorflow bazel rules distribution.
Note, #15997 suggests customizing the dependencies, but in this issue I propose that users should never observe this dependency at all. | stat:awaiting tensorflower,type:build/install,subtype:bazel | low | Major |
494,196,384 | vscode | Reference / schema loading problem behind kerberos authenticated proxy | Hello,
I have problem loadind JSON references / schemas behind corporate kerberos authenticated proxy.
VS Code reports:
Problems loading reference 'https://schemastore.azurewebsites.net/schemas/json/tsconfig.json'
Unable to load schema from 'https://schemastore.azurewebsites.net/schemas/json/tsconfig.json'
or
Unable to load schema from 'http://json.schemastore.org/tslint'
Followed by the HTML error message returned by the proxy server itself: Authentication required
The rest of features of VSC are working fine (extension/market place browsing) so I think that some specific method is used to load references from the web and the Chromium proxy settings are not used.
Please note there is not fallback to NTLM or Basic authentication allowed on the proxy server, just kerberos.
Version: 1.38.1 (system/user),
I notice the problem is there at least since 1.26.
I didn't find any other related issue and I think this one is not covered by #79044 or by #74991.
| feature-request,proxy | low | Critical |
494,201,189 | rust | Needed: `cfg(target_feature)` support for hardware floating point detection. | Currently there seems to be no way to detect at compile time if the target will have hardware floating point support.
Depending on the target arch, this is sometimes expressed in LLVM as a feature named "hard-float", or as a feature named "soft-float", or even as features named "f" and "d". It's entirely possible for there to be hardware `f32` support but not `f64` support on some platforms. LLVM has (or should have) all of this info already, based on the target profile. We just don't expose it in Rust.
For the record, this is initially needed for libm/compiler-builtins to advance the issue of moving `sqrt` and other float support into `core`, so if this is added as some sort of Nightly-only and perma-unstable ability then that's probably fine since those crates are always built with Nightly and then shipped with the compiler.
It feels like this could be a simple PR thing by someone who knows about that part of the cargo/LLVM/rustc interaction, but more likely this is some sort of RFC level change. However, it's also possible that I'm totally wrong and that there is already an arcane way to check for floating point support configuration already, so I'm starting with an issue to try and get some visibility for the problem. | T-lang,C-feature-request | low | Major |
494,222,806 | go | cmd/go: incompatible module version not detected by 'go run' or 'go build' | ### What version of Go are you using (`go version`)?
<pre>
[user@localhost ~]$ 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`)?
<details><summary><code>go env</code> Output</summary><br><pre>
[user@localhost ~]$ go env
GO111MODULE="on"
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/user/.cache/go-build"
GOENV="/home/user/.config/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GONOPROXY="*.sc-corp.net"
GONOSUMDB="*.sc-corp.net"
GOOS="linux"
GOPATH="/home/user/go"
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/home/user/.local/share/umake/go/go-lang"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/home/user/.local/share/umake/go/go-lang/pkg/tool/linux_amd64"
GCCGO="gccgo"
AR="ar"
CC="gcc"
CXX="g++"
CGO_ENABLED="1"
GOMOD="/tmp/test/go.mod"
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build698062687=/tmp/go-build -gno-record-gcc-switches"
</pre></details>
### What did you do?
Create the following `go.mod` file:
```go
module test
go 1.13
require k8s.io/client-go v12.0.0+incompatible
```
Create the following `main.go` file:
```go
package main
import (
"fmt"
"k8s.io/client-go/pkg/version"
)
func main() { fmt.Println(version.Get()) }
```
### What did you expect to see?
The toolchain should fail all interactions with `k8s.io/client-go` because of the combination of the `go.mod` file at the `v12.0.0` tag:
```sh
[user@localhost test]$ go get k8s.io/[email protected]
go: finding k8s.io v12.0.0
go: finding k8s.io/client-go v12.0.0
go: finding k8s.io/client-go v12.0.0
go get k8s.io/[email protected]: k8s.io/[email protected]: invalid version: module contains a go.mod file, so major version must be compatible: should be v0 or v1, not v12
[user@localhost test]$ go run .
go: finding k8s.io/client-go v12.0.0+incompatible
go: finding k8s.io/client-go v12.0.0+incompatible
go list -m: k8s.io/[email protected]+incompatible: invalid version: +incompatible suffix not allowed: module contains a go.mod file, so semantic import versioning is required
[user@localhost test]$ go build
go: finding k8s.io/client-go v12.0.0+incompatible
go: finding k8s.io/client-go v12.0.0+incompatible
go list -m: k8s.io/[email protected]+incompatible: invalid version: +incompatible suffix not allowed: module contains a go.mod file, so semantic import versioning is required
[user@localhost test]$ go doc k8s.io/client-go/pkg/version
go: finding k8s.io/client-go v12.0.0+incompatible
go: finding k8s.io/client-go v12.0.0+incompatible
go list -m: k8s.io/[email protected]+incompatible: invalid version: +incompatible suffix not allowed: module contains a go.mod file, so semantic import versioning is required
```
### What did you see instead?
All parts of the toolchain I tested appear to re-find the problematic module on every invocation, however `go get` fails (as above), `go doc` warns, and both `go run` and `go build` succeed:
```sh
[user@localhost test]$ go run .
go: finding k8s.io/client-go v12.0.0+incompatible
go: finding k8s.io/client-go v12.0.0+incompatible
v0.0.0-master+$Format:%h$
[user@localhost test]$ go build
go: finding k8s.io/client-go v12.0.0+incompatible
go: finding k8s.io/client-go v12.0.0+incompatible
[user@localhost test]$ ./test
v0.0.0-master+$Format:%h$
[user@localhost test]$ go doc k8s.io/client-go/pkg/version
go: finding k8s.io/client-go v12.0.0+incompatible
go: finding k8s.io/client-go v12.0.0+incompatible
go list -m: k8s.io/[email protected]+incompatible: invalid version: +incompatible suffix not allowed: module contains a go.mod file, so semantic import versioning is required
package version // import "k8s.io/client-go/pkg/version"
Package version supplies version information collected at build time to
kubernetes components.
func Get() apimachineryversion.Info
``` | help wanted,NeedsFix,GoCommand,early-in-cycle,modules,BadErrorMessage | low | Critical |
494,238,696 | rust | LLVM error with arithemetic on function addresses | Hello! I was doing some experimenting with Wasm callbacks and ran into 2 issues.
The code for the guest is compiled with Rust `1.37.0` on OSX with `--target=wasm32-unknown-unknown` and `--release`.
edit: the first issue is no longer relevant; I misunderstood how function pointers were implemented. By using the table to look up these values, I got it working!
### The second issue
While investigating this, I also found that the invalid solution of relying on the guest to offset correctly:
```Rust
fn main() {
// offset by 3 because we have 3 imports!
unsafe { call_guest_fn(test_callback as usize as u32 + 3) };
}
````
causes an LLVM error:
```
cargo build --release --target=wasm32-unknown-unknown
Compiling guest v0.1.0 (/Users/mark/Documents/temp/guest)
LLVM ERROR: Function addresses with offsets not supported
error: Could not compile `guest`.
To learn more, run the command again with --verbose.
```
Let me know if I can clarify or help out with this! | A-LLVM,T-compiler,O-wasm | low | Critical |
494,244,481 | rust | Weird compiler error for type annotations | ```rust
use std::thread;
fn main() {
let result = {
let spawned_result = thread::spawn(|| 3).join();
let result = spawned_result.map_err(|e| e.into());
let handler = |a| Ok(a + 1);
result.and_then(handler)
};
println!("{:?}", result);
}
```
([Playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=fd15bd5e992bbd13c2f7cbda39c1f312))
Error will be
```
error[E0282]: type annotations needed for `std::result::Result<i32, E>`
--> src/main.rs:6:37
|
4 | let result = {
| ------ consider giving `result` the explicit type `std::result::Result<i32, E>`, where the type parameter `F` is specified
5 | let spawned_result = thread::spawn(|| 3).join();
6 | let result = spawned_result.map_err(|e| e.into());
| ^^^^^^^ cannot infer type for `F`
```
Which is a little bit confusing because there's no type parameter `F` in `std::result::Result<i32, E>`.
On the other hand, if we place `let handler = |a| Ok(a + 1);` before `let result = spawned_result.map_err(|e| e.into());`, we will receive correct message:
```
error[E0282]: type annotations needed for `std::result::Result<i32, E>`
--> src/main.rs:6:27
|
4 | let result = {
| ------ consider giving `result` the explicit type `std::result::Result<i32, E>`, where the type parameter `E` is specified
5 | let spawned_result = thread::spawn(|| 3).join();
6 | let handler = |a| Ok(a + 1);
| ^^ cannot infer type for `E`
``` | A-diagnostics,T-compiler,C-bug | low | Critical |
494,251,841 | TypeScript | Recurring: Review exception text for potential PII | * [ ] `throw` statements
* [ ] `Debug._____` calls
* [ ] Any helper method containing these that accepts arguments
* (list them as you find them) | Meta-Issue | low | Critical |
494,257,302 | flutter | Please add .codeStyle for project https://github.com/flutter/packages | Dart(Flutter) code autoformatting works well, but Kotlin / Java not. Could you add .codeStyle files to plugins repo? Thank you | team,package,team-ecosystem,P3,triaged-ecosystem | low | Minor |
494,285,723 | vscode | Enter in the middle of a line comment should create a new line comment |
Issue Type: <b>Bug</b>
I'm using JavaScript but this is likely not language-specific:
1. Start typing a comment
` // something like, if ( true ) `
2. Type an opening brace
` // something like, if ( true ) {`
3. Editor will insert a closing brace, cursor will be between braces
` // something like, if ( true ) {|}`
4. Hit Enter / Return
**Expected:**
Newline will automatically be in a commented-out line
```
// something like, if ( true ) {
// }
```
**Actual:**
The comment is treated like code and an extra newline is inserted, introducing a hanging end-brace:
```
// something like, if ( true ) {
}
```
VS Code version: Code 1.38.0 (3db7e09f3b61f915d03bbfa58e258d6eee843f35, 2019-09-03T21:47:00.464Z)
OS version: Darwin x64 17.7.0
<details>
<summary>System Info</summary>
|Item|Value|
|---|---|
|CPUs|Intel(R) Core(TM) i7-4770HQ CPU @ 2.20GHz (8 x 2200)|
|GPU Status|2d_canvas: enabled<br>flash_3d: enabled<br>flash_stage3d: enabled<br>flash_stage3d_baseline: enabled<br>gpu_compositing: enabled<br>multiple_raster_threads: enabled_on<br>native_gpu_memory_buffers: enabled<br>oop_rasterization: disabled_off<br>protected_video_decode: unavailable_off<br>rasterization: enabled<br>skia_deferred_display_list: disabled_off<br>skia_renderer: disabled_off<br>surface_synchronization: enabled_on<br>video_decode: enabled<br>viz_display_compositor: disabled_off<br>webgl: enabled<br>webgl2: enabled|
|Load (avg)|2, 2, 2|
|Memory (System)|16.00GB (3.65GB free)|
|Process Argv|-psn_0_3810210|
|Screen Reader|no|
|VM|0%|
</details><details><summary>Extensions (8)</summary>
Extension|Author (truncated)|Version
---|---|---
vscode-css-formatter|aes|1.0.1
xml|Dot|2.5.0
mssql|ms-|1.6.0
debugger-for-chrome|msj|4.11.7
vscode-code-outline|pat|0.2.1
java|red|0.48.0
vscodeintellicode|Vis|1.1.9
vscode-java-debug|vsc|0.21.0
</details>
<!-- generated by issue reporter --> | feature-request,editor-commands | low | Critical |
494,307,687 | flutter | Write tests for FlutterFragmentActivity | `FlutterFragmentActivity` has been introduced into Flutter's Android embedding. However, due to infrastructure limitations at the time, we couldn't figure out how to test it. We received ambiguous build failures that we were unable to solve in the test suites.
This ticket is to come back and write the appropriate tests once the testing infra allows for it. | a: tests,team,platform-android,engine,P2,team-android,triaged-android | low | Critical |
494,311,462 | TypeScript | Detect exotic assignment patterns to JS prototypes | *Template added by by @mjbvz*
**TS Versions**: 3.7-20190911
**Repo**
For the JS:
```js
function A() {}
A.prototype.foo = 1;
[A.prototype.bar] = [2],
{baz: A.prototype.baz} = {baz: 3};
const proto = A.prototype;
proto.prop = 4;
```
**Expected**
Intellisense for instances of `A` should show four properties
**Actual**
Only `foo` shown.
*Original report below*
---
Intellisense seems to only recognize straightforward prototype property definitions like `Class.prototype.prop = value`.
Assigning `Class.prototype` to a variable and extending that, or using destructuring syntax will not be recognized by it:
 | Suggestion,Awaiting More Feedback | low | Major |
494,313,319 | TypeScript | jsdoc mouse hover definition {Array.<static class>} bug | **TypeScript Version**: TS-next-3.7.0-2019.09.11
---
hi, if we add a definition `jsdoc` with static class array like this
`/**@type {Array.<_A._B>} */`
Mouse hover show `any`. And am not seem able to get link from vscode.
So i can't use `ctrl+click` to get definitions and travel in my codes.
I don't know if is a bug related to vscode engine or a mistake from my side?
Try this code and hover `{Array.<_A._B>}`
```js
class _A {
constructor() {
/**@type {Array.<_A._B>} */
this.test = null;
//test intelisence
this.test[0].TESTT
};
static _B = (function() {
return class _B {
constructor() {
this.TESTT = true;
};
};
})();
static _C = class _C {
constructor() {
this.TESTT = true;
};
};
};
```

from suggest, it can also maybe related here.
https://github.com/microsoft/vscode/issues/17912
thanks in advance | Suggestion,Experience Enhancement | low | Critical |
494,321,412 | terminal | Windows Terminal (Dev Build) should display version as git commit instead of "0.1.0.0" | <!--
🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
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 explanation or engagement.
3. If I write an issue that has many duplicates, the core team may close my issue without further explanation or engagement (and without necessarily spending time to find the exact duplicate ID number).
4. If I leave the title incomplete when filing the issue, the core team may close my issue without further explanation or engagement.
5. If I file something completely blank in the body, the core team may close my issue without further explanation or engagement.
All good? Then proceed!
-->
<!--
This bug tracker is monitored by Windows Terminal development team and other technical folks.
**Important: When reporting BSODs or security issues, DO NOT attach memory dumps, logs, or traces to Github issues**.
Instead, send dumps/traces to [email protected], referencing this GitHub issue.
If this is an application crash, please also provide a Feedback Hub submission link so we can find your diagnostic data on the backend. Use the category "Apps > Windows Terminal (Preview)" and choose "Share My Feedback" after submission to get the link.
Please use this form and describe your issue, concisely but precisely, with as much detail as possible.
-->
# Environment
```none
Windows build number:Win32NT 10.0.18362.0 Microsoft Windows NT 10.0.18362.0
Windows Terminal version (if applicable):
Any other software?
```
# Steps to reproduce
Build from cloned git tree.
git clone https://github.com/microsoft/Terminal.git
Build x64 release (or debug)
Deploy solution.
Click the menu down arrow
choose "About"
<!-- A description of how to trigger this bug. -->
# Expected behavior
Version is reported as at least 0.4
Since that is was is referenced in https://devblogs.microsoft.com/commandline/windows-terminal-preview-v0-4-release/
<!-- A description of what you're expecting, possibly containing screenshots or reference material. -->
# Actual behavior
About box displays
Windows Terminal (Dev Build)
Version: 0.0.1.0
<!-- What's actually happening? -->
# Additional Info
Other git repositories auto update release info to include git commit ID in the about box if built from a clone of the repository. In addition to keeping the version reported in git clone builds up to date with what you have in the Microsoft store you might consider putting the git commit string in the version string and stripped out on release.
| Help Wanted,Area-UserInterface,Product-Terminal,Issue-Task | low | Critical |
494,336,663 | go | wiki: CodeReviewComments additions | Propose adding a handful of sections to the CodeReviewComments page. The sections that follow provide advice given during Go readability reviews at Google.
## Import _
Packages that are imported only for their side effects (using the syntax `import _ "pkg"`) should only be imported in the main package of a program, or in tests that require them.
Avoid blank imports in library packages, even if the library indirectly depends on them. Containing side-effect imports in the main package helps control dependencies, and makes it possible to write tests that rely on a different side-effect without conflict.
If you create a library package that indirectly depends on a side-effect import, leave a comment reminding users to import that package in their main package.
## Switch Break
Avoid the use of redundant break statements without target labels at the ends of switch clauses. Unlike in C or Java, switch clauses in Go automatically break, and a fallthrough statement is needed to achieve the C-style behavior.
Use a comment if you want to clarify the purpose of an empty clause.
Prefer:
```go
switch x {
case "A", "B":
buf.WriteString(x)
case "C":
// Handled outside of the switch statement
default:
return fmt.Errorf("unknown value: %q", x)
}
```
and not:
```go
switch x {
case "A", "B":
buf.WriteString(x)
break // Redundant
case "C":
break // Redundant
default:
return fmt.Errorf("unknown value: %q", x)
}
```
## Type Aliases
Use a type definition (`type T1 T2`) to define a new type.
Use an alias declaration (`type T1 = T2`) to refer to an existing type without defining a new type.
Prefer type definitions over alias declarations.
## Use %q
Go's format functions (`fmt.Printf` and friends) have a %q verb which prints a string inside quotation marks. It should be used in preference to doing the equivalent manually.
Prefer:
```go
fmt.Printf("value %q looks like English text", someText)
```
and not:
```go
fmt.Printf("value '%s' looks like English text", someText)
```
Also, note that using %q is a good idea in output intended for humans where the input value could possibly be empty. It can be very hard to notice a silent empty string, but "" stands out clearly as such. | Documentation,NeedsDecision | low | Critical |
494,389,633 | pytorch | Supporting "cdf" for Student-T distribution | ## 🚀 Feature
Adding support to `cdf` for `StudentT` distribution.
## Motivation
I need to calculate the (kind of) confidence intervals of a large vector (say, weight vector). This could be slow on CPU (not including the overhead of transferring).
## Alternatives
I could convert a tensor into a numpy array, and perform the operation with scipy library, then convert it back.
cc @vincentqb @fritzo @neerajprad @alicanb @vishwakftw | module: distributions,low priority,triaged,enhancement | low | Major |
494,398,590 | rust | Confusing error message for recursive type | I recently had a very frustrating issue. I wrote some code that didn't compile, but the error was really hard to track down. I've written a small example to illustrate the issue.
```
use std::io;
#[derive(Debug)]
struct Node {
data: Vec<u8>,
left: Option<Box<Node>>,
right: Option<Box<Node>>
}
impl Node {
fn deserialize<R: io::Read>(mut r: R) -> Option<Self> {
let size = io::Read::bytes(&mut r).next().unwrap().unwrap();
if size == 0 {
return None;
}
let data = io::Read::bytes(&mut r).take(size as usize).map(|v| v.unwrap()).collect();
let size = io::Read::bytes(&mut r).next().unwrap().unwrap();
let left = Node::deserialize(io::Read::take(&mut r, size as u64)).map(Box::new);
let size = io::Read::bytes(&mut r).next().unwrap().unwrap();
let right = Node::deserialize(io::Read::take(&mut r, size as u64)).map(Box::new);
Some(Self { data, left, right })
}
}
fn main() {
let tree = Node::deserialize(&vec![2, 1, 2, 6, 1, 3, 1, 0, 1, 0, 6, 1, 4, 1, 0, 1, 0][..]);
println!("{:?}", tree);
}
```
The above code doesn't compile and errors with the following error:
```
Compiling playground v0.0.1 (/playground)
error[E0275]: overflow evaluating the requirement `&[u8]: std::io::Read`
|
= help: consider adding a `#![recursion_limit="256"]` attribute to your crate
= note: required because of the requirements on the impl of `std::io::Read` for `&mut &[u8]`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut &[u8]>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut &[u8]>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut &[u8]>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::io::Read` for `&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::iter::Iterator` for `std::io::Bytes<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
= note: required because of the requirements on the impl of `std::iter::Iterator` for `std::iter::Map<std::iter::Take<std::io::Bytes<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut std::io::Take<&mut &[u8]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>, [closure@src/main.rs:16:68: 16:82]>`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0275`.
error: Could not compile `playground`.
To learn more, run the command again with --verbose.
```
The code doesn't compile because the combined use of Take + generics + recursion resulted in a type that was recursively defined. Adding a Box to the Take instances and casting to a trait object fixes the problem.
```
let size = io::Read::bytes(&mut r).next().unwrap().unwrap();
let left = Node::deserialize(Box::new(io::Read::take(&mut r, size as u64)) as Box<dyn io::Read>).map(Box::new);
let size = io::Read::bytes(&mut r).next().unwrap().unwrap();
let right = Node::deserialize(Box::new(io::Read::take(&mut r, size as u64)) as Box<dyn io::Read>).map(Box::new);
```
In the real code with the issue, there were more pieces involved and it was far far less obvious than the example I gave. Also the cyclical call graph involved was more complicated and some of the code was generated from a proc-macro. Debugging the issue was tricky and especially since the compiler gave almost no information about how to locate the code with the problem, just the type names it was resolving in the process. When you have a large crate that can be super frustrating. I know this is not really a bug, but I really wanted to provide this feedback. It would be great if the error message for this contained the call graph or some sort of span infomation. | C-enhancement,A-diagnostics,T-compiler | low | Critical |
494,418,546 | flutter | Trailing space doesn't work with TextField with TextAlign.right | TextField Widget Option textAlign Setting for [TextAlign.right] ,input space key cursor fault
`TextField(
textAlign: TextAlign.right,
)
` | a: text input,framework,f: material design,has reproducible steps,P2,found in release: 2.5,found in release: 2.6,team-framework,triaged-framework | low | Critical |
494,436,500 | vscode | SCM Input - Display current line length for source control commit message input | <!-- Please search existing issues to avoid creating duplicates. -->
<!-- Describe the feature you'd like. -->
HI! I care a lot for 50/72 commit message rule and I depend a lot on VSCode's source control's commit message input.
The problem is that I always start to write, and I wait for the warning to appear, then if I'm in title, (first line), I try to change what I intended to say to contain only 50 chars; and if I'm in description (lines after the break after the first line) I write as much as I get the warning, and then I go back to before the current word and insert a new line there (press enter). This pattern is becoming so annoying. I want to observe how much I'm writing on the current line. A screen shot of what I have in mind:

(note the small number in bottom right corner of the screen) | help wanted,feature-request,scm | low | Major |
494,438,323 | pytorch | Behavior of F.dropout in eval mode | ## 📚 Documentation
The documentation for F.dropout should probably mention that putting the model in eval mode doesn't disable dropout.
A small example
```python
import torch
import torch.nn as nn
import torch.nn.functional as F
class Net(nn.Module):
def __init__(self):
super(Net, self).__init__()
def forward(self, x):
x = F.dropout(x)
return x
net = Net()
a = torch.ones(10)
net(a)
tensor([0., 0., 0., 2., 2., 2., 0., 0., 2., 2.])
net.eval()
net(a)
tensor([0., 0., 0., 2., 2., 2., 0., 0., 2., 2.])
```
If the model is set in eval mode, the dropout layer is not disabled.
is_training should take care of this.. But it may be better if this behavior is explicitly mentioned in the docs.
| module: docs,low priority,triaged | low | Minor |
494,453,335 | youtube-dl | Requesting support for onq.io videos | ## Checklist
* [x] I've checked that all provided URLs are alive and playable in a browser
* [x] I'm reporting a new site support request
* [x] I've verified that I'm running youtube-dl version **2019.09.12.1**
* [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 for similar site support requests including closed ones
## Example URLs
- Single video: https://embed.onq.io/player?id=aqw8oq2tajzsjktodljmlyhe0f68gdt9
- Single video: https://embed.onq.io/player?id=gbhpp2gcr7eoflmxl1hn7tqk3mpxuel1
## Description
The videos are uploaded through **https://www.engageonq.com/** | site-support-request | low | Critical |
494,469,314 | pytorch | CPU version of PyTorch on PyPI | ## 🚀 Feature
Publish the CPU version of PyTorch on PyPI to make it installable in a more convenient way.
## Motivation
Using PyTorch in production does not require necessarily the (~700 MB big) GPU version, but installing the much smaller CPU version as suggested on the website:
```
pip3 install torch==1.2.0+cpu torchvision==0.4.0+cpu -f https://download.pytorch.org/whl/torch_stable.html
```
makes it hard to use tools like [Poetry](https://poetry.eustace.io/), which do not work with `pip` itself and therefore do not support an argument like `-f https://download.pytorch.org/whl/torch_stable.html`.
## Pitch
Publish the CPU version (e.g. as `torch-cpu`) on PyPI. | module: build,feature,oncall: releng,module: cpu,triaged | high | Critical |
494,475,719 | TypeScript | Use any instead of unknown for AsyncGenerator optional .next parameter | **TypeScript Version:** 3.6.2
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
async generator, AsyncGenerator, optional .next
**Code**
The following causes a type error:
```ts
async function* sequence(iterable: AsyncIterable<number>): AsyncGenerator<number> {
yield 12;
try {
// Type error: Cannot delegate iteration to value because the 'next' method of its iterator expects type 'undefined', but the containing generator will always send 'unknown'.
yield* iterable;
} finally {
console.log('Cleanup!');
}
}
```
**Expected behavior:**
I would've expected it to be a non-type error.
**Problem:**
The primary annoyance with this is that I'd like to use `AsyncGenerator<T>` just for specifying that `.return()` can be used without non-null assertions (`.return!()`) for early cleanup but `AsyncGenerator<T>` results in `AsyncGenerator<T, any, unknown>` so `AsyncIterable<T>` can't be delegated to.
**Proposed solution:**
Change `interface AsyncGenerator<T = unknown, TReturn = any, TNext = unknown>` to `interface AsyncGenerator<T = unknown, TReturn = any, TNext = any`.
This won't break anything as `any` is assignable to anything, and I doubt it'll be problematic as those using `AsyncGenerator<T>` (or `AsyncGenerator<T, S>`) presumably do not care about the `.next` parameter. | Needs Investigation | low | Critical |
494,489,157 | go | x/website/tour: when build error occurs, had to manually kill program | In tour.golang.org, when the build failed, had to manually click the kill button to stop the process.
In play.golang.org the process automatically killed.

| NeedsInvestigation | low | Critical |
494,504,357 | youtube-dl | youtube_dl attribute __version__ does not exist | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check list in order to prevent the most common mistakes and misuse of youtube-dl:
- First of, make sure you are using the latest version of youtube-dl. Run `youtube-dl --version` and ensure your version is 2019.09.12.1. If it's not, see https://yt-dl.org/update on how to update. Issues with outdated version will be REJECTED.
- Search the bugtracker for similar feature requests: http://yt-dl.org/search-issues. DO NOT post duplicates.
- Finally, put x into all relevant boxes (like this [x])
-->
- [x] I'm reporting a feature request
- [x] I've verified that I'm running youtube-dl version **2019.09.12.1**
- [x] I've searched the bugtracker for similar feature requests including closed ones
## Description
<!--
Provide an explanation of your issue in an arbitrary form. Please make sure the description is worded well enough to be understood, see https://github.com/ytdl-org/youtube-dl#is-the-description-of-the-issue-itself-sufficient. Provide any additional information, suggested solution and as much context and examples as possible.
-->
Hi, by [PEP 396](https://www.python.org/dev/peps/pep-0396/) `youtube_dl.__version__` should exist and report the current version of the module.
When trying this feature I get the following error:
```python
In [1]: import youtube_dl
In [2]: youtube_dl.__version__ ---------------------------------------------------------------------------
AttributeError Traceback (most recent call last) <ipython-input-2-a225f3ac3329> in <module>() ----> 1 youtube_dl.__version__
AttributeError: 'module' object has no attribute '__version__'
``` | request | low | Critical |
494,526,510 | vscode | [SCSS] Consider using new SCSS grammar (nested properties with shorthand values break syntax highlighting) | Issue Type: <b>Bug</b>
[Nested properties of SCSS](https://sass-lang.com/documentation/style-rules/declarations#nesting) break syntax highlighting when provided both shorthand-value and sub-values:


The issue is reproducible with all extensions disabled. Snippet from screenshot:
```scss
.button {
@include fontDemi;
border: 0 {
radius: 30px;
};
background-color: $buttonColor;
font-size: 1vw;
padding: 1.8vh 1.5vw;
text-transform: uppercase;
letter-spacing: 1px;
}
```
VS Code version: Code 1.38.1 (b37e54c98e1a74ba89e03073e5a3761284e3ffb0, 2019-09-11T13:35:15.005Z)
OS version: Windows_NT x64 10.0.18362
<details>
<summary>System Info</summary>
|Item|Value|
|---|---|
|CPUs|Intel(R) Core(TM) i7-4770K CPU @ 3.50GHz (8 x 3498)|
|GPU Status|2d_canvas: enabled<br>flash_3d: enabled<br>flash_stage3d: enabled<br>flash_stage3d_baseline: enabled<br>gpu_compositing: enabled<br>multiple_raster_threads: enabled_on<br>native_gpu_memory_buffers: disabled_software<br>oop_rasterization: disabled_off<br>protected_video_decode: unavailable_off<br>rasterization: enabled<br>skia_deferred_display_list: disabled_off<br>skia_renderer: disabled_off<br>surface_synchronization: enabled_on<br>video_decode: enabled<br>viz_display_compositor: disabled_off<br>webgl: enabled<br>webgl2: enabled|
|Load (avg)|undefined|
|Memory (System)|15.69GB (2.83GB free)|
|Process Argv||
|Screen Reader|no|
|VM|0%|
</details><details><summary>Extensions (53)</summary>
Extension|Author (truncated)|Version
---|---|---
replacerules|bhu|0.2.7
vscode-intelephense-client|bme|1.2.3
path-intellisense|chr|1.4.2
bracket-pair-colorizer-2|Coe|0.0.28
vscode-eslint|dba|1.9.1
xml|Dot|2.5.0
eslint-disable-snippets|drK|1.2.0
gitlens|eam|9.9.3
prettier-vscode|esb|2.2.2
vscode-commands|fab|1.2.5
vscode-todo-plus|fab|4.14.1
cshtml-tm|fir|1.0.0
auto-close-tag|for|0.5.6
auto-rename-tag|for|0.1.0
vscode-yarn|gam|1.6.0
sass-lint|gle|1.0.6
gc-excelviewer|Gra|2.1.32
npm-dependency-links|her|1.0.1
beautify|Hoo|1.5.0
vscode-react-typescript|inf|1.3.1
run-in-terminal|kor|0.0.1
yarn-lock-syntax|mar|0.1.3
twig-language|mbl|0.8.10
twig-language-2|mbl|0.8.10
rainbow-csv|mec|1.3.1
code-beautifier|mic|2.3.3
vscode-clang|mit|0.2.3
vscode-apache|mrm|1.2.0
vscode-jade-snippets|mrm|1.0.1
vscode-json5|mrm|1.0.0
vscode-scss|mrm|0.6.2
vscode-docker|ms-|0.8.1
remote-wsl|ms-|0.39.5
csharp|ms-|1.21.2
powershell|ms-|2019.5.0
sublime-keybindings|ms-|4.0.3
typescript-javascript-grammar|ms-|0.0.52
vscode-typescript-tslint-plugin|ms-|1.2.2
debugger-for-chrome|msj|4.11.7
vscode-react-native|msj|0.11.0
color-highlight|nau|2.3.0
vscode-versionlens|pfl|0.24.0
vscode-react-refactor|pla|1.0.5
quicktype|qui|12.0.46
vscode-sort-json|ric|1.14.0
multi-command|ryu|1.3.0
react-component-refactor|san|0.2.0
stylelint|shi|0.51.0
code-spell-checker|str|1.7.18
shell-launcher|Tyr|0.3.0
vscode-icons|vsc|9.3.0
vscode-todo-highlight|way|1.0.4
txt-syntax|xsh|0.0.3
</details>
<!-- generated by issue reporter --> | feature-request,upstream,css-less-scss,grammar,upstream-issue-linked | low | Critical |
494,537,964 | TypeScript | document.createTreewalker and document.createNodeIterator have missing signature types that which are supported both in IE, Firefox and Chrome | **Introduction**
The third parameter `filter` in both functions needs to be a function in IE as described here https://stackoverflow.com/questions/45595349/ie9-ie-10-ie11-createnodeiterator-exception-occurred/45609439#45609439
Both Firefox and Chrome support this version as well as the object `{acceptNode: (node: Node) => number}` as third parameter.
In IE the fourth parameter `entityReferenceExpansion` is required.
A previous solution to `document.createNodeIterator` can be seen here https://github.com/microsoft/TypeScript/issues/27393
The described solution is to override `Document` interface; But TypeScript still complains.
Also `NodeIterator.referenceNode` is required in lib.dom.d.ts, but in IE it is always `undefined`
<!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.6.2
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
createTreeWalker createNodeIterator IE Internet Explorer
**Code that fails**
```ts
const walker = document.createTreeWalker(
wrapperElement,
NodeFilter.SHOW_TEXT,
function filter(node: Node): number {
return NodeFilter.FILTER_ACCEPT;
},
false
);
const nodeIterator = document.createNodeIterator(
wrapperElement,
NodeFilter.SHOW_TEXT,
function filter(node: Node): number {
return NodeFilter.FILTER_ACCEPT;
},
false
);
```
**Workaround**
```ts
const walker = document.createTreeWalker(
wrapperElement,
NodeFilter.SHOW_TEXT,
function filter(node: Node): number {
return NodeFilter.FILTER_ACCEPT;
} as any,
false
);
function acceptNode(node: Node): number {
return NodeFilter.FILTER_ACCEPT;
}
// "strictBindCallApply": false,
const nodeIterator
= document.createNodeIterator.apply(document, [wrapperElement, NodeFilter.SHOW_ELEMENT, acceptNode, false]) as NodeIterator;
```
**Expected behavior:**
lib.dom.d.ts has
```ts
createTreeWalker(root: Node, whatToShow: number, filter: (node: Node) => number | null, entityReferenceExpansion: boolean): TreeWalker;
createNodeIterator(root: Node, whatToShow: number, filter: (node: Node) => number | null, entityReferenceExpansion: boolean): NodeIterator;
```
**Actual behavior:**
lib.dom.d.ts lacks the function signatures
**Related Issues:**
https://github.com/microsoft/TypeScript/issues/27393
| Bug,Domain: lib.d.ts | low | Minor |
494,552,054 | vue | test named "vdom patch: children" occasionally fails | ### Version
2.6.10
### Reproduction link
[https://circleci.com/gh/vuejs/vue/13744?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link](https://circleci.com/gh/vuejs/vue/13744?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link)
### Steps to reproduce
Tests are flaky on CI and also sometimes locally. Re-running the tests seem to work
### What is expected?
Tests not to be flaky
### What is actually happening?
Tests are flaky
<!-- generated by vue-issues. DO NOT REMOVE --> | contribution welcome | low | Major |
494,552,078 | godot | Invalid read of size 1 in AudioStreamPlaybackOGGVorbis::_mix_internal | **Godot version:**
3.2.alpha.custom_build. 24e1039eb
**OS/device including version:**
Ubuntu 19.04
**Issue description:**
Godot must be compiled with sanitizers support(`scons p=x11 -j6 use_ubsan=yes use_lsan=yes use_asan=yes`) or checked with Valgrind(this is much slower)
When importing ogg files, Godot read freed memory:
```
READ of size 1 at 0x627000d790f5 thread T9
#0 0x445407c in get8 thirdparty/misc/stb_vorbis.c:1298
#1 0x4457899 in get8_packet_raw thirdparty/misc/stb_vorbis.c:1529
#2 0x4457c43 in get_bits thirdparty/misc/stb_vorbis.c:1560
#3 0x44756d7 in vorbis_decode_initial thirdparty/misc/stb_vorbis.c:3122
#4 0x447f33d in vorbis_decode_packet thirdparty/misc/stb_vorbis.c:3438
#5 0x44a0541 in stb_vorbis_get_frame_float thirdparty/misc/stb_vorbis.c:4942
#6 0x44a7bf0 in stb_vorbis_get_samples_float_interleaved thirdparty/misc/stb_vorbis.c:5355
#7 0x32f03d0 in AudioStreamPlaybackOGGVorbis::_mix_internal(AudioFrame*, int) modules/stb_vorbis/audio_stream_ogg_vorbis.cpp:48
#8 0xd779e9d in AudioStreamPlaybackResampled::mix(AudioFrame*, float, int) servers/audio/audio_stream.cpp:84
#9 0x74e2b18 in EditorAudioStreamPreviewPlugin::generate(Ref<Resource> const&, Vector2 const&) const editor/plugins/editor_preview_plugins.cpp:639
#10 0x60eb1da in EditorResourcePreviewGenerator::generate_from_path(String const&, Vector2 const&) const editor/editor_resource_preview.cpp:69
#11 0x60f2a27 in EditorResourcePreview::_generate_preview(Ref<ImageTexture>&, Ref<ImageTexture>&, EditorResourcePreview::QueueItem const&, String const&) editor/editor_resource_preview.cpp:167
#12 0x60f8ff4 in EditorResourcePreview::_thread() editor/editor_resource_preview.cpp:270
#13 0x60ef9a0 in EditorResourcePreview::_thread_func(void*) editor/editor_resource_preview.cpp:107
#14 0x4ec42fd in ThreadPosix::thread_callback(void*) drivers/unix/thread_posix.cpp:74
#15 0x7f4f6b4b2181 in start_thread /build/glibc-KRRWSm/glibc-2.29/nptl/pthread_create.c:486
#16 0x7f4f6a721b1e in __clone (/lib/x86_64-linux-gnu/libc.so.6+0x11db1e)
0x627000d790f5 is located 6133 bytes inside of 12092-byte region [0x627000d77900,0x627000d7a83c)
freed by thread T0 here:
#0 0x7f4f6bf2604f in __interceptor_free (/lib/x86_64-linux-gnu/libasan.so.5+0x10c04f)
#1 0xe94b899 in Memory::free_static(void*, bool) core/os/memory.cpp:181
#2 0xc865e01 in AudioServer::audio_data_free(void*) servers/audio_server.cpp:1165
#3 0x32f5cea in AudioStreamOGGVorbis::clear_data() modules/stb_vorbis/audio_stream_ogg_vorbis.cpp:160
#4 0x32f70ee in AudioStreamOGGVorbis::set_data(PoolVector<unsigned char> const&) modules/stb_vorbis/audio_stream_ogg_vorbis.cpp:210
#5 0x331d237 in MethodBind1<PoolVector<unsigned char> const&>::call(Object*, Variant const**, int, Variant::CallError&) core/method_bind.gen.inc:775
#6 0xe158110 in ClassDB::set_property(Object*, StringName const&, Variant const&, bool*) core/class_db.cpp:1031
#7 0xe3a8400 in Object::set(StringName const&, Variant const&, bool*) core/object.cpp:422
#8 0xe4c4c17 in Resource::reload_from_file() core/resource.cpp:145
#9 0x5c2f5f3 in EditorNode::_resources_reimported(Vector<String> const&) editor/editor_node.cpp:583
#10 0x58d76e8 in MethodBind1<Vector<String> const&>::call(Object*, Variant const**, int, Variant::CallError&) core/method_bind.gen.inc:775
#11 0xe3b8852 in Object::call(StringName const&, Variant const**, int, Variant::CallError&) core/object.cpp:921
#12 0xe3c1f4a in Object::emit_signal(StringName const&, Variant const**, int) core/object.cpp:1218
#13 0xe3c3e08 in Object::emit_signal(StringName const&, Variant const&, Variant const&, Variant const&, Variant const&, Variant const&) core/object.cpp:1274
#14 0x5a0181f in EditorFileSystem::reimport_files(Vector<String> const&) editor/editor_file_system.cpp:2001
#15 0x59be298 in EditorFileSystem::_update_scan_actions() editor/editor_file_system.cpp:590
#16 0x59d7a74 in EditorFileSystem::_notification(int) editor/editor_file_system.cpp:1163
#17 0x5a10479 in EditorFileSystem::_notificationv(int, bool) (/usr/bin/godots+0x5a10479)
#18 0xe3b8dbd in Object::notification(int, bool) core/object.cpp:931
#19 0x92e5617 in SceneTree::_notify_group_pause(StringName const&, int) scene/main/scene_tree.cpp:958
#20 0x92d62c2 in SceneTree::idle(float) scene/main/scene_tree.cpp:516
#21 0x156af00 in Main::iteration() main/main.cpp:1930
#22 0x146a00c in OS_X11::run() platform/x11/os_x11.cpp:3184
#23 0x13e6ba3 in main platform/x11/godot_x11.cpp:56
#24 0x7f4f6a62ab6a in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x26b6a)
previously allocated by thread T9 here:
#0 0x7f4f6bf26448 in malloc (/lib/x86_64-linux-gnu/libasan.so.5+0x10c448)
#1 0xe94a844 in Memory::alloc_static(unsigned long, bool) core/os/memory.cpp:85
#2 0xc863745 in AudioServer::audio_data_alloc(unsigned int, unsigned char const*) servers/audio_server.cpp:1140
#3 0x32f73a7 in AudioStreamOGGVorbis::set_data(PoolVector<unsigned char> const&) modules/stb_vorbis/audio_stream_ogg_vorbis.cpp:212
#4 0x331d237 in MethodBind1<PoolVector<unsigned char> const&>::call(Object*, Variant const**, int, Variant::CallError&) core/method_bind.gen.inc:775
#5 0xe158110 in ClassDB::set_property(Object*, StringName const&, Variant const&, bool*) core/class_db.cpp:1031
#6 0xe3a8400 in Object::set(StringName const&, Variant const&, bool*) core/object.cpp:422
#7 0xed743f3 in ResourceInteractiveLoaderBinary::poll() core/io/resource_format_binary.cpp:745
#8 0xeddffba in ResourceFormatLoader::load(String const&, String const&, Error*) core/io/resource_loader.cpp:197
#9 0xede5bda in ResourceLoader::_load(String const&, String const&, String const&, bool, Error*) core/io/resource_loader.cpp:270
#10 0xedca720 in ResourceFormatImporter::load(String const&, String const&, Error*) core/io/resource_importer.cpp:133
#11 0xede5bda in ResourceLoader::_load(String const&, String const&, String const&, bool, Error*) core/io/resource_loader.cpp:270
#12 0xede8980 in ResourceLoader::load(String const&, String const&, bool, Error*) core/io/resource_loader.cpp:396
#13 0x60eb044 in EditorResourcePreviewGenerator::generate_from_path(String const&, Vector2 const&) const editor/editor_resource_preview.cpp:66
#14 0x60f2a27 in EditorResourcePreview::_generate_preview(Ref<ImageTexture>&, Ref<ImageTexture>&, EditorResourcePreview::QueueItem const&, String const&) editor/editor_resource_preview.cpp:167
#15 0x60f8ff4 in EditorResourcePreview::_thread() editor/editor_resource_preview.cpp:270
#16 0x60ef9a0 in EditorResourcePreview::_thread_func(void*) editor/editor_resource_preview.cpp:107
#17 0x4ec42fd in ThreadPosix::thread_callback(void*) drivers/unix/thread_posix.cpp:74
#18 0x7f4f6b4b2181 in start_thread /build/glibc-KRRWSm/glibc-2.29/nptl/pthread_create.c:486
Thread T9 created by T0 here:
#0 0x7f4f6be54311 in pthread_create (/lib/x86_64-linux-gnu/libasan.so.5+0x3a311)
#1 0x4ec47f3 in ThreadPosix::create_func_posix(void (*)(void*), void*, Thread::Settings const&) drivers/unix/thread_posix.cpp:90
#2 0xe95ff67 in Thread::create(void (*)(void*), void*, Thread::Settings const&) core/os/thread.cpp:51
#3 0x6103067 in EditorResourcePreview::start() editor/editor_resource_preview.cpp:454
#4 0x5c2ff56 in EditorNode::_sources_changed(bool) editor/editor_node.cpp:599
#5 0x1e7b871 in MethodBind1<bool>::call(Object*, Variant const**, int, Variant::CallError&) core/method_bind.gen.inc:775
#6 0xe3b8852 in Object::call(StringName const&, Variant const**, int, Variant::CallError&) core/object.cpp:921
#7 0xe3c1f4a in Object::emit_signal(StringName const&, Variant const**, int) core/object.cpp:1218
#8 0xe3c3e08 in Object::emit_signal(StringName const&, Variant const&, Variant const&, Variant const&, Variant const&, Variant const&) core/object.cpp:1274
#9 0x59d823b in EditorFileSystem::_notification(int) editor/editor_file_system.cpp:1165
#10 0x5a10479 in EditorFileSystem::_notificationv(int, bool) (/usr/bin/godots+0x5a10479)
#11 0xe3b8dbd in Object::notification(int, bool) core/object.cpp:931
#12 0x92e5617 in SceneTree::_notify_group_pause(StringName const&, int) scene/main/scene_tree.cpp:958
#13 0x92d62c2 in SceneTree::idle(float) scene/main/scene_tree.cpp:516
#14 0x156af00 in Main::iteration() main/main.cpp:1930
#15 0x146a00c in OS_X11::run() platform/x11/os_x11.cpp:3184
#16 0x13e6ba3 in main platform/x11/godot_x11.cpp:56
#17 0x7f4f6a62ab6a in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x26b6a)
SUMMARY: AddressSanitizer: heap-use-after-free thirdparty/misc/stb_vorbis.c:1298 in get8
Shadow bytes around the buggy address:
0x0c4e801a71c0: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
0x0c4e801a71d0: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
0x0c4e801a71e0: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
0x0c4e801a71f0: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
0x0c4e801a7200: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
=>0x0c4e801a7210: fd fd fd fd fd fd fd fd fd fd fd fd fd fd[fd]fd
0x0c4e801a7220: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
0x0c4e801a7230: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
0x0c4e801a7240: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
0x0c4e801a7250: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
0x0c4e801a7260: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
Shadow byte legend (one shadow byte represents 8 application bytes):
Addressable: 00
Partially addressable: 01 02 03 04 05 06 07
Heap left redzone: fa
Freed heap region: fd
Stack left redzone: f1
Stack mid redzone: f2
Stack right redzone: f3
Stack after return: f5
Stack use after scope: f8
Global redzone: f9
Global init order: f6
Poisoned by user: f7
Container overflow: fc
Array cookie: ac
Intra object redzone: bb
ASan internal: fe
Left alloca redzone: ca
Right alloca redzone: cb
Shadow gap: cc
==9245==ABORTING
```
**Steps to reproduce:**

**Minimal reproduction project:**
[qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq.zip](https://github.com/godotengine/godot/files/3620830/qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq.zip)
| bug,topic:audio,crash | low | Critical |
494,577,351 | pytorch | How to get rid of zombie processes using torch.multiprocessing.Pool? | I am using torch.multiprocessing.Pool to speed up my NN in inference, like this:
import torch.multiprocessing as mp
mp = mp.get_context('forkserver')
def parallel_predict(predict_func, sequences, args):
predicted_cluster_ids = []
pool = mp.Pool(args.num_workers, maxtasksperchild=1)
out = pool.imap(
func=functools.partial(predict_func, args=args),
iterable=sequences,
chunksize=1)
for item in tqdm(out, total=len(sequences), ncols=85):
predicted_cluster_ids.append(item)
pool.close()
pool.terminate()
pool.join()
return predicted_cluster_ids
Note 1) I am using `imap` because I want to be able to show a progress bar with tqdm.
Note 2) I tried with both `forkserver` and spawn but no luck. I cannot use other methods because of how they interact (poorly) with CUDA.
Note 3) I am using `maxtasksperchild=1` and `chunksize=1` so for each sequence in sequences it spawns a new process.
Note 4) Adding or removing `pool.terminate()` and `pool.join()` makes no difference.
Note 5) `predict_func` is a method of a class I created. I could also pass the whole model to `parallel_predict` but it does not change anything.
Everything works fine except the fact that after a while I run out of memory on the CPU (while on the GPU everything works as expected). Using `htop` to monitor memory usage I notice that, for every process I spawn with pool I get a zombie that uses 0.4% of the memory. They don't get cleared, so they keep using space. Still, `parallel_predict` does return the correct result and the computation goes on. My script is structured in a way that id does validation multiple times so next time `parallel_predict` is called the zombies add up.
This is what I get in `htop`:

Usually, these zombies get cleared after ctrl-c but in some rare cases I need to killall.
Is there some way I can force the`Pool` to close them?
UPDATE:
I tried to kill the zombies using this:
def kill(pool):
import multiprocessing
import signal
# stop repopulating new child
pool._state = multiprocessing.pool.TERMINATE
pool._worker_handler._state = multiprocessing.pool.TERMINATE
for p in pool._pool:
os.kill(p.pid, signal.SIGKILL)
# .is_alive() will reap dead process
while any(p.is_alive() for p in pool._pool):
pass
pool.terminate()
But it does not work. It hangs in `pool.terminate()`
cc @pietern @mrshenli @pritamdamania87 @zhaojuanmao @satgera @rohan-varma @gqchen | module: dependency bug,oncall: distributed,module: multiprocessing,triaged | low | Minor |
494,591,199 | flutter | Add `saveValidated()` method to FormState |
## Use case
When you have a Form e.g. in a `TabView` where some of the Fields are valid but others are not you want to save only the validated fields when the user switches to another page, so that when he comes back you can fill the already valid fields with data.
Currently `save()` saves all Fields including the not validated.
## Proposal
Add a method
`FormState.saveValidFields()`
That will call the `save` method of all valid fields. | a: text input,c: new feature,framework,c: proposal,P3,team-framework,triaged-framework | low | Major |
494,626,327 | rust | Incorrect compiler hint for complicated type handler | I was trying to implement custom macro parser but fall into strange issue.
Having following code
```rust
use proc_macro2::TokenStream;
use quote::quote;
use syn::parse::{Parse, ParseStream, Peek};
use syn::token::Token;
#[derive(Debug)]
struct ParseType {
pub tokens: TokenStream,
}
mod custom {
syn::custom_punctuation!(Arrow, ==>);
}
fn parse_until<T: Token>(
input: ParseStream,
ending_tokens: &[&impl Peek<Token = T>],
) -> syn::Result<TokenStream> {
let mut tokens = TokenStream::new();
while !input.is_empty() && !ending_tokens.into_iter().any(|token| input.peek(token)) {
let next: proc_macro2::TokenTree = input.parse()?;
tokens.extend(Some(next));
}
Ok(tokens)
}
impl Parse for ParseType {
fn parse(input: ParseStream) -> syn::Result<Self> {
Ok(ParseType {
tokens: parse_until(input, &[&custom::Arrow])?,
})
}
}
fn main() {
let result: syn::Result<ParseType> =
syn::parse2(quote! { { Ok::<usize, usize>(1) } ==> to the moon });
println!("Parsed: {:?}", result.unwrap());
}
```
([Playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=2c82d10c7efb412abe2400793eb510e6))
I got an error
```
error[E0277]: expected a `std::ops::Fn<(syn::lookahead::TokenMarker,)>` closure, found `impl Peek<Token = T>`
--> src/main.rs:20:77
|
20 | while !input.is_empty() && !ending_tokens.into_iter().any(|token| input.peek(token)) {
| ^^^^ expected an `Fn<(syn::lookahead::TokenMarker,)>` closure, found `impl Peek<Token = T>`
|
= help: the trait `std::ops::Fn<(syn::lookahead::TokenMarker,)>` is not implemented for `impl Peek<Token = T>`
= help: consider adding a `where impl Peek<Token = T>: std::ops::Fn<(syn::lookahead::TokenMarker,)>` bound
= note: required because of the requirements on the impl of `std::ops::FnOnce<(syn::lookahead::TokenMarker,)>` for `&impl Peek<Token = T>`
= note: required because of the requirements on the impl of `syn::lookahead::Peek` for `&&impl Peek<Token = T>`
```
So I added ```where impl Peek<Token = T>: std::ops::Fn<(syn::lookahead::TokenMarker,)>``` to the code and then situation became worse:
```
error[E0603]: module `lookahead` is private
--> src/main.rs:18:78
|
18 | ) -> syn::Result<TokenStream> where impl Peek<Token = T>: std::ops::Fn<(syn::lookahead::TokenMarker,)> {
| ^^^^^^^^^
error[E0562]: `impl Trait` not allowed outside of function and inherent method return types
--> src/main.rs:18:37
|
18 | ) -> syn::Result<TokenStream> where impl Peek<Token = T>: std::ops::Fn<(syn::lookahead::TokenMarker,)> {
| ^^^^^^^^^^^^^^^^^^^^
error[E0658]: the precise format of `Fn`-family traits' type parameters is subject to change. Use parenthetical notation (Fn(Foo, Bar) -> Baz) instead
--> src/main.rs:18:59
|
18 | ) -> syn::Result<TokenStream> where impl Peek<Token = T>: std::ops::Fn<(syn::lookahead::TokenMarker,)> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: for more information, see https://github.com/rust-lang/rust/issues/29625
```
For the first of them it's ok [for me at least] that compiler can't understand which module is private, however the second and the third make me very confused, because this's the code generated by compiler itself. | T-compiler,A-impl-trait,C-bug,A-suggestion-diagnostics,D-invalid-suggestion | low | Critical |
494,653,796 | flutter | Add `bool validateOnLostFocus` to the `FormField` and `Form` class | ## Use case
`Forms` and `FormField`have an `autoValidate` property. But if set to true it will validate on every keystroke/change which is annoying if you start typing e.g. an email address and with the first press the message `Not a valid email address is displayed`
It would be much more user friendly if an autoValidate option existed that waits with validation till the user(focus) leaves the field when he has finished editing.
## Proposal
add a new property
`bool validateOnLostFocus`
to the `Form` and `FormField` classes that allows this functionality | a: text input,c: new feature,framework,c: proposal,P3,team-framework,triaged-framework | medium | Critical |
494,668,533 | rust | Lifetime bounds in auto trait impls prevent trait from being implemented on generators | ```rust
use std::collections::{BTreeMap, HashMap};
use std::sync::Arc;
fn needs_send<T: Send>(_val: T) {}
async fn async_fn_a(_num: u32) {}
async fn async_fn_b(map: Arc<BTreeMap<u32, &'static u32>>) {
for (_i, v) in &*map {
async_fn_a(**v).await;
}
}
async fn async_fn_c(map: Arc<HashMap<u32, &'static u32>>) {
for (_i, v) in &*map {
async_fn_a(**v).await;
}
}
fn main() {
// this works...
let map: Arc<HashMap<u32, &'static u32>> = Arc::new(HashMap::new());
needs_send(async_fn_c(map.clone()));
// but this doesn't
let map: Arc<BTreeMap<u32, &'static u32>> = Arc::new(BTreeMap::new());
needs_send(async_fn_b(map.clone()));
}
```
[(playground)](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=12ee6a660148c7ba94503fc301a443a0)
```
error: implementation of `std::marker::Send` is not general enough
--> src/main.rs:24:5
|
24 | needs_send(async_fn_b(map.clone()));
| ^^^^^^^^^^
|
= note: `std::marker::Send` would have to be implemented for the type `alloc::collections::btree::node::NodeRef<alloc::collections::btree::node::marker::Immut<'0>, u32, &'1 u32, alloc::collections::btree::node::marker::Leaf>`, for any two lifetimes `'0` and `'1`
= note: but `std::marker::Send` is actually implemented for the type `alloc::collections::btree::node::NodeRef<alloc::collections::btree::node::marker::Immut<'2>, u32, &u32, alloc::collections::btree::node::marker::Leaf>`, for some specific lifetime `'2`
```
<!-- TRIAGEBOT_START -->
<!-- TRIAGEBOT_ASSIGN_START -->
<!-- TRIAGEBOT_ASSIGN_DATA_START$${"user":"csmoe"}$$TRIAGEBOT_ASSIGN_DATA_END -->
<!-- TRIAGEBOT_ASSIGN_END -->
<!-- TRIAGEBOT_END --> | A-trait-system,P-medium,T-compiler,C-bug,A-coroutines,A-async-await,AsyncAwait-Triaged,T-types | medium | Critical |
494,711,747 | create-react-app | Conflicting jest version with tsdx | ### Is your proposal related to a problem?
tsdx is a package that bills itself as being the react-scripts equivalent for typescript package development. When using tsdx and react-scripts within separate packages in a monorepo, both tsdx and react-scripts depend on jest, and it's possible for versions to be mismatched. react-scripts will actually warn and fail if you have multiple versions of jest installed.
. It's possible currently to ensure that react-scripts ("24.8.0") and tsdx ("^24.8.0") resolve to the same version of jest by manually editing my yarn.lock file so only 24.8.0 is installed. This seems like it could be a cause of future headaches though when upgrading react-scripts or tsdx if the latest released react-scripts' jest version lies outside the range allowed by tsdx.
### Describe the solution you'd like
Perhaps unpinning jest would be reasonable? Then the only times tsdx and react-scripts are likely to conflict on jest versions would be when a major version of jest releases, which is pretty reasonable.
### Describe alternatives you've considered
I guess if it were possible for react-scripts and tsdx to use different versions of jest (perhaps a way to override the warning), that would work, but I'm guessing that's either not easy to do or generally undesirable (hence the warning react-scripts prints to explicitly prohibit multiple versions) In a multiple package setup, being on a single version of jest seems like a better idea anyways.
| issue: proposal,needs triage | low | Minor |
494,714,559 | flutter | Spellcheck on Flutter Web | Supporting spellcheck for text editing in Flutter Web Engine
| a: text input,c: new feature,framework,engine,customer: crowd,platform-web,P2,customer: chilli,team-web,triaged-web | low | Critical |
494,769,621 | TypeScript | Support Intellisense for string/number literals in a widened union | ## Search Terms
autocomplete union wide
## Suggestion
In both https://github.com/microsoft/TypeScript/issues/28743 and https://github.com/microsoft/TypeScript/issues/28743 they were correctly closed for being correctly widened to a string.
## Use Cases
I'd like to pitch that this is useful only from the IDE experience, and that's purely where the value comes in from. The widening to a string makes sense, however allowing this lets you declare an API where you would like to allow any input, but there are preferred options.
## Examples
```ts repro
// @errors: 2345 2345
type ErrorStatus = 'not_found' | 'failed' | 'parse_error'
declare function fail(status: ErrorStatus): any
fail("not")
// ^|
declare function failString(status: ErrorStatus | string): any
failString("not")
// ^|
```
Would offer "not_found", "failed", "parse_error" in the completion list.
## Checklist
My suggestion meets these guidelines:
* [x] This wouldn't be a breaking change in existing TypeScript/JavaScript code
* [x] This wouldn't change the runtime behavior of existing JavaScript code
* [x] This could be implemented without emitting different JS based on the types of the expressions
* [x] This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, etc.)
* [x] This feature would agree with the rest of [TypeScript's Design Goals](https://github.com/Microsoft/TypeScript/wiki/TypeScript-Design-Goals).
| Suggestion,Experience Enhancement,Has Repro | medium | Critical |
494,775,446 | pytorch | torch.tensor / torch.as_tensor not working with list of tensors |
## 🐛 Bug
```py
│In [6]: import torch
In [7]: torch.as_tensor([torch.randn(2), torch.randn(2)])
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-7-d2efbad662f7> in <module>
----> 1 torch.as_tensor([torch.randn(2), torch.randn(2)])
ValueError: only one element tensors can be converted to Python scalars
```
```
Collecting environment information...
PyTorch version: 1.3.0a0+d7a1152
Is debug build: No
CUDA used to build PyTorch: 10.0.130
OS: Ubuntu 18.04.3 LTS
GCC version: (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0
CMake version: version 3.14.0
Python version: 3.7
Is CUDA available: Yes
CUDA runtime version: 10.0.130
GPU models and configuration:
GPU 0: TITAN Xp
GPU 1: TITAN Xp
Nvidia driver version: 415.27
cuDNN version: Could not collect
Versions of relevant libraries:
[pip3] numpy==1.16.4
[pip3] torch==1.3.0a0+d7a1152
[pip3] torchfile==0.1.0
[pip3] torchreparam==0.0.1
[pip3] torchvision==0.2.1
[conda] blas 1.0 mkl defaults
[conda] magma-cuda101 2.5.1 1 pytorch
[conda] mkl 2019.4 243 defaults
[conda] mkl-include 2019.4 243 defaults
[conda] mkl-service 2.0.2 py37h7b6447c_0 defaults
[conda] mkl_fft 1.0.12 py37ha843d7b_0 defaults
[conda] mkl_random 1.0.2 py37hd81dba3_0 defaults
[conda] torch 1.3.0a0+d7a1152 dev_0 <develop>
[conda] torchfile 0.1.0 pypi_0 pypi
```
cc @mruberry @rgommers @ezyang @gchanan @zou3519 | module: error checking,triaged,module: numpy,module: tensor creation | low | Critical |
494,785,321 | rust | Rustdoc: condense "auto traits" section for types? | At the moment we have 5 auto traits documented for each type, and there will likely more in the future (e.g. from @oli-obk's consteval talk: `ConstSafe`, `ConstRefSafe`).
For the majority of types where all auto traits are always either impl or !impl, I propose to condense the section, e.g. like in this mockup ([original page here](https://doc.rust-lang.org/std/thread/struct.Thread.html#synthetic-implementations)):

| T-rustdoc,C-enhancement,A-trait-system,A-rustdoc-ui,A-auto-traits | low | Minor |
494,790,027 | flutter | ImageProvider can't be resized with ImageConfiguration | I am using the [Palette Generator](https://github.com/flutter/packages/tree/master/packages/palette_generator) and found a really weird bug today. It wasn't working correctly (check image below). If I selected the dark corner, it would get orange. It isn't resizing the image.
<img src="https://user-images.githubusercontent.com/351125/65069362-eb57d300-d960-11e9-8737-ab78baae98e2.png" width="300" />
After a lot of debugging, I discovered, to my surprise, that the bug **isn't in** `PaletteGenerator.fromImageProvider` but here:
```dart
final ImageStream stream = imageProvider.resolve(
ImageConfiguration(size: size, devicePixelRatio: 1.0),
);
```
Size is Size(300.0, 199.7). Output is 640x426. This is wrong!

I made a quick testing code:
```dart
PaletteGenerator.fromImage(
await _getImage(load.imageProvider, load.size),
region: region,
maximumColorCount: 30,
);
```
```dart
Future<ui.Image> _getImage(ImageProvider imageProvider, Size size) {
Completer<ui.Image> completer = Completer<ui.Image>();
imageProvider.resolve(
ImageConfiguration(size: size)
).addListener(ImageStreamListener((ImageInfo info, bool _) {
return completer.complete(info.image);
}));
return completer.future;
}
```
To solve the Palette Generator bug, I did:
```dart
var scaleW = image.width / size.width;
var scaleH = image.height / size.height;
var newRegion = Rect.fromLTRB(load.region.left * scaleW, load.region.top * scaleH, load.region.right * scaleW, load.region.bottom * scaleH);
```
Basically, since you can't resize the image, let's resize the selectable region. I do suggest, however, that you fix ImageConfiguration.
```
➜ flutter doctor -v
[✓] Flutter (Channel dev, v1.10.2, on Mac OS X 10.14.6 18G95, locale en-BR)
• Flutter version 1.10.2 at /usr/local/Cellar/flutter/dev
• Framework revision f5733f7a62 (6 days ago), 2019-09-11 21:03:42 -0700
• Engine revision 7ea9884ab0
• Dart version 2.5.0 (build 2.5.0-dev.4.0 be66176534)
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
• Android SDK at /Users/bernardoferrari/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling
support)
• Platform android-29, build-tools 29.0.2
• Java binary at: /Users/bernardoferrari/Library/Application
Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/191.5791312/Android
Studio 3.5 Preview.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build
1.8.0_202-release-1483-b49-5587405)
• All Android licenses accepted.
[✓] Xcode - develop for iOS and macOS (Xcode 10.3)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 10.3, Build version 10G8
• CocoaPods version 1.7.3
[✓] Android Studio (version 3.5)
• Android Studio at /Users/bernardoferrari/Library/Application
Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/191.5791312/Android
Studio 3.5 Preview.app/Contents
• Flutter plugin version 39.0.3
• Dart plugin version 191.8423
• Java version OpenJDK Runtime Environment (build
1.8.0_202-release-1483-b49-5587405)
[✓] Android Studio
• Android Studio at /Users/bernardoferrari/Library/Application
Support/JetBrains/Toolbox/apps/AndroidStudio/ch-1/192.5863777/Android
Studio 3.6 Preview.app/Contents
• Flutter plugin version 39.0.4
• Dart plugin version 192.6527
• Java version OpenJDK Runtime Environment (build
1.8.0_212-release-1586-b4-5784211)
[✓] IntelliJ IDEA Ultimate Edition (version 2019.2.2)
• IntelliJ at /Users/bernardoferrari/Applications/JetBrains Toolbox/IntelliJ
IDEA Ultimate.app
• Flutter plugin version 38.2.4
• Dart plugin version 192.6459
[✓] VS Code (version 1.38.1)
• VS Code at /Applications/Visual Studio Code.app/Contents
• Flutter extension version 3.4.1
[✓] Connected device (1 available)
• Android SDK built for x86 64 • emulator-5554 • android-x64 • Android 10
(API 29) (emulator)
• No issues found!
``` | a: images,package,p: palette_generator,team-ecosystem,P3,triaged-ecosystem | low | Critical |
494,793,489 | godot | [Bullet] move_and_slide() causes jitter when colliding with corners between walls | **Godot version:**
3.1.1.stable.official
**OS/device including version:**
Linux / Fedora 30
**Issue description:**
move_and_slide() can cause a lot of jitter when KinematicBody collides with corners, or anything actually. (sometimes even with simple 90° corners)
You can observe this in pretty much every single project that uses move_and_slide(), including the FPS Tutorial from Godot documentation.
**Notes:**
- Choosing GodotPhysics instead of Bullet may reduce the jitter, but it's still there and visible.
- I haven't tested other move* functions.
**Steps to reproduce:**
- Use move_and_slide().
- Collide with some corners.
**Minimal reproduction project:**
[godot-fps-master.zip](https://github.com/godotengine/godot/files/3622965/godot-fps-master.zip)
- https://www.youtube.com/watch?v=d8374DaCt30 (video of the attached project)
- https://www.youtube.com/watch?v=IINx06mYezA (another example that uses code from the FPS Tutorial) (Ignore the flashes of color) | bug,confirmed,topic:physics,topic:3d | medium | Critical |
494,799,667 | go | x/build/cmd/coordinator: improve error message when build fails due to a module not being tidy (and causing failed requests to sum.golang.org) | The fix to #32528 was implemented by finding nested modules, and then invoking `go test` once for each one, in sequence.
~~This isn't compatible with `GO_DISABLE_OUTBOUND_NETWORK=1` being set and converted to a permanent outbound network restriction as soon as the first set of tests run, because the second `go test` invocation may need to talk to the module mirror and/or checksum database to fetch/verify additional modules.~~
**Edit:** More accurately, the network gets restricted early on, before any of the tests run. The network restriction only affects the default checksum database at https://sum.golang.org. The module proxy is not affected because it's [treated specially](https://github.com/golang/build/blob/da876aaec3965bc391792c76f5ccca997637a4ee/cmd/coordinator/coordinator.go#L2705-L2714). See https://github.com/golang/go/issues/34356#issuecomment-532373912 for more details.
/cc @bradfitz @bcmills | Testing,Builders,NeedsInvestigation | low | Critical |
494,917,244 | pytorch | DistAutogradContext should be cleaned up in case of node failures. | In distributed autograd, there is a single node that initializes a new distributed autograd context and passes that over to other nodes as part of the backward pass. Each node creates an autograd context locally to store relevant information. Now, if the original node fails for some reason, the autograd context on the other nodes are not cleaned up. We should have a mechanism where we cleanup autograd contexts which have been around for a while and haven't been released (for example: 2x the autograd timeout).
cc @ezyang @gchanan @zou3519 @SsnL @albanD @gqchen @pietern @mrshenli @pritamdamania87 @zhaojuanmao @satgera @aazzolini @rohan-varma @xush6528 | module: autograd,module: memory usage,triaged,enhancement,module: rpc | low | Critical |
494,944,543 | go | x/build/cmd/gopherbot: opt-out changes from Gerrit `approvers` list from automatically adding reviewers | I'd rather gopherbot stopped automatically adding reviewers to my CLs.
I appreciate the intent, and I think it's a great idea for people who are new to contributing to Go. But I'm comfortable using Gerrit and finding reviewers, and I don't want my reviewers confused because Gopherbot asked them to look at my CLs out of order. | Builders,NeedsInvestigation | medium | Major |
494,945,038 | flutter | video_player add media lock screen | <!-- 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 have found a bug or if our documentation doesn't have an answer
to what you're looking for, then fill our the template below. Please read
our guide to filing a bug first: https://flutter.dev/docs/resources/bug-reports
-->
## Use case
<!--
Please tell us the problem you are running into that led to you wanting
a new feature.
Is your feature request related to a problem? Please give a clear and
concise description of what the problem is.
Describe alternative solutions you've considered. Is there a package
on pub.dev/flutter that already solves this?
-->
## Proposal
- Add the ability to play audio files in the background when user closes app.
- Add the ability to show the media player controls on the lock screen while media plays on the background. | c: new feature,p: video_player,package,c: proposal,team-ecosystem,P3,triaged-ecosystem | low | Critical |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.