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 |
---|---|---|---|---|---|---|
632,241,867 |
pytorch
|
Switching from CPU build to CUDA build in conda environments is a bit tricky
|
## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
Currently, it is a bit tricky to switch from CPU build to CUDA build. Users will sometimes forget to specify the cudatoolkit requirement and find out that they installed the CPU build. Then they will attempt to follow the steps on pytorch.org, that is `conda install -c pytorch cudatoolkit=x.x pytorch`. But actually that is not enough because `cpuonly` is still there.
## To Reproduce
Steps to reproduce the behavior:
1. `conda install -c pytorch cpuonly pytorch`
2. `conda install -c pytorch cudatoolkit=x.x pytorch`
<!-- If you have a code sample, error messages, stack traces, please provide it here as well -->
## Expected behavior
Better user message.
<!-- A clear and concise description of what you expected to happen. -->
cc @jlin27
|
module: docs,triaged
|
low
|
Critical
|
632,311,625 |
opencv
|
cudev false dependency in opencv dnn (with OPENCV_DNN_CUDA)
|
##### System information (version)
- OpenCV => master
##### Detailed description
The cudev module is a false dependency for the CUDA backend in the DNN module. The `WITH_CUDA` option requires cudev. Maybe there is a way to avoid requiring cudev (and hence opencv_contrib) if only CUDA support in OpenCV DNN is required?
##### Issue submission checklist
- [x] I report the issue, it's not a question
<!--
OpenCV team works with answers.opencv.org, Stack Overflow and other communities
to discuss problems. Tickets with question without real issue statement will be
closed.
-->
- [x] I checked the problem with documentation, FAQ, open issues,
answers.opencv.org, Stack Overflow, etc and have not found solution
<!--
Places to check:
* OpenCV documentation: https://docs.opencv.org
* FAQ page: https://github.com/opencv/opencv/wiki/FAQ
* OpenCV forum: https://answers.opencv.org
* OpenCV issue tracker: https://github.com/opencv/opencv/issues?q=is%3Aissue
* Stack Overflow branch: https://stackoverflow.com/questions/tagged/opencv
-->
- [x] I updated to latest OpenCV version and the issue is still there
<!--
master branch for OpenCV 4.x and 3.4 branch for OpenCV 3.x releases.
OpenCV team supports only latest release for each branch.
The ticket is closed, if the problem is not reproduced with modern version.
-->
- [ ] There is reproducer code and related data files: videos, images, onnx, etc
<!--
The best reproducer -- test case for OpenCV that we can add to the library.
Recommendations for media files and binary files:
* Try to reproduce the issue with images and videos in opencv_extra repository
to reduce attachment size
* Use PNG for images, if you report some CV related bug, but not image reader
issue
* Attach the image as archite to the ticket, if you report some reader issue.
Image hosting services compress images and it breaks the repro code.
* Provide ONNX file for some public model or ONNX file with with random weights,
if you report ONNX parsing or handling issue. Architecture details diagram
from netron tool can be very useful too. See https://lutzroeder.github.io/netron/
-->
|
category: build/install,category: gpu/cuda (contrib)
|
low
|
Critical
|
632,317,655 |
flutter
|
[video_player] Can't Change HSL Video Quilty
|
**“HLS”, “MPEG-DASH” Adaptive Bitrate Streaming**
Quality Change Features Need.
|
c: new feature,p: video_player,package,team-ecosystem,P3,triaged-ecosystem
|
medium
|
Critical
|
632,342,364 |
pytorch
|
All keys matched successfully missing when loading state dict on optimizers
|
## 🐛 Bug
<!-- A clear and concise description of what the bug is. -->
## To Reproduce
Steps to reproduce the behavior:
1. Create a model
2. Save model
3. load model state dictionary
4. Message <All keys matched successfully> appears
5. Create optimizer
6. Save optimizer
7. load optimizer state dictionary
8. The message is missing
<!-- If you have a code sample, error messages, stack traces, please provide it here as well -->
```
import torch
import torchvision.models as models
alexnet = models.alexnet()
torch.save(alexnet.state_dict(), './alexnet.pth')
alexnet.load_state_dict(torch.load('./alexnet.pth'))
# <All keys matched successfully>
adam = torch.optim.Adam(alexnet.parameters())
torch.save(adam.state_dict(), './adam.pth')
adam.load_state_dict(torch.load('./adam.pth'))
```
## Expected behavior
The message <All keys matched successfully> should be printed when optimizer state is loaded
<!-- A clear and concise description of what you expected to happen. -->
It would be nice if load_state_dict is consistent for both models and optimizers
## Environment
Collecting environment information...
PyTorch version: 1.5.0+cu101
Is debug build: No
CUDA used to build PyTorch: 10.1
OS: Ubuntu 20.04 LTS
GCC version: (Ubuntu 8.4.0-3ubuntu2) 8.4.0
CMake version: version 3.17.2
Python version: 3.8
Is CUDA available: Yes
CUDA runtime version: 10.1.105
GPU models and configuration: GPU 0: GeForce RTX 2070
Nvidia driver version: 440.64
cuDNN version: /usr/lib/x86_64-linux-gnu/libcudnn.so.7.6.4
Versions of relevant libraries:
[pip3] numpy==1.18.3
[pip3] torch==1.5.0+cu101
[pip3] torchvision==0.6.0+cu101
[conda] Could not collect
## Additional context
<!-- Add any other context about the problem here. -->
cc @vincentqb
|
module: optimizer,triaged
|
low
|
Critical
|
632,354,698 |
ant-design
|
[HELP_WANTED] common chunk for ant.design
|
目前网站打包策略是 all in one 的,每次更新网站后,用户都要重新下载所有文件,需要把不常变的部分提出来。
|
⚙️ Workflow,help wanted,Inactive,good first issue
|
low
|
Major
|
632,386,977 |
go
|
cmd/go: 'go fmt ./...' does not see files with tags in subpackages
|
<!--
Please answer these questions before submitting your issue. Thanks!
For questions please use one of our forums: https://github.com/golang/go/wiki/Questions
-->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.14.4 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>
$ go env
GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/user/.cache/go-build"
GOENV="/home/user/.config/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOINSECURE=""
GONOPROXY=""
GONOSUMDB=""
GOOS="linux"
GOPATH="/home/user"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/home/user/.goroot"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/home/user/.goroot/pkg/tool/linux_amd64"
GCCGO="gccgo"
AR="ar"
CC="gcc"
CXX="g++"
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 -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build876391637=/tmp/go-build -gno-record-gcc-switches"
</pre></details>
### What did you do?
I have a subpackage in my repo in which all files have a tag. I run `go fmt ./...` in the top directory of my repo.
### What did you expect to see?
I expect all Go files in my repo to be formatted including those with a tag.
### What did you see instead?
Files in the subpackage were not formatted!
Here I proveded an example repo where everyone can reproduce the bug:
```
$ git clone https://github.com/starius/gofmt-bug
$ cd gofmt-bug
$ go fmt ./...
$ go fmt ./bar
bar/bar.go
```
If there are files without tag in the same package (./bar in my case), `go fmt ./...` sees all the files and works as expected.
|
NeedsFix
|
low
|
Critical
|
632,401,161 |
opencv
|
Cannot open include file: 'fibersapi.h'
|
##### System information (version)
- OpenCV => 4.3
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 2019
##### Detailed description
When building with "v140_xp", "fibersapi.h" cannot be opened ("modules/core/src/system.cpp").
##### Steps to reproduce
```PowerShell
cmake .. -G "Visual Studio 16 2019" -T v140_xp
cmake --build . --config Release
```
```PowerShell
fatal error C1083: Cannot open include file. 'fibersapi.h':No such file or directory
```
|
priority: low,category: build/install,platform: win32
|
low
|
Critical
|
632,440,156 |
nvm
|
/usr/bin/env: ‘node’: No such file or directory on Raspbian 64-bit
|
<!-- Thank you for being interested in nvm! Please help us by filling out the following form if you‘re having trouble. If you have a feature request, or some other question, please feel free to clear out the form. Thanks! -->
#### Operating system and version:
Operating System: Raspbian GNU/Linux 10 (buster)
Kernel: Linux 4.19.118-v8+
Architecture: arm64
#### `nvm debug` output:
<details>
<!-- do not delete the following blank line -->
```sh
$SHELL: /bin/bash
$SHLVL: 1
${HOME}: /home/niels
${NVM_DIR}: '${HOME}/.nvm'
${PATH}: ${NVM_DIR}/versions/node/v12.18.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/games:/usr/games
$PREFIX: ''
${NPM_CONFIG_PREFIX}: ''
$NVM_NODEJS_ORG_MIRROR: ''
$NVM_IOJS_ORG_MIRROR: ''
shell version: 'GNU bash, version 5.0.3(1)-release (arm-unknown-linux-gnueabihf)'
uname -a: 'Linux 4.19.118-v8+ #1311 SMP PREEMPT Mon Apr 27 14:32:38 BST 2020 aarch64 GNU/Linux'
OS version: Raspbian GNU/Linux 10
curl: /usr/bin/curl, curl 7.64.0 (arm-unknown-linux-gnueabihf) libcurl/7.64.0 OpenSSL/1.1.1d zlib/1.2.11 libidn2/2.0.5 libpsl/0.20.2 (+libidn2/2.0.5) libssh2/1.8.0 nghttp2/1.36.0 librtmp/2.3
wget: /usr/bin/wget, GNU Wget 1.20.1 built on linux-gnueabihf.
git: not found
grep: /bin/grep (grep --color=auto), grep (GNU grep) 3.3
awk: /usr/bin/awk, awk: not an option: --version
sed: /bin/sed, sed (GNU sed) 4.7
cut: /usr/bin/cut, cut (GNU coreutils) 8.30
basename: /usr/bin/basename, basename (GNU coreutils) 8.30
rm: /bin/rm, rm (GNU coreutils) 8.30
mkdir: /bin/mkdir, mkdir (GNU coreutils) 8.30
xargs: /usr/bin/xargs, xargs (GNU findutils) 4.6.0.225-235f
nvm current:
which node: ${NVM_DIR}/versions/node/v12.18.0/bin/node
which iojs:
which npm: ${NVM_DIR}/versions/node/v12.18.0/bin/npm
npm config get prefix: /usr/bin/env: ‘node’: No such file or directory
npm root -g: /usr/bin/env: ‘node’: No such file or directory
```
</details>
#### `nvm ls` output:
<details>
<!-- do not delete the following blank line -->
```sh
v12.18.0
default -> node (-> v12.18.0)
node -> stable (-> v12.18.0) (default)
stable -> 12.18 (-> v12.18.0) (default)
iojs -> N/A (default)
unstable -> N/A (default)
lts/* -> lts/erbium (-> v12.18.0)
lts/argon -> v4.9.1 (-> N/A)
lts/boron -> v6.17.1 (-> N/A)
lts/carbon -> v8.17.0 (-> N/A)
lts/dubnium -> v10.21.0 (-> N/A)
lts/erbium -> v12.18.0
```
</details>
#### How did you install `nvm`?
<!-- (e.g. install script in readme, Homebrew) -->
```sh
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
```
#### What steps did you perform?
Clean install of Raspbian Lite with arm_64bit=1 added to config.txt ([info](https://www.raspberrypi.org/documentation/configuration/config-txt/boot.md)).
When disabling arm_64bit there are no errors btw.
#### What happened?
Error after installing --lts or any other version with **nvm install --lts**.
```sh
/usr/bin/env: ‘node’: No such file or directory
nvm is not compatible with the npm config "prefix" option: currently set to ""
Run `nvm use --delete-prefix v12.18.0` to unset it.
```
#### What did you expect to happen?
No error and node and npm command available in shell. After running **nvm use --delete-prefix v12.18.0** and using **node** command:
```sh
-bash: /home/niels/.nvm/versions/node/v12.18.0/bin/node: No such file or directory
```
#### Is there anything in any of your profile files that modifies the `PATH`?
<!-- (e.g. `.bashrc`, `.bash_profile`, `.zshrc`, etc) -->
No
|
OS: Raspberry Pi,installing node,needs followup
|
low
|
Critical
|
632,494,778 |
opencv
|
Discussion of "Change OpenCV License to Apache 2" Evolution Proposal
|
Discussion thread for [OE 32. Change OpenCV License to Apache 2](https://github.com/opencv/opencv/wiki/OE-32.--Change-OpenCV-License-to-Apache-2).
Please, put your comments, concerns or express your excitement here
|
evolution
|
low
|
Major
|
632,527,967 |
flutter
|
Explicitly expose "enabled" property in RaisedButton, MaterialButton and related classes
|
Problem:
1. It's my personal interpretation that Flutter has a principle of **explicit configuration over convention** (vs Ruby on Rails that is convention over configuration). Configuration makes for more verbose work products but there is less "magic" you have to figure out.
1. Currently for `RaisedButton` and clan, there's no way to functionally set apart enabled state because it relies on callbacks themselves being null as a convention.
1. My personal experience is that past frameworks over the last 25 years or so, I've used have consistently made enable/disable toggle an intrinsic, explicitly-declared feature of a button. I'd like to align Flutter with this prevailing convention.
Example code as of Flutter 1.17: this is how I understand you need to handle active/inactive state. Note that the very presence of the onPressed callback itself needs to be null, making it impossible to refactor business rules elsewhere. Specifically the ternary operator is unavoidable, AFAICT:
```
bool _shouldEnable() => (fState == FState.pageUrlReady);
onPressed:
_shouldEnable() ? () {_handleButtonPress()} : null,
```
## Proposal
1. A new optional constructor parameter with backwards compatibility called `enable`: it specifies whether to render the widget enabled or disabled
1. change to semantics of `onPressed` and `onLongPress` that also respects existing code for some deprecation window.
```
/// NEW functionality: if enable named parameter is present,
/// use that to determine whether the button should be enabled or not
...
onPressed: () {_handleButtonPress();},
enable: () => _shouldEnable(),
…
/// Legacy support example: if enable is NOT present, function as before
///
onPressed:
_shouldEnable() ? () {_handleButtonPress()} : null,
```
### Semantics
1. Backward compatibility: null behaviour still happens so this does not break any existing code. I would like to think though that there's a deprecation window for fully moving to explicit enable feature, meaning code that assumes that having those handlers as null would need to instead set the enable flag.
1. Definition of the `bool get enabled` method changed as below
### Questions
* Booleans have a habit of turning into enums. Should this be instead `presentationState` instead of enable or something, being (enabled, disabled, default) etc?
* If there's no callback set do we also need to set a debug-level warning that the callback is null for an enabled button? See tests
* How do we best warn people of this new feature and encourage them to rely on `enabled` rather than implicitly via the null checks?
### Other parts of Flutter affected
* Impact of architecture across other elements: This "disable if null" appears to be consistently implemented across all / most UI widgets (see [onChanged for checkboxes](https://stackoverflow.com/questions/52174090/how-to-disable-checkbox-flutter) for example), so I think this semantic change should be done in a consistent manner across all widgets. It may well be better to deliver `RaisedButton.enabled` as an experiment first and see how people find it.
* A bunch of downstream constructors may need to support this additional parameter e.g. outline_button, icon_button, flat_button, dropdown_button etc.
## Preliminary analysis
Even adding as an optional attribute affects the surface area of a good chunk of classes and their corresponding unit tests.
`RaisedButton` delegates most of its functionality to `MaterialButton`. Digging into the code:
```
/// code as of Flutter 1.17: enabled is a calculated property of MaterialButton.
bool get enabled => onPressed != null || onLongPress != null;
```
In this proposal, this becomes something like the code below:
* Existing semantics are preserved with enable=true by default
* if user explicitly passes `enabled:false` and there's a non-null function for handling `onPress` or `onLongPress`, it will be disabled (currently not possible).
```
final bool _enabled;
...
bool get enabled => (onPressed == null && onLongPress == null) ? false : _enabled;
```
### Constructor
enabled defaults to true.
```
// constructor change
const RaisedButton({
…
@required VoidCallback onPressed,
VoidCallback onLongPress,
bool enabled=true,
…
```
### Tests
1. onPress and onLongPress null AND enabled=false -> ok --- new functionality
1. onPress or onLongPress not null and enabled=false --> ok -- new functionality
1. onPress and onLongPress null AND enabled=true -> ok, no change from current behaviour (will actually be disabled)
1. onPress or onLongPress not null and enabled=true --> ok, no change from current behaviour
Point (3) in the transition will be confusing, but these classes are immutable so it's unclear an easier way to make the transition to no future reliance on the callback presence / absence as a decider for the button active state.
|
framework,f: material design,c: proposal,team-design,triaged-design
|
low
|
Critical
|
632,570,355 |
PowerToys
|
[Run] Packaged apps only available via localized name
|
# Environment
```
Windows build number: 10.0.19041.264
PowerToys version: 0.18.2
PowerToy module for which you are reporting the bug (if applicable): PowerToys Run
```
# Problem
For packaged apps we not indexing the englisch name.
# Details / Example
In start I can search for `Rechner` or `calculator` to open the calculator app. The app is shown as "Rechner (= German)". In PT Run the app can only be found by its localized name `Rechner`.
### Screenshots


Related to https://github.com/microsoft/PowerToys/issues/3773
|
Issue-Bug,Product-PowerToys Run
|
medium
|
Critical
|
632,587,376 |
flutter
|
Add `--endless-trace-buffer` to `flutter drive`
|
Currently, many performance tests in our devicelab uses `--trace-startup` to actually achieve the effect of `--endless-trace-buffer` (see [[1]]). Almost none of those tests uses such flag to trace the startup performance.
All our startup performance tests use `flutter run --trace-startup` (see [[2]]) which will close the app right after startup. On the contrary, `flutter drive --trace-startup` does not close the app after startup or after the entire drive run.
Shall we add `--endless-trace-buffer` option to `flutter drive` so we can use it instead of `--trace-startup`? That should reduce some confusions.
[1]: https://github.com/flutter/flutter/blob/cce6b3c5aeb12488d7dbec854a0b3adb4b720cd0/dev/devicelab/lib/tasks/perf_tests.dart#L294
[2]: https://github.com/flutter/flutter/blob/cce6b3c5aeb12488d7dbec854a0b3adb4b720cd0/dev/devicelab/lib/tasks/perf_tests.dart#L243
|
team,tool,c: performance,t: flutter driver,P2,team-tool,triaged-tool
|
low
|
Major
|
632,629,805 |
rust
|
False unused_braces lint warning when using non-proc macro
|
I tried this code:
```rust
#![allow(dead_code)]
#[derive(Debug)]
struct Foo;
#[derive(Debug)]
struct Bar;
enum SomeWrapperEnum {
Foo(Foo),
Bar(Bar),
}
macro_rules! match_all {
($on:expr, $with:ident, $body:tt, $($var:ident),*) => {
match $on {
$(
SomeWrapperEnum::$var($with) => { $body },
)*
}
}
}
macro_rules! dispatch {
($on:expr, $with:ident, $body:tt) => {
match_all!($on, $with, $body, Foo, Bar)
}
}
fn main() {
let quz = SomeWrapperEnum::Foo(Foo);
dispatch!(quz, inner, { println!("{:?}", inner) } );
}
```
I expected to see this happen: No warnings, or applying hints from warnings improves the code.
Instead, this happened: The unused_braces lint fired, and applying the hint breaks the code.
The hint:
```
29 | dispatch!(quz, inner, { println!("{:?}", inner) } );
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these braces
```
If the braces are removed:
```
29 | dispatch!(quz, inner, println!("{:?}", inner));
| ^ no rules expected this token in macro call
```
Note: Adding a semicolon after the `println!()` (and leaving the braces) results in no warning and the code still compiles.
I'm using stable, but reproduced on stable, debug, and nightly on play.rust-lang.org. The lint was added in #70081. I see #70717, but there are no explicit `ref`s here. And I also see #70814, but these are not proc macros.
`rustc --version --verbose`:
```
rustc 1.44.0 (49cae5576 2020-06-01)
binary: rustc
commit-hash: 49cae55760da0a43428eba73abcb659bb70cf2e4
commit-date: 2020-06-01
host: x86_64-unknown-linux-gnu
release: 1.44.0
LLVM version: 9.0
```
|
A-lints,T-compiler,C-bug,L-unused_braces
|
low
|
Critical
|
632,664,066 |
godot
|
Cannot sort Optionbutton's items by their text and Id alphabetically
|
<!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
<!-- Specify commit hash if using non-official build. -->3.2.1.stable
**OS/device including version:**
<!-- Specify GPU model, drivers, and the backend (GLES2, GLES3, Vulkan) if graphics-related. -->Windows 10 Home 1909
**Issue description:**
<!-- What happened, and what was expected. -->I wanted to sort items of a OptionButton by their text but $OptionButton.items.sort() didn't do anything as far as I could find out. They are also not sorted by their Id.
**Steps to reproduce:**
Create a scene with root node OptionButton. Add Items to it and put some text in each in an alphabetically unsorted order. Attach a script to it. In `_ready():`
type `items.sort()`
Start the scene.
[OptionButton items sort bug.zip](https://github.com/godotengine/godot/files/4740816/OptionButton.items.sort.bug.zip)
**Minimal reproduction project:**
<!-- A small Godot project which reproduces the issue. Drag and drop a zip archive to upload it. -->
|
topic:gui
|
low
|
Critical
|
632,669,116 |
flutter
|
FocusNode does not auto scroll to TextFormField when item already selected
|
Scenario: this is a big form, the user selects the TextFormField and then manually scrolls down to the save button. if the _formKey.currentState.validate() detects validation issues we can to get the focus back the the TextFormField with issues.
first, we call _myFocusNode.unfocus(); // this works because the keyword is automatically close.
next, we call FocusScope.of(context).requestFocus(_myFocusNode) //this also works because we can start typing right after. but, **the FocusScope.of(context).requestFocus is not automatically scrolling back to the TextFormField.**
If we try to another TextFormField (Tfield2) other than the last selected, the Tfield2 gets focus and the scroll also makes it visible.
NOTE: if we start typing again, the scroll is executed and the TextFormField becomes visible.

|
a: text input,framework,f: material design,f: scrolling,f: focus,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-design,triaged-design
|
low
|
Critical
|
632,728,005 |
create-react-app
|
Wrong HOST is shown in the console
|
<!--
Please note that your issue will be fixed much faster if you spend about
half an hour preparing it, including the exact reproduction steps and a demo.
If you're in a hurry or don't feel confident, it's fine to report bugs with
less details, but this makes it less likely they'll get fixed soon.
In either case, please use this template and fill in as many fields below as you can.
Note that we don't provide help for webpack questions after ejecting.
You can find webpack docs at https://webpack.js.org/.
-->
### Describe the bug
```bash
$ cat .env
BROWSER=false
PORT=8080
HOST=0.0.0.0
SKIP_PREFLIGHT_CHECK=true
$ cat package.json | grep react-scripts
"react-scripts": "3.4.1",
```
After start it still shows localhost:
```
Starting the development server...
Compiled successfully!
You can now view test in the browser.
Local: http://localhost:8080
On Your Network: http://172.30.0.6:8080
Note that the development build is not optimized.
To create a production build, use npm run build.
```
### Did you try recovering your dependencies?
<!--
Your module tree might be corrupted, and that might be causing the issues.
Let's try to recover it. First, delete these files and folders in your project:
* node_modules
* package-lock.json
* yarn.lock
Then you need to decide which package manager you prefer to use.
We support both npm (https://npmjs.com) and yarn (http://yarnpkg.com/).
However, **they can't be used together in one project** so you need to pick one.
If you decided to use npm, run this in your project directory:
npm install -g npm@latest
npm install
This should fix your project.
If you decided to use yarn, update it first (https://yarnpkg.com/en/docs/install).
Then run in your project directory:
yarn
This should fix your project.
Importantly, **if you decided to use yarn, you should never run `npm install` in the project**.
For example, yarn users should run `yarn add <library>` instead of `npm install <library>`.
Otherwise your project will break again.
Have you done all these steps and still see the issue?
Please paste the output of `npm --version` and/or `yarn --version` to confirm.
-->
No.
### Which terms did you search for in User Guide?
<!--
There are a few common documented problems, such as watcher not detecting changes, or build failing.
They are described in the Troubleshooting section of the User Guide:
https://facebook.github.io/create-react-app/docs/troubleshooting
Please scan these few sections for common problems.
Additionally, you can search the User Guide itself for something you're having issues with:
https://facebook.github.io/create-react-app/
If you didn't find the solution, please share which words you searched for.
This helps us improve documentation for future readers who might encounter the same problem.
-->
https://github.com/facebook/create-react-app/issues?q=%22On+Your+Network%3A%22+host
### Environment
<!--
To help identify if a problem is specific to a platform, browser, or module version, information about your environment is required.
This enables the maintainers quickly reproduce the issue and give feedback.
Run the following command in your React app's folder in terminal.
Note: The result is copied to your clipboard directly.
`npx create-react-app --info`
Paste the output of the command in the section below.
-->
```
Environment Info:
current version of create-react-app: 3.4.1
running from /home/redacted/.npm/_npx/18523/pnpm-global/4/node_modules/.pnpm/[email protected]/node_modules/create-react-app
System:
OS: Linux 4.15 Ubuntu 18.04.3 LTS (Bionic Beaver)
CPU: (8) x64 Intel(R) Xeon(R) CPU E3-1246 v3 @ 3.50GHz
Binaries:
Node: 12.17.0 - ~/.nvm/versions/node/v12.17.0/bin/node
Yarn: 1.22.4 - ~/.yvm/shim/yarn
npm: 6.14.4 - ~/.nvm/versions/node/v12.17.0/bin/npm
Browsers:
Chrome: 81.0.4044.138
Firefox: Not Found
npmPackages:
react: 16.13.1 => 16.13.1
react-dom: 16.13.1 => 16.13.1
react-scripts: 3.4.1 => 3.4.1
npmGlobalPackages:
create-react-app: Not Found
```
### Steps to reproduce
<!--
How would you describe your issue to someone who doesn’t know you or your project?
Try to write a sequence of steps that anybody can repeat to see the issue.
-->
(Write your steps here:)
1.
2.
3.
### Expected behavior
<!--
How did you expect the tool to behave?
It’s fine if you’re not sure your understanding is correct.
Just write down what you thought would happen.
-->
It shows 0.0.0.0:
```
Starting the development server...
Compiled successfully!
You can now view test in the browser.
Local: http://0.0.0.0:8080
On Your Network: http://172.30.0.6:8080
Note that the development build is not optimized.
To create a production build, use npm run build.
```
### Actual behavior
<!--
Did something go wrong?
Is something broken, or not behaving as you expected?
Please attach screenshots if possible! They are extremely helpful for diagnosing issues.
-->
It shows always localhost.
### Reproducible demo
<!--
If you can, please share a project that reproduces the issue.
This is the single most effective way to get an issue fixed soon.
There are two ways to do it:
* Create a new app and try to reproduce the issue in it.
This is useful if you roughly know where the problem is, or can’t share the real code.
* Or, copy your app and remove things until you’re left with the minimal reproducible demo.
This is useful for finding the root cause. You may then optionally create a new project.
This is a good guide to creating bug demos: https://stackoverflow.com/help/mcve
Once you’re done, push the project to GitHub and paste the link to it below:
-->
(Paste the link to an example project and exact instructions to reproduce the issue.)
<!--
What happens if you skip this step?
We will try to help you, but in many cases it is impossible because crucial
information is missing. In that case we'll tag an issue as having a low priority,
and eventually close it if there is no clear direction.
We still appreciate the report though, as eventually somebody else might
create a reproducible example for it.
Thanks for helping us help you!
-->
|
tag: enhancement
|
low
|
Critical
|
632,844,009 |
pytorch
|
F.affine_grid dispatch async issue
|
## 🐛 Bug
It seems like `F.affine_grid` dispatch is not entirely async. I'm not sure if this is a bug or necessary behaviour (I'm not too familiar with how the internals of async dispatch work).
Here is a `torch.autograd.profiler.profile` chrome trace of using `F.affine_grid` normally:
<a href="https://ibb.co/7yChwXf"><img src="https://i.ibb.co/mzTpLGj/affine-grid-trace.png" alt="affine-grid-trace" border="0"></a>
As you expect, dispatching the function only takes a few hundred microseconds. However, when you have some CUDA operations before calling `F.affine_grid`, it takes much longer, even though the inputs to `F.affine_grid` don't depend on the other operations.
<a href="https://ibb.co/j8cqGZn"><img src="https://i.ibb.co/gr5QwFk/affine-grid-slow.png" alt="affine-grid-slow" border="0"></a>
## To Reproduce
```python
import math
import torch
from torch import nn
from torch.nn import functional as F
net = nn.Sequential(nn.Conv2d(1, 16, 5, padding=2),
nn.ReLU(inplace=True),
nn.Conv2d(16, 32, 3, padding=1),
nn.ReLU(inplace=True),
nn.Conv2d(32, 64, 3, padding=1),
nn.ReLU(inplace=True),
nn.Conv2d(64, 128, 3, padding=1),
nn.ReLU(inplace=True)).cuda()
imgs = torch.rand((batch_size, 1, 28, 28), device='cuda') # mnist-like
poses = torch.empty((batch_size, 3)).uniform_(-20, 20)
thetas = pose2theta_2d(poses, *imgs.shape[-2:]).cuda()
torch.cuda.synchronize()
with torch.autograd.profiler.profile(enabled=True, use_cuda=True) as p:
out = net(imgs)
grid = F.affine_grid(thetas, imgs.shape)
F.grid_sample(imgs, grid)
p.export_chrome_trace('trace')
```
The first trace is produced by commenting out `out = net(imgs)`, the second is produced by running all the code. The helper function `pose2theta_2d` is in [this gist](https://gist.github.com/n2cholas/e8a087dad2d16d2221b077f1e9259df6) (on an unrelated note, if there is a more efficient/idiomatic way to convert a pose vector or homogenous transformation matrix to theta for `F.affine_grid`, please let me know).
## Expected behavior
I expect the dispatch of the function to not depend on what's happening on the GPU.
## Environment
```
Collecting environment information...
PyTorch version: 1.5.0
Is debug build: No
CUDA used to build PyTorch: 10.2
OS: Ubuntu 18.04.4 LTS
GCC version: (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0
CMake version: version 3.10.2
Python version: 3.6
Is CUDA available: Yes
CUDA runtime version: Could not collect
GPU models and configuration:
GPU 0: GeForce GTX 1080
GPU 1: GeForce GTX 1080
Nvidia driver version: 440.64
cuDNN version: Could not collect
Versions of relevant libraries:
[pip3] numpy==1.16.6
[pip3] torch==1.5.0
[pip3] torchvision==0.6.0
[conda] Could not collect
```
cc @ngimel @albanD @mruberry @VitalyFedyunin
|
module: performance,module: nn,module: cuda,triaged
|
low
|
Critical
|
632,915,813 |
flutter
|
[pigeon] clean up dart source directory structure
|
<img width="805" alt="Screen Shot 2020-06-06 at 6 53 45 PM" src="https://user-images.githubusercontent.com/156888/83958469-0dfb8600-a827-11ea-8403-81b2b193e513.png">
Make this import more ergonomic. Generally, move all non-public API dart files into /src/ folder.
See:
<img width="948" alt="Screen Shot 2020-06-06 at 6 54 18 PM" src="https://user-images.githubusercontent.com/156888/83958473-223f8300-a827-11ea-974d-b4d18d42bd86.png">
There is no ambiguity which files should be imported here.
cc @gaaclarke
|
package,team-ecosystem,p: pigeon,P3,triaged-ecosystem
|
low
|
Minor
|
632,944,940 |
flutter
|
[pigeon] let tooling figure out the java package from the java_out path rather than manually entering
|
Since Java path and package should match anyway. Could save typing out twice.
cc @gaaclarke
|
package,team-ecosystem,p: pigeon,P3,triaged-ecosystem
|
low
|
Minor
|
632,956,768 |
flutter
|
[pigeon] display "common" Dart syntax issues before crashing
|
for instance
```dart
@FlutterApi()
abstract class Api {
foo();
}
```
is invalid because there's no return type. But the error message from running pigeon is
```
Unhandled exception:
type '_SpecialTypeMirror' is not a subtype of type 'ClassMirror'
#0 Pigeon.parse (package:pigeon/pigeon_lib.dart:179:37)
#1 Pigeon.run (package:pigeon/pigeon_lib.dart:340:48)
#2 main (file:///Users/xster/development/samples/add_to_app/flutter_module_books/_pigeon_temp_.dart:7:21)
#3 _startIsolate.<anonymous closure> (dart:isolate-patch/isolate_patch.dart:299:32)
#4 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:168:12)
pub finished with exit code 255
```
Wonder if there's a way to attach our own analysis_options.yaml for basic Dart linting.
cc @gaaclarke
|
package,team-ecosystem,p: pigeon,P2,triaged-ecosystem
|
low
|
Critical
|
633,047,586 |
pytorch
|
Installation from source fails on macOS (No CUDA)
|
## 🐛 Bug
When trying to run the installation from source on macOS, I get an error and the installation doesn't work.
I am on macOS 10.15.5, python 3.7.6.
## To Reproduce
1.
```
git clone --recursive https://github.com/pytorch/pytorch
cd pytorch
```
2.
```
export CMAKE_PREFIX_PATH=${CONDA_PREFIX:-"$(dirname $(which conda))/../"}
MACOSX_DEPLOYMENT_TARGET=10.9 CC=clang CXX=clang++ python setup.py install
```
3. Here is the error:
```
[ 92%] Built target complex_test
Undefined symbols for architecture x86_64:
"___kmpc_end_serialized_parallel", referenced from:
TestParallel_NestedParallel_Test::TestBody() in test_parallel.cpp.o
TestParallel_Exceptions_Test::TestBody() in test_parallel.cpp.o
"___kmpc_fork_call", referenced from:
TestParallel_NestedParallel_Test::TestBody() in test_parallel.cpp.o
TestParallel_Exceptions_Test::TestBody() in test_parallel.cpp.o
"___kmpc_global_thread_num", referenced from:
TestParallel_NestedParallel_Test::TestBody() in test_parallel.cpp.o
TestParallel_Exceptions_Test::TestBody() in test_parallel.cpp.o
"___kmpc_serialized_parallel", referenced from:
TestParallel_NestedParallel_Test::TestBody() in test_parallel.cpp.o
TestParallel_Exceptions_Test::TestBody() in test_parallel.cpp.o
"_omp_get_num_threads", referenced from:
_.omp_outlined. in test_parallel.cpp.o
_.omp_outlined..33 in test_parallel.cpp.o
_.omp_outlined..35 in test_parallel.cpp.o
"_omp_get_thread_num", referenced from:
_.omp_outlined. in test_parallel.cpp.o
_.omp_outlined..33 in test_parallel.cpp.o
_.omp_outlined..35 in test_parallel.cpp.o
"_omp_in_parallel", referenced from:
TestParallel_NestedParallel_Test::TestBody() in test_parallel.cpp.o
TestParallel_Exceptions_Test::TestBody() in test_parallel.cpp.o
ld: symbol(s) not found for architecture x86_64
[ 92%] Built target pattern_net_transform_test
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [bin/test_parallel] Error 1
[ 92%] Built target NamedTensor_test
make[1]: *** [caffe2/CMakeFiles/test_parallel.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 93%] Built target init_test
[ 93%] Built target scalar_tensor_test
[ 93%] Built target scalar_test
[ 93%] Built target ssa_test
[ 93%] Built target kernel_lambda_test
[ 93%] Built target context_test
make: *** [all] Error 2
Traceback (most recent call last):
File "setup.py", line 732, in <module>
build_deps()
File "setup.py", line 316, in build_deps
cmake=cmake)
File "/Users/clementjoudet/dev/pytorch/tools/build_pytorch_libs.py", line 62, in build_caffe2
cmake.build(my_env)
File "/Users/clementjoudet/dev/pytorch/tools/setup_helpers/cmake.py", line 345, in build
self.run(build_args, my_env)
File "/Users/clementjoudet/dev/pytorch/tools/setup_helpers/cmake.py", line 141, in run
check_call(command, cwd=self.build_dir, env=env)
File "/usr/local/Cellar/python/3.7.6_1/Frameworks/Python.framework/Versions/3.7/lib/python3.7/subprocess.py", line 363, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['cmake', '--build', '.', '--target', 'install', '--config', 'Release', '--', '-j', '8']' returned non-zero exit status 2.
```
All the build until 92% seems okay. When using USE_CUDA=0, or trying `install develop` I still get the same error
## Expected behavior
It should install without error.
## Environment
PyTorch version: N/A
Is debug build: N/A
CUDA used to build PyTorch: N/A
OS: Mac OSX 10.15.5
GCC version: Could not collect
CMake version: version 3.17.3
Python version: 3.7
Is CUDA available: N/A
CUDA runtime version: Could not collect
GPU models and configuration: Could not collect
Nvidia driver version: Could not collect
cuDNN version: Could not collect
Versions of relevant libraries:
[pip3] numpy==1.18.1
[conda] Could not collect
## Additional context
Sorry if this is not the right place to ask. I thought that since only one particular file seems to have an issue, it had something to do with the file itself.
cc @malfet @ngimel
|
module: build,module: cuda,triaged,module: macos
|
low
|
Critical
|
633,143,647 |
flutter
|
[pigeon] data classes should be immutable
|
Have a constructor that takes all the fields and remove setters. It's suitable for interop since it's only made on one side (the receiving side shouldn't have any setters) and it makes it more suitable for use on the same side (the sender can construct the object more ergonomically, the receiving side can pass around an immutable object without worrying about mutations)
cc @gaaclarke
|
package,team-ecosystem,p: pigeon,P3,triaged-ecosystem
|
low
|
Minor
|
633,212,029 |
go
|
database/sql: Is it possible to release expired connections as soon as possible
|
<!--
Please answer these questions before submitting your issue. Thanks!
For questions please use one of our forums: https://github.com/golang/go/wiki/Questions
-->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.14.4 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="on"
GOARCH="amd64"
GOBIN=""
GOCACHE="/Users/chan/Library/Caches/go-build"
GOENV="/Users/chan/Library/Application Support/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOINSECURE=""
GOOS="darwin"
GOPATH="/Users/chan/gopath"
GOPROXY="https://goproxy.cn,https://goproxy.io,direct"
GOROOT="/usr/local/go"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/local/go/pkg/tool/darwin_amd64"
GCCGO="gccgo"
AR="ar"
CC="clang"
CXX="clang++"
CGO_ENABLED="1"
GOMOD="/dev/null"
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/qw/ddvmdjjd35xcj6823_nz3z780000gn/T/go-build941747274=/tmp/go-build -gno-record-gcc-switches -fno-common"
</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.
-->
At present, database/sql closes expired conn at a fixed time interval, so when ConnMaxLifeTime is the same as the database configuration or greater than half of the database side, the database may close the conn earlier than the client, so that when the client obtains the conn A driver.ErrBadConn error will be generated, and an error may be generated when the expired conn is closed
So can we set the time interval to half of the original?
```golang
package main
import (
"context"
"database/sql"
"fmt"
"time"
_ "github.com/go-sql-driver/mysql"
)
func main() {
dsn := fmt.Sprintf("%s:%s@tcp(%s)/%s", "root", "123456", "127.0.0.1:3306", "test_db")
dsn += "?collation=utf8mb4_bin&clientFoundRows=false&interpolateParams=true&loc=Asia%2FShanghai&maxAllowedPacket=0&multiStatements=false&parseTime=true&timeout=5000ms&time_zone=%27Asia%2FShanghai%27"
dsn += "&wait_timeout=15"
fmt.Println("start time:", time.Now().Format("2006/01/02 15:04:05"))
DB, err := sql.Open("mysql", dsn)
if err != nil {
fmt.Println(err)
return
}
defer DB.Close()
DB.SetMaxOpenConns(100)
DB.SetMaxIdleConns(100)
DB.SetConnMaxLifetime(10 * time.Second)
var name string
var value string
if err := DB.QueryRow("show session variables where variable_name='wait_timeout'").Scan(&name, &value); err != nil {
fmt.Println(err)
return
}
fmt.Println(name, value)
time.Sleep(4 * time.Second)
// Get the existing conn
conn, err := DB.Conn(context.Background())
if err != nil {
fmt.Println(err)
return
}
// Create a new conn
fmt.Println("conn2 created time:", time.Now().Format("2006/01/02 15:04:05"))
conn2, err := DB.Conn(context.Background())
if err != nil {
fmt.Println(err)
return
}
_ = conn.Close()
_ = conn2.Close()
time.Sleep(30 * time.Second)
}
```
### What did you expect to see?
no `closing bad idle connection: EOF`
### What did you see instead?
```text
start time: 2020/06/07 16:55:00
wait_timeout 15
conn2 created time: 2020/06/07 16:55:04
[mysql] 2020/06/07 16:55:20 packets.go:123: closing bad idle connection: EOF
```
|
NeedsInvestigation
|
low
|
Critical
|
633,254,892 |
TypeScript
|
Add "sourceMapDir", "declarationMapDir", "inlineDeclarationMap", and "declarationMapInlineSources" compiler options
|
## Search Terms
TypeScript, Compiler Options, Source Maps, Declaration Files
## Suggestion
Currently, there exist the TypeScript compiler options `sourceMap`, `inlineSourceMap`, `inlineSources`, `declaration`, `declarationMap`, and `declarationDir` but there is no way to tell the compiler the folder for the source map files and the declaration map files. The declaration map cannot be part of the declaration file, too, and the source code cannot be inlined into a declaration map.
Therefore, please add the compiler options:
- `sourceMapDir`: the folder of the emitted source map files;
- `declarationMapDir`: the folder of the declaration map files;
- `inlineDeclarationMap`: the declaration map is put into the declaration file using a comment;
- `declarationMapInlineSources`: the source code becomes part of the declaration map similar to the option `inlineSources` for generated JavaScript files inlining TypeScript sources.
The options `inlineDeclarationMap` and `declarationMapInlineSources` should also be usable together. It is similar to using `inlineSourceMap` and `inlineSources` together.
Using Gulp together with `gulp-typescript` and `gulp-sourcemaps` there is already the possibility to specify a source map folder and declaration map folder using `sourcemaps.write("<folder>", options)` but it would be better to have that possibility as part of a TypeScript compiler option.
## Use Cases
Of course, these compiler options are not necessary in most cases but they open up more flexibility to the user, and the implemetation should not be very difficult.
At least the option `inlineDeclarationMap` would reduce the cluttering of files in the `declarationDir` folder, and `declarationMapInlineSources` together with `inlineDeclarationMap` would make it possible to ship a declaration file with the sources as one file.
## 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,Awaiting More Feedback
|
medium
|
Major
|
633,257,899 |
flutter
|
[pigeon] data classes can implement Serializable on Android
|
Should be a trivial addition (since there's already from and to map).
Would make it easier to pass around on Android, with Intents and Bundles.
cc @gaaclarke
|
package,team-ecosystem,p: pigeon,P3,triaged-ecosystem
|
low
|
Minor
|
633,258,445 |
PowerToys
|
Coloring windows
|
# Enable window to have custom background color (or theme) to distinguish environments
- When editing or comparing (config) files named alike in prod and test environments, it is sometimes confusing to have about the same content, the same file name (of course), and this led me already to bad mistakes, applying setting to the wrong environment :-(
- It would be safer to have (for example) a reddish background for the notepad editing the prod version, and a greenish (or default) background for the test version.
- I don't have any OS2 machine available to verify, but as far as I remember, such custom coloring of windows was possible in Presentation Manager
# Proposed technical implementation details (optional)
- Add a theming entry to context menu on right click in any window, the theming would activate a preset theme named like 'development', 'test', 'production', 'to do', with preset colors, fonts, title bar color...
- The theme would be applied only to the current window, but if possible, could be persisted for the next time the same item is opened.
|
Idea-New PowerToy
|
low
|
Minor
|
633,313,231 |
flutter
|
[pigeon] let Java FlutterApis be invoked with null callbacks
|
I had IDL with
```dart
@FlutterApi()
abstract class FlutterBookApi {
void displayBookDetails(Book book);
}
```
it created Java code
```java
public interface Reply<T> {
void reply(T reply);
}
public void displayBookDetails(Book argInput, Reply<Void> callback) {
BasicMessageChannel<Object> channel =
new BasicMessageChannel<Object>(binaryMessenger, "dev.flutter.pigeon.FlutterBookApi.displayBookDetails", new StandardMessageCodec());
HashMap inputMap = argInput.toMap();
channel.send(inputMap, new BasicMessageChannel.Reply<Object>() {
public void reply(Object channelReply) {
callback.reply(null);
}
});
}
```
but if I don't care about the result, I can't pass null to callback since it doesn't null check and can crash.
cc @gaaclarke
|
package,team-ecosystem,p: pigeon,P3,triaged-ecosystem
|
low
|
Critical
|
633,482,080 |
opencv
|
OpenCV wont exit properly when using detectMultiScale on CascadeClassifier
|
Expected behaviour
When using detectMultiScale I expect python to do a clean exit.
`faces = FACE_CLASSIFIER.detectMultiScale(gray, scaleFactor=SCALE_FACTOR, minNeighbors=MIN_NEIGHBORS)`
Actual behaviour
Python is unable to do a clean exits and crashes. The method still works however but the application wont do a clean exit.
I discovered that the problem is related to specific opencv-contrib-python packgages.
These versions fail to run the application with clean exit.
```
pip3 install opencv-contrib-python==3.4.9.31
pip3 install opencv-contrib-python==3.4.9.33
pip3 install opencv-contrib-python==4.2.0.32
```
I have tested the following packages and they all work.
```
pip3 install opencv-contrib-python==3.4.2.16
pip3 install opencv-contrib-python==3.4.2.17
pip3 install opencv-contrib-python==3.4.3.18
```
These versions all introduce this warning but it still works.
`[ WARN:1] terminating async callback`
```
pip3 install opencv-contrib-python==3.4.4.19
pip3 install opencv-contrib-python==3.4.5.20
pip3 install opencv-contrib-python==3.4.6.27
pip3 install opencv-contrib-python==3.4.7.28
pip3 install opencv-contrib-python==3.4.8.29
pip3 install opencv-contrib-python==4.0.0.21
pip3 install opencv-contrib-python==4.0.1.23
pip3 install opencv-contrib-python==4.0.1.24
pip3 install opencv-contrib-python==4.1.0.25
```
These version all introduce this warning but it still works.
`[ WARN:0] global C:\projects\opencv-python\opencv\modules\videoio\src\cap_msmf.cpp (674) SourceReaderCB::~SourceReaderCB terminating async callback`
```
pip3 install opencv-contrib-python==4.1.1.26
pip3 install opencv-contrib-python==4.1.2.30
```
Steps to reproduce
**Sample code**
I start with from commandline using
```
python face.py
```
face.py
```
import cv2
FACE_CLASSIFIER = cv2.CascadeClassifier(cv2.data.haarcascades + 'haarcascade_frontalface_default.xml')
SCALE_FACTOR = 1.5
MIN_NEIGHBORS = 5
video_capture = cv2.VideoCapture(0)
while True:
# Capture frame-by-frame
ret, frame = video_capture.read()
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
# If this line is removed the program exits properly
faces = FACE_CLASSIFIER.detectMultiScale(gray, scaleFactor=SCALE_FACTOR, minNeighbors=MIN_NEIGHBORS)
cv2.imshow('Video', frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
video_capture.release()
cv2.destroyAllWindows()
```
System information
```
Microsoft Windows [Version 10.0.18363.836]
pip3 list
Package Version
--------------------- --------
numpy 1.18.5
opencv-contrib-python 3.4.9.33
pip 20.1.1
setuptools 41.2.0
python --version
Python 3.7.7
```
More details can be found here.
[https://stackoverflow.com/questions/62211684/opencv-with-python-wont-exit-properly-when-using-detectmultiscale-on-cascadeclas](https://stackoverflow.com/questions/62211684/opencv-with-python-wont-exit-properly-when-using-detectmultiscale-on-cascadeclas)
|
incomplete
|
low
|
Critical
|
633,503,096 |
godot
|
Changing the base class of a tool script after deleting a node holding it will throw errors
|
Godot 3.2.2 beta4
Steps to reproduce:
1) Create a `tool` script extending `Node`
2) Create a `Node` in the scene, and place the script on it
3) Delete the node
4) Change the base class of the script to `Spatial`: this error gets logged:
```
ERROR: Script inherits from native type 'Spatial', so it can't be instanced in object of type 'Node'.
At: modules/gdscript/gdscript.cpp:325
```
I suspect it's a side-effect of the fact Godot implements undo/redo by *never actually deleting nodes*, instead it just removes it from the tree and puts it in the undo history. However tool scripts inside that history continue to exist, and possibly even run.
|
bug,topic:core,topic:gdscript,topic:editor
|
low
|
Critical
|
633,538,985 |
PowerToys
|
Double click on titlebar to minimize window
|
# Summary of the new feature/enhancement
On Mac you can double-click on the titlebar to minimize the window.
Great to cleanup the screen
|
Idea-New PowerToy,Product-Tweak UI Design
|
low
|
Major
|
633,678,218 |
youtube-dl
|
Czech TV
|
Cannot download video from Czech TV portal
https://www.ceskatelevize.cz/ivysilani/12843499686-detektiv-endeavour-morse/219381484980004-sklizen
C:\YoutubeDL>youtube-dl.exe -v https://www.ceskatelevize.cz/ivysilani/12843499686-detektiv-endeavour-morse/219381484980004-sklizen
[debug] System config: []
[debug] User config: []
[debug] Custom config: []
[debug] Command-line args: ['-v', 'https://www.ceskatelevize.cz/ivysilani/12843499686-detektiv-endeavour-morse/219381484980004-sklizen']
[debug] Encodings: locale cp1250, fs mbcs, out cp852, pref cp1250
[debug] youtube-dl version 2020.06.06
[debug] Python version 3.4.4 (CPython) - Windows-10-10.0.18362
[debug] exe versions: ffmpeg git-2020-04-17-889ad93, ffprobe git-2020-04-17-889ad93
[debug] Proxy map: {}
[CeskaTelevize] 219381484980004-sklizen: Downloading webpage
[CeskaTelevize] 219381484980004-sklizen: Downloading JSON metadata
[CeskaTelevize] 219381484980004-sklizen: Downloading JSON metadata
[CeskaTelevize] 219381484980004-sklizen: Downloading JSON metadata
[CeskaTelevize] 219381484980004-sklizen: Downloading JSON metadata
ERROR: No video formats found; please report this issue on https://yt-dl.org/bug . Make sure you are using the latest version; type youtube-dl -U to update. Be sure to call youtube-dl with the --verbose flag and include its complete output.
Traceback (most recent call last):
File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\ytdl-org\tmpd0boo4lk\build\youtube_dl\YoutubeDL.py", line 797, in extract_info
File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\ytdl-org\tmpd0boo4lk\build\youtube_dl\extractor\common.py", line 530, in extract
File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\ytdl-org\tmpd0boo4lk\build\youtube_dl\extractor\ceskatelevize.py", line 201, in _real_extract
File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\ytdl-org\tmpd0boo4lk\build\youtube_dl\extractor\common.py", line 1350, in _sort_formats
youtube_dl.utils.ExtractorError: No video formats found; please report this issue on https://yt-dl.org/bug . Make sure you are using the latest version; type youtube-dl -U to update. Be sure to call youtube-dl with the --verbose flag and include its complete output.
<!--
######################################################################
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 2020.06.06. 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 all URLs and arguments with special characters are properly quoted or escaped as explained in http://yt-dl.org/escape.
- Search the bugtracker for similar issues: http://yt-dl.org/search-issues. DO NOT post duplicates.
- Finally, put x into all relevant boxes (like this [x])
-->
- [ ] I'm reporting a broken site support
- [ ] I've verified that I'm running youtube-dl version **2020.06.06**
- [ ] I've checked that all provided URLs are alive and playable in a browser
- [ ] I've checked that all URLs and arguments with special characters are properly quoted or escaped
- [ ] I've searched the bugtracker for similar issues including closed ones
## Verbose log
<!--
Provide the complete verbose output of youtube-dl that clearly demonstrates the problem.
Add the `-v` flag to your command line you run youtube-dl with (`youtube-dl -v <your command line>`), copy the WHOLE output and insert it below. It should look similar to this:
[debug] System config: []
[debug] User config: []
[debug] Command-line args: [u'-v', u'http://www.youtube.com/watch?v=BaW_jenozKcj']
[debug] Encodings: locale cp1251, fs mbcs, out cp866, pref cp1251
[debug] youtube-dl version 2020.06.06
[debug] Python version 2.7.11 - Windows-2003Server-5.2.3790-SP2
[debug] exe versions: ffmpeg N-75573-g1d0487f, ffprobe N-75573-g1d0487f, rtmpdump 2.4
[debug] Proxy map: {}
<more lines>
-->
```
PASTE VERBOSE LOG HERE
```
## Description
<!--
Provide an explanation of your issue in an arbitrary form. Provide any additional information, suggested solution and as much context and examples as possible.
If work on your issue requires account credentials please provide them or explain how one can obtain them.
-->
WRITE DESCRIPTION HERE
|
duplicate
|
low
|
Critical
|
633,786,997 |
godot
|
Godot freezing right before android debugging starts
|
Godot Version: 3.2
OS: Windows
Issue description:
I followed all the steps in the official page teaching how to set Godot to work with Android, and when I tried to start debug, Godot stopped responding at this message:
Running on (name of device)
66%
Installing to device, please wait
No buttons really work, but Godot starts working again if I unplug my device.
If I change one of the export settings to something wrong, like proposily mistyping the debug keystore pass, the program runs perfectly, reach at 100% and tells me why it couldn't debug.
I don't it is something with my project, because it happened with multiple projects, even an empty one.
Not quite sure of what's going on, so my device is a Motorola Moto X4 and my Android Studio is at version 4.0.

|
platform:android,topic:editor,topic:porting
|
low
|
Critical
|
634,074,668 |
ant-design
|
Table 树形数据下添加 showLine 属性
|
- [ ] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate.
### What problem does this feature solve?
树形表格希望添加内置的类似 Tree 组件的连接线样式。https://ant.design/components/tree-cn/#components-tree-demo-line
### What does the proposed API look like?
同 https://ant.design/components/tree-cn/#components-tree-demo-line
<!-- generated by ant-design-issue-helper. DO NOT REMOVE -->
|
help wanted,💡 Feature Request,Inactive
|
low
|
Minor
|
634,268,493 |
flutter
|
all popups/dialog initiated using a widget W's context should be disposed automatically when the `W` is disposed
|
## Use case
I am working on a flutter app that requires two separate widgets to be displayed on a specific orientation. To achieve that I have used an orientation builder widget and it works fine.
Both widgets are not interconnected at all and both have their own set of Option Menu Items [ in simple words 3-dots menu in android] and context menu items [displayed on long press].
What happens is when I change orientation while keeping Option Menu or Context Menu Open in flutter app, it manages to be live even when the underlying widget is disposed and replaced by another widget.
Let's call the currently visible widget as `root` widget.
I need to close these popups and dialogs that have been displayed using `root`'s context.
I have also posted the same on [stackoverflow](https://stackoverflow.com/q/60561962/8112679).
I got an answer, which turns out to be working, but as a side effect, along with the dialog & popups that code also disposes of any screens that I have navigated to from the `root`.
That is because the answer code relies on rebuilds of a widget which can happen at any time even if the widget is in the background.
So, Basically what I want to do is close all popups and dialogs on dispose of the `root`.
This description might feel a bit abstract, so if more details are required just ask me. I will update more details in the future if I am able to find a way to express the same via app code or screenshots
## Proposal
flutter should be able to remove all popup/dialogs rendered using the `root`'s context on `root` gets disposed of.
I think The real problem is identifying only dialog/popup elements from the tree and removing them.
|
framework,f: material design,c: proposal,P2,team-design,triaged-design
|
low
|
Minor
|
634,307,574 |
opencv
|
Add CuDNN 8 release support
|
New CuDNN release introduced new libraries and headers layout and excluded some functions. See initial discussion and found issues in https://github.com/opencv/opencv/pull/17238. The PR is closed a s abandoned.
Found changes:
- introduced `cudnn_version.h` header with version information
- libcudnn is split on several libraries
- `cudnnGetConvolutionForwardAlgorithm` function removed, but it's used in OpenCV: https://github.com/opencv/opencv/blob/434014b05eee6bc92c693bc7a462008b6df05b33/modules/dnn/src/cuda4dnn/csl/cudnn/convolution.hpp#L262-L270
|
feature,category: gpu/cuda (contrib),category: dnn
|
medium
|
Major
|
634,331,931 |
flutter
|
[PageView] Add/Remove page while staying on current page
|
## Use case
Lets say I have an app which in first page of PageView shows list of suggestions based on location. If I select something I want to add a new page after first page which shows details about selected suggestion and to navigate user to the new page. This is fine and can be done. Now if I swipe more to the right and go back I would like for user to again see suggestions page and not details of selected suggestions. This is currently not possible because if I do any kind of modification of PageView pages which are before page user is currently looking at, user will see snap, and the page will automatically change. If I try to do something like controller.jumpToPage, after setting new page list, it will be okay but only if user has no gesture running at that point. If he is in middle of swiping, he will loose his gesture.
## Proposal
We could have additional methods available via controller or something else where we can insert/delete pages without notifying user about it, meaning this insertion/deletion should be aware and update page and offset of PageView automatically when page list changes.
|
c: new feature,framework,f: material design,c: proposal,P2,team-design,triaged-design
|
low
|
Major
|
634,470,050 |
godot
|
GUI/Control node in Viewport tree does not preview in layout mode in editor
|
**Godot version:**
3.2.1.stable
**OS/device including version:**
Windows10
**Issue description:**
The main scene of the demo, `gui_in_3d.tscn`, includes the scene `gui_panel_3d.tscn` which contains a Viewport and a 2D GUI Control CanvasItem node. This 2D GUI Control node contains a panel with some buttons, sliders and other GUI components.
When you run the demo, the code in `gui_3d.gd` maps mouse click events on the 3D rendered image to mouse click events on the 2D GUI Control, and it all works fine.
But, when you select the GUI in the node tree to make changes to the layout, all you see is a blank grey rectangle in the editor.
There's also a second problem -- if you merge the nodes from the scene into the main scene (to avoid the complexity of having a subscene), then the GUI panel appears as a black rectangle in 3D with no texture. The mouse clicks still work, though.
It is a common requirement for little text based notices to appear in 3D above an object, for example to identify the object's name or to briefly flash up the points score for having shot it. The use of a Viewport is currently the [only way](https://godotengine.org/qa/45599/flat-text-in-a-3d-environment) for producing this feature. It would be nice if there was something like a `TextTexture` that could get it done in a more light-weight manner.
**Steps to reproduce:**
Load the [gui_in_3d](https://github.com/godotengine/godot-demo-projects/tree/master/viewport/gui_in_3d) demo project
You can preview the `gui_panel_3d.tscn` scene in in 3D, like so:

But when you select the GUI Control node, the preview is blank:

One work-around is to temporarily drag the GUI Control node out of the Viewport node, make changes, and then drag it back into the Viewport node, but this shouldn't be necessary.

**Minimal reproduction project:**
Problem is produced directly on the demo project here:
https://github.com/godotengine/godot-demo-projects/tree/master/viewport/gui_in_3d
|
discussion,topic:editor,confirmed,topic:gui,topic:2d
|
low
|
Major
|
634,486,551 |
node
|
pipeline + generator - Premature close
|
Version: 14.4.0
Platform: 64-bit (Windows)
Subsystem: stream
`pipeline` throws `Error [ERR_STREAM_PREMATURE_CLOSE]: Premature close` when:
1) There is a destination function **and** transformer function throws from `for await` block .
```javascript
// Expecting: Error: transformer
// Got: Error [ERR_STREAM_PREMATURE_CLOSE]: Premature close
Stream.pipeline(
Stream.Readable.from(['a', 'b', 'c']),
async function* (readable) {
for await (const chunk of readable) {
// If this line is moved before or after the `for await` a correct error is thrown
throw new Error('transformer');
}
},
// If destination function is removed a correct error is thrown
async function (readable) {
let result = '';
for await (const chunk of readable) {
result += chunk;
}
return result;
},
(error, val) => error ? console.error(error) : console.log(val)
)
```
2) The destination function throws from `for await` block
```javascript
// Expecting: Error: destination
// Got: Error [ERR_STREAM_PREMATURE_CLOSE]: Premature close
Stream.pipeline(
Stream.Readable.from(['a', 'b', 'c']),
async function (readable) {
let result = '';
for await (const chunk of readable) {
// If this line is moved before or after the `for await` a correct error is thrown
throw new Error('destination');
result += chunk;
}
return result;
},
(error, val) => error ? console.error(error) : console.log(val)
)
```
3) The transformer or destination `return`s from `for await` block
```javascript
// Expecting: Pipeline resolved with the value returned from destination and unfinished streams being silently destroyed
// Got: Error [ERR_STREAM_PREMATURE_CLOSE]: Premature close
Stream.pipeline(
Stream.Readable.from(['a', 'b', 'c']),
async function (readable) {
for await (const chunk of readable) {
// If this line is moved BEFORE `for await` - callback is NOT called AT ALL (node simply exits if it has nothing else to do)
return 'foo';
}
},
(error, val) => error ? console.error(error) : console.log(val)
)
```
|
stream
|
low
|
Critical
|
634,509,751 |
rust
|
[ER] NonZeroX Step and better constructors
|
It could be nice to have std::iter::Step for the NonZeroX numbers, so in this code instead of having about 1000 unwrap:
```rust
fn main() {
use std::num::NonZeroUsize;
let nz = |x| NonZeroUsize::new(x).unwrap();
for i in 1 .. 1_000 {
println!("{:?}", nz(i));
}
}
```
You only need two:
```rust
fn main() {
use std::num::NonZeroUsize;
let nz = |x| NonZeroUsize::new(x).unwrap();
for i in nz(1) .. nz(1_000) {
println!("{:?}", i);
}
}
```
If also a const-generics-based constructor is added to stdlib then the number of run-time unwraps goes to zero (the two panics become compile-time):
```rust
fn main() {
use std::num::nonzero_usize;
for i in nonzero_usize::<1>() .. nonzero_usize::<1_000>() {
println!("{:?}", i);
}
}
```
A further improvement should come from const generics of arbitrary type (currently not allowed):
```rust
fn main() {
use std::num::nonzero_usize;
for i in nonzero::<1_usize>() .. nonzero::<1_000>() {
println!("{:?}", i);
}
}
```
|
T-libs-api,C-feature-request,S-waiting-on-ACP
|
low
|
Major
|
634,543,306 |
terminal
|
Report to users publicly results of: Test Terminal in low-memory; slow hard disk conditions, measure/reduce working set, minimize number of used shared libraries; binary size
|
In top bar we have `+` and `v` buttons.

After not using Terminal for some time (the app was opened, but not used, e.g. after recovery from hibernation), sometimes there're up to 2-3 seconds passing between clicking on `v` and context menu drop down appearing. Maybe it's delay for reading "settings.json" or loading memory pages into physical mem and O.S. being slow, but it'd be nice to have some guarantees on this drop down appearing (it'd better say loading if this can take a lot of time).
Same for `+` button. It takes me up to 5 seconds hanging before the tab appears (I'm not even talking of the title being shown and WSLv1 bash started).
After I've used these buttons couple times, they become faster, but still lag noticeably:
`+` button maybe takes up to 100-200ms (judging by eye)
`v` has some 50-100ms delay
I wonder if these can be optimized to appear instantly and then do some loading, then one has a feeling that terminal does not hang and is doing some work.
It'd also be good if new tab instantly prints some temporary title, before the shell loads. Currently it's empty for up to 1 second (time of hanging + loading the shell inside the tab).
This is on version: 0.11.1333.0
It would also be nice to have these delays printed somewhere in the logs (maybe if some debugging mode is enabled), so we can easily pull them out, understanding that time-to-rendering may be hard to extract from the UI framework. But it'd be good to have for diagnostics, since terminal must be super-fast. E.g. I stopped using calc.exe and Windows Photo Viewer, since they take up to 5-10 seconds to load and render (probably because of using slow UI framework and requiring a lot of libraries loaded from disk), so I want my terminal + python loading fast for calculation needs :)
cc @DHowett-MSFT
|
Help Wanted,Area-Performance,Product-Terminal,Issue-Task
|
medium
|
Critical
|
634,560,389 |
rust
|
Consider adding #[must_use] to std::process::ExitStatus
|
Hi. Normally, Rust makes it difficult to accidentally write code which ignores errors. This is one of its great strengths. However, the `std::process` API requires the user to explicitly check the process exit status.
(This issue is about the return value from `wait()`. I am filing another one about `output()`. See also #70186 which is about the return value from `spawn()`.)
Here's a demo of the problem.
```rust
use std::process::*;
fn main() {
let command = ["ls","--no-such-option"];
Command::new(command[0])
.args(&command[1..])
.spawn().expect("Failed spawn")
.wait().expect("Failed wait");
println!("I ran {:?}", &command);
println!("All went well!")
}
```
([Playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=b2b8b8772a4f1e5135edfea6b7c5bd53))
It produces this output:
```
Compiling playground v0.0.1 (/playground)
Finished dev [unoptimized + debuginfo] target(s) in 0.98s
Running `target/debug/playground`
ls: unrecognized option '--no-such-option'
Try 'ls --help' for more information.
Standard Output
I ran ["ls", "--no-such-option"]
All went well!
```
This is not optimal. I think making `ExitStatus` be `#[must_use]` would be the best way to address this. The code above would then generate a compiler error. The programmer would be prompted to make an actual decision about the exit status.
|
C-enhancement,T-libs-api,A-process
|
low
|
Critical
|
634,572,793 |
rust
|
Tracking Issue for std::process error handling
|
<!--
Thank you for creating a tracking issue! 📜 Tracking issues are for tracking a
feature from implementation to stabilisation. Make sure to include the relevant
RFC for the feature if it has one. Otherwise provide a short summary of the
feature and link any relevant PRs or issues, and remove any sections that are
not relevant to the feature.
Remember to add team labels to the tracking issue.
For a language team feature, this would e.g., be `T-lang`.
Such a feature should also be labeled with e.g., `F-my_feature`.
This label is used to associate issues (e.g., bugs and design questions) to the feature.
-->
Hi. This is a tracking issue for various error handling awkwardnesses in `std::process`. It seemed useful to gather them together here. I hope you consider this helpful. I don't think this needs an RFC but I can make an RFC if people feel that would be best.
### About tracking issues
Tracking issues are used to record the overall progress of implementation.
They are also uses as hubs connecting to other relevant issues, e.g., bugs or open design questions.
A tracking issue is however *not* meant for large scale discussion, questions, or bug reports about a feature.
Instead, open a dedicated issue for the specific matter and add the relevant feature gate label.
### Relevant RFCs and proposals:
- https://github.com/rust-lang/rfcs/pull/3362 is a proposal to add a new methods to `Command` and a new `SubprocessError` type
### Platform-independent issues
<!--
Include each step required to complete the feature. Typically this is a PR
implementing a feature, followed by a PR that stabilises the feature. However
for larger features an implementation could be broken up into multiple PRs.
-->
- [ ] #70186 request for `#[must_use]` on `std::process::Child` (first cut in #81452)
- [ ] #73127 request for `#[must_use]` on `std::process::ExitStatus` (first cut in #81452)
- [ ] #73126 request for less hazardous version of `output()`
- [ ] #73125 request for affordance to make `Result` from `ExitStatus`
### Unix issues relating to `ExitStatusExt`
- [x] #73128 request for `std::os::unix::process::ExitStatusExt` `into_raw`
- [x] #73129 request for `std::os::unix::process::ExitStatusExt` `.coredumped()` method
|
T-libs-api,C-tracking-issue,A-process
|
low
|
Critical
|
634,637,962 |
pytorch
|
Broadcasting for torch.cross
|
Cross products are useful in a number of situations (e.g., calculations of quaternion products), and it would be great if we could broadcast with `torch.cross`
cc @mruberry @rgommers @asmeurer @leofang @AnirudhDagar @asi1024 @emcastillo @kmaehashi
|
feature,triaged,module: numpy,module: python array api
|
low
|
Major
|
634,649,660 |
godot
|
Instancing new CanvasItem-derived nodes on a thread will hang
|
**Godot version:**
3.2.1 (w/ Mono)
**OS/device including version:**
Win 10
**Issue description:**
Making new instances of `CanvasItem` types (such as `Control` or `Node2D`) on a thread other than the main thread will cause the game to hang. Other types do not cause a hang (I tested `Spatial`, `Node`, and `Object` - all fine).
It is not clear to me if this is expected. The threading docs seem to suggest that generating scene data outside the main thread and then adding the assembled scene via the main thread is a valid workflow.
Hang happens in both GDScript (using Godot threading) and Mono (using .Net threading).
GDScript test:
```
func _ready():
var thread = Thread.new()
thread.start(self, "_thread_entry")
thread.wait_to_finish();
# This will hang
func _thread_entry(_data):
var _moo = Node2D.new()
```
C# test
```
Parallel.For(0, 10, (i) => { new Node2D(); });
```
**Steps to reproduce:**
1. Start a new thread
2. Instance a type deriving from `CanvasItem` on the new thread, e.g. `var _moo = Node2D.new()`. **The app will now hang.**
**Minimal reproduction project:**
[Testing-ParallelInstancing.zip](https://github.com/godotengine/godot/files/4746448/Testing-ParallelInstancing.zip)
|
bug,topic:core,confirmed,topic:2d
|
low
|
Major
|
634,678,441 |
flutter
|
Support `--route` on flutter drive for Web
|
## Use case
I want to run an integration test for flutter web where it opens a unknown route and checks for the 404 page.
`flutter drive --target=test_driver/app.dart --no-headless --release --route '/password' lib/routes.dart`
## Proposal
On the web it seems to ignore the route parameter. On Android it works fine. I think this scenario makes way more sense on the web than on mobile since the user can type any URL in the search bar.
|
c: new feature,tool,t: flutter driver,f: routes,platform-web,c: proposal,P3,team-web,triaged-web
|
low
|
Major
|
634,722,607 |
flutter
|
Second Hot Restart not working when some isolate waits event in C++
|
## Steps to Reproduce
We are developing Flutter plugin and encountered the issue. In our C++ library we have a event queue which must be stopped when hot restart is performing. We used suggestion which we found
[here](https://github.com/flutter/flutter/issues/10437#issuecomment-457653187).
So we run helper isolate to check if there are new events in queue and this isolate waits in C++ until queue is not empty. If Hot Restart is performed this isolate should finish.
But Hot Restart works only once. There is smallest example to reproduce the problem:
1. Create directory and run there `flutter create -t plugin flutter_plugin`.
2. Add files:
`flutter_plugin/android/CMakeLists.txt`:
```bash
project(issue_flutter_cpp)
add_library(test_issue SHARED test_queue.cpp)
```
`flutter_plugin/android/test_queue.cpp`:
```cpp
#include <thread>
std::mutex m_mutex;
std::condition_variable m_notified;
int m_current_queue = 0;
extern "C" {
int _library_callbacks_queue_init(int)
{
std::unique_lock<std::mutex> lock(m_mutex);
m_current_queue++;
m_notified.notify_one();
return m_current_queue;
}
int _library_wait_for_callbacks(int queue_id)
{
std::unique_lock<std::mutex> lock(m_mutex);
m_notified.wait(lock, [queue_id] { return m_current_queue != queue_id; });
return 1;
}
}
```
Change files:
`android/build.gradle` to process CMakeLists:
```gradle
android {
externalNativeBuild {
cmake {
path "CMakeLists.txt"
}
}
}
```
`flutter_plugin/lib/flutter_plugin.dart`:
```dart
import 'dart:ffi';
import 'dart:isolate';
import 'dart:async';
import 'package:flutter/services.dart';
final nativeLibrary = _nativeLibrary ?? _loadNativeLibrary('libtest_issue.so');
DynamicLibrary _nativeLibrary;
DynamicLibrary _loadNativeLibrary(String nativeLibraryPath) {
try {
return DynamicLibrary.open(nativeLibraryPath);
} catch (e) {
return DynamicLibrary.process();
}
}
final _library_callbacks_queue_init = nativeLibrary.lookupFunction<
Int32 Function(Uint8),
int Function(int)
>('_library_callbacks_queue_init');
final _library_wait_for_callbacks = nativeLibrary.lookupFunction<
Uint8 Function(Int32),
int Function(int)
>('_library_wait_for_callbacks');
class _HelperIsolateMessage {
_HelperIsolateMessage(this.port, this.queueId, this.nativeLibraryPath);
final SendPort port;
final int queueId;
final String nativeLibraryPath;
}
class FlutterPlugin {
static void init() { // Init should be called at each hot restart
print('init');
final queueId = _library_callbacks_queue_init(1); // This function should unblock previous isolate
final receivePort = ReceivePort();
Isolate.spawn(_helperIsolate, _HelperIsolateMessage(receivePort.sendPort, queueId, 'cpp_library.so'));
receivePort.listen((dynamic _) { });
print('~init');
}
static void _helperIsolate(_HelperIsolateMessage message) {
print('_helperIsolate');
// Waits in C++ until event is receieved or untill be unblocked with 'init'
while (_library_wait_for_callbacks(message.queueId) == 0) { }
print('~_helperIsolate');
}
static const MethodChannel _channel =
const MethodChannel('flutter_plugin');
static Future<String> get platformVersion async {
final String version = await _channel.invokeMethod('getPlatformVersion');
return version;
}
}
```
and add call too `FlutterPlugin.init()` in `flutter_plugin/example/lib/main.dart`:
```
void main() {
FlutterPlugin.init();
runApp(MyApp());
}
```
3. Then cd to `example` and run it:
> cd flutter_plugin/example
> flutter run
After this you should see in log:
> I/flutter (24091): init
> I/flutter (24091): ~init
> I/flutter (24091): _helperIsolate
4. Perform hot restart. You should see:
> I/flutter (24091): init
> I/flutter (24091): ~_helperIsolate
> I/flutter (24091): ~init
> I/flutter (24091): _helperIsolate
So it means that `init` was called, it unblocked isolate which was created before hot restart and that isolate is finished. At this point everything looks fine.
5. Perform hot restart again.
**Expected results:** <!-- what did you want to see? -->
Normal hot restart as it was at step 4.
**Actual results:**
Nothing happens, only these lines in output:
> Performing hot restart...
> (This is taking an unexpectedly long time.)
and it looks like Flutter hanged.
Example is attached: [flutter_plugin.zip](https://github.com/flutter/flutter/files/4747018/flutter_plugin.zip)
<details>
<summary>Logs</summary>
<!--
Run your application with `flutter run --verbose` and attach all the
log output below between the lines with the backticks. If there is an
exception, please see if the error message includes enough information
to explain how to solve the issue.
-->
```
[ +23 ms] executing: [/Users/khnykin/Projects/dependencies/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
[ +42 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[ ] 5f21edf8b66e31a39133177319414395cc5b5f48
[ ] executing: [/Users/khnykin/Projects/dependencies/flutter/] git tag --contains HEAD
[ +201 ms] Exit code 0 from: git tag --contains HEAD
[ +2 ms] 1.17.2
[ +9 ms] executing: [/Users/khnykin/Projects/dependencies/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +15 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/stable
[ ] executing: [/Users/khnykin/Projects/dependencies/flutter/] git ls-remote --get-url origin
[ +14 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ +87 ms] executing: [/Users/khnykin/Projects/dependencies/flutter/] git rev-parse --abbrev-ref HEAD
[ +18 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] stable
[ +5 ms] executing: sw_vers -productName
[ +17 ms] Exit code 0 from: sw_vers -productName
[ ] Mac OS X
[ ] executing: sw_vers -productVersion
[ +19 ms] Exit code 0 from: sw_vers -productVersion
[ ] 10.15.5
[ ] executing: sw_vers -buildVersion
[ +18 ms] Exit code 0 from: sw_vers -buildVersion
[ ] 19F101
[ +30 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[ +5 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[ +18 ms] executing: /Users/khnykin/Projects/dependencies/AndroidSDK/platform-tools/adb devices -l
[ +7 ms] executing: /usr/bin/xcode-select --print-path
[ +17 ms] Exit code 0 from: /usr/bin/xcode-select --print-path
[ ] /Applications/Xcode.app/Contents/Developer
[ +1 ms] executing: /usr/bin/xcodebuild -version
[ +135 ms] Exit code 0 from: /usr/bin/xcodebuild -version
[ ] Xcode 11.5
Build version 11E608c
[ +2 ms] executing: xcrun --find xcdevice
[ +11 ms] Exit code 0 from: xcrun --find xcdevice
[ ] /Applications/Xcode.app/Contents/Developer/usr/bin/xcdevice
[ ] executing: xcrun xcdevice list --timeout 2
[ +4 ms] /usr/bin/xcrun simctl list --json devices
[ ] executing: /usr/bin/xcrun simctl list --json devices
[ +45 ms] List of devices attached
emulator-5554 device product:sdk_gphone_x86_64 model:Android_SDK_built_for_x86_64 device:generic_x86_64 transport_id:1
[ +187 ms] {
"devices" : {
"com.apple.CoreSimulator.SimRuntime.tvOS-13-2" : [
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/9390EE8B-41F0-4D1C-AA17-8D93C776A2AF\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/9390EE8B-41F0-4D1C-AA17-8D93C776A2AF",
"udid" : "9390EE8B-41F0-4D1C-AA17-8D93C776A2AF",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
"state" : "Shutdown",
"name" : "Apple TV"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/2CB03BF3-34D8-4260-B194-45A0B1F217FC\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/2CB03BF3-34D8-4260-B194-45A0B1F217FC",
"udid" : "2CB03BF3-34D8-4260-B194-45A0B1F217FC",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
"state" : "Shutdown",
"name" : "Apple TV 4K"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/81ED61BB-0C74-481B-8A80-894E33DB550D\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/81ED61BB-0C74-481B-8A80-894E33DB550D",
"udid" : "81ED61BB-0C74-481B-8A80-894E33DB550D",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
"state" : "Shutdown",
"name" : "Apple TV 4K (at 1080p)"
}
],
"com.apple.CoreSimulator.SimRuntime.tvOS-13-0" : [
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/C34F288B-058E-4544-AC21-2A63C1D97F65\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/C34F288B-058E-4544-AC21-2A63C1D97F65",
"udid" : "C34F288B-058E-4544-AC21-2A63C1D97F65",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
"state" : "Shutdown",
"name" : "Apple TV"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/1396C3A9-EC32-400C-BC64-7FFA59ACCA8A\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/1396C3A9-EC32-400C-BC64-7FFA59ACCA8A",
"udid" : "1396C3A9-EC32-400C-BC64-7FFA59ACCA8A",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
"state" : "Shutdown",
"name" : "Apple TV 4K"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/C809F1CE-2391-489E-952D-08AE5FD3ECE0\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/C809F1CE-2391-489E-952D-08AE5FD3ECE0",
"udid" : "C809F1CE-2391-489E-952D-08AE5FD3ECE0",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
"state" : "Shutdown",
"name" : "Apple TV 4K (at 1080p)"
}
],
"com.apple.CoreSimulator.SimRuntime.watchOS-5-2" : [
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/E02E9047-A5FB-4153-AD11-FA08D5063ED8\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/E02E9047-A5FB-4153-AD11-FA08D5063ED8",
"udid" : "E02E9047-A5FB-4153-AD11-FA08D5063ED8",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-38mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 2 - 38mm"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/E0A73662-C293-41E3-AD1A-B1719B1F4EE1\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/E0A73662-C293-41E3-AD1A-B1719B1F4EE1",
"udid" : "E0A73662-C293-41E3-AD1A-B1719B1F4EE1",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-42mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 2 - 42mm"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/DDC18187-27BB-4BEC-94A9-9B996DEB27EC\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/DDC18187-27BB-4BEC-94A9-9B996DEB27EC",
"udid" : "DDC18187-27BB-4BEC-94A9-9B996DEB27EC",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-38mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 3 - 38mm"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/2D6C31FF-2F18-4F3F-A713-4327065CB79B\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/2D6C31FF-2F18-4F3F-A713-4327065CB79B",
"udid" : "2D6C31FF-2F18-4F3F-A713-4327065CB79B",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-42mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 3 - 42mm"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/E01ECB5A-4949-4447-BC67-D493F3D1ED9D\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/E01ECB5A-4949-4447-BC67-D493F3D1ED9D",
"udid" : "E01ECB5A-4949-4447-BC67-D493F3D1ED9D",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 4 - 40mm"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/9D1F15F3-C41B-4A71-A84F-A659D9807BF9\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/9D1F15F3-C41B-4A71-A84F-A659D9807BF9",
"udid" : "9D1F15F3-C41B-4A71-A84F-A659D9807BF9",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 4 - 44mm"
}
],
"com.apple.CoreSimulator.SimRuntime.iOS-12-4" : [
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/EA20918E-D039-4B30-BC6C-964FD2E691F5\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/EA20918E-D039-4B30-BC6C-964FD2E691F5",
"udid" : "EA20918E-D039-4B30-BC6C-964FD2E691F5",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-5s",
"state" : "Shutdown",
"name" : "iPhone 5s"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/DBEC9155-7B52-4460-9AB7-F1AE27E20451\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/DBEC9155-7B52-4460-9AB7-F1AE27E20451",
"udid" : "DBEC9155-7B52-4460-9AB7-F1AE27E20451",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6-Plus",
"state" : "Shutdown",
"name" : "iPhone 6 Plus"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/0EA75B28-5C6A-4016-9C94-EC9A8E0C030D\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/0EA75B28-5C6A-4016-9C94-EC9A8E0C030D",
"udid" : "0EA75B28-5C6A-4016-9C94-EC9A8E0C030D",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6",
"state" : "Shutdown",
"name" : "iPhone 6"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/6F786F85-DBAC-460F-B689-DBE05EA8663C\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/6F786F85-DBAC-460F-B689-DBE05EA8663C",
"udid" : "6F786F85-DBAC-460F-B689-DBE05EA8663C",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s",
"state" : "Shutdown",
"name" : "iPhone 6s"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/6D61938D-643B-4FCF-A687-694C033D9735\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/6D61938D-643B-4FCF-A687-694C033D9735",
"udid" : "6D61938D-643B-4FCF-A687-694C033D9735",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s-Plus",
"state" : "Shutdown",
"name" : "iPhone 6s Plus"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/2B24AC67-A932-4F95-8629-14E9983907F6\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/2B24AC67-A932-4F95-8629-14E9983907F6",
"udid" : "2B24AC67-A932-4F95-8629-14E9983907F6",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE",
"state" : "Shutdown",
"name" : "iPhone SE"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/29C14626-8E9E-4D86-B5EC-EBA341B6F450\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/29C14626-8E9E-4D86-B5EC-EBA341B6F450",
"udid" : "29C14626-8E9E-4D86-B5EC-EBA341B6F450",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7",
"state" : "Shutdown",
"name" : "iPhone 7"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/430A5E38-5BA8-4A33-9F27-DC8D369B0A69\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/430A5E38-5BA8-4A33-9F27-DC8D369B0A69",
"udid" : "430A5E38-5BA8-4A33-9F27-DC8D369B0A69",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7-Plus",
"state" : "Shutdown",
"name" : "iPhone 7 Plus"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/3EC6A5F3-D5B5-4F16-81F8-45F8B4A88355\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/3EC6A5F3-D5B5-4F16-81F8-45F8B4A88355",
"udid" : "3EC6A5F3-D5B5-4F16-81F8-45F8B4A88355",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
"state" : "Shutdown",
"name" : "iPhone 8"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/2041B7D6-637E-4DA1-A2FC-19D0D4E5C71A\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/2041B7D6-637E-4DA1-A2FC-19D0D4E5C71A",
"udid" : "2041B7D6-637E-4DA1-A2FC-19D0D4E5C71A",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
"state" : "Shutdown",
"name" : "iPhone 8 Plus"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/7E749AF9-0E0B-4D67-B51C-3EEE05D6682E\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/7E749AF9-0E0B-4D67-B51C-3EEE05D6682E",
"udid" : "7E749AF9-0E0B-4D67-B51C-3EEE05D6682E",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-X",
"state" : "Shutdown",
"name" : "iPhone X"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/619C76DD-A5B3-4B2A-AEA4-605595B85966\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/619C76DD-A5B3-4B2A-AEA4-605595B85966",
"udid" : "619C76DD-A5B3-4B2A-AEA4-605595B85966",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS",
"state" : "Shutdown",
"name" : "iPhone Xs"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/2FEB9BC0-2806-402A-BAA1-17AA7562F222\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/2FEB9BC0-2806-402A-BAA1-17AA7562F222",
"udid" : "2FEB9BC0-2806-402A-BAA1-17AA7562F222",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS-Max",
"state" : "Shutdown",
"name" : "iPhone Xs Max"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/8DA0CD5D-6C90-4A8B-A1CD-84DB2A5616A3\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/8DA0CD5D-6C90-4A8B-A1CD-84DB2A5616A3",
"udid" : "8DA0CD5D-6C90-4A8B-A1CD-84DB2A5616A3",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XR",
"state" : "Shutdown",
"name" : "iPhone Xʀ"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/689F18EC-E078-4B7A-8147-F486D06EA796\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/689F18EC-E078-4B7A-8147-F486D06EA796",
"udid" : "689F18EC-E078-4B7A-8147-F486D06EA796",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air",
"state" : "Shutdown",
"name" : "iPad Air"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/7C6745D8-EF2B-4F9D-8675-3B980D4AE100\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/7C6745D8-EF2B-4F9D-8675-3B980D4AE100",
"udid" : "7C6745D8-EF2B-4F9D-8675-3B980D4AE100",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air-2",
"state" : "Shutdown",
"name" : "iPad Air 2"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/CB57EB71-B2C7-4D1E-A1E8-A38B591386FC\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/CB57EB71-B2C7-4D1E-A1E8-A38B591386FC",
"udid" : "CB57EB71-B2C7-4D1E-A1E8-A38B591386FC",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
"state" : "Shutdown",
"name" : "iPad Pro (9.7-inch)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/5B55A649-7F12-489E-8180-47E068CE408B\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/5B55A649-7F12-489E-8180-47E068CE408B",
"udid" : "5B55A649-7F12-489E-8180-47E068CE408B",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro",
"state" : "Shutdown",
"name" : "iPad Pro (12.9-inch)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/4E0E73C4-1980-4323-830D-3D10AC19DA58\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/4E0E73C4-1980-4323-830D-3D10AC19DA58",
"udid" : "4E0E73C4-1980-4323-830D-3D10AC19DA58",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--5th-generation-",
"state" : "Shutdown",
"name" : "iPad (5th generation)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/75D31E0A-B1B6-4D59-89C1-2813CF5E08E0\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/75D31E0A-B1B6-4D59-89C1-2813CF5E08E0",
"udid" : "75D31E0A-B1B6-4D59-89C1-2813CF5E08E0",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---2nd-generation-",
"state" : "Shutdown",
"name" : "iPad Pro (12.9-inch) (2nd generation)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/E5C93C04-C7CA-4182-AC23-0C698EEBBDDA\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/E5C93C04-C7CA-4182-AC23-0C698EEBBDDA",
"udid" : "E5C93C04-C7CA-4182-AC23-0C698EEBBDDA",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--10-5-inch-",
"state" : "Shutdown",
"name" : "iPad Pro (10.5-inch)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/57FDE67B-04A5-4CCC-97D9-C456D124B32E\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/57FDE67B-04A5-4CCC-97D9-C456D124B32E",
"udid" : "57FDE67B-04A5-4CCC-97D9-C456D124B32E",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--6th-generation-",
"state" : "Shutdown",
"name" : "iPad (6th generation)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/C5E53353-937F-4F46-9335-936CCE24A27E\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/C5E53353-937F-4F46-9335-936CCE24A27E",
"udid" : "C5E53353-937F-4F46-9335-936CCE24A27E",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-",
"state" : "Shutdown",
"name" : "iPad Pro (11-inch)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/26A58832-21DF-4011-B5E2-C2E5CA5853B5\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/26A58832-21DF-4011-B5E2-C2E5CA5853B5",
"udid" : "26A58832-21DF-4011-B5E2-C2E5CA5853B5",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-",
"state" : "Shutdown",
"name" : "iPad Pro (12.9-inch) (3rd generation)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/5AF13396-E731-4BCD-9DBF-7B46B8010C75\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/5AF13396-E731-4BCD-9DBF-7B46B8010C75",
"udid" : "5AF13396-E731-4BCD-9DBF-7B46B8010C75",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-",
"state" : "Shutdown",
"name" : "iPad Air (3rd generation)"
}
],
"com.apple.CoreSimulator.SimRuntime.iOS-13-5" : [
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/333A0D94-188D-4C3D-935F-E309DBF3962B\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/333A0D94-188D-4C3D-935F-E309DBF3962B",
"udid" : "333A0D94-188D-4C3D-935F-E309DBF3962B",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
"state" : "Shutdown",
"name" : "iPhone 8"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/CCF0B552-7BFD-4FA0-9C12-734BFD12D6D3\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/CCF0B552-7BFD-4FA0-9C12-734BFD12D6D3",
"udid" : "CCF0B552-7BFD-4FA0-9C12-734BFD12D6D3",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
"state" : "Shutdown",
"name" : "iPhone 8 Plus"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/00AA5E2C-9A31-471F-B484-DC6D5ABB8143\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/00AA5E2C-9A31-471F-B484-DC6D5ABB8143",
"udid" : "00AA5E2C-9A31-471F-B484-DC6D5ABB8143",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
"state" : "Shutdown",
"name" : "iPhone 11"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/D4E85F14-6E0D-47AB-B541-EACAD868A267\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/D4E85F14-6E0D-47AB-B541-EACAD868A267",
"udid" : "D4E85F14-6E0D-47AB-B541-EACAD868A267",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
"state" : "Shutdown",
"name" : "iPhone 11 Pro"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/2091F712-F8B1-4E32-BF85-2698C30B516F\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/2091F712-F8B1-4E32-BF85-2698C30B516F",
"udid" : "2091F712-F8B1-4E32-BF85-2698C30B516F",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
"state" : "Shutdown",
"name" : "iPhone 11 Pro Max"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/444D1EE3-0A9B-40D0-8768-1C058AC7F90D\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/444D1EE3-0A9B-40D0-8768-1C058AC7F90D",
"udid" : "444D1EE3-0A9B-40D0-8768-1C058AC7F90D",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-",
"state" : "Shutdown",
"name" : "iPhone SE (2nd generation)"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/2385ECE2-9382-4CE8-9F2D-206FA3D525AF\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/2385ECE2-9382-4CE8-9F2D-206FA3D525AF",
"udid" : "2385ECE2-9382-4CE8-9F2D-206FA3D525AF",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
"state" : "Shutdown",
"name" : "iPad Pro (9.7-inch)"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/CB48C4ED-7998-4CCC-9501-580C4B20B080\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/CB48C4ED-7998-4CCC-9501-580C4B20B080",
"udid" : "CB48C4ED-7998-4CCC-9501-580C4B20B080",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--7th-generation-",
"state" : "Shutdown",
"name" : "iPad (7th generation)"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/700B9B9B-6424-44CE-ABA2-11F9A7BAD928\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/700B9B9B-6424-44CE-ABA2-11F9A7BAD928",
"udid" : "700B9B9B-6424-44CE-ABA2-11F9A7BAD928",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch---2nd-generation-",
"state" : "Shutdown",
"name" : "iPad Pro (11-inch) (2nd generation)"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/ABFC72A2-1D33-4EF7-A359-1D23A9485C52\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/ABFC72A2-1D33-4EF7-A359-1D23A9485C52",
"udid" : "ABFC72A2-1D33-4EF7-A359-1D23A9485C52",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---4th-generation-",
"state" : "Shutdown",
"name" : "iPad Pro (12.9-inch) (4th generation)"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/7976219C-89A5-493C-9D47-9C978F8E56AD\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/7976219C-89A5-493C-9D47-9C978F8E56AD",
"udid" : "7976219C-89A5-493C-9D47-9C978F8E56AD",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-",
"state" : "Shutdown",
"name" : "iPad Air (3rd generation)"
}
],
"com.apple.CoreSimulator.SimRuntime.iOS-11-0" : [
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/A1094803-95DF-4460-BF4A-17A0A72258F2\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/A1094803-95DF-4460-BF4A-17A0A72258F2",
"udid" : "A1094803-95DF-4460-BF4A-17A0A72258F2",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-5s",
"state" : "Shutdown",
"name" : "iPhone 5s"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/4614933F-7143-4179-90D3-466FB88AE8DA\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/4614933F-7143-4179-90D3-466FB88AE8DA",
"udid" : "4614933F-7143-4179-90D3-466FB88AE8DA",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-5s",
"state" : "Shutdown",
"name" : "iPhone X"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/55DC6839-B2BC-404E-8360-4432EACC0D80\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/55DC6839-B2BC-404E-8360-4432EACC0D80",
"udid" : "55DC6839-B2BC-404E-8360-4432EACC0D80",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6-Plus",
"state" : "Shutdown",
"name" : "iPhone 6 Plus"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/5D88F7E8-F4E0-4A2F-BA46-7C39539DF227\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/5D88F7E8-F4E0-4A2F-BA46-7C39539DF227",
"udid" : "5D88F7E8-F4E0-4A2F-BA46-7C39539DF227",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6",
"state" : "Shutdown",
"name" : "iPhone 6"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/9CE60E9B-BFA8-439A-9D32-ECDABF0AB34A\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/9CE60E9B-BFA8-439A-9D32-ECDABF0AB34A",
"udid" : "9CE60E9B-BFA8-439A-9D32-ECDABF0AB34A",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s",
"state" : "Shutdown",
"name" : "iPhone 6s"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/1603654E-8F66-4C30-A166-3D5D12FD7D17\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/1603654E-8F66-4C30-A166-3D5D12FD7D17",
"udid" : "1603654E-8F66-4C30-A166-3D5D12FD7D17",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s-Plus",
"state" : "Shutdown",
"name" : "iPhone 6s Plus"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/D96F3E01-2468-4595-8B85-FD6B35E133C7\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/D96F3E01-2468-4595-8B85-FD6B35E133C7",
"udid" : "D96F3E01-2468-4595-8B85-FD6B35E133C7",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE",
"state" : "Shutdown",
"name" : "iPhone SE"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/2B8DA5EF-F185-400D-8B4C-8AAA180F3CB3\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/2B8DA5EF-F185-400D-8B4C-8AAA180F3CB3",
"udid" : "2B8DA5EF-F185-400D-8B4C-8AAA180F3CB3",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7",
"state" : "Shutdown",
"name" : "iPhone 7"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/9269A40B-B790-45DD-95B3-60FE4D9F8897\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/9269A40B-B790-45DD-95B3-60FE4D9F8897",
"udid" : "9269A40B-B790-45DD-95B3-60FE4D9F8897",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7-Plus",
"state" : "Shutdown",
"name" : "iPhone 7 Plus"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/34F00586-2F52-4BAE-A53B-1D674F35EB50\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/34F00586-2F52-4BAE-A53B-1D674F35EB50",
"udid" : "34F00586-2F52-4BAE-A53B-1D674F35EB50",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
"state" : "Shutdown",
"name" : "iPhone 8"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/F0A27352-4A56-4125-9A45-7301BD94EAC9\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/F0A27352-4A56-4125-9A45-7301BD94EAC9",
"udid" : "F0A27352-4A56-4125-9A45-7301BD94EAC9",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
"state" : "Shutdown",
"name" : "iPhone 8 Plus"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/CE92CB29-110E-4EC7-BB93-018283342F38\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/CE92CB29-110E-4EC7-BB93-018283342F38",
"udid" : "CE92CB29-110E-4EC7-BB93-018283342F38",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-X",
"state" : "Shutdown",
"name" : "iPhone X"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/814F4AC2-E01D-4687-9CF7-EC6E13B15DB0\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/814F4AC2-E01D-4687-9CF7-EC6E13B15DB0",
"udid" : "814F4AC2-E01D-4687-9CF7-EC6E13B15DB0",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air",
"state" : "Shutdown",
"name" : "iPad Air"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/3010F28B-9D5C-407C-8ACF-42D9CDB9EA0B\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/3010F28B-9D5C-407C-8ACF-42D9CDB9EA0B",
"udid" : "3010F28B-9D5C-407C-8ACF-42D9CDB9EA0B",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air-2",
"state" : "Shutdown",
"name" : "iPad Air 2"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/1DC8F8F3-2D42-4DCD-89DE-98E8FF8C33C6\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/1DC8F8F3-2D42-4DCD-89DE-98E8FF8C33C6",
"udid" : "1DC8F8F3-2D42-4DCD-89DE-98E8FF8C33C6",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
"state" : "Shutdown",
"name" : "iPad Pro (9.7-inch)"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/FF53C8E7-D70A-4E84-8EDF-90433990AA70\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/FF53C8E7-D70A-4E84-8EDF-90433990AA70",
"udid" : "FF53C8E7-D70A-4E84-8EDF-90433990AA70",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro",
"state" : "Shutdown",
"name" : "iPad Pro (12.9-inch)"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/816E4354-0094-4C6E-B3B7-0D664220AC0E\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/816E4354-0094-4C6E-B3B7-0D664220AC0E",
"udid" : "816E4354-0094-4C6E-B3B7-0D664220AC0E",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--5th-generation-",
"state" : "Shutdown",
"name" : "iPad (5th generation)"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/6EBC4541-CA14-4626-B413-182E609AE0E4\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/6EBC4541-CA14-4626-B413-182E609AE0E4",
"udid" : "6EBC4541-CA14-4626-B413-182E609AE0E4",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---2nd-generation-",
"state" : "Shutdown",
"name" : "iPad Pro (12.9-inch) (2nd generation)"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/425DBF22-6FB1-48E0-AAB7-426EF3B12FAE\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/425DBF22-6FB1-48E0-AAB7-426EF3B12FAE",
"udid" : "425DBF22-6FB1-48E0-AAB7-426EF3B12FAE",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--10-5-inch-",
"state" : "Shutdown",
"name" : "iPad Pro (10.5-inch)"
}
],
"com.apple.CoreSimulator.SimRuntime.iOS-13-3" : [
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/58D7518D-969D-46F0-9C20-F65C34962097\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/58D7518D-969D-46F0-9C20-F65C34962097",
"udid" : "58D7518D-969D-46F0-9C20-F65C34962097",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
"state" : "Shutdown",
"name" : "iPhone 8"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/865BD9BA-6A96-477F-ADFA-80F4968576F0\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/865BD9BA-6A96-477F-ADFA-80F4968576F0",
"udid" : "865BD9BA-6A96-477F-ADFA-80F4968576F0",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
"state" : "Shutdown",
"name" : "iPhone 8 Plus"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/456EF476-7C7B-4A3E-AA5F-93C51287F612\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/456EF476-7C7B-4A3E-AA5F-93C51287F612",
"udid" : "456EF476-7C7B-4A3E-AA5F-93C51287F612",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
"state" : "Shutdown",
"name" : "iPhone 11"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/D3DD90CB-D812-494A-B1D1-44A2F5394245\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/D3DD90CB-D812-494A-B1D1-44A2F5394245",
"udid" : "D3DD90CB-D812-494A-B1D1-44A2F5394245",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
"state" : "Shutdown",
"name" : "iPhone 11 Pro"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/5A010813-A5D2-4B2F-A422-BB3B673F66A7\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/5A010813-A5D2-4B2F-A422-BB3B673F66A7",
"udid" : "5A010813-A5D2-4B2F-A422-BB3B673F66A7",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
"state" : "Shutdown",
"name" : "iPhone 11 Pro Max"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/EC5A97C4-9F56-41BF-9436-1687D9033D40\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/EC5A97C4-9F56-41BF-9436-1687D9033D40",
"udid" : "EC5A97C4-9F56-41BF-9436-1687D9033D40",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
"state" : "Shutdown",
"name" : "iPad Pro (9.7-inch)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/E236DDC2-E5CE-475B-9CBC-8D3C338CA8D5\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/E236DDC2-E5CE-475B-9CBC-8D3C338CA8D5",
"udid" : "E236DDC2-E5CE-475B-9CBC-8D3C338CA8D5",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--7th-generation-",
"state" : "Shutdown",
"name" : "iPad (7th generation)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/EC02EB25-558B-4434-9442-03B91D2B465A\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/EC02EB25-558B-4434-9442-03B91D2B465A",
"udid" : "EC02EB25-558B-4434-9442-03B91D2B465A",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-",
"state" : "Shutdown",
"name" : "iPad Pro (11-inch)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/37BA0EDE-72A8-4F34-93AA-D0EE843A6F64\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/37BA0EDE-72A8-4F34-93AA-D0EE843A6F64",
"udid" : "37BA0EDE-72A8-4F34-93AA-D0EE843A6F64",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-",
"state" : "Shutdown",
"name" : "iPad Pro (12.9-inch) (3rd generation)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/D603C99D-BD89-4A91-9F69-A454E765BE24\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/D603C99D-BD89-4A91-9F69-A454E765BE24",
"udid" : "D603C99D-BD89-4A91-9F69-A454E765BE24",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-",
"state" : "Shutdown",
"name" : "iPad Air (3rd generation)"
}
],
"com.apple.CoreSimulator.SimRuntime.iOS-13-2" : [
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/F54C8916-93F9-4484-883C-E9B377160963\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/F54C8916-93F9-4484-883C-E9B377160963",
"udid" : "F54C8916-93F9-4484-883C-E9B377160963",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
"state" : "Shutdown",
"name" : "iPhone 8"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/B8DDE8FB-EA0E-4EB2-ADD5-3DEC3BD67650\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/B8DDE8FB-EA0E-4EB2-ADD5-3DEC3BD67650",
"udid" : "B8DDE8FB-EA0E-4EB2-ADD5-3DEC3BD67650",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
"state" : "Shutdown",
"name" : "iPhone 8 Plus"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/3D392A1D-4E5A-4A48-927B-DCFE0D0381A7\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/3D392A1D-4E5A-4A48-927B-DCFE0D0381A7",
"udid" : "3D392A1D-4E5A-4A48-927B-DCFE0D0381A7",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
"state" : "Shutdown",
"name" : "iPhone 11"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/754070DE-3806-412B-A805-579E33680374\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/754070DE-3806-412B-A805-579E33680374",
"udid" : "754070DE-3806-412B-A805-579E33680374",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
"state" : "Creating",
"name" : "iPhone 11 Pro"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/9E207BEF-C093-489D-8FC8-8E314B09E193\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/9E207BEF-C093-489D-8FC8-8E314B09E193",
"udid" : "9E207BEF-C093-489D-8FC8-8E314B09E193",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
"state" : "Creating",
"name" : "iPhone 11 Pro Max"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/DACB7814-1B9F-4B01-8E9D-45869825A1D6\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/DACB7814-1B9F-4B01-8E9D-45869825A1D6",
"udid" : "DACB7814-1B9F-4B01-8E9D-45869825A1D6",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
"state" : "Shutdown",
"name" : "iPad Pro (9.7-inch)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/24E23173-7757-4A3F-B938-F463438135C1\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/24E23173-7757-4A3F-B938-F463438135C1",
"udid" : "24E23173-7757-4A3F-B938-F463438135C1",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--7th-generation-",
"state" : "Shutdown",
"name" : "iPad (7th generation)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/26977CCC-E027-4446-96F0-672A5809F07F\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/26977CCC-E027-4446-96F0-672A5809F07F",
"udid" : "26977CCC-E027-4446-96F0-672A5809F07F",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-",
"state" : "Shutdown",
"name" : "iPad Pro (11-inch)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/A622CC4A-E9AF-4454-9A1C-D0D08D1E56F5\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/A622CC4A-E9AF-4454-9A1C-D0D08D1E56F5",
"udid" : "A622CC4A-E9AF-4454-9A1C-D0D08D1E56F5",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-",
"state" : "Shutdown",
"name" : "iPad Pro (12.9-inch) (3rd generation)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/38A9E3E8-E1D5-44E2-9810-53A9975352D2\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/38A9E3E8-E1D5-44E2-9810-53A9975352D2",
"udid" : "38A9E3E8-E1D5-44E2-9810-53A9975352D2",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-",
"state" : "Shutdown",
"name" : "iPad Air (3rd generation)"
}
],
"com.apple.CoreSimulator.SimRuntime.iOS-13-1" : [
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/4CAA9D99-851F-4B3E-A514-E64DBA4EE955\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/4CAA9D99-851F-4B3E-A514-E64DBA4EE955",
"udid" : "4CAA9D99-851F-4B3E-A514-E64DBA4EE955",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
"state" : "Shutdown",
"name" : "iPhone 8"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/1C68E34C-E886-4B1E-AD6A-F9B4179171DA\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/1C68E34C-E886-4B1E-AD6A-F9B4179171DA",
"udid" : "1C68E34C-E886-4B1E-AD6A-F9B4179171DA",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
"state" : "Shutdown",
"name" : "iPhone 8 Plus"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/999CB7B4-0D49-40FF-9AD6-42B3B3D183C8\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/999CB7B4-0D49-40FF-9AD6-42B3B3D183C8",
"udid" : "999CB7B4-0D49-40FF-9AD6-42B3B3D183C8",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
"state" : "Shutdown",
"name" : "iPhone 11"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/DEB10161-7AFF-4827-90BB-A0BBE6CE188D\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/DEB10161-7AFF-4827-90BB-A0BBE6CE188D",
"udid" : "DEB10161-7AFF-4827-90BB-A0BBE6CE188D",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
"state" : "Shutdown",
"name" : "iPhone 11 Pro"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/01B5361D-5A0B-4B84-8557-E3EBC20CE9EE\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/01B5361D-5A0B-4B84-8557-E3EBC20CE9EE",
"udid" : "01B5361D-5A0B-4B84-8557-E3EBC20CE9EE",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
"state" : "Shutdown",
"name" : "iPhone 11 Pro Max"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/A75D4162-2FE4-4E3E-A2D8-5D218E18A7F8\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/A75D4162-2FE4-4E3E-A2D8-5D218E18A7F8",
"udid" : "A75D4162-2FE4-4E3E-A2D8-5D218E18A7F8",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
"state" : "Shutdown",
"name" : "iPad Pro (9.7-inch)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/5D893C06-E829-44C1-833F-DDC1F5F75613\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/5D893C06-E829-44C1-833F-DDC1F5F75613",
"udid" : "5D893C06-E829-44C1-833F-DDC1F5F75613",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-",
"state" : "Shutdown",
"name" : "iPad Pro (11-inch)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/6F1CF993-1325-416F-8A3A-FB60AA9B6AE3\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/6F1CF993-1325-416F-8A3A-FB60AA9B6AE3",
"udid" : "6F1CF993-1325-416F-8A3A-FB60AA9B6AE3",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-",
"state" : "Shutdown",
"name" : "iPad Pro (12.9-inch) (3rd generation)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/F09AAD5C-6CA4-431A-89A4-86CCF6094933\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/F09AAD5C-6CA4-431A-89A4-86CCF6094933",
"udid" : "F09AAD5C-6CA4-431A-89A4-86CCF6094933",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-",
"state" : "Shutdown",
"name" : "iPad Air (3rd generation)"
}
],
"com.apple.CoreSimulator.SimRuntime.iOS-13-4" : [
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/DF9DEACD-A085-47DD-8A8C-EF665218462C\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/DF9DEACD-A085-47DD-8A8C-EF665218462C",
"udid" : "DF9DEACD-A085-47DD-8A8C-EF665218462C",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
"state" : "Shutdown",
"name" : "iPhone 8"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/2AB3A2FF-CF13-4738-917A-A29C8052CE03\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/2AB3A2FF-CF13-4738-917A-A29C8052CE03",
"udid" : "2AB3A2FF-CF13-4738-917A-A29C8052CE03",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
"state" : "Shutdown",
"name" : "iPhone 8 Plus"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/BAE4E78F-5A98-4170-A8D6-6A49BE31B36F\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/BAE4E78F-5A98-4170-A8D6-6A49BE31B36F",
"udid" : "BAE4E78F-5A98-4170-A8D6-6A49BE31B36F",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
"state" : "Shutdown",
"name" : "iPhone 11"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/AB9C8436-C392-40ED-B0D9-2E42743125D0\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/AB9C8436-C392-40ED-B0D9-2E42743125D0",
"udid" : "AB9C8436-C392-40ED-B0D9-2E42743125D0",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
"state" : "Shutdown",
"name" : "iPhone 11 Pro"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/E34615A1-2002-46FE-9607-34B82FE28A88\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/E34615A1-2002-46FE-9607-34B82FE28A88",
"udid" : "E34615A1-2002-46FE-9607-34B82FE28A88",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
"state" : "Shutdown",
"name" : "iPhone 11 Pro Max"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/6E31F40E-15AF-4B57-9C54-3C47E75952B1\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/6E31F40E-15AF-4B57-9C54-3C47E75952B1",
"udid" : "6E31F40E-15AF-4B57-9C54-3C47E75952B1",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-",
"state" : "Shutdown",
"name" : "iPhone SE (2nd generation)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/678F93DF-4B14-4274-9027-3095769630F4\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/678F93DF-4B14-4274-9027-3095769630F4",
"udid" : "678F93DF-4B14-4274-9027-3095769630F4",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
"state" : "Shutdown",
"name" : "iPad Pro (9.7-inch)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/CF677AE6-0331-440A-9EAE-B4DEB0587E87\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/CF677AE6-0331-440A-9EAE-B4DEB0587E87",
"udid" : "CF677AE6-0331-440A-9EAE-B4DEB0587E87",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--7th-generation-",
"state" : "Shutdown",
"name" : "iPad (7th generation)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/85E15B87-F644-4EDD-8AA9-5D633FF4CBBF\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/85E15B87-F644-4EDD-8AA9-5D633FF4CBBF",
"udid" : "85E15B87-F644-4EDD-8AA9-5D633FF4CBBF",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch---2nd-generation-",
"state" : "Shutdown",
"name" : "iPad Pro (11-inch) (2nd generation)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/6F767792-67D7-449C-926E-8381FDD2069D\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/6F767792-67D7-449C-926E-8381FDD2069D",
"udid" : "6F767792-67D7-449C-926E-8381FDD2069D",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---4th-generation-",
"state" : "Shutdown",
"name" : "iPad Pro (12.9-inch) (4th generation)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/77BB4996-E41F-4C57-987D-4FF8371274CB\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/77BB4996-E41F-4C57-987D-4FF8371274CB",
"udid" : "77BB4996-E41F-4C57-987D-4FF8371274CB",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-",
"state" : "Shutdown",
"name" : "iPad Air (3rd generation)"
}
],
"com.apple.CoreSimulator.SimRuntime.iOS-12-1" : [
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/B6913808-7BD9-4FBD-8BBE-EF9314F1791B\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/B6913808-7BD9-4FBD-8BBE-EF9314F1791B",
"udid" : "B6913808-7BD9-4FBD-8BBE-EF9314F1791B",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-5s",
"state" : "Shutdown",
"name" : "iPhone 5s"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/CBC6F680-54DB-41CE-B60C-34BD0D33F66A\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/CBC6F680-54DB-41CE-B60C-34BD0D33F66A",
"udid" : "CBC6F680-54DB-41CE-B60C-34BD0D33F66A",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6-Plus",
"state" : "Shutdown",
"name" : "iPhone 6 Plus"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/3D9087A0-BE00-4C11-A2F2-47CBFA46BCEB\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/3D9087A0-BE00-4C11-A2F2-47CBFA46BCEB",
"udid" : "3D9087A0-BE00-4C11-A2F2-47CBFA46BCEB",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6",
"state" : "Shutdown",
"name" : "iPhone 6"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/8CD1501C-AA86-43D7-AD07-9DCBD012534A\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/8CD1501C-AA86-43D7-AD07-9DCBD012534A",
"udid" : "8CD1501C-AA86-43D7-AD07-9DCBD012534A",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s",
"state" : "Shutdown",
"name" : "iPhone 6s"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/7F1CA053-BA32-484D-B652-FBB9A42CBB48\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/7F1CA053-BA32-484D-B652-FBB9A42CBB48",
"udid" : "7F1CA053-BA32-484D-B652-FBB9A42CBB48",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s-Plus",
"state" : "Shutdown",
"name" : "iPhone 6s Plus"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/D6CB2A0E-1410-48DD-ACDC-0358E6639795\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/D6CB2A0E-1410-48DD-ACDC-0358E6639795",
"udid" : "D6CB2A0E-1410-48DD-ACDC-0358E6639795",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE",
"state" : "Shutdown",
"name" : "iPhone SE"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/4AD5F28B-F0A4-45A0-A3FA-4074CA5CE6C0\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/4AD5F28B-F0A4-45A0-A3FA-4074CA5CE6C0",
"udid" : "4AD5F28B-F0A4-45A0-A3FA-4074CA5CE6C0",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7",
"state" : "Shutdown",
"name" : "iPhone 7"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/904C3B85-8453-49DC-9EB1-E067254F4B96\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/904C3B85-8453-49DC-9EB1-E067254F4B96",
"udid" : "904C3B85-8453-49DC-9EB1-E067254F4B96",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7-Plus",
"state" : "Shutdown",
"name" : "iPhone 7 Plus"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/8362D368-4156-459C-8EA7-BB857B0263F2\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/8362D368-4156-459C-8EA7-BB857B0263F2",
"udid" : "8362D368-4156-459C-8EA7-BB857B0263F2",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
"state" : "Shutdown",
"name" : "iPhone 8"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/DF3837F4-4542-406F-B694-5A7959B705B9\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/DF3837F4-4542-406F-B694-5A7959B705B9",
"udid" : "DF3837F4-4542-406F-B694-5A7959B705B9",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
"state" : "Shutdown",
"name" : "iPhone 8 Plus"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/DE2145B0-FF1F-432C-B844-B45165046225\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/DE2145B0-FF1F-432C-B844-B45165046225",
"udid" : "DE2145B0-FF1F-432C-B844-B45165046225",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-X",
"state" : "Shutdown",
"name" : "iPhone X"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/FED9FED1-993C-4703-A93C-31EC604AA1FE\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/FED9FED1-993C-4703-A93C-31EC604AA1FE",
"udid" : "FED9FED1-993C-4703-A93C-31EC604AA1FE",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS",
"state" : "Shutdown",
"name" : "iPhone XS"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/29D95F65-8174-469E-843E-DBD736FD036E\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/29D95F65-8174-469E-843E-DBD736FD036E",
"udid" : "29D95F65-8174-469E-843E-DBD736FD036E",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS-Max",
"state" : "Shutdown",
"name" : "iPhone XS Max"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/3D9A21F4-D40B-4797-B59F-4C6AEBAE300A\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/3D9A21F4-D40B-4797-B59F-4C6AEBAE300A",
"udid" : "3D9A21F4-D40B-4797-B59F-4C6AEBAE300A",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XR",
"state" : "Shutdown",
"name" : "iPhone XR"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/EFCD678E-EB16-4688-AB93-AC26A6CC1DA9\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/EFCD678E-EB16-4688-AB93-AC26A6CC1DA9",
"udid" : "EFCD678E-EB16-4688-AB93-AC26A6CC1DA9",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air",
"state" : "Shutdown",
"name" : "iPad Air"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/27139CFA-887F-419F-9FE9-3DD3F69AC65C\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/27139CFA-887F-419F-9FE9-3DD3F69AC65C",
"udid" : "27139CFA-887F-419F-9FE9-3DD3F69AC65C",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air-2",
"state" : "Shutdown",
"name" : "iPad Air 2"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/8C8C3A60-84A0-4EBA-8AC7-0BC2E634CE5D\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/8C8C3A60-84A0-4EBA-8AC7-0BC2E634CE5D",
"udid" : "8C8C3A60-84A0-4EBA-8AC7-0BC2E634CE5D",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
"state" : "Shutdown",
"name" : "iPad Pro (9.7-inch)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/A18EF7FA-EF7B-4CC8-865A-92C2844E2A8D\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/A18EF7FA-EF7B-4CC8-865A-92C2844E2A8D",
"udid" : "A18EF7FA-EF7B-4CC8-865A-92C2844E2A8D",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro",
"state" : "Shutdown",
"name" : "iPad Pro (12.9-inch)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/05F08368-E0CE-4D9C-9522-3A8470784BBB\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/05F08368-E0CE-4D9C-9522-3A8470784BBB",
"udid" : "05F08368-E0CE-4D9C-9522-3A8470784BBB",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--5th-generation-",
"state" : "Shutdown",
"name" : "iPad (5th generation)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/9616BA00-96EF-475C-A2F1-3912E00393C3\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/9616BA00-96EF-475C-A2F1-3912E00393C3",
"udid" : "9616BA00-96EF-475C-A2F1-3912E00393C3",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---2nd-generation-",
"state" : "Shutdown",
"name" : "iPad Pro (12.9-inch) (2nd generation)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/0CA796AD-DEAB-489A-A6D7-C36BE5896B54\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/0CA796AD-DEAB-489A-A6D7-C36BE5896B54",
"udid" : "0CA796AD-DEAB-489A-A6D7-C36BE5896B54",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--10-5-inch-",
"state" : "Shutdown",
"name" : "iPad Pro (10.5-inch)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/CA98EEDE-F8E6-46D5-8D30-2BEDA4D8BC81\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/CA98EEDE-F8E6-46D5-8D30-2BEDA4D8BC81",
"udid" : "CA98EEDE-F8E6-46D5-8D30-2BEDA4D8BC81",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--6th-generation-",
"state" : "Shutdown",
"name" : "iPad (6th generation)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/2F6B376D-D53F-4DBE-A718-D2894175CF16\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/2F6B376D-D53F-4DBE-A718-D2894175CF16",
"udid" : "2F6B376D-D53F-4DBE-A718-D2894175CF16",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-",
"state" : "Shutdown",
"name" : "iPad Pro (11-inch)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/E4B60AD1-5656-4A54-88DF-84B80C254209\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/E4B60AD1-5656-4A54-88DF-84B80C254209",
"udid" : "E4B60AD1-5656-4A54-88DF-84B80C254209",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-",
"state" : "Shutdown",
"name" : "iPad Pro (12.9-inch) (3rd generation)"
}
],
"com.apple.CoreSimulator.SimRuntime.iOS-12-2" : [
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/1DED5DDF-FCFA-41EC-A58A-B0DAB58C2F4F\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/1DED5DDF-FCFA-41EC-A58A-B0DAB58C2F4F",
"udid" : "1DED5DDF-FCFA-41EC-A58A-B0DAB58C2F4F",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-5s",
"state" : "Shutdown",
"name" : "iPhone 5s"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/303DB8A5-05AE-4C94-9F78-D5C7AC6EBD7E\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/303DB8A5-05AE-4C94-9F78-D5C7AC6EBD7E",
"udid" : "303DB8A5-05AE-4C94-9F78-D5C7AC6EBD7E",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6-Plus",
"state" : "Shutdown",
"name" : "iPhone 6 Plus"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/305B9EA7-CB4F-4FB8-A5FD-54ADB4314DBE\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/305B9EA7-CB4F-4FB8-A5FD-54ADB4314DBE",
"udid" : "305B9EA7-CB4F-4FB8-A5FD-54ADB4314DBE",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6",
"state" : "Shutdown",
"name" : "iPhone 6"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/AAE7BF63-70F6-4F2D-9D5A-84A13C527E5C\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/AAE7BF63-70F6-4F2D-9D5A-84A13C527E5C",
"udid" : "AAE7BF63-70F6-4F2D-9D5A-84A13C527E5C",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s",
"state" : "Shutdown",
"name" : "iPhone 6s"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/4365356F-04F1-4746-A150-57BE0EE8ADDA\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/4365356F-04F1-4746-A150-57BE0EE8ADDA",
"udid" : "4365356F-04F1-4746-A150-57BE0EE8ADDA",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s-Plus",
"state" : "Shutdown",
"name" : "iPhone 6s Plus"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/78E96334-69FE-49C3-9185-7E154EE059D9\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/78E96334-69FE-49C3-9185-7E154EE059D9",
"udid" : "78E96334-69FE-49C3-9185-7E154EE059D9",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE",
"state" : "Shutdown",
"name" : "iPhone SE"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/E6C12176-4010-4612-8ABA-70EFAC58C6B3\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/E6C12176-4010-4612-8ABA-70EFAC58C6B3",
"udid" : "E6C12176-4010-4612-8ABA-70EFAC58C6B3",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7",
"state" : "Shutdown",
"name" : "iPhone 7"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/CB37B5BE-5DD8-4AC5-B2D3-D0BB1B18C142\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/CB37B5BE-5DD8-4AC5-B2D3-D0BB1B18C142",
"udid" : "CB37B5BE-5DD8-4AC5-B2D3-D0BB1B18C142",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7-Plus",
"state" : "Shutdown",
"name" : "iPhone 7 Plus"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/1B69CA24-EEFE-4198-A024-E539FE191C99\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/1B69CA24-EEFE-4198-A024-E539FE191C99",
"udid" : "1B69CA24-EEFE-4198-A024-E539FE191C99",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
"state" : "Shutdown",
"name" : "iPhone 8"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/CB2D6DDC-E790-473E-9F7F-82EF73D1B0E3\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/CB2D6DDC-E790-473E-9F7F-82EF73D1B0E3",
"udid" : "CB2D6DDC-E790-473E-9F7F-82EF73D1B0E3",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
"state" : "Shutdown",
"name" : "iPhone 8 Plus"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/0CFDF89C-489B-48A2-8E43-B346E9471AE8\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/0CFDF89C-489B-48A2-8E43-B346E9471AE8",
"udid" : "0CFDF89C-489B-48A2-8E43-B346E9471AE8",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-X",
"state" : "Shutdown",
"name" : "iPhone X"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/66419E6A-4A39-4D55-B2DF-8803C2E1CC32\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/66419E6A-4A39-4D55-B2DF-8803C2E1CC32",
"udid" : "66419E6A-4A39-4D55-B2DF-8803C2E1CC32",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS",
"state" : "Shutdown",
"name" : "iPhone Xs"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/CFEDD62D-46FA-4C38-92F8-5B52B6273F53\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/CFEDD62D-46FA-4C38-92F8-5B52B6273F53",
"udid" : "CFEDD62D-46FA-4C38-92F8-5B52B6273F53",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS-Max",
"state" : "Shutdown",
"name" : "iPhone Xs Max"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/6B1CFCF2-6B5C-45C8-B80A-6A6AF4474117\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/6B1CFCF2-6B5C-45C8-B80A-6A6AF4474117",
"udid" : "6B1CFCF2-6B5C-45C8-B80A-6A6AF4474117",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XR",
"state" : "Shutdown",
"name" : "iPhone Xʀ"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/1B08F687-8611-4C17-9B67-F630D5A15C0A\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/1B08F687-8611-4C17-9B67-F630D5A15C0A",
"udid" : "1B08F687-8611-4C17-9B67-F630D5A15C0A",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air",
"state" : "Shutdown",
"name" : "iPad Air"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/2D3EC2D6-973C-4B14-8D31-30DAD9AE56E4\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/2D3EC2D6-973C-4B14-8D31-30DAD9AE56E4",
"udid" : "2D3EC2D6-973C-4B14-8D31-30DAD9AE56E4",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air-2",
"state" : "Shutdown",
"name" : "iPad Air 2"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/EF27D575-4429-4AEE-809A-9165190EE389\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/EF27D575-4429-4AEE-809A-9165190EE389",
"udid" : "EF27D575-4429-4AEE-809A-9165190EE389",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
"state" : "Shutdown",
"name" : "iPad Pro (9.7-inch)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/113EB7C5-A697-42F8-A475-8A2D1B56DC08\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/113EB7C5-A697-42F8-A475-8A2D1B56DC08",
"udid" : "113EB7C5-A697-42F8-A475-8A2D1B56DC08",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro",
"state" : "Shutdown",
"name" : "iPad Pro (12.9-inch)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/9C11B0A7-7666-457C-A3B8-A7504C4D7887\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/9C11B0A7-7666-457C-A3B8-A7504C4D7887",
"udid" : "9C11B0A7-7666-457C-A3B8-A7504C4D7887",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--5th-generation-",
"state" : "Shutdown",
"name" : "iPad (5th generation)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/A206B66D-0815-4443-81E6-1ADF5BF07D3C\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/A206B66D-0815-4443-81E6-1ADF5BF07D3C",
"udid" : "A206B66D-0815-4443-81E6-1ADF5BF07D3C",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---2nd-generation-",
"state" : "Shutdown",
"name" : "iPad Pro (12.9-inch) (2nd generation)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/5144D8BA-EEE4-4078-9FA2-63BCA20ABCE6\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/5144D8BA-EEE4-4078-9FA2-63BCA20ABCE6",
"udid" : "5144D8BA-EEE4-4078-9FA2-63BCA20ABCE6",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--10-5-inch-",
"state" : "Shutdown",
"name" : "iPad Pro (10.5-inch)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/E645E4AB-1496-4140-AA45-6637F59B3D07\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/E645E4AB-1496-4140-AA45-6637F59B3D07",
"udid" : "E645E4AB-1496-4140-AA45-6637F59B3D07",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--6th-generation-",
"state" : "Shutdown",
"name" : "iPad (6th generation)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/89667087-D469-4D27-8F6C-EAA3292CC81A\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/89667087-D469-4D27-8F6C-EAA3292CC81A",
"udid" : "89667087-D469-4D27-8F6C-EAA3292CC81A",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-",
"state" : "Shutdown",
"name" : "iPad Pro (11-inch)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/6CC940D9-58DD-4EDE-A22A-152427F90EE7\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/6CC940D9-58DD-4EDE-A22A-152427F90EE7",
"udid" : "6CC940D9-58DD-4EDE-A22A-152427F90EE7",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-",
"state" : "Shutdown",
"name" : "iPad Pro (12.9-inch) (3rd generation)"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/6AA89CE7-CBBE-4A59-BA88-D5DCB2F6161C\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/6AA89CE7-CBBE-4A59-BA88-D5DCB2F6161C",
"udid" : "6AA89CE7-CBBE-4A59-BA88-D5DCB2F6161C",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-",
"state" : "Shutdown",
"name" : "iPad Air (3rd generation)"
}
],
"com.apple.CoreSimulator.SimRuntime.watchOS-6-1" : [
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/37010914-1D86-4FB8-8791-241C928B467D\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/37010914-1D86-4FB8-8791-241C928B467D",
"udid" : "37010914-1D86-4FB8-8791-241C928B467D",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 4 - 40mm"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/C38EAEFC-31EB-4CCE-B068-BB3562A0C913\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/C38EAEFC-31EB-4CCE-B068-BB3562A0C913",
"udid" : "C38EAEFC-31EB-4CCE-B068-BB3562A0C913",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 4 - 44mm"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/06EDA849-2E2E-467F-BE43-CC8F6193D288\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/06EDA849-2E2E-467F-BE43-CC8F6193D288",
"udid" : "06EDA849-2E2E-467F-BE43-CC8F6193D288",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 5 - 40mm"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/13C9AA9E-0622-4FA2-B980-93DD8AC83720\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/13C9AA9E-0622-4FA2-B980-93DD8AC83720",
"udid" : "13C9AA9E-0622-4FA2-B980-93DD8AC83720",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 5 - 44mm"
}
],
"com.apple.CoreSimulator.SimRuntime.watchOS-5-1" : [
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/8FE806B9-8AE4-4648-80E9-329E3E7B0EBA\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/8FE806B9-8AE4-4648-80E9-329E3E7B0EBA",
"udid" : "8FE806B9-8AE4-4648-80E9-329E3E7B0EBA",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-38mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 2 - 38mm"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/82E4AE3D-E438-4239-B068-AE9BA64F985A\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/82E4AE3D-E438-4239-B068-AE9BA64F985A",
"udid" : "82E4AE3D-E438-4239-B068-AE9BA64F985A",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-42mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 2 - 42mm"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/E56067A0-3F44-4C7F-8A61-1983965799B0\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/E56067A0-3F44-4C7F-8A61-1983965799B0",
"udid" : "E56067A0-3F44-4C7F-8A61-1983965799B0",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-38mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 3 - 38mm"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/0F51D5DF-B6E7-40B1-B1CD-36528CEDF3CC\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/0F51D5DF-B6E7-40B1-B1CD-36528CEDF3CC",
"udid" : "0F51D5DF-B6E7-40B1-B1CD-36528CEDF3CC",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-42mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 3 - 42mm"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/135CCA6B-AD13-43F6-A629-6F212D591F7A\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/135CCA6B-AD13-43F6-A629-6F212D591F7A",
"udid" : "135CCA6B-AD13-43F6-A629-6F212D591F7A",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 4 - 40mm"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/D990FD76-8C83-4CFE-9E2D-1B7641E83931\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/D990FD76-8C83-4CFE-9E2D-1B7641E83931",
"udid" : "D990FD76-8C83-4CFE-9E2D-1B7641E83931",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 4 - 44mm"
}
],
"com.apple.CoreSimulator.SimRuntime.watchOS-6-0" : [
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/7A8E91EA-DAA2-4DE0-8C19-B7BEC5CAC881\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/7A8E91EA-DAA2-4DE0-8C19-B7BEC5CAC881",
"udid" : "7A8E91EA-DAA2-4DE0-8C19-B7BEC5CAC881",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 4 - 40mm"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/177411B7-B1B8-4DF4-A83F-84D724A30FC1\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/177411B7-B1B8-4DF4-A83F-84D724A30FC1",
"udid" : "177411B7-B1B8-4DF4-A83F-84D724A30FC1",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 4 - 44mm"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/931DCA73-33D0-4172-99EA-7E228A37D58E\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/931DCA73-33D0-4172-99EA-7E228A37D58E",
"udid" : "931DCA73-33D0-4172-99EA-7E228A37D58E",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 5 - 40mm"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/1BA647F9-58A8-4707-A77B-6426CAF5D30D\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/1BA647F9-58A8-4707-A77B-6426CAF5D30D",
"udid" : "1BA647F9-58A8-4707-A77B-6426CAF5D30D",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 5 - 44mm"
}
],
"com.apple.CoreSimulator.SimRuntime.tvOS-12-4" : [
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/CCE6D20D-21D5-45AD-84EC-A1A3050F440B\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/CCE6D20D-21D5-45AD-84EC-A1A3050F440B",
"udid" : "CCE6D20D-21D5-45AD-84EC-A1A3050F440B",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
"state" : "Shutdown",
"name" : "Apple TV"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/17F39ED9-2186-4BF1-A940-AF7E78D6676E\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/17F39ED9-2186-4BF1-A940-AF7E78D6676E",
"udid" : "17F39ED9-2186-4BF1-A940-AF7E78D6676E",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
"state" : "Shutdown",
"name" : "Apple TV 4K"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/7CBD7EDD-1293-49D6-A88B-DDAF2C4913FB\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/7CBD7EDD-1293-49D6-A88B-DDAF2C4913FB",
"udid" : "7CBD7EDD-1293-49D6-A88B-DDAF2C4913FB",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
"state" : "Shutdown",
"name" : "Apple TV 4K (at 1080p)"
}
],
"com.apple.CoreSimulator.SimRuntime.tvOS-13-4" : [
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/F37BBCC3-F8C7-4F78-BABC-FBB03A1C4A73\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/F37BBCC3-F8C7-4F78-BABC-FBB03A1C4A73",
"udid" : "F37BBCC3-F8C7-4F78-BABC-FBB03A1C4A73",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
"state" : "Shutdown",
"name" : "Apple TV"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/0A2F5DFE-7E05-4D64-8441-E50D1F28B642\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/0A2F5DFE-7E05-4D64-8441-E50D1F28B642",
"udid" : "0A2F5DFE-7E05-4D64-8441-E50D1F28B642",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
"state" : "Shutdown",
"name" : "Apple TV 4K"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/6109995A-CC6D-4924-A4D9-4D70D00A21D7\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/6109995A-CC6D-4924-A4D9-4D70D00A21D7",
"udid" : "6109995A-CC6D-4924-A4D9-4D70D00A21D7",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
"state" : "Shutdown",
"name" : "Apple TV 4K (at 1080p)"
}
],
"com.apple.CoreSimulator.SimRuntime.tvOS-12-2" : [
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/211895FD-58A6-46C4-9598-1CAF81E6E56C\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/211895FD-58A6-46C4-9598-1CAF81E6E56C",
"udid" : "211895FD-58A6-46C4-9598-1CAF81E6E56C",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
"state" : "Shutdown",
"name" : "Apple TV"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/29BC3463-DE4B-4FAE-A241-C9B86123F8B7\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/29BC3463-DE4B-4FAE-A241-C9B86123F8B7",
"udid" : "29BC3463-DE4B-4FAE-A241-C9B86123F8B7",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
"state" : "Shutdown",
"name" : "Apple TV 4K"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/D15CC8E5-F14C-44B4-BBFA-8A592B7FB895\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/D15CC8E5-F14C-44B4-BBFA-8A592B7FB895",
"udid" : "D15CC8E5-F14C-44B4-BBFA-8A592B7FB895",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
"state" : "Shutdown",
"name" : "Apple TV 4K (at 1080p)"
}
],
"com.apple.CoreSimulator.SimRuntime.watchOS-5-3" : [
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/5A2D2D97-F9B4-4D38-8CF1-3E8556A85183\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/5A2D2D97-F9B4-4D38-8CF1-3E8556A85183",
"udid" : "5A2D2D97-F9B4-4D38-8CF1-3E8556A85183",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-38mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 2 - 38mm"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/D10C5BAD-3DC0-4662-A6B6-40483A5B2EBF\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/D10C5BAD-3DC0-4662-A6B6-40483A5B2EBF",
"udid" : "D10C5BAD-3DC0-4662-A6B6-40483A5B2EBF",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-42mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 2 - 42mm"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/BD4C25D6-563F-477F-A1BF-B27A249D42B2\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/BD4C25D6-563F-477F-A1BF-B27A249D42B2",
"udid" : "BD4C25D6-563F-477F-A1BF-B27A249D42B2",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-38mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 3 - 38mm"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/E9CE86E2-A6F4-4CF3-BBAA-ED62A6A2975A\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/E9CE86E2-A6F4-4CF3-BBAA-ED62A6A2975A",
"udid" : "E9CE86E2-A6F4-4CF3-BBAA-ED62A6A2975A",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-42mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 3 - 42mm"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/B69885E5-E390-4959-B04C-B7FEAE7235D7\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/B69885E5-E390-4959-B04C-B7FEAE7235D7",
"udid" : "B69885E5-E390-4959-B04C-B7FEAE7235D7",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 4 - 40mm"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/9AD2C015-3242-48A6-98FA-E89C6FC9F8BC\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/9AD2C015-3242-48A6-98FA-E89C6FC9F8BC",
"udid" : "9AD2C015-3242-48A6-98FA-E89C6FC9F8BC",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 4 - 44mm"
}
],
"com.apple.CoreSimulator.SimRuntime.tvOS-13-3" : [
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/BD654E12-A7A6-4867-9B65-FFCDCCB49FAD\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/BD654E12-A7A6-4867-9B65-FFCDCCB49FAD",
"udid" : "BD654E12-A7A6-4867-9B65-FFCDCCB49FAD",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
"state" : "Shutdown",
"name" : "Apple TV"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/B9E5374F-D62D-474E-B43A-1F96095F3C11\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/B9E5374F-D62D-474E-B43A-1F96095F3C11",
"udid" : "B9E5374F-D62D-474E-B43A-1F96095F3C11",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
"state" : "Shutdown",
"name" : "Apple TV 4K"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/E70D812B-4281-41BB-8A2A-BC68EA1A365B\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/E70D812B-4281-41BB-8A2A-BC68EA1A365B",
"udid" : "E70D812B-4281-41BB-8A2A-BC68EA1A365B",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
"state" : "Shutdown",
"name" : "Apple TV 4K (at 1080p)"
}
],
"com.apple.CoreSimulator.SimRuntime.watchOS-6-2" : [
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/FC9C36AB-AE1B-4C7D-BA14-EC3384803EF0\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/FC9C36AB-AE1B-4C7D-BA14-EC3384803EF0",
"udid" : "FC9C36AB-AE1B-4C7D-BA14-EC3384803EF0",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 4 - 40mm"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/50EE1B2D-FB7D-4FFB-901B-B052008E0B0F\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/50EE1B2D-FB7D-4FFB-901B-B052008E0B0F",
"udid" : "50EE1B2D-FB7D-4FFB-901B-B052008E0B0F",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 4 - 44mm"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/1CBF598A-D7D6-4308-8E57-7C3219D4B139\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/1CBF598A-D7D6-4308-8E57-7C3219D4B139",
"udid" : "1CBF598A-D7D6-4308-8E57-7C3219D4B139",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 5 - 40mm"
},
{
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/E75DC2E5-305D-4F86-8D8D-145992CB6BF8\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/E75DC2E5-305D-4F86-8D8D-145992CB6BF8",
"udid" : "E75DC2E5-305D-4F86-8D8D-145992CB6BF8",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm",
"state" : "Shutdown",
"name" : "Apple Watch Series 5 - 44mm"
}
],
"com.apple.CoreSimulator.SimRuntime.tvOS-12-1" : [
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/8747E8FD-F506-46DC-80BD-7998109DE5E2\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/8747E8FD-F506-46DC-80BD-7998109DE5E2",
"udid" : "8747E8FD-F506-46DC-80BD-7998109DE5E2",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
"state" : "Shutdown",
"name" : "Apple TV"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/5314F0B3-22F2-4AF7-8726-D15E39A3A2B7\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/5314F0B3-22F2-4AF7-8726-D15E39A3A2B7",
"udid" : "5314F0B3-22F2-4AF7-8726-D15E39A3A2B7",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
"state" : "Shutdown",
"name" : "Apple TV 4K"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/khnykin\/Library\/Developer\/CoreSimulator\/Devices\/7A7B38D5-B646-4023-B9FF-74BB14BC1582\/data",
"logPath" : "\/Users\/khnykin\/Library\/Logs\/CoreSimulator\/7A7B38D5-B646-4023-B9FF-74BB14BC1582",
"udid" : "7A7B38D5-B646-4023-B9FF-74BB14BC1582",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
"state" : "Shutdown",
"name" : "Apple TV 4K (at 1080p)"
}
]
}
}
[+2573 ms] [
{
"simulator" : true,
"operatingSystemVersion" : "11.0.1 (15A8401)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone10,5",
"identifier" : "F0A27352-4A56-4125-9A45-7301BD94EAC9",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-8-plus-2",
"modelName" : "iPhone 8 Plus",
"name" : "iPhone 8 Plus"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.4 (17L255)",
"available" : true,
"platform" : "com.apple.platform.appletvsimulator",
"modelCode" : "AppleTV5,3",
"identifier" : "F37BBCC3-F8C7-4F78-BABC-FBB03A1C4A73",
"architecture" : "x86_64",
"modelUTI" : "com.apple.apple-tv-4",
"modelName" : "Apple TV",
"name" : "Apple TV"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.5 (17F61)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad6,4",
"identifier" : "2385ECE2-9382-4CE8-9F2D-206FA3D525AF",
"architecture" : "x86_64",
"modelUTI" : "com.apple.ipad-pro-9point7-a1674-b9b7ba",
"modelName" : "iPad Pro (9.7-inch)",
"name" : "iPad Pro (9.7-inch)"
},
{
"simulator" : true,
"operatingSystemVersion" : "6.2.1 (17T531)",
"available" : true,
"platform" : "com.apple.platform.watchsimulator",
"modelCode" : "Watch5,3",
"identifier" : "1CBF598A-D7D6-4308-8E57-7C3219D4B139",
"architecture" : "i386",
"modelUTI" : "com.apple.watch-series5-1",
"modelName" : "Apple Watch Series 5 - 40mm",
"name" : "Apple Watch Series 5 - 40mm"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.5 (17F61)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad8,12",
"identifier" : "ABFC72A2-1D33-4EF7-A359-1D23A9485C52",
"architecture" : "x86_64",
"modelUTI" : "com.apple.ipad-pro-12point9-4th-1",
"modelName" : "iPad Pro (12.9-inch) (4th generation)",
"name" : "iPad Pro (12.9-inch) (4th generation)"
},
{
"simulator" : true,
"operatingSystemVersion" : "11.0.1 (15A8401)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone8,2",
"identifier" : "1603654E-8F66-4C30-A166-3D5D12FD7D17",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-6s-plus-b9b7ba",
"modelName" : "iPhone 6s Plus",
"name" : "iPhone 6s Plus"
},
{
"simulator" : true,
"operatingSystemVersion" : "11.0.1 (15A8401)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone10,6",
"identifier" : "CE92CB29-110E-4EC7-BB93-018283342F38",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-x-1",
"modelName" : "iPhone X",
"name" : "iPhone X"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.5 (17F61)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad11,3",
"identifier" : "7976219C-89A5-493C-9D47-9C978F8E56AD",
"architecture" : "x86_64",
"modelUTI" : "com.apple.ipad-air3-wifi-1",
"modelName" : "iPad Air (3rd generation)",
"name" : "iPad Air (3rd generation)"
},
{
"simulator" : true,
"operatingSystemVersion" : "11.0.1 (15A8401)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone6,1",
"identifier" : "4614933F-7143-4179-90D3-466FB88AE8DA",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-5s-a1453-d4c5b3",
"modelName" : "iPhone 5s",
"name" : "iPhone X"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.4 (17L255)",
"available" : true,
"platform" : "com.apple.platform.appletvsimulator",
"modelCode" : "AppleTV6,2",
"identifier" : "0A2F5DFE-7E05-4D64-8441-E50D1F28B642",
"architecture" : "x86_64",
"modelUTI" : "com.apple.apple-tv-4k",
"modelName" : "Apple TV 4K",
"name" : "Apple TV 4K"
},
{
"simulator" : true,
"operatingSystemVersion" : "6.2.1 (17T531)",
"available" : true,
"platform" : "com.apple.platform.watchsimulator",
"modelCode" : "Watch4,3",
"identifier" : "FC9C36AB-AE1B-4C7D-BA14-EC3384803EF0",
"architecture" : "i386",
"modelUTI" : "com.apple.watch-series4-1",
"modelName" : "Apple Watch Series 4 - 40mm",
"name" : "Apple Watch Series 4 - 40mm"
},
{
"simulator" : true,
"operatingSystemVersion" : "11.0.1 (15A8401)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone6,1",
"identifier" : "A1094803-95DF-4460-BF4A-17A0A72258F2",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-5s-a1453-d4c5b3",
"modelName" : "iPhone 5s",
"name" : "iPhone 5s"
},
{
"simulator" : true,
"operatingSystemVersion" : "11.0.1 (15A8401)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad5,4",
"identifier" : "3010F28B-9D5C-407C-8ACF-42D9CDB9EA0B",
"architecture" : "x86_64",
"modelUTI" : "com.apple.ipad-air2-a1567-b4b5b9",
"modelName" : "iPad Air 2",
"name" : "iPad Air 2"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.5 (17F61)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone10,4",
"identifier" : "333A0D94-188D-4C3D-935F-E309DBF3962B",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-8-2",
"modelName" : "iPhone 8",
"name" : "iPhone 8"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.5 (17F61)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone12,5",
"identifier" : "2091F712-F8B1-4E32-BF85-2698C30B516F",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-11-pro-max-1",
"modelName" : "iPhone 11 Pro Max",
"name" : "iPhone 11 Pro Max"
},
{
"simulator" : true,
"operatingSystemVersion" : "6.2.1 (17T531)",
"available" : true,
"platform" : "com.apple.platform.watchsimulator",
"modelCode" : "Watch4,4",
"identifier" : "50EE1B2D-FB7D-4FFB-901B-B052008E0B0F",
"architecture" : "i386",
"modelUTI" : "com.apple.watch-series4-1",
"modelName" : "Apple Watch Series 4 - 44mm",
"name" : "Apple Watch Series 4 - 44mm"
},
{
"simulator" : true,
"operatingSystemVersion" : "11.0.1 (15A8401)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad6,12",
"identifier" : "816E4354-0094-4C6E-B3B7-0D664220AC0E",
"architecture" : "x86_64",
"modelUTI" : "com.apple.ipad-gen5-a1823-1",
"modelName" : "iPad (5th generation)",
"name" : "iPad (5th generation)"
},
{
"simulator" : true,
"operatingSystemVersion" : "11.0.1 (15A8401)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone10,4",
"identifier" : "34F00586-2F52-4BAE-A53B-1D674F35EB50",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-8-2",
"modelName" : "iPhone 8",
"name" : "iPhone 8"
},
{
"simulator" : true,
"operatingSystemVersion" : "11.0.1 (15A8401)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad4,2",
"identifier" : "814F4AC2-E01D-4687-9CF7-EC6E13B15DB0",
"architecture" : "x86_64",
"modelUTI" : "com.apple.ipad-air-a1475-d7d9d8",
"modelName" : "iPad Air",
"name" : "iPad Air"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.5 (17F61)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone10,5",
"identifier" : "CCF0B552-7BFD-4FA0-9C12-734BFD12D6D3",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-8-plus-2",
"modelName" : "iPhone 8 Plus",
"name" : "iPhone 8 Plus"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.5 (17F61)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad8,9",
"identifier" : "700B9B9B-6424-44CE-ABA2-11F9A7BAD928",
"architecture" : "x86_64",
"modelUTI" : "com.apple.ipad-pro-11-2nd-1",
"modelName" : "iPad Pro (11-inch) (2nd generation)",
"name" : "iPad Pro (11-inch) (2nd generation)"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.4 (17L255)",
"available" : true,
"platform" : "com.apple.platform.appletvsimulator",
"modelCode" : "AppleTV6,2",
"identifier" : "6109995A-CC6D-4924-A4D9-4D70D00A21D7",
"architecture" : "x86_64",
"modelUTI" : "com.apple.apple-tv-4k",
"modelName" : "Apple TV 4K (at 1080p)",
"name" : "Apple TV 4K (at 1080p)"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.5 (17F61)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone12,1",
"identifier" : "00AA5E2C-9A31-471F-B484-DC6D5ABB8143",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-11-1",
"modelName" : "iPhone 11",
"name" : "iPhone 11"
},
{
"simulator" : true,
"operatingSystemVersion" : "11.0.1 (15A8401)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone9,2",
"identifier" : "9269A40B-B790-45DD-95B3-60FE4D9F8897",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-7-plus-1",
"modelName" : "iPhone 7 Plus",
"name" : "iPhone 7 Plus"
},
{
"simulator" : true,
"operatingSystemVersion" : "11.0.1 (15A8401)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone9,1",
"identifier" : "2B8DA5EF-F185-400D-8B4C-8AAA180F3CB3",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-7-1",
"modelName" : "iPhone 7",
"name" : "iPhone 7"
},
{
"simulator" : true,
"operatingSystemVersion" : "11.0.1 (15A8401)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad6,8",
"identifier" : "FF53C8E7-D70A-4E84-8EDF-90433990AA70",
"architecture" : "x86_64",
"modelUTI" : "com.apple.ipad-pro-a1652-b4b5b9",
"modelName" : "iPad Pro (12.9-inch)",
"name" : "iPad Pro (12.9-inch)"
},
{
"simulator" : true,
"operatingSystemVersion" : "11.0.1 (15A8401)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad6,4",
"identifier" : "1DC8F8F3-2D42-4DCD-89DE-98E8FF8C33C6",
"architecture" : "x86_64",
"modelUTI" : "com.apple.ipad-pro-9point7-a1674-b9b7ba",
"modelName" : "iPad Pro (9.7-inch)",
"name" : "iPad Pro (9.7-inch)"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.5 (17F61)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone12,8",
"identifier" : "444D1EE3-0A9B-40D0-8768-1C058AC7F90D",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-se-1",
"modelName" : "iPhone SE (2nd generation)",
"name" : "iPhone SE (2nd generation)"
},
{
"simulator" : true,
"operatingSystemVersion" : "11.0.1 (15A8401)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad7,1",
"identifier" : "6EBC4541-CA14-4626-B413-182E609AE0E4",
"architecture" : "x86_64",
"modelUTI" : "com.apple.ipad-pro-a1670-1",
"modelName" : "iPad Pro (12.9-inch) (2nd generation)",
"name" : "iPad Pro (12.9-inch) (2nd generation)"
},
{
"simulator" : true,
"operatingSystemVersion" : "11.0.1 (15A8401)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad7,3",
"identifier" : "425DBF22-6FB1-48E0-AAB7-426EF3B12FAE",
"architecture" : "x86_64",
"modelUTI" : "com.apple.ipad-pro-10point5-a1701-1",
"modelName" : "iPad Pro (10.5-inch)",
"name" : "iPad Pro (10.5-inch)"
},
{
"simulator" : true,
"operatingSystemVersion" : "11.0.1 (15A8401)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone7,2",
"identifier" : "5D88F7E8-F4E0-4A2F-BA46-7C39539DF227",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-6-b4b5b9",
"modelName" : "iPhone 6",
"name" : "iPhone 6"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.5 (17F61)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone12,3",
"identifier" : "D4E85F14-6E0D-47AB-B541-EACAD868A267",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-11-pro-1",
"modelName" : "iPhone 11 Pro",
"name" : "iPhone 11 Pro"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.5 (17F61)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad7,12",
"identifier" : "CB48C4ED-7998-4CCC-9501-580C4B20B080",
"architecture" : "x86_64",
"modelUTI" : "com.apple.ipad-7-wwan-1",
"modelName" : "iPad (7th generation)",
"name" : "iPad (7th generation)"
},
{
"simulator" : true,
"operatingSystemVersion" : "6.2.1 (17T531)",
"available" : true,
"platform" : "com.apple.platform.watchsimulator",
"modelCode" : "Watch5,4",
"identifier" : "E75DC2E5-305D-4F86-8D8D-145992CB6BF8",
"architecture" : "i386",
"modelUTI" : "com.apple.watch-series5-1",
"modelName" : "Apple Watch Series 5 - 44mm",
"name" : "Apple Watch Series 5 - 44mm"
},
{
"simulator" : true,
"operatingSystemVersion" : "11.0.1 (15A8401)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone7,1",
"identifier" : "55DC6839-B2BC-404E-8360-4432EACC0D80",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-6-plus-b4b5b9",
"modelName" : "iPhone 6 Plus",
"name" : "iPhone 6 Plus"
},
{
"simulator" : true,
"operatingSystemVersion" : "11.0.1 (15A8401)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone8,4",
"identifier" : "D96F3E01-2468-4595-8B85-FD6B35E133C7",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-se-a1662-aeb1b8",
"modelName" : "iPhone SE (1st generation)",
"name" : "iPhone SE"
},
{
"simulator" : true,
"operatingSystemVersion" : "11.0.1 (15A8401)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone8,1",
"identifier" : "9CE60E9B-BFA8-439A-9D32-ECDABF0AB34A",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-6s-b9b7ba",
"modelName" : "iPhone 6s",
"name" : "iPhone 6s"
}
]
[ +9 ms] /Users/khnykin/Projects/dependencies/AndroidSDK/platform-tools/adb -s emulator-5554 shell getprop
[ +46 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
[ +9 ms] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[ +2 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[ +88 ms] Found plugin flutter_plugin at /Applications/here_av_excluded/issue_flutter_hot_restart2/flutter_plugin/
[ +72 ms] Found plugin flutter_plugin at /Applications/here_av_excluded/issue_flutter_hot_restart2/flutter_plugin/
[ +74 ms] Generating /Applications/here_av_excluded/issue_flutter_hot_restart2/flutter_plugin/example/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java
[ +36 ms] ro.hardware = ranchu
[ +28 ms] Using hardware rendering with device Android SDK built for x86 64. If you get graphics artifacts, consider enabling software rendering with "--enable-software-rendering".
[ +22 ms] Launching lib/main.dart on Android SDK built for x86 64 in debug mode...
[ +8 ms] /Users/khnykin/Projects/dependencies/flutter/bin/cache/dart-sdk/bin/dart /Users/khnykin/Projects/dependencies/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot
--sdk-root /Users/khnykin/Projects/dependencies/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --target=flutter --debugger-module-names
-Ddart.developer.causal_async_stacks=true --output-dill /var/folders/zg/cqcc9h8505nbjmms9vp5pk75xxkxjj/T/flutter_tool.P92nX6/app.dill --packages
/Applications/here_av_excluded/issue_flutter_hot_restart2/flutter_plugin/example/.packages -Ddart.vm.profile=false -Ddart.vm.product=false
--bytecode-options=source-positions,local-var-info,debugger-stops,instance-field-initializers,keep-unreachable-code,avoid-closure-call-instructions --enable-asserts --track-widget-creation
--filesystem-scheme org-dartlang-root --initialize-from-dill build/cache.dill
[ +17 ms] executing: /Users/khnykin/Projects/dependencies/AndroidSDK/build-tools/29.0.3/aapt dump xmltree
/Applications/here_av_excluded/issue_flutter_hot_restart2/flutter_plugin/example/build/app/outputs/apk/app.apk AndroidManifest.xml
[ +21 ms] Exit code 0 from: /Users/khnykin/Projects/dependencies/AndroidSDK/build-tools/29.0.3/aapt dump xmltree
/Applications/here_av_excluded/issue_flutter_hot_restart2/flutter_plugin/example/build/app/outputs/apk/app.apk AndroidManifest.xml
[ ] N: android=http://schemas.android.com/apk/res/android
E: manifest (line=2)
A: android:versionCode(0x0101021b)=(type 0x10)0x1
A: android:versionName(0x0101021c)="1.0" (Raw: "1.0")
A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1c
A: android:compileSdkVersionCodename(0x01010573)="9" (Raw: "9")
A: package="com.example.flutter_plugin_example" (Raw: "com.example.flutter_plugin_example")
A: platformBuildVersionCode=(type 0x10)0x1c
A: platformBuildVersionName=(type 0x10)0x9
E: uses-sdk (line=7)
A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10
A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1c
E: uses-permission (line=14)
A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
E: application (line=22)
A: android:label(0x01010001)="flutter_plugin_example" (Raw: "flutter_plugin_example")
A: android:icon(0x01010002)=@0x7f080000
A: android:name(0x01010003)="io.flutter.app.FlutterApplication" (Raw: "io.flutter.app.FlutterApplication")
A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw: "androidx.core.app.CoreComponentFactory")
E: activity (line=28)
A: android:theme(0x01010000)=@0x7f0a0000
A: android:name(0x01010003)="com.example.flutter_plugin_example.MainActivity" (Raw: "com.example.flutter_plugin_example.MainActivity")
A: android:launchMode(0x0101001d)=(type 0x10)0x1
A: android:configChanges(0x0101001f)=(type 0x11)0x40003fb4
A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff
E: meta-data (line=42)
A: android:name(0x01010003)="io.flutter.embedding.android.NormalTheme" (Raw: "io.flutter.embedding.android.NormalTheme")
A: android:resource(0x01010025)=@0x7f0a0001
E: meta-data (line=52)
A: android:name(0x01010003)="io.flutter.embedding.android.SplashScreenDrawable" (Raw: "io.flutter.embedding.android.SplashScreenDrawable")
A: android:resource(0x01010025)=@0x7f040000
E: intent-filter (line=56)
E: action (line=57)
A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
E: category (line=59)
A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
E: meta-data (line=66)
A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding")
A: android:value(0x01010024)=(type 0x10)0x2
[ +10 ms] executing: /Users/khnykin/Projects/dependencies/AndroidSDK/platform-tools/adb -s emulator-5554 shell -x logcat -v time -t 1
[ +52 ms] Exit code 0 from: /Users/khnykin/Projects/dependencies/AndroidSDK/platform-tools/adb -s emulator-5554 shell -x logcat -v time -t 1
[ ] --------- beginning of main
06-08 17:14:03.453 I/GnssLocationProvider( 1893): WakeLock released by handleMessage(REPORT_SV_STATUS, 0, com.android.server.location.GnssLocationProvider$SvStatusInfo@726f03d)
[ +17 ms] <- compile package:flutter_plugin_example/main.dart
[ +13 ms] executing: /Users/khnykin/Projects/dependencies/AndroidSDK/platform-tools/adb version
[ +30 ms] Android Debug Bridge version 1.0.41
Version 29.0.5-5949299
Installed as /Users/khnykin/Projects/dependencies/AndroidSDK/platform-tools/adb
[ +3 ms] executing: /Users/khnykin/Projects/dependencies/AndroidSDK/platform-tools/adb start-server
[ +20 ms] Building APK
[ +19 ms] Running Gradle task 'assembleDebug'...
[ +2 ms] gradle.properties already sets `android.enableR8`
[ +7 ms] Using gradle from /Applications/here_av_excluded/issue_flutter_hot_restart2/flutter_plugin/example/android/gradlew.
[ +1 ms] /Applications/here_av_excluded/issue_flutter_hot_restart2/flutter_plugin/example/android/gradlew mode: 33261 rwxr-xr-x.
[+48350 ms] executing: /usr/bin/plutil -convert json -o - /Applications/Android Studio.app/Contents/Info.plist
[ +16 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Applications/Android Studio.app/Contents/Info.plist
[ ] {"CFBundleName":"Android
Studio","JVMOptions":{"ClassPath":"$APP_PACKAGE\/Contents\/lib\/bootstrap.jar:$APP_PACKAGE\/Contents\/lib\/extensions.jar:$APP_PACKAGE\/Contents\/lib\/util.jar:$APP_PACKAGE\/Contents\/lib\/jdom.jar:
$APP_PACKAGE\/Contents\/lib\/log4j.jar:$APP_PACKAGE\/Contents\/lib\/trove4j.jar:$APP_PACKAGE\/Contents\/lib\/jna.jar","JVMVersion":"1.8*,1.8+","WorkingDirectory":"$APP_PACKAGE\/Contents\/bin","MainC
lass":"com.intellij.idea.Main","Properties":{"idea.paths.selector":"AndroidStudio4.0","idea.executable":"studio","idea.platform.prefix":"AndroidStudio","idea.home.path":"$APP_PACKAGE\/Contents"}},"N
SDesktopFolderUsageDescription":"An application in Android Studio requests access to the user's Desktop
folder.","LSArchitecturePriority":["x86_64"],"CFBundleVersion":"AI-193.6911.18.40.6514223","CFBundleDevelopmentRegion":"English","NSCameraUsageDescription":"An application in Android Studio requests
access to the device's camera.","CFBundleDocumentTypes":[{"CFBundleTypeName":"Android Studio Project
File","CFBundleTypeExtensions":["ipr"],"CFBundleTypeRole":"Editor","CFBundleTypeIconFile":"studio.icns"},{"CFBundleTypeName":"All
documents","CFBundleTypeExtensions":["*"],"CFBundleTypeOSTypes":["****"],"CFBundleTypeRole":"Editor","LSTypeIsPackage":false}],"NSSupportsAutomaticGraphicsSwitching":true,"CFBundlePackageType":"APPL
","CFBundleIconFile":"studio.icns","NSHighResolutionCapable":true,"CFBundleShortVersionString":"4.0","NSMicrophoneUsageDescription":"An application in Android Studio requests access to the device's
microphone.","CFBundleInfoDictionaryVersion":"6.0","CFBundleExecutable":"studio","NSLocationUsageDescription":"An application in Android Studio requests access to the user's location
information.","LSRequiresNativeExecution":"YES","CFBundleURLTypes":[{"CFBundleTypeRole":"Editor","CFBundleURLName":"Stacktrace","CFBundleURLSchemes":["idea"]}],"CFBundleIdentifier":"com.google.andro
id.studio","LSApplicationCategoryType":"public.app-category.developer-tools","CFBundleSignature":"????","LSMinimumSystemVersion":"10.8","NSDocumentsFolderUsageDescription":"An application in Android
Studio requests access to the user's Documents folder.","NSDownloadsFolderUsageDescription":"An application in Android Studio requests access to the user's Downloads
folder.","NSNetworkVolumesUsageDescription":"An application in Android Studio requests access to files on a network volume.","CFBundleGetInfoString":"Android Studio 4.0, build
AI-193.6911.18.40.6514223. Copyright JetBrains s.r.o., (c) 2000-2020","NSRemovableVolumesUsageDescription":"An application in Android Studio requests access to files on a removable volume."}
[ +6 ms] executing: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java -version
[ +105 ms] Exit code 0 from: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java -version
[ ] openjdk version "1.8.0_242-release"
OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6222593)
OpenJDK 64-Bit Server VM (build 25.242-b3-6222593, mixed mode)
[ +2 ms] executing: [/Applications/here_av_excluded/issue_flutter_hot_restart2/flutter_plugin/example/android/]
/Applications/here_av_excluded/issue_flutter_hot_restart2/flutter_plugin/example/android/gradlew -Pverbose=true -Ptarget-platform=android-x64
-Ptarget=/Applications/here_av_excluded/issue_flutter_hot_restart2/flutter_plugin/example/lib/main.dart -Ptrack-widget-creation=true -Pfilesystem-scheme=org-dartlang-root assembleDebug
[+1467 ms] > Task :app:compileFlutterBuildDebug UP-TO-DATE
[ +1 ms] > Task :app:packLibsflutterBuildDebug UP-TO-DATE
[ ] > Task :app:preBuild UP-TO-DATE
[ ] > Task :app:preDebugBuild UP-TO-DATE
[ ] > Task :flutter_plugin:preBuild UP-TO-DATE
[ ] > Task :flutter_plugin:preDebugBuild UP-TO-DATE
[ ] > Task :flutter_plugin:packageDebugRenderscript NO-SOURCE
[ ] > Task :app:checkDebugManifest UP-TO-DATE
[ +74 ms] > Task :app:generateDebugBuildConfig UP-TO-DATE
[ ] > Task :app:cleanMergeDebugAssets
[ ] > Task :flutter_plugin:compileDebugAidl NO-SOURCE
[ ] > Task :app:compileDebugAidl NO-SOURCE
[ ] > Task :app:compileDebugRenderscript NO-SOURCE
[ ] > Task :app:mergeDebugShaders UP-TO-DATE
[ ] > Task :app:compileDebugShaders UP-TO-DATE
[ ] > Task :app:generateDebugAssets UP-TO-DATE
[ ] > Task :flutter_plugin:mergeDebugShaders UP-TO-DATE
[ ] > Task :flutter_plugin:compileDebugShaders UP-TO-DATE
[ ] > Task :flutter_plugin:generateDebugAssets UP-TO-DATE
[ ] > Task :flutter_plugin:packageDebugAssets UP-TO-DATE
[ ] > Task :app:mergeDebugAssets
[ +297 ms] > Task :app:copyFlutterAssetsDebug
[ ] > Task :app:mainApkListPersistenceDebug UP-TO-DATE
[ ] > Task :app:generateDebugResValues UP-TO-DATE
[ ] > Task :app:generateDebugResources UP-TO-DATE
[ ] > Task :flutter_plugin:generateDebugResValues UP-TO-DATE
[ ] > Task :flutter_plugin:compileDebugRenderscript NO-SOURCE
[ ] > Task :flutter_plugin:generateDebugResources UP-TO-DATE
[ ] > Task :flutter_plugin:packageDebugResources UP-TO-DATE
[ +99 ms] > Task :app:mergeDebugResources UP-TO-DATE
[ ] > Task :app:createDebugCompatibleScreenManifests UP-TO-DATE
[ ] > Task :flutter_plugin:checkDebugManifest UP-TO-DATE
[ ] > Task :flutter_plugin:processDebugManifest UP-TO-DATE
[ ] > Task :app:processDebugManifest UP-TO-DATE
[ ] > Task :flutter_plugin:parseDebugLibraryResources UP-TO-DATE
[ ] > Task :flutter_plugin:generateDebugRFile UP-TO-DATE
[ ] > Task :app:processDebugResources UP-TO-DATE
[ ] > Task :flutter_plugin:generateDebugBuildConfig UP-TO-DATE
[ ] > Task :flutter_plugin:compileDebugKotlin UP-TO-DATE
[ ] > Task :flutter_plugin:javaPreCompileDebug UP-TO-DATE
[ ] > Task :flutter_plugin:compileDebugJavaWithJavac UP-TO-DATE
[ ] > Task :flutter_plugin:bundleLibCompileDebug UP-TO-DATE
[ +96 ms] > Task :app:compileDebugKotlin UP-TO-DATE
[ ] > Task :app:javaPreCompileDebug UP-TO-DATE
[ ] > Task :app:compileDebugJavaWithJavac UP-TO-DATE
[ ] > Task :app:compileDebugSources UP-TO-DATE
[ ] > Task :app:processDebugJavaRes NO-SOURCE
[ ] > Task :flutter_plugin:processDebugJavaRes NO-SOURCE
[ ] > Task :flutter_plugin:bundleLibResDebug UP-TO-DATE
[ ] > Task :app:mergeDebugJavaResource UP-TO-DATE
[ ] > Task :flutter_plugin:bundleLibRuntimeDebug UP-TO-DATE
[ ] > Task :flutter_plugin:createFullJarDebug UP-TO-DATE
[ ] > Task :app:checkDebugDuplicateClasses UP-TO-DATE
[ ] > Task :app:desugarDebugFileDependencies UP-TO-DATE
[ ] > Task :app:transformClassesWithDexBuilderForDebug UP-TO-DATE
[ ] > Task :app:mergeExtDexDebug UP-TO-DATE
[ +93 ms] > Task :app:mergeDexDebug UP-TO-DATE
[ ] > Task :app:validateSigningDebug UP-TO-DATE
[ ] > Task :app:signingConfigWriterDebug UP-TO-DATE
[ ] > Task :app:mergeDebugJniLibFolders UP-TO-DATE
[ ] > Task :flutter_plugin:generateJsonModelDebug UP-TO-DATE
[ +100 ms] > Task :flutter_plugin:externalNativeBuildDebug
[ ] Build test_issue_armeabi-v7a
[ ] ninja: no work to do.
[ ] Build test_issue_arm64-v8a
[ ] ninja: no work to do.
[ ] Build test_issue_x86
[ ] ninja: no work to do.
[ ] Build test_issue_x86_64
[ ] ninja: no work to do.
[ ] > Task :flutter_plugin:mergeDebugJniLibFolders UP-TO-DATE
[ ] > Task :flutter_plugin:mergeDebugNativeLibs UP-TO-DATE
[ ] > Task :flutter_plugin:stripDebugDebugSymbols UP-TO-DATE
[ ] > Task :flutter_plugin:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[ +97 ms] > Task :app:mergeDebugNativeLibs UP-TO-DATE
[ ] > Task :app:stripDebugDebugSymbols UP-TO-DATE
[ +100 ms] > Task :app:packageDebug UP-TO-DATE
[ +83 ms] > Task :app:assembleDebug
[ ] > Task :flutter_plugin:extractDebugAnnotations UP-TO-DATE
[ ] > Task :flutter_plugin:mergeDebugGeneratedProguardFiles UP-TO-DATE
[ ] > Task :flutter_plugin:mergeDebugConsumerProguardFiles UP-TO-DATE
[ ] > Task :flutter_plugin:prepareLintJarForPublish UP-TO-DATE
[ ] > Task :flutter_plugin:mergeDebugJavaResource UP-TO-DATE
[ ] > Task :flutter_plugin:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[ ] > Task :flutter_plugin:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[ ] > Task :flutter_plugin:bundleDebugAar UP-TO-DATE
[ ] > Task :flutter_plugin:compileDebugSources
[ ] > Task :flutter_plugin:assembleDebug
[ ] BUILD SUCCESSFUL in 2s
[ ] 62 actionable tasks: 5 executed, 57 up-to-date
[ +374 ms] Running Gradle task 'assembleDebug'... (completed in 51.4s)
[ +42 ms] calculateSha: LocalDirectory: '/Applications/here_av_excluded/issue_flutter_hot_restart2/flutter_plugin/example/build/app/outputs/apk'/app.apk
[ +68 ms] calculateSha: reading file took 67us
[ +582 ms] calculateSha: computing sha took 581us
[ +4 ms] ✓ Built build/app/outputs/apk/debug/app-debug.apk.
[ +8 ms] executing: /Users/khnykin/Projects/dependencies/AndroidSDK/build-tools/29.0.3/aapt dump xmltree
/Applications/here_av_excluded/issue_flutter_hot_restart2/flutter_plugin/example/build/app/outputs/apk/app.apk AndroidManifest.xml
[ +20 ms] Exit code 0 from: /Users/khnykin/Projects/dependencies/AndroidSDK/build-tools/29.0.3/aapt dump xmltree
/Applications/here_av_excluded/issue_flutter_hot_restart2/flutter_plugin/example/build/app/outputs/apk/app.apk AndroidManifest.xml
[ +1 ms] N: android=http://schemas.android.com/apk/res/android
E: manifest (line=2)
A: android:versionCode(0x0101021b)=(type 0x10)0x1
A: android:versionName(0x0101021c)="1.0" (Raw: "1.0")
A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1c
A: android:compileSdkVersionCodename(0x01010573)="9" (Raw: "9")
A: package="com.example.flutter_plugin_example" (Raw: "com.example.flutter_plugin_example")
A: platformBuildVersionCode=(type 0x10)0x1c
A: platformBuildVersionName=(type 0x10)0x9
E: uses-sdk (line=7)
A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10
A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1c
E: uses-permission (line=14)
A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
E: application (line=22)
A: android:label(0x01010001)="flutter_plugin_example" (Raw: "flutter_plugin_example")
A: android:icon(0x01010002)=@0x7f080000
A: android:name(0x01010003)="io.flutter.app.FlutterApplication" (Raw: "io.flutter.app.FlutterApplication")
A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw: "androidx.core.app.CoreComponentFactory")
E: activity (line=28)
A: android:theme(0x01010000)=@0x7f0a0000
A: android:name(0x01010003)="com.example.flutter_plugin_example.MainActivity" (Raw: "com.example.flutter_plugin_example.MainActivity")
A: android:launchMode(0x0101001d)=(type 0x10)0x1
A: android:configChanges(0x0101001f)=(type 0x11)0x40003fb4
A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff
E: meta-data (line=42)
A: android:name(0x01010003)="io.flutter.embedding.android.NormalTheme" (Raw: "io.flutter.embedding.android.NormalTheme")
A: android:resource(0x01010025)=@0x7f0a0001
E: meta-data (line=52)
A: android:name(0x01010003)="io.flutter.embedding.android.SplashScreenDrawable" (Raw: "io.flutter.embedding.android.SplashScreenDrawable")
A: android:resource(0x01010025)=@0x7f040000
E: intent-filter (line=56)
E: action (line=57)
A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
E: category (line=59)
A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
E: meta-data (line=66)
A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding")
A: android:value(0x01010024)=(type 0x10)0x2
[ +2 ms] Stopping app 'app.apk' on Android SDK built for x86 64.
[ +1 ms] executing: /Users/khnykin/Projects/dependencies/AndroidSDK/platform-tools/adb -s emulator-5554 shell am force-stop com.example.flutter_plugin_example
[ +219 ms] executing: /Users/khnykin/Projects/dependencies/AndroidSDK/platform-tools/adb -s emulator-5554 shell pm list packages com.example.flutter_plugin_example
[ +99 ms] package:com.example.flutter_plugin_example
[ +5 ms] executing: /Users/khnykin/Projects/dependencies/AndroidSDK/platform-tools/adb -s emulator-5554 shell cat /data/local/tmp/sky.com.example.flutter_plugin_example.sha1
[ +78 ms] c6858ca1f225ecb339aaa699463ef70e00fe2099
[ +1 ms] Latest build already installed.
[ ] Android SDK built for x86 64 startApp
[ +4 ms] executing: /Users/khnykin/Projects/dependencies/AndroidSDK/platform-tools/adb -s emulator-5554 shell am start -a android.intent.action.RUN -f 0x20000000 --ez enable-background-compilation
true --ez enable-dart-profiling true --ez enable-checked-mode true --ez verify-entry-points true com.example.flutter_plugin_example/com.example.flutter_plugin_example.MainActivity
[ +201 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=com.example.flutter_plugin_example/.MainActivity (has extras) }
[ ] Waiting for observatory port to be available...
[+1408 ms] Observatory URL on device: http://127.0.0.1:33262/9-g6b1n2gm8=/
[ +1 ms] executing: /Users/khnykin/Projects/dependencies/AndroidSDK/platform-tools/adb -s emulator-5554 forward tcp:0 tcp:33262
[ +13 ms] 59032
[ ] Forwarded host port 59032 to device port 33262 for Observatory
[ +12 ms] Connecting to service protocol: http://127.0.0.1:59032/9-g6b1n2gm8=/
[ +484 ms] Successfully connected to service protocol: http://127.0.0.1:59032/9-g6b1n2gm8=/
[ +3 ms] Sending to VM service: getVM({})
[ +12 ms] Result: {type: VM, name: vm, architectureBits: 64, hostCPU: Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz, operatingSystem: android, targetCPU: x64, version: 2.8.3 (stable) (Tue May 26
18:39:38 2020 +0200) on "android_x64", _profilerMode: VM, _nativeZoneMemor...
[ +5 ms] Sending to VM service: getIsolate({isolateId: isolates/1610867778456631})
[ +4 ms] Sending to VM service: _flutter.listViews({})
[ +12 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x70558ce4ef20, isolate: {type: @Isolate, fixedId: true, id: isolates/1610867778456631, name:
main.dart$main-1610867778456631, number: 1610867778456631}}]}
[ +6 ms] DevFS: Creating new filesystem on the device (null)
[ +1 ms] Sending to VM service: _createDevFS({fsName: example})
[ +47 ms] Result: {type: FileSystem, name: example, uri: file:///data/user/0/com.example.flutter_plugin_example/code_cache/exampleEPNLDI/example/}
[ ] DevFS: Created new filesystem on the device (file:///data/user/0/com.example.flutter_plugin_example/code_cache/exampleEPNLDI/example/)
[ +2 ms] Updating assets
[ +143 ms] Syncing files to device Android SDK built for x86 64...
[ +2 ms] Scanning asset files
[ +3 ms] <- reset
[ ] Compiling dart to kernel with 0 updated files
[ +1 ms] <- recompile package:flutter_plugin_example/main.dart b9abd9e2-a573-4540-8cb0-375e574969d1
[ ] <- b9abd9e2-a573-4540-8cb0-375e574969d1
[ +75 ms] Updating files
[ +196 ms] Result: {type: Isolate, id: isolates/1610867778456631, name: main, number: 1610867778456631, _originNumber: 1610867778456631, startTime: 1591629298580, _heaps: {new: {type: HeapSpace,
name: new, vmName: Scavenger, collections: 0, avgCollectionPeriodMillis...
[ +30 ms] I/Choreographer(24314): Skipped 49 frames! The application may be doing too much work on its main thread.
[ +27 ms] D/EGL_emulation(24314): eglMakeCurrent: 0x705586e5fe40: ver 3 0 (tinfo 0x705586fdb2e0)
[ +126 ms] DevFS: Sync finished
[ +2 ms] Syncing files to device Android SDK built for x86 64... (completed in 464ms)
[ ] Synced 0.9MB.
[ +2 ms] Sending to VM service: _flutter.listViews({})
[ +1 ms] I/OpenGLRenderer(24314): Davey! duration=957ms; Flags=1, IntendedVsync=880796798925565, Vsync=880797615592199, OldestInputEvent=9223372036854775807, NewestInputEvent=0,
HandleInputStart=880797626645061, AnimationStart=880797626750061, PerformTraversalsStart=880797626790061, DrawStart=880797644471061, SyncQueued=880797659426061, SyncStart=880797661657061,
IssueDrawCommandsStart=880797665038061, SwapBuffers=880797727392061, FrameCompleted=880797758869061, DequeueBufferDuration=9098000, QueueBufferDuration=1562000,
[ +37 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x70558ce4ef20, isolate: {type: @Isolate, fixedId: true, id: isolates/1610867778456631, name:
main.dart$main-1610867778456631, number: 1610867778456631}}]}
[ +1 ms] <- accept
[ ] Connected to _flutterView/0x70558ce4ef20.
[ +1 ms] Flutter run key commands.
[ +2 ms] r Hot reload. 🔥🔥🔥
[ +2 ms] R Hot restart.
[ ] h Repeat this help message.
[ ] d Detach (terminate "flutter run" but leave application running).
[ ] c Clear the screen
[ ] q Quit (terminate the application on the device).
[ ] An Observatory debugger and profiler on Android SDK built for x86 64 is available at: http://127.0.0.1:59032/9-g6b1n2gm8=/
[ +7 ms] I/flutter (24314): init
[ +100 ms] I/flutter (24314): ~init
[ +332 ms] I/flutter (24314): _helperIsolate
[ +380 ms] D/EGL_emulation(24314): eglMakeCurrent: 0x7055854d9580: ver 3 0 (tinfo 0x70558cfd7680)
[+19101 ms] Performing hot restart...
[ +2 ms] Refreshing active FlutterViews before restarting.
[ ] Sending to VM service: _flutter.listViews({})
[ +23 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x70558ce4ef20, isolate: {type: @Isolate, fixedId: true, id: isolates/1610867778456631, name:
main.dart$main-1610867778456631, number: 1610867778456631}}]}
[ +23 ms] Scanned through 471 files in 22ms
[ ] Syncing files to device Android SDK built for x86 64...
[ ] Scanning asset files
[ +1 ms] <- reset
[ ] Compiling dart to kernel with 0 updated files
[ +1 ms] <- recompile package:flutter_plugin_example/main.dart 7a8c022c-a460-4ff4-a0dc-fb92f5a2011f
[ ] <- 7a8c022c-a460-4ff4-a0dc-fb92f5a2011f
[ +65 ms] Updating files
[ +979 ms] DevFS: Sync finished
[ ] Syncing files to device Android SDK built for x86 64... (completed in 1,048ms)
[ ] Synced 19.3MB.
[ ] <- accept
[ ] Sending to VM service: getIsolate({isolateId: isolates/1610867778456631})
[ +21 ms] Result: {type: Isolate, id: isolates/1610867778456631, name: main, number: 1610867778456631, _originNumber: 1610867778456631, startTime: 1591629298579, _heaps: {new: {type: HeapSpace,
name: new, vmName: Scavenger, collections: 2, avgCollectionPeriodMillis...
[ +30 ms] Sending to VM service: _flutter.runInView({viewId: _flutterView/0x70558ce4ef20, mainScript:
file:///data/user/0/com.example.flutter_plugin_example/code_cache/exampleEPNLDI/example/lib/main.dart.dill, assetDirectory:
file:///data/user/0/com.example.flutter_plugin_example/code_cache/exampleEPNLDI/example/build/flutter_assets})
[ +309 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: IsolateStart, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321042}}
[ +1 ms] Sending to VM service: getIsolate({isolateId: isolates/1579660122180531})
[ +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321054, extensionRPC: ext.ui.window.scheduleFrame}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321068, extensionRPC: ext.dart.io.getHttpEnableTimelineLogging}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321068, extensionRPC: ext.dart.io.setHttpEnableTimelineLogging}}
[ +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321068, extensionRPC: ext.dart.io.getSocketProfile}}
[ +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321069, extensionRPC: ext.dart.io.startSocketProfiling}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321069, extensionRPC: ext.dart.io.pauseSocketProfiling}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321069, extensionRPC: ext.dart.io.clearSocketProfile}}
[ +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321069, extensionRPC: ext.dart.io.getVersion}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: IsolateExit, isolate: {type: @Isolate, id: isolates/1610867778456631, name: main, number: 1610867778456631},
timestamp: 1591629321115}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: IsolateRunnable, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321282}}
[ +1 ms] Result: {type: Success, view: {type: FlutterView, id: _flutterView/0x70558ce4ef20, isolate: {type: @Isolate, fixedId: true, id: isolates/1579660122180531, name:
main.dart$main-1579660122180531, number: 1579660122180531}}}
[ +1 ms] Isolate is runnable.
[ ] Sending to VM service: _flutter.listViews({})
[ +19 ms] Result: {type: Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531, _originNumber: 1579660122180531, startTime: 1591629321011, _heaps: {new: {type: HeapSpace,
name: new, vmName: Scavenger, collections: 0, avgCollectionPeriodMillis...
[ +12 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x70558ce4ef20, isolate: {type: @Isolate, fixedId: true, id: isolates/1579660122180531, name:
main.dart$main-1579660122180531, number: 1579660122180531}}]}
[ +1 ms] Hot restart performed in 1,482ms.
[ +4 ms] Performing hot restart... (completed in 1,514ms)
[ ] Restarted application in 1,515ms.
[ +3 ms] I/flutter (24314): init
[ +18 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: IsolateExit, isolate: {type: @Isolate, id: isolates/4482477518901359, name: _helperIsolate, number: 4482477518901359},
timestamp: 1591629321362}}
[ ] Sending to VM service: getIsolate({isolateId: isolates/4482477518901359})
[ +7 ms] I/flutter (24314): ~_helperIsolate
[ +13 ms] Result: {type: Sentinel, kind: Collected, valueAsString: <collected>}
[ +45 ms] I/flutter (24314): ~init
[ +7 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: IsolateStart, isolate: {type: @Isolate, id: isolates/1017336828857743, name: _helperIsolate, number:
1017336828857743}, timestamp: 1591629321443}}
[ ] Sending to VM service: getIsolate({isolateId: isolates/1017336828857743})
[ +13 ms] Result: {type: Isolate, id: isolates/1017336828857743, name: _helperIsolate, number: 1017336828857743, _originNumber: 1017336828857743, startTime: 1591629321428, _heaps: {new: {type:
HeapSpace, name: new, vmName: Scavenger, collections: 0, avgCollectionPe...
[ +7 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1017336828857743, name: _helperIsolate, number:
1017336828857743}, timestamp: 1591629321463, extensionRPC: ext.dart.io.getHttpEnableTimelineLogging}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1017336828857743, name: _helperIsolate, number:
1017336828857743}, timestamp: 1591629321463, extensionRPC: ext.dart.io.setHttpEnableTimelineLogging}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1017336828857743, name: _helperIsolate, number:
1017336828857743}, timestamp: 1591629321463, extensionRPC: ext.dart.io.getSocketProfile}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1017336828857743, name: _helperIsolate, number:
1017336828857743}, timestamp: 1591629321463, extensionRPC: ext.dart.io.startSocketProfiling}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1017336828857743, name: _helperIsolate, number:
1017336828857743}, timestamp: 1591629321463, extensionRPC: ext.dart.io.pauseSocketProfiling}}
[ +3 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1017336828857743, name: _helperIsolate, number:
1017336828857743}, timestamp: 1591629321463, extensionRPC: ext.dart.io.clearSocketProfile}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1017336828857743, name: _helperIsolate, number:
1017336828857743}, timestamp: 1591629321464, extensionRPC: ext.dart.io.getVersion}}
[ +151 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321618, extensionRPC: ext.flutter.reassemble}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321618, extensionRPC: ext.flutter.exit}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321618, extensionRPC: ext.flutter.saveCompilationTrace}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321619, extensionRPC: ext.flutter.platformOverride}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321620, extensionRPC: ext.flutter.evict}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321621, extensionRPC: ext.flutter.timeDilation}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321622, extensionRPC: ext.flutter.debugPaint}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321622, extensionRPC: ext.flutter.debugPaintBaselinesEnabled}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321622, extensionRPC: ext.flutter.repaintRainbow}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321622, extensionRPC: ext.flutter.debugCheckElevationsEnabled}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321622, extensionRPC: ext.flutter.debugDumpLayerTree}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321622, extensionRPC: ext.flutter.debugDumpRenderTree}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321622, extensionRPC: ext.flutter.debugDumpSemanticsTreeInTraversalOrder}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321622, extensionRPC: ext.flutter.debugDumpSemanticsTreeInInverseHitTestOrder}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321622, extensionRPC: ext.flutter.debugDumpApp}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321622, extensionRPC: ext.flutter.showPerformanceOverlay}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321622, extensionRPC: ext.flutter.didSendFirstFrameEvent}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321624, extensionRPC: ext.flutter.didSendFirstFrameRasterizedEvent}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321624, extensionRPC: ext.flutter.fastReassemble}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321624, extensionRPC: ext.flutter.profileWidgetBuilds}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321626, extensionRPC: ext.flutter.debugAllowBanner}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321627, extensionRPC: ext.flutter.debugWidgetInspector}}
[ +14 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321642, extensionRPC: ext.flutter.inspector.structuredErrors}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321642, extensionRPC: ext.flutter.inspector.show}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321643, extensionRPC: ext.flutter.inspector.trackRebuildDirtyWidgets}}
[ +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321644, extensionRPC: ext.flutter.inspector.trackRepaintWidgets}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321645, extensionRPC: ext.flutter.inspector.disposeAllGroups}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321645, extensionRPC: ext.flutter.inspector.disposeGroup}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321646, extensionRPC: ext.flutter.inspector.isWidgetTreeReady}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321648, extensionRPC: ext.flutter.inspector.disposeId}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321651, extensionRPC: ext.flutter.inspector.setPubRootDirectories}}
[ +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321652, extensionRPC: ext.flutter.inspector.setSelectionById}}
[ +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321654, extensionRPC: ext.flutter.inspector.getParentChain}}
[ +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321656, extensionRPC: ext.flutter.inspector.getProperties}}
[ +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321658, extensionRPC: ext.flutter.inspector.getChildren}}
[ +1 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321659, extensionRPC: ext.flutter.inspector.getChildrenSummaryTree}}
[ +4 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321664, extensionRPC: ext.flutter.inspector.getChildrenDetailsSubtree}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321665, extensionRPC: ext.flutter.inspector.getRootWidget}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321666, extensionRPC: ext.flutter.inspector.getRootRenderObject}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321667, extensionRPC: ext.flutter.inspector.getRootWidgetSummaryTree}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321667, extensionRPC: ext.flutter.inspector.getDetailsSubtree}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321667, extensionRPC: ext.flutter.inspector.getSelectedRenderObject}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321668, extensionRPC: ext.flutter.inspector.getSelectedWidget}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321668, extensionRPC: ext.flutter.inspector.getSelectedSummaryWidget}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321668, extensionRPC: ext.flutter.inspector.isWidgetCreationTracked}}
[ ] Notification from VM: {streamId: Isolate, event: {type: Event, kind: ServiceExtensionAdded, isolate: {type: @Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531},
timestamp: 1591629321668, extensionRPC: ext.flutter.inspector.screenshot}}
[ +19 ms] Notification from VM: {streamId: Isolate, event: {type: Event, kind: IsolateRunnable, isolate: {type: @Isolate, id: isolates/1017336828857743, name: _helperIsolate, number:
1017336828857743}, timestamp: 1591629321691}}
[ ] Sending to VM service: getIsolate({isolateId: isolates/1017336828857743})
[ +21 ms] Result: {type: Isolate, id: isolates/1017336828857743, name: _helperIsolate, number: 1017336828857743, _originNumber: 1579660122180531, startTime: 1591629321428, _heaps: {new: {type:
HeapSpace, name: new, vmName: Scavenger, collections: 0, avgCollectionPe...
[ +14 ms] I/flutter (24314): _helperIsolate
[+11728 ms] Performing hot restart...
[ ] Refreshing active FlutterViews before restarting.
[ ] Sending to VM service: _flutter.listViews({})
[ +5 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x70558ce4ef20, isolate: {type: @Isolate, fixedId: true, id: isolates/1579660122180531, name:
main.dart$main-1579660122180531, number: 1579660122180531}}]}
[ +19 ms] Scanned through 471 files in 18ms
[ ] Syncing files to device Android SDK built for x86 64...
[ ] Scanning asset files
[ +1 ms] <- reset
[ ] Compiling dart to kernel with 0 updated files
[ +1 ms] <- recompile package:flutter_plugin_example/main.dart d7abc32d-138f-4c14-83f5-87e0b2d58da6
[ ] <- d7abc32d-138f-4c14-83f5-87e0b2d58da6
[ +63 ms] Updating files
[ +956 ms] DevFS: Sync finished
[ ] Syncing files to device Android SDK built for x86 64... (completed in 1,022ms)
[ ] Synced 19.3MB.
[ ] <- accept
[ ] Sending to VM service: getIsolate({isolateId: isolates/1579660122180531})
[ ] Sending to VM service: kill({isolateId: isolates/1017336828857743})
[ +9 ms] Result: {type: Isolate, id: isolates/1579660122180531, name: main, number: 1579660122180531, _originNumber: 1579660122180531, startTime: 1591629321011, _heaps: {new: {type: HeapSpace,
name: new, vmName: Scavenger, collections: 2, avgCollectionPeriodMillis...
```
<!--
Run `flutter analyze` and attach any output of that command below.
If there are any analysis errors, try resolving them before filing this issue.
-->
```
Analyzing example...
No issues found! (ran in 4.9s)
```
<!-- Finally, paste the output of running `flutter doctor -v` here. -->
```
[✓] Flutter (Channel stable, v1.17.2, on Mac OS X 10.15.5 19F101, locale en-DE)
• Flutter version 1.17.2 at /Users/khnykin/Projects/dependencies/flutter
• Framework revision 5f21edf8b6 (11 days ago), 2020-05-28 12:44:12 -0700
• Engine revision b851c71829
• Dart version 2.8.3
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.3)
• Android SDK at /Users/khnykin/Projects/dependencies/AndroidSDK
• Platform android-29, build-tools 29.0.3
• ANDROID_HOME = /Users/khnykin/Projects/dependencies/AndroidSDK
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6222593)
• All Android licenses accepted.
[✓] Xcode - develop for iOS and macOS (Xcode 11.5)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 11.5, Build version 11E608c
• CocoaPods version 1.9.1
[✓] Android Studio (version 4.0)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin version 46.0.2
• Dart plugin version 193.7361
• Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6222593)
[!] IntelliJ IDEA Community Edition (version 2018.3.1)
• IntelliJ at /Applications/IntelliJ IDEA CE.app
✗ Flutter plugin not installed; this adds Flutter specific functionality.
✗ Dart plugin not installed; this adds Dart specific functionality.
• For information about installing plugins, see
https://flutter.dev/intellij-setup/#installing-the-plugins
[✓] Connected device (1 available)
• Android SDK built for x86 64 • emulator-5554 • android-x64 • Android 9 (API 28) (emulator)
! Doctor found issues in 1 category.
```
</details>
|
platform-android,engine,dependency: dart,t: hot reload,has reproducible steps,P2,found in release: 3.7,found in release: 3.9,team-android,triaged-android
|
low
|
Critical
|
634,731,356 |
flutter
|
Support profile engine builds for simulators
|
Today it is reported that `--ios --runtime-mode profile --simulator` can't be built, but an engine configured like this is needed for users who would like to run tests on AOT builds.
@mehmetf @chinmaygarde
Separately, exposing this testing configuration to the Flutter tool would require building and packaging such an engine in the usual way on our infrastructure and removing certain gates from the Flutter tool. That work is not part of this issue, and should go in a separate issue if it's needed.
@jonahwilliams
|
a: tests,c: new feature,team,platform-ios,engine,P3,team-ios,triaged-ios
|
low
|
Major
|
634,738,616 |
PowerToys
|
Window Snapping/Start Menu problem with 3rd party software macros
|
Hey there,
I use a 60% keyboard, specifically the Anne Pro 2 for my machine. In the software included (obinskit) with the keyboard it allows you to make macros in order to compensate for the missing keys. I previously had made macros for window management, but after I installed powertools my macros for snapping windows to the left and right ( "Windows+left arrow " and "Windows+ right arrow") does still snap my windows to the desired direction, **BUT** it also triggers the start menu to pop up after the window has snapped. I have to then alt+tab or mouse click to get back to the window I was using in order to make it the currently focused window.
I've tried pulling up Carnac to see what was happening, but the shown keys pressed are as should be, nothing out of the ordinary and no extra key presses. But still the start menu keeps showing up. To be more clear this only happens with snapping windows to the left and right, not up or down.
I also checked my macros to see if the timing of the different key presses are registering at different times, but they are set to go off and stop and that same exact times.
The thing is whenever I manually push all the buttons to snap the windows left and right without using macros, the commands work then works as it should and the start menu does not pop up
Kinda out of ideas, does anyone else who uses macros to snap windows have a similar problem.
Thanks for the input
# Environment
```
Windows build number: Microsoft Windows [Version 10.0.18363.836]
PowerToys version: 0.18.2
:
```
# Steps to reproduce
Press macro key for Window snapping left or right via Obinkit.
# Actual behavior
Window does snap left or right, **BUT** also opens up the start menu as if the only key pressed was the Windows Key
Problem does not happen when snapping up or down.
|
FancyZones-Dragging&UI,Product-FancyZones,Area-App Compat
|
medium
|
Major
|
634,739,093 |
TypeScript
|
"Infer parameter type from usage" produces oddly formatted output
|
<!-- 🚨 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.
-->
When using the "Infer parameter types from usage" quick fix in VS Code, TypeScript sometimes injects the JSDoc type annotation right in the middle of the code. The resulting code looks odd and broken.
<!--
Please try to reproduce the issue with the latest published version. It may have already been fixed.
For npm: `typescript@next`
This is also the 'Nightly' version in the playground: http://www.typescriptlang.org/play/?ts=Nightly
-->
**TypeScript Version:** 4.0.0-dev.20200607
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
infer all from usage
**Code**
Using "Infer parameter type from usage" on this code:
```ts
function doSomething(things) {
const states = things.filter(thing => true);
}
```
produces this output:
```ts
function doSomething(things) {
const /**
* @param {any} thing
*/
states = things.filter(thing => true);
}
```
**Expected behavior:**
TypeScript produces annotated code that is not weirdly broken into different lines
**Actual behavior:**
TypeScript produces annotated code that looks odd and has the JSDoc comment injected in the middle of code
**Playground Link:** Not sure if this functionality is available in the Playground
**Related Issues:** N/A
|
Bug
|
low
|
Critical
|
634,743,612 |
youtube-dl
|
MotorTrend On Demand
|
<!--
######################################################################
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 2020.06.06. 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 **2020.06.06**
- [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.motortrendondemand.com/detail/the-650hp-clevo-commando-returns/153906/
- Site: https://www.motortrendondemand.com/
## Description
<!--
Provide any additional information.
If work on your issue requires account credentials please provide them or explain how one can obtain them.
-->
Used to be able to download just fine from https://www.motortrendondemand.com/ - looks like they changed something to break it, or changed their backend hosting.\
Tried with login and cookies, which used to work, but now it doesn't.
Found a closed request from last year (https://github.com/ytdl-org/youtube-dl/issues/23317) but the solution doesn't seem to work anymore, and the video IDs from the URL changed format.
In addition, it looks like they're now requiring logins. I can provide to someone working on the issue, if they don't want to sign up for a free trial that requires a CC.
|
site-support-request
|
low
|
Critical
|
634,751,414 |
pytorch
|
[RFC][distributed] RFC: c10d ProcessGroup extension and C++ API change
|
# Proposal: c10d ProcessGroup extension and C++ API change
## Purpose
Clients to provide custom implementations of ProcessGroup API and use them as CCL backend without needing to modify PyTorch codebase. Registration mechanism is implemented in https://github.com/pytorch/pytorch/pull/28068.
### Usage example
Implement constructor of a single rank in your custom ProcessGroup called `custom_backend` implemented in c++ module `custom_backend_cpp_module (c++):`
Register your backend (c++, pybind):
```
`dist.Backend.register_backend("**custom_backend**``", py::cpp_function(`**`GetNewRank`**`));`
```
Load your module (py):
```
`torch``.``utils``.``cpp_extension``.``load``(``name``=``"**custom_backend_cpp_module**``"``,`` sources``=[...])`
```
Initialize process group (py):
```
`dist``.``init_process_group``(``backend``=``"**custom_backend**``"``,`` init_method ``=`` ``...)`
```
## Proposed changes to the current API
ProcessGroup API has some inconsistencies, so we’d like to make it more uniform across different functionalities.
For some operations like allgather and reducescatter we allow in-place mode by means of user can specifying in_place = true in options of the corresponding operation. In this mode, user guarantees that inputs are unchanged until the operation completes. Implementors of ProcessGroup can (and are encouraged to) take advantage of this mode to speed up their implementations, e.g. see https://github.com/pytorch/pytorch/pull/33924.
Some operations have multi-gpu versions:
reduce, allreduce, gather where a single process group controls multiple GPUs. These are mostly used by data parallel. [Should we mention: For newer applications, we suggest to have one rank of process group per GPU?]
What we are changing in new API to make it more straightforward:
1) Batched operations (main purpose is to add efficiency by combining tensors) are going to live outside of ProcessGroup API so there is no need to implement them by 3rd party:
allreduce_coalesced, allgather_coalesced
2) adding single-GPU versions of allreduce, gather, scatter
3) removing multi-GPU versions of scatter, gather that aren’t supported by any of existing backends.
## All to all
Current API (**keeping**).
```
virtual std::shared_ptr<ProcessGroup::Work> alltoall(
std::vector<at::Tensor>& outputTensors,
std::vector<at::Tensor>& inputTensors,
const AllToAllOptions& opts = AllToAllOptions()) = 0;
```
Current support: MPI only. (Clients are encouraged to do optimizations based on tensor layout, i.e. not making extra tensor copies if tensors share storage and properly aligned)
Current API (**removing**):
```
virtual std::shared_ptr<ProcessGroup::Work> alltoall_base(
at::Tensor& outputTensor,
at::Tensor& inputTensor,
std::vector<int64_t>& outputSplitSizes,
std::vector<int64_t>& inputSplitSizes,
const AllToAllOptions& opts = AllToAllOptions()) = 0;
```
## All reduce
Current API (keeping until status of multigpu PG is clear):
```
allreduce(std::vector<at::Tensor>& data, const AllreduceOptions& opts) = 0;
```
*Current support*: coalesced version is supported in GLOO only.
**Adding** single tensor API:
```
// Not inlcuded in API at the moment: allreduce a single tensor.
allreduce(at::Tensor& tensor, const AllreduceOptions& opts) = 0;
```
**No longer a part of API: all reduce coalesced, it will be moved away from process group (no need for 3rd parties to implement) and included in comms instead.**
```
// Being deprecated and moved to comms, can be done via allreduce_base.
allreduce_coalesced(std::vector<at::Tensor>& tensors,
const AllreduceCoalescedOptions& opts);
```
## Gather
Current API (**not keeping**):
```
gather(std::vector<std::vector<at::Tensor>>& outputTensors,
std::vector<at::Tensor>& inputTensors,
const GatherOptions& opts) = 0;
```
*Current support: *MPI, GLOO only supports single element gather, NCCL does not support gather.
Desirable API:
```
gather(std::vector<at::Tensor>& outputTensors,
at::Tensor& inputTensor,
const GatherOptions& opts) = 0;
```
## All gather
Current API:
```
virtual std::shared_ptr<ProcessGroup::Work> allgather(
std::vector<std::vector<at::Tensor>>& outputTensors,
std::vector<at::Tensor>& inputTensors,
const AllgatherOptions& opts = AllgatherOptions())= 0;
```
*Current support: *coalesced version is supported in GLOO only*.*
Desirable API (**adding**)
```
virtual std::shared_ptr<ProcessGroup::Work> allgather(
std::vector<at::Tensor>& outputTensors,
at::Tensor& inputTensor,
const AllgatherOptions& opts = AllgatherOptions()) = 0;
```
(Clients are encouraged to do optimizations based on tensor layout, i.e. not making extra tensor copies if tensors share storage and properly aligned)
**Not part of API (same as with allreduce_coalesced)**
```
// Being deprecated and moved to comms, can be done via allgather_base.
virtual std::shared_ptr<ProcessGroup::Work> allgather_coalesced(
std::vector<std::vector<at::Tensor>>& outputTensorLists,
std::vector<at::Tensor>& inputTensors,
const AllgatherOptions& opts = AllgatherOptions())ß;
```
## Scatter
Current API (**not keeping**):
```
virtual std::shared_ptr<ProcessGroup::Work> scatter(
std::vector<at::Tensor>& outputTensors,
std::vector<std::vector<at::Tensor>>& inputTensors,
const ScatterOptions& opts = ScatterOptions()) = 0;
```
*Current support: *GLOO, MPI supports single tensor version only, NCCL does not support scatter.
Desired API (**adding**):
```
virtual std::shared_ptr<ProcessGroup::Work> scatter(
at::Tensor& outputTensor,
std::vector<at::Tensor>& inputTensors,
const ScatterOptions& opts = ScatterOptions()) = 0;
```
## No changes:
### Reduce
```
reduce(std::vector<at::Tensor>& tensors, const ReduceOptions& opts) = 0;
```
*Current support*: multiple tensors for usecase where ‘tensors’ should live on different GPUs, GLOO, MPI supports single tensor input only. NCCL supports multiple tensors.
### ReduceScatter
Current API:
```
virtual std::shared_ptr<ProcessGroup::Work> reduce_scatter(
std::vector<at::Tensor>& outputTensors,
std::vector<std::vector<at::Tensor>>& inputTensors,
const ReduceScatterOptions& opts = ReduceScatterOptions()) = 0;
```
*Current support: *NCCL only*.*
### Broadcast
```
virtual std::shared_ptr<ProcessGroup::Work> broadcast(
std::vector<at::Tensor>& data,
const BroadcastOptions& opts = BroadcastOptions()) = 0;
```
### Barrier
```
barrier(const BarrierOptions& opts) = 0;
```
### Send/receive
```
virtual std::shared_ptr<ProcessGroup::Work> send(
std::vector<at::Tensor>& tensors,
int dstRank,
int tag) = 0;
virtual std::shared_ptr<ProcessGroup::Work> recv(
std::vector<at::Tensor>& tensors,
int srcRank,
int tag) = 0;
virtual std::shared_ptr<ProcessGroup::Work> recvAnysource(
std::vector<at::Tensor>& tensors,
int tag) = 0;
```
## Backend/feature support table
| Backend | ``gloo``| | ``mpi``| | ``nccl`` | |
|----------------|-----|-----|-----|-----|-----|-----|
| Device | CPU | GPU | CPU | GPU | CPU | GPU |
| send | ✓ | ✘ | ✓ | ? | ✘ | ✘ |
| recv | ✓ | ✘ | ✓ | ? | ✘ | ✘ |
| broadcast | ✓ | ✓ | ✓ | ? | ✘ | ✓ |
| all_reduce | ✓ | ✓ | ✓ | ? | ✘ | ✓ |
| reduce | ✓ | ✘ | ✓ | ? | ✘ | ✓ |
| all_gather | ✓ | ✘ | ✓ | ? | ✘ | ✓ |
| gather | ✓ | ✘ | ✓ | ? | ✘ | ✘ |
| scatter | ✓ | ✘ | ✓ | ? | ✘ | ✘ |
| reduce_scatter | ✘ | ✘ | ✘ | ✘ | ✘ | ✓ |
| all_to_all | ✘ | ✘ | ✓ | ? | ✘ | ✘ |
| barrier | ✓ | ✘ | ✓ | ? | ✘ | ✓ |
cc @pietern @mrshenli @pritamdamania87 @zhaojuanmao @satgera @rohan-varma @gqchen @aazzolini @xush6528 @osalpekar
|
oncall: distributed,triaged
|
low
|
Major
|
634,776,712 |
pytorch
|
Better err msg for tensor ctor from sequence
|
The `not a sequence` error message is very unhelpful.
```py
In [18]: torch.as_tensor([(72.4000015258789, 72.1199951171875), 73.36000061035156])
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-18-c8fc179c7fac> in <module>
----> 1 torch.as_tensor([(72.4000015258789, 72.1199951171875), 73.36000061035156])
TypeError: not a sequence
In [19]: torch.tensor([(72.4000015258789, 72.1199951171875), 73.36000061035156])
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-19-9e7f1b333fd9> in <module>
----> 1 torch.tensor([(72.4000015258789, 72.1199951171875), 73.36000061035156])
TypeError: not a sequence
```
|
triaged,enhancement,better-engineering
|
low
|
Critical
|
634,819,223 |
flutter
|
InteractiveViewer `constrained: false` custom default scale
|
## Use case
When I use the InteractiveViewer with `constrained: false`, my Image gets zoomed in a lot. So I have to zoom out to see the full image.
I need contrained to be false, as my image is higher than the viewport and I don't want to combine the InteractiveViewer with a SingleChildScrollView, because this causes many other problems in panning around while zoomed in etc.
As a picture is worth a thousand words:

## Proposal
It would be good, if there were a way to configure the default scale in this situation.
There could be a property called `defaultScale` which has properties like `Cover` which would make the image to be fully visible on the shortest axis. So if my image is very high, then I would see it with full with by default and would have to scroll down if I want to see the rest of the image, but I would not have to scroll left or right.
|
c: new feature,framework,a: quality,c: proposal,P3,team-framework,triaged-framework
|
medium
|
Critical
|
634,857,089 |
pytorch
|
Force JIT to do type inference even when mypy annotated
|
In #38211 I discovered a very interesting aspect of TorchScript's type system, which is that it is staged. Suppose you have a constructor like this:
```
if self.affine:
self.weight = Parameter(torch.Tensor(num_features))
self.bias = Parameter(torch.Tensor(num_features))
else:
self.register_parameter('weight', None)
self.register_parameter('bias', None)
```
In a normal type system, you would have to declare weight/bias as `Optional[Tensor]`, as it is not known at compile time what type they are (you must know the type of affine). However, in TorchScript, the type of the module is not ascribed until after the module has been constructed, at which point we **do** know what the type of `affine` is. So if you don't annotate weight/bias, TorchScript will properly infer `None` or `Tensor` as their types.
Here's the problem: if you annotate weight/bias for mypy, TorchScript will directly use this annotation, and no longer carry out its own type inference. And this in turn may cause code that previously typechecked in TorchScript to stop typechecking. This means that adding *most general* mypy signatures for modules can cause TorchScript to stop working.
There should be some way to force TorchScript to do type inference, even if there is an annotation. The relevant code is pretty easy to change, so the big question is what the syntax for triggering this type inference should be.
cc @gmagogsfm @ezyang @malfet @rgommers @xuzhao9 @gramster @suo
|
oncall: jit,module: typing,triaged
|
low
|
Minor
|
634,861,089 |
pytorch
|
TestTorchDeviceTypeCPU.test_float_to_int_conversion_finite_cpu_uint8 is broken on PowerPC
|
From https://powerci.osuosl.org/job/pytorch-master-nightly-py3-linux-ppc64le/1099/console
```
======================================================================
FAIL: test_float_to_int_conversion_finite_cpu_uint8 (__main__.TestTorchDeviceTypeCPU)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/jenkins/miniconda/lib/python3.7/site-packages/torch/testing/_internal/common_device_type.py", line 241, in instantiated_test
result = test(self, device_arg, dtype)
File "/home/jenkins/miniconda/lib/python3.7/site-packages/torch/testing/_internal/common_device_type.py", line 542, in only_fn
return fn(self, device, *args, **kwargs)
File "test_torch.py", line 17152, in test_float_to_int_conversion_finite
self._float_to_int_conversion_helper(vals, device, dtype)
File "test_torch.py", line 17127, in _float_to_int_conversion_helper
self.assertEqual(torch.from_numpy(a), t.cpu())
File "/home/jenkins/miniconda/lib/python3.7/site-packages/torch/testing/_internal/common_utils.py", line 1085, in assertEqual
self.assertTrue(result, msg=msg)
AssertionError: False is not true : Tensors failed to compare as equal! Found 2 different element(s) (out of 9), with the greatest difference of 255 (0 vs. 255) occuring at index 2.
```
cc @mruberry
|
module: tests,triaged,module: POWER
|
low
|
Critical
|
634,864,300 |
flutter
|
Consider attempting to reconnect when the connection to a device is lost
|
Currently when we lose a connection to a device -- whether it's because of a bad USB cable, a crashed or hung app, or a bug in our code somewhere -- we just disconnect with "Lost connection to device".
We should consider attempting to reconnect when this happens. Suggested UI:
First few times this happens in a session:
```
Lost connection to attached device. Attempting to reconnect. This will fail if the application has crashed or hung. /
```
If we notice that this has happened several times, and if we're somewhat confident that this is a connection over USB (as opposed to a simulator, same-host desktop or web app, adb-over-wifi, etc), we could replace the message with:
```
Lost connection to attached device again. Consider replacing your USB cable, it may be damaged. \
```
|
tool,a: quality,P3,team-tool,triaged-tool
|
low
|
Critical
|
634,867,947 |
rust
|
Closure outlives error should mention the source of the requirement
|
The following code:
```rust
struct Inner;
struct Outer {
field: Inner
}
fn use_it<R, F: FnOnce(&Outer) -> R>(_val: F) {}
fn main() {
use_it(|outer| &outer.field)
}
```
produces the following error message as of `nightly-2020-06-07`
```
error: lifetime may not live long enough
--> src/main.rs:7:20
|
7 | use_it(|outer| &outer.field)
| ------ ^^^^^^^^^^^^ returning this value requires that `'1` must outlive `'2`
| | |
| | return type of closure is &'2 Inner
| has type `&'1 Outer`
```
In general, returning a reference derived from an argument is perfectly fine. The issue is that `use_it` requires that the return type outlive the argument - however, this is not mentioned anywhere in the error message.
When we emit a lifetime error message for closures, we should try to find the reason for the requirement, and give a more detailed explanation to the user.
|
C-enhancement,A-diagnostics,A-lifetimes,A-closures,T-compiler,D-confusing,D-newcomer-roadblock
|
low
|
Critical
|
634,889,706 |
godot
|
C# Mono Build: Marking a asset to copy to output directory does not get copied to final export location
|
**Godot version:**
3.2.1
**OS/device including version:**
Win10(x64)
**Issue description:**
I marked a DLL in visual studio to copy to output location, but the DLL was not copied to the export location
**Steps to reproduce:**
Add some miscellaneous file to visual studio marked with a action of none, and always copy to output folder
_Bugsquad edit:_ reorganized for clarity
|
bug,topic:dotnet
|
low
|
Critical
|
634,892,057 |
go
|
runtime: "morestack on g0" in TestSegv on darwin-amd64 builders
|
[2020-06-08T17:59:37-2603d9a/darwin-amd64-race](https://build.golang.org/log/e285b11c53cb164b27ef1bdf459cb6743137c34b)
```
--- FAIL: TestSegv (0.00s)
--- FAIL: TestSegv/Segv (0.02s)
crash_test.go:105: /var/folders/kh/5zzynz152r94t18yzstnrwx80000gn/T/workdir-host-darwin-10_15/tmp/go-build172134279/testprogcgo.exe SegvInCgo exit status: exit status 2
crash_cgo_test.go:569: fatal: morestack on g0
SIGTRAP: trace trap
PC=0x406b702 m=0 sigcode=1
goroutine 0 [idle]:
runtime.abort()
/var/folders/kh/5zzynz152r94t18yzstnrwx80000gn/T/workdir-host-darwin-10_15/go/src/runtime/asm_amd64.s:860 +0x2
runtime.morestack()
/var/folders/kh/5zzynz152r94t18yzstnrwx80000gn/T/workdir-host-darwin-10_15/go/src/runtime/asm_amd64.s:416 +0x25
goroutine 19 [syscall]:
runtime.cgocall(0x4123600, 0xc00003a7c0, 0x4123600)
/var/folders/kh/5zzynz152r94t18yzstnrwx80000gn/T/workdir-host-darwin-10_15/go/src/runtime/cgocall.go:133 +0x5b fp=0xc00003a790 sp=0xc00003a758 pc=0x400503b
main._Cfunc_nop()
_cgo_gotypes.go:329 +0x45 fp=0xc00003a7c0 sp=0xc00003a790 pc=0x411a2a5
main.SegvInCgo.func1(0xc00008e120)
/private/var/folders/kh/5zzynz152r94t18yzstnrwx80000gn/T/workdir-host-darwin-10_15/go/src/runtime/testdata/testprogcgo/segv.go:46 +0x30 fp=0xc00003a7d8 sp=0xc00003a7c0 pc=0x41224b0
runtime.goexit()
/var/folders/kh/5zzynz152r94t18yzstnrwx80000gn/T/workdir-host-darwin-10_15/go/src/runtime/asm_amd64.s:1374 +0x1 fp=0xc00003a7e0 sp=0xc00003a7d8 pc=0x406b8e1
created by main.SegvInCgo
/private/var/folders/kh/5zzynz152r94t18yzstnrwx80000gn/T/workdir-host-darwin-10_15/go/src/runtime/testdata/testprogcgo/segv.go:43 +0x5c
goroutine 1 [sleep]:
time.Sleep(0x3b9aca00)
/var/folders/kh/5zzynz152r94t18yzstnrwx80000gn/T/workdir-host-darwin-10_15/go/src/runtime/time.go:188 +0xbf
main.SegvInCgo()
/private/var/folders/kh/5zzynz152r94t18yzstnrwx80000gn/T/workdir-host-darwin-10_15/go/src/runtime/testdata/testprogcgo/segv.go:55 +0x9c
main.main()
/private/var/folders/kh/5zzynz152r94t18yzstnrwx80000gn/T/workdir-host-darwin-10_15/go/src/runtime/testdata/testprogcgo/main.go:34 +0x1da
rax 0x17
rbx 0xc00003a710
rcx 0x4265d40
rdx 0x0
rdi 0x2
rsi 0xc00003a6b0
rbp 0xc00003a780
rsp 0xc00003a738
r8 0x4265d40
r9 0x0
r10 0xc00003a710
r11 0x202
r12 0xf1
r13 0x0
r14 0x418de44
r15 0x0
rip 0x406b702
rflags 0x202
cs 0x2b
fs 0x0
gs 0x0
crash_cgo_test.go:571: expected crash from signal
FAIL
FAIL runtime 69.144s
```
CC @aclements @ianlancetaylor @cherrymui
|
OS-Darwin,NeedsInvestigation,compiler/runtime
|
low
|
Critical
|
634,900,756 |
pytorch
|
[BatchNorm] Add boolean flags to choose the stats for normalization
|
## 🚀 Flags for flexibility in BN
Hello there :wave:
Following up on discussions with @SsnL in #37823 and #38084, I believe some clarifications are needed in the behaviour of the `forward` method of Batch normalization layers.
Concisely, the point of this issue would be to discuss the following points:
1. ability to dynamically tell the layer whether it should update its population stats' estimators (buffer) or not
2. ability to dynamically tell the layer whether the stats used for normalization should be the actual current mini-batch stats or the already seen population's estimators (buffer).
3. the train --> eval switch should use the computed population mean & variance for normalization if they are available, prevent population estimators from updating, and avoid updating the affine parameters.
## Motivation
Initially, I was only looking for the best way to use `BatchNorm2d` in frozen layers (in the case of transfer learning). Obviously, `FrozenBatchNorm2d` from torchvision was a good option but required replacing all BNs in a model (and there was no eps in frozenBN until very recently). I went looking for a simple flag that would work in vain (this needs to apply for both train and eval modes, otherwise the frequent switches that occur during a training procedure make it irrelevant)
## Pitch
First, `track_running_stats` should be converted into a constructor argument but not an attribute since it can be switched by the user later (meaning we cannot dynamically rely on this to assume whether the buffer is available and/or has been tracked)
Second, we could introduce two dynamic flags:
- `update_running_stats` (only renaming the original track_running_stats actually): controls whether the buffer should be updated on forward
- `minibatch_normalization`: controls whether the mini-batch stats should be used for data normalization instead of population estimators (buffer) during forward.
Since, in the current API, switching to train/eval mode does not change the parameters' requires_grad then:
- updating population stats (buffer) is only done if `self.update_running_stats and self.training`
- normalization is done with mini-batch stats rather than buffer's if `self.minibatch_normalization or self.training`
cc @albanD @mruberry
|
module: nn,triaged,function request,module: norms and normalization
|
medium
|
Major
|
634,943,048 |
go
|
x/build/env/android-*-emu: adb does not propagate GO_BUILDER_NAME to tests
|
The GO_BUILDER_NAME environment variable doesn't seem to be set on tests running on the android-amd64-emu builders.
How to reproduce:
I created CL [236960](https://go-review.googlesource.com/c/tools/+/236960) with the following test in it:
```
package a_test
import (
"os"
"testing"
)
func TestPlatform(t *testing.T) {
t.Fatalf("GO_BUILDER_NAME = %q", os.Getenv("GO_BUILDER_NAME"))
}
```
on the android-amd64-emu builder, the test fails with the following error:
```
--- FAIL: TestPlatform (0.00s)
platform_test.go:9: GO_BUILDER_NAME = ""
FAIL
exitcode=1FAIL golang.org/x/tools/a 84.167s
```
|
Builders,NeedsFix
|
low
|
Critical
|
634,956,666 |
pytorch
|
CUDA cannot be found
|
## 🐛 Bug
When compiling on Docker for L4T with CUDA 10.2 installed, torch doesn't compile with due to not finding CUDA.
## To Reproduce
Clone the [Torch Samples](https://github.com/pytorch/examples) repo. Follow the instructions in [this README](https://github.com/pytorch/examples/tree/master/cpp/mnist).
Error output when running the cmake command:
```
cmake -DCMAKE_PREFIX_PATH=/root/.local/lib/python3.6/site-packages/torch/ ..
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE
-- Could NOT find CUDA (missing: CUDA_CUDART_LIBRARY) (found version "10.0")
CMake Warning at /root/.local/lib/python3.6/site-packages/torch/share/cmake/Caffe2/public/cuda.cmake:31 (message):
Caffe2: CUDA cannot be found. Depending on whether you are building Caffe2
or a Caffe2 dependent library, the next warning / error will give you more
info.
Call Stack (most recent call first):
/root/.local/lib/python3.6/site-packages/torch/share/cmake/Caffe2/Caffe2Config.cmake:88 (include)
/root/.local/lib/python3.6/site-packages/torch/share/cmake/Torch/TorchConfig.cmake:40 (find_package)
CMakeLists.txt:5 (find_package)
CMake Error at /root/.local/lib/python3.6/site-packages/torch/share/cmake/Caffe2/Caffe2Config.cmake:90 (message):
Your installed Caffe2 version uses CUDA but I cannot find the CUDA
libraries. Please set the proper CUDA prefixes and / or install CUDA.
Call Stack (most recent call first):
/root/.local/lib/python3.6/site-packages/torch/share/cmake/Torch/TorchConfig.cmake:40 (find_package)
CMakeLists.txt:5 (find_package)
-- Configuring incomplete, errors occurred!
See also "/root/Github/examples/cpp/mnist/build/CMakeFiles/CMakeOutput.log".
See also "/root/Github/examples/cpp/mnist/build/CMakeFiles/CMakeError.log".
```
## Expected behavior
Code should compile as described in the readme.
## Environment
```
PyTorch version: N/A
Is debug build: N/A
CUDA used to build PyTorch: N/A
OS: Ubuntu 18.04 LTS
GCC version: (Ubuntu/Linaro 7.5.0-3ubuntu1~18.04) 7.5.0
CMake version: version 3.10.2
Python version: 2.7
Is CUDA available: N/A
CUDA runtime version: 10.0.326
GPU models and configuration: Could not collect
Nvidia driver version: Could not collect
cuDNN version: Probably one of the following:
/usr/lib/aarch64-linux-gnu/libcudnn.so.8.0.0
/usr/lib/aarch64-linux-gnu/libcudnn_adv_infer.so.8.0.0
/usr/lib/aarch64-linux-gnu/libcudnn_adv_train.so.8.0.0
/usr/lib/aarch64-linux-gnu/libcudnn_cnn_infer.so.8.0.0
/usr/lib/aarch64-linux-gnu/libcudnn_cnn_train.so.8.0.0
/usr/lib/aarch64-linux-gnu/libcudnn_etc.so.8.0.0
/usr/lib/aarch64-linux-gnu/libcudnn_ops_infer.so.8.0.0
/usr/lib/aarch64-linux-gnu/libcudnn_ops_train.so.8.0.0
Versions of relevant libraries:
[pip3] numpy==1.13.3
[conda] Could not collect
```
cc @malfet @ngimel
|
module: build,module: cuda,triaged,module: arm
|
low
|
Critical
|
634,969,393 |
go
|
cmd/vet: flag simple nil pointer dereferences for struct field usage and nil map assignments
|
Coming here from an experience report narrated to me offline by @kastiglione and @indragiek.
The code below is biting yet can be trivially flagged by cmd/vet
### Usage of field in an obvious nil struct
https://play.golang.org/p/i_a3kGE61UZ

### Assignment to a nil map
https://play.golang.org/p/KlN7AY1U4lo

|
NeedsInvestigation,Analysis
|
low
|
Major
|
634,970,523 |
angular
|
refactor(forms): unification of template-driven validator logic
|
Currently the template-driven validators logic is a bit inconsistent where some validators use `@Input` getters/setters when in other cases we use `ngOnChanges` lifecycle hook to achieve the same behavior (see [packages/forms/src/directives/validators.ts](https://github.com/angular/angular/blob/030eff2b81fdf3750a6604415dbdffcb43f8d159/packages/forms/src/directives/validators.ts)). We should explore if we can unify this logic (most likely using `ngOnChanges` to always have a consistent behavior between Ivy/VE, based on https://github.com/angular/angular/issues/35330#issuecomment-638859443).
We should also check whether we can unify these conditions too (they seem very similar, but vary in minor details):
https://github.com/angular/angular/blob/030eff2b81fdf3750a6604415dbdffcb43f8d159/packages/forms/src/directives/validators.ts#L174
and
https://github.com/angular/angular/blob/030eff2b81fdf3750a6604415dbdffcb43f8d159/packages/forms/src/directives/validators.ts#L284
[note: this is a low priority item atm and will probably be a breaking change]
|
refactoring,area: forms,forms: validators,P5
|
low
|
Minor
|
634,979,687 |
pytorch
|
Run `clang-tidy` on the `aten` folder?
|
Seems that we only run `clang-tidy`on `torch/csrc/`.
https://github.com/pytorch/pytorch/blob/0147216a46a67b110334ae246e1b032611099b19/.github/workflows/lint.yml#L152-L165
Should we run it on `aten` (or maybe just `aten/src/ATen`) as well?
|
module: lint,triaged,module: build warnings,better-engineering
|
low
|
Minor
|
634,995,391 |
TypeScript
|
Checking JS types does not accept @implements or @augments on constructor functions
|
<!--
Please try to reproduce the issue with the latest published version. It may have already been fixed.
For npm: `typescript@next`
This is also the 'Nightly' version in the playground: http://www.typescriptlang.org/play/?ts=Nightly
-->
**TypeScript Version:** 3.9.5 (also tested on 3.9.3 initially)
**Search Terms:** `@implements`, `jsdoc`
**Code**
```js
/**
* @param {string} name
* @implements {EventTarget}
* @constructor
*/
function Foo (name) {
this.name = name
}
/**
* @param {string} type
* @param {EventListenerOrEventListenerObject} listener
* @param {boolean | AddEventListenerOptions} [options]
*/
Foo.prototype.addEventListener = function (type, listener, options) {}
```
Then run `tsc --noEmit --checkJS --allowJS reproducer.js`
**Expected behavior:**
According to https://www.typescriptlang.org/docs/handbook/type-checking-javascript-files.html#constructor-functions-are-equivalent-to-classes, constructor functions are treated like classes. So using `@implements` or `@augments` on them should be possible. It used to work in the past.
**Actual behavior:**
```
reproducer.js:6:10 - error TS8022: JSDoc '@implements' is not attached to a class.
6 function Foo (name) {
~~~
Found 1 error.
```
**Playground Link:** I was not able to reproduce this in the playground (but it does not have the latest 3.9 versions available)
**Related Issues:**
|
Suggestion,Awaiting More Feedback
|
low
|
Critical
|
634,996,520 |
rust
|
coercion becomes order dependent for higher-ranked functions
|
https://github.com/rust-lang/rust/pull/72493 revealed an interesting interaction between coercion, the universe transition (https://github.com/rust-lang/rust/issues/56105), and the transition to NLL (https://github.com/rust-lang/rust/issues/57895). What happens in the `old-lub-glb-hr-noteq[12].rs` tests introduced by that PR is:
* We have to compute the "coercion LUB" of `fn('a, 'b) -> 'a` and `fn('a, 'a) -> 'a`. The "correct answer" is `fn('a, 'a) -> 'a`. With NLL migration mode, we get a hard error always, but once we enable the NLL mode, our answer depends on the order of the match arms.
* The reason is that the *coercion code* finds that it can create a subtype for either order, so it produces a result that depends on the ordering. That same code introduces a "equality" requirement in migration mode that results in an error no matter what. But when those errors are suppressed, we generate NLL, and we only enforce subtyping, which either works or doesn't, depending on what type was chosen.
How should we fix this?
* Keep the error? Unfortunate.
* Extend the leak check so it can distinguish these two types correctly and make the coercion code do a "evaluate" that includes a leak check.
|
T-compiler,A-NLL,A-lazy-normalization
|
low
|
Critical
|
634,997,698 |
flutter
|
[pigeon] provide a toString
|
By default, the autogen'ed data classes just return "I/flutter: Instance of 'Book'"
Would be nice to get a better string. Perhaps annotate the fields you want? Or randomly just pick the top 3? Or just print the json?
|
package,team-ecosystem,p: pigeon,P3,triaged-ecosystem
|
low
|
Major
|
635,009,312 |
TypeScript
|
Incorrect autocomplete for "File" class
|
*TS Template added by @mjbvz*
**TypeScript Version**: 4.0.0-dev.20200607
**Search Terms**
- suggest / suggestions / completions
- dom
- javascript
---
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ -->
<!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ -->
<!-- Please search existing issues to avoid creating duplicates. -->
<!-- Also please test using the latest insiders build to make sure your issue has not already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- Use Help > Report Issue to prefill these. -->
- VSCode Version: 1.45.1
- OS Version: Windows 10
Steps to Reproduce:
1. New JavaScript file + following code:
```javascript
class File {
Method() {
}
}
const file = new File;
file
```
2. Put the dot (`.`) on the last line and wait until the window with suggestions appears.
3. It is expected for the list in the window to has a `Method` member, but it contains a `Blob` class members instead:

It seems that VSCode thinks that it is a `File` class [for web](https://developer.mozilla.org/en-US/docs/Web/API/File):

<!-- Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
|
Bug
|
low
|
Critical
|
635,013,521 |
rust
|
Handle source code coverage in const eval
|
One open question around source code coverage instrumentation (#34701 / https://github.com/rust-lang/compiler-team/issues/278) is how to handle code that is only run during const eval. For example:
```rust
const fn compute_foo(x: bool) -> i32 {
if x {
42
} else {
11
}
}
#[cfg(test)]
mod tests {
#[test]
fn test_foo() {
assert_eq!(compute_foo(false), 11);
assert_eq!(compute_foo(true), 42);
}
}
```
In a coverage report, we don't want the code in `compute_foo` to show as not being covered by tests because it was only "run" at compile time.
# Approaches
I've talked about this with @petrhosek a couple times, he raised two possible approaches for both rustc and clang. I'll do my best to communicate them, but any mistakes are mine.
## Emit a coverage profile at compile time
When code coverage instrumentation is enabled, another option can be specified which causes a profile to be emitted at compile time (in the same format as the profiles generated at runtime). This would include every counter hit while evaluating MIR during const eval. The profile could then be combined with profiles collected during runtime (which I believe tooling already exists for).
One benefit of this approach is that it allows us to handle counters hit at compile time differently from those hit at runtime. I can see this being useful e.g. if we were to use those counters for some kind of PGO pass in the MIR, though I'm not sure if that's a realistic use for them. There might be other reasons to differentiate.
A challenge with the approach is that we'll have to produce the profile format ourselves (we won't get the benefit of LLVM instrumentation doing it for us, like we do in the final binary).
## Initialize runtime counters with compile time counts
Similar to before, we would count how many times each source code coverage region was evaluated during compile time. Instead of emitting a profile at compile time, we can simply initialize the (static) counter in the final binary to this value. So if that counter was evaluated 42 times, every profile emitted by the binary would start at 42 (and go up from there if the same counter were also hit at runtime). We might need to extend LLVM to support something like this.
The main benefit of this is simplicity: there are less "moving parts" for someone who wants to use source code coverage. We also don't have to teach the compiler how to emit coverage profiles.
One possible issue with this approach is how it might interact with linker garbage collection. We wouldn't want the linker to remove nonzero counters for never being referenced from any code in the binary.
|
A-const-eval
|
low
|
Minor
|
635,035,701 |
pytorch
|
[Quantization] Output tensor type is lost after serializing and loading back a quantized model
|
Cross posting from https://discuss.pytorch.org/t/output-tensor-type-is-lost-after-serializing-and-loading-back-a-quantized-model/84700
@jerryzh168 @raghuramank100
It seems that after I serialize and load back a quantized model, the output type of quantized operators, `QUInt8`, is lost and instead it is replaced by float `Tensor` type. See below for a module with a single quantized conv layer.
Before `torch.jit.save`
```
graph(%self.1 : __torch__.AnnotatedConvModel,
%X : Float(2, 3, 10, 10)):
...
%input : QUInt8(2, 3, 10, 10) = aten::quantize_per_tensor(%X, %67, %68, %69), scope: __module.quant # /home/masa/anaconda3/lib/python3.7/site-packages/torch/nn/quantized/modules/__init__.py:43:0
...
%Xq : QUInt8(2, 3, 8, 8) = quantized::conv2d(%input, %71, %74, %77, %80, %81, %82, %83), scope: __module.conv # /home/masa/anaconda3/lib/python3.7/site-packages/torch/nn/quantized/modules/conv.py:215:0
%85 : Float(2, 3, 8, 8) = aten::dequantize(%Xq), scope: __module.dequant # /home/masa/anaconda3/lib/python3.7/site-packages/torch/nn/quantized/modules/__init__.py:74:0
return (%85)
```
After `torch.jit.load`
```
graph(%self.1 : __torch__.AnnotatedConvModel,
%X.1 : Tensor):
...
%input.1 : Tensor = aten::quantize_per_tensor(%X.1, %9, %10, %11) # /home/masa/anaconda3/lib/python3.7/site-packages/torch/nn/quantized/modules/__init__.py:43:0
%Xq.1 : Tensor = quantized::conv2d(%input.1, %15, %17, %18, %19, %16, %20, %21) # /home/masa/anaconda3/lib/python3.7/site-packages/torch/nn/quantized/modules/conv.py:215:0
...
%24 : Tensor = aten::dequantize(%Xq.1) # /home/masa/anaconda3/lib/python3.7/site-packages/torch/nn/quantized/modules/__init__.py:74:0
return (%24)
```
The PyTorch frontend in TVM uses this tensor type information to decide if a torch op is invoked on a quantized tensor. See for example the case of converting adaptive avg pooling, which requires special care for quantized case, but in the Torch IR the same op `aten::adaptive_avg_pool2d` appears for both float and quantized input.
https://github.com/apache/incubator-tvm/blob/master/python/tvm/relay/frontend/pytorch.py#L600-L601
Without correct typing, we cannot convert serialized quantized PyTorch models. What happens right now is since Torch tells TVM that input tensor is float type, TVM incorrectly converts some quantized ops into float ops.
A repro script, tested on v1.5
```
import torch
from torch.quantization import QuantStub, DeQuantStub, default_qconfig
class AnnotatedConvModel(torch.nn.Module):
def __init__(self):
super(AnnotatedConvModel, self).__init__()
self.qconfig = default_qconfig
self.conv = torch.nn.Conv2d(3, 3, 3, bias=False).to(dtype=torch.float)
self.quant = QuantStub()
self.dequant = DeQuantStub()
def forward(self, x):
x = self.quant(x)
x = self.conv(x)
x = self.dequant(x)
return x
def quantize_model(model, inp):
model.qconfig = default_qconfig
torch.quantization.prepare(model, inplace=True)
model(inp)
torch.quantization.convert(model, inplace=True)
def test_conv():
inp = torch.rand(2, 3, 10, 10)
annotated_conv_model = AnnotatedConvModel()
quantize_model(annotated_conv_model, inp)
trace = torch.jit.trace(annotated_conv_model, inp)
torch._C._jit_pass_inline(trace.graph)
print(trace.graph)
torch.jit.save(trace, "trace.pt")
trace = torch.jit.load("trace.pt")
print(trace.graph)
test_conv()
```
cc @suo @gmagogsfm @jerryzh168 @jianyuh @dzhulgakov @raghuramank100 @jamesr66a
|
oncall: jit
|
low
|
Major
|
635,076,274 |
flutter
|
Hide platform boilerplate code in Flutter projects
|
## Use case
Currently each multi-platform Flutter project contains significant amount of platform boilerplate code. For example, if I have enabled just `Android`, `iOS`, `Web` and `Windows` platforms and run `flutter create myproject` I get `~250K` boilerplate code in `android`, `ios`, `web` and `windows` folders.
All this code generally should be checked in into VCS.
Problems with this approach:
- It is quite hard to modify some platform-specific project settings for each platform. For example, to change project display name user should look into all these folders containing quite complex code especially for non-experts.
- Currently it seems Flutter does not have a good workflow scenario to update this boilerplate code when project templates are updated/improved in Flutter. The only approach I see is to run `flutter create` again and overwrite all this code with new templates. But any changes made here might be lost.
- It is almost impossible to create a new Flutter project "by hand" without `flutter create`.
- The amount of boilerplate code might be much bigger than application code. A `Hello, world` application source code base might become even close to `1 MB` in future if targeted to all supported platforms (Android, iOS, MacOS, Web, Windows, Linux, Fuchsia, etc).
All these problems might become more important with growing number of supported platforms in Flutter.
## Proposal
The proposal is to hide all platform boilerplate code / project templates in Flutter build tools and provide some cross-platform settings file(s) (maybe just use `pubspec.yaml`?). So a simple application might contain only `main.dart` and `pubspec.yaml` file and problems above will be solved.
This is just a draft proposal and I understand that serious amount of work should be done in Flutter tooling to achieve this. I love Flutter and just hope that this feature might make Flutter better and simplify Flutter learning curve, especially for beginners.
|
c: new feature,tool,a: first hour,P3,team-tool,triaged-tool
|
medium
|
Major
|
635,085,681 |
rust
|
TTL should be regarded as octal number (8-bit unsigned integer)
|
<!--
Thank you for filing a bug report! 🐛 Please provide a short summary of the bug,
along with any information you feel relevant to replicating the bug.
-->
I tried this code:
```rust
use std::net::UdpSocket;
fn main(){
let mut socket = UdpSocket::bind("0.0.0.0:1234").unwrap();
socket.set_ttl(300);
}
```
I expected to see this happen: I expected that it would raise compilation error because the `ttl` is octal and [maximum value is 255](https://en.wikipedia.org/wiki/Time_to_live). But I could set 300 as ttl.
Instead, this happened: It does not raise any error and I could send packet with ttl more than 255. It was causing trouble as my software was setting ttl greater than 255 and was providing wrong data.
Upon looking more into the source code and documentation, it seems like `set_ttl` method is taking 32-bit unsigned integer type `u32` as ttl, where is should take 8-bit unsigned integer type `u8` as ttl.
### Meta
<!--
If you're using the stable version of the compiler, you should also check if the
bug also exists in the beta or nightly versions.
-->
`rustc --version --verbose`:
```
rustc 1.43.1 (8d69840ab 2020-05-04)
binary: rustc
commit-hash: 8d69840ab92ea7f4d323420088dd8c9775f180cd
commit-date: 2020-05-04
host: x86_64-apple-darwin
release: 1.43.1
LLVM version: 9.0
```
<!--
Include a backtrace in the code block by setting `RUST_BACKTRACE=1` in your
environment. E.g. `RUST_BACKTRACE=1 cargo build`.
-->
<details><summary>Backtrace</summary>
<p>
```
<backtrace>
```
</p>
</details>
|
T-libs-api,C-bug,A-io
|
low
|
Critical
|
635,111,897 |
flutter
|
Material widget breaks the semantics inside it when used with elevation
|
Internal: b/157889018
Material's elevation affects Semantics boundaries. See the following repro:
```dart
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Column(
children: <Widget>[
Material(
elevation: 1,
child: Container(
height: 50,
width: double.infinity,
color: Colors.yellow,
child: Row(
children: <Widget>[
Semantics(
label: 'Close icon',
child: Icon(Icons.arrow_back_ios),
),
Expanded(
child: Container(
color: Colors.blue,
),
),
],
),
),
),
],
),
);
}
}
```
If elevation is set to a non-0 value, semantics wrapper covers the entire Material:

If elevation is set to 0, the semantics wrapper "close icon" only covers the Icon itself, as expected:

|
framework,f: material design,a: accessibility,has reproducible steps,P2,found in release: 3.3,found in release: 3.5,team-design,triaged-design
|
low
|
Major
|
635,117,157 |
pytorch
|
[doc] [distributed] example of specifying url etc in url
|
The only mention of this in the doc is
https://github.com/pytorch/pytorch/blob/0251ba61089795a7a27c0473e4bb022805432c1f/torch/distributed/distributed_c10d.py#L337-L341
with no example.
cc @pietern @mrshenli @pritamdamania87 @zhaojuanmao @satgera @rohan-varma @gqchen @aazzolini @xush6528 @osalpekar @jlin27
|
oncall: distributed,module: docs,triaged
|
low
|
Minor
|
635,118,556 |
pytorch
|
[distributed] calling nccl reduce with inconsistent dst hangs
|
Not sure if intended or avoidable, but if `dst` is inconsistent across ranks, `reduce` finishes, but future kernels seems to hang. E.g.,
```py
import torch
torch.distributed.init_process_group('nccl', init_method='tcp://localhost:10402', world_size=2, rank=0)
x = torch.zeros(3, device=0)
torch.distributed.reduce(x, 0, torch.distributed.ReduceOp.SUM)
print(x)
```
```py
import torch
torch.distributed.init_process_group('nccl', init_method='tcp://localhost:10402', world_size=2, rank=1)
x = torch.zeros(3, device=1)
torch.distributed.reduce(x, 1, torch.distributed.ReduceOp.SUM)
print(x)
```
cc @pietern @mrshenli @pritamdamania87 @zhaojuanmao @satgera @rohan-varma @gqchen @aazzolini @xush6528 @osalpekar
|
oncall: distributed,triaged,module: nccl,module: deadlock
|
low
|
Minor
|
635,214,248 |
pytorch
|
Do not modify global random state
|
## 🚀 Feature
Currently, the [recommended approach to achieve reproducibility](https://pytorch.org/docs/stable/notes/randomness.html) is setting global random seeds. I would like to propose that instead all functions which need a random source accept a local, non-global, `random_seed`/`random_state` argument to which one can pass a random state object, or numpy generator, or something else, which binds random source locally.
## Motivation
Reproducibility if often needed in ML programs. But current approach of setting global random seed in various places in pytorch is suitable only for small programs which are using only pytorch. Now imagine that you have many libraries around, each trying to set global random seed at various times. This can lead to strange changes in random seeds just because you swapped two calls around. Moreover, if any of those libraries stand-alone produces a sequence of numbers, it might be that when used in combination with pytorch the sequence is not anymore the same. So if you are trying to compare two different implementations (one in pytorch one in some other library), the behavior of the implementation in the other library can change just because you also have pytorch around.
Of course, the other library should also not be using global random source. But ideally pytorch should not either.
In our concrete case, we have an AutoML system generating many candidate pipelines using primitives to build those pipelines which in turn use many different libraries. Those pipelines are run and we hope to have full reproducibility (which helps with metalearning). But setting/resetting global random seed just because one primitive in one candidate pipeline we are exploring happens to use pytorch influences behavior of unrelated pipelines.
## Pitch
Instead of relying on global random sources, add `random_state` parameter to all functions which expect/use randomness. Do not ever set random seed of a global random source in pytorch code (the user of pytorch can do that themselves if they really want).
## Alternatives
Use context managers to set and reset random seeds, but this becomes tricky when using multi-threading.
## Additional context
See example in [sklearn](https://scikit-learn.org/stable/glossary.html#term-random-state).
cc @jlin27 @pbelevich
|
module: docs,triaged,module: random
|
low
|
Major
|
635,246,532 |
angular
|
Validators.pattern anchoring doesn't work as expected
|
## 🐞 bug report
### Affected Package
The issue is caused by package @angular/forms.
### Is this a regression?
I don't think so.
### Description
When [Validators.pattern](https://github.com/angular/angular/blob/55979fe0ae91a2e5306050d008b0173a491e53b9/packages/forms/src/validators.ts#L380) accepts a string, it tries to find out whether the pattern is anchored at each end and if not, it prepends/appends `^`/`$` as appropriate. While I don't agree with this magic, this issue is not about the presence of such behavior, but about its correctness. The correct way to anchor a regular expression also includes **enclosing the contents in a subexpression**, which the current algorithm doesn't do.
[MDN says about [pattern]](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/pattern):
> The pattern's regular expression, when matched against the value, must have its start anchored to the start of the string and its end anchored to the end of the string, which is slightly different from JavaScript regular expressions: in the case of pattern attribute, we are matching against the entire value, not just any subset, as if a `^(?:` were implied at the start of the pattern and `)$` at the end.
## 🔬 Minimal Reproduction
https://stackblitz.com/edit/angular-ivy-j258mq
Although pattern is `yes|no`, other values like `yes, and...`, `lol, no` etc. are considered valid by Angular.
## 🌍 Your Environment
**Angular Version:**
<pre><code>
angular-cli: 1.0.0-beta.28.3
node: 10.20.1
os: win32 x64
@angular/animations: 7.2.15
@angular/cdk: 7.3.7
@angular/common: 7.2.15
@angular/compiler: 7.2.15
@angular/core: 7.2.15
@angular/forms: 7.2.15
@angular/platform-browser: 7.2.15
@angular/platform-browser-dynamic: 7.2.15
@angular/router: 7.2.15
</code></pre>
|
help wanted,area: forms,state: confirmed,forms: validators,P4
|
low
|
Critical
|
635,257,132 |
youtube-dl
|
--pause-on-error & extension of --abort-on-error
|
- [x] I'm reporting a feature request
- [x] I've verified that I'm running youtube-dl version **2020.06.06**
- [x] I've searched the bugtracker for similar feature requests including closed ones
There is an option called `--abort-on-error`.
We want something like `--abort-on-error x`. Where x is the number of errors after which `youtube-dl` will quit.
What we also need is `--pause-on-error y` which will pause on error for y minutes.
The ultimate goal is to pause for y minutes after each error. If the error keeps occurring for x times then exit youtube-dl.
|
request
|
low
|
Critical
|
635,259,870 |
deno
|
Fetch returns: Error trying to connect: Connection reset by peer (os error 54)
|
`let a = await fetch('https://pictures.vwe.nl');
console.log(a)`
Returns "Error trying to connect: Connection reset by peer (os error 54)"
`deno --version`
- deno 1.0.5
- v8 8.4.300
- typescript 3.9.2
|
bug,web
|
medium
|
Critical
|
635,267,042 |
pytorch
|
User Objects aren't recursively scripted as nn.Module attributes
|
I am ready convert a pytorch module to ScriptModule, and then load it in c++,but i am blocked by this error `This attribute exists on the Python module, but we failed to convert Python type: 'Vocab' to a TorchScript type`, the `Vocab` is a python object i define. the demo code is here:
import torch
class Vocab(object):
def __init__(self, name):
self.name = name
def show(self):
print("dict:" + self.name)
class Model(torch.nn.Module):
def __init__(self, ):
super(Model, self).__init__()
self.layers = torch.nn.Linear(2, 3)
self.encoder = 4
self.vocab = Vocab("vocab")
def forward(self, x):
name = self.vocab.name
print("forward show encoder:" + str(self.encoder))
print("vocab:" + name)
enc_hidden = []
step = len(x) // 2
for i in range(step):
enc_hidden.append((x[2*i] + x[2*i + 1])/2)
enc_hidden = torch.stack(enc_hidden, 0)
enc_hidden = self.__show(enc_hidden)
return self.layers(enc_hidden)
@torch.jit.export
def __show(self, x):
return x + 1
model = Model()
data = torch.randn(10, 2)
script_model = torch.jit.script(model)
print(script_model)
r1 = model(data)
print(r1)
the error msg:
Traceback (most recent call last):
File "/mnt/d/python_projects/pytorch_deploy/model4.py", line 47, in <module>
script_model = torch.jit.script(model)
File "/mnt/d/anaconda3/lib/python3.6/site-packages/torch/jit/__init__.py", line 1261, in script
return torch.jit._recursive.create_script_module(obj, torch.jit._recursive.infer_methods_to_compile)
File "/mnt/d/anaconda3/lib/python3.6/site-packages/torch/jit/_recursive.py", line 305, in create_script_module
return create_script_module_impl(nn_module, concrete_type, stubs_fn)
File "/mnt/d/anaconda3/lib/python3.6/site-packages/torch/jit/_recursive.py", line 361, in create_script_module_impl
create_methods_from_stubs(concrete_type, stubs)
File "/mnt/d/anaconda3/lib/python3.6/site-packages/torch/jit/_recursive.py", line 279, in create_methods_from_stubs
concrete_type._create_methods(defs, rcbs, defaults)
RuntimeError:
Module 'Model' has no attribute 'vocab' (This attribute exists on the Python module, but we failed to convert Python type: 'Vocab' to a TorchScript type.):
File "/mnt/d/python_projects/pytorch_deploy/model4.py", line 26
def forward(self, x):
name = self.vocab.name
~~~~~~~~~~ <--- HERE
print("forward show encoder:" + str(self.encoder))
print("vocab:" + name)
so how can i use my own python object in torchscript?
cc @suo
|
oncall: jit,triaged
|
low
|
Critical
|
635,284,769 |
flutter
|
Long Running Isolates / FFI Calls Break Hot Reloading -> willReassemble Method Needed
|
I'm writing a Flutter Plugin which starts long-running C-Functions inside an isolate via FFI. The problem: Hot reloading is broken as long as the C function is executed.
I could easily stop the C function before executing the hot reload. To do this a callback informing me of an **upcoming** hot reload is needed. Currently, I can override [`reassemble`](https://api.flutter.dev/flutter/widgets/State/reassemble.html) as stated at [StackOverflow](https://stackoverflow.com/questions/55281077/how-to-detect-hot-reload-inside-the-code-of-a-flutter-app). But this function is only called after a hot reload, not before.
In addition to the `reassemble` method, we need a `willReassemble` method informing us about an upcoming hot reload. I can then stop my long-running isolate.
Check out the example flutter plugin demonstrating the issue:
https://github.com/gatzsche/flutter-dart-ffi-hotreload-issue
|
engine,dependency: dart,has reproducible steps,P2,found in release: 3.7,found in release: 3.8,team-engine,triaged-engine
|
low
|
Critical
|
635,352,777 |
excalidraw
|
Non breaking space in text breaks SVG output
|
  produces broken SVG.
Example output from svg validator:
```
Line 15, Column 31463: reference to undeclared general entity nbsp
…re;" direction="ltr">post-install v1</text></g><g transform="translate(3…
```
|
bug
|
low
|
Critical
|
635,360,547 |
electron
|
[Win] BrowserWindow.resizable = false - breaks getBounds() and setBounds()
|
### Issue Details
* **Electron Version:** 9.0.2
* **Operating System:** Win 10 1903
* **Last Known Working Electron version:** didn't check, may be it never worked properly
### Repro steps
1. Create BrowserWindow
2. set "resizable" to false
3. pass 800x600 to setBounds()
4. get a value from getBounds()
### Expected Behavior
5. the value is 800x600
### Actual Behavior
5. the value is 1 point less or greater than 800x600
### To Reproduce
We prepared a sample app repo: https://github.com/jphw/resizable_false_problem
Just run "npm i" and "npm run start" and see the result, it's pretty straight forward
### Additional Information
Bug does not reproduce on Mac and if "resizable" is set to "true"
|
platform/windows,bug :beetle:,status/confirmed,component/BrowserWindow,9-x-y,has-repro-gist,main,21-x-y,22-x-y
|
low
|
Critical
|
635,453,680 |
godot
|
Disabled Editor feature Visualscript (through resource nodes) still halfway unusable
|
**Godot version:**
3.2.1.stable.mono.official
**Issue description:**
I want to disable visual scripting. The editor feature management unfortunately doesn't allow for this directly (it should), but to disable all VS node resources instead. If all nodes are disabled, this cleans up some endlessly scrolling dropdowns for exported resource fields which is nice but makes Visualscripts still show up in the create script dialog. If a visual script is then created it is not shown in the filesystem dock, but *is* created in the host/OS filesystem.
**Steps to reproduce:**
Disable everything inheriting from VisualScriptNode in the 'Manage Editor Features' menu and create a new visualscript in the filesystem dock; compare Godot filesystem with host/OS filesystem.
|
bug,topic:editor,topic:visualscript
|
low
|
Minor
|
635,455,990 |
pytorch
|
pickle_save on mobile (no longer works with 1.5.0 release)
|
## 🚀 Feature
Since version 1.5.0 pickle_save was commented out for mobile platforms with #ifndef C10_MOBILE inside pickle.cpp. Are there any plans to return this functionality to mobile?
## Motivation
We'd like to be able to save our customly trained models in order to store and process results on PCs, however it became impossible since functionality has been removed.
## Pitch
Make pickle_save great again.
|
oncall: mobile
|
low
|
Minor
|
635,459,505 |
flutter
|
[web] Support Image.toByteData on web in HTML renderer
|
Is there any alternative to solve this problem?
Exception: Image.toByteData is not supported in Flutter for Web
|
engine,platform-web,c: proposal,e: web_html,P3,c: parity,team-web,triaged-web
|
medium
|
Critical
|
635,623,520 |
ant-design
|
Dynamic adding Carousel data will automatically switch to the first page
|
- [x] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate.
### Reproduction link
[](https://codesandbox.io/s/cool-leftpad-ru8qy?file=/index.js)
### Steps to reproduce
1. 点击切换到第二页;
2. 动态增加数据;
### What is expected?
不自动切换回第一页,即保持当前页不动
### What is actually happening?
每次添加数据后都会自动切换至第一页。
| Environment | Info |
|---|---|
| antd | 3.26.15 |
| React | 16.8 |
| System | window |
| Browser | chrome |
---
直接使用react-slick并无此问题
https://codesandbox.io/s/jinyong-ant-design-demo-3knzc

<!-- generated by ant-design-issue-helper. DO NOT REMOVE -->
|
Inactive
|
low
|
Major
|
635,637,329 |
go
|
x/build/cmd/debugnewvm: investigate adding serial support to EC2 instances
|
In the process of adding EC2 builders #36841 debugnewvm was updated to support creating instances on EC2. GCE instances support reading from the serial support from VMs. We should investigate whether it is possible and possibly implement this with EC2 instances.
/cc @andybons @dmitshur @toothrot
|
Builders,NeedsInvestigation
|
low
|
Critical
|
635,661,656 |
rust
|
Matching function signature is nearly impossible in declarative macros (mbe)
|
I'm trying a write a macro that needs a function signature. I want smt like this to work:
```rust
macros! {
pub fn foo(&self, arg: Arg) -> Ret;
// inside the macro I have access to visibility, function qualifiers, arguments,
}
```
However, there are 2 things that are nearly impossible to parse...
## Qualifiers
According to [rust reference][ref] rust function can have
- either `const` or `async`
- `unsafe`
- `extern` / `extern "Abi"`
It's possible to use `$( unsafe )?` (and same for other qualifiers), however, you then can't expand it back (because in this repetition there are no `$var`s).
It's also not possible to match them with `tt`s because `:vis` [doesn't allow][tt_follow_vis] `tt` after it.
_My workaround_ is to use `[ $( $qual:tt )* ]`, but it's just a workaround and it requires changes to macro input. (you need to write `pub [unsafe] fn ...`)
[ref]: https://doc.rust-lang.org/reference/items/functions.html
[tt_follow_vis]: https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=460c3c4a0c1a76f9cc5cf0c5143009e2
## Trait bounds and `where` clause
there are several problems with bounds...
#### 1. there is no way to match a trait (`path::Trait<'life, Type>`)
This one is more tricky. There are no such fragments as trait or bound, so we'll need to work around this somehow. (`:ty` doesn't work because it assumes that a trait is a trait object and it [can't be used][trait_ty] in a bound)
I'd like this to work: `$trait:path $( < $( $lifes:lifetime ),* $(,)? $( $generics:ty ),* $(,)? > )?`, however, there are 2 problems with it:
1. `:path` [doesn't allow][path_lt] `<` after it. (workaround: use `$tr_head:ident $( :: $tr_tail:ident )*` instead of `:path`)
2. `rustc` can't choose between [parsing `'life` as a lifetime or as a type][local_ihateyou] (???) (it somehow [thinks that `'life` can be a part of trait object][life_tr_obj])
I thought that `2.` can be worked around by using smt like `$life_or_ty_head:tt $( :: $ty_tail:ident )* $( < $( $lifes:lifetime ),* $(,)? $( $generics:ty ),* $(,)? > )?` (`:tt` will match both `'life` and `head` part of `head::Ty...`), **but** here is a catch: to express a type you need generics with lifetimes over again :)
[trait_ty]: https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=b7a33f376fa0b21659523236900df797
[path_lt]: https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=2774ff6da7cc9d6abfe8e2e5d7775674
[local_ihateyou]: https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=6cab28918be2277664dca43eb1737b70
[life_tr_obj]: https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=69e8b2d08b8af74590f6952c4604c2e1
#### 2. it's not possible to use `+`, `*` and `?` as a separator in repetition
You need this to match a bound: `: Trait + 'a + Trait2 + 'b ...`
Related issue (opened in 2014! >_<): #18700
#### 3. you can't express 'either PatternA or PatternB' with mbe
This is needed because in where clause you can alternate lifetimes and types:
```rust
fn test<'t, 'a, 'b, 'c, A, B>()
where
A: Trait,
't: 'a + 'b,
B: Trait,
't: 'c,
{}
```
([playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=8b5fd784112b8c7a84f2f46a694fdf3d))
## Possible solutions
One a may think of is to add missing fragments & separator escaping, e.g.:
- `:trait` (matches the same things as `:ty` but assumes that it's trait)
- `:bound` (matches bound, e.g.: `Trait + 'life + Trait<'life, i32, T>`)
- `:qual` (matches one of `const`, `async`, `unsafe`, `extern "Abi"` and `extern`)
- `$( ... )$+*` (matches 0 or more `...` separated by `+`, see https://github.com/rust-lang/rfcs/pull/944)
This would solve most of the mentioned problems (except `'life`/`Gen` ordering), but I have no idea what problems all of that can bring, is it hard to implement, is this breaking change, etc. I would like to hear from somebody who is more competent in this theme...
The lifetime/generics ordering problem can be solved with 'or patterns' (ADT/enums in macros? :thinking:) but this needs a syntax decision and there are a lot of open questions (I think).
I can imagine smt like `${ A( $a:ident ... ) | B( ... $b:ident ) }` & `${ A => { a($a) }; B => { b($b) }; }` (first is a pattern and second is a expansion thing) that will expand `t ...` to `a(t)` and `... t` to `b(t)`......
|
A-macros,T-lang,C-feature-request
|
low
|
Critical
|
635,671,588 |
pytorch
|
[JIT] exported dunder methods are ignored
|
## 🐛 Bug
We ignore many dunder methods that python populates, but are accidentally ignoring user annotated ones as well.
```
import torch
class Model(torch.nn.Module):
def forward(self, x):
print(self.__show(1))
@torch.jit.export
def __show(self, x):
return x + 1
torch.jit.script(Model())
```
> Module 'Model' has no attribute '__show'
cc @suo
|
oncall: jit,triaged
|
low
|
Critical
|
635,706,863 |
flutter
|
[animations] How to disable backdrop during animation in new OpenContainer widget
|
I implemented the OpenContainer from animations package https://pub.dev/packages/animations to animate screen opening but I want to disable that dark backdrop (or at least make it invisible) during animation. Is is possible?
|
c: new feature,customer: google,package,c: proposal,p: animations,team-ecosystem,P3,triaged-ecosystem
|
low
|
Major
|
635,733,967 |
node
|
node localhost resolves to 127.0.0.1 instead of ::1 on IPv6-only network
|
* **Version**: 12.17, 10.20
* **Platform**: Debian 5.6.14-1 (2020-05-23) x86_64 GNU/Linux
* **Subsystem**: dns
In a IPv6 only setup that can be reproduced with:
```
unshare -n
ip li set lo up
ip li add dummy0 type dummy
ip li set dummy0 up
```
and making sure `/etc/hosts` has that line
```
::1 localhost ip6-localhost ip6-loopback
```
[many tests fail](https://buildd.debian.org/status/fetch.php?pkg=nodejs&arch=amd64&ver=12.17.0~dfsg-4&stamp=1591383846&raw=0)
E.g. parallel/test-http-localaddress throws `Error: bind EINVAL 127.0.0.2`.
There is similar problem in Perl, in particular see this message:
https://bugs.debian.org/962318#12
|
dns
|
low
|
Critical
|
635,756,007 |
go
|
net/mail: ParseAddress() accepts valid RFC 5322 addresses with domain part starting with a dash which are invalid RFC 1035 addresses, should we tighten the permissive validation?
|
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.13 darwin/amd64
go go1.14.3 playground
</pre>
### Does this issue reproduce with the latest release?
Yes: https://play.golang.org/p/Z3a5zj6Qch6
### 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/bmassemin/Library/Caches/go-build"
GOENV="/Users/bmassemin/Library/Application Support/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GONOPROXY=""
GONOSUMDB=""
GOOS="darwin"
GOPATH="/Users/bmassemin"
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/tn/b45tkwwd0dg36r6yk1bzvzv40000gn/T/go-build066110340=/tmp/go-build -gno-record-gcc-switches -fno-common"
</pre></details>
### What did you do?
https://play.golang.org/p/Z3a5zj6Qch6
```
package main
import (
"net/mail"
"testing"
"github.com/stretchr/testify/assert"
)
func Test(t *testing.T) {
_, err := mail.ParseAddress("[email protected]")
assert.Error(t, err)
_, err = mail.ParseAddress("[email protected]")
assert.Error(t, err)
}
```
### What did you expect to see?
I'm expecting the test to pass, since `[email protected]` is not a valid address.
A domain can't starts or ends with a dash according to this [RFC](https://tools.ietf.org/html/rfc1035#section-2.3.1)
### What did you see instead?
The email address is properly parsed with the invalid domain.
|
NeedsDecision
|
low
|
Critical
|
635,764,671 |
TypeScript
|
"Filename too long" on Windows when cloning test folder
|
**Code:**
git config --global core.symlinks true
git clone --recurse-submodules https://github.com/denoland/deno.git
**Actual behavior:**
"Filename too long" when cloning test files
> tests/baselines/reference/tscWatch/emitAndErrorUpdates/assumeChangesOnlyAffectDirectDependenciesAndD/updates-errors-when-file-transitively-exported-file-changes/when-there-are-circular-import-and-exports.js
**Related Issues:** <!-- Did you find other bugs that looked similar? -->
https://github.com/denoland/deno/issues/6211
|
Suggestion,Experience Enhancement
|
low
|
Critical
|
635,773,284 |
pytorch
|
max_unpool2d and max_unpool3d cpp signature should be similar
|
https://github.com/pytorch/pytorch/blob/master/aten/src/ATen/native/native_functions.yaml#L6021-L6047
Currently we have different signatures for `max_unpool2d` and `max_unpool3d`.
```
- func: max_unpool2d(Tensor self, Tensor indices, int[2] output_size) -> Tensor
- func: max_unpool3d(Tensor self, Tensor indices, int[3] output_size, int[3] stride, int[3] padding) -> Tensor
```
From python API, it looks like we should move the `calculate output_size` logic to cpp and make `max_unpool2d` signature similar to `max_unpool3d`. currently stride/padding are passed to cpp but not used.
https://github.com/pytorch/pytorch/blob/master/torch/nn/functional.py#L706
|
triaged,enhancement,module: pooling
|
low
|
Major
|
635,792,697 |
rust
|
rustdoc: `--enable-index-page` integration with cargo?
|
Hello,
While I was asking the `cargo` team whether it'd be possible to add an `index.html` page to the docs that'd list the crates in the workspace (initially not including dependencies, though that's not a big issue), I have been pointed to rustdoc's `--enable-index-page` flag.
So I'm now asking you the questions from https://github.com/rust-lang/cargo/issues/8229#issuecomment-640899528, that are needed to know whether `cargo doc` should have support for rustdoc's `--enable-index-page`. And in particular, whether there is a desire or plan to stabilize it, whether there are alternatives, etc.
I'm not sure it'd be efficient if I were a middleman in all these exchanges, so maybe just answer there?
Anyway, here it is, thank you for all you do on rustdoc anyway and whatever the result of this conversation ends up being!
|
T-cargo,C-feature-request
|
medium
|
Major
|
635,803,114 |
go
|
x/text/encoding: UTF-16 decoder handles unpaired surrogates incorrectly
|
When decoding some strings containing unpaired surrogates, UTF-16 decoder produces wrong number of `\ufffd` runes. Some examples:
* On string `\xdc\x00\xdc\x00`: expected result `\ufffd\ufffd` (two copies of `\ufffd`), actual result `\ufffd`.
* On string `\xd8\x00\x00`: expected result `\ufffd`, actual result `\ufffd\ufffd`.
The expected results are derived from a [WhatWG spec](https://encoding.spec.whatwg.org/#common-infrastructure-for-utf-16be-and-utf-16le).
Also, the name of internal function `isHighSurrogate` is misleading: it actually checks whether the argument is a low surrogate.
Code to reproduce:
```go
package main
import (
"golang.org/x/text/encoding/unicode"
"fmt"
)
func main() {
res, err := unicode.UTF16(unicode.BigEndian, unicode.IgnoreBOM).NewDecoder().String("\xd8\x00 ")
fmt.Println(res, err)
}
```
|
NeedsInvestigation
|
low
|
Minor
|
635,827,933 |
rust
|
make `pub type foo = bar` and `pub use bar as foo` interchangable in next edition
|
Right now renaming a type and re-exporting it via a type alias can be a breaking change whereas re exporting it under the new name is not a breaking change. As far as I know the only difference between the two is how they interact with tuple-struct constructors:
```rust
pub struct MyStruct(u32);
pub use self::MyStruct as PubUse;
pub type PubType = MyStruct;
fn main() {
let _ = PubUse(5); // OK
// let _ = PubType(5); // Doesn't work
}
```
This happens because tuple struct constructors are just free functions with the same ident as the type they're constructing. `use` statements bring in items from all 3 namespaces that match the given ident but `type` items only alias the type itself.
This can be fixed by making it so that the compiler generates a constructor for the alias when it sees that the `RHS` of the type alias is a tuple-struct. This would be a breaking change because users can already define a free function with the same name as the type alias, which people do currently do to add the necessary constructor to work around this very issue.
To resolve this @joshtriplett has recommended the following steps:
- [ ] implement the alias constructor fix as a feature gated PR
- [ ] add an allow by default lint to detect free functions that would conflict with the newly generated constructors
- [ ] do a crater run with the above lint set to deny to measure the impact of this change
- [ ] add this lint to the future-compatibility lint group
|
T-lang,A-maybe-future-edition
|
medium
|
Major
|
635,851,196 |
pytorch
|
Support mainstream pruning techniques
|
## 🚀 Feature
support mainstream pruning techniques.
## Motivation
Recently, lots of new pruning algorithms are proposed, but the [current implementation](https://github.com/pytorch/pytorch/blob/4fef3763dd7266195e8ef20c0a5d4dd1219afeb0/torch/nn/utils/prune.py) mainly contains norm-based pruning methods.
Based on the [discussion here](https://github.com/pytorch/pytorch/issues/38598#issuecomment-641009728), I believe it's meaningful to add some state-of-the-art pruning methods.
cc @albanD @mruberry @jbschlosser @walterddr @mikaylagawarecki
|
feature,triaged,needs research,module: pruning
|
low
|
Major
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.