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 |
---|---|---|---|---|---|---|
483,236,767 | pytorch | [RPC] Fix logging initialization warning in ProcessGroupAgent | ## π Bug
On existing of RpcAgent process, the log lines shows that the logger was not initialized.
```Bash
WARNING: Logging before InitGoogleLogging() is written to STDERR
I0820 23:57:09.260012 428932 process_group_agent.cpp:232] Shutting down ProcessGroupAgent w:3
WARNING: Logging before InitGoogleLogging() is written to STDERR
I0820 23:57:09.259994 428921 process_group_agent.cpp:232] Shutting down ProcessGroupAgent w:2
WARNING: Logging before InitGoogleLogging() is written to STDERR
WARNING: Logging before InitGoogleLogging() is written to STDERR
I0820 23:57:09.260094 428930 process_group_agent.cpp:232] Shutting down ProcessGroupAgent w:0
I0820 23:57:09.260102 428931 process_group_agent.cpp:232] Shutting down ProcessGroupAgent w:1
WARNING: Logging before InitGoogleLogging() is written to STDERR
I0820 23:57:09.260113 428928 process_group_agent.cpp:232] Shutting down ProcessGroupAgent w:4
```
## Reason
Caffe2/C10 logging is used [here](https://github.com/pytorch/pytorch/blob/b6803d62fd996bcd5ec6775f2a898cdbf645a106/torch/csrc/distributed/rpc/process_group_agent.cpp#L232).
## Fix
In Caffe2 code base, logger is usually initialized by calling
```
core.GlobalInit(["python", "--caffe2_log_level=0", "--caffe2_omp_num_threads=1"])
```
It calls [`InitCaffeLogging`](https://github.com/pytorch/pytorch/blob/c25e33789e45e20d3fa317f60e29bdbe49bffd28/c10/util/Logging.cpp#L153). | module: internals,triaged | low | Critical |
483,239,903 | opencv | aligned allocation in c++17 dialect | > Headers/core/utility.hpp:581:7: error: aligned deallocation function of type 'void (void *, enum std::align_val_t) noexcept' is only available on iOS 11 or newer
>
> class ParallelLoopBodyLambdaWrapper : public ParallelLoopBody
> ^
>
> Headers/core/utility.hpp:598:26: note: in implicit destructor for 'cv::ParallelLoopBodyLambdaWrapper' first required here
>
> parallel_for_(range, ParallelLoopBodyLambdaWrapper(functor), nstripes);
> ^
>
> Headers/core/utility.hpp:581:7: note: if you supply your own aligned allocation functions, use -faligned-allocation to silence this diagnostic
>
> class ParallelLoopBodyLambdaWrapper : public ParallelLoopBody | priority: low,category: build/install,platform: ios/osx,incomplete | low | Critical |
483,276,961 | rust | Improve bytes per second benchmark output | I'm building a library that implements a somewhat slow compression algorithm and I wanted to see what sort of speeds I was getting. Using the benchmark I can get the speeds for some tests; but not for the slower ones:
```
test compress_large::level_0 ... bench: 10,848,110 ns/iter (+/- 343,409) = 1 MB/s
test compress_random::level_0 ... bench: 257,280,250 ns/iter (+/- 19,228,907)
```
It would be nice to have the speed output in other units, like KB/s and B/s. It could also be extended to produce GB/s if needed. | C-enhancement,T-compiler,T-dev-tools,A-libtest | low | Major |
483,291,841 | flutter | Using activity-alias as MAIN/LAUNCHER activity will throw an incorrect error when using `flutter run` | <!-- Thank you for using Flutter!
If you are looking for support, please check out our documentation
or consider asking a question on Stack Overflow:
* https://flutter.dev/
* https://api.flutter.dev/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you have found a bug or if our documentation doesn't have an answer
to what you're looking for, then fill our the template below. Please read
our guide to filing a bug first: https://flutter.dev/docs/resources/bug-reports
-->
When using an activity-alias in the AndroidManifest.xml for your main activity it is not picked up by the Flutter tools and will thrown an error even though it's a valid state. (see https://developer.android.com/guide/topics/manifest/activity-alias-element )
The application will run correctly when using `./gradlew installDebug`, confirming that it's a valid state.
Only the detection in https://github.com/flutter/flutter/blob/master/packages/flutter_tools/lib/src/application_package.dart#L209 is incorrect.
## Steps to Reproduce
<!--
Please tell us exactly how to reproduce the problem you are running into.
Please attach a small application (ideally just one main.dart file) that
reproduces the problem. You could use https://gist.github.com/ for this.
If the problem is with your application's rendering, then please attach
a screenshot and explain what the problem is.
-->
1. run `flutter create activity_alias`
2. remove the intent-filter from the `.MainActivity`
3. add an activity-alias
```
<activity-alias android:name="this.doesnt.matter" android:targetActivity=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity-alias>
```
4. run `flutter run`
## Logs
<!--
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.
-->
```
[ +36 ms] package identifier or launch activity not found.
[ +1 ms] Please check /Users/peter/dev/github/activity_alias/android/app/src/main/AndroidManifest.xml for errors.
[ +3 ms] No application found for TargetPlatform.android_x86.
Is your project missing an android/app/src/main/AndroidManifest.xml?
Consider running "flutter create ." to create one.
#0 throwToolExit (package:flutter_tools/src/base/common.dart:28:3)
#1 RunCommand.runCommand (package:flutter_tools/src/commands/run.dart:475:7)
<asynchronous suspension>
#2 FlutterCommand.verifyThenRunCommand (package:flutter_tools/src/runner/flutter_command.dart:478:18)
<asynchronous suspension>
#3 FlutterCommand.run.<anonymous closure> (package:flutter_tools/src/runner/flutter_command.dart:383:33)
<asynchronous suspension>
#4 AppContext.run.<anonymous closure> (package:flutter_tools/src/base/context.dart:153:29)
<asynchronous suspension>
#5 _rootRun (dart:async/zone.dart:1124:13)
#6 _CustomZone.run (dart:async/zone.dart:1021:19)
#7 _runZoned (dart:async/zone.dart:1516:10)
#8 runZoned (dart:async/zone.dart:1463:12)
#9 AppContext.run (package:flutter_tools/src/base/context.dart:152:18)
<asynchronous suspension>
#10 FlutterCommand.run (package:flutter_tools/src/runner/flutter_command.dart:375:20)
#11 CommandRunner.runCommand (package:args/command_runner.dart:197:27)
<asynchronous suspension>
#12 FlutterCommandRunner.runCommand.<anonymous closure> (package:flutter_tools/src/runner/flutter_command_runner.dart:396:21)
<asynchronous suspension>
#13 AppContext.run.<anonymous closure> (package:flutter_tools/src/base/context.dart:153:29)
<asynchronous suspension>
#14 _rootRun (dart:async/zone.dart:1124:13)
#15 _CustomZone.run (dart:async/zone.dart:1021:19)
#16 _runZoned (dart:async/zone.dart:1516:10)
#17 runZoned (dart:async/zone.dart:1463:12)
#18 AppContext.run (package:flutter_tools/src/base/context.dart:152:18)
<asynchronous suspension>
#19 FlutterCommandRunner.runCommand (package:flutter_tools/src/runner/flutter_command_runner.dart:356:19)
<asynchronous suspension>
#20 CommandRunner.run.<anonymous closure> (package:args/command_runner.dart:112:25)
#21 new Future.sync (dart:async/future.dart:224:31)
#22 CommandRunner.run (package:args/command_runner.dart:112:14)
#23 FlutterCommandRunner.run (package:flutter_tools/src/runner/flutter_command_runner.dart:242:18)
#24 run.<anonymous closure>.<anonymous closure> (package:flutter_tools/runner.dart:62:22)
<asynchronous suspension>
#25 _rootRun (dart:async/zone.dart:1124:13)
#26 _CustomZone.run (dart:async/zone.dart:1021:19)
#27 _runZoned (dart:async/zone.dart:1516:10)
#28 runZoned (dart:async/zone.dart:1500:12)
#29 run.<anonymous closure> (package:flutter_tools/runner.dart:60:18)
<asynchronous suspension>
#30 AppContext.run.<anonymous closure> (package:flutter_tools/src/base/context.dart:153:29)
<asynchronous suspension>
#31 _rootRun (dart:async/zone.dart:1124:13)
#32 _CustomZone.run (dart:async/zone.dart:1021:19)
#33 _runZoned (dart:async/zone.dart:1516:10)
#34 runZoned (dart:async/zone.dart:1463:12)
#35 AppContext.run (package:flutter_tools/src/base/context.dart:152:18)
<asynchronous suspension>
#36 runInContext (package:flutter_tools/src/context_runner.dart:56:24)
<asynchronous suspension>
#37 run (package:flutter_tools/runner.dart:51:10)
#38 main (package:flutter_tools/executable.dart:62:9)
<asynchronous suspension>
#39 main (file:///Users/peter/dev/sdk/flutter/packages/flutter_tools/bin/flutter_tools.dart:8:3)
#40 _startIsolate.<anonymous closure> (dart:isolate-patch/isolate_patch.dart:299:32)
#41 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:172:12)
```
<!--
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 activity_alias...
No issues found! (ran in 1.1s)
```
<!-- Finally, paste the output of running `flutter doctor -v` here. -->
```
[β] Flutter (Channel stable, v1.7.8+hotfix.4, on Mac OS X 10.14.6 18G87, locale en-BE)
β’ Flutter version 1.7.8+hotfix.4 at /Users/peter/dev/sdk/flutter
β’ Framework revision 20e59316b8 (5 weeks ago), 2019-07-18 20:04:33 -0700
β’ Engine revision fee001c93f
β’ Dart version 2.4.0
[β] Android toolchain - develop for Android devices (Android SDK version 29.0.1)
β’ Android SDK at /Users/peter/dev/sdk/Android
β’ Android NDK location not configured (optional; useful for native profiling support)
β’ Platform android-29, build-tools 29.0.1
β’ ANDROID_HOME = /Users/peter/dev/sdk/Android
β’ Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
β’ Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
β’ All Android licenses accepted.
[β] Xcode - develop for iOS and macOS (Xcode 10.3)
β’ Xcode at /Applications/Xcode.app/Contents/Developer
β’ Xcode 10.3, Build version 10G8
β’ CocoaPods version 1.7.5
[β] iOS tools - develop for iOS devices
β’ ios-deploy 1.9.4
[β] Android Studio (version 3.5)
β’ Android Studio at /Applications/Android Studio.app/Contents
β’ Flutter plugin version 37.1.1
β’ Dart plugin version 191.8405
β’ Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
[β] IntelliJ IDEA Ultimate Edition (version 2019.2)
β’ IntelliJ at /Applications/IntelliJ IDEA.app
β’ Flutter plugin version 38.2.4
β’ Dart plugin version 192.6459
[β] VS Code (version 1.37.0)
β’ VS Code at /Applications/Visual Studio Code.app/Contents
β’ Flutter extension version 3.3.0
[β] Connected device (1 available)
β’ Android SDK built for x86 β’ emulator-5554 β’ android-x86 β’ Android 9 (API 28) (emulator)
β’ No issues found!
```
| c: new feature,tool,t: gradle,customer: solaris,P3,team-tool,triaged-tool | medium | Critical |
483,310,112 | youtube-dl | is there have a way to skip vedio doesn't have subtitle? | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check list in order to prevent the most common mistakes and misuse of youtube-dl:
- Look through the README (http://yt-dl.org/readme) and FAQ (http://yt-dl.org/faq) for similar questions
- Search the bugtracker for similar questions: http://yt-dl.org/search-issues
- Finally, put x into all relevant boxes (like this [x])
-->
- [ y ] I'm asking a question
- [ y ] I've looked through the README and FAQ for similar questions
- [ y ] I've searched the bugtracker for similar questions including closed ones
## Question
<!--
Ask your question in an arbitrary form. Please make sure it's worded well enough to be understood, see https://github.com/ytdl-org/youtube-dl#is-the-description-of-the-issue-itself-sufficient.
-->
i want to download the video with subtitle instead of auto-subtitle, so i only use write-sub options, but it will download the vedio anyway, is there a way to skip those vedios without subtitles ? | question | low | Critical |
483,367,886 | rust | debuginfo/issue-22656.rs fails with LLVM/clang Assertion `Prior->FD->hasAttr<NoUniqueAddressAttr>() && "should not have reused this field's tail padding"' failed. | I haven't been running debuginfo tests locally for a long while due to a variety of issues, but I was surprised to get only 1 failure, `src/test/debuginfo/issue-22656.rs` with LLDB:
```cpp
python2.7: /home/eddy/Projects/rust-2/src/llvm-project/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp:603:
void (anonymous namespace)::CGRecordLowering::clipTailPadding():
Assertion `Prior->FD->hasAttr<NoUniqueAddressAttr>() &&
"should not have reused this field's tail padding"' failed.
```
If I had to guess, LLDB was trying to compile something as C++, and probably ran into something that's different in Rust (is it synthesizing C++ `struct`/`union` definitions from DWARF?).
cc @michaelwoerister
**EDIT**: this is the test, and, well, this looks like a regression?
https://github.com/rust-lang/rust/blob/bea0372a1a7a31b81f28cc4d9a83a2dc9a79d008/src/test/debuginfo/issue-22656.rs#L1-L49 | A-debuginfo,P-low,T-compiler,C-bug | low | Critical |
483,443,443 | TypeScript | Cannot use nesting computed property name in an interface | **TypeScript Version:** 3.5.1
**Code**
```ts
const enum Types {
FOO = 0,
};
const Names = {
[Types.FOO]: 'foo',
} as const;
interface Baz {
[Names[Types.FOO]]: string;
}
```
**Expected behavior:**
No error
**Actual behavior:**
Error: A computed property name in an interface must refer to an expression whose type is a literal type or a 'unique symbol' type.
**Playground Link:** https://www.typescriptlang.org/play/index.html#code/MYewdgzgLgBApmArgWxgFQJ4Ac4RgbwFgAoGMmAMQHkqYBeGABgBoSBfAbhJNElgDkAhslz0CJcjADamHBAB01KgF0AXDADkAMxAgNrYmxiC8vaF2IkAlmChwATlsHA4MAEKCAXuNLkpQkQgZbFxFGmU1GGh7GwBzCzYgA | Bug | low | Critical |
483,444,850 | kubernetes | Give the proper reason for killing pods | Add the reason the pod was killed, e.g. exceeded memory limit, liveness probe, readiness probe...
Kubelet outputs
"Killing container with id docker://your-example-application:Need to kill Pod"
Reason: "Killing"
This message is unhelpful when it comes to diagnosing why the pod was killed, and can be improved with the reason from Kubelet to aid debugging.
| sig/node,kind/feature | high | Critical |
483,459,430 | flutter | SwitchListTile style different based on subtitle | If I have a SwitchListTile with one line of subtitle, it works fine. All the SwitchListTile are the same height.
As soon as the subtitle is longer and takes two lines, the SwitchListTile is even smaller than with one line.
This is a very strange behaviour. Shouldn't it stay at least the same height as with one line?
Flutter version: stable, v1.7.8+hotfix.4 | framework,f: material design,has reproducible steps,P2,found in release: 2.5,found in release: 2.6,team-design,triaged-design | low | Major |
483,475,025 | pytorch | torch.cuda.synchronize blocks CUDA execution on other threads using other devices. | ## π Bug
In a situation in which different Python threads execute CUDA operations on different devices, calling torch.cuda.synchronize blocks CUDA executions on all threads, including those on other CUDA devices.
## To Reproduce
1. `git clone https://gist.github.com/c812a38a338878f5c02f6193511afc6a.git cudasync`
2. `cd cudasync/`
3. `OMP_NUM_THREADS=1 python cudasync.py` (produces trace file)
## Expected behavior
`torch.cuda.sync(device=my_device)` should not affect execution of CUDA operations on devices other than `my_device`.
## Environment
```
PyTorch version: 1.3.0.dev20190816
Is debug build: No
CUDA used to build PyTorch: 10.0.130
OS: Ubuntu 18.04.2 LTS
GCC version: (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0
CMake version: version 3.12.2
Python version: 3.7
Is CUDA available: Yes
CUDA runtime version: 9.2.88
GPU models and configuration:
GPU 0: Quadro GP100
GPU 1: Quadro GP100
Nvidia driver version: 410.79
cuDNN version: Could not collect
Versions of relevant libraries:
[pip] numpy==1.16.4
[pip] torch==1.3.0.dev20190816
[pip] torchvision==0.5.0a0+19315e3
[conda] blas 1.0 mkl
[conda] mkl 2019.4 243
[conda] mkl_fft 1.0.12 py37ha843d7b_0
[conda] mkl_random 1.0.2 py37hd81dba3_0
[conda] pytorch 1.3.0.dev20190816 py3.7_cuda10.0.130_cudnn7.6.2_0 pytorch-nightly
[conda] torchvision 0.5.0.dev20190816 py37_cu100 pytorch-nightly
```
## Additional context
Trace file: [cudasync.trace.gz](https://github.com/pytorch/pytorch/files/3525922/cudasync.trace.gz)
This probably isn't a GIL issue as it doesn't seem to happen when the other threads execute CPU PyTorch operations.
Perfetto link to trace: https://ui.perfetto.dev/#!/?s=76397c96cea6a47c45aed36cd84586cf54469d34089d3578afb7e795219229
Screenshot:

| module: cuda,triaged | low | Critical |
483,510,160 | node | `socket.setTimeout` destroys connection automatically | <!--
Thank you for reporting a possible bug in Node.js.
Please fill in as much of the template below as you can.
Version: output of `node -v`
Platform: output of `uname -a` (UNIX), or version and 32 or 64-bit (Windows)
Subsystem: if known, please specify the affected core module name
If possible, please provide code that demonstrates the problem, keeping it as
simple and free of external dependencies as you can.
-->
* **Version**: v10.15.3
* **Platform**: Windows 10 Pro 64-bit
<!-- Please provide more details below this comment. -->
When a socket timeouts via `socket.setTimeout()`, it is automatically destroyed, even though the [documentation ](https://nodejs.org/api/net.html#net_socket_settimeout_timeout_callback) states that it should not be.
> When an idle timeout is triggered the socket will receive a 'timeout' event but the connection will not be severed. The user must manually call socket.end() or socket.destroy() to end the connection.
Code to reproduce:
```
const http = require('http');
const server = http.createServer(function (req, res) {
});
server.on("connection", socket => {
console.log('on connection');
socket.setTimeout(2000, () => {
console.log('on socket timeout', socket.destroyed);
});
});
server.listen(3000);
``` | question,http,doc | low | Critical |
483,530,528 | TypeScript | `esModuleInterop` breaks circular imports | <!-- π¨ STOP π¨ π¦π§π’π£ π¨ πΊπ»πΆπ· π¨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section!
Please help us by doing the following steps before logging an issue:
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues
* Read the FAQ: https://github.com/Microsoft/TypeScript/wiki/FAQ
Please fill in the *entire* template below.
-->
<!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.5.2
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
**Code**
`./tsconfig.json`:
``` json
{
"compilerOptions": {
"esModuleInterop": true
},
"files": ["./src/main.ts"]
}
```
`./src/main.ts`
```ts
import { other } from './other';
console.log(other.foo1);
```
`./src/other.ts`
```ts
export const foo1 = 1;
export const foo2 = 2;
// Import *this* module as a namespace
// Unexpected error:
// Circular definition of import alias 'other'
import * as other from './other';
// Re-export the namespace as a named export
export { other };
```
(For context on why you might do this: [it allows you to give namespace imports a common name](https://medium.com/unsplash/named-namespace-imports-7345212bbffb).)
**Expected behavior:**
No error
**Actual behavior:**
Error (see code comment) | Bug | low | Critical |
483,536,292 | flutter | Instrumentation test plugin should report test results individually as they finish | Right now the instrumentation_test plugin batches up all the test results into a single result. It should report each individual Dart test as an instrumentation test result as soon as it finishes. | a: tests,c: new feature,team,framework,f: integration_test,P3,team-framework,triaged-framework | low | Major |
483,543,763 | flutter | [camera] plugin βΒ cannot select telephoto lens | There appears to be no way to select the telephoto lens on an iPhone 8+ using `camera: ^0.5.4`. It only shows two cameras, one front, one back. | c: new feature,p: camera,package,team-ecosystem,P2,triaged-ecosystem | low | Minor |
483,562,790 | godot | Improve Godot shutdown process on Android | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
Any version < 3.2
<!-- Specify commit hash if non-official. -->
**OS/device including version:**
Android
<!-- Specify GPU model and drivers if graphics-related. -->
**Issue description:**
PR #31521 provides a temp solution to properly shutdown Godot apps on Android by killing the entire app process.
The proper fix involves tracking down the native components that are initialized at startup and properly cleaning them at application shut down.
This is a more involved fix as it might involve multiple refactors across the codebase.
<!-- What happened, and what was expected. --> | enhancement,platform:android,topic:porting | low | Minor |
483,577,049 | create-react-app | Bump the Hooks lint plugin to 2.0.1 | This adds https://github.com/facebook/react/pull/16455. Technically a breaking change because it might uncover new violations. | issue: proposal,needs triage | low | Minor |
483,627,556 | pytorch | DataLoader slow down when `pin_memory=False` | ## π Bug
We have also observed that `pin_memory=False` leads to very slow data loading in the pytorch main process.
After examining code, I found a possible explanation:
a) `worker_result_queue.get()`(type `torch.multiprocessing.Queue`) is much slower (40~100ms) compared to `data_queue.get()` (type `torch._six.queue`, takes <5ms).
b) When `pin_memory=True`, there is a back ground thread moving data from `worker_result_queue` to `data_queue`. And this causes additional CPU memory usage (in my case, ~120GB v.s. 145GB).
c) When `pin_memory=False`, `data_queue` is `worker_result_queue`, and pytorch uses a fore ground thread in main process to fetch data from the `data_queue` and re-order them, causing a delay varying from 40ms (no re-order) to 800ms (worse case re-order with 10 data workers) when calling `data_loader_iter.next()`. The delay can be even larger when main process is CPU bounded due to context switching between threads.
I believe the slow `worker_result_queue.get()` is due to unpickling, as in b) it shows the unpickled data (in `data_queue` when `pin_memory=True`) is larger than the pickled one (in `worker_result_queue`).
The solution to this issue can be:
Also use a background thread to move data from `worker_result_queue` to `data_queue` when `pin_memory=False`.
However, we need to be careful about this solution. As described in #24927, having multiple data loader iterator instances alive at the same time can lead to main process stuck in `pin_memory_loop`. If we implement a background thread to move data, I am worried that it could stuck similarly at some edge cases.
## To Reproduce
N/A, description already identified where the issue is.
## Expected behavior
`data_loader_iterator.next()` should return almost immediately when samples are pre-fetched.
## Environment
- PyTorch Version (e.g., 1.0): `1.2.0a0+a5e6586`
- OS (e.g., Linux): Ubuntu 14.04
- How you installed PyTorch (`conda`, `pip`, source): source
- Build command you used (if compiling from source): bazel
- Python version: 2.7.6
- CUDA/cuDNN version: 10.0.130/7
- GPU models and configuration: v100/1080ti
- Any other relevant information:
## Additional context
<!-- Add any other context about the problem here. -->
cc @SsnL | module: performance,module: multiprocessing,module: dataloader,triaged | low | Critical |
483,637,812 | pytorch | Data worker should fetch a sample instead of a batch. | ## π Feature
In multiprocess data loader, each data worker should fetch a sample instead of fetching a batch. (for `MapDataset` type)
## Motivation
1. Data workers will focus more on front part of the data queue, making the immediate needed batch faster to return. For example, when instantiating a new data loader iterator with batch size 2 and sampling sequence `[[1, 2], [3, 4]]`, there will be two workers fetching simultaneously for sample `[1, 2]` instead of only one worker fetching `[1, 2]` and the other worker fetching `[3, 4]`, making the 1st batch faster to be available. The effect is even more beneficial when `batch_size` is larger, e.g. `batch_size=1` v.s. `batch_size=10`.
2. Consume less CPU memory with the same `num_workers`. Right now the pre-fetching queue size is `2 * batch_szie * num_workers`, making the queue size proportional to `batch_size`. This however, makes CPU memory consumption significantly more when increasing `batch_size`. For example, when I increase `batch_size` from 1 to 10, I need 10x CPU memory to hold the queue, but the data loading speed stays the same because `num_workers` stays the same. Using per-sample fetching can essentially decouple queue memory consumption from `batch_size`, and allow to increase `num_workers` to speed up data loading (while with current per-batch fetching we cannot increase `num_workers` because we have hit the memory limit).
## Pitch
We can flatten the batch sampler and send individual samples to data workers. In terms of determinism, the samples will still be returned in the same order (for `MapDataset` type).
For example, with 2 workers, sending `[[1, 2], [3, 4]]` to workers will get back as `[[1, 2], [3, 4]]`. Sending `[1, 2, 3, 4]` to workers will still get back as `[1, 2, 3, 4]` after the reordering logic.
The operational difference between the two is `collate_fn` will be running in the main process instead of in the data worker process. So if `collate_fn` is CPU intensive, I can foresee some CPU bottleneck happening in the main process.
Another aspect on determinism is when `timeout` is enabled in data loader. In per-batch fetching, when a timeout happens, a batch is dropped. But in per-sample fetching, a timeout will only drop one sample, making the rest part of batches mis-aligned. For example, if in `[[1, 2], [3, 4], [5, 6]]`, fetching sample 3 timed out, with per-batch fetching the data loader will return `[[1, 2], [5, 6]]`, but with per-sample fetching it will return `[[1, 2], [4, 5]]`. However, I believe if `timeout` is enabled, we are losing determinism anyway, so this behavior should be fine.
## Alternatives
Right now we are chaining a `MapDataset` loader (`batch_size=1`, `num_workers=<desired num of workers>`) with a `iterableDataset` loader (`batch_size=<desired batch size`, `num_workers=0`) in order to achieve this per-sample fetching structure.
It would be cleaner if PyTorch improves the data loading structure directly.
## Additional context
N/A
cc @SsnL | module: dataloader,triaged,enhancement | low | Major |
483,657,872 | flutter | Remove generated Pod directory on `flutter clean` | ## Proposal
Remove Pod/ directory on `flutter clean`. See discussion at https://github.com/flutter/flutter/pull/38992#issuecomment-523644487. | tool,t: xcode,P3,team-tool,triaged-tool | low | Major |
483,679,999 | TypeScript | Fourslash server tests silently ignore compiler option directives | The existing working solution is to create a `tsconfig.json` fourslash-file, which is probably a better way to do things given that the server tests are supposed to mimic reality more closely, so my proposal would be to throw early when double-slash-attersand compiler directives are encountered.
Semi-related: #25081 | Infrastructure | low | Minor |
483,681,943 | neovim | API: nvim_input_flush | Proposal 1: API clients want a deterministic way to wait until "all input since _now_" has been processed.
1. new API function e.g. `nvim_input_flush()` ?
2. the function generates a new token and puts it in the input queue: https://github.com/neovim/neovim/issues/30760
- the token is a pseudokey like `<id:xxx>` where `xxx` is a monotonic integer
3. `nvim_input_flush()` blocks until the token is seen by `os_inchar`
Proposal 2 (alternative/additionally?): API clients want to know when _specific input_ has been processed.
1. new API function `nvim_input2({keys}, {callback})`: https://github.com/neovim/neovim/issues/30760
2. same as (2) in Proposal 2.
3. When `os_inchar` sees a token it
- invokes registered callbacks
- emits `nvim_input_event({token})`
Reference:
- #6247
- https://github.com/neovim/neovim/pull/4448#issuecomment-196264209
- https://github.com/neovim/neovim/pull/4448#issuecomment-523667181 | enhancement,api,input,event-loop | low | Minor |
483,714,539 | pytorch | [C++] Call find_package(Torch REQUIRED) more than one time in downstream project causes CMake configuration error | ## π Bug
Please see below minimal code to reproduce the problem
CMakeLists.txt
```
cmake_minimum_required(VERSION 3.11)
project(sample)
find_package(Torch REQUIRED)
find_package(Torch REQUIRED)
add_executable(${PROJECT_NAME} main.cpp)
target_link_libraries(${PROJECT_NAME} torch)
```
main.cpp
```
#include <ATen/ATen.h>
int main(){
return 0;
}
```
## Expected behavior
After
```
mkdir build
cd build
cmake ..
```
I expect my downstream cmake configuration to work like usual, but here's the error message I get
```
CMake Error at /usr/share/cmake/Caffe2/public/mkl.cmake:3 (add_library):
add_library cannot create imported target "caffe2::mkl" because another
target with the same name already exists.
Call Stack (most recent call first):
/usr/share/cmake/Caffe2/Caffe2Config.cmake:109 (include)
/usr/share/cmake/Torch/TorchConfig.cmake:40 (find_package)
CMakeLists.txt:6 (find_package)
-- Configuring incomplete, errors occurred!
```
I understand it's unusual to have the need to call `find_package(Torch REQUIRED)` twice but calling it twice for other popular libraries like OpenCV, TensorFlow, etc does not result in an error. Can someone please fix this?
## Environment
- OS : Ubuntu
- How you installed PyTorch: source
- Build command you used:
```
cmake -DBUILD_SHARED_LIBS=ON -DCMAKE_BUILD_TYPE=Release -DBUILD_CUSTOM_PROTOBUF=OFF -DBUILD_PYTHON=OFF -DBUILDING_WITH_TORCH_LIBS=ON -DUSE_SYSTEM_NCCL=ON ..
make -j
```
- CMake version: 3.15.2
- Python version: 2.7
- CUDA/cuDNN version: 10.0.130
- GPU models and configuration: GeForce GTX TITAN Black
cc @ezyang | module: build,triaged | low | Critical |
483,750,272 | create-react-app | Revisit SVG data URI | ### Background
SVG files are treated differently than other images in CRA.
(https://create-react-app.dev/docs/adding-images-fonts-and-files)
https://github.com/facebook/create-react-app/issues/1153 disabled automatic conversion of small SVG files into data URIs. The reason for that was incompatibility with SVG sprite systems, where the "fat" SVG document needs to be an external entity (or it could be inlined).
Oddly, the referenced `svg-sprite` and `gulp-svg-sprite` projects are not very active, with last releases ~1year ago each. Does that make the sprite technique obsolete? grandfathered? in active use?
I suspect that the `<style>` limitation (see below), also applies to SVG sprite systems.
It's odd to have special handling for SVG in CRA, when a sprite system is not bundled by default.
### Inline SVG
(https://create-react-app.dev/docs/adding-images-fonts-and-files#adding-svgs)
There's an alternative of using inline SVG XML, with some limitations:
* namespaces
* inline `<style>` elements
The core of the latter is that SVG styles are global, i.e. style in one inlined SVG pollutes all inlined SVG and even HTML. There are projects that attempt to inline the style into the SVG elements, but that's not always possible, for example, keyframes cannot be inlined. It may be possible to rename all inline styles to unique names for a given project [link? help needed to reference such projects].
SVG is typically designed in variety of 3rd party tools (let's say design team vs. dev team), thus it's unrealistic to require users to "make better SVG".
### Proposal.
As it is now, SVG handling is an ugly nit.
Let's reinstate data URI conversion of SVG files by default. This allows isolation between SVG files. I believe that's what most users expect. It's certainly more common for beginners than advanced techniques like sprites.
Let's optionally provide an escape hatch for sprite system users. | issue: proposal,needs triage | low | Major |
483,760,688 | flutter | Support Flutter add-to-library |
## Use case
Now I have a iOS framework to be used within other apps to integrate account and use center
features. Since we have framework on both iOS and android, I want to use flutter to write some
new pages proposed.
## Proposal
Now how add-to-app works is that flutter has to depend on iOS or android Lifecycles if I am correct, so in a iOS framework we have no access to host app's appDelegate or that would be additional work for our framework users. So I wonder is there a solution for that, Thank you very much and wish flutter best and cheer for the flutter team. | c: new feature,engine,d: api docs,a: existing-apps,c: proposal,P3,team-engine,triaged-engine | low | Major |
483,805,944 | pytorch | Benchmark cuDNN affine_grid_generator vs native | Similarly to https://github.com/pytorch/pytorch/issues/24470, the cuDNN `affine_grid_generator` should be benchmarked against the native CUDA version.
The dispatch to cuDNN for `affine_grid` was disabled in https://github.com/pytorch/pytorch/pull/24929, but it's good to verify that performance hasn't notably regressed.
I wouldn't advocate for re-enabling the dispatch to cuDNN for `affine_grid` in any case, because it seems to be a headache to maintain compatibility, and can only even be dispatched to under a limited set of circumstances anyway (see the growing list of conditions [here](https://github.com/seung-lab/pytorch/blob/5377478e94a7e2c86181a7686a7a492ecd147815/torch/nn/_functions/vision.py#L7-L8) and [here](https://github.com/seung-lab/pytorch/blob/5377478e94a7e2c86181a7686a7a492ecd147815/aten/src/ATen/native/GridSampler.cpp#L470-L476)).
The better remedy in case of a performance regression would probably be to optimize the native CUDA kernel.
cc @SsnL | module: performance,module: cudnn,module: nn,module: cuda,triaged | low | Major |
483,827,532 | electron | setContentProtection not working on macOS | <!-- As an open source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can.
-->
### Preflight Checklist
<!-- Please ensure you've completed the following steps by replacing [ ] with [x]-->
* [X] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/master/CONTRIBUTING.md) for this project.
* [X] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md) that this project adheres to.
* [X] I have searched the issue tracker for an issue that matches the one I want to file, without success.
### Issue Details
* **Electron Version:**
6.0.x , 7.0.x
* **Operating System:**
* macOS 10.14 , macos 10.15
* **Last Known Working Electron version:**
*4.x.x
### Expected Behavior
The function {browserwindow}.setContentProtection(true) , should make the app unrecordable for "Electron desktopCapturer" module.
### Actual Behavior
It does not work .
### To Reproduce
Make a simple blank app, setContentProtection of the browserWindow, capture the desktop stream using the desktopCapturer module and show it on a canvas.
| platform/macOS,bug :beetle:,7-0-x | high | Critical |
483,881,762 | rust | use of proc_macro[2]::TokenStream in a vector in TLS causes rustc panic | I am relatively new to rust, but I am a huge, huge fan. I hate to report an issue and hope that it's something worthwhile.
I am attempting to use `proc_macro[2]::TokenStream` in the implementation of a proc macro. I share a vector of `TokenStream`s across multiple invocations of those proc macros using storage allocated with `thread_local!`. That sounds complicated, but I promise it's not:
```
extern crate proc_macro;
extern crate proc_macro2;
use proc_macro::TokenStream;
use quote::quote;
use std::cell::RefCell;
thread_local!(static ARMS: RefCell<Vec<proc_macro2::TokenStream>> = RefCell::new(Vec::<proc_macro2::TokenStream>::new()));
#[proc_macro_attribute]
pub fn arm(
_ : TokenStream,
item: TokenStream,
) -> TokenStream {
let ts = proc_macro2::TokenStream::new();
ARMS.with(|arms| {
arms.borrow_mut().push(ts);
});
item
}
#[proc_macro]
pub fn make_arms(_: proc_macro::TokenStream) -> proc_macro::TokenStream {
proc_macro::TokenStream::from(quote!{ pub fn arms(&self) { self.arm1(); } })
}
```
Here's how I could use these proc macros:
```
extern crate rust_macro_error;
use rust_macro_error::arm;
use rust_macro_error::make_arms;
struct T {
_i: usize,
}
impl T {
pub fn new() -> Self {
T { _i: 2 }
}
#[arm]
pub fn arm1(&self) {
}
make_arms!();
}
fn main() {
T::new().arms();
}
```
Here is my Cargo.toml
```
[package]
name = "rust_macro_error"
version = "0.1.0"
authors = ["Will Hawkins <[email protected]>"]
edition = "2018"
[lib]
proc-macro = true
[[bin]]
name = "rust_macro_error"
path = "src/main.rs"
[dependencies]
quote="1.0.0"
proc-macro2="1.0.1"
[dependencies.syn]
version="1.0"
features = ["full"]
```
If it's easier, you can grab these files from this git repository: http://git.obs.cr/hawkinsw/rust_macro_error
When I run `cargo build`, I get a `rustc` failure. I have attempted to compile this with stable, nightly and "head" (stage2 compiler of HEAD). I get the same error no matter which compiler:
`fatal runtime error: failed to initiate panic, error 5`
I can run the compiler under `gdb` but see nothing worthwhile:
```
#0 0x00007ffff32999f3 in futex_wait_cancelable (private=<optimized out>,
expected=0, futex_word=0x7fffec4f54a8)
at ../sysdeps/unix/sysv/linux/futex-internal.h:88
#1 __pthread_cond_wait_common (abstime=0x0, mutex=0x7fffec4f5450,
cond=0x7fffec4f5480) at pthread_cond_wait.c:502
#2 __pthread_cond_wait (cond=0x7fffec4f5480, mutex=0x7fffec4f5450)
at pthread_cond_wait.c:655
#3 0x00007ffff3db4e62 in std::sys::unix::condvar::Condvar::wait (
mutex=<optimized out>, self=<optimized out>)
at src/libstd/sys/unix/condvar.rs:71
#4 std::sys_common::condvar::Condvar::wait (mutex=<optimized out>,
self=<optimized out>) at src/libstd/sys_common/condvar.rs:41
#5 std::sync::condvar::Condvar::wait (self=<optimized out>, guard=...)
at src/libstd/sync/condvar.rs:204
#6 0x00007ffff3d917db in std::thread::park () at src/libstd/thread/mod.rs:911
#7 0x00007ffff3d746e2 in std::sync::mpsc::blocking::WaitToken::wait (self=...)
at src/libstd/sync/mpsc/blocking.rs:71
#8 0x00007ffff702275d in std::sync::mpsc::stream::Packet<T>::recv (
self=0x7fffd8001080, deadline=...)
at /home/hawkinsw/code/rust/rust/src/libstd/sync/mpsc/stream.rs:194
#9 0x00007ffff70267ac in std::sync::mpsc::Receiver<T>::recv (
self=0x7ffff04f88f0)
at /home/hawkinsw/code/rust/rust/src/libstd/sync/mpsc/mod.rs:1197
#10 0x00007ffff7027055 in <std::sync::mpsc::IntoIter<T> as core::iter::traits::iterator::Iterator>::next (self=0x7ffff04f88f0)
at /home/hawkinsw/code/rust/rust/src/libstd/sync/mpsc/mod.rs:1533
#11 jobserver::imp::spawn_helper::{{closure}} ()
at /home/hawkinsw/.cargo/registry/src/github.com-1ecc6299db9ec823/jobserver-0.1.16/src/lib.rs:635
#12 std::sys_common::backtrace::__rust_begin_short_backtrace (f=...)
at /home/hawkinsw/code/rust/rust/src/libstd/sys_common/backtrace.rs:77
#13 0x00007ffff702a983 in std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}} () at /home/hawkinsw/code/rust/rust/src/libstd/thread/mod.rs:470
#14 <std::panic::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once (self=..., _args=<optimized out>)
at /home/hawkinsw/code/rust/rust/src/libstd/panic.rs:315
#15 std::panicking::try::do_call (data=<optimized out>)
at /home/hawkinsw/code/rust/rust/src/libstd/panicking.rs:296
#16 0x00007ffff3db6a14 in __rust_maybe_catch_panic (f=0x0,
data=0x7fffec4f54a8 "\002", data_ptr=0x7ffff04f8a00,
vtable_ptr=0x7ffff04f8a08) at src/libpanic_unwind/lib.rs:80
#17 0x00007ffff702ab84 in std::panicking::try (f=...)
at /home/hawkinsw/code/rust/rust/src/libstd/panicking.rs:275
#18 std::panic::catch_unwind (f=...)
at /home/hawkinsw/code/rust/rust/src/libstd/panic.rs:394
#19 std::thread::Builder::spawn_unchecked::{{closure}} ()
at /home/hawkinsw/code/rust/rust/src/libstd/thread/mod.rs:469
#20 core::ops::function::FnOnce::call_once{{vtable-shim}} ()
at /home/hawkinsw/code/rust/rust/src/libcore/ops/function.rs:235
#21 0x00007ffff3d75a6f in <alloc::boxed::Box<F> as core::ops::function::FnOnce<A>>::call_once (self=..., args=<optimized out>)
at /home/hawkinsw/code/rust/rust/src/liballoc/boxed.rs:922
#22 0x00007ffff3d7e7d0 in <alloc::boxed::Box<F> as core::ops::function::FnOnce<A>>::call_once (self=0x7fffec4f55b0, args=<optimized out>)
at /home/hawkinsw/code/rust/rust/src/liballoc/boxed.rs:922
#23 std::sys_common::thread::start_thread (main=<optimized out>)
at src/libstd/sys_common/thread.rs:13
#24 std::sys::unix::thread::Thread::new::thread_start (main=0x7fffec4f55b0)
at src/libstd/sys/unix/thread.rs:79
#25 0x00007ffff32936db in start_thread (arg=0x7ffff04fa700)
at pthread_create.c:463
#26 0x00007ffff3a4b88f in clone ()
at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95
```
There are a few interesting things that I have noticed while attempting to debug this:
1. If I use another type, say `String`, in the TLS vector, everything works fine.
2. If I don't push any values to the vector, everything works a-ok.
3. I can *sometimes* get the error message:
`use-after-free in 'proc_macro' handle`
and can narrow that down to line 315 in libproc_macro/bridge/client.rs. I understand that to mean that the "server" for the proc_macro implementation is not alive, for some reason. I have seen https://github.com/rust-lang/rust/issues/60593 and *think* that they are related but cannot seem to find the common thread.
I have debugged as much as I can and I am reaching out for your help! I would love to help solve the problem if you can point me in the right direction.
Again, thank you for all the work that you are doing for rust and the community around the language. | A-macros,T-compiler,A-proc-macros | medium | Critical |
483,909,880 | vscode | [html] don't validate custom event handlers as JavaScript | - VSCode Version: 1.37.1
- OS Version: Windows 10
**Consider the following code snippet:**
`<div onInvalidAttribute="test test" otherInvalidAttributeWithoutOnPrefix="test test"></div>`
If the name of the attribute is prefixed with **βonβ** and its value contains an empty space, then the following error is shown on the UI: ββ;β expected. (js)β and in the console output:
```
{
"resource": "/d:/test ext/test.html",
"owner": "_generated_diagnostic_collection_name_#0",
"severity": 8,
"message": "';' expected.",
"source": "js",
"startLineNumber": 1,
"startColumn": 31,
"endLineNumber": 1,
"endColumn": 35
}
```
I believe vs code thinks the attribute is an event or special in some way because it begins with βonβ and performs some stricter validations on its value.
**Steps to Reproduce:**
1. Create HTML file
2. Add any kind of html tag
3. Add an attribute with βonβ prefix to that tag (**onInvalidAttribute** was used in this example)
4. Give it a value containing an empty space in between (**test test** was used in this example)
Does this issue occur when all extensions are disabled? Yes, I have launched vs code using`code --disable-extensions`, the issue remains the same.
**I am looking for a way to disable this specific error as the stricter validation is probably intended. Ideally I do not want to change / rename the attributes beginning with "on".**
| bug,html | low | Critical |
483,983,928 | go | os/exec: $HOME not updated when running command as a different UID | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.12.5 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
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/wanrui/.cache/go-build"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/home/wanrui/workspace"
GOPROXY="https://goproxy.cn"
GORACE=""
GOROOT="/home/wanrui/go"
GOTMPDIR=""
GOTOOLDIR="/home/wanrui/go/pkg/tool/linux_amd64"
GCCGO="gccgo"
CC="gcc"
CXX="g++"
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 -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build173649310=/tmp/go-build -gno-record-gcc-switches"
</pre></details>
### What did you do?
<!--
If possible, provide a recipe for reproducing the error.
A complete runnable program is good.
A link on play.golang.org is best.
-->
there is testfile asynccmd .go
```
package main
import (
"bufio"
"context"
"flag"
"fmt"
_ "net/http/pprof"
"os/exec"
"os/user"
_ "runtime/pprof"
"strconv"
"syscall"
"time"
)
const omg = `ls -al /tmp/ && nohup sleep 1000 &`
func main() {
timeout := flag.Int("timeout", 120, "")
command := flag.String("cmd", omg, "")
runUser := flag.String("user", "www", "")
pgid := flag.Bool("pgid", true, "Setpgid εΌε
³γ")
flag.Parse()
ctx, cancle := context.WithTimeout(context.Background(), time.Second*time.Duration(*timeout))
defer cancle()
cmd := exec.CommandContext(ctx, "/bin/bash", "-c", *command)
user, _ := user.Lookup(*runUser)
uid, _ := strconv.Atoi(user.Uid)
gid, _ := strconv.Atoi(user.Gid)
sysProcAttr := &syscall.SysProcAttr{
Setpgid: *pgid,
Credential: &syscall.Credential{
Uid: uint32(uid),
Gid: uint32(gid),
},
}
cmd.SysProcAttr = sysProcAttr
stdout, _ := cmd.StdoutPipe()
stderr, _ := cmd.StderrPipe()
if err := cmd.Start(); err != nil {
fmt.Println("cmd.start occur error", err)
return
}
go func() {
b := bufio.NewReader(stdout)
for {
buf, err := b.ReadBytes('\n')
if err != nil {
fmt.Println("read stdout err:", string(buf), err)
return
}
fmt.Println("read stdout buff:", string(buf))
}
}()
go func() {
b := bufio.NewReader(stderr)
for {
buf, err := b.ReadBytes('\n')
if err != nil {
fmt.Println("read stderr err:", string(buf), err)
return
}
fmt.Println("read stderr buff:", string(buf))
}
}()
if err := cmd.Wait(); err != nil {
syscall.Kill(-cmd.Process.Pid, syscall.SIGKILL)
fmt.Println("cmd.wait occur error ", err)
}
}
```
there is file : /home/www/.bash_profile
```
# .bash_profile
# Get the aliases and functions
echo $HOME
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
export PATH
```
in /root dir run follow command:
```
./asynccmd -user="www" -cmd=" source /home/www/.bash_profile"
```
### What did you expect to see?
```
read stdout buff: /home/www
read stdout buff:
read stdout err: java: read |0: file already closed
read stderr err: read |0: file already closed
```
### What did you see instead?
out is:
```
read stdout buff: /root
read stdout buff:
read stdout err: java: read |0: file already closed
read stderr err: read |0: file already closed
``` | Documentation,NeedsInvestigation | low | Critical |
483,993,387 | ant-design | Allow collapsible sider to be used in fixed position | - [x] I have searched the [issues](https://github.com/ant-design/ant-design/issues) of this repository and believe that this is not a duplicate.
### What problem does this feature solve?
Presently, in `Layout Sider`, the `collapsible sider` is in `position:relative` by default. To use a `fixed sider`, we must use a non-collapsible design because when position is set as fixed for the sider, the content of the `Layout` is manually set to 200px to the right.
Collapsible navigation is a great tool, but cannot be used in fixed mode and this causes multiple problem:
1. When we set 200px for margin-right, we have to manually change this value in the content css which is not good design. It's not good design because, let's say we have layout A, B, C. A is the parent component containing B and C. B is the sider, and C is the content. If we do not have redux setup (for simple projects), communication of this 200px/collapse status/animation of content sliding becomes a tedious task.
### What does the proposed API look like?
The solution is really simple. For the first children inside a sider, there is a div with the `class`: `.ant-layout-sider-children`.
I was thinking, we check `if(collapsible && position==fixed)`, then we add the following css rules to the above-mentioned class:
```css
.ant-layout-sider-children {
width: inherit;
position: fixed;
}
```
This fixes all the problem, and we can use fixed collapsible navigation with a really easy fix.
I am willing to submit a PR to fix this, I just need to be guided in the right direction.
Thanks in advance!
<!-- generated by ant-design-issue-helper. DO NOT REMOVE --> | Inactive | low | Minor |
484,003,206 | go | cmd/go: allow 'go mod vendor' to omit replaced modules | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.12.9 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
GOARCH="amd64"
GOBIN=""
GOCACHE="/Users/mkeeler/Library/Caches/go-build"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
GOPATH="/Users/mkeeler/.go"
GOPROXY=""
GORACE=""
GOROOT="/usr/local/go"
GOTMPDIR=""
GOTOOLDIR="/usr/local/go/pkg/tool/darwin_amd64"
GCCGO="gccgo"
CC="clang"
CXX="clang++"
CGO_ENABLED="1"
GOMOD="/Users/mkeeler/Code/repos/consul/master/go.mod"
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/dc/5dk846911dbdkmjk4bj47hhm0000gn/T/go-build297831786=/tmp/go-build -gno-record-gcc-switches -fno-common"
</pre></details>
### What did you do?
1. `git clone https://github.com/hashicorp/consul`
2. `go mod vendor`
### What did you expect to see?
I didn't expect vendor/modules.txt to contain the nested modules within it nor having those nested modules be vendored into the top level vendor folder.
### What did you see instead?
Nested submodules are vendored.
We currently get around this by postprocessing the modules.txt and the vendor directory. I realize that nested modules might not be a great idea (it has caused me a number of headaches) however for code living in the same repo the current `go mod vendor` behavior of vendoring our own code doesn't make much sense to me. Is this intended behavior or just something that isn't protected against.
| NeedsInvestigation,FeatureRequest,modules | low | Critical |
484,041,233 | go | proposal: add explicit decision doc for large changes | #33670 talks about how to identify large changes. Having done that, we should expect a large discussion. It can't be the case that you have to read the whole discussion to participate. That doesn't scale.
The goal of the discussion should be to identify all the pros and cons and tradeoffs involved in the decision. Often that makes the decision clear, but not always, especially for large ones.
We've always collected these pros and cons informally; at best we occasionally write a discussion summary. For large changes it may make sense to write a formal, explicit βdecision documentβ that lays out the pros, cons, and tradeoffs. Then the goal of the discussion is to complete this document. Someone who wants to participate in the discussion could start by reading the document and checking whether anything is left to add.
The current proposal process description hints at the discussion feeding back into the main proposal doc, but I think it would be clearer to have a separate document that is the discussion summary / inputs to the decision / tradeoffs.
Someone proposing a large change would be responsible for incorporating discussion into the design document, or else for finding someone who will.
The same kind of decision document could be written for design drafts (maybe a pre-decision document). | Proposal | low | Major |
484,044,467 | TypeScript | Type metadata is lost in generic type interfaces | **TypeScript Version:** 3.6.1-rc
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
generic function metadata
generic type jsdoc
mapped type jsdoc
**Code**
```ts
interface Example {
/** This is property A. */
a: number;
}
function one(param: Example): void {};
one({
a: 1 // β
Hover over `a` to see description
});
function two<T extends Example>(param: T): void {};
two({
a: 2 // β Description is lost
});
function three<T = Example>(param: T): void {};
three({
a: 3 // β Description is lost
});
function four<T extends Example = Example>(param: T): void {};
four({
a: 4 // β Description is lost
});
// Unexpectedly:
four<Example>({
a: 4 // β
Hover over `a` to see description
});
```
**Expected behavior:**
I would expect to see the description on hover for at least the fourth or fifth examples, but I don't.
**Playground Link:** [**demo**](http://www.typescriptlang.org/play/index.html#code/JYOwLgpgTgZghgYwgAgKIA84FsAOAbFAbwFgAoZC5AegCobkAVAC2AGdk3kcoB7HaMAE9kAQQB0yGlTKVkcAFzIQAVywAjaAG4yAXzJkYykAjDAeIZOYgAKHHCjZFGbPggBKRQDcewACbJCHW1SMitrEnJKBWQARmoqZEBQcmQACR5PaEsMqGQAAzhc5DAeZFYIFF8IVgQoYBxTc103YIMjEzMLMAB3HgAeBmQIdEgQX3ZnXAIAPlt7R0YPZG8-AKD9Um6ecJkoxQAmeORAGXJkABEqmrqGi048HlYwJpbSQ2NroqYocv7kAF40TCTCAzOwOLCKBiLZb+QLPMCfcrbSIUaIAZkOJ3O1Vq9Q6HHYdweT3Wr3a5mQMB4yigPyGIzGAJcBD+jKBILm4IWXh8MLWIReVKgSNk0QALBizhcce9bvdHqQdM11lQEgBVEBDfgmCC+PCCeQGQW9CauGYREWKcUqpKpdKZO05fKFYqlcrISrYq4dJ5AA)
**Related Issues:**
This is similar to #21489, but that involves mapped types while this involves generics.
| Bug,Domain: Quick Info | low | Major |
484,081,959 | node | NodeJS blocks response from CONNECT | On my Linode VPS (Nanode) I host two separated apps: file streamer and forward proxy. The file streamer is written in NodeJS and streams files from remote servers to clients. A forward proxy is a classic forward proxy. The problem I have is that after a while of serving files, file streamer starts to block responses from the proxy. Connections to the proxy are ok, also file streamer responds normally.
As a proxy, I've tried Squid, Tinyproxy or even simple NodeJS proxy. All result to the same error, broken pipe. It seems that file streamer somehow blocks responses from different apps/streams. Even if the file streamer no longer sends any files, it still blocks the proxy. Once this condition happens, the only thing it helps is restarting the file streamer.
Here is the simplified code of file streamer. It uses pipes, there is no magic:
```js
// File Streamer
const server = http.createServer((sreq, sres) => {
const url = 'some user defined url';
const options = {some options};
const req = https.request(url, options, (res) => {
sres.writeHead(res.statusCode, res.headers);
res.pipe(sres);
});
req.end();
});
```
Do you have some ideas about why the file streamer (NodeJS) blocks responses from the other apps? I didn't detect any memory leaks, any CPU overloading, any high I/O operations, etc.
UPDATE:
I tried to merge File Streamer script (above) and Forward Proxy script into one server. Unfortunately, it didn't help. Interesting is, that File Streamer works properly, but Forward Proxy returns `Error: write EPIPE`.
```js
// Forward Proxy
server.on('connect', (req, socket, head) => {
debug('CONNECT');
const srvUrl = url.parse(`http://${req.url}`);
const srvSocket = net.connect(srvUrl.port, srvUrl.hostname, () => {
socket.write('HTTP/1.1 200 Connection Established\r\n' +
'\r\n');
srvSocket.write(head);
srvSocket.pipe(socket);
socket.pipe(srvSocket);
socket.on('error', (err) => {
debug('Some socket error.');
debug(err.stack); // Error: write EPIPE <--- ERROR
});
});
});
```
UPDATE 2:
I believe that problem must be in the file streamer part. But I wasn't able to determine where. Probably it's something wrong with NodeJS on low level. Now I stream files only with NGiNX, it's flawless and it consumes 3x less memory. | net | low | Critical |
484,101,954 | react | Devtools v4 does not work with Firefox's private window | <!--
Note: if the issue is about documentation or the website, please file it at:
https://github.com/reactjs/reactjs.org/issues/new
-->
**Do you want to request a *feature* or report a *bug*?**
* bug
* This issue has been reported in https://github.com/facebook/react-devtools/issues/1383
**What is the current behavior?**
Steps to Reproduce is here:
1. Environments are:
2. Open the page which uses react with a private window.
3. Open Firefox's devtools.
Actual Result is:
* react devtools' _component_ pane show `Unable to find React on the page.`
* From about:debugging, we can see the below messsage:
```
SecurityError: Permission denied to access property "container" on cross-origin object main.js:51:305877
Kl moz-extension://56db142d-3d36-b04e-91ca-a7504c7708a5/build/main.js:51
apply self-hosted:4417
applySafeWithoutClone resource://gre/modules/ExtensionCommon.jsm:588
asyncWithoutClone resource://gre/modules/ExtensionCommon.jsm:2400
```
**What is the expected behavior?**
react devtools work
**Which versions of React, and which browser / OS are affected by this issue? Did this work in previous versions of React?**
* Firefox 68
* react devtools v4.0.5
* react v16.9 | Type: Bug,Component: Developer Tools | medium | Critical |
484,113,710 | pytorch | [FYI] NestedTensor Project Progress | ### Purpose of this issue
This issue tracks RFCs and PRs related to the design and implementation of NestedTensors. It reflects the current state of the project. It is however **not** to discuss details of the projects, but solely for information purposes. For discussion please refer to the corresponding RFCs and PRs. You can expect this issue to be edited frequently to reflect the current state of the project.
### RFCs
- [x] [0.0.1](https://github.com/pytorch/pytorch/issues/22169) - Introduction, tensor-wise operations, implementation considerations.
- [x] [0.0.2](https://github.com/pytorch/pytorch/issues/25112) - Definition of nested and tensor dimensions; tensor dimension only broadcasting and reductions; tensor+mask construction functions; prototype dispatch implementation; implicit autograd support; unbind, to_tensor; as_nested_tensor; nested_dim; nested_size(i)
- [ ] 0.0.3 - Definition of ```__iter__```, ```__getitem__```, flatten, tensor-wise tuple/list arguments, contiguous. Migration plan into pytorch/pytorch. Rename tensorwise to vmap.
- [ ] 0.0.4 - Definition of expand, reshape, view, narrow, squeeze, select.
- [ ] 0.0.5 - Performance benchmarks and implementations, explicit autograd support (if necessary), improved dispatch (if necessary/available), release.
### <s>PR
- [ ] Prototype implementation of 0.0.1 and 0.0.2 to support current feature branches https://github.com/pytorch/pytorch/pull/22783</s>
### Repository
- [pytorch/nestedtensor](https://github.com/pytorch/nestedtensor) with pypi as ```pip install nestedtensor``` (needs update).
### Examples
- [pytorch/nestedtensor/examples](https://github.com/pytorch/nestedtensor/tree/master/examples)
### Feature branches
These are updated frequently. They don't always comply with the RFCs and might exhibit usage of experimental or undocumented features. They mainly serve as playgrounds for dogfooding and as examples. They won't land before NestedTensors are actually part of a PyTorch release and up to the respective project standards.
- https://github.com/facebookresearch/ParlAI/compare/master...cpuhrsch:nestedtensor
- https://github.com/cpuhrsch/vision/compare/formatting...cpuhrsch:ntsegmentation2
- https://github.com/pytorch/vision/compare/master...cpuhrsch:imglist2
### POCs
@cpuhrsch
| feature,triaged,module: nestedtensor | high | Major |
484,120,903 | svelte | Nested async components error when switching components | **Describe the bug**
When nesting dynamic components that are imported via `await import('/SomeComponent.js')`, when the top-most component class is changed, the following error is thrown.
**Logs**
`TypeError: undefined is not an object (evaluating 'outros.c')`
(full traceback below)
**To Reproduce**
I was unable to reproduce this in the REPL (I assume it doesn't support dynamic imports), so here is a repro repository: https://github.com/taylorzane/svelte-async-import-repro
Just run `yarn build && yarn start` and then open up the webpage and attempt to click the button. It will switch the to-be-imported component from `Child1` to `Child2` (both of which dynamically import `SubChild`)
**Expected behavior**
The component switch/transition should not throw an error.
**Stacktraces**
<details>
<summary>Stack trace</summary>
<pre>
[Error] Unhandled Promise Rejection: TypeError: undefined is not an object (evaluating 'outros.c')
transition_out (Child1.js:150)
o (Child1.js:603)
transition_out (bundle.js:165)
p (bundle.js:358)
p (bundle.js:455)
update (bundle.js:126)
flush (bundle.js:100)
promiseReactionJob
</pre>
</details>
**Information about your Svelte project:**
- Your browser and the version: Safari 12.1.2
- Your operating system: macOS 10.14.6
- Svelte version: v3.9.1
- Rollup
**Severity**
Currently makes multi-page (sapper) svelte usage entirely unusable.
**Additional context**
Might be related to #3165, but seems slightly different (`outros` is definitely defined) | compiler | medium | Critical |
484,121,581 | pytorch | make add_module accept tuples as well or change containers(ModuleList, Sequential, etc) to allow this | ## π Feature
<!-- A clear and concise description of the feature proposal -->
## Motivation
The API is not consistent with the way architectures are made. That is you can do some actions using a set of methods, but cant do the same actions using a slightly different version of the same methods. To be more clear for example, currently if you want to alter/use a part of an existing architecture you may use `model.children()` like this :
1. method 1 :
```
model = torchvision.models.resnet18(pretrained=True)
model_features = nn.ModuleList(model.children())[ : -1]
...
```
2. or a slightly different version
```
model = torchvision.models.resnet18(pretrained=True)
model_features = list(model.children())[ : -1]
model_features = nn.Sequential(*model_features)
...
```
However, the very time you try to use the named version of same method (i.e `model.named_children`), you no longer can do the same thing and will face the error :
`TypeError: tuple is not a Module subclass`
in the process of using only `children()` method in such situations, you lose the information originally placed in the architecture, meaning you no longer have access to the modules using their names.
The source of the issue lies in the `add_module()` method which interestingly accepts a name and a module by default.
## Pitch
allow for `nn.ModuleList()`, `nn.Sequential()` and alikes that accept modules, also accept named modules. meaning these two snippets be interchangeable :
using modules only (`children()`)
```
model = torchvision.models.resnet18(pretrained=True)
model_features = nn.ModuleList(model.children())[ : -1]
```
using tuple (`named_children()`)
```
model = torchvision.models.resnet18(pretrained=True)
model_features = nn.ModuleList(model.named_children())[ : -1]
```
cc @SsnL | module: nn,triaged,enhancement | low | Critical |
484,154,912 | godot | Project destroyed on system crash | Godot 3.1.1.stable
Windows 7
ATI Radeon HD 4870
Intel Core 2 Duo E6400
My system crashed while editing a project, and now my `project.godot`, all my scenes (including an already forgotten tileset.tscn), and one of the scripts, are all like this:
```
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
0000 0000 0000 0000 0000 0000 0000 0000
# repeated many more lines
```
~~The script that was detroyed was a tool script, so it's possible that this was related to it? My system crashes on occasion, but I never had a project destroyed by it. I also rarely use tool scripts, so I'm connecting the two things, though maybe they're not related. That script exported some vars and updated a Sprite2D and a CollisionPolygon2D in real time in the editor.~~
Nevermind that, it still happened more times while no using tool scripts.
---
EDIT: I didn't lose a lot from this. This happened in a prototype I started just a few hours ago. I only had 6 simple scenes. I just thought I ought to bring it up here, in case this is related to some obscure problem in Godot and there's something that can be done about it.
| platform:windows,discussion,topic:editor | low | Critical |
484,157,462 | pytorch | Add new interpolation modes to `grid_sample` | _Note: This issue is expanded out of https://github.com/pytorch/pytorch/issues/24870 to allow more room for discussion._
## π Feature
Currently, `torch.nn.functional.grid_sample()` supports two interpolation modes: `bilinear` and `nearest`.
Other interpolation modes that could be added:
- [ ] [`bicubic`](https://en.wikipedia.org/wiki/Bicubic_interpolation): This is already implemented for `torch.nn.functional.interpolate()` [here](https://github.com/pytorch/pytorch/blob/master/aten/src/ATen/native/UpSampleBicubic2d.cpp), so this shouldn't be difficult to adapt for `grid_sample`, which should work in a similar way.
There has been mention of this in the past ([forum/39515](https://discuss.pytorch.org/t/bicubic-grid-sampler/39515), https://github.com/pytorch/vision/issues/514#issuecomment-402718886), but so far no real plan. (Also see discussions regarding its implementation in `interpolate`: #9849, #19703.)
- [ ] `area`: Like `bicubic`, this mode already exists in `torch.nn.functional.interpolate()`. However, it is not as clear how to adapt this to work in `grid_sample` where the sampling points will in general not be a regular grid. This might require some research and definition design, and discussion is ongoing in #21457.
- [ ] [`lanczos`](https://en.wikipedia.org/wiki/Lanczos_resampling): Another option for smoother interpolation. This is currently [implemented](https://github.com/torch/image/blob/5aa18819b6a7b44751f8a858bd232d1c07b67985/generic/image.c#L1894) in [Torch](https://github.com/torch/image/blob/master/doc/paramtransform.md), so a PyTorch implementation could possibly take inspiration from there.
I am personally not particularly familiar with the practical uses of this mode, so we could discuss whether this is a desired feature, or if other interpolation/sampling filters are more in demand.
cc @albanD @mruberry @SsnL @fmassa @ailzhang | module: nn,triaged,function request,module: interpolation | low | Major |
484,219,326 | pytorch | [Distance functions] F.pdist backward CUDA invalid configuration | ## π Bug
After passing the input through a `torch.nn.functional.pdist` function, the gradient *w.r.t.* to the input can not be correctly calculated on a cuda device.
## To Reproduce
```python
import torch
import torch.nn.functional as F
def test(device, dim=1024):
x = torch.rand(dim, 4, requires_grad=True).to(device)
y = torch.ones(dim, 1).to(device)
vdist = F.pdist(x, 2)
tdist = F.pdist(y, 1)
vdist = 1/(1+vdist**2)
loss = F.binary_cross_entropy(vdist, tdist)
loss.backward()
print(x.grad.data)
```
Steps to reproduce the behavior:
3. When increasing the tensor size and running
```python
test(torch.device('cuda'), dim=4096)
```
the error message is:
```
Traceback (most recent call last):
File "test_pdist.py", line 16, in <module>
test(torch.device('cuda'), 4096)
File "test_pdist.py", line 12, in test
loss.backward()
File "/n/home/user/app/anaconda3/envs/myenv/lib/python3.6/site-packages/torch/tensor.py", line 118, in backward
torch.autograd.backward(self, gradient, retain_graph, create_graph)
File "/n/home/user/app/anaconda3/envs/myenv/lib/python3.6/site-packages/torch/autograd/__init__.py", line 93, in backward
allow_unreachable=True) # allow_unreachable flag
RuntimeError: CUDA error: invalid configuration argument
```
<!-- If you have a code sample, error messages, stack traces, please provide it here as well -->
## Expected behavior
<!-- A clear and concise description of what you expected to happen. -->
## Environment
Please copy and paste the output from our
[environment collection script](https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py)
(or fill out the checklist below manually).
You can get the script and run it with:
```
wget https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py
# For security purposes, please check the contents of collect_env.py before running it.
python collect_env.py
```
- PyTorch Version: **1.2.0**
- OS (e.g., Linux): **CentOS 7.6.1810 (Core)**
- How you installed PyTorch (`conda`, `pip`, source): **conda**
- Build command you used (if compiling from source): N/A
- Python version: **3.6.7**
- CUDA/cuDNN version: **V10.0.130**
- GPU models and configuration: **GeForce GTX 1080**
- Any other relevant information:
## Additional context
<!-- Add any other context about the problem here. -->
cc @ngimel | module: cuda,triaged,module: distance functions | low | Critical |
484,225,761 | pytorch | ScriptModule and nn.Module parameter ordering difference | ```python
class eagerNet(nn.Module):
def __init__(self):
super(eagerNet, self).__init__()
self.conv1 = nn.Conv2d(1, 10, kernel_size=5)
self.conv2 = nn.Conv2d(10, 20, kernel_size=5)
self.fc1 = nn.Linear(320, 50)
self.fc2 = nn.Linear(50, 10)
def forward(self, x):
x = F.relu(F.max_pool2d(self.conv1(x), 2))
x = F.relu(F.max_pool2d(self.conv2(x), 2))
x = x.view(-1, 320)
x = F.relu(self.fc1(x))
x = self.fc2(x)
return F.log_softmax(x, dim=1)
class Net(torch.jit.ScriptModule):
def __init__(self):
super(Net, self).__init__()
self.conv1 = nn.Conv2d(1, 10, kernel_size=5)
self.conv2 = nn.Conv2d(10, 20, kernel_size=5)
self.fc1 = nn.Linear(320, 50)
self.fc2 = nn.Linear(50, 10)
@torch.jit.script_method
def forward(self, x):
x = F.relu(F.max_pool2d(self.conv1(x), 2))
x = F.relu(F.max_pool2d(self.conv2(x), 2))
x = x.view(-1, 320)
x = F.relu(self.fc1(x))
x = self.fc2(x)
return F.log_softmax(x, dim=1)
eager_model = eagerNet()
script_model = Net()
print("eager model param 0: ")
print(list(eager_model.named_parameters())[0])
print("script model param 0: ")
print(list(script_model.named_parameters())[0])
```
=============================
```
('conv1.weight', Parameter containing:
tensor([[[[ 0.0946, -0.1856, -0.1759, -0.1680, -0.0602],
[-0.1952, -0.1681, 0.1372, 0.0431, -0.1744],
[ 0.1715, -0.0544, 0.0140, -0.1555, -0.0255],
[ 0.1639, -0.0982, -0.1247, 0.1445, -0.1768],
[-0.0441, -0.0565, -0.0862, 0.0288, 0.0915]]],
[[[-0.0425, -0.0993, -0.1411, 0.1799, -0.1599],
[-0.1578, 0.0246, -0.0017, 0.1814, 0.1217],
[ 0.1685, 0.1819, -0.0780, -0.1456, -0.1026],
[ 0.1407, -0.0840, -0.0971, -0.0261, 0.0718],
[-0.0344, 0.1488, 0.1145, 0.0793, -0.0002]]],
[[[-0.1748, 0.1687, -0.1289, -0.1233, -0.1740],
[-0.1290, 0.0891, -0.1593, -0.0697, 0.1464],
[ 0.1105, -0.1485, -0.0491, -0.0928, 0.1102],
[-0.1722, -0.0370, -0.1460, 0.1000, -0.0978],
[-0.0606, 0.0799, 0.1825, -0.0336, 0.0927]]],
[[[ 0.0854, -0.0490, -0.0063, -0.1151, -0.0832],
[-0.0907, 0.0464, -0.1931, 0.1807, -0.1411],
[ 0.1717, -0.1093, 0.0028, 0.0383, -0.0214],
[ 0.0869, -0.0650, -0.0495, -0.1145, -0.1160],
[-0.1879, -0.0775, 0.0706, 0.0891, -0.0320]]],
[[[ 0.1233, -0.1302, 0.0550, -0.0352, -0.0478],
[ 0.1198, -0.0527, 0.0445, -0.1290, 0.1794],
[ 0.1934, 0.1723, -0.0695, -0.0478, 0.1319],
[-0.1266, 0.0553, 0.1986, 0.0863, -0.1902],
[-0.0781, -0.1702, 0.1550, -0.0495, 0.0431]]],
[[[-0.1568, -0.0720, -0.0835, 0.0141, -0.1801],
[-0.1789, 0.0412, -0.1412, -0.0270, 0.1074],
[ 0.1754, -0.0252, -0.1771, 0.1943, 0.1151],
[-0.1543, -0.0640, 0.1502, -0.1354, 0.0017],
[ 0.1535, -0.1252, 0.1030, -0.0785, 0.0483]]],
[[[-0.0667, 0.0603, -0.0938, 0.0369, -0.0360],
[-0.1385, 0.0589, -0.0489, 0.1817, -0.0321],
[-0.1204, 0.1389, 0.0236, -0.1670, 0.0928],
[-0.1413, 0.0794, 0.1880, -0.0728, 0.0097],
[ 0.1995, 0.0622, -0.1078, 0.0297, -0.0646]]],
[[[ 0.1937, -0.1338, -0.0996, 0.0199, 0.1286],
[ 0.0292, 0.0062, -0.0187, -0.0364, -0.1430],
[ 0.1164, -0.1209, 0.1628, -0.1620, 0.1178],
[-0.1751, -0.1658, -0.1979, -0.0599, -0.1131],
[-0.0113, 0.0823, 0.0264, 0.0607, -0.1682]]],
[[[ 0.1806, 0.1261, -0.1096, -0.0347, -0.0464],
[-0.1393, -0.0848, 0.1456, 0.0846, -0.0371],
[ 0.1387, 0.0991, 0.0368, 0.1163, -0.1433],
[-0.1353, 0.0932, 0.0403, -0.0580, -0.0377],
[-0.0581, 0.1776, 0.1512, 0.0292, 0.1073]]],
[[[ 0.0192, 0.0831, 0.0970, -0.0602, -0.0959],
[ 0.1646, -0.1936, 0.0584, 0.0601, -0.1540],
[-0.0022, -0.1373, -0.1468, -0.1663, 0.0038],
[-0.0141, 0.1785, 0.1396, -0.0135, 0.0086],
[ 0.1366, 0.1135, 0.0218, -0.1360, -0.1312]]]], requires_grad=True))
script model param 0:
('conv1.bias', Parameter containing:
tensor([-0.0608, 0.1971, -0.0097, -0.1209, -0.1492, -0.0995, 0.1368, 0.0363,
-0.1585, 0.1480], requires_grad=True))
```
cc @suo | oncall: jit,triaged,jit-backlog | low | Minor |
484,242,702 | rust | Resolve unsound interaction between noalias and self-referential data (incl. generators, async fn) | Self-referential generators violate LLVM's expectations for `noalias` due to the overlapping bounds of the interior references and the `&mut self` argument to the `Generator::resume` function.
Original issue description: async/await is possibly unsound -- I don't consider myself an authority here, so feel free to edit this top post with relevant information.
Current discussion happened in https://github.com/rust-lang/rust/pull/63209 | T-lang,I-unsound,C-bug,A-coroutines,A-async-await,AsyncAwait-Triaged | high | Critical |
484,262,366 | pytorch | ctc_loss computes different losses and gradients on batched utterances vs. individual utterances | ## π Bug
<!-- A clear and concise description of what the bug is. -->
`ctc_loss` computes different loss values and different gradients when run on a batch of utterances than when it is run on each utterance individually. In batch mode, some of the computed gradients are -inf
## To Reproduce
Steps to reproduce the behavior:
1. Unpack the attached archive, `CTC-bug.zip`
1. `cd CTC-bug`
1. `python bug.py`
<!-- If you have a code sample, error messages, stack traces, please provide it here as well -->
## Expected behavior
<!-- A clear and concise description of what you expected to happen. -->
I expect to get the same (or very nearly the same, within reasonable tolerances) loss and gradient values when running on batches of utterances or individual utterances.
## Environment
PyTorch version: 1.2.0
Is debug build: No
CUDA used to build PyTorch: 9.2.148
OS: Red Hat Enterprise Linux Server release 7.4 (Maipo)
GCC version: (GCC) 5.4.0
CMake version: version 2.8.12.2
Python version: 3.7
Is CUDA available: No
CUDA runtime version: 8.0.44
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.12.0
[conda] blas 1.0 mkl
[conda] mkl 2019.3 199
[conda] mkl-service 1.1.2 py37he904b0f_5
[conda] mkl_fft 1.0.10 py37ha843d7b_0
[conda] mkl_random 1.0.2 py37hd81dba3_0
[conda] pytorch 1.2.0 py3.7_cuda9.2.148_cudnn7.6.2_0 pytorch
[conda] torchvision 0.4.0 py37_cu92 pytorch
## Additional context
[CTC-bug.zip](https://github.com/pytorch/pytorch/files/3532271/CTC-bug.zip)
<!-- Add any other context about the problem here. -->
| module: loss,triaged | low | Critical |
484,276,585 | pytorch | [FR][jit] torch.jit.script as a class decorator | If my module is supposed to be scripted, then it is natural to have the script wrapper close to the class definition, similar to scripting a function. Having to call `torch.jit.script` after instance creation is unintuitive, and often breaks abstraction.
So, I think `torch.jit.script` should also work as a class decorator, returning a wrapped module class that always gives the scripted module.
Some trickiness include:
+ need to correctly set `__module__`, `__name__` etc., similar to `functools.wraps`.
+ probably want to have `isinstance` check work.
cc @suo | oncall: jit,triaged,jit-backlog | low | Major |
484,284,058 | pytorch | [FR] torch.(Generator|random).seed allows specifying the seed value | Currently, our `torch.(Generator|random).manual_seed(seed)` seeds the generator to a specific value; `.seed()` seeds it from `std::random_device` or the current time.
It is a bit inconsistent with other random libs where the usual `.seed(seed=None)` method seeds to specific value if `seed` is specified, and to some random value otherwise.
Can we merge the two methods into a single `.seed(seed=None)`? | triaged,enhancement,module: random | low | Minor |
484,285,548 | pytorch | Generator objects should not always use the same seed | I don't think that this is the intended behavior. This is most of the times what you don't want when you have multiple generators.
The initial seed doesn't seem to come from the current RNG either. It breaks reproducibility. I suppose it also makes sense to grab from `std::random_device`, `urandom`, current time, or something. But currently it is just fixed.
```py
In [39]: torch.Generator().initial_seed()
Out[39]: 67280421310721
In [40]: torch.Generator().initial_seed()
Out[40]: 67280421310721
In [41]: torch.Generator().initial_seed()
Out[41]: 67280421310721
In [42]: torch.rand(2, 3, 4, generator=torch.Generator())
Out[42]:
tensor([[[0.2673, 0.8725, 0.3353, 0.4030],
[0.7871, 0.4576, 0.0719, 0.9715],
[0.7147, 0.4275, 0.0846, 0.4904]],
[[0.1662, 0.1538, 0.3638, 0.5145],
[0.7122, 0.8787, 0.8431, 0.9879],
[0.5595, 0.4359, 0.1276, 0.2768]]])
In [43]: torch.rand(2, 3, 4, generator=torch.Generator())
Out[43]:
tensor([[[0.2673, 0.8725, 0.3353, 0.4030],
[0.7871, 0.4576, 0.0719, 0.9715],
[0.7147, 0.4275, 0.0846, 0.4904]],
[[0.1662, 0.1538, 0.3638, 0.5145],
[0.7122, 0.8787, 0.8431, 0.9879],
[0.5595, 0.4359, 0.1276, 0.2768]]])
In [44]: torch.rand(2, 3, 4, generator=torch.Generator())
Out[44]:
tensor([[[0.2673, 0.8725, 0.3353, 0.4030],
[0.7871, 0.4576, 0.0719, 0.9715],
[0.7147, 0.4275, 0.0846, 0.4904]],
[[0.1662, 0.1538, 0.3638, 0.5145],
[0.7122, 0.8787, 0.8431, 0.9879],
[0.5595, 0.4359, 0.1276, 0.2768]]])
```
```py
In [53]: torch.Generator().initial_seed()
Out[53]: 67280421310721
In [54]: torch.rand(2, 3, 4)
Out[54]:
tensor([[[0.2384, 0.0965, 0.9460, 0.3316],
[0.5213, 0.7518, 0.1692, 0.3696],
[0.6316, 0.8950, 0.2026, 0.6782]],
[[0.9342, 0.9530, 0.8290, 0.5884],
[0.4184, 0.0874, 0.5385, 0.2840],
[0.1021, 0.2164, 0.3872, 0.6371]]])
In [55]:
In [55]: torch.Generator().initial_seed()
Out[55]: 67280421310721
```
Compared to numpy. where each RNG state has a different seed:
```py
In [48]: numpy.random.RandomState().rand()
Out[48]: 0.897157178998516
In [49]: numpy.random.RandomState().rand()
Out[49]: 0.9620486919176156
In [50]: numpy.random.RandomState().rand()
Out[50]: 0.9457612837975016
In [51]: numpy.random.RandomState().rand()
Out[51]: 0.3025858768725779
```
cc @syed-ahmed who probably has comments :) | triaged,module: random | low | Minor |
484,289,009 | flutter | [video_player] add Linux support | Just tried Flutter 1.7 with video_player 0.10.1+6 on Ubuntu 18.04, but it doesn't seem there is a plugin support.
error message:
```
[ERROR:flutter/lib/ui/ui_dart_state.cc(148)] Unhandled Exception: MissingPluginException(No implementation found for method init on channel flutter.io/videoPlayer)
[ ] #0 MethodChannel.invokeMethod (package:flutter/src/services/platform_channel.dart:314:7)
``` | c: new feature,platform-linux,p: video_player,package,c: proposal,a: desktop,P2,team-linux,triaged-linux | low | Critical |
484,328,614 | terminal | Feature Request - Live Share support | <!--
π¨π¨π¨π¨π¨π¨π¨π¨π¨π¨
I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING:
1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement.
2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further explanation or engagement.
3. If I write an issue that has many duplicates, the core team may close my issue without further explanation or engagement (and without necessarily spending time to find the exact duplicate ID number).
4. If I leave the title incomplete when filing the issue, the core team may close my issue without further explanation or engagement.
5. If I file something completely blank in the body, the core team may close my issue without further explanation or engagement.
All good? Then proceed!
-->
# Description of the new feature/enhancement
It would be nice if there was a live share style system were you could click a link and share it to allow a remote user to interact in the same terminal as you have open.
# Proposed technical implementation details (optional)
I was thinking maybe a link in the tab or a right click menu with the option to create a live share session of the tab.
Once connected I'd expect icons in the title bar of the users connected (highlight to bring up a card with more details + commands, i.e. kick user).
Or maybe a circle with a number indicating the number of users connected, hover and more details appear in the terminal window (cards or something similar). | Issue-Feature,Area-UserInterface,Area-Extensibility,Product-Terminal | low | Critical |
484,392,428 | TypeScript | ES6 module immediately exported var clash with local "exports" variable | <!-- Please try to reproduce the issue with `typescript@next`. It may have already been fixed. -->
**TypeScript Version:** 3.5.1 (playground), 3.5.3
<!-- Search terms you tried before logging this (so others can find this issue more easily) -->
**Search Terms:**
es6 module exports object scope declare declaration overwrite
**Code**
```ts
export const a = 1
function b () {
const exports = 2
console.log(a)
}
b()
```
**Expected behavior:**
output from babel with es2015 preset
https://babeljs.io/repl#?babili=false&browsers=&build=&builtIns=false&spec=false&loose=false&code_lz=KYDwDg9gTgLgBAYwgOwM7wIZwLxwIwBQAZgK7IIwCWKcARnABQCUcA3gXJ4iunKJLFQ44AJg5ckaCABtgAOmkQA5gwxMCAXwK1mQA&debug=false&forceAllTransforms=false&shippedProposals=false&circleciRepo=&evaluate=false&fileSize=false&timeTravel=false&sourceType=module&lineWrap=false&presets=es2015&prettier=false&targets=&version=7.5.5&externalPlugins=
```javascript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.a = void 0;
var a = 1;
exports.a = a;
function b() {
var exports = 2;
console.log(a);
}
b();
```
**Actual behavior:**
console.log is referencing the local `exports.a` instead of the global const `a`
```javascript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.a = 1;
function b() {
var exports = 2;
console.log(exports.a);
}
b();
```
However, if I split the `export const` into two, it will work.
```javascript
const a = 1
export { a }
```
**Playground Link:**
http://www.typescriptlang.org/play/?target=1#code/KYDwDg9gTgLgBAYwgOwM7wIZwLxwIwCwAUAGYCuyCMAlinAEZwAUAlHAN7FzeIrpyhIsVDjgAmLjyRoIAG2AA6WRADmTDC2IBfYvVZA
**Related Issues:** can't find
| Bug,Help Wanted | low | Critical |
484,447,741 | pytorch | JavaScript (Web Assembly) target for trained models | ## π Feature
A compiler that converts the trained model to a [WASM](https://developer.mozilla.org/en-US/docs/WebAssembly) binary where they could be accessed via a JavaScript function.
## Motivation
I hope to deploy models in web browsers.
## Pitch
Be able to compile a trained model to WASM.
## Alternatives
[ONNX.js](https://github.com/microsoft/onnxjs), though development seems stalled and last time that I tried a simple but big enough model, the performance was lacking. Compiling to WASM would mean there would be no need to be compliant with a standard, also could potentially be much faster e.g. if it's written in [Rust](https://www.rust-lang.org/) and then compiled to WASM.
## Additional context
From #494, I noticed the policy towards features outside the scope of the core team is to defer. Would like to know if there are any suggestion or advice on a starting point, I might be able to put some time on this myself. | triaged,enhancement | medium | Major |
484,457,981 | pytorch | No way to correctly reset weights of a model with spectral norm | I didn't find any similar issue (with spectral norm), so excuse me if I file a duplicate.
## π Bug
There is no way to fully reset the weights (buffers?) of a model with spectral norm. When I reuse my model I get good looking samples almost instantly on any full MNIST 30-epoch training run other than the first, which I presume is caused by how the spectral norm is implemented. There is no reset_parameters for spectral norm (as it even isn't implemented as a layer). Removing and adding using remove_spectral_norm and spectral_norm does not work as a workaround, as I get:
```
RuntimeError: Unexpected key in metadata['spectral_norm']: weight.version
```
I know I should create a new model as it isn't that costly for each run, but this should be possible without copying.
## To Reproduce
Steps to reproduce the behavior:
1. Use a simple GAN model with SN in both the discriminator and generator.
2. Train this model, save images while training.
3. Reset weights / Apply init on the model.
4. Train this model again, save images while training.
My init function:
```
def init_weights(m):
if hasattr(m, 'reset_parameters'):
m.reset_parameters()
if isinstance(m, nn.ConvTranspose2d) or isinstance(m, nn.Conv2d):
m.weight.data.normal_(0.0, 0.02)
if m.bias is not None:
m.bias.data.fill_(0)
elif isinstance(m, nn.BatchNorm2d):
m.weight.data.normal_(1.0, 0.02)
m.bias.data.fill_(0)
elif isinstance(m, nn.Linear):
m.weight.data.normal_(0.0, 0.1)
if m.bias is not None:
m.bias.data.fill_(0)
```
## Expected behavior
I would expect my model to be fully reset. Especially if that is the "recommended" way: https://discuss.pytorch.org/t/cross-validation-model-reset/21176
## Environment
PyTorch version: 1.2.0
Is debug build: No
CUDA used to build PyTorch: 10.0.130
OS: Ubuntu 16.04.5 LTS
GCC version: (Ubuntu 5.4.0-6ubuntu1~16.04.11) 5.4.0 20160609
CMake version: version 3.5.1
Python version: 3.7
Is CUDA available: Yes
CUDA runtime version: Could not collect
GPU models and configuration:
GPU 0: GeForce RTX 2080 Ti
GPU 1: GeForce RTX 2080 Ti
Nvidia driver version: 430.34
cuDNN version: Could not collect
Versions of relevant libraries:
[pip] numpy==1.16.4
[pip] torch==1.2.0
[pip] torchvision==0.4.0
[conda] blas 1.0 mkl
[conda] mkl 2019.4 243
[conda] mkl_fft 1.0.12 py37ha843d7b_0
[conda] mkl_random 1.0.2 py37hd81dba3_0
[conda] torch 1.2.0 pypi_0 pypi
[conda] torchvision 0.4.0 pypi_0 pypi
cc @ezyang @gchanan @SsnL | module: nn,triaged,has workaround | low | Critical |
484,478,183 | TypeScript | Add type to retrieve valid events of an EventTarget | <!-- π¨ STOP π¨ π¦π§π’π£ π¨ πΊπ»πΆπ· π¨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker.
Please help us by doing the following steps before logging an issue:
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues
* Read the FAQ, especially the "Common Feature Requests" section: https://github.com/Microsoft/TypeScript/wiki/FAQ
-->
## Search Terms
<!-- List of keywords you searched for before creating this issue. Write them down here so that others can find this suggestion more easily -->
EventListener, EventMap, EventTarget
## Suggestion
<!-- A summary of what you'd like to see added or changed -->
There should a type to retrieve valid event names and listeners for a given `EventTarget`. `Window` has the following method:
```ts
addEventListener<K extends keyof WindowEventMap>(type: K, listener: (this: Window, ev: WindowEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
```
Every `EventTarget` should have its own corresponding `EventMap` (even if no special event types are available for a given target, thus, resulting in an empty object). The `EventMap` of a given `EventTarget` could be retrieved as follows:
```ts
type WindowEventMap = EventMap<Window>;
type DocumentEventMap = EventMap<Document>;
type AudioNodeEventMap = EventMap<AudioNode>; // Empty interface
// ...
```
## Use Cases
<!--
What do you want to use this for?
What shortcomings exist with current approaches?
-->
I tried creating a function which encapsulates an event for easier [lifecycle management with React Hooks](https://reactjs.org/docs/hooks-effect.html#effects-with-cleanup):
```ts
export function managedEventListener<T extends EventTarget, K extends string>(
target: T,
type: K,
callback: EventListener,
options?: AddEventListenerOptions,
) {
target.addEventListener(type, callback, options);
return () => {
target.removeEventListener(type, callback, options);
};
}
```
Unfortunately, `EventListener` gives no proper IntelliSense and I had to use the `as EventListener` syntax like below, as suggested in #28357:
```ts
useEffect(
() =>
managedEventListener(window, 'deviceorientation', ((
event: DeviceOrientationEvent,
) => {
setOrientation(event);
}) as EventListener),
[],
);
```
My goal was to simplify the syntax to the following, with proper type inference:
```ts
useEffect(
() =>
managedEventListener(window, 'deviceorientation', event => {
setOrientation(event);
}),
[],
);
```
Using [conditional types](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-2-8.html#conditional-types), I was able to achieve the syntax above by replacing `EventListener` with a specialized `EventListenerCallback` type which extracts values from the 2 most commonly used event maps, namely `WindowEventMap` and `DocumentEventMap`:
```ts
type ExtractFrom<T, K> = K extends keyof T ? T[K] : never;
export type EventListenerCallback<T, K> = T extends Window
? (event: ExtractFrom<WindowEventMap, K>) => any
: (T extends Document
? (event: ExtractFrom<DocumentEventMap, K>) => any
: EventListener);
```
The new code for `managedEventListener` was born:
```ts
export function managedEventListener<T extends EventTarget, K extends string>(
target: T,
type: K,
callback: EventListenerCallback<T, K>,
options?: AddEventListenerOptions,
) {
target.addEventListener(type, callback, options);
return () => {
target.removeEventListener(type, callback, options);
};
}
```
## Examples
<!-- Show how this would be used and what the behavior would be -->
The code above could be greatly simplified by introducing the aforementioned `EventMap<EventTarget>` type:
```ts
export function managedEventListener<T extends EventTarget, K extends keyof EventMap<T>>(
target: T,
type: K,
callback: (this: T, ev: EventMap<T>[K]) => any,
options?: AddEventListenerOptions,
) {
target.addEventListener(type, callback, options);
return () => {
target.removeEventListener(type, callback, options);
};
}
```
## 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 | Critical |
484,480,846 | opencv | OpenCV tries and fails to build disabled tests | ##### System information (version)
- OpenCV => 4.1.1
- Operating System / Platform => Haiku 64 Bit
- Compiler => GCC 8.3.0
##### Detailed description
Compiling OpenCV with disabled test still tries to compile test files and fails.
##### Steps to reproduce
Compiling OpenCV like:
```
cmake .. \
-DWITH_GDAL=ON \
-DWITH_IPP=OFF \
-DWITH_OPENGL=OFF \
-DWITH_QT=ON \
-DWITH_EIGEN=ON \
-DWITH_OPENCL=ON \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SKIP_RPATH=ON \
-DENABLE_PIC=OFF \
-DCMAKE_INSTALL_PREFIX:PATH="$prefix" \
-DOPENCV_OTHER_INSTALL_PATH:PATH="$dataDir" \
-DOpenBLAS_INCLUDE_DIR="$portPackageLinksDir/openblas${secondaryArchSuffix}_devel/develop/headers/$ARCH_SUBDIR" \
-DOpenBLAS_LIB="$portPackageLinksDir/openblas${secondaryArchSuffix}_devel/develop/lib/$ARCH_SUBDIR" \
-DOPENCV_INCLUDE_INSTALL_PATH="$includeDir/opencv4" \
-DOPENCV_LICENSES_INSTALL_PATH="$dataDir/licenses/opencv4" \
-DOPENCV_3P_LIB_INSTALL_PATH="$developLibDir/opencv4/3rdparty" \
-DOPENCV_GENERATE_PKGCONFIG=ON
```
fails:
```
In file included from <command-line>:
/sources/opencv-4.1.1/build_haiku/modules/dnn/test_precomp.hpp:50:10: fatal error: test_common.hpp: No such file or directory
#include "test_common.hpp"
^~~~~~~~~~~~~~~~~
compilation terminated.
```
| category: build/install | low | Critical |
484,490,936 | godot | Light2D does not use AtlasTexture correctly | **Godot version:**
v3.1.stable.official
**OS/device including version:**
Windows 10 Enterprise Version 10.0.17134 Build 17134
**Issue description:**
When I assign an atlas texture to the light it either removes the light completely no matter what region I set or uses the previously assigned texture.
**Steps to reproduce:**
Create an atlas texture, add the icon png as an atlas, set the region to whatever you want as long as the size is bigger then 0, add an icon sprite, add a light using the atlas texture and see that it doesn't do anything.
| bug,topic:rendering,confirmed | low | Minor |
484,563,624 | go | mime/multipart: encode non-US-ASCII characters in Content-Disposition | I am coming here from CL https://go-review.googlesource.com/c/go/+/190217 where @pascaldekloe has submitted a change that makes *mime/multipart.Writer generate a "Content-Disposition" value after invoking mime.FormatMediaType instead of using a quote escaper.
In a comment https://go-review.googlesource.com/c/go/+/190217/1#message-b06f1016c7862f1d35ef7a12dc95fc4426a48178
@mattn asks
```
I don't have strong opinion. Just for the note. This make forcibly the filename encode
with rfc 6266. So older browser will not work after this change. Do we need to leave
a way to output raw-filenames?
```
This issue is to have a discussion, but I'll also loop in some security folks @mikesamuel @empijei, to help evaluate or just beware of the update. | NeedsDecision | low | Major |
484,586,840 | flutter | [in_app_purchase] Improved error messages / codes for IAPError | I'm using the `in_app_purchase` plugin version `0.2.1`, and i noticed the `IAPError` error message gave me the string `BillingResponse.itemAlreadyOwned` on Android. I would like the string `Item already owned` or similar, and preferably localised in my current locale. This happened when i tried to buy an `non-consumable` that i'd already bought.
I also notice the error code is `purchase_error`, should this rather not be the number `7`, as described in the `Server Response Codes` in the [In-app Billing Reference](http://www.androiddocs.com/google/play/billing/billing_reference.html)?
I suspect this is similar on iOS, but i had some problems getting the same error responses.
Any plans on improving the error messages / codes for IAP?
```
flutter doctor -v
[β] Flutter (Channel stable, v1.7.8+hotfix.4, on Mac OS X 10.14.6 18G87, locale en-NO)
β’ Flutter version 1.7.8+hotfix.4 at /Users/erlend/flutter
β’ Framework revision 20e59316b8 (5 weeks ago), 2019-07-18 20:04:33 -0700
β’ Engine revision fee001c93f
β’ Dart version 2.4.0
[β] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
β’ Android SDK at /Users/erlend/Library/Android/sdk
β’ Android NDK location not configured (optional; useful for native profiling support)
β’ Platform android-28, build-tools 28.0.3
β’ Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
β’ Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
β’ All Android licenses accepted.
[β] Xcode - develop for iOS and macOS (Xcode 10.3)
β’ Xcode at /Applications/Xcode.app/Contents/Developer
β’ Xcode 10.3, Build version 10G8
β’ CocoaPods version 1.7.5
[β] iOS tools - develop for iOS devices
β’ ios-deploy 1.9.4
[β] Android Studio (version 3.5)
β’ Android Studio at /Applications/Android Studio.app/Contents
β’ Flutter plugin version 38.2.3
β’ Dart plugin version 191.8405
β’ Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
[β] Connected device (1 available)
β’ MotoG3 β’ ZY22346NVZ β’ android-arm β’ Android 6.0.1 (API 23)
β’ No issues found!
``` | c: new feature,p: in_app_purchase,package,a: error message,team-ecosystem,P3,triaged-ecosystem | medium | Critical |
484,596,130 | youtube-dl | marilyn.ca can be supported with very minor adjustment of [9c9media] | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check list in order to prevent the most common mistakes and misuse of youtube-dl:
- First of, make sure you are using the latest version of youtube-dl. Run `youtube-dl --version` and ensure your version is 2019.08.13. If it's not, see https://yt-dl.org/update on how to update. Issues with outdated version will be REJECTED.
- Make sure that all provided video/audio/playlist URLs (if any) are alive and playable in a browser.
- Make sure that site you are requesting is not dedicated to copyright infringement, see https://yt-dl.org/copyright-infringement. youtube-dl does not support such sites. In order for site support request to be accepted all provided example URLs should not violate any copyrights.
- Search the bugtracker for similar site support requests: http://yt-dl.org/search-issues. DO NOT post duplicates.
- Finally, put x into all relevant boxes (like this [x])
-->
- [x] I'm reporting a new site support request
- [x] I've verified that I'm running youtube-dl version **2019.08.13**
- [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.marilyn.ca/Celebrity/video/Greys-Anatomy-Giacomo-Gianniotti-shares-has-the-ultimate-Hollywood-success-story-vid1736881
- Playlist: https://www.marilyn.ca/api/curatedfilter/byfilter/17a24c9e-faee-4e30-ae23-a24d727e9f5f/16/8
- Playlist: https://www.marilyn.ca/api/curatedfilter/byfilter/17a24c9e-faee-4e30-ae23-a24d727e9f5f/1/8
## Description
<!--
Provide any additional information.
If work on your issue requires account credentials please provide them or explain how one can obtain them.
-->
Adding support for this site merely requires a minor adjustment to the [9c9media] extractor, which already works for ctv.ca and tsn.ca. For instance, the video https://www.marilyn.ca/Celebrity/video/Greys-Anatomy-Giacomo-Gianniotti-shares-has-the-ultimate-Hollywood-success-story-vid1736881
corresponds to
http://capi.9c9media.com/destinations/ctv_marilyn_web/platforms/desktop/contents?$include=[authentication,contentpackages]&id=[1736881]&callback=jQuery17006378412764016894_1446003488577
| site-support-request | low | Critical |
484,600,563 | flutter | getExternalStorageDirectory() does not work inside State of Stateful Widget | <!-- Thank you for using Flutter!
If you are looking for support, please check out our documentation
or consider asking a question on Stack Overflow:
* https://flutter.dev/
* https://api.flutter.dev/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you have found a bug or if our documentation doesn't have an answer
to what you're looking for, then fill our the template below. Please read
our guide to filing a bug first: https://flutter.dev/docs/resources/bug-reports
-->
## Steps to Reproduce
<!--
Please tell us exactly how to reproduce the problem you are running into.
Please attach a small application (ideally just one main.dart file) that
reproduces the problem. You could use https://gist.github.com/ for this.
If the problem is with your application's rendering, then please attach
a screenshot and explain what the problem is.
-->
1. Get and print getExternalStorageDirectory() in main()
2. Get and print getExternalStorageDirectory() in class _MyState extends State<My>
3. Compare
<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.
-->
With two getExternalStorageDirectory() checks inside class _MyState extends State<My> (one uses Future.then, one Stream.listen):
```
$ flutter run --verbose
[ +45 ms] executing: [/home/pavel/flutter/] git log -n 1 --pretty=format:%H
[ +51 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] 20e59316b8b8474554b38493b8ca888794b0234a
[ ] executing: [/home/pavel/flutter/] git describe --match v*.*.*
--first-parent --long --tags
[ +19 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long
--tags
[ +1 ms] v1.7.8+hotfix.4-0-g20e59316b
[ +20 ms] executing: [/home/pavel/flutter/] git rev-parse --abbrev-ref
--symbolic @{u}
[ +12 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/stable
[ ] executing: [/home/pavel/flutter/] git ls-remote --get-url origin
[ +11 ms] Exit code 0 from: git ls-remote --get-url origin
[ +1 ms] https://github.com/flutter/flutter.git
[ +69 ms] executing: [/home/pavel/flutter/] git rev-parse --abbrev-ref HEAD
[ +12 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] stable
[ +67 ms] executing: /home/pavel/Android/Sdk/platform-tools/adb devices -l
[ +17 ms] Exit code 0 from: /home/pavel/Android/Sdk/platform-tools/adb devices
-l
[ +1 ms] List of devices attached
LHTDU16A22004756 device usb:2-2 product:CAM-L21
model:HUAWEI_CAM_L21 device:HWCAM-H transport_id:1
[ +36 ms] /home/pavel/Android/Sdk/platform-tools/adb -s LHTDU16A22004756 shell
getprop
[ +148 ms] Artifact Instance of 'FlutterWebSdk' is not required, skipping
update.
[ +6 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required,
skipping update.
[ +1 ms] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping
update.
[ +1 ms] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping
update.
[ +1 ms] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required,
skipping update.
[ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required,
skipping update.
[ +89 ms] Found plugin audio at
/home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/audio-0.0.5/
[ +6 ms] Found plugin audioplayers_with_rate at
/home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers_with_rate-1.
0.2/
[ +29 ms] Found plugin flutter_audio_query at
/home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_audio_query-0.2.1
/
[ +16 ms] Found plugin path_provider at
/home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider-0.5.0+1/
[ +104 ms] Found plugin audio at
/home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/audio-0.0.5/
[ +2 ms] Found plugin audioplayers_with_rate at
/home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers_with_rate-1.
0.2/
[ +12 ms] Found plugin flutter_audio_query at
/home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_audio_query-0.2.1
/
[ +10 ms] Found plugin path_provider at
/home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider-0.5.0+1/
[ +89 ms] ro.hardware = hi6210sft
[ ] ro.build.characteristics = default
[ +24 ms] Launching lib/main.dart on HUAWEI CAM L21 in debug mode...
[ +51 ms] Initializing gradle...
[ +14 ms] Using gradle from
/mnt/B4D0D63BD0D60410/Tvorba/stepslow/android/gradlew.
[ +107 ms] executing: /mnt/B4D0D63BD0D60410/Tvorba/stepslow/android/gradlew -v
[+1589 ms]
------------------------------------------------------------
Gradle 4.10.2
------------------------------------------------------------
Build time: 2018-09-19 18:10:15 UTC
Revision: b4d8d5d170bb4ba516e88d7fe5647e2323d791dd
Kotlin DSL: 1.0-rc-6
Kotlin: 1.2.61
Groovy: 2.4.15
Ant: Apache Ant(TM) version 1.9.11 compiled on
March 23 2018
JVM: 1.8.0_202-release (JetBrains s.r.o
25.202-b49-5587405)
OS: Linux 5.2.9-arch1-1-ARCH amd64
[ +20 ms] Initializing gradle... (completed in 1,7s)
[ +7 ms] Resolving dependencies...
[ ] executing: [/mnt/B4D0D63BD0D60410/Tvorba/stepslow/android/]
/mnt/B4D0D63BD0D60410/Tvorba/stepslow/android/gradlew app:properties
[+1977 ms]
> Task :app:properties
------------------------------------------------------------
Project :app
------------------------------------------------------------
INTERNAL__CHECKED_MINIMUM_PLUGIN_VERSIONS: true
allprojects: [project ':app']
android:
com.android.build.gradle.internal.dsl.BaseAppModuleExtension
_Decorated@59eaf3db
androidDependencies: task ':app:androidDependencies'
ant:
org.gradle.api.internal.project.DefaultAntBuilder@1438ce5c
antBuilderFactory:
org.gradle.api.internal.project.DefaultAntBuilderFactory@441
c714c
archivesBaseName: app
artifacts:
org.gradle.api.internal.artifacts.dsl.DefaultArtifactHandler
_Decorated@4c948c80
asDynamicObject: DynamicObject for project ':app'
assemble: task ':app:assemble'
assembleAndroidTest: task ':app:assembleAndroidTest'
assembleDebug: task ':app:assembleDebug'
assembleDebugAndroidTest: task
':app:assembleDebugAndroidTest'
assembleDebugUnitTest: task ':app:assembleDebugUnitTest'
assembleProfile: task ':app:assembleProfile'
assembleProfileUnitTest: task ':app:assembleProfileUnitTest'
assembleRelease: task ':app:assembleRelease'
assembleReleaseUnitTest: task ':app:assembleReleaseUnitTest'
baseClassLoaderScope:
org.gradle.api.internal.initialization.DefaultClassLoaderSco
pe@42eedae2
buildDebugPreBundle: task ':app:buildDebugPreBundle'
buildDir: /mnt/B4D0D63BD0D60410/Tvorba/stepslow/build/app
buildFile:
/mnt/B4D0D63BD0D60410/Tvorba/stepslow/android/app/build.grad
le
buildOutputs: BaseVariantOutput container
buildPath: :
buildProfilePreBundle: task ':app:buildProfilePreBundle'
buildReleasePreBundle: task ':app:buildReleasePreBundle'
buildScriptSource:
org.gradle.groovy.scripts.TextResourceScriptSource@1076b6cd
buildscript:
org.gradle.api.internal.initialization.DefaultScriptHandler@
3747239e
bundle: task ':app:bundle'
bundleDebug: task ':app:bundleDebug'
bundleDebugAndroidTestResources: task
':app:bundleDebugAndroidTestResources'
bundleDebugResources: task ':app:bundleDebugResources'
bundleProfile: task ':app:bundleProfile'
bundleProfileResources: task ':app:bundleProfileResources'
bundleRelease: task ':app:bundleRelease'
bundleReleaseResources: task ':app:bundleReleaseResources'
check: task ':app:check'
checkDebugAndroidTestClasspath: task
':app:checkDebugAndroidTestClasspath'
checkDebugClasspath: task ':app:checkDebugClasspath'
checkDebugLibraries: task ':app:checkDebugLibraries'
checkDebugManifest: task ':app:checkDebugManifest'
checkProfileClasspath: task ':app:checkProfileClasspath'
checkProfileLibraries: task ':app:checkProfileLibraries'
checkProfileManifest: task ':app:checkProfileManifest'
checkReleaseClasspath: task ':app:checkReleaseClasspath'
checkReleaseLibraries: task ':app:checkReleaseLibraries'
checkReleaseManifest: task ':app:checkReleaseManifest'
childProjects: {}
class: class
org.gradle.api.internal.project.DefaultProject_Decorated
classLoaderScope:
org.gradle.api.internal.initialization.DefaultClassLoaderSco
pe@5f5f597a
cleanBuildCache: task ':app:cleanBuildCache'
compileDebugAidl: task ':app:compileDebugAidl'
compileDebugAndroidTestAidl: task
':app:compileDebugAndroidTestAidl'
compileDebugAndroidTestJavaWithJavac: task
':app:compileDebugAndroidTestJavaWithJavac'
compileDebugAndroidTestNdk: task
':app:compileDebugAndroidTestNdk'
compileDebugAndroidTestRenderscript: task
':app:compileDebugAndroidTestRenderscript'
compileDebugAndroidTestShaders: task
':app:compileDebugAndroidTestShaders'
compileDebugAndroidTestSources: task
':app:compileDebugAndroidTestSources'
compileDebugJavaWithJavac: task
':app:compileDebugJavaWithJavac'
compileDebugNdk: task ':app:compileDebugNdk'
compileDebugRenderscript: task
':app:compileDebugRenderscript'
compileDebugShaders: task ':app:compileDebugShaders'
compileDebugSources: task ':app:compileDebugSources'
compileDebugUnitTestJavaWithJavac: task
':app:compileDebugUnitTestJavaWithJavac'
compileDebugUnitTestSources: task
':app:compileDebugUnitTestSources'
compileLint: task ':app:compileLint'
compileProfileAidl: task ':app:compileProfileAidl'
compileProfileJavaWithJavac: task
':app:compileProfileJavaWithJavac'
compileProfileNdk: task ':app:compileProfileNdk'
compileProfileRenderscript: task
':app:compileProfileRenderscript'
compileProfileShaders: task ':app:compileProfileShaders'
compileProfileSources: task ':app:compileProfileSources'
compileProfileUnitTestJavaWithJavac: task
':app:compileProfileUnitTestJavaWithJavac'
compileProfileUnitTestSources: task
':app:compileProfileUnitTestSources'
compileReleaseAidl: task ':app:compileReleaseAidl'
compileReleaseJavaWithJavac: task
':app:compileReleaseJavaWithJavac'
compileReleaseNdk: task ':app:compileReleaseNdk'
compileReleaseRenderscript: task
':app:compileReleaseRenderscript'
compileReleaseShaders: task ':app:compileReleaseShaders'
compileReleaseSources: task ':app:compileReleaseSources'
compileReleaseUnitTestJavaWithJavac: task
':app:compileReleaseUnitTestJavaWithJavac'
compileReleaseUnitTestSources: task
':app:compileReleaseUnitTestSources'
compileflutterBuildDebugArm: task
':app:compileflutterBuildDebugArm'
compileflutterBuildDebugArm64: task
':app:compileflutterBuildDebugArm64'
compileflutterBuildProfileArm: task
':app:compileflutterBuildProfileArm'
compileflutterBuildProfileArm64: task
':app:compileflutterBuildProfileArm64'
compileflutterBuildReleaseArm: task
':app:compileflutterBuildReleaseArm'
compileflutterBuildReleaseArm64: task
':app:compileflutterBuildReleaseArm64'
components: SoftwareComponentInternal set
configurationActions:
org.gradle.configuration.project.DefaultProjectConfiguration
ActionContainer@6b52b1b9
configurationTargetIdentifier:
org.gradle.configuration.ConfigurationTargetIdentifier$1@4eb
7b2c0
configurations: configuration container
connectedAndroidTest: task ':app:connectedAndroidTest'
connectedCheck: task ':app:connectedCheck'
connectedDebugAndroidTest: task
':app:connectedDebugAndroidTest'
consumeConfigAttr: task ':app:consumeConfigAttr'
convention:
org.gradle.api.internal.plugins.DefaultConvention@40e2235b
copyFlutterAssetsDebug: task ':app:copyFlutterAssetsDebug'
copyFlutterAssetsProfile: task
':app:copyFlutterAssetsProfile'
copyFlutterAssetsRelease: task
':app:copyFlutterAssetsRelease'
createDebugCompatibleScreenManifests: task
':app:createDebugCompatibleScreenManifests'
createMockableJar: task ':app:createMockableJar'
createProfileCompatibleScreenManifests: task
':app:createProfileCompatibleScreenManifests'
createReleaseCompatibleScreenManifests: task
':app:createReleaseCompatibleScreenManifests'
defaultArtifacts:
org.gradle.api.internal.plugins.DefaultArtifactPublicationSe
t_Decorated@655326b4
defaultTasks: []
deferredProjectConfiguration:
org.gradle.api.internal.project.DeferredProjectConfiguration
@1bf29cde
dependencies:
org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDe
pendencyHandler_Decorated@68a01cd2
dependencyLocking:
org.gradle.internal.locking.DefaultDependencyLockingHandler_
Decorated@39890266
depth: 1
description: null
deviceAndroidTest: task ':app:deviceAndroidTest'
deviceCheck: task ':app:deviceCheck'
displayName: project ':app'
distsDir:
/mnt/B4D0D63BD0D60410/Tvorba/stepslow/build/app/distribution
s
distsDirName: distributions
docsDir:
/mnt/B4D0D63BD0D60410/Tvorba/stepslow/build/app/docs
docsDirName: docs
ext:
org.gradle.api.internal.plugins.DefaultExtraPropertiesExtens
ion@4593e565
extensions:
org.gradle.api.internal.plugins.DefaultConvention@40e2235b
extractApksForDebug: task ':app:extractApksForDebug'
extractApksForProfile: task ':app:extractApksForProfile'
extractApksForRelease: task ':app:extractApksForRelease'
extractProguardFiles: task ':app:extractProguardFiles'
fileOperations:
org.gradle.api.internal.file.DefaultFileOperations@4a889565
fileResolver:
org.gradle.api.internal.file.BaseDirFileResolver@2226566a
flutter: FlutterExtension_Decorated@53cdea7a
generateDebugAndroidTestAssets: task
':app:generateDebugAndroidTestAssets'
generateDebugAndroidTestBuildConfig: task
':app:generateDebugAndroidTestBuildConfig'
generateDebugAndroidTestResValues: task
':app:generateDebugAndroidTestResValues'
generateDebugAndroidTestResources: task
':app:generateDebugAndroidTestResources'
generateDebugAndroidTestSources: task
':app:generateDebugAndroidTestSources'
generateDebugAssets: task ':app:generateDebugAssets'
generateDebugBuildConfig: task
':app:generateDebugBuildConfig'
generateDebugFeatureMetadata: task
':app:generateDebugFeatureMetadata'
generateDebugFeatureTransitiveDeps: task
':app:generateDebugFeatureTransitiveDeps'
generateDebugResValues: task ':app:generateDebugResValues'
generateDebugResources: task ':app:generateDebugResources'
generateDebugSources: task ':app:generateDebugSources'
generateDebugUnitTestAssets: task
':app:generateDebugUnitTestAssets'
generateDebugUnitTestResources: task
':app:generateDebugUnitTestResources'
generateDebugUnitTestSources: task
':app:generateDebugUnitTestSources'
generateProfileAssets: task ':app:generateProfileAssets'
generateProfileBuildConfig: task
':app:generateProfileBuildConfig'
generateProfileFeatureMetadata: task
':app:generateProfileFeatureMetadata'
generateProfileFeatureTransitiveDeps: task
':app:generateProfileFeatureTransitiveDeps'
generateProfileResValues: task
':app:generateProfileResValues'
generateProfileResources: task
':app:generateProfileResources'
generateProfileSources: task ':app:generateProfileSources'
generateProfileUnitTestAssets: task
':app:generateProfileUnitTestAssets'
generateProfileUnitTestResources: task
':app:generateProfileUnitTestResources'
generateProfileUnitTestSources: task
':app:generateProfileUnitTestSources'
generateReleaseAssets: task ':app:generateReleaseAssets'
generateReleaseBuildConfig: task
':app:generateReleaseBuildConfig'
generateReleaseFeatureMetadata: task
':app:generateReleaseFeatureMetadata'
generateReleaseFeatureTransitiveDeps: task
':app:generateReleaseFeatureTransitiveDeps'
generateReleaseResValues: task
':app:generateReleaseResValues'
generateReleaseResources: task
':app:generateReleaseResources'
generateReleaseSources: task ':app:generateReleaseSources'
generateReleaseUnitTestAssets: task
':app:generateReleaseUnitTestAssets'
generateReleaseUnitTestResources: task
':app:generateReleaseUnitTestResources'
generateReleaseUnitTestSources: task
':app:generateReleaseUnitTestSources'
gradle: build 'android'
group: android
identityPath: :app
inheritedScope:
org.gradle.api.internal.ExtensibleDynamicObject$InheritedDyn
amicObject@9af85ab
installDebug: task ':app:installDebug'
installDebugAndroidTest: task ':app:installDebugAndroidTest'
installProfile: task ':app:installProfile'
installRelease: task ':app:installRelease'
java:
org.gradle.api.plugins.internal.DefaultJavaPluginExtension_D
ecorated@7821a46
javaPreCompileDebug: task ':app:javaPreCompileDebug'
javaPreCompileDebugAndroidTest: task
':app:javaPreCompileDebugAndroidTest'
javaPreCompileDebugUnitTest: task
':app:javaPreCompileDebugUnitTest'
javaPreCompileProfile: task ':app:javaPreCompileProfile'
javaPreCompileProfileUnitTest: task
':app:javaPreCompileProfileUnitTest'
javaPreCompileRelease: task ':app:javaPreCompileRelease'
javaPreCompileReleaseUnitTest: task
':app:javaPreCompileReleaseUnitTest'
layout:
org.gradle.api.internal.file.DefaultProjectLayout@178789da
libsDir:
/mnt/B4D0D63BD0D60410/Tvorba/stepslow/build/app/libs
libsDirName: libs
lint: task ':app:lint'
lintDebug: task ':app:lintDebug'
lintFix: task ':app:lintFix'
lintProfile: task ':app:lintProfile'
lintRelease: task ':app:lintRelease'
lintVitalRelease: task ':app:lintVitalRelease'
listenerBuildOperationDecorator:
org.gradle.configuration.internal.DefaultListenerBuildOperat
ionDecorator@2ba53f6a
logger:
org.gradle.internal.logging.slf4j.OutputEventListenerBackedL
ogger@165b1bf9
logging:
org.gradle.internal.logging.services.DefaultLoggingManager@5
e526568
mainApkListPersistenceDebug: task
':app:mainApkListPersistenceDebug'
mainApkListPersistenceDebugAndroidTest: task
':app:mainApkListPersistenceDebugAndroidTest'
mainApkListPersistenceProfile: task
':app:mainApkListPersistenceProfile'
mainApkListPersistenceRelease: task
':app:mainApkListPersistenceRelease'
makeApkFromBundleForDebug: task
':app:makeApkFromBundleForDebug'
makeApkFromBundleForProfile: task
':app:makeApkFromBundleForProfile'
makeApkFromBundleForRelease: task
':app:makeApkFromBundleForRelease'
mergeDebugAndroidTestAssets: task
':app:mergeDebugAndroidTestAssets'
mergeDebugAndroidTestJniLibFolders: task
':app:mergeDebugAndroidTestJniLibFolders'
mergeDebugAndroidTestResources: task
':app:mergeDebugAndroidTestResources'
mergeDebugAndroidTestShaders: task
':app:mergeDebugAndroidTestShaders'
mergeDebugAssets: task ':app:mergeDebugAssets'
mergeDebugJniLibFolders: task ':app:mergeDebugJniLibFolders'
mergeDebugResources: task ':app:mergeDebugResources'
mergeDebugShaders: task ':app:mergeDebugShaders'
mergeProfileAssets: task ':app:mergeProfileAssets'
mergeProfileJniLibFolders: task
':app:mergeProfileJniLibFolders'
mergeProfileResources: task ':app:mergeProfileResources'
mergeProfileShaders: task ':app:mergeProfileShaders'
mergeReleaseAssets: task ':app:mergeReleaseAssets'
mergeReleaseJniLibFolders: task
':app:mergeReleaseJniLibFolders'
mergeReleaseResources: task ':app:mergeReleaseResources'
mergeReleaseShaders: task ':app:mergeReleaseShaders'
modelRegistry:
org.gradle.model.internal.registry.DefaultModelRegistry@4915
14ce
modelSchemaStore:
org.gradle.model.internal.manage.schema.extract.DefaultModel
SchemaStore@286d767b
module:
org.gradle.api.internal.artifacts.ProjectBackedModule@2f04f2
0b
name: app
normalization:
org.gradle.normalization.internal.DefaultInputNormalizationH
andler_Decorated@62778d6f
objects:
org.gradle.api.internal.model.DefaultObjectFactory@602ba024
org.gradle.jvmargs: -Xmx1536M
packLibsflutterBuildDebug: task
':app:packLibsflutterBuildDebug'
packLibsflutterBuildProfile: task
':app:packLibsflutterBuildProfile'
packLibsflutterBuildRelease: task
':app:packLibsflutterBuildRelease'
packageAppClassesDebug: task ':app:packageAppClassesDebug'
packageAppClassesDebugAndroidTest: task
':app:packageAppClassesDebugAndroidTest'
packageAppClassesDebugUnitTest: task
':app:packageAppClassesDebugUnitTest'
packageAppClassesProfile: task
':app:packageAppClassesProfile'
packageAppClassesProfileUnitTest: task
':app:packageAppClassesProfileUnitTest'
packageAppClassesRelease: task
':app:packageAppClassesRelease'
packageAppClassesReleaseUnitTest: task
':app:packageAppClassesReleaseUnitTest'
packageDebug: task ':app:packageDebug'
packageDebugAndroidTest: task ':app:packageDebugAndroidTest'
packageDebugBundle: task ':app:packageDebugBundle'
packageDebugUniversalApk: task
':app:packageDebugUniversalApk'
packageProfile: task ':app:packageProfile'
packageProfileBundle: task ':app:packageProfileBundle'
packageProfileUniversalApk: task
':app:packageProfileUniversalApk'
packageRelease: task ':app:packageRelease'
packageReleaseBundle: task ':app:packageReleaseBundle'
packageReleaseUniversalApk: task
':app:packageReleaseUniversalApk'
parent: root project 'android'
parentIdentifier: root project 'android'
path: :app
pluginManager:
org.gradle.api.internal.plugins.DefaultPluginManager_Decorat
ed@2d9fe06c
plugins: [org.gradle.api.plugins.HelpTasksPlugin@4ccd3275,
com.android.build.gradle.api.AndroidBasePlugin@128fc276,
org.gradle.language.base.plugins.LifecycleBasePlugin@2f187a8
3, org.gradle.api.plugins.BasePlugin@7d56638c,
org.gradle.api.plugins.ReportingBasePlugin@58adb8c9,
org.gradle.api.plugins.JavaBasePlugin@34dd5dd8,
com.android.build.gradle.AppPlugin@58fde5a2,
FlutterPlugin@16f9a732]
preBuild: task ':app:preBuild'
preDebugAndroidTestBuild: task
':app:preDebugAndroidTestBuild'
preDebugBuild: task ':app:preDebugBuild'
preDebugUnitTestBuild: task ':app:preDebugUnitTestBuild'
preProfileBuild: task ':app:preProfileBuild'
preProfileUnitTestBuild: task ':app:preProfileUnitTestBuild'
preReleaseBuild: task ':app:preReleaseBuild'
preReleaseUnitTestBuild: task ':app:preReleaseUnitTestBuild'
prepareLintJar: task ':app:prepareLintJar'
processDebugAndroidTestJavaRes: task
':app:processDebugAndroidTestJavaRes'
processDebugAndroidTestManifest: task
':app:processDebugAndroidTestManifest'
processDebugAndroidTestResources: task
':app:processDebugAndroidTestResources'
processDebugJavaRes: task ':app:processDebugJavaRes'
processDebugManifest: task ':app:processDebugManifest'
processDebugResources: task ':app:processDebugResources'
processDebugUnitTestJavaRes: task
':app:processDebugUnitTestJavaRes'
processOperations:
org.gradle.api.internal.file.DefaultFileOperations@4a889565
processProfileJavaRes: task ':app:processProfileJavaRes'
processProfileManifest: task ':app:processProfileManifest'
processProfileResources: task ':app:processProfileResources'
processProfileUnitTestJavaRes: task
':app:processProfileUnitTestJavaRes'
processReleaseJavaRes: task ':app:processReleaseJavaRes'
processReleaseManifest: task ':app:processReleaseManifest'
processReleaseResources: task ':app:processReleaseResources'
processReleaseUnitTestJavaRes: task
':app:processReleaseUnitTestJavaRes'
project: project ':app'
projectConfigurator:
org.gradle.api.internal.project.BuildOperationCrossProjectCo
nfigurator@23a73ed4
projectDir:
/mnt/B4D0D63BD0D60410/Tvorba/stepslow/android/app
projectEvaluationBroadcaster: ProjectEvaluationListener
broadcast
projectEvaluator:
org.gradle.configuration.project.LifecycleProjectEvaluator@7
dca94e5
projectPath: :app
projectRegistry:
org.gradle.api.internal.project.DefaultProjectRegistry@4aadb
e0b
properties: {...}
providers:
org.gradle.api.internal.provider.DefaultProviderFactory@3eb0
2ed0
reportBuildArtifactsDebug: task
':app:reportBuildArtifactsDebug'
reportBuildArtifactsProfile: task
':app:reportBuildArtifactsProfile'
reportBuildArtifactsRelease: task
':app:reportBuildArtifactsRelease'
reportSourceSetTransformAndroidTest: task
':app:reportSourceSetTransformAndroidTest'
reportSourceSetTransformAndroidTestDebug: task
':app:reportSourceSetTransformAndroidTestDebug'
reportSourceSetTransformDebug: task
':app:reportSourceSetTransformDebug'
reportSourceSetTransformMain: task
':app:reportSourceSetTransformMain'
reportSourceSetTransformProfile: task
':app:reportSourceSetTransformProfile'
reportSourceSetTransformRelease: task
':app:reportSourceSetTransformRelease'
reportSourceSetTransformTest: task
':app:reportSourceSetTransformTest'
reportSourceSetTransformTestDebug: task
':app:reportSourceSetTransformTestDebug'
reportSourceSetTransformTestProfile: task
':app:reportSourceSetTransformTestProfile'
reportSourceSetTransformTestRelease: task
':app:reportSourceSetTransformTestRelease'
reporting:
org.gradle.api.reporting.ReportingExtension_Decorated@11b650
5b
reportsDir:
/mnt/B4D0D63BD0D60410/Tvorba/stepslow/build/app/reports
repositories: repository container
resolveConfigAttr: task ':app:resolveConfigAttr'
resourceLoader:
org.gradle.internal.resource.transfer.DefaultUriTextResource
Loader@bfd9d27
resources:
org.gradle.api.internal.resources.DefaultResourceHandler@22b
94d01
rootDir: /mnt/B4D0D63BD0D60410/Tvorba/stepslow/android
rootProject: root project 'android'
script: false
scriptHandlerFactory:
org.gradle.api.internal.initialization.DefaultScriptHandlerF
actory@543f2bb
scriptPluginFactory:
org.gradle.configuration.ScriptPluginFactorySelector@26d45ec
0
serviceRegistryFactory:
org.gradle.internal.service.scopes.ProjectScopeServices$4@41
27eb98
services: ProjectScopeServices
signingReport: task ':app:signingReport'
sourceCompatibility: 1.8
sourceSets: SourceSet container
splitsDiscoveryTaskDebug: task
':app:splitsDiscoveryTaskDebug'
splitsDiscoveryTaskProfile: task
':app:splitsDiscoveryTaskProfile'
splitsDiscoveryTaskRelease: task
':app:splitsDiscoveryTaskRelease'
standardOutputCapture:
org.gradle.internal.logging.services.DefaultLoggingManager@5
e526568
state: project state 'EXECUTED'
status: integration
subprojects: []
targetCompatibility: 1.8
tasks: task set
test: task ':app:test'
testDebugUnitTest: task ':app:testDebugUnitTest'
testProfileUnitTest: task ':app:testProfileUnitTest'
testReleaseUnitTest: task ':app:testReleaseUnitTest'
testReportDir:
/mnt/B4D0D63BD0D60410/Tvorba/stepslow/build/app/reports/test
s
testReportDirName: tests
testResultsDir:
/mnt/B4D0D63BD0D60410/Tvorba/stepslow/build/app/test-results
testResultsDirName: test-results
transformClassesWithDexBuilderForDebug: task
':app:transformClassesWithDexBuilderForDebug'
transformClassesWithDexBuilderForDebugAndroidTest: task
':app:transformClassesWithDexBuilderForDebugAndroidTest'
transformClassesWithDexBuilderForProfile: task
':app:transformClassesWithDexBuilderForProfile'
transformClassesWithDexBuilderForRelease: task
':app:transformClassesWithDexBuilderForRelease'
transformDexArchiveWithDexMergerForDebug: task
':app:transformDexArchiveWithDexMergerForDebug'
transformDexArchiveWithDexMergerForDebugAndroidTest: task
':app:transformDexArchiveWithDexMergerForDebugAndroidTest'
transformDexArchiveWithDexMergerForProfile: task
':app:transformDexArchiveWithDexMergerForProfile'
transformDexArchiveWithDexMergerForRelease: task
':app:transformDexArchiveWithDexMergerForRelease'
transformDexArchiveWithExternalLibsDexMergerForDebug: task
':app:transformDexArchiveWithExternalLibsDexMergerForDebug'
transformDexArchiveWithExternalLibsDexMergerForDebugAndroidT
est: task
':app:transformDexArchiveWithExternalLibsDexMergerForDebugAn
droidTest'
transformDexArchiveWithExternalLibsDexMergerForProfile: task
':app:transformDexArchiveWithExternalLibsDexMergerForProfile
'
transformDexArchiveWithExternalLibsDexMergerForRelease: task
':app:transformDexArchiveWithExternalLibsDexMergerForRelease
'
transformNativeLibsWithMergeJniLibsForDebug: task
':app:transformNativeLibsWithMergeJniLibsForDebug'
transformNativeLibsWithMergeJniLibsForDebugAndroidTest: task
':app:transformNativeLibsWithMergeJniLibsForDebugAndroidTest
'
transformNativeLibsWithMergeJniLibsForProfile: task
':app:transformNativeLibsWithMergeJniLibsForProfile'
transformNativeLibsWithMergeJniLibsForRelease: task
':app:transformNativeLibsWithMergeJniLibsForRelease'
transformResourcesWithMergeJavaResForDebug: task
':app:transformResourcesWithMergeJavaResForDebug'
transformResourcesWithMergeJavaResForDebugAndroidTest: task
':app:transformResourcesWithMergeJavaResForDebugAndroidTest'
transformResourcesWithMergeJavaResForDebugUnitTest: task
':app:transformResourcesWithMergeJavaResForDebugUnitTest'
transformResourcesWithMergeJavaResForProfile: task
':app:transformResourcesWithMergeJavaResForProfile'
transformResourcesWithMergeJavaResForProfileUnitTest: task
':app:transformResourcesWithMergeJavaResForProfileUnitTest'
transformResourcesWithMergeJavaResForRelease: task
':app:transformResourcesWithMergeJavaResForRelease'
transformResourcesWithMergeJavaResForReleaseUnitTest: task
':app:transformResourcesWithMergeJavaResForReleaseUnitTest'
uninstallAll: task ':app:uninstallAll'
uninstallDebug: task ':app:uninstallDebug'
uninstallDebugAndroidTest: task
':app:uninstallDebugAndroidTest'
uninstallProfile: task ':app:uninstallProfile'
uninstallRelease: task ':app:uninstallRelease'
validateSigningDebug: task ':app:validateSigningDebug'
validateSigningDebugAndroidTest: task
':app:validateSigningDebugAndroidTest'
validateSigningProfile: task ':app:validateSigningProfile'
validateSigningRelease: task ':app:validateSigningRelease'
version: unspecified
writeDebugApplicationId: task ':app:writeDebugApplicationId'
writeProfileApplicationId: task
':app:writeProfileApplicationId'
writeReleaseApplicationId: task
':app:writeReleaseApplicationId'
1 actionable task: 1 executed
[ +65 ms] executing: [/mnt/B4D0D63BD0D60410/Tvorba/stepslow/android/]
/mnt/B4D0D63BD0D60410/Tvorba/stepslow/android/gradlew app:tasks --all
--console=auto
[+1408 ms]
> Task :app:tasks
------------------------------------------------------------
All tasks runnable from project :app
------------------------------------------------------------
Android tasks
-------------
androidDependencies - Displays the Android dependencies of
the project.
signingReport - Displays the signing info for each variant.
sourceSets - Prints out all the source sets defined in this
project.
Build tasks
-----------
assemble - Assembles all variants of all applications and
secondary packages.
assembleAndroidTest - Assembles all the Test applications.
assembleDebug - Assembles all Debug builds.
assembleProfile - Assembles all Profile builds.
assembleRelease - Assembles all Release builds.
build - Assembles and tests this project.
buildDependents - Assembles and tests this project and all
projects that depend on it.
buildNeeded - Assembles and tests this project and all
projects it depends on.
bundleDebug - Creates all Debug bundles.
bundleProfile - Creates all Profile bundles.
bundleRelease - Creates all Release bundles.
clean - Deletes the build directory.
cleanBuildCache - Deletes the build cache directory.
compileDebugAndroidTestSources
compileDebugSources
compileDebugUnitTestSources
compileProfileSources
compileProfileUnitTestSources
compileReleaseSources
compileReleaseUnitTestSources
Cleanup tasks
-------------
lintFix - Runs lint on all variants and applies any safe
suggestions to the source code.
Help tasks
----------
buildEnvironment - Displays all buildscript dependencies
declared in project ':app'.
components - Displays the components produced by project
':app'. [incubating]
dependencies - Displays all dependencies declared in project
':app'.
dependencyInsight - Displays the insight into a specific
dependency in project ':app'.
dependentComponents - Displays the dependent components of
components in project ':app'. [incubating]
help - Displays a help message.
model - Displays the configuration model of project ':app'.
[incubating]
projects - Displays the sub-projects of project ':app'.
properties - Displays the properties of project ':app'.
tasks - Displays the tasks runnable from project ':app'.
Install tasks
-------------
installDebug - Installs the Debug build.
installDebugAndroidTest - Installs the android (on device)
tests for the Debug build.
installProfile - Installs the Profile build.
installRelease - Installs the Release build.
uninstallAll - Uninstall all applications.
uninstallDebug - Uninstalls the Debug build.
uninstallDebugAndroidTest - Uninstalls the android (on
device) tests for the Debug build.
uninstallProfile - Uninstalls the Profile build.
uninstallRelease - Uninstalls the Release build.
Verification tasks
------------------
check - Runs all checks.
connectedAndroidTest - Installs and runs instrumentation
tests for all flavors on connected devices.
connectedCheck - Runs all device checks on currently
connected devices.
connectedDebugAndroidTest - Installs and runs the tests for
debug on connected devices.
deviceAndroidTest - Installs and runs instrumentation tests
using all Device Providers.
deviceCheck - Runs all device checks using Device Providers
and Test Servers.
lint - Runs lint on all variants.
lintDebug - Runs lint on the Debug build.
lintProfile - Runs lint on the Profile build.
lintRelease - Runs lint on the Release build.
lintVitalRelease - Runs lint on just the fatal issues in the
release build.
test - Run unit tests for all variants.
testDebugUnitTest - Run unit tests for the debug build.
testProfileUnitTest - Run unit tests for the profile build.
testReleaseUnitTest - Run unit tests for the release build.
Other tasks
-----------
assembleDebugAndroidTest
assembleDebugUnitTest
assembleProfileUnitTest
assembleReleaseUnitTest
buildDebugPreBundle
buildProfilePreBundle
buildReleasePreBundle
bundle
bundleDebugAndroidTestResources
bundleDebugResources
bundleProfileResources
bundleReleaseResources
checkDebugAndroidTestClasspath
checkDebugClasspath
checkDebugLibraries
checkDebugManifest
checkProfileClasspath
checkProfileLibraries
checkProfileManifest
checkReleaseClasspath
checkReleaseLibraries
checkReleaseManifest
compileDebugAidl
compileDebugAndroidTestAidl
compileDebugAndroidTestJavaWithJavac
compileDebugAndroidTestNdk
compileDebugAndroidTestRenderscript
compileDebugAndroidTestShaders
compileDebugJavaWithJavac
compileDebugNdk
compileDebugRenderscript
compileDebugShaders
compileDebugUnitTestJavaWithJavac
compileflutterBuildDebugArm
compileflutterBuildDebugArm64
compileflutterBuildProfileArm
compileflutterBuildProfileArm64
compileflutterBuildReleaseArm
compileflutterBuildReleaseArm64
compileLint
compileProfileAidl
compileProfileJavaWithJavac
compileProfileNdk
compileProfileRenderscript
compileProfileShaders
compileProfileUnitTestJavaWithJavac
compileReleaseAidl
compileReleaseJavaWithJavac
compileReleaseNdk
compileReleaseRenderscript
compileReleaseShaders
compileReleaseUnitTestJavaWithJavac
consumeConfigAttr
copyFlutterAssetsDebug
copyFlutterAssetsProfile
copyFlutterAssetsRelease
createDebugCompatibleScreenManifests
createMockableJar
createProfileCompatibleScreenManifests
createReleaseCompatibleScreenManifests
extractApksForDebug
extractApksForProfile
extractApksForRelease
extractProguardFiles
generateDebugAndroidTestAssets
generateDebugAndroidTestBuildConfig
generateDebugAndroidTestResources
generateDebugAndroidTestResValues
generateDebugAndroidTestSources
generateDebugAssets
generateDebugBuildConfig
generateDebugFeatureMetadata
generateDebugFeatureTransitiveDeps
generateDebugResources
generateDebugResValues
generateDebugSources
generateDebugUnitTestAssets
generateDebugUnitTestResources
generateDebugUnitTestSources
generateProfileAssets
generateProfileBuildConfig
generateProfileFeatureMetadata
generateProfileFeatureTransitiveDeps
generateProfileResources
generateProfileResValues
generateProfileSources
generateProfileUnitTestAssets
generateProfileUnitTestResources
generateProfileUnitTestSources
generateReleaseAssets
generateReleaseBuildConfig
generateReleaseFeatureMetadata
generateReleaseFeatureTransitiveDeps
generateReleaseResources
generateReleaseResValues
generateReleaseSources
generateReleaseUnitTestAssets
generateReleaseUnitTestResources
generateReleaseUnitTestSources
javaPreCompileDebug
javaPreCompileDebugAndroidTest
javaPreCompileDebugUnitTest
javaPreCompileProfile
javaPreCompileProfileUnitTest
javaPreCompileRelease
javaPreCompileReleaseUnitTest
mainApkListPersistenceDebug
mainApkListPersistenceDebugAndroidTest
mainApkListPersistenceProfile
mainApkListPersistenceRelease
makeApkFromBundleForDebug
makeApkFromBundleForProfile
makeApkFromBundleForRelease
mergeDebugAndroidTestAssets
mergeDebugAndroidTestJniLibFolders
mergeDebugAndroidTestResources
mergeDebugAndroidTestShaders
mergeDebugAssets
mergeDebugJniLibFolders
mergeDebugResources
mergeDebugShaders
mergeProfileAssets
mergeProfileJniLibFolders
mergeProfileResources
mergeProfileShaders
mergeReleaseAssets
mergeReleaseJniLibFolders
mergeReleaseResources
mergeReleaseShaders
packageAppClassesDebug
packageAppClassesDebugAndroidTest
packageAppClassesDebugUnitTest
packageAppClassesProfile
packageAppClassesProfileUnitTest
packageAppClassesRelease
packageAppClassesReleaseUnitTest
packageDebug
packageDebugAndroidTest
packageDebugBundle
packageDebugUniversalApk
packageProfile
packageProfileBundle
packageProfileUniversalApk
packageRelease
packageReleaseBundle
packageReleaseUniversalApk
packLibsflutterBuildDebug
packLibsflutterBuildProfile
packLibsflutterBuildRelease
preBuild
preDebugAndroidTestBuild
preDebugBuild
preDebugUnitTestBuild
prepareLintJar
preProfileBuild
preProfileUnitTestBuild
preReleaseBuild
preReleaseUnitTestBuild
processDebugAndroidTestJavaRes
processDebugAndroidTestManifest
processDebugAndroidTestResources
processDebugJavaRes
processDebugManifest
processDebugResources
processDebugUnitTestJavaRes
processProfileJavaRes
processProfileManifest
processProfileResources
processProfileUnitTestJavaRes
processReleaseJavaRes
processReleaseManifest
processReleaseResources
processReleaseUnitTestJavaRes
reportBuildArtifactsDebug
reportBuildArtifactsProfile
reportBuildArtifactsRelease
reportSourceSetTransformAndroidTest
reportSourceSetTransformAndroidTestDebug
reportSourceSetTransformDebug
reportSourceSetTransformMain
reportSourceSetTransformProfile
reportSourceSetTransformRelease
reportSourceSetTransformTest
reportSourceSetTransformTestDebug
reportSourceSetTransformTestProfile
reportSourceSetTransformTestRelease
resolveConfigAttr
splitsDiscoveryTaskDebug
splitsDiscoveryTaskProfile
splitsDiscoveryTaskRelease
transformClassesWithDexBuilderForDebug
transformClassesWithDexBuilderForDebugAndroidTest
transformClassesWithDexBuilderForProfile
transformClassesWithDexBuilderForRelease
transformDexArchiveWithDexMergerForDebug
transformDexArchiveWithDexMergerForDebugAndroidTest
transformDexArchiveWithDexMergerForProfile
transformDexArchiveWithDexMergerForRelease
transformDexArchiveWithExternalLibsDexMergerForDebug
transformDexArchiveWithExternalLibsDexMergerForDebugAndroidT
est
transformDexArchiveWithExternalLibsDexMergerForProfile
transformDexArchiveWithExternalLibsDexMergerForRelease
transformNativeLibsWithMergeJniLibsForDebug
transformNativeLibsWithMergeJniLibsForDebugAndroidTest
transformNativeLibsWithMergeJniLibsForProfile
transformNativeLibsWithMergeJniLibsForRelease
transformResourcesWithMergeJavaResForDebug
transformResourcesWithMergeJavaResForDebugAndroidTest
transformResourcesWithMergeJavaResForDebugUnitTest
transformResourcesWithMergeJavaResForProfile
transformResourcesWithMergeJavaResForProfileUnitTest
transformResourcesWithMergeJavaResForRelease
transformResourcesWithMergeJavaResForReleaseUnitTest
validateSigningDebug
validateSigningDebugAndroidTest
validateSigningProfile
validateSigningRelease
writeDebugApplicationId
writeProfileApplicationId
writeReleaseApplicationId
Rules
-----
Pattern: clean<TaskName>: Cleans the output files of a task.
Pattern: build<ConfigurationName>: Assembles the artifacts
of a configuration.
Pattern: upload<ConfigurationName>: Assembles and uploads
the artifacts belonging to a configuration.
1 actionable task: 1 executed
[ +11 ms] Resolving dependencies... (completed in 3,5s)
[ +2 ms] executing: /home/pavel/Android/Sdk/build-tools/29.0.0/aapt dump
xmltree /mnt/B4D0D63BD0D60410/Tvorba/stepslow/build/app/outputs/apk/app.apk
AndroidManifest.xml
[ +82 ms] Exit code 0 from: /home/pavel/Android/Sdk/build-tools/29.0.0/aapt
dump xmltree /mnt/B4D0D63BD0D60410/Tvorba/stepslow/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)="0.1.0" (Raw: "0.1.0")
A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1c
A: android:compileSdkVersionCodename(0x01010573)="9" (Raw: "9")
A: package="com.example.stepslow" (Raw: "com.example.stepslow")
A: platformBuildVersionCode=(type 0x10)0x1
A: platformBuildVersionName="0.1.0" (Raw: "0.1.0")
E: uses-sdk (line=7)
A: android:minSdkVersion(0x0101020c)=(type 0x10)0x17
A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1c
E: uses-permission (line=14)
A: android:name(0x01010003)="android.permission.INTERNET" (Raw:
"android.permission.INTERNET")
E: uses-permission (line=15)
A:
android:name(0x01010003)="android.permission.READ_EXTERNAL_STOR
AGE" (Raw: "android.permission.READ_EXTERNAL_STORAGE")
E: uses-permission (line=16)
A:
android:name(0x01010003)="android.permission.WRITE_EXTERNAL_STO
RAGE" (Raw: "android.permission.WRITE_EXTERNAL_STORAGE")
E: application (line=24)
A: android:label(0x01010001)="stepslow" (Raw: "stepslow")
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.Core
ComponentFactory" (Raw:
"androidx.core.app.CoreComponentFactory")
E: activity (line=30)
A: android:theme(0x01010000)=@0x7f0a0000
A:
android:name(0x01010003)="com.example.stepslow.MainActivity"
(Raw: "com.example.stepslow.MainActivity")
A: android:launchMode(0x0101001d)=(type 0x10)0x1
A: android:configChanges(0x0101001f)=(type 0x11)0x400037b4
A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
A: android:hardwareAccelerated(0x010102d3)=(type
0x12)0xffffffff
E: meta-data (line=44)
A:
android:name(0x01010003)="io.flutter.app.android.SplashScre
enUntilFirstFrame" (Raw:
"io.flutter.app.android.SplashScreenUntilFirstFrame")
A: android:value(0x01010024)=(type 0x12)0xffffffff
E: intent-filter (line=48)
E: action (line=49)
A: android:name(0x01010003)="android.intent.action.MAIN"
(Raw: "android.intent.action.MAIN")
E: category (line=51)
A:
android:name(0x01010003)="android.intent.category.LAUNCHE
R" (Raw: "android.intent.category.LAUNCHER")
[ +12 ms] executing: /home/pavel/Android/Sdk/platform-tools/adb -s
LHTDU16A22004756 shell -x logcat -v time -t 1
[ +62 ms] Exit code 0 from: /home/pavel/Android/Sdk/platform-tools/adb -s
LHTDU16A22004756 shell -x logcat -v time -t 1
[ ] int logctl_get(): open '/dev/hwlog_switch' fail -1, 13. Permission
denied
Note: log switch off, only log_main and log_events will have logs!
--------- beginning of main
08-23 16:52:42.453 I/HwMobileSignalController( 3574): subId:0
phoneType:1 networktype:2 targetClass:1 masterLevel:3 slaveLevel:-1
[ +4 ms] executing: /home/pavel/Android/Sdk/platform-tools/adb -s
LHTDU16A22004756 shell -x logcat -v time
[ +6 ms] executing: /home/pavel/Android/Sdk/platform-tools/adb version
[ +32 ms] Android Debug Bridge version 1.0.41
Version 29.0.1-5644136
Installed as /home/pavel/Android/Sdk/platform-tools/adb
[ +6 ms] executing: /home/pavel/Android/Sdk/platform-tools/adb start-server
[ +27 ms] Building APK
[ +32 ms] Running Gradle task 'assembleDebug'...
[ +3 ms] executing: [/mnt/B4D0D63BD0D60410/Tvorba/stepslow/android/]
/mnt/B4D0D63BD0D60410/Tvorba/stepslow/android/gradlew -Pverbose=true
-Ptarget=/mnt/B4D0D63BD0D60410/Tvorba/stepslow/lib/main.dart
-Ptrack-widget-creation=false -Pfilesystem-scheme=org-dartlang-root
-Ptarget-platform=android-arm64 assembleDebug
[+1530 ms] > Task :app:compileflutterBuildDebugArm64 UP-TO-DATE
[ +278 ms] > Task :app:packLibsflutterBuildDebug UP-TO-DATE
[ +403 ms] > Task :app:checkDebugClasspath UP-TO-DATE
[ ] > Task :app:preBuild UP-TO-DATE
[ ] > Task :audio:preBuild UP-TO-DATE
[ ] > Task :audio:preDebugBuild UP-TO-DATE
[ ] > Task :audio:checkDebugManifest UP-TO-DATE
[ ] > Task :audio:processDebugManifest UP-TO-DATE
[ ] > Task :audioplayers_with_rate:preBuild UP-TO-DATE
[ ] > Task :audioplayers_with_rate:preDebugBuild UP-TO-DATE
[ ] > Task :audioplayers_with_rate:checkDebugManifest UP-TO-DATE
[ ] > Task :audioplayers_with_rate:processDebugManifest UP-TO-DATE
[ ] > Task :flutter_audio_query:preBuild UP-TO-DATE
[ ] > Task :flutter_audio_query:preDebugBuild UP-TO-DATE
[ ] > Task :flutter_audio_query:checkDebugManifest UP-TO-DATE
[ ] > Task :flutter_audio_query:processDebugManifest UP-TO-DATE
[ ] > Task :path_provider:preBuild UP-TO-DATE
[ ] > Task :path_provider:preDebugBuild UP-TO-DATE
[ ] > Task :path_provider:checkDebugManifest UP-TO-DATE
[ ] > Task :path_provider:processDebugManifest UP-TO-DATE
[ +88 ms] > Task :app:preDebugBuild UP-TO-DATE
[ +1 ms] > Task :audio:compileDebugAidl NO-SOURCE
[ ] > Task :audioplayers_with_rate:compileDebugAidl NO-SOURCE
[ ] > Task :flutter_audio_query:compileDebugAidl NO-SOURCE
[ +1 ms] > Task :path_provider:compileDebugAidl NO-SOURCE
[ ] > Task :app:compileDebugAidl NO-SOURCE
[ +1 ms] > Task :audio:packageDebugRenderscript NO-SOURCE
[ ] > Task :audioplayers_with_rate:packageDebugRenderscript NO-SOURCE
[ +7 ms] > Task :flutter_audio_query:packageDebugRenderscript NO-SOURCE
[ +1 ms] > Task :path_provider:packageDebugRenderscript NO-SOURCE
[ +1 ms] > Task :app:compileDebugRenderscript UP-TO-DATE
[ +1 ms] > Task :app:checkDebugManifest UP-TO-DATE
[ ] > Task :app:generateDebugBuildConfig UP-TO-DATE
[ +1 ms] > Task :app:prepareLintJar UP-TO-DATE
[ +2 ms] > Task :app:cleanMergeDebugAssets
[ ] > Task :app:mergeDebugShaders UP-TO-DATE
[ ] > Task :app:compileDebugShaders UP-TO-DATE
[ ] > Task :app:generateDebugAssets UP-TO-DATE
[ ] > Task :audio:mergeDebugShaders UP-TO-DATE
[ ] > Task :audio:compileDebugShaders UP-TO-DATE
[ +2 ms] > Task :audio:generateDebugAssets UP-TO-DATE
[ ] > Task :audio:packageDebugAssets UP-TO-DATE
[ ] > Task :audioplayers_with_rate:mergeDebugShaders UP-TO-DATE
[ ] > Task :audioplayers_with_rate:compileDebugShaders UP-TO-DATE
[ ] > Task :audioplayers_with_rate:generateDebugAssets UP-TO-DATE
[ ] > Task :audioplayers_with_rate:packageDebugAssets UP-TO-DATE
[ ] > Task :flutter_audio_query:mergeDebugShaders UP-TO-DATE
[ ] > Task :flutter_audio_query:compileDebugShaders UP-TO-DATE
[ ] > Task :flutter_audio_query:generateDebugAssets UP-TO-DATE
[ ] > Task :flutter_audio_query:packageDebugAssets UP-TO-DATE
[ ] > Task :path_provider:mergeDebugShaders UP-TO-DATE
[ ] > Task :path_provider:compileDebugShaders UP-TO-DATE
[ ] > Task :path_provider:generateDebugAssets UP-TO-DATE
[ ] > Task :path_provider:packageDebugAssets UP-TO-DATE
[ +67 ms] > Task :app:mergeDebugAssets
[+1000 ms] > Task :app:copyFlutterAssetsDebug
[ ] > Task :app:mainApkListPersistenceDebug UP-TO-DATE
[ ] > Task :app:generateDebugResValues UP-TO-DATE
[ ] > Task :app:generateDebugResources UP-TO-DATE
[ ] > Task :audio:compileDebugRenderscript UP-TO-DATE
[ ] > Task :audio:generateDebugResValues UP-TO-DATE
[ ] > Task :audio:generateDebugResources UP-TO-DATE
[ +597 ms] > Task :audio:packageDebugResources UP-TO-DATE
[ +1 ms] > Task :audioplayers_with_rate:compileDebugRenderscript UP-TO-DATE
[ +3 ms] > Task :audioplayers_with_rate:generateDebugResValues UP-TO-DATE
[ ] > Task :audioplayers_with_rate:generateDebugResources UP-TO-DATE
[ ] > Task :audioplayers_with_rate:packageDebugResources UP-TO-DATE
[ ] > Task :flutter_audio_query:compileDebugRenderscript UP-TO-DATE
[ ] > Task :flutter_audio_query:generateDebugResValues UP-TO-DATE
[ ] > Task :flutter_audio_query:generateDebugResources UP-TO-DATE
[ +1 ms] > Task :flutter_audio_query:packageDebugResources UP-TO-DATE
[ ] > Task :path_provider:compileDebugRenderscript UP-TO-DATE
[ ] > Task :path_provider:generateDebugResValues UP-TO-DATE
[ ] > Task :path_provider:generateDebugResources UP-TO-DATE
[ +91 ms] > Task :path_provider:packageDebugResources UP-TO-DATE
[ +599 ms] > Task :app:mergeDebugResources UP-TO-DATE
[ ] > Task :app:createDebugCompatibleScreenManifests UP-TO-DATE
[ ] > Task :app:processDebugManifest UP-TO-DATE
[ ] > Task :app:splitsDiscoveryTaskDebug UP-TO-DATE
[ +199 ms] > Task :audio:generateDebugRFile UP-TO-DATE
[ ] > Task :audioplayers_with_rate:generateDebugRFile UP-TO-DATE
[ +199 ms] > Task :flutter_audio_query:generateDebugRFile UP-TO-DATE
[ ] > Task :path_provider:generateDebugRFile UP-TO-DATE
[ ] > Task :app:processDebugResources UP-TO-DATE
[ ] > Task :app:generateDebugSources UP-TO-DATE
[ ] > Task :audio:generateDebugBuildConfig UP-TO-DATE
[ ] > Task :audio:prepareLintJar UP-TO-DATE
[ ] > Task :audio:generateDebugSources UP-TO-DATE
[ ] > Task :audio:javaPreCompileDebug UP-TO-DATE
[ ] > Task :audio:compileDebugJavaWithJavac UP-TO-DATE
[ ] > Task :audio:processDebugJavaRes NO-SOURCE
[ +97 ms] > Task
:audio:transformClassesAndResourcesWithPrepareIntermediateJarsForDebug
UP-TO-DATE
[ ] > Task :audioplayers_with_rate:generateDebugBuildConfig UP-TO-DATE
[ ] > Task :audioplayers_with_rate:prepareLintJar UP-TO-DATE
[ ] > Task :audioplayers_with_rate:generateDebugSources UP-TO-DATE
[ ] > Task :audioplayers_with_rate:javaPreCompileDebug UP-TO-DATE
[ ] > Task :audioplayers_with_rate:compileDebugJavaWithJavac UP-TO-DATE
[ ] > Task :audioplayers_with_rate:processDebugJavaRes NO-SOURCE
[ ] > Task
:audioplayers_with_rate:transformClassesAndResourcesWithPrepareIntermediateJarsF
orDebug UP-TO-DATE
[ ] > Task :flutter_audio_query:generateDebugBuildConfig UP-TO-DATE
[ ] > Task :flutter_audio_query:prepareLintJar UP-TO-DATE
[ ] > Task :flutter_audio_query:generateDebugSources UP-TO-DATE
[ ] > Task :flutter_audio_query:javaPreCompileDebug UP-TO-DATE
[ +95 ms] > Task :flutter_audio_query:compileDebugJavaWithJavac UP-TO-DATE
[ ] > Task :flutter_audio_query:processDebugJavaRes NO-SOURCE
[ ] > Task
:flutter_audio_query:transformClassesAndResourcesWithPrepareIntermediateJarsForD
ebug UP-TO-DATE
[ ] > Task :path_provider:generateDebugBuildConfig UP-TO-DATE
[ ] > Task :path_provider:prepareLintJar UP-TO-DATE
[ ] > Task :path_provider:generateDebugSources UP-TO-DATE
[ ] > Task :path_provider:javaPreCompileDebug UP-TO-DATE
[ ] > Task :path_provider:compileDebugJavaWithJavac UP-TO-DATE
[ ] > Task :path_provider:processDebugJavaRes NO-SOURCE
[ ] > Task
:path_provider:transformClassesAndResourcesWithPrepareIntermediateJarsForDebug
UP-TO-DATE
[ ] > Task :app:javaPreCompileDebug UP-TO-DATE
[ +96 ms] > Task :app:compileDebugJavaWithJavac UP-TO-DATE
[ ] > Task :app:compileDebugNdk NO-SOURCE
[ ] > Task :app:compileDebugSources UP-TO-DATE
[ +99 ms] > Task :app:transformClassesWithDexBuilderForDebug UP-TO-DATE
[ ] > Task :app:transformDexArchiveWithExternalLibsDexMergerForDebug
UP-TO-DATE
[ ] > Task :app:transformDexArchiveWithDexMergerForDebug UP-TO-DATE
[ ] > Task :app:mergeDebugJniLibFolders UP-TO-DATE
[ ] > Task :audio:compileDebugNdk NO-SOURCE
[ ] > Task :audio:mergeDebugJniLibFolders UP-TO-DATE
[ ] > Task :audio:transformNativeLibsWithMergeJniLibsForDebug UP-TO-DATE
[ ] > Task :audio:transformNativeLibsWithIntermediateJniLibsForDebug
UP-TO-DATE
[ ] > Task :audioplayers_with_rate:compileDebugNdk NO-SOURCE
[ ] > Task :audioplayers_with_rate:mergeDebugJniLibFolders UP-TO-DATE
[ ] > Task
:audioplayers_with_rate:transformNativeLibsWithMergeJniLibsForDebug UP-TO-DATE
[ +95 ms] > Task
:audioplayers_with_rate:transformNativeLibsWithIntermediateJniLibsForDebug
UP-TO-DATE
[ +1 ms] > Task :flutter_audio_query:compileDebugNdk NO-SOURCE
[ +1 ms] > Task :flutter_audio_query:mergeDebugJniLibFolders UP-TO-DATE
[ +1 ms] > Task
:flutter_audio_query:transformNativeLibsWithMergeJniLibsForDebug UP-TO-DATE
[ +1 ms] > Task
:flutter_audio_query:transformNativeLibsWithIntermediateJniLibsForDebug
UP-TO-DATE
[ ] > Task :path_provider:compileDebugNdk NO-SOURCE
[ +1 ms] > Task :path_provider:mergeDebugJniLibFolders UP-TO-DATE
[ ] > Task :path_provider:transformNativeLibsWithMergeJniLibsForDebug
UP-TO-DATE
[ ] > Task
:path_provider:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[ ] > Task :app:transformNativeLibsWithMergeJniLibsForDebug UP-TO-DATE
[ ] > Task :app:checkDebugLibraries UP-TO-DATE
[ ] > Task :app:processDebugJavaRes NO-SOURCE
[ ] > Task :app:transformResourcesWithMergeJavaResForDebug UP-TO-DATE
[ ] > Task :app:validateSigningDebug UP-TO-DATE
[+7088 ms] > Task :app:packageDebug
[ ] > Task :app:assembleDebug
[ +199 ms] > Task :audio:extractDebugAnnotations UP-TO-DATE
[ ] > Task :audio:mergeDebugConsumerProguardFiles UP-TO-DATE
[ ] > Task :audio:transformResourcesWithMergeJavaResForDebug UP-TO-DATE
[ ] > Task :audio:transformClassesAndResourcesWithSyncLibJarsForDebug
UP-TO-DATE
[ ] > Task :audio:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[ +99 ms] > Task :audio:bundleDebugAar UP-TO-DATE
[ ] > Task :audio:compileDebugSources UP-TO-DATE
[ +1 ms] > Task :audio:assembleDebug UP-TO-DATE
[ ] > Task :audioplayers_with_rate:extractDebugAnnotations UP-TO-DATE
[ ] > Task :audioplayers_with_rate:mergeDebugConsumerProguardFiles
UP-TO-DATE
[ ] > Task
:audioplayers_with_rate:transformResourcesWithMergeJavaResForDebug UP-TO-DATE
[ ] > Task
:audioplayers_with_rate:transformClassesAndResourcesWithSyncLibJarsForDebug
UP-TO-DATE
[ ] > Task
:audioplayers_with_rate:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[ ] > Task :audioplayers_with_rate:bundleDebugAar UP-TO-DATE
[ ] > Task :audioplayers_with_rate:compileDebugSources UP-TO-DATE
[ +1 ms] > Task :audioplayers_with_rate:assembleDebug UP-TO-DATE
[ ] > Task :flutter_audio_query:extractDebugAnnotations UP-TO-DATE
[ ] > Task :flutter_audio_query:mergeDebugConsumerProguardFiles
UP-TO-DATE
[ ] > Task
:flutter_audio_query:transformResourcesWithMergeJavaResForDebug UP-TO-DATE
[ +94 ms] > Task
:flutter_audio_query:transformClassesAndResourcesWithSyncLibJarsForDebug
UP-TO-DATE
[ ] > Task
:flutter_audio_query:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[ ] > Task :flutter_audio_query:bundleDebugAar UP-TO-DATE
[ ] > Task :flutter_audio_query:compileDebugSources UP-TO-DATE
[ ] > Task :flutter_audio_query:assembleDebug UP-TO-DATE
[ ] > Task :path_provider:extractDebugAnnotations UP-TO-DATE
[ ] > Task :path_provider:mergeDebugConsumerProguardFiles UP-TO-DATE
[ ] > Task :path_provider:transformResourcesWithMergeJavaResForDebug
UP-TO-DATE
[ ] > Task
:path_provider:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[ ] > Task :path_provider:transformNativeLibsWithSyncJniLibsForDebug
UP-TO-DATE
[ +39 ms] > Task :path_provider:bundleDebugAar UP-TO-DATE
[ ] > Task :path_provider:compileDebugSources UP-TO-DATE
[ ] > Task :path_provider:assembleDebug UP-TO-DATE
[ ] 123 actionable tasks: 4 executed, 119 up-to-date
[ +343 ms] Running Gradle task 'assembleDebug'... (completed in 13,5s)
[ +551 ms] calculateSha: LocalDirectory:
'/mnt/B4D0D63BD0D60410/Tvorba/stepslow/build/app/outputs/apk'/app.apk
[ +92 ms] calculateSha: reading file took 91us
[ +869 ms] calculateSha: computing sha took 869us
[ +4 ms] Built build/app/outputs/apk/debug/app-debug.apk.
[ +46 ms] executing: /home/pavel/Android/Sdk/build-tools/29.0.0/aapt dump
xmltree /mnt/B4D0D63BD0D60410/Tvorba/stepslow/build/app/outputs/apk/app.apk
AndroidManifest.xml
[ +213 ms] Exit code 0 from: /home/pavel/Android/Sdk/build-tools/29.0.0/aapt
dump xmltree /mnt/B4D0D63BD0D60410/Tvorba/stepslow/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)="0.1.0" (Raw: "0.1.0")
A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1c
A: android:compileSdkVersionCodename(0x01010573)="9" (Raw: "9")
A: package="com.example.stepslow" (Raw: "com.example.stepslow")
A: platformBuildVersionCode=(type 0x10)0x1
A: platformBuildVersionName="0.1.0" (Raw: "0.1.0")
E: uses-sdk (line=7)
A: android:minSdkVersion(0x0101020c)=(type 0x10)0x17
A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1c
E: uses-permission (line=14)
A: android:name(0x01010003)="android.permission.INTERNET" (Raw:
"android.permission.INTERNET")
E: uses-permission (line=15)
A:
android:name(0x01010003)="android.permission.READ_EXTERNAL_STOR
AGE" (Raw: "android.permission.READ_EXTERNAL_STORAGE")
E: uses-permission (line=16)
A:
android:name(0x01010003)="android.permission.WRITE_EXTERNAL_STO
RAGE" (Raw: "android.permission.WRITE_EXTERNAL_STORAGE")
E: application (line=24)
A: android:label(0x01010001)="stepslow" (Raw: "stepslow")
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.Core
ComponentFactory" (Raw:
"androidx.core.app.CoreComponentFactory")
E: activity (line=30)
A: android:theme(0x01010000)=@0x7f0a0000
A:
android:name(0x01010003)="com.example.stepslow.MainActivity"
(Raw: "com.example.stepslow.MainActivity")
A: android:launchMode(0x0101001d)=(type 0x10)0x1
A: android:configChanges(0x0101001f)=(type 0x11)0x400037b4
A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
A: android:hardwareAccelerated(0x010102d3)=(type
0x12)0xffffffff
E: meta-data (line=44)
A:
android:name(0x01010003)="io.flutter.app.android.SplashScre
enUntilFirstFrame" (Raw:
"io.flutter.app.android.SplashScreenUntilFirstFrame")
A: android:value(0x01010024)=(type 0x12)0xffffffff
E: intent-filter (line=48)
E: action (line=49)
A: android:name(0x01010003)="android.intent.action.MAIN"
(Raw: "android.intent.action.MAIN")
E: category (line=51)
A:
android:name(0x01010003)="android.intent.category.LAUNCHE
R" (Raw: "android.intent.category.LAUNCHER")
[ +5 ms] Stopping app 'app.apk' on HUAWEI CAM L21.
[ +1 ms] executing: /home/pavel/Android/Sdk/platform-tools/adb -s
LHTDU16A22004756 shell am force-stop com.example.stepslow
[+1725 ms] executing: /home/pavel/Android/Sdk/platform-tools/adb -s
LHTDU16A22004756 shell pm list packages com.example.stepslow
[+1083 ms] package:com.example.stepslow
[ +9 ms] executing: /home/pavel/Android/Sdk/platform-tools/adb -s
LHTDU16A22004756 shell cat /data/local/tmp/sky.com.example.stepslow.sha1
[ +41 ms] ce67816c060c116b20b5df0776351759e19d332a
[ +2 ms] Installing APK.
[ +2 ms] executing: /home/pavel/Android/Sdk/platform-tools/adb version
[ +18 ms] Android Debug Bridge version 1.0.41
Version 29.0.1-5644136
Installed as /home/pavel/Android/Sdk/platform-tools/adb
[ +1 ms] executing: /home/pavel/Android/Sdk/platform-tools/adb start-server
[ +17 ms] Installing build/app/outputs/apk/app.apk...
[ ] executing: /home/pavel/Android/Sdk/platform-tools/adb -s
LHTDU16A22004756 install -t -r
/mnt/B4D0D63BD0D60410/Tvorba/stepslow/build/app/outputs/apk/app.apk
[+19513 ms] Performing Push Install
/mnt/B4D0D63BD0D60410/Tvorba/stepslow/build/app/outputs/apk
/app.apk: 1 file pushed. 7.5 MB/s (35977097 bytes in
4.547s)
pkg: /data/local/tmp/app.apk
Success
[ ] Installing build/app/outputs/apk/app.apk... (completed in 19,5s)
[ +47 ms] executing: /home/pavel/Android/Sdk/platform-tools/adb -s
LHTDU16A22004756 shell echo -n f5d52b6ae2fc62e31971c1af95e0346046d9e22b >
/data/local/tmp/sky.com.example.stepslow.sha1
[ +35 ms] HUAWEI CAM L21 startApp
[ +3 ms] executing: /home/pavel/Android/Sdk/platform-tools/adb -s
LHTDU16A22004756 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.stepslow/com.example.stepslow.MainActivity
[+1704 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000
cmp=com.example.stepslow/.MainActivity (has extras) }
[ +1 ms] Waiting for observatory port to be available...
[+1307 ms] Observatory URL on device: http://127.0.0.1:33275/L9TkBillK-I=/
[ +3 ms] executing: /home/pavel/Android/Sdk/platform-tools/adb -s
LHTDU16A22004756 forward tcp:0 tcp:33275
[ +16 ms] 42673
[ ] Forwarded host port 42673 to device port 33275 for Observatory
[ +8 ms] Connecting to service protocol: http://127.0.0.1:42673/L9TkBillK-I=/
[+1139 ms] Successfully connected to service protocol:
http://127.0.0.1:42673/L9TkBillK-I=/
[ +6 ms] Sending to VM service: getVM({})
[ +14 ms] Result: {type: VM, name: vm, architectureBits: 64, targetCPU: arm64,
hostCPU: hi6210sft, version: 2.4.0 (Wed Jun 19 11:53:45 2019 +0200) on
"android_arm64", _profilerMode: VM, _nativeZoneMemoryUsage: 0, pid: 10734,
startTime: 1566575608766, _embedder: Flu...
[ +8 ms] Sending to VM service: getIsolate({isolateId: isolates/489755443})
[ +4 ms] Sending to VM service: _flutter.listViews({})
[ +21 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id:
_flutterView/0x55cb8f27b0, isolate: {type: @Isolate, fixedId: true, id:
isolates/489755443, name: main.dart$main-489755443, number: 489755443}}]}
[ +10 ms] DevFS: Creating new filesystem on the device (null)
[ ] Sending to VM service: _createDevFS({fsName: stepslow})
[ +134 ms] Result: {type: Isolate, id: isolates/489755443, name: main, number:
489755443, _originNumber: 489755443, startTime: 1566575608855, _heaps: {new:
{type: HeapSpace, name: new, vmName: Scavenger, collections: 0,
avgCollectionPeriodMillis: 0.0, used: 524288, ...
[ +155 ms] Result: {type: FileSystem, name: stepslow, uri:
file:///data/user/0/com.example.stepslow/code_cache/stepslowUGLNUZ/stepslow/}
[ ] DevFS: Created new filesystem on the device
(file:///data/user/0/com.example.stepslow/code_cache/stepslowUGLNUZ/stepslow/)
[ +4 ms] Updating assets
[ +399 ms] Scanned through 0 files in 0ms
[ +2 ms] Syncing files to device HUAWEI CAM L21...
[ +3 ms] Scanning asset files
[ +11 ms] <- reset
[ ] Compiling dart to kernel with 0 updated files
[ +12 ms] /home/pavel/flutter/bin/cache/dart-sdk/bin/dart
/home/pavel/flutter/bin/cache/artifacts/engine/linux-x64/frontend_server.dart.sn
apshot --sdk-root
/home/pavel/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/
--incremental --strong --target=flutter --output-dill build/app.dill --packages
/mnt/B4D0D63BD0D60410/Tvorba/stepslow/.packages --filesystem-scheme
org-dartlang-root
[ +14 ms] <- compile package:stepslow/main.dart
[+1138 ms] -> result 01c12605-9b98-4b66-adfd-471a298ee0f7
[+2110 ms] I/flutter (10734): SocketException: Failed host lookup: 'youtube.com'
(OS Error: No address associated with hostname, errno = 7)
[ +142 ms] I/flutter (10734): {Entry( /storage/emulated/0/Alarms ): {}, Entry(
/storage/emulated/0/Android ): {Entry( /storage/emulated/0/Android/data ): {},
Entry( /storage/emulated/0/Android/media ): {}, Entry(
/storage/emulated/0/Android/obb ): {}}, Entry( /storage/emulated/0/bluetooth ):
{}, Entry( /storage/emulated/0/CloudDrive ): {}, Entry( /storage/emulated/0/DCIM
): {Entry( /storage/emulated/0/DCIM/Camera ): {Entry(
/storage/emulated/0/DCIM/Camera/cache ): {Entry(
/storage/emulated/0/DCIM/Camera/cache/latest ): {}}}}, Entry(
/storage/emulated/0/documents ): {}, Entry( /storage/emulated/0/Download ): {},
Entry( /storage/emulated/0/HWThemes ): {}, Entry(
/storage/emulated/0/MagazineUnlock ): {}, Entry( /storage/emulated/0/Movies ):
{}, Entry( /storage/emulated/0/Music ): {}, Entry(
/storage/emulated/0/Notifications ): {}, Entry( /storage/emulated/0/Pictures ):
{Entry( /storage/emulated/0/Pictures/Messenger ): {}, Entry(
/storage/emulated/0/Pictures/Screenshots ): {}, Entry(
/storage/emulated/0/Pictures/Twitter ): {}}, Entry( /stora
[ +5 ms] I/flutter (10734): ge/emulated/0/Podcasts ): {}, Entry(
/storage/emulated/0/Ringtones ): {}, Entry( /storage/emulated/0/SendAnywhere ):
{}, Entry( /storage/emulated/0/WhatsApp ): {Entry(
/storage/emulated/0/WhatsApp/Backups ): {}, Entry(
/storage/emulated/0/WhatsApp/Databases ): {}, Entry(
/storage/emulated/0/WhatsApp/Media ): {Entry(
/storage/emulated/0/WhatsApp/Media/WallPaper ): {}, Entry(
/storage/emulated/0/WhatsApp/Media/WhatsApp Animated Gifs ): {Entry(
/storage/emulated/0/WhatsApp/Media/WhatsApp Animated Gifs/Private ): {}, Entry(
/storage/emulated/0/WhatsApp/Media/WhatsApp Animated Gifs/Sent ): {}}, Entry(
/storage/emulated/0/WhatsApp/Media/WhatsApp Audio ): {Entry(
/storage/emulated/0/WhatsApp/Media/WhatsApp Audio/Private ): {}, Entry(
/storage/emulated/0/WhatsApp/Media/WhatsApp Audio/Sent ): {}}, Entry(
/storage/emulated/0/WhatsApp/Media/WhatsApp Documents ): {Entry(
/storage/emulated/0/WhatsApp/Media/WhatsApp Documents/Private ): {}, Entry(
/storage/emulated/0/WhatsApp/Media/WhatsApp Documents/Sent ): {}}, Entry( /
[ +1 ms] I/flutter (10734): storage/emulated/0/WhatsApp/Media/WhatsApp Images
): {Entry( /storage/emulated/0/WhatsApp/Media/WhatsApp Images/Private ): {},
Entry( /storage/emulated/0/WhatsApp/Media/WhatsApp Images/Sent ): {}}, Entry(
/storage/emulated/0/WhatsApp/Media/WhatsApp Profile Photos ): {}, Entry(
/storage/emulated/0/WhatsApp/Media/WhatsApp Stickers ): {}, Entry(
/storage/emulated/0/WhatsApp/Media/WhatsApp Video ): {Entry(
/storage/emulated/0/WhatsApp/Media/WhatsApp Video/Private ): {}, Entry(
/storage/emulated/0/WhatsApp/Media/WhatsApp Video/Sent ): {}}, Entry(
/storage/emulated/0/WhatsApp/Media/WhatsApp Voice Notes ): {Entry(
/storage/emulated/0/WhatsApp/Media/WhatsApp Voice Notes/201931 ): {}}}}, Entry(
/storage/emulated/0/Wi-Fi Direct ): {}}
[ +71 ms] I/flutter (10734): /storage/emulated/0
[ ] I/flutter (10734): /storage/emulated/0
[+1875 ms] -> 01c12605-9b98-4b66-adfd-471a298ee0f7
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/audio-0.0.5/lib/a
udio.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers_with
_rate-1.0.2/lib/audioplayers.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/charcode-1.1.2/li
b/ascii.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.14.1
1/lib/collection.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.14.1
1/lib/src/algorithms.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.14.1
1/lib/src/canonicalized_map.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.14.1
1/lib/src/combined_wrappers/combined_iterable.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.14.1
1/lib/src/combined_wrappers/combined_list.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.14.1
1/lib/src/combined_wrappers/combined_map.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.14.1
1/lib/src/comparators.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.14.1
1/lib/src/empty_unmodifiable_set.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.14.1
1/lib/src/wrappers.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.14.1
1/lib/src/equality.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.14.1
1/lib/src/equality_map.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.14.1
1/lib/src/equality_set.dart
[ +1 ms] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.14.1
1/lib/src/functions.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.14.1
1/lib/src/iterable_zip.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.14.1
1/lib/src/priority_queue.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.14.1
1/lib/src/queue_list.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.14.1
1/lib/src/union_set.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.14.1
1/lib/src/unmodifiable_wrappers.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.14.1
1/lib/src/union_set_controller.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.14.1
1/lib/src/utils.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/convert-2.1.1/lib
/convert.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/convert-2.1.1/lib
/src/accumulator_sink.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/convert-2.1.1/lib
/src/byte_accumulator_sink.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/convert-2.1.1/lib
/src/hex.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/convert-2.1.1/lib
/src/hex/decoder.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/convert-2.1.1/lib
/src/hex/encoder.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/convert-2.1.1/lib
/src/identity_codec.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/convert-2.1.1/lib
/src/percent.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/convert-2.1.1/lib
/src/percent/decoder.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/convert-2.1.1/lib
/src/percent/encoder.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/convert-2.1.1/lib
/src/string_accumulator_sink.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/convert-2.1.1/lib
/src/utils.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/crypto-2.0.6/lib/
crypto.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/crypto-2.0.6/lib/
src/digest.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/crypto-2.0.6/lib/
src/digest_sink.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/crypto-2.0.6/lib/
src/hash.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/crypto-2.0.6/lib/
src/hash_sink.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/crypto-2.0.6/lib/
src/hmac.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/crypto-2.0.6/lib/
src/md5.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/crypto-2.0.6/lib/
src/sha1.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/crypto-2.0.6/lib/
src/sha256.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/crypto-2.0.6/lib/
src/utils.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/easy_dialogs-1.0.
0/lib/easy_dialogs.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/easy_dialogs-1.0.
0/lib/single_choice_confirmation_dialog.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/easy_dialogs-1.0.
0/lib/single_choice_dialog.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/easy_dialogs-1.0.
0/lib/utils/dialog_utils.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/easy_dialogs-1.0.
0/lib/utils/my_alert_dialog.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_audio_que
ry-0.2.1/lib/flutter_audio_query.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_audio_que
ry-0.2.1/lib/src/album_info.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_audio_que
ry-0.2.1/lib/src/album_sort_type.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_audio_que
ry-0.2.1/lib/src/artist_info.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_audio_que
ry-0.2.1/lib/src/artist_sort_type.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_audio_que
ry-0.2.1/lib/src/data_model.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_audio_que
ry-0.2.1/lib/src/flutter_audio_query.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_audio_que
ry-0.2.1/lib/src/genre_info.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_audio_que
ry-0.2.1/lib/src/genre_sort_type.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_audio_que
ry-0.2.1/lib/src/playlist_info.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_audio_que
ry-0.2.1/lib/src/playlist_sort_type.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_audio_que
ry-0.2.1/lib/src/song_info.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_audio_que
ry-0.2.1/lib/src/song_sort_type.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_file_mana
ger-0.2.0/lib/flutter_file_manager.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_file_mana
ger-0.2.0/lib/src/file_manager.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_file_mana
ger-0.2.0/lib/src/filter.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_file_mana
ger-0.2.0/lib/src/sorting.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_file_mana
ger-0.2.0/lib/src/time_tools.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_file_mana
ger-0.2.0/lib/src/utils.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/meta-1.1.6/lib/me
ta.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.6.2/lib/pa
th.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.6.2/lib/sr
c/characters.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.6.2/lib/sr
c/context.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.6.2/lib/sr
c/internal_style.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.6.2/lib/sr
c/parsed_path.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.6.2/lib/sr
c/path_exception.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.6.2/lib/sr
c/path_map.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.6.2/lib/sr
c/path_set.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.6.2/lib/sr
c/style.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.6.2/lib/sr
c/style/posix.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.6.2/lib/sr
c/style/url.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.6.2/lib/sr
c/style/windows.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.6.2/lib/sr
c/utils.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider-0.5
.0+1/lib/path_provider.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/typed_data-1.1.6/
lib/typed_buffers.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/typed_data-1.1.6/
lib/typed_data.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/typicons_flutter-
0.2.1/lib/typicons.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/typicons_flutter-
0.2.1/lib/typicons_flutter.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/typicons_flutter-
0.2.1/lib/typicons_flutter_data.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/uuid-2.0.2/lib/uu
id.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/uuid-2.0.2/lib/uu
id_util.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/hash.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/vector_math_64.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/aabb2.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/aabb3.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/colors.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/frustum.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/intersection_result.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/matrix2.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/matrix3.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/matrix4.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/obb3.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/plane.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/quad.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/quaternion.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/ray.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/sphere.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/third_party/noise.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/triangle.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/vector.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/vector2.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/vector3.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/vector4.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/constants.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/error_helpers.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/opengl.dart
[ ] ->
+file:///home/pavel/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8
/lib/src/vector_math_64/utilities.dart
[ ] -> +file:///home/pavel/flutter/packages/flutter/lib/animation.dart
[ ] -> +file:///home/pavel/flutter/packages/flutter/lib/cupertino.dart
[ ] -> +file:///home/pavel/flutter/packages/flutter/lib/foundation.dart
[ ] -> +file:///home/pavel/flutter/packages/flutter/lib/gestures.dart
[ ] -> +file:///home/pavel/flutter/packages/flutter/lib/material.dart
[ ] -> +file:///home/pavel/flutter/packages/flutter/lib/painting.dart
[ ] -> +file:///home/pavel/flutter/packages/flutter/lib/physics.dart
[ ] -> +file:///home/pavel/flutter/packages/flutter/lib/rendering.dart
[ ] -> +file:///home/pavel/flutter/packages/flutter/lib/scheduler.dart
[ ] -> +file:///home/pavel/flutter/packages/flutter/lib/semantics.dart
[ ] -> +file:///home/pavel/flutter/packages/flutter/lib/services.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/animation/animation.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/animation/animation_control
ler.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/animation/listener_helpers.
dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/animation/animations.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/animation/curves.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/animation/tween.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/animation/tween_sequence.da
rt
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/action_sheet.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/object.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/box.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/activity_indicato
r.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/ticker_provider.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/app.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/bottom_tab_bar.da
rt
[ +1 ms] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/button.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/colors.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/date_picker.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/dialog.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/icons.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/localizations.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/nav_bar.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/diagnostics.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/page_scaffold.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/picker.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/refresh.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/route.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/scrollbar.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/segmented_control
.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/slider.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/switch.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/tab_scaffold.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/tab_view.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/text_field.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/automatic_keep_aliv
e.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/text_selection.da
rt
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/text_theme.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/theme.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/cupertino/thumb_painter.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/_bitfield_io.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/_isolates_io.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/_platform_io.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/annotations.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/assertions.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/basic_types.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/binding.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/bitfield.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/change_notifier.
dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/collections.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/consolidate_resp
onse.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/constants.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/debug.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/isolates.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/key.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/licenses.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/node.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/observer_list.da
rt
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/platform.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/print.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/profile.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/serialization.da
rt
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/synchronous_futu
re.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/foundation/unicode.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/arena.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/binding.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/constants.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/converter.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/debug.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/drag.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/drag_details.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/eager.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/events.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/force_press.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/hit_test.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/long_press.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/lsq_solver.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/monodrag.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/mouse_tracking.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/multidrag.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/multitap.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/pointer_router.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/pointer_signal_res
olver.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/recognizer.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/scale.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/tap.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/team.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/gestures/velocity_tracker.d
art
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/about.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/animated_icons.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/animated_icons/ani
mated_icons.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/animated_icons/ani
mated_icons_data.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/animated_icons/dat
a/add_event.g.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/animated_icons/dat
a/arrow_menu.g.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/animated_icons/dat
a/close_menu.g.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/animated_icons/dat
a/ellipsis_search.g.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/animated_icons/dat
a/event_add.g.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/animated_icons/dat
a/home_menu.g.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/animated_icons/dat
a/list_view.g.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/animated_icons/dat
a/menu_arrow.g.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/animated_icons/dat
a/menu_close.g.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/animated_icons/dat
a/menu_home.g.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/animated_icons/dat
a/pause_play.g.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/animated_icons/dat
a/play_pause.g.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/animated_icons/dat
a/search_ellipsis.g.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/animated_icons/dat
a/view_list.g.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/app.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/app_bar.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/app_bar_theme.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/arc.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/back_button.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/bottom_app_bar.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/bottom_app_bar_the
me.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/bottom_navigation_
bar.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/bottom_sheet.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/bottom_sheet_theme
.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/button.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/button_bar.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/button_theme.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/card.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/card_theme.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/checkbox.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/checkbox_list_tile
.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/chip.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/chip_theme.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/circle_avatar.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/color_scheme.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/colors.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/constants.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/data_table.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/data_table_source.
dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/date_picker.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/debug.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/dialog.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/dialog_theme.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/divider.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/drawer.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/drawer_header.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/dropdown.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/binding.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/expand_icon.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/expansion_panel.da
rt
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/expansion_tile.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/feedback.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/flat_button.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/flexible_space_bar
.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/floating_action_bu
tton.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/floating_action_bu
tton_location.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/floating_action_bu
tton_theme.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/flutter_logo.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/grid_tile.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/grid_tile_bar.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/icon_button.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/icons.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/ink_decoration.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/ink_highlight.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/ink_ripple.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/ink_splash.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/ink_well.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/input_border.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/input_decorator.da
rt
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/list_tile.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/material.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/material_button.da
rt
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/material_localizat
ions.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/material_state.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/mergeable_material
.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/outline_button.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/page.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/page_transitions_t
heme.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/paginated_data_tab
le.dart
[ +1 ms] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/popup_menu.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/progress_indicator
.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/radio.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/radio_list_tile.da
rt
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/raised_button.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/range_slider.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/refresh_indicator.
dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/reorderable_list.d
art
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/scaffold.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/scrollbar.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/search.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/shadows.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/slider.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/slider_theme.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/snack_bar.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/snack_bar_theme.da
rt
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/stepper.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/switch.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/switch_list_tile.d
art
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/tab_bar_theme.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/tab_controller.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/tab_indicator.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/tabs.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/text_field.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/text_form_field.da
rt
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/text_selection.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/text_theme.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/theme.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/theme_data.dart
[ +2 ms] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/time.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/time_picker.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/toggleable.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/tooltip.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/typography.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/material/user_accounts_draw
er_header.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/_network_image_io.
dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/alignment.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/basic_types.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/beveled_rectangle_
border.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/binding.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/border_radius.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/borders.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/box_border.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/box_decoration.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/box_fit.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/box_shadow.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/circle_border.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/clip.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/colors.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/continuous_rectang
le_border.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/debug.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/decoration.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/decoration_image.d
art
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/edge_insets.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/flutter_logo.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/fractional_offset.
dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/geometry.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/gradient.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/image_cache.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/image_decoder.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/image_provider.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/image_resolution.d
art
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/image_stream.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/inline_span.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/matrix_utils.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/notched_shapes.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/paint_utilities.da
rt
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/placeholder_span.d
art
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/rounded_rectangle_
border.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/shader_warm_up.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/shape_decoration.d
art
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/stadium_border.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/strut_style.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/text_painter.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/text_span.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/painting/text_style.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/physics/clamped_simulation.
dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/physics/friction_simulation
.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/physics/gravity_simulation.
dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/physics/simulation.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/physics/spring_simulation.d
art
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/physics/tolerance.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/physics/utils.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/animated_size.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/binding.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/binding.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/scheduler/binding.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/semantics/binding.dart
[ +1 ms] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/custom_layout.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/custom_paint.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/debug.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/debug_overflow_in
dicator.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/editable.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/error.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/flex.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/flow.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/image.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/layer.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/list_body.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/list_wheel_viewpo
rt.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/paragraph.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/performance_overl
ay.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/platform_view.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/proxy_box.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/rotated_box.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/shifted_box.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/sliver.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/sliver_fill.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/sliver_fixed_exte
nt_list.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/sliver_grid.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/sliver_list.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/sliver_multi_box_
adaptor.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/sliver_padding.da
rt
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/sliver_persistent
_header.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/stack.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/table.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/table_border.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/texture.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/tweens.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/view.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/viewport.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/viewport_offset.d
art
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/rendering/wrap.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/scheduler/debug.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/scheduler/priority.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/scheduler/ticker.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/semantics/debug.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/semantics/semantics.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/semantics/semantics_event.d
art
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/semantics/semantics_service
.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/asset_bundle.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/binary_messenger.d
art
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/clipboard.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/font_loader.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/haptic_feedback.da
rt
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/keyboard_key.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/keyboard_maps.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/message_codec.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/message_codecs.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/platform_channel.d
art
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/platform_messages.
dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/platform_views.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/raw_keyboard.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/raw_keyboard_andro
id.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/raw_keyboard_fuchs
ia.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/raw_keyboard_linux
.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/raw_keyboard_macos
.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/system_channels.da
rt
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/system_chrome.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/system_navigator.d
art
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/system_sound.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/text_editing.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/text_formatter.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/services/text_input.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/actions.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/animated_cross_fade
.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/animated_list.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/animated_size.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/animated_switcher.d
art
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/annotated_region.da
rt
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/app.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/async.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/banner.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/basic.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/bottom_navigation_b
ar_item.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/container.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/debug.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/dismissible.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/drag_target.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/draggable_scrollabl
e_sheet.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/scroll_notification
.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/editable_text.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/fade_in_image.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/focus_manager.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/focus_scope.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/focus_traversal.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/form.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/framework.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/gesture_detector.da
rt
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/grid_paper.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/heroes.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/icon.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/icon_data.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/icon_theme.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/icon_theme_data.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/image.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/image_icon.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/implicit_animations
.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/inherited_model.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/inherited_notifier.
dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/layout_builder.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/list_wheel_scroll_v
iew.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/localizations.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/media_query.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/modal_barrier.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/navigation_toolbar.
dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/navigator.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/nested_scroll_view.
dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/notification_listen
er.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/orientation_builder
.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/overlay.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/overscroll_indicato
r.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/page_storage.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/page_view.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/pages.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/performance_overlay
.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/placeholder.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/platform_view.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/preferred_size.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/primary_scroll_cont
roller.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/raw_keyboard_listen
er.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/routes.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/safe_area.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/scroll_activity.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/scroll_configuratio
n.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/scroll_context.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/scroll_controller.d
art
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/scroll_metrics.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/scroll_physics.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/scroll_position.dar
t
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/scroll_position_wit
h_single_context.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/scroll_simulation.d
art
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/scroll_view.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/scrollable.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/scrollbar.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/semantics_debugger.
dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/shortcuts.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/single_child_scroll
_view.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/size_changed_layout
_notifier.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/sliver.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/sliver_persistent_h
eader.dart
[ +6 ms] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/sliver_prototype_ex
tent_list.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/spacer.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/status_transitions.
dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/table.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/text.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/text_selection.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/texture.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/title.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/transitions.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/unique_widget.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/value_listenable_bu
ilder.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/viewport.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/visibility.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/widget_inspector.da
rt
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/widget_span.dart
[ ] ->
+file:///home/pavel/flutter/packages/flutter/lib/src/widgets/will_pop_scope.dart
[ ] -> +file:///home/pavel/flutter/packages/flutter/lib/widgets.dart
[ ] -> +file:///mnt/B4D0D63BD0D60410/Tvorba/stepslow/lib/main.dart
[ ] -> 01c12605-9b98-4b66-adfd-471a298ee0f7 build/app.dill 0
[ +1 ms] Updating files
[ +563 ms] DevFS: Sync finished
[ +2 ms] Syncing files to device HUAWEI CAM L21... (completed in 6Β 148ms,
longer than expected)
[ +1 ms] Synced 0.9MB.
[ +1 ms] Sending to VM service: _flutter.listViews({})
[ +9 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id:
_flutterView/0x55cb8f27b0, isolate: {type: @Isolate, fixedId: true, id:
isolates/489755443, name: main.dart$main-489755443, number: 489755443}}]}
[ +1 ms] <- accept
[ ] Connected to _flutterView/0x55cb8f27b0.
[ +8 ms] π₯ To hot reload changes while running, press "r". To hot restart
(and rebuild
state), press "R".
[ +4 ms] An Observatory debugger and profiler on HUAWEI CAM L21 is available
at:
http://127.0.0.1:42673/L9TkBillK-I=/
[ +1 ms] For a more detailed help message, press "h". To detach, press "d"; to
quit,
press "q".
[+66259 ms] DevFS: Deleting filesystem on the device
(file:///data/user/0/com.example.stepslow/code_cache/stepslowUGLNUZ/stepslow/)
[ +1 ms] Sending to VM service: _deleteDevFS({fsName: stepslow})
[ +38 ms] Result: {type: Success}
[ ] DevFS: Deleted filesystem on the device
(file:///data/user/0/com.example.stepslow/code_cache/stepslowUGLNUZ/stepslow/)
[ +7 ms] Sending to VM service: ext.flutter.exit({isolateId:
isolates/489755443})
[ +175 ms] Service protocol connection closed.
[+1828 ms] Application finished.
[ +4 ms] "flutter run" took 123Β 420ms.
[ ] "flutter run" took 123Β 420ms.
```
<!--
Run `flutter analyze` and attach any output of that command below.
If there are any analysis errors, try resolving them before filing this issue.
-->
```
$ flutter analyze
Waiting for another flutter command to release the startup lock...
Analyzing stepslow...
No issues found! (ran in 10.7s)
```
<!-- Finally, paste the output of running `flutter doctor -v` here. -->
```
$ flutter doctor -v
[β] Flutter (Channel stable, v1.7.8+hotfix.4, on Linux, locale cs_CZ.UTF-8)
β’ Flutter version 1.7.8+hotfix.4 at /home/pavel/flutter
β’ Framework revision 20e59316b8 (5 weeks ago), 2019-07-18 20:04:33 -0700
β’ Engine revision fee001c93f
β’ Dart version 2.4.0
[β] Android toolchain - develop for Android devices (Android SDK version 29.0.0)
β’ Android SDK at /home/pavel/Android/Sdk
β’ Android NDK location not configured (optional; useful for native profiling
support)
β’ Platform android-29, build-tools 29.0.0
β’ Java binary at: /opt/android-studio/jre/bin/java
β’ Java version OpenJDK Runtime Environment (build
1.8.0_202-release-1483-b49-5587405)
β’ All Android licenses accepted.
[!] Android Studio (version 3.4)
β’ Android Studio at /opt/android-studio
β Flutter plugin not installed; this adds Flutter specific functionality.
β Dart plugin not installed; this adds Dart specific functionality.
β’ Java version OpenJDK Runtime Environment (build
1.8.0_202-release-1483-b49-5587405)
[β] Connected device (1 available)
β’ HUAWEI CAM L21 β’ LHTDU16A22004756 β’ android-arm64 β’ Android 6.0 (API 23)
! Doctor found issues in 1 category.
```
</details> | p: path_provider,package,team-ecosystem,P2,triaged-ecosystem | low | Critical |
484,607,217 | go | runtime: make `GOMAXPROCS` cfs-aware on `GOOS=linux` | ### Problem
The default setting of `runtime.GOMAXPROCS()` (to be the number of os-apparent processors) can be greatly misaligned with container cpu quota (e.g. as implemented through [cfs bandwidth control][cfs_bwc] by docker).
This can lead to large latency artifacts in programs, especially under peak load, or when saturating all processors during background GC phases.
The smaller the container / larger the machine = the worse this effect becomes: let's say you deploy a fleet of micro service workers, each container having a cpu quota of 4, on a fleet of 32 processor[1] machines.
To understand why, you really have to understand the CFS quota mechanism; [this blog post][ln_jvm_cfs_pauses] does well (with pictures); this [kubernetes issue][k8_bobrik_issue] further explores the topic (especially as it relates to a recently resolved kernel cpu accounting bug). But to summarize it briefly for this issue:
- there is a quota `period`, say 100ms
- and there is then a `quota`, say 400ms to affect a 4-processor quota
- within any `period`, once the process group exceeds its `quota` it is throttled
Running an application workload at a reasonable level of cpu efficiency makes it _quite_ _likely_ that you'll be spiking up to your full quota and getting throttled.
Background waste workload, like concurrent GC[2], is _especially_ _likely_ to cause quota exhaustion.
I hesitate to even call this a "tail latency" problem; the artifacts are visible in the main body of and can shift the entire latency distribution.
### Solution
If you care about latency, reliability, predictability (... insert more *ilities to taste), then the correct thing to do is to never exceed your cpu quota, by setting `GOMAXPROCS=max(1, floor(cpu_quota))`.
Using this as a default for GOMAXPROCS makes the world safe again, which is why we use [uber-go/automaxprocs](https://github.com/uber-go/automaxprocs) in _all_ of our microservices.
### NOTEs
1. intentionally avoiding use of the word "core"; the matter of hyper-threading and virtual-vs-physical cores is another topic
2. /digression: can't not mention userspace scheduler pressure induced by background GC; where are we at with goroutine preemption again?
[k8_bobrik_issue]: https://github.com/kubernetes/kubernetes/issues/67577
[ln_jvm_cfs_pauses]: https://engineering.linkedin.com/blog/2016/11/application-pauses-when-running-jvm-inside-linux-control-groups
[cfs_bwc]: https://www.kernel.org/doc/Documentation/scheduler/sched-bwc.txt | NeedsInvestigation,compiler/runtime | high | Critical |
484,616,765 | pytorch | [FR] Dropout modules/functions should take in generator= | To be consistent with all other random functions.
cc @SsnL | module: nn,triaged,enhancement,module: random | low | Minor |
484,617,644 | TypeScript | Ability to only check specific errors | <!-- π¨ STOP π¨ π¦π§π’π£ π¨ πΊπ»πΆπ· π¨
Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker.
Please help us by doing the following steps before logging an issue:
* Search: https://github.com/Microsoft/TypeScript/search?type=Issues
* Read the FAQ, especially the "Common Feature Requests" section: https://github.com/Microsoft/TypeScript/wiki/FAQ
-->
## Search Terms
<!-- List of keywords you searched for before creating this issue. Write them down here so that others can find this suggestion more easily -->
specific errors ignore whitelist enable only
## Suggestion
<!-- A summary of what you'd like to see added or changed -->
Ability to specify what errors you would like to see caught in the tsconfig.json. Errors not in the whitelist would be ignored.
## Use Cases
<!--
What do you want to use this for?
What shortcomings exist with current approaches?
-->
Migrating large projects to Typescript. If the migration is done in a by-error-type approach you can't turn type-checking on in CI until _all_ problems are fixed, which can take a long time when there is other work to do.
## Examples
<!-- Show how this would be used and what the behavior would be -->
```json
{
"whitelistErrors": [7017, 2322, 2344]
}
```
Errors other than TS7017, TS2322, TS2344 would be ignored.
This suggestion is the inverse of https://github.com/microsoft/TypeScript/issues/29950
You can see an example of the opposite (blacklist errors) here: https://github.com/evolution-gaming/tsc-silent
[Pytype](https://google.github.io/pytype/), google's type-checker for python, also has the ability to blacklist specific errors.
```
# Comma separated list of error names to ignore.
disable =
attribute-error
```
## 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).
---
Note that this might lead to bad practice where developers lazily only check for certain errors rather than fixing their broken types. Using this feature should be discouraged unless used as a temporary measure for migrating from JS projects. | Suggestion,Awaiting More Feedback | low | Critical |
484,633,390 | go | x/website/_content/doc: Channels example in Effective Go leaks goroutines | The [final example](https://github.com/golang/go/blob/master/doc/effective_go.html#L3085) in Effective Go's [Channels](https://golang.org/doc/effective_go.html#channels) section leaks goroutines. Here's a solution that preserves the original semantics of `Serve`, and is closest to a similar example presented in [Tour](https://tour.golang.org/concurrency/5):
```go
func Serve(clientRequests chan *Request, quit chan bool) {
reqs := make(chan *Request) // Dispatch queue for handlers.
defer close(reqs) // Ensures handler goroutines complete.
// Start handlers
for i := 0; i < MaxOutstanding; i++ {
go handle(reqs)
}
for {
select {
case req := <-clientRequests:
reqs <-req
case <-quit: // Wait to be told to exit.
return
}
}
}
| Documentation,NeedsInvestigation,website | low | Major |
484,643,021 | kubernetes | Improve handling of readonly volume expansion | Volumes that are attached as readonly or is mounted as readonly needs to be handled different for CSI. For CSI in particular - the decision of whether to expand the volume or not should be off loaded to CSI storage provider rather than kubernetes making the decision for them.
Fixing this for good will require a spec change in CSI I think and we will pursue this before making CSI expansion GA.
/sig storage
/assign
cc @bswartz | kind/bug,sig/storage,triage/accepted | low | Major |
484,645,864 | flutter | dart binary fails to execute while building flutter tool (windows) | OS: `Windows 10 (1903 - 18956.1000)`
Flutter: master and stable
I've tried a bunch of different ways to install on Windows and keep getting the same error. I've tried `stable` and `master`.
```
Checking Dart SDK version...
Downloading Dart SDK from Flutter engine 975a8aa5752e5774ffcd342a6f987d61bd5d84a5...
Unzipping Dart SDK...
Building flutter tool...
Running pub upgrade...
'"<path to flutter>\bin\cache\dart-sdk\bin\dart"' is not recognized as an internal or external command,
operable program or batch file.
Error (9009): Unable to 'pub upgrade' flutter tool. Retrying in five seconds... (9 tries left)
```
Running `<path to flutter>\bin\cache\dart-sdk\bin\dart` works and my path is correctly set up. | c: crash,tool,dependency: dart,platform-windows,a: first hour,P2,team-tool,triaged-tool | low | Critical |
484,658,263 | go | cmd/go: support -buildmode=c-archive on android/arm64 | <!-- Please answer these questions before submitting your issue. Thanks! -->
### What version of Go are you using (`go version`)?
<pre>
$ go version
go version go1.12.9 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
GOARCH="arm64"
GOBIN=""
GOCACHE="/home/vagrant/.cache/go-build"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="android"
GOPATH="/usr/local/go/go_packages:/vcb"
GOPROXY=""
GORACE=""
GOROOT="/usr/local/go"
GOTMPDIR=""
GOTOOLDIR="/usr/local/go/pkg/tool/linux_amd64"
GCCGO="gccgo"
CC="/toolchain/aarch64-linux-android//bin/aarch64-linux-android-clang"
CXX="/toolchain/aarch64-linux-android//bin/aarch64-linux-android-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 -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build250707415=/tmp/go-build -gno-record-gcc-switches"
</pre></details>
### What did you do?
```
go build -o libtest.a -buildmode=c-archive -x
```
### What did you expect to see?
An archive file targeting android/arm64 to be built
### What did you see instead?
```
invalid value "c-archive" for flag -buildmode: buildmode c-archive not supported on android/arm64
``` | help wanted,OS-Android,NeedsInvestigation,FeatureRequest | low | Critical |
484,666,243 | pytorch | [RFC] NestedTensor - 0.0.2 | This issue tracks discussion around [NestedTensor RFC 0.0.2](https://docs.google.com/document/d/1hrIV14FvQajiUbkF43Cor8fii51XY6fMkEw5Q4tMOak/edit).
The linked document is a view-only Google doc. Please leave your comments here.
For a general overview over the project [see the FYI issue](https://github.com/pytorch/pytorch/issues/25032). | triaged | low | Minor |
484,672,254 | tensorflow | How to create Python extension module that uses TensorFlow C API? | <em>Please make sure that this is a build/installation issue. As per our [GitHub Policy](https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md), we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:build_template</em>
**System information**
- OS Platform and Distribution (e.g., Linux Ubuntu 16.04): macOS 10.13.6
- Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device:
- TensorFlow installed from (source or binary): binary
- TensorFlow version: 1.14.0
- Python version: 3.7.3
- Installed using virtualenv? pip? conda?: conda
- Bazel version (if compiling from source):
- GCC/Compiler version (if compiling from source):
- CUDA/cuDNN version: n/a
- GPU model and memory: n/a
**Describe the problem**
I've written a Python extension module that uses TensorFlow through the C API. I installed the API as described in https://www.tensorflow.org/install/lang_c. On its own, my module works correctly. But if I import my extension module and then also `import tensorflow`, Python crashes with this error.
```
[libprotobuf ERROR external/protobuf_archive/src/google/protobuf/descriptor_database.cc:58] File already exists in database: tensorflow/core/protobuf/master.proto
[libprotobuf FATAL external/protobuf_archive/src/google/protobuf/descriptor.cc:1370] CHECK failed: GeneratedDatabase()->Add(encoded_file_descriptor, size):
libc++abi.dylib: terminating with uncaught exception of type google::protobuf::FatalException: CHECK failed: GeneratedDatabase()->Add(encoded_file_descriptor, size):
Abort trap: 6
```
I believe this happens because the C API includes its own complete copy of TensorFlow, so now I get two different copies loaded into the same process at the same time.
What is the solution to this? How can I have Python code that uses TensorFlow, and also invokes C code that uses TensorFlow?
**Provide the exact sequence of commands / steps that you executed before running into the problem**
**Any other info / logs**
Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached.
| stat:awaiting tensorflower,type:support,comp:runtime,TF 2.8 | medium | Critical |
484,684,045 | flutter | GPUSurfaceGL::CreateOrUpdateSurfaces creates surfaces twice on startup | I was debugging an issue about how we create our offscreen surfaces for iOS and found that this function creates surfaces twice on startup.
Such behavior could be explained if the second surface was a different size, but both report being created with the same size. @chinmaygarde indicated that this shouldn't be happening and needs investigation. | engine,P2,team-engine,triaged-engine | low | Critical |
484,731,423 | pytorch | Feature request: Fix dimension convention for masks in transformer | In PyTorch 1.2,
For `nn.Transformer`, the `src` dimensions correspond to `S, N, E` (sequence position, batch index, embedding feature), but the `src_key_padding_mask` dimensions correspond to `N, S`. That is, the batch is the second dimension of `src` but the first dimension of `src_key_padding_mask` (and other masks). I find this pretty confusing and inconsistent: either all parameters should be batch-first or they all should be batch-second.
Relatedly, there should probably be an option analogous to the LSTM's `batch_first` argument. | feature,module: nn,triaged | low | Minor |
484,761,679 | flutter | "flutter bash-completion" fails when the tool needs to rebuild itself | A fix for this was proposed in https://github.com/flutter/flutter/pull/37845 but it unfortunately broke some tests so it was reverted in https://github.com/flutter/flutter/pull/39160.
cc @gspencergoog @christopherfujino @ryenus | tool,P2,team-tool,triaged-tool | low | Minor |
484,763,310 | pytorch | Serialization does not work for quantized modules | ## πtorch.load() followed by torch.save() does not work for quantized modules as super class state is not preserved.
<!-- A clear and concise description of what the bug is. -->
Problem is related to quantized modules directly implementing __setstate() and __getstate() functions
without calling parent class (nn.Module) __setstate() function. Module expects state to be a dict:
https://github.com/pytorch/pytorch/blob/master/torch/nn/modules/module.py#L568
## To Reproduce
```
import torch
myMod = torch.nn.quantized.Conv2d(2,2,1)
torch.save(myMod, 'test.pt')
print(myMod._modules)
```
prints:
```
Conv2d(2, 2, kernel_size=(1, 1), stride=(1, 1), scale=1.0, zero_point=0)
OrderedDict()
```
```
testMod = torch.load('test.pt')
print(testMod._modules)
```
Errors out with:
```
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-7-d7a4bb2ceef8> in <module>
1 testMod = torch.load('test.pt')
----> 2 print(testMod._modules)
/mnt/xarfuse/uid-172846/7eacb818-ns-4026531840/torch/nn/modules/module.py in __getattr__(self, name)
589 return modules[name]
590 raise AttributeError("'{}' object has no attribute '{}'".format(
--> 591 type(self).__name__, name))
592
593 def __setattr__(self, name, value):
AttributeError: 'Conv2d' object has no attribute '_modules'
``` | module: serialization,triaged,quantization_release_1.3 | low | Critical |
484,792,357 | flutter | flutter fails to detect adb network device | I am trying to develop with Android device on adb network so that it will be easy for development.
I am able to detect the device on cmd but flutter devices fail to detect.
#### Adb devices

#### Flutter devices

If this was not considered before then please add this feature to make the development more easier. (Dream of cable-less development) :) | c: new feature,tool,P3,team-tool,triaged-tool | low | Minor |
484,825,757 | rust | null trait object raw pointers are UB | Opening after some discussion in https://github.com/rust-lang/miri/issues/918#issuecomment-524554552
This playground snippet crashes on an illegal instruction on release: https://play.rust-lang.org/?version=stable&mode=release&edition=2018&gist=7c69493026add62256996d204e1278c0
Are vtable ptrs in trait object ptrs NonNull? Is that intended? This (2 year old) comment would suggest so https://github.com/rust-lang/rfcs/issues/433#issuecomment-345497470
CC @RalfJung | T-lang,A-raw-pointers,C-discussion,T-opsem,A-trait-objects | medium | Critical |
484,839,856 | rust | Unnecessary HasParamEnv bound on C for FnTypeExt | https://doc.rust-lang.org/nightly/nightly-rustc/rustc/ty/layout/trait.FnTypeExt.html | C-cleanup,T-compiler | low | Minor |
484,845,715 | flutter | [Proposal]ExpansionTile should allow flexible content | `ExpansionTile` makes it very hard to get the following behavior:

(The size of the `ExpansionTile` adapts to the size of the `ListView` inside, until it takes all the available space, at which point the `ListView` allows scrolling.)
My naive attempts give a layout exception, and the proposed solutions (see #23464) are unsatisfactory: Using a `SizedBox` is not an option as the size must adapt to the list content. Using `shrinkWrap` fails with big lists: the list doesn't scroll, it overflows.
I think the difficulty comes from the way `ExpansionTile` wraps its `children` argument:
```dart
Container(
...
child: Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
ListTile holding expand icon...,
ClipRect(
child: Align(
heightFactor: _heightFactor.value,
child: Column(children: widget.children),
),
),
],
),
);
```
I got the desired result by replacing this code with the following:
```dart
Container(
...
child: Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
ListTile holding expand icon...,
Flexible(
child: ClipRect(
child: Align(
heightFactor: _heightFactor.value,
child: Column(
mainAxisSize: MainAxisSize.min,
children: widget.children,
),
),
),
),
],
),
);
```
There's a `Flexible` added around the `ClipRect`, and the inner `Column` now has `mainAxisSize: MainAxisSize.min` like the outer `Column` already has. With these changes I can implement the desired behavior like this:
```dart
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: Text('Test App')),
body: Column(
children: <Widget>[
ListTile(title: Text('First tile')),
Flexible(
child: ExpansionTile(
title: Text('Expansion tile'),
children: [
Flexible(
child: ListView(
shrinkWrap: true,
children: [
for (var i = 0; i < 30; ++i)
ListTile(title: Text('Tile $i')),
],
),
),
],
),
),
ListTile(title: Text('Last tile')),
],
),
),
);
}
}
```
Would it be appropriate to make such changes to `ExpansionTile` to make it more flexible? | c: new feature,framework,f: material design,customer: crowd,c: proposal,P3,team-design,triaged-design | low | Major |
484,848,565 | youtube-dl | BBC athletics which is not on iplayer cannot be downloaded by youtube-dl currently | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check list in order to prevent the most common mistakes and misuse of youtube-dl:
- First of, make sure you are using the latest version of youtube-dl. Run `youtube-dl --version` and ensure your version is 2019.08.13. If it's not, see https://yt-dl.org/update on how to update. Issues with outdated version will be REJECTED.
- Make sure that all provided video/audio/playlist URLs (if any) are alive and playable in a browser.
- Make sure that site you are requesting is not dedicated to copyright infringement, see https://yt-dl.org/copyright-infringement. youtube-dl does not support such sites. In order for site support request to be accepted all provided example URLs should not violate any copyrights.
- Search the bugtracker for similar site support requests: http://yt-dl.org/search-issues. DO NOT post duplicates.
- Finally, put x into all relevant boxes (like this [x])
-->
- [x] I'm reporting a new site support request
- [x] I've verified that I'm running youtube-dl version **2019.08.13**
- [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.bbc.co.uk/sport/live/athletics/49397903
## Description
<!--
Provide any additional information.
If work on your issue requires account credentials please provide them or explain how one can obtain them.
-->
This is 2hr 20min of athletics as covered by the BBC. It is not available currently on the iPlayer so only via this web page.
YouTube-dl does not know how to parse the page.
youtube-dl https://www.bbc.co.uk/sport/live/athletics/49397903[bbc] 49397903: Downloading webpageERROR: no suitable InfoExtractor for URL https://www.bbc.co.uk/programmes/None
| site-support-request | low | Critical |
484,853,956 | pytorch | Problems with install python from source | ## π Bug
For Pytorch 1.3.0 a from source installation is necessary, if one only have cuda 9.0. I cant update the version, because I do not have root access.
## To Reproduce
I have done everything what they say in the tutorial. The result is the following output of CMakerError:
```
Performing C++ SOURCE FILE Test CAFFE2_NEED_TO_TURN_OFF_DEPRECATION_WARNING failed with the following output:
Change Dir: /group/ag_cmb/scratch/msalomon#/pytorch/build/CMakeFiles/CMakeTmp
Run Build Command(s):/group/ag_cmb/scratch/msalomon#/anaconda3/envs/pytorch-build/bin/ninja cmTC_b8375
[1/2] Building CXX object CMakeFiles/cmTC_b8375.dir/src.cxx.o
FAILED: CMakeFiles/cmTC_b8375.dir/src.cxx.o
/usr/bin/c++ -DCAFFE2_NEED_TO_TURN_OFF_DEPRECATION_WARNING -std=c++11 -o CMakeFiles/cmTC_b8375.dir/src.cxx.o -c src.cxx
src.cxx:1:30: fatal error: glog/stl_logging.h: Datei oder Verzeichnis nicht gefunden
#include <glog/stl_logging.h>
^
compilation terminated.
ninja: build stopped: subcommand failed.
Source file was:
#include <glog/stl_logging.h>
int main(int argc, char** argv) {
return 0;
}
Determining if the pthread_create exist failed with the following output:
Change Dir: /group/ag_cmb/scratch/msalomon#/pytorch/build/CMakeFiles/CMakeTmp
Run Build Command(s):/group/ag_cmb/scratch/msalomon#/anaconda3/envs/pytorch-build/bin/ninja cmTC_7fcd6
[1/2] Building C object CMakeFiles/cmTC_7fcd6.dir/CheckSymbolExists.c.o
[2/2] Linking C executable cmTC_7fcd6
FAILED: cmTC_7fcd6
: && /usr/bin/gcc -rdynamic CMakeFiles/cmTC_7fcd6.dir/CheckSymbolExists.c.o -o cmTC_7fcd6 && :
CMakeFiles/cmTC_7fcd6.dir/CheckSymbolExists.c.o: In function `main':
CheckSymbolExists.c:(.text+0x1b): undefined reference to `pthread_create'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
File /group/ag_cmb/scratch/msalomon#/pytorch/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <pthread.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef pthread_create
return ((int*)(&pthread_create))[argc];
#else
(void)argc;
return 0;
#endif
}
Determining if the function pthread_create exists in the pthreads failed with the following output:
Change Dir: /group/ag_cmb/scratch/msalomon#/pytorch/build/CMakeFiles/CMakeTmp
Run Build Command(s):/group/ag_cmb/scratch/msalomon#/anaconda3/envs/pytorch-build/bin/ninja cmTC_95667
[1/2] Building C object CMakeFiles/cmTC_95667.dir/CheckFunctionExists.c.o
[2/2] Linking C executable cmTC_95667
FAILED: cmTC_95667
: && /usr/bin/gcc -DCHECK_FUNCTION_EXISTS=pthread_create -rdynamic CMakeFiles/cmTC_95667.dir/CheckFunctionExists.c.o -o cmTC_95667 -lpthreads && :
/usr/bin/ld: cannot find -lpthreads
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Performing C SOURCE FILE Test NNPACK_ARCH_IS_X86_32 failed with the following output:
Change Dir: /group/ag_cmb/scratch/msalomon#/pytorch/build/CMakeFiles/CMakeTmp
Run Build Command(s):/group/ag_cmb/scratch/msalomon#/anaconda3/envs/pytorch-build/bin/ninja cmTC_94e41
[1/2] Building C object CMakeFiles/cmTC_94e41.dir/src.c.o
FAILED: CMakeFiles/cmTC_94e41.dir/src.c.o
/usr/bin/gcc -DNNPACK_ARCH_IS_X86_32 -o CMakeFiles/cmTC_94e41.dir/src.c.o -c src.c
src.c:3:10: error: #error AVX only on x86_64
#error AVX only on x86_64
^~~~~
ninja: build stopped: subcommand failed.
Source file was:
#if ! (defined(__i386) || defined(_M_IX86))
#error AVX only on x86_64
#endif
int main() {
return 0;
}
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WSHORTEN_64_TO_32 failed with the following output:
Change Dir: /group/ag_cmb/scratch/msalomon#/pytorch/build/CMakeFiles/CMakeTmp
Run Build Command(s):/group/ag_cmb/scratch/msalomon#/anaconda3/envs/pytorch-build/bin/ninja cmTC_c20e9
[1/2] Building CXX object CMakeFiles/cmTC_c20e9.dir/src.cxx.o
FAILED: CMakeFiles/cmTC_c20e9.dir/src.cxx.o
/usr/bin/c++ -Wno-deprecated -fvisibility-inlines-hidden -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors -DHAVE_CXX_FLAG_WSHORTEN_64_TO_32 -Wshorten-64-to-32 -Wshorten-64-to-32 -o CMakeFiles/cmTC_c20e9.dir/src.cxx.o -c src.cxx
c++: error: unrecognized command line option '-Wshorten-64-to-32'
c++: error: unrecognized command line option '-Wshorten-64-to-32'
ninja: build stopped: subcommand failed.
Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WD654 failed with the following output:
Change Dir: /group/ag_cmb/scratch/msalomon#/pytorch/build/CMakeFiles/CMakeTmp
Run Build Command(s):/group/ag_cmb/scratch/msalomon#/anaconda3/envs/pytorch-build/bin/ninja cmTC_bfc93
[1/2] Building CXX object CMakeFiles/cmTC_bfc93.dir/src.cxx.o
FAILED: CMakeFiles/cmTC_bfc93.dir/src.cxx.o
/usr/bin/c++ -Wno-deprecated -fvisibility-inlines-hidden -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors -Wfloat-equal -fstrict-aliasing -Wno-deprecated-declarations -Wstrict-aliasing -DHAVE_CXX_FLAG_WD654 -wd654 -wd654 -o CMakeFiles/cmTC_bfc93.dir/src.cxx.o -c src.cxx
c++: error: unrecognized command line option '-wd654'
c++: error: unrecognized command line option '-wd654'
ninja: build stopped: subcommand failed.
Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test HAVE_CXX_FLAG_WTHREAD_SAFETY failed with the following output:
Change Dir: /group/ag_cmb/scratch/msalomon#/pytorch/build/CMakeFiles/CMakeTmp
Run Build Command(s):/group/ag_cmb/scratch/msalomon#/anaconda3/envs/pytorch-build/bin/ninja cmTC_9f5d6
[1/2] Building CXX object CMakeFiles/cmTC_9f5d6.dir/src.cxx.o
FAILED: CMakeFiles/cmTC_9f5d6.dir/src.cxx.o
/usr/bin/c++ -Wno-deprecated -fvisibility-inlines-hidden -std=c++11 -Wall -Wextra -Wshadow -pedantic -pedantic-errors -Wfloat-equal -fstrict-aliasing -Wno-deprecated-declarations -Wstrict-aliasing -DHAVE_CXX_FLAG_WTHREAD_SAFETY -Wthread-safety -Wthread-safety -o CMakeFiles/cmTC_9f5d6.dir/src.cxx.o -c src.cxx
c++: error: unrecognized command line option '-Wthread-safety'; did you mean '-fthread-jumps'?
c++: error: unrecognized command line option '-Wthread-safety'; did you mean '-fthread-jumps'?
ninja: build stopped: subcommand failed.
Source file was:
int main() { return 0; }
Performing C SOURCE FILE Test C_HAS_AVX_1 failed with the following output:
Change Dir: /group/ag_cmb/scratch/msalomon#/pytorch/build/CMakeFiles/CMakeTmp
Run Build Command(s):/group/ag_cmb/scratch/msalomon#/anaconda3/envs/pytorch-build/bin/ninja cmTC_b6753
[1/2] Building C object CMakeFiles/cmTC_b6753.dir/src.c.o
FAILED: CMakeFiles/cmTC_b6753.dir/src.c.o
/usr/bin/gcc -I"/group/ag_cmb/scratch/msalomon#/anaconda3/envs/pytorch-build/include" -I/usr/local/cuda/include -fopenmp -DC_HAS_AVX_1 -fPIE -o CMakeFiles/cmTC_b6753.dir/src.c.o -c src.c
src.c: In function βmainβ:
src.c:7:7: warning: AVX vector return without AVX enabled changes the ABI [-Wpsabi]
a = _mm256_set1_ps(0);
~~^~~~~~~~~~~~~~~~~~~
In file included from /usr/lib/gcc/x86_64-linux-gnu/6/include/immintrin.h:41:0,
from src.c:2:
/usr/lib/gcc/x86_64-linux-gnu/6/include/avxintrin.h:1285:1: error: inlining failed in call to always_inline β_mm256_set1_psβ: target specific option mismatch
_mm256_set1_ps (float __A)
^~~~~~~~~~~~~~
src.c:7:7: note: called from here
a = _mm256_set1_ps(0);
~~^~~~~~~~~~~~~~~~~~~
ninja: build stopped: subcommand failed.
Source file was:
#include <immintrin.h>
int main()
{
__m256 a;
a = _mm256_set1_ps(0);
return 0;
}
Performing C SOURCE FILE Test C_HAS_AVX2_1 failed with the following output:
Change Dir: /group/ag_cmb/scratch/msalomon#/pytorch/build/CMakeFiles/CMakeTmp
Run Build Command(s):/group/ag_cmb/scratch/msalomon#/anaconda3/envs/pytorch-build/bin/ninja cmTC_0bc98
[1/2] Building C object CMakeFiles/cmTC_0bc98.dir/src.c.o
FAILED: CMakeFiles/cmTC_0bc98.dir/src.c.o
/usr/bin/gcc -I"/group/ag_cmb/scratch/msalomon#/anaconda3/envs/pytorch-build/include" -I/usr/local/cuda/include -fopenmp -DC_HAS_AVX2_1 -fPIE -o CMakeFiles/cmTC_0bc98.dir/src.c.o -c src.c
src.c: In function βmainβ:
src.c:7:7: warning: AVX vector return without AVX enabled changes the ABI [-Wpsabi]
a = _mm256_abs_epi16(a);
~~^~~~~~~~~~~~~~~~~~~~~
In file included from /usr/lib/gcc/x86_64-linux-gnu/6/include/immintrin.h:43:0,
from src.c:2:
/usr/lib/gcc/x86_64-linux-gnu/6/include/avx2intrin.h:63:1: error: inlining failed in call to always_inline β_mm256_abs_epi16β: target specific option mismatch
_mm256_abs_epi16 (__m256i __A)
^~~~~~~~~~~~~~~~
src.c:7:7: note: called from here
a = _mm256_abs_epi16(a);
~~^~~~~~~~~~~~~~~~~~~~~
ninja: build stopped: subcommand failed.
Source file was:
#include <immintrin.h>
int main()
{
__m256i a = {0};
a = _mm256_abs_epi16(a);
__m256i x;
_mm256_extract_epi64(x, 0); // we rely on this in our AVX2 code
return 0;
}
Performing C SOURCE FILE Test CXX_HAS_AVX_1 failed with the following output:
Change Dir: /group/ag_cmb/scratch/msalomon#/pytorch/build/CMakeFiles/CMakeTmp
Run Build Command(s):/group/ag_cmb/scratch/msalomon#/anaconda3/envs/pytorch-build/bin/ninja cmTC_dcabd
[1/2] Building C object CMakeFiles/cmTC_dcabd.dir/src.c.o
FAILED: CMakeFiles/cmTC_dcabd.dir/src.c.o
/usr/bin/gcc -I"/group/ag_cmb/scratch/msalomon#/anaconda3/envs/pytorch-build/include" -I/usr/local/cuda/include -fopenmp -DCXX_HAS_AVX_1 -fPIE -o CMakeFiles/cmTC_dcabd.dir/src.c.o -c src.c
src.c: In function βmainβ:
src.c:7:7: warning: AVX vector return without AVX enabled changes the ABI [-Wpsabi]
a = _mm256_set1_ps(0);
~~^~~~~~~~~~~~~~~~~~~
In file included from /usr/lib/gcc/x86_64-linux-gnu/6/include/immintrin.h:41:0,
from src.c:2:
/usr/lib/gcc/x86_64-linux-gnu/6/include/avxintrin.h:1285:1: error: inlining failed in call to always_inline β_mm256_set1_psβ: target specific option mismatch
_mm256_set1_ps (float __A)
^~~~~~~~~~~~~~
src.c:7:7: note: called from here
a = _mm256_set1_ps(0);
~~^~~~~~~~~~~~~~~~~~~
ninja: build stopped: subcommand failed.
Source file was:
#include <immintrin.h>
int main()
{
__m256 a;
a = _mm256_set1_ps(0);
return 0;
}
Performing C SOURCE FILE Test CXX_HAS_AVX2_1 failed with the following output:
Change Dir: /group/ag_cmb/scratch/msalomon#/pytorch/build/CMakeFiles/CMakeTmp
Run Build Command(s):/group/ag_cmb/scratch/msalomon#/anaconda3/envs/pytorch-build/bin/ninja cmTC_b0cad
[1/2] Building C object CMakeFiles/cmTC_b0cad.dir/src.c.o
FAILED: CMakeFiles/cmTC_b0cad.dir/src.c.o
/usr/bin/gcc -I"/group/ag_cmb/scratch/msalomon#/anaconda3/envs/pytorch-build/include" -I/usr/local/cuda/include -fopenmp -DCXX_HAS_AVX2_1 -fPIE -o CMakeFiles/cmTC_b0cad.dir/src.c.o -c src.c
src.c: In function βmainβ:
src.c:7:7: warning: AVX vector return without AVX enabled changes the ABI [-Wpsabi]
a = _mm256_abs_epi16(a);
~~^~~~~~~~~~~~~~~~~~~~~
In file included from /usr/lib/gcc/x86_64-linux-gnu/6/include/immintrin.h:43:0,
from src.c:2:
/usr/lib/gcc/x86_64-linux-gnu/6/include/avx2intrin.h:63:1: error: inlining failed in call to always_inline β_mm256_abs_epi16β: target specific option mismatch
_mm256_abs_epi16 (__m256i __A)
^~~~~~~~~~~~~~~~
src.c:7:7: note: called from here
a = _mm256_abs_epi16(a);
~~^~~~~~~~~~~~~~~~~~~~~
ninja: build stopped: subcommand failed.
Source file was:
#include <immintrin.h>
int main()
{
__m256i a = {0};
a = _mm256_abs_epi16(a);
__m256i x;
_mm256_extract_epi64(x, 0); // we rely on this in our AVX2 code
return 0;
}
Performing C SOURCE FILE Test BLAS_F2C_DOUBLE_WORKS failed with the following compile output:
Change Dir: /group/ag_cmb/scratch/msalomon#/pytorch/build/CMakeFiles/CMakeTmp
Run Build Command(s):/group/ag_cmb/scratch/msalomon#/anaconda3/envs/pytorch-build/bin/ninja cmTC_6dd89
[1/2] Building C object CMakeFiles/cmTC_6dd89.dir/src.c.o
[2/2] Linking C executable cmTC_6dd89
...and run output:
Return value: 1
Source file was:
#include <stdlib.h>
#include <stdio.h>
float x[4] = { 1, 2, 3, 4 };
float y[4] = { .1, .01, .001, .0001 };
int four = 4;
int one = 1;
extern double sdot_();
int main() {
int i;
double r = sdot_(&four, x, &one, y, &one);
exit((float)r != (float).1234);
}
Performing C SOURCE FILE Test COMPILER_SUPPORTS_SVE failed with the following output:
Change Dir: /group/ag_cmb/scratch/msalomon#/pytorch/build/CMakeFiles/CMakeTmp
Run Build Command(s):/group/ag_cmb/scratch/msalomon#/anaconda3/envs/pytorch-build/bin/ninja cmTC_feaf1
[1/2] Building C object CMakeFiles/cmTC_feaf1.dir/src.c.o
FAILED: CMakeFiles/cmTC_feaf1.dir/src.c.o
/usr/bin/gcc -I"/group/ag_cmb/scratch/msalomon#/anaconda3/envs/pytorch-build/include" -I/usr/local/cuda/include -fopenmp -Wno-ignored-qualifiers -Wno-absolute-value -DCOMPILER_SUPPORTS_SVE -march=armv8-a+sve -fPIE -o CMakeFiles/cmTC_feaf1.dir/src.c.o -c src.c
src.c:1:0: error: bad value (armv8-a+sve) for -march= switch
cc1: warning: unrecognized command line option β-Wno-absolute-valueβ
ninja: build stopped: subcommand failed.
Source file was:
#include <arm_sve.h>
int main() {
svint32_t r = svdup_n_s32(1); }
Performing C SOURCE FILE Test COMPILER_SUPPORTS_AVX512F failed with the following output:
Change Dir: /group/ag_cmb/scratch/msalomon#/pytorch/build/CMakeFiles/CMakeTmp
Run Build Command(s):/group/ag_cmb/scratch/msalomon#/anaconda3/envs/pytorch-build/bin/ninja cmTC_1782d
[1/2] Building C object CMakeFiles/cmTC_1782d.dir/src.c.o
FAILED: CMakeFiles/cmTC_1782d.dir/src.c.o
/usr/bin/gcc -I"/group/ag_cmb/scratch/msalomon#/anaconda3/envs/pytorch-build/include" -I/usr/local/cuda/include -fopenmp -Wno-ignored-qualifiers -Wno-absolute-value -DCOMPILER_SUPPORTS_AVX512F -mavx512f -fPIE -o CMakeFiles/cmTC_1782d.dir/src.c.o -c src.c
src.c: In function βmainβ:
src.c:14:5: error: unrecognizable insn:
__m512i r = _mm512_andnot_si512(a, a); }
^~~~~~~
(insn 22 21 23 2 (set (mem/c:V4DI (plus:DI (reg/f:DI 82 virtual-stack-vars)
(const_int -96 [0xffffffffffffffa0])) [3 ymm+0 S32 A256])
(vec_merge:V4DI (vec_select:V4DI (reg:V8DI 103)
(parallel [
(const_int 0 [0])
(const_int 1 [0x1])
(const_int 2 [0x2])
(const_int 3 [0x3])
]))
(reg:V4DI 104)
(reg:QI 105))) src.c:12 -1
(nil))
src.c:14:5: internal compiler error: in extract_insn, at recog.c:2287
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-6/README.Bugs> for instructions.
ninja: build stopped: subcommand failed.
Source file was:
#if defined(_MSC_VER)
#include <intrin.h>
#else
#include <x86intrin.h>
#endif
__m512 addConstant(__m512 arg) {
return _mm512_add_ps(arg, _mm512_set1_ps(1.f));
}
int main() {
__m512i a = _mm512_set1_epi32(1);
__m256i ymm = _mm512_extracti64x4_epi64(a, 0);
__mmask16 m = _mm512_cmp_epi32_mask(a, a, _MM_CMPINT_EQ);
__m512i r = _mm512_andnot_si512(a, a); }
```
## Expected behavior
<!-- A clear and concise description of what you expected to happen. -->
## Environment
PyTorch version: From Source
Is debug build: N/A
CUDA used to build PyTorch: 9.0
OS: Debian GNU/Linux 9.9 (stretch)
GCC version: (Debian 6.3.0-18+deb9u1) 6.3.0 20170516
CMake version: version 3.14.0
Python version: 3.7
Is CUDA available: yes
CUDA runtime version: Could not collect
GPU models and configuration:
GPU 0: GeForce GTX 1080
GPU 1: NVS 310
Nvidia driver version: 384.111
cuDNN version: Could not collect
Versions of relevant libraries:
[pip3] numpy==1.17.0
[pip3] torch==1.2.0
[pip3] torchvision==0.4.0
[conda] blas 1.0 mkl
[conda] magma-cuda90 2.5.0 1 pytorch
[conda] mkl 2019.4 243
[conda] mkl-include 2019.4 243
[conda] mkl-service 2.0.2 py37h7b6447c_0
[conda] mkl_fft 1.0.14 py37ha843d7b_0
[conda] mkl_random 1.0.2 py37hd81dba3_0
## Additional context
<!-- Add any other context about the problem here. -->
| module: build,triaged | low | Critical |
484,855,515 | flutter | SecurityContext.setTrustedCertificatesBytes fails with BAD_PKCS12_DATA | <!-- Thank you for using Flutter!
If you are looking for support, please check out our documentation
or consider asking a question on Stack Overflow:
* https://flutter.dev/
* https://api.flutter.dev/
* https://stackoverflow.com/questions/tagged/flutter?sort=frequent
If you have found a bug or if our documentation doesn't have an answer
to what you're looking for, then fill our the template below. Please read
our guide to filing a bug first: https://flutter.dev/docs/resources/bug-reports
-->
Hi! I'm trying to use SecurityContext.setTrustedCertificateBytes with a DER encoded x509 certificate and my app keeps blowing up and telling me that it's an invalid PKCS12 format. However, the docs do not say that the x509 certificate needs to be encoded in PKCS12 (all it says is that it needs to be a DER encoding of the x509 cert). This occurs on both Android and iOS simulators. I'm wondering if I'm just missing something? I believe my code to convert the pem text certificate to the .DER binary encoding is correct, but I can post it if necessary. Of note: I am already obtaining a client private key and a client cert, converting them to PKCS12 format and setting the security context with them before I am setting the trusted certificate bytes, and I am not receiving a format error there on either platform.
## Steps to Reproduce
<!--
Please tell us exactly how to reproduce the problem you are running into.
Please attach a small application (ideally just one main.dart file) that
reproduces the problem. You could use https://gist.github.com/ for this.
If the problem is with your application's rendering, then please attach
a screenshot and explain what the problem is.
-->
1. Obtain x509 certificate PEM via network
2. Convert x509 PEM to DER programmatically using OPENSSL in C via Platform Channel method call:
1. Write x509 PEM to bio using BIO_write_ex
2. Get X509 struct using PEM_read_bio_X509
3. Create new bio for output
4. Write x509 to BIO in DER format using i2d_X509_bio
5. calloc() C array and call BIO_read_ex to fill it with the i2d'd bytes
6. return DER converted to the appropriate type to get Uint8List back from method call
* byte[] on Android
* FlutterStandardTypedData: TypedDataWithBytes on iOS
3. Call SecurityContext.setTrustedCertificateBytes(der.toList()) (.toList() to convert to List<int> from Uint8List)
## Logs
<!--
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.
-->
```
[VERBOSE-2:ui_dart_state.cc(148)] Unhandled Exception: TlsException: Failure trusting builtin roots (OS Error:
BAD_PKCS12_DATA(pkcs8_x509.c:618), errno = 0)
#0 _SecurityContext.setTrustedCertificatesBytes (dart:io-patch/secure_socket_patch.dart:172:59)
#1 User.generateSecurityContext (package:seabrook_mobile/models/user.dart:128:21)
<asynchronous suspension>
#2 _LoginPageState.build.<anonymous closure>.<anonymous closure> (package:seabrook_mobile/screens/login_page.dart:124:50)
<asynchronous suspension>
#3 _InkResponseState._handleTap (package:flutter/src/material/ink_well.dart:511:14)
#4 _InkResponseState.build.<anonymous closure> (package:flutter/src/material/ink_well.dart:566:30)
#5 GestureRecognizer.invokeCallback (package:flutter/src/gestures/recognizer.dart:166:24)
#6 TapGestureRecognizer._checkUp (package:flutter/src/gestures/tap.dart:240:9)
#7 TapGestureRecognizer.handlePrimaryPointer (package:flutter/src/gestures/tap.dart:177:9)
#8 PrimaryPointe<β¦>
```
<!--
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 seabrook_mobile...
info β’ Unused import: 'package:flutter_secure_storage/flutter_secure_storage.dart' β’ lib/main.dart:5:8 β’ unused_import
info β’ Unused import: 'dart:ui' β’ lib/models/enclave.dart:1:8 β’ unused_import
info β’ Avoid wrapping fields in getters and setters just to be "safe" β’ lib/models/user.dart:45:14 β’
unnecessary_getters_setters
info β’ Avoid wrapping fields in getters and setters just to be "safe" β’ lib/models/user.dart:47:7 β’ unnecessary_getters_setters
info β’ Unused import: 'dart:convert' β’ lib/sbk_crypto.dart:2:8 β’ unused_import
info β’ Unused import: 'dart:io' β’ lib/sbk_crypto.dart:3:8 β’ unused_import
info β’ Unused import: 'dart:async' β’ lib/screens/enclave_info_page.dart:1:8 β’ unused_import
info β’ Unused import: 'dart:convert' β’ lib/screens/enclave_info_page.dart:2:8 β’ unused_import
info β’ Unused import: 'dart:io' β’ lib/screens/enclave_info_page.dart:3:8 β’ unused_import
info β’ Unused import: 'package:http/http.dart' β’ lib/screens/enclave_info_page.dart:7:8 β’ unused_import
info β’ Unused import: 'package:seabrook_mobile/server_utils.dart' β’ lib/screens/enclave_info_page.dart:13:8 β’ unused_import
info β’ Unused import: 'dart:convert' β’ lib/screens/key_test_page.dart:2:8 β’ unused_import
info β’ Unused import: 'dart:io' β’ lib/screens/key_test_page.dart:3:8 β’ unused_import
info β’ Unused import: 'package:provider/provider.dart' β’ lib/screens/key_test_page.dart:7:8 β’ unused_import
info β’ Unused import: 'package:seabrook_mobile/screens/routes.dart' β’ lib/screens/key_test_page.dart:10:8 β’ unused_import
info β’ Unused import: 'package:seabrook_mobile/server_utils.dart' β’ lib/screens/key_test_page.dart:11:8 β’ unused_import
info β’ Unused import: 'package:seabrook_mobile/models/models.dart' β’ lib/screens/key_test_page.dart:12:8 β’ unused_import
info β’ Unused import: 'dart:async' β’ lib/screens/login_page.dart:1:8 β’ unused_import
info β’ Unused import: 'package:seabrook_mobile/screens/key_test_page.dart' β’ lib/screens/login_page.dart:10:8 β’ unused_import
info β’ Unused import: 'package:seabrook_mobile/models/models.dart' β’ lib/screens/router.dart:2:8 β’ unused_import
info β’ Unused import: 'dart:io' β’ lib/screens/signup_page.dart:3:8 β’ unused_import
info β’ Unused import: 'package:provider/provider.dart' β’ lib/screens/signup_page.dart:9:8 β’ unused_import
```
<!-- Finally, paste the output of running `flutter doctor -v` here. -->
```
[β] Flutter (Channel stable, v1.5.4-hotfix.2, on Mac OS X 10.14.6 18G87, locale en-US)
β’ Flutter version 1.5.4-hotfix.2 at /Users/mike/development/flutter
β’ Framework revision 7a4c33425d (4 months ago), 2019-04-29 11:05:24 -0700
β’ Engine revision 52c7a1e849
β’ Dart version 2.3.0 (build 2.3.0-dev.0.5 a1668566e5)
[β] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
β’ Android SDK at /Users/mike/Library/Android/sdk
β’ Android NDK location not configured (optional; useful for native profiling support)
β’ Platform android-28, build-tools 28.0.3
β’ Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
β’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1343-b01)
β’ All Android licenses accepted.
[β] iOS toolchain - develop for iOS devices (Xcode 10.3)
β’ Xcode at /Applications/Xcode.app/Contents/Developer
β’ Xcode 10.3, Build version 10G8
β’ ios-deploy 1.9.4
β’ CocoaPods version 1.6.1
[β] Android Studio (version 3.4)
β’ Android Studio at /Applications/Android Studio.app/Contents
β’ Flutter plugin version 37.0.1
β’ Dart plugin version 183.6270
β’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1343-b01)
[β] IntelliJ IDEA Community Edition (version 2019.1.2)
β’ IntelliJ at /Applications/IntelliJ IDEA CE.app
β’ Flutter plugin version 37.0.2
β’ Dart plugin version 191.7830
[β] Connected device (1 available)
β’ iPhone XΚ β’ 45696439-655A-4C5C-8CB9-6B3BE0782582 β’ ios β’ com.apple.CoreSimulator.SimRuntime.iOS-12-4 (simulator)
β’ No issues found!
```
| engine,dependency: dart,P2,team-engine,triaged-engine | low | Critical |
484,872,988 | create-react-app | Add option to watch all file changes in project tree | ### Problem
<!--
Provide a clear and concise description of what the problem is.
For example, "I'm always frustrated when..."
-->
When I import GLSL files as strings using https://github.com/pveyes/raw.macro as discussed in #3722, changes to the GLSL files don't trigger HMR. This is a bit cumbersome for WebGL development in React, since WebGL requires having the GLSL code available as a string in Javascript.
### Describe the solution you'd like
<!--
Provide a clear and concise description of what you want to happen.
-->
An optional behavior for HMR, where changes to any file in the tree trigger reload, similar to that of https://github.com/napcs/node-livereload would help with this. This way a user that has special HMR needs
### Describe alternatives you've considered
<!--
Let us know about other solutions you've tried or researched.
-->
#### Template literals
Putting the GLSL code in a template literal like this:
```js
const shaderSource = `
void main() {
gl_FragColor = vec4(1.0, 0.0, 0.0, 1.0);;
}
`
```
It works with HMR since you change Javascript code instead of a separate shader file, but this breaks currently available tooling for GLSL since they require having the code in a separate .glsl file.
#### Ejecting CRA
Ejecting and using https://github.com/webpack-contrib/raw-loader with custom webpack config. I don't know if this would trigger a reload on .glsl file change. | issue: proposal | low | Minor |
484,873,249 | godot | NodePath `^` operator doesn't have auto-completion (`@` in `3.x`) | <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
89bcfa4b3
**Issue description:**
Sooo there's this `@` operator, which is mostly used for NodePaths, like, you can export a NodePath and give it a default value with `@"path/to/node"`. But the operator doesn't provide any nice autocompletion like `$` does. It's probably disputable whether it should have it or not, but it occurred to me once that it could be useful sometimes. | enhancement,topic:gdscript,topic:editor,usability | low | Minor |
484,894,476 | pytorch | euclidean distance between two tensors | ## π Feature
<!-- A clear and concise description of the feature proposal -->
euclidean distance as used in prototypical networks, included in standard PyTorch library.
## Motivation
<!-- Please outline the motivation for the proposal. Is your feature request related to a problem? e.g., I'm always frustrated when [...]. If this is related to another GitHub issue, please link here too -->
code from prototypical networks
```
def euclidean_dist( x, y):
# x: N x D
# y: M x D
n = x.size(0)
m = y.size(0)
d = x.size(1)
assert d == y.size(1)
x = x.unsqueeze(1).expand(n, m, d)
y = y.unsqueeze(0).expand(n, m, d)
return torch.pow(x - y, 2).sum(2)
```
## Pitch
<!-- A clear and concise description of what you want to happen. -->
## Alternatives
<!-- A clear and concise description of any alternative solutions or features you've considered, if any. -->
## Additional context
<!-- Add any other context or screenshots about the feature request here. -->
| triaged,function request,module: distance functions | low | Major |
484,901,091 | flutter | Compiler error messages get buried | ```
ianh@burmese:~/dev/dummy$ flutter run
Launching lib/main.dart on Pixel 3 XL in debug mode...
Initializing gradle... 0.6s
Resolving dependencies... 1.4s
Running Gradle task 'assembleDebug'...
Compiler message:
lib/main.dart:4:23: Error: Method not found: 'BoxToRenderFrameAdapter'.
void main() => runApp(BoxToRenderFrameAdapter(
^^^^^^^^^^^^^^^^^^^^^^^
Compiler failed on /home/ianh/dev/dummy/lib/main.dart
FAILURE: Build failed with an exception.
* Where:
Script '/home/ianh/dev/flutter/packages/flutter_tools/gradle/flutter.gradle' line: 765
* What went wrong:
Execution failed for task ':app:compileFlutterBuildDebugArm64'.
> Process 'command '/home/ianh/dev/flutter/bin/flutter'' finished with non-zero exit value 1
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 6s
Running Gradle task 'assembleDebug'... 6.5s
Gradle task assembleDebug failed with exit code 1
ianh@burmese:~/dev/dummy$
```
This is way too long (in part because we seem to be adding extra newlines in the output? But also because Gradle.) In fact when I just saw this it was so long that it went off the top of my screen and all I saw was the text from "What went wrong" to the bottom, which is entirely unactionable and useless.
It need not, and should not, be more than the following:
```
ianh@burmese:~/dev/dummy$ flutter run
Launching lib/main.dart on Pixel 3 XL in debug mode...
Initializing gradle... 0.6s
Resolving dependencies... 1.4s
Running Gradle task 'assembleDebug'...
Compiler error:
lib/main.dart:4:23: Error: Method not found: 'BoxToRenderFrameAdapter'.
void main() => runApp(BoxToRenderFrameAdapter(
^^^^^^^^^^^^^^^^^^^^^^^
ianh@burmese:~/dev/dummy$
``` | tool,a: first hour,a: quality,P2,team-tool,triaged-tool | low | Critical |
484,941,094 | youtube-dl | Playlist Support for ARD-Mediathek Series Overview | # Checklist
[x] - First of, make sure you are using the latest version of youtube-dl. Run `youtube-dl --version` and ensure your version is 2019.08.13. If it's not, see https://yt-dl.org/update on how to update. Issues with outdated version will be REJECTED.
```
# youtube-dl -U
Updating to version 2019.08.13 ...
Updated youtube-dl. Restart youtube-dl to use the new version.
```
[x] - Search the bugtracker for similar site support requests: http://yt-dl.org/search-issues. DO NOT post duplicates.
there are some tickets but all share the same "ampersand in url" issue.
- [x] I'm reporting a new site support request
- [x] I've verified that I'm running youtube-dl version **2019.08.13**
- [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
Playlist URL:
https://www.ardmediathek.de/hr/shows/Y3JpZDovL2hyLW9ubGluZS8zODIyMDAzMw/mittendrin-flughafen-frankfurt
## Description
Playlist pages can't be parsed:
```
# youtube-dl https://www.ardmediathek.de/hr/shows/Y3JpZDovL2hyLW9ubGluZS8zODIyMDAzMw/mittendrin-flughafen-frankfurt --verbose
[debug] System config: []
[debug] User config: [u'-f', u'299+141/299+140/299+139/138+141/138+140/138+139/266+141/266+140/266+139/264+141/264+140/264+139/137+141/137+140/137+139/136+141/136+140/136+139/22+141/22+140/22+139/135+141/135+140/135+139/134+141/134+140/134+139/133+141/133+140/133+139/best', u'--add-metadata']
[debug] Custom config: []
[debug] Command-line args: [u'https://www.ardmediathek.de/hr/shows/Y3JpZDovL2hyLW9ubGluZS8zODIyMDAzMw/mittendrin-flughafen-frankfurt', u'--verbose']
[debug] Encodings: locale UTF-8, fs utf-8, out UTF-8, pref UTF-8
[debug] youtube-dl version 2019.08.13
[debug] Python version 2.7.15 (CPython) - Darwin-18.7.0-x86_64-i386-64bit
[debug] exe versions: ffmpeg 4.1, ffprobe 4.1
[debug] Proxy map: {}
[ARD:mediathek] mittendrin-flughafen-frankfurt: Downloading webpage
ERROR: Unable to extract media id; 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 "/usr/local/bin/youtube-dl/youtube_dl/YoutubeDL.py", line 796, in extract_info
ie_result = ie.extract(url)
File "/usr/local/bin/youtube-dl/youtube_dl/extractor/common.py", line 530, in extract
ie_result = self._real_extract(url)
File "/usr/local/bin/youtube-dl/youtube_dl/extractor/ard.py", line 229, in _real_extract
r'/play/(?:config|media)/(\d+)', webpage, 'media id')
File "/usr/local/bin/youtube-dl/youtube_dl/extractor/common.py", line 1005, in _search_regex
raise RegexNotFoundError('Unable to extract %s' % _name)
RegexNotFoundError: Unable to extract media id; 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.
```
| site-support-request | low | Critical |
484,946,322 | godot | Button: Instead of having action modes, let's have seperate "button pressed", "button just pressed"and "button released" signals | **Godot version:**
3.1 stable
Input maps and buttons should follow the same train of thought. I don't see the benefit of another system (maybe some can explain what the benefits of action modes might be). It just makes it harder to learn and more confusing imho.
https://github.com/godotengine/godot/issues/4625
https://www.reddit.com/r/godot/comments/bsrc6k/button_toggle_mode_button_release/ | discussion,topic:core | low | Minor |
484,951,161 | pytorch | Incorrect Validation Accuracy Due to Distributed Sampler | ## π Bug
<!-- A clear and concise description of what the bug is. -->
The new `DistributedSampler` pads the number of samples to make it divisible by the number of processes, which is a bit similar to `drop_last` in `DataLoader` while here `DsitributedSampler` duplicates the last few samples instead of dropping them.
This will definitely cause incorrect validation accuracy when you want to use distributed validation.
<!-- If you have a code sample, error messages, stack traces, please provide it here as well -->
```Python
def __iter__(self):
# deterministically shuffle based on epoch
g = torch.Generator()
g.manual_seed(self.epoch)
if self.shuffle:
indices = torch.randperm(len(self.dataset), generator=g).tolist()
else:
indices = list(range(len(self.dataset)))
# add extra samples to make it evenly divisible
indices += indices[:(self.total_size - len(indices))]
assert len(indices) == self.total_size
# subsample
indices = indices[self.rank:self.total_size:self.num_replicas]
assert len(indices) == self.num_samples
return iter(indices)
```
## Environment
- PyTorch Version (1.2.0):
## Feature Request
Add `drop_last` or `duplicate_last` option in `DistributedSampler`.
cc @SsnL @pietern @mrshenli @pritamdamania87 @zhaojuanmao @satgera | oncall: distributed,module: dataloader,triaged | low | Critical |
484,952,225 | react | onMouseEnter event missing when component hides on top of another (i.e. contextual menu) | I provide a codepen example showcasing the issue here,
https://codepen.io/ivalduan/pen/VwZpmMQ
1. The component on the screen tracks correctly a hover state of the mouse pointer
2. With the right button you create a contextual menu without covering the text and the hover state is correct when the mouse is over the menu
3. When you select and option of the contextual menu on top of the background component the second does not receive an onMouseEnter event and the hover state remains false when it should be true | Component: DOM,Type: Needs Investigation | low | Minor |
484,970,450 | youtube-dl | [FR] Splitting live stream into multiple parts | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check list in order to prevent the most common mistakes and misuse of youtube-dl:
- First of, make sure you are using the latest version of youtube-dl. Run `youtube-dl --version` and ensure your version is 2019.08.13. If it's not, see https://yt-dl.org/update on how to update. Issues with outdated version will be REJECTED.
- Search the bugtracker for similar feature requests: http://yt-dl.org/search-issues. DO NOT post duplicates.
- Finally, put x into all relevant boxes (like this [x])
-->
- [X] I'm reporting a feature request
- [X] I've verified that I'm running youtube-dl version **2019.08.13**
- [X] I've searched the bugtracker for similar feature requests including closed ones
## Description
<!--
Provide an explanation of your issue in an arbitrary form. Please make sure the description is worded well enough to be understood, see https://github.com/ytdl-org/youtube-dl#is-the-description-of-the-issue-itself-sufficient. Provide any additional information, suggested solution and as much context and examples as possible.
-->
It would be nice, when recording a very long livestream, to be able to save it periodically into multiple files. For example, we could create a new output file every hour (configurable) or when it exceeds a certain size (also configurable)
| request | low | Critical |
484,975,493 | godot | Default Environment lost after re-importing Assets | **Godot version:**
3.1.1 stable
**OS/device including version:**
linux (editor)
**Issue description:**
*project.godot* file has line `environment/default_environment="res://default_env.tres"`
after re-import Assets this line will be lost
**Steps to reproduce:**
remove *.import* folder from any Godot project, and reopen this project
example project has *default environment*, and it lost on load
**Minimal reproduction project:**
https://danilw.github.io/godot-utils-and-other/BUG_Environment/BUG_Environment.zip
| bug,topic:editor,confirmed | low | Critical |
484,987,117 | rust | No documentation about f32_runtime without std | Hi,
It seems like all the functions under `f32_runtime` don't work without std (https://doc.rust-lang.org/src/std/f32.rs.html#29-994)
I tried looking for documentation about this and didn't find anything concrete, and since the `core` docs don't have documentation for the primitives and only the `std` ones do it's hard to figure this out.
Some examples:
https://play.rust-lang.org/?gist=5aa47f506cd792cf58fbcd9f0219ef2b
According to: https://github.com/rust-lang/rust/issues/39473
It sounds like some of it may be on purpose? if so it's too bad but at least should be documented well | C-enhancement,T-libs-api,A-docs,A-floating-point | low | Minor |
484,994,424 | youtube-dl | new site support request for mediaamp.io | <!--
######################################################################
WARNING!
IGNORING THE FOLLOWING TEMPLATE WILL RESULT IN ISSUE CLOSED AS INCOMPLETE
######################################################################
-->
## Checklist
<!--
Carefully read and work through this check list in order to prevent the most common mistakes and misuse of youtube-dl:
- First of, make sure you are using the latest version of youtube-dl. Run `youtube-dl --version` and ensure your version is 2019.08.13. If it's not, see https://yt-dl.org/update on how to update. Issues with outdated version will be REJECTED.
- Make sure that all provided video/audio/playlist URLs (if any) are alive and playable in a browser.
- Make sure that site you are requesting is not dedicated to copyright infringement, see https://yt-dl.org/copyright-infringement. youtube-dl does not support such sites. In order for site support request to be accepted all provided example URLs should not violate any copyrights.
- Search the bugtracker for similar site support requests: http://yt-dl.org/search-issues. DO NOT post duplicates.
- Finally, put x into all relevant boxes (like this [x])
-->
- [x] I'm reporting a new site support request
- [x] I've verified that I'm running youtube-dl version **2019.08.13**
- [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.mediaamp.io/about/
- Single Video: source https://player.mediaamp.io/p/U8-EDC/f2EV94iatoa0/embed/select/media/n7T3h6gC_LRU?autoPlay=false
- Single video2: view-source:https://player.mediaamp.io/p/U8-EDC/HOo9GXupLYen/embed/select/media/lFbyKqAOo1qB?form=html
access the video content outside of the player will result in "This content is not available from this domain." error, but it is the case only for some videos
## Description
<!--
Provide any additional information.
If work on your issue requires account credentials please provide them or explain how one can obtain them.
-->
The video link can be extracted from page source, but access the video content outside of the player will result in "This content is not available from this domain." error, but it is the case only for some videos. It is the case in example 2.
- Single video: https://www.mediaamp.io/about/
- Single Video: source https://player.mediaamp.io/p/U8-EDC/f2EV94iatoa0/embed/select/media/n7T3h6gC_LRU?autoPlay=false
- Single video2: view-source:https://player.mediaamp.io/p/U8-EDC/HOo9GXupLYen/embed/select/media/lFbyKqAOo1qB?form=html
| site-support-request | low | Critical |
485,164,867 | go | encoding/json: unmarshalling null into non-nullable golang types | ### Does this issue reproduce with the latest release?
As of 1.12, yes.
### What did you do?
I unmarshalled `null` into an int, string, bool etc. (any non-nullable Golang type)
### What did you expect to see?
A type mismatch error, similar to if I'd unmarshalled a string into an int, or any other type mismatch.
### What did you see instead?
No error at all, unmarshalling 'succeeds' at deserialising `null` into my non-nullable type.
# Discussion
I'm aware of #2540 , I'm specifically arguing for the reversal of that decision. I'm aware the documentation says "Because null is often used in JSON to mean βnot present,β unmarshalling a JSON null into any other Go type has no effect on the value and produces no error.". I'm arguing against that behaviour.
#### 1.
The unmarshaller shouldn't have an opinion on what `null` "means", it should accurately map json types into their golang equivalents.
#### 2.
If I'm unmarshalling into a specific golang type, I've gone to the effort of statically defining the type that I expect. The unmarshaller should assist me, and reject any poorly typed input (which it does well for all types other than `null`). If I wanted to marshal into a nullable type, I would have specified a nullable type.
#### 3.
`myVar int` and `myVar *int` currently behave the same way when unmarshalling. In golang, an optional value is often implemented as a pointer, so I read these as "int" and "optional int", and I would expect them to behave differently.
#### 4.
Currently `json` struct tags using the standard library, and `db` struct tags using the standard library for sql behave differently. In the sql libraries, nullable types are explicit, and trying to unmarshal an sql `NULL` into a non-nullable type is an error. For sql, like my point 2 above, a pointer to a value can be used as a nullable version of that type.
#### ~5.~
~It is impossible for me to override this behaviour of the unmarshaller. Defining my own `type NoReallyIMeantInt int` doesn't help. Unmarshalling still succeeds, because the current code parses the `null` first, and returns early without looking at the Golang type. (It explicitly sets Interfaces, pointers, maps and slices to their zero values, and ignores all other types.)~
## Practicalities
I'm aware this decision was made a long time ago. Realistically, what are the chances that this will be fixed now? Is it a compatibility concern? Do we think people deliberately rely on the current unmarshalling behaviour of `null`? | NeedsDecision | low | Critical |
485,198,196 | pytorch | BCEWithLogitsLoss expects wrong shape of weight (#classes instead of batch size) | ## π Bug
BCEWithLogitsLoss and binary_cross_entropy_with_logits used with weights parameter throw a RuntimeError stating that the weight has wrong shape. According to the documentation
> weight (Tensor, optional) β a manual rescaling weight given to the loss of each batch element. If given, has to be a Tensor of size nbatch.
the weight should have `nbatch `entries but expects a vector of size `#classes`.
## To Reproduce
```
import torch
y = torch.randn((4,5))
pred = torch.randn((4,5))
weights = torch.rand((4))
crit = torch.nn.BCEWithLogitsLoss(weight=weights)
crit(pred, y)
```
Leads to
```
---------------------------------------------------------------------------
RuntimeError Traceback (most recent call last)
<ipython-input-14-5fdd39d2ae8b> in <module>
4 weights = torch.rand((4))
5 crit = torch.nn.BCEWithLogitsLoss(weight=weights)
----> 6 crit(pred, y)
RuntimeError: The size of tensor a (5) must match the size of tensor b (4) at non-singleton dimension 1
```
Same when calling `F.binary_cross_entropy_with_logits` directlt
## Expected behavior
Return weighted loss
## Environment
PyTorch version: 1.0.1
Is debug build: No
CUDA used to build PyTorch: None
OS: Microsoft Windows 10 Home
GCC version: Could not collect
CMake version: version 3.14.0
Python version: 3.7
Is CUDA available: No
CUDA runtime version: No CUDA
GPU models and configuration: No CUDA
Nvidia driver version: No CUDA
cuDNN version: No CUDA
Versions of relevant libraries:
[pip] numpy==1.16.3
[pip] torch==1.0.1
[pip] torchvision==0.2.2
[conda] blas 1.0 mkl
[conda] mkl 2019.3 203
[conda] mkl_fft 1.0.12 py37h14836fe_0
[conda] mkl_random 1.0.2 py37h343c172_0
[conda] pytorch-cpu 1.0.1 py3.7_cpu_1 pytorch
[conda] torchvision 0.2.2.post3 pypi_0 pypi
[conda] torchvision-cpu 0.2.2 py_3 pytorch | module: nn,module: loss,triaged | low | Critical |
485,237,748 | flutter | [iOS] add controller.print(String) to FlutterViewController | Allow us to print to Flutter's console with a FlutterViewController.print method. I am requesting this because I am not aware of any way to print to the Flutter console from within Swift on iOS.
eg
```swift
let printChannel = FlutterMethodChannel(name: "console", binaryMessenger: controller.binaryMessenger);
printChannel.invokeMethod("print", arguments: "1printyboiiiiiiiI!!!")
```
```dart
void main() {
MethodChannel("console").setMethodCallHandler((call) {
if (call.method == "print") {
print(call.arguments);
}
return;
});
runApp(_MyApp());
}
```
```
flutter: 1printyboiiiiiiiI!!!
``` | platform-ios,engine,c: proposal,P3,team-ios,triaged-ios | low | Minor |
485,270,433 | opencv | Maybe tidy up optical flow implementations | Currently, there are plenty of optical flow implementations in OpenCV, in different modules.
It's currently unclear if some of them are superseding others, if they are equivalent, if they are to be deprecated. They do not share either the same rules to create instances (sometimes through a factory, sometimes not).
Here is a summary of the current state (OpenCV 4.1.1)
-while the implementations are subclasses of cv::Algorithm, none of them is using the read/write parameters set abstraction
-two different implementation of the same opticalflow may not have the same parameters names or even the same parameters set (e.g. Farneback getIterations() vs getNumIters(), or getFastPyramids())
================== module VIDEO ==================
There are a few implementations here and there.
```
opencv/modules/video/tracking.hpp
class cv::DenseOpticalFlow : public cv::Algorithm
class cv::SparseOpticalFlow : public cv::Algorithm
class cv::FarnebackOpticalFlow : public cv::DenseOpticalFlow
factory : cv::Ptr<cv::FarnebackOpticalFlow> cv::FarnebackOpticalFlow::create()
class cv::VariationalRefinement : public cv::DenseOpticalFlow
factory : cv::Ptr<cv::VariationalRefinement> cv::VariationalRefinement::create()
class cv::DISOpticalFlow : public cv::DenseOpticalFlow
factory : cv::Ptr<cv::DISOpticalFlow> cv::DISOpticalFlow::create()
class cv::SparsePyrLKOpticalFlow: public cv::SparseOpticalFlow
factory : cv::Ptr<cv::SparsePyrLKOpticalFlow> cv::SparsePyrLKOpticalFlow::create()
```
There are only two shortcuts to avoid explicit instanciation. Should it be deprecated or extended to other implementations ?
```
void cv::calcOpticalFlowPyrLK() //{cv::SparsePyrLKOpticalFlow}
void cv::calcOpticalFlowFarneback() //{cv::FarnebackOpticalFlow}
```
-the cpp files where the implementations are dispatched do not really share the same name logic
```
opencv/modules/video/optflowgf.cpp:
cv::Ptr<cv::FarnebackOpticalFlow> cv::FarnebackOpticalFlow::create()
opencv/modules/video/variational_Refinement.cpp:
cv::Ptr<cv::VariationalRefinement> cv::VariationalRefinement::create()
opencv/modules/video/dis_flow.cpp:
cv::Ptr<cv::DISOpticalFlow> cv::DISOpticalFlow::create()
opencv/modules/video/lkpyramid.cpp:
cv::calcOpticalFlowPyrLK() {cv::SparsePyrLKOpticalFlow}
cv::Ptr<cv::SparsePyrLKOpticalFlow> cv::SparsePyrLKOpticalFlow::create()
```
================== module CUDAOPTFLOW ==================
the cudaoptflow module treats all the implementations the same way, it is very convenient.
```
opencv_contrib/modules/cudaoptflow/cudaoptflow.hpp
class cv::cuda::DenseOpticalFLow
class cv::cuda::SparseOpticalFlow
class cv::cuda::NvidiaHWOpticalFlow : public cv::Algorithm
class cv::cuda::NvidiaOpticalFlow_1_0 : public cv::cuda::NvidiaHWOpticalFlow
factory ; cv::cuda::NvidiaOpticalFlow_1_0::create()
class cv::cuda::BroxOpticalFlow: public cv::cuda::DenseOpticalFLow
factory ; cv::Ptr<cv::cuda::BroxOpticalFlow> cv::cuda::BroxOpticalFlow::create()
class cv::cuda::SparsePyrLKOpticalFlow: public cv::cuda:: SparseOpticalFlow
factory ; cv::Ptr<cv::cuda::SparsePyrLKOpticalFlow> cv::cuda::SparsePyrLKOpticalFlow::create()
class cv::cuda::DensePyrLKOpticalFlow: public cv::cuda:: DenseOpticalFlow
factory ; cv::Ptr<cv::cuda::DensePyrLKOpticalFlow> cv::cuda::DensePyrLKOpticalFlow::create()
class cv::cuda::FarnebackOpticalFlow: public cv::cuda:: DenseOpticalFlow
factory ; cv::Ptr<cv::cuda::FarnebackOpticalFlow> cv::cuda::FarnebackOpticalFlow::create()
class cv::cuda::OpticalFlowDual_TVL1: public cv::cuda:: DenseOpticalFlow
factory ; cv::Ptr<cv::cuda::FarnebackOpticalFlow> cv::cuda::FarnebackOpticalFlow::create()
```
================== module OPTFLOW ==================
Contrary to other modules, the implementations are most of the time private, under a cv::DenseOpticalFlow type.
```
opencv_contrib/modules/optflow/optflow.hpp
cv::Ptr<cv::DenseOpticalFlow> cv::optflow::createOptFlow_DeepFlow();
cv::Ptr<cv::DenseOpticalFlow> cv::optflow::createOptFlow_SimpleFlow();
cv::Ptr<cv::DenseOpticalFlow> cv::optflow::createOptFlow_FarnebackFlow();
cv::Ptr<cv::DenseOpticalFlow> cv::optflow::createOptFlow_SparseToDenseFlow();
```
For some reason, the DualTVL1OpticalFlow is public, with a static factory, in this header file :
```
class cv::optflow::DualTVL1OpticalFlow : public cv::DenseOpticalFlow
factory : cv::Ptr<cv::optflow::DualTVL1OpticalFlow> create()
```
There are only two shorcuts to avoid explicit instanciation
```
void cv::optflow::calcOpticalFlowSF()
void cv::optflow::calcOpticalSparseToDense()
```
There is a public header for OpticalFlowPCAFlow , but the creation does not use a static create() factory function :
```
opencv_contrib/modules/optflow/pcaflow.hpp
public cv::optflow::OpticalFlowPCAFlow : public cv::DenseOpticalFlow
no create()
cv::Ptr<cv::DenseOpticalFlow> cv::optflow::createOptFlow_PCAFlow()
```
There is a public header for RLOFOpticalFlow , and there is a static create() factory function :
```
opencv_contrib/modules/optflow/rlofflow.hpp
cv::optflow::DenseRLOFOpticalFlow : public cv::DenseOpticalFlow
cv::Ptr<cv::optflow::DenseRLOFOpticalFlow> cv::optflow::DenseRLOFOpticalFlow::create()
cv::optflow::SparseRLOFOpticalFlow : public cv::SparseOpticalFlow
cv::Ptr<cv::optflow::SparseRLOFOpticalFlow> cv::optflow::SparseRLOFOpticalFlow::create()
```
For some reason, there is an alias factory function for those ones :
```
cv::ptr<cv::DenseOpticalFlow> cv::optflow::createOptFlow_DenseRLOF() {cv::optflow::DenseRLOFOpticalFlow::create();}
cv::ptr<cv::SparseOpticalFlow> cv::optflow::createOptFlow_SparseRLOF() {cv::optflow::SparseRLOFOpticalFlow::create();}
```
And there are shorcuts for those ones :
```
cv::optflow::calcOpticalFlowDenseRLOF()
cv::optflow::calcOpticalFlowSparseRLOF()
```
Deepflow, simpleflow, Farneback are private with no public way to instanciate them :
```
opencv_contrib/modules/optflow/deepflow.cpp
class cv::optflow::OpticalFlowDeepFlow: public cv::DenseOpticalFlow
opencv_contrib/modules/optflow/simpleflow.cpp
no class
opencv_contrib/modules/optflow/interfaces.cpp
class cv::optflow::OpticalFlowSimpleFlow : public cv::DenseOpticalFlow
no create()
class cv::optflow::OpticalFlowFarneback : public cv::DenseOpticalFlow
no create()
class cv::optflow::OpticalFlowSparseToDense : public cv::DenseOpticalFlow
no create()
```
DualTVL1 is also private, but there is a also private factory :
```
opencv_contrib/modules/optflow/tvl1flow.cpp
class cv::optflow::OpticalFlowDual_TVL1 : public cv::DualTVL1OpticalFlow
cv::Ptr<DualTVL1OpticalFlow> cv::DualTVL1OpticalFlow::create()
```
================== module SUPERRES ==================
In this module, there is a public interface, which can hide specific implemenations.
Like in the the cudaoptflow module, it treats all the implementations the same way, it is very convenient. But it is not the same logic as in cudaoptflow. Should it be made uniform ?
opencv_contrib/modules/superres/optical_flow.hpp
class cv::superres::DenseOpticalFlowExt : public cv::Algorithm
class cv::superres::FarnebackOpticalFlow : public cv::superres::DenseOpticalFlowExt
cv::Ptr<cv::superres::FarnebackOpticalFlow> cv::superres::createOptFlow_Farneback();
cv::Ptr<cv::superres::FarnebackOpticalFlow> cv::superres::createOptFlow_Farneback_CUDA();
class cv::superres::DualTVL1OpticalFlow : public cv::superres::DenseOpticalFlowExt
cv::Ptr<cv::superres::DualTVL1OpticalFlow> cv::superres::createOptFlow_DualTVL1();
cv::Ptr<cv::superres::DualTVL1OpticalFlow> cv::superres::createOptFlow_DualTVL1_CUDA();
class cv::superres::BroxOpticalFlow : public cv::superres::DenseOpticalFlowExt
cv::Ptr<cv::superres::BroxOpticalFlow> cv::superres::createOptFlow_Brox_CUDA();
class cv::superres::PyrLKOpticalFlow : public cv::superres::DenseOpticalFlowExt
cv::Ptr<cv::superres::PyrLKOpticalFlow> cv::superres::createOptFlow_PyrLK_CUDA();
| category: video,RFC | low | Minor |
485,329,846 | node | Different behavior of async_hooks between Node 10 and 12 version | * **Version**: v10.16.3 and v12.9.0
* **Platform**: 4.15.0-58-generic #64~16.04.1-Ubuntu x86_64 GNU/Linux
* **Subsystem**: async_hooks
Hello,
I've come into an issue while testing simple CLS storage using async_hooks. On Node 10 following code works correctly and execution context can be followed, but after upgrading to Node 12 it will fail with assertion error and I'm not able to follow promise execution.
### Test code
```js
const AsyncHooks = require('async_hooks');
const Fs = require('fs');
const Assert = require('assert');
const ctx = new Map();
const hook = AsyncHooks.createHook({
init(asyncId, type, triggerAsyncId) {
log(`${type}(${asyncId}):`, 'trigger:', triggerAsyncId, 'execution:', AsyncHooks.executionAsyncId());
if (ctx.has(triggerAsyncId)) {
ctx.set(asyncId, ctx.get(triggerAsyncId));
}
},
destroy(asyncId) {
log(`destroy(${asyncId}):`, 'trigger:', AsyncHooks.triggerAsyncId(), 'execution:', AsyncHooks.executionAsyncId());
ctx.delete(asyncId);
},
promiseResolve(asyncId) {
log(`resolve(${asyncId}):`, 'trigger:', AsyncHooks.triggerAsyncId(), 'execution:', AsyncHooks.executionAsyncId());
ctx.delete(asyncId);
}
});
(async () => {
hook.enable();
const context = 888;
scope(context);
await async();
Assert.equal(get(), undefined);
async function async() {
Assert.equal(get(), context);
const nestedContext = 999;
scope(nestedContext);
Assert.equal(get(), nestedContext);
await async2(nestedContext);
Assert.equal(get(), context);
}
async function async2(nestedContext) {
Assert.equal(get(), nestedContext);
await Promise.resolve();
Assert.equal(get(), nestedContext);
}
})();
function scope(context) {
ctx.set(AsyncHooks.executionAsyncId(), context);
}
function get() {
return ctx.get(AsyncHooks.executionAsyncId());
}
function log(...args) {
Fs.writeSync(1, args.join(' '));
Fs.writeSync(1, '\n');
}
```
### Node 10 output
```
PROMISE(5): trigger: 1 execution: 1
PROMISE(6): trigger: 1 execution: 1
PROMISE(7): trigger: 1 execution: 1
resolve(7): trigger: 0 execution: 1
PROMISE(8): trigger: 6 execution: 1
PROMISE(9): trigger: 8 execution: 1
resolve(8): trigger: 0 execution: 1
PROMISE(10): trigger: 5 execution: 1
PROMISE(11): trigger: 10 execution: 1
resolve(10): trigger: 0 execution: 1
PROMISE(13): trigger: 12 execution: 1
PROMISE(14): trigger: 13 execution: 1
resolve(13): trigger: 0 execution: 1
PROMISE(15): trigger: 7 execution: 1
PROMISE(16): trigger: 6 execution: 1
PROMISE(17): trigger: 5 execution: 1
resolve(8): trigger: 7 execution: 15
resolve(15): trigger: 7 execution: 15
resolve(6): trigger: 8 execution: 9
resolve(9): trigger: 8 execution: 9
resolve(10): trigger: 6 execution: 16
resolve(16): trigger: 6 execution: 16
resolve(5): trigger: 10 execution: 11
resolve(11): trigger: 10 execution: 11
resolve(13): trigger: 5 execution: 17
resolve(17): trigger: 5 execution: 17
resolve(12): trigger: 13 execution: 14
resolve(14): trigger: 13 execution: 14
```
### Node 12 output
```
PROMISE(2): trigger: 1 execution: 1
PROMISE(3): trigger: 1 execution: 1
PROMISE(4): trigger: 1 execution: 1
resolve(4): trigger: 0 execution: 1
PROMISE(5): trigger: 4 execution: 1
PROMISE(6): trigger: 3 execution: 1
PROMISE(7): trigger: 2 execution: 1
TTYWRAP(8): trigger: 5 execution: 5
SIGNALWRAP(9): trigger: 5 execution: 5
resolve(3): trigger: 4 execution: 5
resolve(5): trigger: 4 execution: 5
resolve(2): trigger: 3 execution: 6
resolve(6): trigger: 3 execution: 6
resolve(10): trigger: 2 execution: 7
resolve(7): trigger: 2 execution: 7
TickObject(11): trigger: 1 execution: 1
TickObject(12): trigger: 1 execution: 1
TickObject(13): trigger: 1 execution: 1
(node:32753) UnhandledPromiseRejectionWarning: AssertionError [ERR_ASSERTION]: undefined == 999
at async2 (/home/jan/Documents/CODE/tuma-test/migration/async-hooks/hooks.js:42:16)
at async async (/home/jan/Documents/CODE/tuma-test/migration/async-hooks/hooks.js:35:9)
at async /home/jan/Documents/CODE/tuma-test/migration/async-hooks/hooks.js:27:5
TickObject(14): trigger: 11 execution: 11
(node:32753) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
TickObject(15): trigger: 12 execution: 12
(node:32753) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
TickObject(16): trigger: 13 execution: 13
destroy(11): trigger: 0 execution: 0
destroy(12): trigger: 0 execution: 0
destroy(13): trigger: 0 execution: 0
destroy(14): trigger: 0 execution: 0
destroy(15): trigger: 0 execution: 0
destroy(16): trigger: 0 execution: 0
``` | async_hooks | low | Critical |
485,332,913 | flutter | Decide on a strategy for macOS application name handling | Currently if you want to correctly change the display name of the macOS example app in FDE you have to change it in a whole lot of places (various XIB items, build settings, project settings, etc.). That's not viable for a long-term approachβwe could populate all of these correctly during initial template creation, but renaming later would be very messy. Before making this into a template we should figure out how we want to manage this; it should require as few edits as possible.
Some things to consider:
- Have the application delegate (which doesn't yet exist) default to walking a known list of menubar items and replacing a placeholder with a runtime string.
- Have the template's window controller to the same with the window title.
- Adding a `pubspec.yaml` entry that we could use to populate a build flag that's set in the xcconfigs. | tool,platform-mac,a: desktop,P3,team-macos,triaged-macos | low | Minor |
485,337,788 | go | x/net/http2: TestServer_Rejects_TLSBadCipher fails on OpenBSD arm | Example from https://build.golang.org/log/791d55e2cf7e2f96ac6ad20f561477a0f401c861
See https://build.golang.org/?repo=golang.org%2fx%2fnet for more instances
```
--- FAIL: TestServer_Rejects_TLSBadCipher (0.05s)
server_test.go:549: got a *http2.SettingsFrame; want *GoAwayFrame
server_test.go:235: Framer read log:
2019-08-21 14:37:42.791078336 Framer 0xc29d80: read SETTINGS len=24, settings: MAX_FRAME_SIZE=1048576, MAX_CONCURRENT_STREAMS=250, MAX_HEADER_LIST_SIZE=1048896, INITIAL_WINDOW_SIZE=1048576
FAIL
FAIL golang.org/x/net/http2 74.768s
```
@FiloSottile | Testing,OS-OpenBSD,NeedsFix | low | Minor |
485,352,062 | flutter | CupertinoSliverNavigationBar doesn't become compact in landscape mode | While it is okay for CupertinoSliverNavigationBar to be "large" in portrait mode (and becoming small as the user scrolls down), it should always stay small in landscape mode.
This could be easily solvable if a parameter controlling the size was present in the constructor (so it could be wrapped in a OrientationBuilder), but this is not the case.
This is how it should look like:

This is what it actually looks like:

_I would like to propose a fix:_
Expose the `large` property of `_NavigationBarStaticComponents` and have the `_CupertinoSliverNavigationBarState` use a OrientationBuilder to manipulate this property as needed.
| framework,a: fidelity,f: cupertino,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-design,triaged-design | low | Major |
485,370,081 | rust | Isolate llvm's C++ symbols in distibution binaries? | [MIRAI](https://github.com/facebookexperimental/MIRAI) is an abstract interpreter for MIR. It uses the [Z3 theorem prover](https://github.com/Z3Prover/z3) as part of its implementation. Z3 uses C++, and is often used precompiled.
MIRAI also links against rustc. This means that Z3's C++ library conflicts with the libstdc++ linked into rustc (well, libLLVM I think). At best this generates GB of linker errors, at worst something that seems to build but behaves erratically at runtime.
Is there some way to hide all llvm's C++ symbols so that it just becomes an internal implementation details, and a second libstdc++ can coexist in the same address space? Alternatively could it be distributed with a shared libstdc++ so that llvm and Z3 are using a common library?
I can solve this by building everything from source against the same libstdc++, but its a large burden to build rustc from source just to use MIRAI.
cc @hermanventer @alexcrichton | A-linkage,A-LLVM,C-enhancement,T-compiler | low | Critical |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.