text1
stringlengths
0
536k
text2
stringlengths
0
536k
label
int64
0
1
<ul dir="auto"> <li>Electron version: 1.6.10</li> <li>Operating system: Windows 10</li> </ul> <h3 dir="auto">Expected behavior</h3> <h3 dir="auto">Actual behavior</h3> <h3 dir="auto">How to reproduce</h3> <p dir="auto">Tray works in development, but once I run build and install the app, tray doesn't work.</p> <p dir="auto">$ git clone <a href="https://github.com/ehguo/ZenFocus">https://github.com/ehguo/ZenFocus</a> -b tray<br> $ yarn<br> $ yarn run package-win</p> <p dir="auto">Installer found in the "release" folder in root directory</p> <p dir="auto">$ yarn run dev<br> will confirm that it works in development.</p> <p dir="auto">Relevant files can be found in <code class="notranslate">app/electron/tray/index.js</code> and <code class="notranslate">app/main.dev.js</code> (very last line)</p>
<p dir="auto"><a href="http://electron.atom.io/" rel="nofollow">http://electron.atom.io/</a> mentions <code class="notranslate">npm install &amp;&amp; npm run</code>, but <code class="notranslate">npm run</code> is not a thing :) Should be changed to <code class="notranslate">npm start</code>.</p>
0
<p dir="auto">After <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="818258641" data-permission-text="Title is private" data-url="https://github.com/apache/airflow/issues/14531" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/14531/hovercard" href="https://github.com/apache/airflow/pull/14531">#14531</a> we are running the CI infrastructiure of ours using <code class="notranslate">r5a.2xlarge</code> machines. They are needed for tests (thanks to having 8xCPUs and 64 GB RAM we can run full suite of tests in 15 minutes instead of 1h by running the tests in parallel. Likely (due to ~ 2x less cost of running tests (2x more price/ 4x less time) we are saving money. We also achieve 30%-40% speedups on Pylint, Static Checks (thanks to 8 CPUS available).</p> <p dir="auto">However not all jobs can use the memory/parallelism and we can use much cheaper machines without impacting CI execution time:</p> <ul dir="auto"> <li> <p dir="auto">Docs (not yet but possible)</p> </li> <li> <p dir="auto">K8S tests (not yet but possible)</p> </li> <li> <p dir="auto">Building Images</p> </li> <li> <p dir="auto">Providers building and testing</p> </li> <li> <p dir="auto">Image verification</p> </li> <li> <p dir="auto">Image waiting (this one is particularly wasteful)</p> </li> </ul> <p dir="auto">By introducing a smaller type of machines and assigning the "big" machine type only to the jobs that can utilise higher we can drive the cost down significantly.</p> <p dir="auto">Small machine = r5a.large with 2 CPUs and 16GB memory should likely be enough</p> <p dir="auto">Spot Price in Frankfurt:</p> <p dir="auto">r5.2xlarge = $0.1549 per Hour<br> r5a.large = $0.0365 per Hour</p> <p dir="auto">This means that for non-test jobs we can have further 4 x smaller cost if we do it.</p>
<p dir="auto">Greenplum DB is a popular open source relational DBMS[1].</p> <p dir="auto">I want to implement some database specific behaviour for a common class. It's easy to check connection type for postgres, mysql or oracle. Now I use postgres connection type for Greenplum and cannot explicitly check type.</p> <p dir="auto">Airflow has <code class="notranslate">PostgresHook</code> based on <code class="notranslate">psycopg2</code>. As Greenplum supports PostgreSQL libpq API [2], <code class="notranslate">PostgresHook</code> could be reused for Greenplum.</p> <p dir="auto">As I see it's enough to change 2 code line in the <code class="notranslate">connectoin.py</code>.</p> <p dir="auto">I'm not sure that it's nice to reuse <code class="notranslate">Hook</code>.<br> Please confirm or reject my idea.</p> <div class="highlight highlight-source-diff notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Index: airflow/models/connection.py =================================================================== --- airflow/models/connection.py (revision 6416d898060706787861ff8ecbc4363152a35f45) +++ airflow/models/connection.py (date 1598717245079) @@ -109,6 +109,7 @@ ('grpc', 'GRPC Connection'), ('yandexcloud', 'Yandex Cloud'), ('spark', 'Spark'), + ('greenplum', 'Greenplum'), ] def __init__( @@ -243,7 +244,7 @@ elif self.conn_type == 'google_cloud_platform': from airflow.contrib.hooks.bigquery_hook import BigQueryHook return BigQueryHook(bigquery_conn_id=self.conn_id) - elif self.conn_type == 'postgres': + elif self.conn_type in ('postgres', 'greenplum'): from airflow.hooks.postgres_hook import PostgresHook return PostgresHook(postgres_conn_id=self.conn_id) elif self.conn_type == 'pig_cli':"><pre class="notranslate">Index: airflow/models/connection.py <span class="pl-ms">===================================================================</span> <span class="pl-md">--- airflow/models/connection.py (revision 6416d898060706787861ff8ecbc4363152a35f45)</span> <span class="pl-mi1">+++ airflow/models/connection.py (date 1598717245079)</span> <span class="pl-mdr">@@ -109,6 +109,7 @@</span> ('grpc', 'GRPC Connection'), ('yandexcloud', 'Yandex Cloud'), ('spark', 'Spark'), <span class="pl-mi1"><span class="pl-mi1">+</span> ('greenplum', 'Greenplum'),</span> ] def __init__( <span class="pl-mdr">@@ -243,7 +244,7 @@</span> elif self.conn_type == 'google_cloud_platform': from airflow.contrib.hooks.bigquery_hook import BigQueryHook return BigQueryHook(bigquery_conn_id=self.conn_id) <span class="pl-md"><span class="pl-md">-</span> elif self.conn_type == 'postgres':</span> <span class="pl-mi1"><span class="pl-mi1">+</span> elif self.conn_type in ('postgres', 'greenplum'):</span> from airflow.hooks.postgres_hook import PostgresHook return PostgresHook(postgres_conn_id=self.conn_id) elif self.conn_type == 'pig_cli':</pre></div> <hr> <ol dir="auto"> <li><a href="https://github.com/greenplum-db/gpdb">https://github.com/greenplum-db/gpdb</a></li> <li><a href="https://gpdb.docs.pivotal.io/6-10/security-guide/topics/ports_and_protocols.html" rel="nofollow">https://gpdb.docs.pivotal.io/6-10/security-guide/topics/ports_and_protocols.html</a></li> </ol>
0
<h3 dir="auto">System information</h3> <ul dir="auto"> <li><strong>Have I written custom code (as opposed to using a stock example script provided in TensorFlow)</strong>: Yes</li> <li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04)</strong>: Mac OS X 10.11.6</li> <li><strong>TensorFlow installed from (source or binary)</strong>: binary</li> <li><strong>TensorFlow version (use command below)</strong>: 1.3.0</li> <li><strong>Python version</strong>: 3.5.2</li> <li><strong>Bazel version (if compiling from source)</strong>:</li> <li><strong>CUDA/cuDNN version</strong>:</li> <li><strong>GPU model and memory</strong>:</li> <li><strong>Exact command to reproduce</strong>:</li> </ul> <h3 dir="auto">Describe the problem</h3> <p dir="auto">It seems that the same feature column creates two tensors for <code class="notranslate">DNNLinearCombinedRegressor</code> (see <code class="notranslate">voc_embed</code> in graph below). Is this the right behavior we expected?</p> <p dir="auto">The behavior stems from that feature column is processed by DNN and Linear independently, see code: <a href="https://github.com/tensorflow/tensorflow/blob/b46340f40fe5e2ec9bfcd385b07cfb914055fb51/tensorflow/python/estimator/canned/dnn_linear_combined.py#L154">dnn</a> and <a href="https://github.com/tensorflow/tensorflow/blob/b46340f40fe5e2ec9bfcd385b07cfb914055fb51/tensorflow/python/estimator/canned/dnn_linear_combined.py#L196">linear</a></p> <h3 dir="auto">Source code / logs</h3> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# coding: utf-8 import tensorflow as tf from tensorflow import feature_column as fc f = fc.embedding_column( fc.categorical_column_with_vocabulary_list(&quot;voc&quot;, [&quot;a&quot;, &quot;b&quot;]), dimension=8) e = tf.estimator.DNNLinearCombinedRegressor( model_dir=&quot;/tmp/tf/test_dnn&quot;, linear_feature_columns=[f], dnn_feature_columns=[f], dnn_hidden_units=[10]) def input_fn(): return ({&quot;voc&quot;: tf.identity( tf.constant([&quot;a&quot;, &quot;b&quot;, &quot;a&quot;], name=&quot;voc_input&quot;), name=&quot;identity&quot;)}, tf.constant([1, 0, 1])) e.train(input_fn, steps=10)"><pre class="notranslate"><span class="pl-c"># coding: utf-8</span> <span class="pl-k">import</span> <span class="pl-s1">tensorflow</span> <span class="pl-k">as</span> <span class="pl-s1">tf</span> <span class="pl-k">from</span> <span class="pl-s1">tensorflow</span> <span class="pl-k">import</span> <span class="pl-s1">feature_column</span> <span class="pl-k">as</span> <span class="pl-s1">fc</span> <span class="pl-s1">f</span> <span class="pl-c1">=</span> <span class="pl-s1">fc</span>.<span class="pl-en">embedding_column</span>( <span class="pl-s1">fc</span>.<span class="pl-en">categorical_column_with_vocabulary_list</span>(<span class="pl-s">"voc"</span>, [<span class="pl-s">"a"</span>, <span class="pl-s">"b"</span>]), <span class="pl-s1">dimension</span><span class="pl-c1">=</span><span class="pl-c1">8</span>) <span class="pl-s1">e</span> <span class="pl-c1">=</span> <span class="pl-s1">tf</span>.<span class="pl-s1">estimator</span>.<span class="pl-v">DNNLinearCombinedRegressor</span>( <span class="pl-s1">model_dir</span><span class="pl-c1">=</span><span class="pl-s">"/tmp/tf/test_dnn"</span>, <span class="pl-s1">linear_feature_columns</span><span class="pl-c1">=</span>[<span class="pl-s1">f</span>], <span class="pl-s1">dnn_feature_columns</span><span class="pl-c1">=</span>[<span class="pl-s1">f</span>], <span class="pl-s1">dnn_hidden_units</span><span class="pl-c1">=</span>[<span class="pl-c1">10</span>]) <span class="pl-k">def</span> <span class="pl-en">input_fn</span>(): <span class="pl-k">return</span> ({<span class="pl-s">"voc"</span>: <span class="pl-s1">tf</span>.<span class="pl-en">identity</span>( <span class="pl-s1">tf</span>.<span class="pl-en">constant</span>([<span class="pl-s">"a"</span>, <span class="pl-s">"b"</span>, <span class="pl-s">"a"</span>], <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">"voc_input"</span>), <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">"identity"</span>)}, <span class="pl-s1">tf</span>.<span class="pl-en">constant</span>([<span class="pl-c1">1</span>, <span class="pl-c1">0</span>, <span class="pl-c1">1</span>])) <span class="pl-s1">e</span>.<span class="pl-en">train</span>(<span class="pl-s1">input_fn</span>, <span class="pl-s1">steps</span><span class="pl-c1">=</span><span class="pl-c1">10</span>)</pre></div> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1112263/30632078-63853988-9e19-11e7-94c8-c660c6ed55e2.png"><img src="https://user-images.githubusercontent.com/1112263/30632078-63853988-9e19-11e7-94c8-c660c6ed55e2.png" alt="graph-large_attrs_key _too_large_attrs limit_attr_size 1024 run 1" style="max-width: 100%;"></a></p>
<h3 dir="auto">Environment info</h3> <p dir="auto">Operating System:<br> OS 10.10.5</p> <p dir="auto">Installed version of CUDA and cuDNN:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ ls -l /usr/local/cuda/lib/libcud* -rwxr-xr-x 1 root wheel 8280 Apr 13 01:02 /usr/local/cuda/lib/libcuda.dylib lrwxr-xr-x 1 root wheel 45 Apr 13 01:03 /usr/local/cuda/lib/libcudadevrt.a -&gt; /Developer/NVIDIA/CUDA-7.5/lib/libcudadevrt.a lrwxr-xr-x 1 root wheel 50 Apr 13 01:03 /usr/local/cuda/lib/libcudart.7.5.dylib -&gt; /Developer/NVIDIA/CUDA-7.5/lib/libcudart.7.5.dylib lrwxr-xr-x 1 root wheel 46 Apr 13 01:03 /usr/local/cuda/lib/libcudart.dylib -&gt; /Developer/NVIDIA/CUDA-7.5/lib/libcudart.dylib lrwxr-xr-x 1 root wheel 49 Apr 13 01:03 /usr/local/cuda/lib/libcudart_static.a -&gt; /Developer/NVIDIA/CUDA-7.5/lib/libcudart_static.a -rwxr-xr-x@ 1 production204 staff 60108616 Feb 8 2016 /usr/local/cuda/lib/libcudnn.4.dylib lrwxr-xr-x 1 root admin 47 Aug 29 18:08 /usr/local/cuda/lib/libcudnn.5.dylib -&gt; /Developer/NVIDIA/CUDA-7.5/lib/libcudnn.5.dylib lrwxr-xr-x 1 root admin 45 Aug 29 18:08 /usr/local/cuda/lib/libcudnn.dylib -&gt; /Developer/NVIDIA/CUDA-7.5/lib/libcudnn.dylib -rw-r--r--@ 1 production204 staff 59311504 Feb 8 2016 /usr/local/cuda/lib/libcudnn_static.a"><pre class="notranslate"><code class="notranslate">$ ls -l /usr/local/cuda/lib/libcud* -rwxr-xr-x 1 root wheel 8280 Apr 13 01:02 /usr/local/cuda/lib/libcuda.dylib lrwxr-xr-x 1 root wheel 45 Apr 13 01:03 /usr/local/cuda/lib/libcudadevrt.a -&gt; /Developer/NVIDIA/CUDA-7.5/lib/libcudadevrt.a lrwxr-xr-x 1 root wheel 50 Apr 13 01:03 /usr/local/cuda/lib/libcudart.7.5.dylib -&gt; /Developer/NVIDIA/CUDA-7.5/lib/libcudart.7.5.dylib lrwxr-xr-x 1 root wheel 46 Apr 13 01:03 /usr/local/cuda/lib/libcudart.dylib -&gt; /Developer/NVIDIA/CUDA-7.5/lib/libcudart.dylib lrwxr-xr-x 1 root wheel 49 Apr 13 01:03 /usr/local/cuda/lib/libcudart_static.a -&gt; /Developer/NVIDIA/CUDA-7.5/lib/libcudart_static.a -rwxr-xr-x@ 1 production204 staff 60108616 Feb 8 2016 /usr/local/cuda/lib/libcudnn.4.dylib lrwxr-xr-x 1 root admin 47 Aug 29 18:08 /usr/local/cuda/lib/libcudnn.5.dylib -&gt; /Developer/NVIDIA/CUDA-7.5/lib/libcudnn.5.dylib lrwxr-xr-x 1 root admin 45 Aug 29 18:08 /usr/local/cuda/lib/libcudnn.dylib -&gt; /Developer/NVIDIA/CUDA-7.5/lib/libcudnn.dylib -rw-r--r--@ 1 production204 staff 59311504 Feb 8 2016 /usr/local/cuda/lib/libcudnn_static.a </code></pre></div> <ol dir="auto"> <li>The output from <code class="notranslate">python -c "import tensorflow; print(tensorflow.__version__)"</code>.<br> (can't get that far, but i'm using 0.10)</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; import tensorflow I tensorflow/stream_executor/dso_loader.cc:108] successfully opened CUDA library libcublas.dylib locally I tensorflow/stream_executor/dso_loader.cc:108] successfully opened CUDA library libcudnn.dylib locally I tensorflow/stream_executor/dso_loader.cc:108] successfully opened CUDA library libcufft.dylib locally Segmentation fault: 11 "><pre class="notranslate"><code class="notranslate">&gt;&gt;&gt; import tensorflow I tensorflow/stream_executor/dso_loader.cc:108] successfully opened CUDA library libcublas.dylib locally I tensorflow/stream_executor/dso_loader.cc:108] successfully opened CUDA library libcudnn.dylib locally I tensorflow/stream_executor/dso_loader.cc:108] successfully opened CUDA library libcufft.dylib locally Segmentation fault: 11 </code></pre></div> <p dir="auto">If installed from source, provide</p> <ol dir="auto"> <li>The commit hash (<code class="notranslate">git rev-parse HEAD</code>)</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="4c49dbebef05442c7e72d6129a30574fcd13f0e1"><pre class="notranslate"><code class="notranslate">4c49dbebef05442c7e72d6129a30574fcd13f0e1 </code></pre></div> <ol dir="auto"> <li>The output of <code class="notranslate">bazel version</code></li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ bazel version Build label: 0.3.1-homebrew Build target: bazel-out/local-fastbuild/bin/src/main/java/com/google/devtools/build/lib/bazel/BazelServer_deploy.jar Build time: Thu Aug 4 09:59:58 2016 (1470304798) Build timestamp: 1470304798 Build timestamp as int: 1470304798"><pre class="notranslate"><code class="notranslate">$ bazel version Build label: 0.3.1-homebrew Build target: bazel-out/local-fastbuild/bin/src/main/java/com/google/devtools/build/lib/bazel/BazelServer_deploy.jar Build time: Thu Aug 4 09:59:58 2016 (1470304798) Build timestamp: 1470304798 Build timestamp as int: 1470304798 </code></pre></div> <h3 dir="auto">If possible, provide a minimal reproducible example (We usually don't have time to read hundreds of lines of your code)</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ bazel build -c opt --config=cuda //tensorflow/cc:tutorials_example_trainer ERROR: no such package '@local_config_cuda//crosstool': BUILD file not found on package path. ERROR: no such package '@local_config_cuda//crosstool': BUILD file not found on package path. INFO: Elapsed time: 0.076s "><pre class="notranslate"><code class="notranslate">$ bazel build -c opt --config=cuda //tensorflow/cc:tutorials_example_trainer ERROR: no such package '@local_config_cuda//crosstool': BUILD file not found on package path. ERROR: no such package '@local_config_cuda//crosstool': BUILD file not found on package path. INFO: Elapsed time: 0.076s </code></pre></div> <h3 dir="auto">What other attempted solutions have you tried?</h3> <ul dir="auto"> <li>Downgrading to cuDNN4, switching between 4 and 5</li> <li>Re-installing bazel</li> <li>Modifying CROSSTOOL file according to various threads</li> <li>Manually linking CUDA libraries during <code class="notranslate">./configure</code> to not use symlinked libraries</li> <li>Various other hacks over the last week <g-emoji class="g-emoji" alias="sob" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f62d.png">😭</g-emoji></li> </ul>
0
<h4 dir="auto">Challenge Name</h4> <h4 dir="auto">Issue Description</h4> <h4 dir="auto">Browser Information</h4> <ul dir="auto"> <li>Browser Name, Version:</li> <li>Operating System:</li> <li>Mobile, Desktop, or Tablet:</li> </ul> <h4 dir="auto">Your Code</h4> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" "><pre class="notranslate"> </pre></div> <h4 dir="auto">Screenshot</h4>
<p dir="auto">In all the exercises, we the users are forced to press the enter key before writing any code.</p> <hr> <h4 dir="auto">Update:</h4> <p dir="auto">We have locked the conversation temporarily on this thread to collaborators only, this has been resolved in staging, and will be live soon.</p> <p dir="auto">The fix can be confirmed on the beta website.</p> <p dir="auto">The workaround currently on production website is:<br> Press the <kbd>Enter</kbd> key on the challenge editor and then proceed with the challenge.</p> <p dir="auto">Apologies for the inconvenience meanwhile.</p> <p dir="auto">Reach us in the chat room if you need any assistance.</p>
1
<p dir="auto">If you don't set the title property of a MaterialApp, it will display as null.</p> <h2 dir="auto">Steps to Reproduce</h2> <p dir="auto">Create a new MaterialApp and do not set the title of the app in the constructor. On Android, if you do this, run the app, and then view it in the list of open applications, it will show "null" as the title.</p>
<h2 dir="auto">Steps to Reproduce</h2> <p dir="auto">No error is happening, although, when you omit the <code class="notranslate">title</code> property of <code class="notranslate">MaterialApp</code>, when you click the app drawer, the title of the app appears as <code class="notranslate">null</code>.</p> <p dir="auto">I initially got that error because I was setting the title in <code class="notranslate">Scaffold</code> --&gt; <code class="notranslate">AppBar</code>, which is most likely incorrect. After reporting this on gitter I was told to open an issue because:</p> <blockquote> <p dir="auto">hm, we shouldn't be toString()ing null...</p> <ul dir="auto"> <li><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Hixie/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Hixie">@Hixie</a></li> </ul> </blockquote> <h2 dir="auto">Logs</h2> <p dir="auto">No logs, no warning.</p> <h2 dir="auto">Flutter Doctor</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" ❯ flutter doctor [14:22:29] [✓] Flutter (on Linux, channel master) • Flutter at /home/joel/code/flutter • Framework revision 01a8d51022 (17 hours ago), 2016-11-09 18:15:51 • Engine revision 84a060820a • Tools Dart version 1.21.0-dev.3.0 [✓] Android toolchain - develop for Android devices (Android SDK 25.0.0) • Android SDK at /opt/android-sdk • Platform android-25, build-tools 25.0.0 • ANDROID_HOME = /opt/android-sdk • Java(TM) SE Runtime Environment (build 1.8.0_112-b15) [-] IntelliJ IDEA Ultimate Edition (version 2016.2.bak) • Dart plugin installed • Flutter plugin not installed; this adds Flutter specific functionality. • For information about managing plugins, see https://www.jetbrains.com/help/idea/2016.2/managing-plugins.html [-] IntelliJ IDEA Ultimate Edition (version 2016.1) • Dart plugin installed • Flutter plugin not installed; this adds Flutter specific functionality. • For information about managing plugins, see https://www.jetbrains.com/help/idea/2016.2/managing-plugins.html [-] IntelliJ IDEA Ultimate Edition (version 2016.2) • Dart plugin installed • Flutter plugin not installed; this adds Flutter specific functionality. • For information about managing plugins, see https://www.jetbrains.com/help/idea/2016.2/managing-plugins.html [-] IntelliJ IDEA Ultimate Edition (version 16) • Dart plugin installed • Flutter plugin not installed; this adds Flutter specific functionality. • For information about managing plugins, see https://www.jetbrains.com/help/idea/2016.2/managing-plugins.html [✓] IntelliJ IDEA Ultimate Edition (version 2016.3) • Dart plugin installed • Flutter plugin installed [✓] Connected devices • Nexus 6P • 84B7N15A10004400 • android-arm • Android 7.1.1 (API 25)"><pre class="notranslate"><code class="notranslate"> ❯ flutter doctor [14:22:29] [✓] Flutter (on Linux, channel master) • Flutter at /home/joel/code/flutter • Framework revision 01a8d51022 (17 hours ago), 2016-11-09 18:15:51 • Engine revision 84a060820a • Tools Dart version 1.21.0-dev.3.0 [✓] Android toolchain - develop for Android devices (Android SDK 25.0.0) • Android SDK at /opt/android-sdk • Platform android-25, build-tools 25.0.0 • ANDROID_HOME = /opt/android-sdk • Java(TM) SE Runtime Environment (build 1.8.0_112-b15) [-] IntelliJ IDEA Ultimate Edition (version 2016.2.bak) • Dart plugin installed • Flutter plugin not installed; this adds Flutter specific functionality. • For information about managing plugins, see https://www.jetbrains.com/help/idea/2016.2/managing-plugins.html [-] IntelliJ IDEA Ultimate Edition (version 2016.1) • Dart plugin installed • Flutter plugin not installed; this adds Flutter specific functionality. • For information about managing plugins, see https://www.jetbrains.com/help/idea/2016.2/managing-plugins.html [-] IntelliJ IDEA Ultimate Edition (version 2016.2) • Dart plugin installed • Flutter plugin not installed; this adds Flutter specific functionality. • For information about managing plugins, see https://www.jetbrains.com/help/idea/2016.2/managing-plugins.html [-] IntelliJ IDEA Ultimate Edition (version 16) • Dart plugin installed • Flutter plugin not installed; this adds Flutter specific functionality. • For information about managing plugins, see https://www.jetbrains.com/help/idea/2016.2/managing-plugins.html [✓] IntelliJ IDEA Ultimate Edition (version 2016.3) • Dart plugin installed • Flutter plugin installed [✓] Connected devices • Nexus 6P • 84B7N15A10004400 • android-arm • Android 7.1.1 (API 25) </code></pre></div>
1
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=memelet" rel="nofollow">Barry Kaplan</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-3434?redirect=false" rel="nofollow">SPR-3434</a></strong> and commented</p> <p dir="auto">The changes from 2.0.3 to 2.0.4 has cause some side effects. In 2.0.3 the PABPP would use beanFactory.getBean(..) to obtain the EMFs. In 2.0.4 it first beanFactory.isTypeMatch(..)</p> <p dir="auto">When the EMF has not yet been created in the context, AbstractEntityMangagerFactoryBean.getObjectType will return EntityManagerFactory.class, but PABPP compares the class against EntityManagerFactoryInfo.class. Hence due the abitrary ordering of bean creation most of my EMFs fail to be discovered by the PABPP.</p> <p dir="auto">PABPP.findNamedEntityManagerFactory(..) returns EntityManagerFactory (not EMFInfo), so why does it check for the EMFInfo.class?</p> <p dir="auto">I cannot simply have PABPP depend on the LCEMFBs because it defined in a generic config file, where the LCEMFBs are defined in component specific config files.</p> <hr> <p dir="auto"><strong>Affects:</strong> 2.0.4</p> <p dir="auto"><strong>Issue Links:</strong></p> <ul dir="auto"> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398077121" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/8054" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/8054/hovercard" href="https://github.com/spring-projects/spring-framework/issues/8054">#8054</a> PersistenceAnnotationBeanPostProcessor fails to match unitName of lazy loaded EMFs in some cases (<em><strong>"duplicates"</strong></em>)</li> </ul>
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=xun.wang.us" rel="nofollow">Xun Wang</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-9302?redirect=false" rel="nofollow">SPR-9302</a></strong> and commented</p> <p dir="auto">Due to recent release of Jackson 2.0, hope it is on the road map to give Spring user the option to use Jackson 2.0 for Jackson related json functions. Jackson 2.x has different package name for its classes to let code with 1.x be able to coexist. Maybe a new set of the Spring classes need to be created for the same reason for those who like to use the 2.x while others can remain on 1.x. For example MappingJacksonJsonView remains but with MappingJacksonJsonView2 for the 2.x Jackson. I believe someone has better idea how to get it done.</p> <hr> <p dir="auto"><strong>Affects:</strong> 3.0.5</p> <p dir="auto"><strong>Attachments:</strong></p> <ul dir="auto"> <li><a href="https://jira.spring.io/secure/attachment/19613/MappingJacksonHttpMessageConverter.patch" rel="nofollow">MappingJacksonHttpMessageConverter.patch</a> (<em>1.65 kB</em>)</li> </ul> <p dir="auto"><strong>Sub-tasks:</strong></p> <ul dir="auto"> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398151195" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/14141" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/14141/hovercard" href="https://github.com/spring-projects/spring-framework/issues/14141">#14141</a> Backport "Use Jackson 2.0 for Jackson based json processing such as MappingJacksonJsonView"</li> </ul> <p dir="auto"><strong>Issue Links:</strong></p> <ul dir="auto"> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398118720" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13972" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13972/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13972">#13972</a> Support for Jackson 2.X (<em><strong>"is duplicated by"</strong></em>)</li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398154570" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/14589" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/14589/hovercard" href="https://github.com/spring-projects/spring-framework/issues/14589">#14589</a> Add support for jackson 2.0 message converters MappingJacksonHttpMessageConverter refers to the older ObjectMapper package and methods (<em><strong>"is duplicated by"</strong></em>)</li> </ul> <p dir="auto">9 votes, 10 watchers</p>
0
<p dir="auto">There appears to be a race condition in the index CUDA kernels where multiple threads are writing to the same address.</p> <p dir="auto">Reproducer code:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import torch ref = torch.arange(0, 20).view(4, 5).float() indexer= [slice(None), [1 for i in range(5)]] src = torch.randperm(ref[indexer].numel()).view(ref[indexer].size()).float() print('ref', ref) print('indexer', indexer) print('ref[indxer]', ref[indexer]) print('src', src) cpu_ans = ref.clone() cpu_ans[indexer]=src nump_ans = ref.double().numpy() idxs = tuple(indexer) nump_ans[idxs] = src.double().numpy() print('ref numpy\n', ref.numpy()) print('idx numpy\n', idxs) print('src numpy\n', src.numpy()) gpu_ans = ref.cuda() gpu_ans[indexer]=src.cuda() print('cpu result', cpu_ans) print('numpy result\n', nump_ans) print('cuda result', gpu_ans)"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">torch</span> <span class="pl-s1">ref</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-en">arange</span>(<span class="pl-c1">0</span>, <span class="pl-c1">20</span>).<span class="pl-en">view</span>(<span class="pl-c1">4</span>, <span class="pl-c1">5</span>).<span class="pl-en">float</span>() <span class="pl-s1">indexer</span><span class="pl-c1">=</span> [<span class="pl-en">slice</span>(<span class="pl-c1">None</span>), [<span class="pl-c1">1</span> <span class="pl-k">for</span> <span class="pl-s1">i</span> <span class="pl-c1">in</span> <span class="pl-en">range</span>(<span class="pl-c1">5</span>)]] <span class="pl-s1">src</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-en">randperm</span>(<span class="pl-s1">ref</span>[<span class="pl-s1">indexer</span>].<span class="pl-en">numel</span>()).<span class="pl-en">view</span>(<span class="pl-s1">ref</span>[<span class="pl-s1">indexer</span>].<span class="pl-en">size</span>()).<span class="pl-en">float</span>() <span class="pl-en">print</span>(<span class="pl-s">'ref'</span>, <span class="pl-s1">ref</span>) <span class="pl-en">print</span>(<span class="pl-s">'indexer'</span>, <span class="pl-s1">indexer</span>) <span class="pl-en">print</span>(<span class="pl-s">'ref[indxer]'</span>, <span class="pl-s1">ref</span>[<span class="pl-s1">indexer</span>]) <span class="pl-en">print</span>(<span class="pl-s">'src'</span>, <span class="pl-s1">src</span>) <span class="pl-s1">cpu_ans</span> <span class="pl-c1">=</span> <span class="pl-s1">ref</span>.<span class="pl-en">clone</span>() <span class="pl-s1">cpu_ans</span>[<span class="pl-s1">indexer</span>]<span class="pl-c1">=</span><span class="pl-s1">src</span> <span class="pl-s1">nump_ans</span> <span class="pl-c1">=</span> <span class="pl-s1">ref</span>.<span class="pl-en">double</span>().<span class="pl-en">numpy</span>() <span class="pl-s1">idxs</span> <span class="pl-c1">=</span> <span class="pl-en">tuple</span>(<span class="pl-s1">indexer</span>) <span class="pl-s1">nump_ans</span>[<span class="pl-s1">idxs</span>] <span class="pl-c1">=</span> <span class="pl-s1">src</span>.<span class="pl-en">double</span>().<span class="pl-en">numpy</span>() <span class="pl-en">print</span>(<span class="pl-s">'ref numpy<span class="pl-cce">\n</span>'</span>, <span class="pl-s1">ref</span>.<span class="pl-en">numpy</span>()) <span class="pl-en">print</span>(<span class="pl-s">'idx numpy<span class="pl-cce">\n</span>'</span>, <span class="pl-s1">idxs</span>) <span class="pl-en">print</span>(<span class="pl-s">'src numpy<span class="pl-cce">\n</span>'</span>, <span class="pl-s1">src</span>.<span class="pl-en">numpy</span>()) <span class="pl-s1">gpu_ans</span> <span class="pl-c1">=</span> <span class="pl-s1">ref</span>.<span class="pl-en">cuda</span>() <span class="pl-s1">gpu_ans</span>[<span class="pl-s1">indexer</span>]<span class="pl-c1">=</span><span class="pl-s1">src</span>.<span class="pl-en">cuda</span>() <span class="pl-en">print</span>(<span class="pl-s">'cpu result'</span>, <span class="pl-s1">cpu_ans</span>) <span class="pl-en">print</span>(<span class="pl-s">'numpy result<span class="pl-cce">\n</span>'</span>, <span class="pl-s1">nump_ans</span>) <span class="pl-en">print</span>(<span class="pl-s">'cuda result'</span>, <span class="pl-s1">gpu_ans</span>)</pre></div> <p dir="auto">Output:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="cpu result 0 6 2 3 4 5 4 7 8 9 10 13 12 13 14 15 19 17 18 19 [torch.FloatTensor of size 4x5] numpy result [[ 0. 6. 2. 3. 4.] [ 5. 4. 7. 8. 9.] [ 10. 13. 12. 13. 14.] [ 15. 19. 17. 18. 19.]] cuda result 0 6 2 3 4 5 **16** 7 8 9 10 13 12 13 14 15 **5** 17 18 19 [torch.cuda.FloatTensor of size 4x5 (GPU 0)]"><pre class="notranslate"><code class="notranslate">cpu result 0 6 2 3 4 5 4 7 8 9 10 13 12 13 14 15 19 17 18 19 [torch.FloatTensor of size 4x5] numpy result [[ 0. 6. 2. 3. 4.] [ 5. 4. 7. 8. 9.] [ 10. 13. 12. 13. 14.] [ 15. 19. 17. 18. 19.]] cuda result 0 6 2 3 4 5 **16** 7 8 9 10 13 12 13 14 15 **5** 17 18 19 [torch.cuda.FloatTensor of size 4x5 (GPU 0)] </code></pre></div> <p dir="auto">Looks like a preprocessing step will need to be added to identify which source indices is allowed to write to destination.</p> <p dir="auto">I'm not sure if this will also be a problem in the other advanced indexing kernels.</p>
<p dir="auto"><strong>### Pretext:</strong></p> <p dir="auto">I recently installed pytorch-nightly, and my cuda version is upto date. But when I run my command, I get the following error:</p> <p dir="auto"><strong>### Error:</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last): File &quot;main.py&quot;, line 77, in &lt;module&gt; algo.sample(datapath, cfg.STAGE) File &quot;C:\Users\hunte\OneDrive\Documents\Projects\EAD Project\StackGAN-Pytorch-master\code\trainer.py&quot;, line 238, in sample netG, _ = self.load_network_stageII() File &quot;C:\Users\hunte\OneDrive\Documents\Projects\EAD Project\StackGAN-Pytorch-master\code\trainer.py&quot;, line 110, in load_network_stageII netG.cuda() File &quot;C:\ProgramData\Anaconda3\lib\site-packages\torch\nn\modules\module.py&quot;, line 263, in cuda return self._apply(lambda t: t.cuda(device)) File &quot;C:\ProgramData\Anaconda3\lib\site-packages\torch\nn\modules\module.py&quot;, line 190, in _apply module._apply(fn) File &quot;C:\ProgramData\Anaconda3\lib\site-packages\torch\nn\modules\module.py&quot;, line 190, in _apply module._apply(fn) File &quot;C:\ProgramData\Anaconda3\lib\site-packages\torch\nn\modules\module.py&quot;, line 190, in _apply module._apply(fn) File &quot;C:\ProgramData\Anaconda3\lib\site-packages\torch\nn\modules\module.py&quot;, line 196, in _apply param.data = fn(param.data) File &quot;C:\ProgramData\Anaconda3\lib\site-packages\torch\nn\modules\module.py&quot;, line 263, in &lt;lambda&gt; return self._apply(lambda t: t.cuda(device)) File &quot;C:\ProgramData\Anaconda3\lib\site-packages\torch\cuda\__init__.py&quot;, line 163, in _lazy_init torch._C._cuda_init() RuntimeError: CUDA error: unknown error"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last): File "main.py", line 77, in &lt;module&gt; algo.sample(datapath, cfg.STAGE) File "C:\Users\hunte\OneDrive\Documents\Projects\EAD Project\StackGAN-Pytorch-master\code\trainer.py", line 238, in sample netG, _ = self.load_network_stageII() File "C:\Users\hunte\OneDrive\Documents\Projects\EAD Project\StackGAN-Pytorch-master\code\trainer.py", line 110, in load_network_stageII netG.cuda() File "C:\ProgramData\Anaconda3\lib\site-packages\torch\nn\modules\module.py", line 263, in cuda return self._apply(lambda t: t.cuda(device)) File "C:\ProgramData\Anaconda3\lib\site-packages\torch\nn\modules\module.py", line 190, in _apply module._apply(fn) File "C:\ProgramData\Anaconda3\lib\site-packages\torch\nn\modules\module.py", line 190, in _apply module._apply(fn) File "C:\ProgramData\Anaconda3\lib\site-packages\torch\nn\modules\module.py", line 190, in _apply module._apply(fn) File "C:\ProgramData\Anaconda3\lib\site-packages\torch\nn\modules\module.py", line 196, in _apply param.data = fn(param.data) File "C:\ProgramData\Anaconda3\lib\site-packages\torch\nn\modules\module.py", line 263, in &lt;lambda&gt; return self._apply(lambda t: t.cuda(device)) File "C:\ProgramData\Anaconda3\lib\site-packages\torch\cuda\__init__.py", line 163, in _lazy_init torch._C._cuda_init() RuntimeError: CUDA error: unknown error </code></pre></div>
0
<p dir="auto">Hi all - I've run in to a problem that has stumped me for the past day. I think I've narrowed down the scenario and need some help figuring out if I'm on the right track here. (Video and code reproductions below to replicate passing and failing scenarios)</p> <p dir="auto">I'm using <code class="notranslate">@tanstack/react-table</code> to render a table in my NextJS application. There is an action button above the table that will display a <code class="notranslate">div</code> when this button is clicked. I'd like to run a playwright test to click on the action button and confirm that the div is displayed, however, when I do, my test time's out with an error of:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="locator.click: Target closed =========================== logs =========================== waiting for getByTestId('create-address-button') locator resolved to &lt;button class=&quot;ml-auto hidden h-8 lg:flex&quot; data-testid=&quot;…&gt;Create Address&lt;/button&gt; attempting click action waiting for element to be visible, enabled and stable element is visible, enabled and stable scrolling into view if needed done scrolling performing click action ============================================================"><pre class="notranslate"><code class="notranslate">locator.click: Target closed =========================== logs =========================== waiting for getByTestId('create-address-button') locator resolved to &lt;button class="ml-auto hidden h-8 lg:flex" data-testid="…&gt;Create Address&lt;/button&gt; attempting click action waiting for element to be visible, enabled and stable element is visible, enabled and stable scrolling into view if needed done scrolling performing click action ============================================================ </code></pre></div> <p dir="auto">The crazy thing is that if I comment out the <code class="notranslate">@tanstack/react-table</code> code, the playwright test successfully targets the action button and my test passes.</p> <p dir="auto">My hypothesis is that playwright is attempting to click on the button while the table is rendering/re-rendering/initializing causing the <code class="notranslate">useState</code> <code class="notranslate">setter</code> I'm using in the <code class="notranslate">onClick</code> to go "stale"? I don't want to have to worry about the render state of the table since these actions are different and it's not like I have to wait for the table to finish to click on the button above.</p> <p dir="auto">If I remove the <code class="notranslate">setShowDiv</code> from the <code class="notranslate">onClick</code>, the playwright test successfully runs up until the check to see if the <code class="notranslate">div</code> exists (since now we removed the line of code that should set it's visibility) I can also get around this by adding a hard-coded timeout but don't want to do that either.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="// index.tsx const [showDiv, setShowDiv] = useState(false); ... ... &lt;AddressDataTableToolbar // comment out this line table={table} onClick={(show) =&gt; { setShowDiv(show); // &lt;-- this goes stale possibly? }} /&gt;"><pre class="notranslate"><code class="notranslate">// index.tsx const [showDiv, setShowDiv] = useState(false); ... ... &lt;AddressDataTableToolbar // comment out this line table={table} onClick={(show) =&gt; { setShowDiv(show); // &lt;-- this goes stale possibly? }} /&gt; </code></pre></div> <p dir="auto">Is there something fundamental I'm missing or is this a scenario that Playwright should be able to handle?</p> <h3 dir="auto">System info</h3> <ul dir="auto"> <li>Playwright Version: 1.34.3</li> <li>Operating System: macOS</li> <li>Browser: WebKit</li> <li>Other info:</li> </ul> <h3 dir="auto">Source code</h3> <ul dir="auto"> <li>[x ] I provided exact source code that allows reproducing the issue locally.</li> </ul> <p dir="auto">Local reproduction</p> <p dir="auto"><strong>Steps</strong></p> <ul dir="auto"> <li>Pull code from <a href="https://github.com/uncvrd/tanstack-playwright">https://github.com/uncvrd/tanstack-playwright</a></li> <li>run <code class="notranslate">npm install</code></li> <li>run <code class="notranslate">npm run dev</code></li> <li>In a separate terminal, run <code class="notranslate">npx playwright test --ui</code></li> <li>run test called <code class="notranslate">should click on the table header</code></li> <li>observe output failure</li> <li>view <code class="notranslate">index.tsx</code> remove references to <code class="notranslate">@tanstack/react-table</code> code (i left comments on the lines to remove, lines: 23, 28, 30, 84)</li> <li>run test called <code class="notranslate">should click on the table header</code></li> <li>observe successful test</li> </ul> <p dir="auto">I just want to click the button and not have to wait for the table to render because these two functionalities are separate</p> <p dir="auto">Here's a video showing the initial failed state (the first 0:25 seconds are just waiting for it to fail)</p> <details open="" class="details-reset border rounded-2"> <summary class="px-3 py-2"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-device-camera-video"> <path d="M16 3.75v8.5a.75.75 0 0 1-1.136.643L11 10.575v.675A1.75 1.75 0 0 1 9.25 13h-7.5A1.75 1.75 0 0 1 0 11.25v-6.5C0 3.784.784 3 1.75 3h7.5c.966 0 1.75.784 1.75 1.75v.675l3.864-2.318A.75.75 0 0 1 16 3.75Zm-6.5 1a.25.25 0 0 0-.25-.25h-7.5a.25.25 0 0 0-.25.25v6.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25v-6.5ZM11 8.825l3.5 2.1v-5.85l-3.5 2.1Z"></path> </svg> <span aria-label="Video description Screen.Recording.2023-05-27.at.4.18.08.PM.mov" class="m-1">Screen.Recording.2023-05-27.at.4.18.08.PM.mov</span> <span class="dropdown-caret"></span> </summary> <video src="https://user-images.githubusercontent.com/25097099/241449117-c2618e35-5c98-4f39-b22e-0be68a82f032.mov" data-canonical-src="https://user-images.githubusercontent.com/25097099/241449117-c2618e35-5c98-4f39-b22e-0be68a82f032.mov" controls="controls" muted="muted" class="d-block rounded-bottom-2 border-top width-fit" style="max-height:640px; min-height: 200px"> </video> </details> <p dir="auto">Here's a video showing me removing the table code and running the test to successful completion where the button is clicked and the div is displayed.</p> <details open="" class="details-reset border rounded-2"> <summary class="px-3 py-2"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-device-camera-video"> <path d="M16 3.75v8.5a.75.75 0 0 1-1.136.643L11 10.575v.675A1.75 1.75 0 0 1 9.25 13h-7.5A1.75 1.75 0 0 1 0 11.25v-6.5C0 3.784.784 3 1.75 3h7.5c.966 0 1.75.784 1.75 1.75v.675l3.864-2.318A.75.75 0 0 1 16 3.75Zm-6.5 1a.25.25 0 0 0-.25-.25h-7.5a.25.25 0 0 0-.25.25v6.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25v-6.5ZM11 8.825l3.5 2.1v-5.85l-3.5 2.1Z"></path> </svg> <span aria-label="Video description Screen.Recording.2023-05-27.at.4.18.57.PM.mov" class="m-1">Screen.Recording.2023-05-27.at.4.18.57.PM.mov</span> <span class="dropdown-caret"></span> </summary> <video src="https://user-images.githubusercontent.com/25097099/241448921-e95c50e9-92d5-4bf4-849c-f9fbac488e7c.mov" data-canonical-src="https://user-images.githubusercontent.com/25097099/241448921-e95c50e9-92d5-4bf4-849c-f9fbac488e7c.mov" controls="controls" muted="muted" class="d-block rounded-bottom-2 border-top width-fit" style="max-height:640px; min-height: 200px"> </video> </details> <p dir="auto">Hopefully I've identified the reason for the failing test, but please let me know if the title does not accurately represent the reason why this test fails</p> <p dir="auto">[Describe expected behavior]</p> <p dir="auto">I should not have to wait for the table to render to click on the button</p> <p dir="auto">[Describe actual behavior]</p> <p dir="auto">The test fails due to <code class="notranslate">locator.click: Target closed</code></p> <p dir="auto">Thanks a lot for the help :)</p>
<h3 dir="auto">System info</h3> <ul dir="auto"> <li>Playwright Version: 1.29.2</li> <li>Operating System: MacOS Ventura</li> <li>Browser: Chrome</li> <li>NodeJS version: v16.16.0</li> <li>Other info: Running the android server for Pixel 4 and Nexus 5X with Android 11. Issue exists on real device as well as emulator.</li> </ul> <h3 dir="auto">Source code</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I provided exact source code that allows reproducing the issue locally.</li> </ul> <p dir="auto"><strong>Server script</strong></p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="async function launchAndroidServer() { const browserServer = await _android.launchServer({ port: 5555, wsPath: &quot;ws&quot;, }); const wsEndpoint = browserServer.wsEndpoint(); console.log(&quot;wsEndpoint:: &quot;, wsEndpoint); } launchAndroidServer();"><pre class="notranslate"><span class="pl-k">async</span> <span class="pl-k">function</span> <span class="pl-en">launchAndroidServer</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">const</span> <span class="pl-s1">browserServer</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">_android</span><span class="pl-kos">.</span><span class="pl-en">launchServer</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">port</span>: <span class="pl-c1">5555</span><span class="pl-kos">,</span> <span class="pl-c1">wsPath</span>: <span class="pl-s">"ws"</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">wsEndpoint</span> <span class="pl-c1">=</span> <span class="pl-s1">browserServer</span><span class="pl-kos">.</span><span class="pl-en">wsEndpoint</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"wsEndpoint:: "</span><span class="pl-kos">,</span> <span class="pl-s1">wsEndpoint</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-en">launchAndroidServer</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">Client Script</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const { _android } = require('playwright'); (async () =&gt; { const device = await _android.connect( 'ws://127.0.0.1:5555/ws' ); console.log(`Model :: ${device.model()}, serial:: ${device.serial()}`) await device.shell('am force-stop com.android.chrome'); const context = await device.launchBrowser(); const page = await context.newPage(); await page.goto('https://playwright.dev/'); await page.close(); await context.close(); })(); "><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-kos">{</span> _android <span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'playwright'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">(</span><span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">const</span> <span class="pl-s1">device</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">_android</span><span class="pl-kos">.</span><span class="pl-en">connect</span><span class="pl-kos">(</span> <span class="pl-s">'ws://127.0.0.1:5555/ws'</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">`Model :: <span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">device</span><span class="pl-kos">.</span><span class="pl-en">model</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">}</span></span>, serial:: <span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">device</span><span class="pl-kos">.</span><span class="pl-en">serial</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">}</span></span>`</span><span class="pl-kos">)</span> <span class="pl-k">await</span> <span class="pl-s1">device</span><span class="pl-kos">.</span><span class="pl-en">shell</span><span class="pl-kos">(</span><span class="pl-s">'am force-stop com.android.chrome'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">context</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">device</span><span class="pl-kos">.</span><span class="pl-en">launchBrowser</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">page</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">context</span><span class="pl-kos">.</span><span class="pl-en">newPage</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">goto</span><span class="pl-kos">(</span><span class="pl-s">'https://playwright.dev/'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">close</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">await</span> <span class="pl-s1">context</span><span class="pl-kos">.</span><span class="pl-en">close</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto"><strong>Steps</strong></p> <ul dir="auto"> <li>Run the server script</li> <li>Run the client script</li> </ul> <p dir="auto"><strong>Expected</strong><br> New browser page should be opened and test should get executed.</p> <p dir="auto"><strong>Actual</strong><br> The client script execution doesn't proceed after the <code class="notranslate">await context.newPage()</code> command. The new chrome browser page is opened with the URL as <code class="notranslate">about:blank</code> and the test does not proceed.</p> <p dir="auto">Client and server logs added below:<br> <a href="https://github.com/microsoft/playwright/files/10928374/pw_android_client.log">pw_android_client.log</a><br> <a href="https://github.com/microsoft/playwright/files/10928375/pw_android_server.log">pw_android_server.log</a></p>
0
<h2 dir="auto">Bug Report</h2> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I would like to work on a fix!</li> </ul> <p dir="auto"><code class="notranslate">@babel/helper-compliation-targets</code> is used by <code class="notranslate">@babel/preset-env</code> to transform the browsers/targets property into a list that can be actioned. In this process, it appears that <code class="notranslate">and_chr</code> and <code class="notranslate">and_ff</code> will be resolved to just <code class="notranslate">chrome</code> or <code class="notranslate">firefox</code> which results in the wrong targets being resolved.</p> <p dir="auto"><strong>Current Behaviour</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="last 1 firefoxandroid versions last 3 firefox versions"><pre class="notranslate"><code class="notranslate">last 1 firefoxandroid versions last 3 firefox versions </code></pre></div> <p dir="auto">results in the following output when using the debug flag:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Using targets: { &quot;firefox&quot;: &quot;81&quot; } Using modules transform: false Using plugins: syntax-numeric-separator { &quot;firefox&quot;:&quot;81&quot; } syntax-nullish-coalescing-operator { &quot;firefox&quot;:&quot;81&quot; } syntax-optional-chaining { &quot;firefox&quot;:&quot;81&quot; } syntax-json-strings { &quot;firefox&quot;:&quot;81&quot; } syntax-optional-catch-binding { &quot;firefox&quot;:&quot;81&quot; } syntax-async-generators { &quot;firefox&quot;:&quot;81&quot; } syntax-object-rest-spread { &quot;firefox&quot;:&quot;81&quot; } syntax-dynamic-import { &quot;firefox&quot;:&quot;81&quot; } syntax-export-namespace-from { &quot;firefox&quot;:&quot;81&quot; } syntax-top-level-await { &quot;firefox&quot;:&quot;81&quot; }"><pre class="notranslate"><code class="notranslate">Using targets: { "firefox": "81" } Using modules transform: false Using plugins: syntax-numeric-separator { "firefox":"81" } syntax-nullish-coalescing-operator { "firefox":"81" } syntax-optional-chaining { "firefox":"81" } syntax-json-strings { "firefox":"81" } syntax-optional-catch-binding { "firefox":"81" } syntax-async-generators { "firefox":"81" } syntax-object-rest-spread { "firefox":"81" } syntax-dynamic-import { "firefox":"81" } syntax-export-namespace-from { "firefox":"81" } syntax-top-level-await { "firefox":"81" } </code></pre></div> <p dir="auto"><strong>Expected Behaviour</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="last 1 firefoxandroid versions last 3 firefox versions"><pre class="notranslate"><code class="notranslate">last 1 firefoxandroid versions last 3 firefox versions </code></pre></div> <p dir="auto">resolves to a target of:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{ &quot;firefox&quot;: &quot;81&quot;, &quot;firefox android&quot;: &quot;83&quot; }"><pre class="notranslate"><code class="notranslate">{ "firefox": "81", "firefox android": "83" } </code></pre></div> <p dir="auto"><strong>Possible Solution</strong></p> <p dir="auto">Update the <a href="https://github.com/babel/babel/blob/main/packages/babel-helper-compilation-targets/src/targets.js#L5-L20"><code class="notranslate">browserNameMap</code></a> to give distinction to mobile versions. For example if I change it to be:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="and_ff: &quot;firefox android&quot;,"><pre class="notranslate"><code class="notranslate">and_ff: "firefox android", </code></pre></div> <p dir="auto">Then my resulting output from running <code class="notranslate">@babel/preset-env</code> with the debug flag is correct:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Using targets: { &quot;firefox&quot;: &quot;81&quot;, &quot;firefox android&quot;: &quot;83&quot; } Using modules transform: false Using plugins: proposal-numeric-separator { &quot;firefox android&quot;:&quot;83&quot; } proposal-logical-assignment-operators { &quot;firefox android&quot;:&quot;83&quot; } proposal-nullish-coalescing-operator { &quot;firefox android&quot;:&quot;83&quot; } proposal-optional-chaining { &quot;firefox android&quot;:&quot;83&quot; } proposal-json-strings { &quot;firefox android&quot;:&quot;83&quot; } proposal-optional-catch-binding { &quot;firefox android&quot;:&quot;83&quot; } transform-parameters { &quot;firefox android&quot;:&quot;83&quot; } proposal-async-generator-functions { &quot;firefox android&quot;:&quot;83&quot; } proposal-object-rest-spread { &quot;firefox android&quot;:&quot;83&quot; } transform-dotall-regex { &quot;firefox android&quot;:&quot;83&quot; } proposal-unicode-property-regex { &quot;firefox android&quot;:&quot;83&quot; } transform-named-capturing-groups-regex { &quot;firefox android&quot;:&quot;83&quot; } transform-async-to-generator { &quot;firefox android&quot;:&quot;83&quot; } transform-exponentiation-operator { &quot;firefox android&quot;:&quot;83&quot; } transform-template-literals { &quot;firefox android&quot;:&quot;83&quot; } transform-literals { &quot;firefox android&quot;:&quot;83&quot; } transform-function-name { &quot;firefox android&quot;:&quot;83&quot; } transform-arrow-functions { &quot;firefox android&quot;:&quot;83&quot; } transform-block-scoped-functions { &quot;firefox android&quot;:&quot;83&quot; } transform-classes { &quot;firefox android&quot;:&quot;83&quot; } transform-object-super { &quot;firefox android&quot;:&quot;83&quot; } transform-shorthand-properties { &quot;firefox android&quot;:&quot;83&quot; } transform-duplicate-keys { &quot;firefox android&quot;:&quot;83&quot; } transform-computed-properties { &quot;firefox android&quot;:&quot;83&quot; } transform-for-of { &quot;firefox android&quot;:&quot;83&quot; } transform-sticky-regex { &quot;firefox android&quot;:&quot;83&quot; } transform-unicode-escapes { &quot;firefox android&quot;:&quot;83&quot; } transform-unicode-regex { &quot;firefox android&quot;:&quot;83&quot; } transform-spread { &quot;firefox android&quot;:&quot;83&quot; } transform-destructuring { &quot;firefox android&quot;:&quot;83&quot; } transform-block-scoping { &quot;firefox android&quot;:&quot;83&quot; } transform-typeof-symbol { &quot;firefox android&quot;:&quot;83&quot; } transform-new-target { &quot;firefox android&quot;:&quot;83&quot; } transform-regenerator { &quot;firefox android&quot;:&quot;83&quot; } transform-member-expression-literals { &quot;firefox android&quot;:&quot;83&quot; } transform-property-literals { &quot;firefox android&quot;:&quot;83&quot; } transform-reserved-words { &quot;firefox android&quot;:&quot;83&quot; } proposal-export-namespace-from { &quot;firefox android&quot;:&quot;83&quot; } syntax-dynamic-import { &quot;firefox&quot;:&quot;81&quot;, &quot;firefox android&quot;:&quot;83&quot; } syntax-top-level-await { &quot;firefox&quot;:&quot;81&quot;, &quot;firefox android&quot;:&quot;83&quot; }"><pre class="notranslate"><code class="notranslate">Using targets: { "firefox": "81", "firefox android": "83" } Using modules transform: false Using plugins: proposal-numeric-separator { "firefox android":"83" } proposal-logical-assignment-operators { "firefox android":"83" } proposal-nullish-coalescing-operator { "firefox android":"83" } proposal-optional-chaining { "firefox android":"83" } proposal-json-strings { "firefox android":"83" } proposal-optional-catch-binding { "firefox android":"83" } transform-parameters { "firefox android":"83" } proposal-async-generator-functions { "firefox android":"83" } proposal-object-rest-spread { "firefox android":"83" } transform-dotall-regex { "firefox android":"83" } proposal-unicode-property-regex { "firefox android":"83" } transform-named-capturing-groups-regex { "firefox android":"83" } transform-async-to-generator { "firefox android":"83" } transform-exponentiation-operator { "firefox android":"83" } transform-template-literals { "firefox android":"83" } transform-literals { "firefox android":"83" } transform-function-name { "firefox android":"83" } transform-arrow-functions { "firefox android":"83" } transform-block-scoped-functions { "firefox android":"83" } transform-classes { "firefox android":"83" } transform-object-super { "firefox android":"83" } transform-shorthand-properties { "firefox android":"83" } transform-duplicate-keys { "firefox android":"83" } transform-computed-properties { "firefox android":"83" } transform-for-of { "firefox android":"83" } transform-sticky-regex { "firefox android":"83" } transform-unicode-escapes { "firefox android":"83" } transform-unicode-regex { "firefox android":"83" } transform-spread { "firefox android":"83" } transform-destructuring { "firefox android":"83" } transform-block-scoping { "firefox android":"83" } transform-typeof-symbol { "firefox android":"83" } transform-new-target { "firefox android":"83" } transform-regenerator { "firefox android":"83" } transform-member-expression-literals { "firefox android":"83" } transform-property-literals { "firefox android":"83" } transform-reserved-words { "firefox android":"83" } proposal-export-namespace-from { "firefox android":"83" } syntax-dynamic-import { "firefox":"81", "firefox android":"83" } syntax-top-level-await { "firefox":"81", "firefox android":"83" } </code></pre></div> <p dir="auto"><strong>Additional context</strong></p> <p dir="auto">Given a browserslist of:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="last 1 firefoxandroid versions last 3 firefox versions"><pre class="notranslate"><code class="notranslate">last 1 firefoxandroid versions last 3 firefox versions </code></pre></div> <p dir="auto">This resolves to (when using the <code class="notranslate">debug</code> flag of <code class="notranslate">@babel/preset-env</code>) to:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Using targets: { &quot;firefox&quot;: &quot;81&quot; } Using modules transform: false Using plugins: syntax-numeric-separator { &quot;firefox&quot;:&quot;81&quot; } syntax-nullish-coalescing-operator { &quot;firefox&quot;:&quot;81&quot; } syntax-optional-chaining { &quot;firefox&quot;:&quot;81&quot; } syntax-json-strings { &quot;firefox&quot;:&quot;81&quot; } syntax-optional-catch-binding { &quot;firefox&quot;:&quot;81&quot; } syntax-async-generators { &quot;firefox&quot;:&quot;81&quot; } syntax-object-rest-spread { &quot;firefox&quot;:&quot;81&quot; } syntax-dynamic-import { &quot;firefox&quot;:&quot;81&quot; } syntax-export-namespace-from { &quot;firefox&quot;:&quot;81&quot; } syntax-top-level-await { &quot;firefox&quot;:&quot;81&quot; }"><pre class="notranslate"><code class="notranslate">Using targets: { "firefox": "81" } Using modules transform: false Using plugins: syntax-numeric-separator { "firefox":"81" } syntax-nullish-coalescing-operator { "firefox":"81" } syntax-optional-chaining { "firefox":"81" } syntax-json-strings { "firefox":"81" } syntax-optional-catch-binding { "firefox":"81" } syntax-async-generators { "firefox":"81" } syntax-object-rest-spread { "firefox":"81" } syntax-dynamic-import { "firefox":"81" } syntax-export-namespace-from { "firefox":"81" } syntax-top-level-await { "firefox":"81" } </code></pre></div> <p dir="auto">This isn't correct though as it should resolve to Firefox 81, and Firefox Android 83 (at the time of writing).</p> <p dir="auto">The issue occurs in the <code class="notranslate">getLowestVersions</code> function:</p> <p dir="auto"></p><div class="Box Box--condensed my-2"> <div class="Box-header f6"> <p class="mb-0 text-bold"> <a href="https://github.com/babel/babel/blob/4f3fcf11101d52e9bb27042708080bf5c619e201/packages/babel-helper-compilation-targets/src/index.js#L209-L216">babel/packages/babel-helper-compilation-targets/src/index.js</a> </p> <p class="mb-0 color-fg-muted"> Lines 209 to 216 in <a data-pjax="true" class="commit-tease-sha" href="/babel/babel/commit/4f3fcf11101d52e9bb27042708080bf5c619e201">4f3fcf1</a> </p> </div> <div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data"> <table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip=""> <tbody><tr class="border-0"> <td id="L209" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="209"></td> <td id="LC209" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">const</span> <span class="pl-s1">browsers</span> <span class="pl-c1">=</span> <span class="pl-en">browserslist</span><span class="pl-kos">(</span><span class="pl-s1">browsersquery</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> </td> </tr> <tr class="border-0"> <td id="L210" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="210"></td> <td id="LC210" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c1">path</span>: <span class="pl-s1">options</span><span class="pl-kos">.</span><span class="pl-c1">configPath</span><span class="pl-kos">,</span> </td> </tr> <tr class="border-0"> <td id="L211" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="211"></td> <td id="LC211" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c1">mobileToDesktop</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span> </td> </tr> <tr class="border-0"> <td id="L212" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="212"></td> <td id="LC212" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c1">env</span>: <span class="pl-s1">options</span><span class="pl-kos">.</span><span class="pl-c1">browserslistEnv</span><span class="pl-kos">,</span> </td> </tr> <tr class="border-0"> <td id="L213" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="213"></td> <td id="LC213" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> </td> </tr> <tr class="border-0"> <td id="L214" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="214"></td> <td id="LC214" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> </td> </tr> <tr class="border-0"> <td id="L215" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="215"></td> <td id="LC215" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">const</span> <span class="pl-s1">queryBrowsers</span> <span class="pl-c1">=</span> <span class="pl-en">getLowestVersions</span><span class="pl-kos">(</span><span class="pl-s1">browsers</span><span class="pl-kos">)</span><span class="pl-kos">;</span> </td> </tr> <tr class="border-0"> <td id="L216" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="216"></td> <td id="LC216" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">targets</span> <span class="pl-c1">=</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">assign</span><span class="pl-kos">(</span><span class="pl-s1">queryBrowsers</span><span class="pl-kos">,</span> <span class="pl-s1">targets</span><span class="pl-kos">)</span><span class="pl-kos">;</span> </td> </tr> </tbody></table> </div> </div> <p></p> <p dir="auto">This function attempts to normalize the incoming browser name, and in do so, loses the distinction between the mobile and desktop version. While this function gets the correct browsers:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ 'and_ff 83', 'firefox 83', 'firefox 82', 'firefox 81' ]"><pre class="notranslate"><code class="notranslate">[ 'and_ff 83', 'firefox 83', 'firefox 82', 'firefox 81' ] </code></pre></div> <p dir="auto">It loses it once it's normalized:</p> <p dir="auto"></p><div class="Box Box--condensed my-2"> <div class="Box-header f6"> <p class="mb-0 text-bold"> <a href="https://github.com/babel/babel/blob/4f3fcf11101d52e9bb27042708080bf5c619e201/packages/babel-helper-compilation-targets/src/index.js#L74">babel/packages/babel-helper-compilation-targets/src/index.js</a> </p> <p class="mb-0 color-fg-muted"> Line 74 in <a data-pjax="true" class="commit-tease-sha" href="/babel/babel/commit/4f3fcf11101d52e9bb27042708080bf5c619e201">4f3fcf1</a> </p> </div> <div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data"> <table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip=""> <tbody><tr class="border-0"> <td id="L74" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="74"></td> <td id="LC74" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">const</span> <span class="pl-s1">normalizedBrowserName</span> <span class="pl-c1">=</span> <span class="pl-s1">browserNameMap</span><span class="pl-kos">[</span><span class="pl-s1">browserName</span><span class="pl-kos">]</span><span class="pl-kos">;</span> </td> </tr> </tbody></table> </div> </div> <p></p> <p dir="auto">This is because the targets map will cast <code class="notranslate">and_ff</code> to be just <code class="notranslate">firefox</code>:</p> <p dir="auto"></p><div class="Box Box--condensed my-2"> <div class="Box-header f6"> <p class="mb-0 text-bold"> <a href="https://github.com/babel/babel/blob/4f3fcf11101d52e9bb27042708080bf5c619e201/packages/babel-helper-compilation-targets/src/targets.js#L7">babel/packages/babel-helper-compilation-targets/src/targets.js</a> </p> <p class="mb-0 color-fg-muted"> Line 7 in <a data-pjax="true" class="commit-tease-sha" href="/babel/babel/commit/4f3fcf11101d52e9bb27042708080bf5c619e201">4f3fcf1</a> </p> </div> <div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data"> <table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip=""> <tbody><tr class="border-0"> <td id="L7" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="7"></td> <td id="LC7" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c1">and_ff</span>: <span class="pl-s">"firefox"</span><span class="pl-kos">,</span> </td> </tr> </tbody></table> </div> </div> <p></p> <p dir="auto">This also affects <code class="notranslate">and_chr</code>, <code class="notranslate">ie_mob</code> and <code class="notranslate">op_mob</code>.</p>
<h2 dir="auto">Bug Report</h2> <p dir="auto"><a href="https://nodejs.org/api/esm.html#esm_mandatory_file_extensions" rel="nofollow">File extensions are required in import statements in ES Modules.</a></p> <p dir="auto">But files within <code class="notranslate">@babel/runtime/helpers/esm</code> (which are treated as ES Modules because <code class="notranslate">@babel/runtime/helpers/esm/package.json</code> contains <code class="notranslate">type: "module"</code>) don't use extensions in their import statements.</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I would like to work on a fix!</li> </ul> <p dir="auto"><strong>Current behavior</strong></p> <p dir="auto">I'm getting this correct error with Webpack 5:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ERROR in ./node_modules/@babel/runtime/helpers/esm/get.js 1:0-44 Module not found: Error: Can't resolve './superPropBase' in '/Users/andy/clarity/node_modules/@babel/runtime/helpers/esm' Did you mean 'superPropBase.js'? BREAKING CHANGE: The request './superPropBase' failed to resolve only because it was resolved as fully specified (probably because the origin is a '*.mjs' file or a '*.js' file where the package.json contains '&quot;type&quot;: &quot;module&quot;'). The extension in the request is mandatory for it to be fully specified. Add the extension to the request."><pre class="notranslate"><code class="notranslate">ERROR in ./node_modules/@babel/runtime/helpers/esm/get.js 1:0-44 Module not found: Error: Can't resolve './superPropBase' in '/Users/andy/clarity/node_modules/@babel/runtime/helpers/esm' Did you mean 'superPropBase.js'? BREAKING CHANGE: The request './superPropBase' failed to resolve only because it was resolved as fully specified (probably because the origin is a '*.mjs' file or a '*.js' file where the package.json contains '"type": "module"'). The extension in the request is mandatory for it to be fully specified. Add the extension to the request. </code></pre></div> <p dir="auto">This is because the first line of <code class="notranslate">@babel/runtime/helpers/esm/get.js</code> is an import without an extension:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import superPropBase from &quot;./superPropBase&quot;;"><pre class="notranslate"><code class="notranslate">import superPropBase from "./superPropBase"; </code></pre></div> <p dir="auto"><strong>Input Code</strong></p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var your =&gt; (code) =&gt; here;"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">your</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">(</span><span class="pl-s1">code</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-s1">here</span><span class="pl-kos">;</span></pre></div> <p dir="auto"><strong>Expected behavior</strong></p> <p dir="auto">No problems using <code class="notranslate">@babel/plugin-transform-runtime</code> with <code class="notranslate">useESModules: true</code></p> <p dir="auto"><strong>Babel Configuration</strong></p> <ul dir="auto"> <li>Filename: (babel config inlined in babel-loader webpack config)</li> </ul> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ presets: [ ['@babel/preset-env', {targets: {browsers: 'last 2 versions'}}], ], plugins: [ [ '@babel/plugin-transform-runtime', { useESModules: true, }, ], ] }"><pre class="notranslate"><span class="pl-kos">{</span> <span class="pl-c1">presets</span>: <span class="pl-kos">[</span> <span class="pl-kos">[</span><span class="pl-s">'@babel/preset-env'</span><span class="pl-kos">,</span> <span class="pl-kos">{</span><span class="pl-c1">targets</span>: <span class="pl-kos">{</span><span class="pl-c1">browsers</span>: <span class="pl-s">'last 2 versions'</span><span class="pl-kos">}</span><span class="pl-kos">}</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-c1">plugins</span>: <span class="pl-kos">[</span> <span class="pl-kos">[</span> <span class="pl-s">'@babel/plugin-transform-runtime'</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">useESModules</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-kos">]</span> <span class="pl-kos">}</span></pre></div> <p dir="auto"><strong>Environment</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"> </code></pre></div> <ul dir="auto"> <li><code class="notranslate">@babel/runtime</code>: 7.11.2</li> <li><code class="notranslate">@babel/plugin-transform-runtime</code>: 7.11.5</li> <li><code class="notranslate">webpack</code>: 5.0.0-rc.4</li> <li><code class="notranslate">babel-loader</code>: 8.1.0</li> </ul> <p dir="auto"><strong>Possible Solution</strong></p> <p dir="auto">Use full extensions in imports inside <code class="notranslate">@babel/runtime/helpers/esm</code>, so I don't get these errors, for example:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import superPropBase from &quot;./superPropBase.js&quot;;"><pre class="notranslate"><code class="notranslate">import superPropBase from "./superPropBase.js"; </code></pre></div>
0
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const enum E { }"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-k">enum</span> <span class="pl-smi">E</span> <span class="pl-kos">{</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">Try to get occurrences on the <code class="notranslate">const</code> keyword.</p> <p dir="auto">Error: Debug Failure. False expression:<br> at assert (:1143:17)<br> at fail (:1148:13)<br> at getFlagFromModifier (:25796:29)<br> at getModifierOccurrences (:25751:17)<br> at getOccurrencesAtPosition (:25484:25)<br> at Anonymous function (:27826:17)<br> at simpleForwardCall (:27643:9)<br> at forwardJSONCall (:27657:13)<br> at forwardJSONCall (:27688:13)<br> at getOccurrencesAtPosition (:27825:13)</p>
<p dir="auto">Action description:<br> getOccurrencesAtPosition('C:\test\t2.ts', 0)</p> <p dir="auto">Script callstack:</p> <p dir="auto">Error: Debug Failure. False expression:<br> at assert (:1125:17)<br> at fail (:1130:13)<br> at getFlagFromModifier (:23623:29)<br> at getModifierOccurrences (:23578:17)<br> at getOccurrencesAtPosition (:23315:25)<br> at Anonymous function (:25657:17)<br> at simpleForwardCall (:25474:9)<br> at forwardJSONCall (:25488:13)<br> at forwardJSONCall (:25519:13)<br> at getOccurrencesAtPosition (:25656:13)</p> <p dir="auto">source:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const x = 0; "><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-c1">0</span><span class="pl-kos">;</span> </pre></div> <p dir="auto">Cursor is at "const"</p>
1
<ul dir="auto"> <li>Electron version: 0.36.12 (earliest tested) to 0.37.5 (latest)</li> <li>Operating system: Windows 8.1</li> </ul> <p dir="auto">I am working on a project to test some code in a sandboxed iframe that gives limited access to the parent. The implementation is pretty straight forward. The problem is it works in modern web browsers but not in Electron. It is even verified working in Chrome. And both the jQuery and vanilla JS versions produce the same results.</p> <p dir="auto">The iframe is created with:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$('&lt;iframe&gt;', { src: 'about:blank', id: 'ptg-sandbox', frameborder: 0, scrolling: 'no', style: 'width: 0px; height: 0px; display: none;' }).appendTo('body');"><pre class="notranslate"><span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">'&lt;iframe&gt;'</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">src</span>: <span class="pl-s">'about:blank'</span><span class="pl-kos">,</span> <span class="pl-c1">id</span>: <span class="pl-s">'ptg-sandbox'</span><span class="pl-kos">,</span> <span class="pl-c1">frameborder</span>: <span class="pl-c1">0</span><span class="pl-kos">,</span> <span class="pl-c1">scrolling</span>: <span class="pl-s">'no'</span><span class="pl-kos">,</span> <span class="pl-c1">style</span>: <span class="pl-s">'width: 0px; height: 0px; display: none;'</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">appendTo</span><span class="pl-kos">(</span><span class="pl-s">'body'</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">And then the eval works much like:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$('#ptg-sandbox')[0].contentWindow.eval('alert(&quot;test&quot;);');"><pre class="notranslate"><span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">'#ptg-sandbox'</span><span class="pl-kos">)</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-c1">contentWindow</span><span class="pl-kos">.</span><span class="pl-en">eval</span><span class="pl-kos">(</span><span class="pl-s">'alert("test");'</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">Code is in place to ensure the iframe exists in the DOM before firing the code. So I ruled that out. The expected result should be an alert that says "test". But unfortunately I can't get it and no error is returned. If it helps to know I am also have nodeIntegration set to false for this BrowserWindow.</p>
<p dir="auto">Currently there's no support for <code class="notranslate">alert</code> and <code class="notranslate">confirm</code> dialogs in iframes (see discussion in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="101710943" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/2522" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/2522/hovercard" href="https://github.com/electron/electron/issues/2522">#2522</a>).</p> <p dir="auto">Once the "Session wide preload script" <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="103406800" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/2605" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/2605/hovercard" href="https://github.com/electron/electron/issues/2605">#2605</a> is ready, I think we should implement a default preload that will add the missing dialogs (kind of like what override.coffee does for the parent window).</p>
1
<p dir="auto">Repo steps:</p> <ol dir="auto"> <li>Enable <code class="notranslate">Override Windows Snap shortcut (Win + Arrow) to move windows between zones</code>.</li> <li>Span a window across 2 or more zones.</li> <li>Press <kbd>Win</kbd> + <kbd>←</kbd> or <kbd>→</kbd>.</li> </ol> <p dir="auto">Actual result:</p> <ol dir="auto"> <li>Window moved to next zone.</li> <li>Window lost any spanning.</li> </ol> <p dir="auto">Expected result:</p> <ol dir="auto"> <li>Moving from zone 2 &amp; 3 to 3 &amp; 4 shouldn't shrink the window.</li> <li>Moved to 3 &amp; 4, with 4 being last, next move in that direction should shrink the window first, then move to next display (or most opposite display edge, if no further display exists).</li> <li>Maybe we need a new shortcut, e. g. <kbd>Win</kbd> + <kbd>CTRL</kbd> + <kbd>←</kbd> or <kbd>→</kbd>, then, because if shrunk due to aforementioned reasons, one might want to span again instead of moving to the next zone.</li> </ol>
<h1 dir="auto">Summary of the new feature/enhancement</h1> <p dir="auto">I would like to have an option to keep PowerRename opened after file rename in order to perform multiple rename for selected files.</p> <h1 dir="auto">Proposed technical implementation details (optional)</h1> <p dir="auto">It could be an option in PowerToys Settings for configure the default behaviour: <strong>do not close window after file rename.</strong></p>
0
<p dir="auto">Very Minor cleanup. duplicate end of statement semicolon</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">src\host\conareainfo.cpp(187)</code>: <div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="SMALL_RECT OldRegion = _caInfo.rcViewCaWindow;;"><pre class="notranslate">SMALL_RECT OldRegion = _caInfo.rcViewCaWindow;;</pre></div> </li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">src\host\consoleInformation.cpp(388)</code>: <div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="ci.Attributes = GenerateLegacyAttributes(attr);;"><pre class="notranslate">ci.Attributes = GenerateLegacyAttributes(attr);;</pre></div> </li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">src\interactivity\base\InteractivityFactory.cpp(349)</code>: <div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="NTSTATUS status = ApiDetector::DetectNtUserWindow(&amp;level);;"><pre class="notranslate">NTSTATUS status = ApiDetector::DetectNtUserWindow(&amp;level);;</pre></div> </li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">src\interactivity\win32\screenInfoUiaProvider.cpp(534)</code>: <div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="HRESULT hr = S_OK;;"><pre class="notranslate">HRESULT hr = S_OK;;</pre></div> </li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">src\interactivity\win32\UiaTextRange.cpp(151)</code>: <div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="UiaTextRange* range = nullptr;;"><pre class="notranslate">UiaTextRange* range = <span class="pl-c1">nullptr</span>;;</pre></div> </li> </ul> <p dir="auto">src\host\conareainfo.cpp(187): SMALL_RECT OldRegion = _caInfo.rcViewCaWindow;;<br> src\host\consoleInformation.cpp(388): ci.Attributes = GenerateLegacyAttributes(attr);;<br> src\interactivity\base\InteractivityFactory.cpp(349): NTSTATUS status = ApiDetector::DetectNtUserWindow(&amp;level);;<br> src\interactivity\win32\screenInfoUiaProvider.cpp(534): HRESULT hr = S_OK;;<br> src\interactivity\win32\UiaTextRange.cpp(151): UiaTextRange* range = nullptr;;</p> <p dir="auto">Found in the clang-format PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="452185478" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1141" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/1141/hovercard" href="https://github.com/microsoft/terminal/pull/1141">#1141</a></p>
<h1 dir="auto">Description of the new feature/enhancement</h1> <p dir="auto">I think it would be helpful if each tab appeared in its own taskbar thumbnail. Clicking on the thumbnail would activate the window with that tab open. The way the app currently works, if you have multiple tabs open and the app is currently in the background you would need to click the taskbar button to switch to the app and then click the tab you want to work with if it's not the currently active one.</p> <h1 dir="auto">Proposed technical implementation details (optional)</h1>
0
<ul dir="auto"> <li>VSCode Version: 0.10.12-alpha</li> <li>OS Version: Windows10</li> </ul> <p dir="auto">Steps to Reproduce:</p> <ol dir="auto"> <li>Launch an app from command prompt without any command line argument.</li> </ol> <blockquote> <p dir="auto">code-alpha</p> </blockquote> <ol start="2" dir="auto"> <li>Open any folder which contains C# code.</li> <li>Verify installed extensions for C#, PS, GO etc. should work fine.</li> <li>Verify there should not be any error message.</li> <li>Close app and re-launch it from command prompt with disable-extension argument. <blockquote> <p dir="auto">code-alpha --disable-extension</p> </blockquote> </li> <li>Verify app behavior and configuration changes.</li> </ol> <p dir="auto">Actual:</p> <ol dir="auto"> <li>Getting error message Like: "Cannot convert undefined or null to object"</li> </ol> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/17735796/13939789/40f63f90-ef95-11e5-93a7-a2b75089d8f6.png"><img src="https://cloud.githubusercontent.com/assets/17735796/13939789/40f63f90-ef95-11e5-93a7-a2b75089d8f6.png" alt="image" style="max-width: 100%;"></a></p> <ol dir="auto"> <li>There is no changes in app behavior or configuration.<br> a. Default setting is not changing at all.<br> b. Linter is working as it was working before re-launch.<br> c. Debugger is working as it was working before re-launch.<br> d. Intellisense is working as it was working before re-launch.</li> </ol> <p dir="auto">Expected: There should not be any error message.</p> <p dir="auto">Clarification: What are the changes user should expect when launching app with --disable-extension argument.</p>
<ul dir="auto"> <li>VSCode Version: 0.10.12-alpha</li> <li>OS Version: Windows10</li> </ul> <p dir="auto">Steps to Reproduce:</p> <ol dir="auto"> <li>Launch app and open any folder.</li> <li>Try to add .js or .cs file by clicking on + sign.</li> <li>Verify app behavior.</li> <li>Try to add other file like go, css, ts and verify app behavior.</li> </ol> <p dir="auto">Actual: Getting error "Cannot convert undefined or null to object" when adding .js or .cs file.<br> Expected: It should not throw any error while adding .js or .cs file.</p> <p dir="auto">Note: I tried the same steps on MAC and it is working fine.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/17735796/13932862/7a1fd8ae-ef67-11e5-9920-ede5e4781ea4.png"><img src="https://cloud.githubusercontent.com/assets/17735796/13932862/7a1fd8ae-ef67-11e5-9920-ede5e4781ea4.png" alt="image" style="max-width: 100%;"></a></p>
1
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/mui-org/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">When page is reloaded, the render should be stable. It is correct in the development build, i.e when I do <code class="notranslate">npm run dev</code></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/19644931/34405331-c72bfa00-ebd8-11e7-9d76-019091158ad2.gif"><img src="https://user-images.githubusercontent.com/19644931/34405331-c72bfa00-ebd8-11e7-9d76-019091158ad2.gif" alt="development" data-animated-image="" style="max-width: 100%;"></a></p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">When page is loaded, the render is unstable. It happens when I run <code class="notranslate">npm run build</code> and <code class="notranslate">npm run start</code></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/19644931/34405407-3b5caa1e-ebd9-11e7-9156-50c9e027d55f.gif"><img src="https://user-images.githubusercontent.com/19644931/34405407-3b5caa1e-ebd9-11e7-9156-50c9e027d55f.gif" alt="production" data-animated-image="" style="max-width: 100%;"></a></p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <p dir="auto">Following the instructions at <a href="https://github.com/zeit/next.js/tree/canary/examples/with-material-ui-next">https://github.com/zeit/next.js/tree/canary/examples/with-material-ui-next</a></p> <ol dir="auto"> <li>curl <a href="https://codeload.github.com/callemall/material-ui/tar.gz/v1-beta">https://codeload.github.com/callemall/material-ui/tar.gz/v1-beta</a> | tar -xz --strip=2 material-ui-1-beta/examples/nextjs</li> <li>cd nextjs</li> <li>npm run build</li> <li>npm run start</li> </ol> <h2 dir="auto">Context</h2> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td>1.0.0-beta.25</td> </tr> <tr> <td>React</td> <td>16.2.0</td> </tr> <tr> <td>browser</td> <td>Chrome 63.0.3239 on MacBook</td> </tr> <tr> <td>Next</td> <td>4.2.1</td> </tr> </tbody> </table>
<ul dir="auto"> <li>[x ] I have searched the <a href="https://github.com/mui-org/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">If I choose a date, this date should correctly displayed</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">For the year 1979 and longer ago, the localized version interpretes the months wrongly, e.g. July will be August, August will be September and so on. Sorry, it is difficult to explain for me in english, but luckily easy to reproduce ;-)</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <p dir="auto">You can reproduce the bug here: <a href="http://www.material-ui.com/#/components/date-picker" rel="nofollow">http://www.material-ui.com/#/components/date-picker</a>. Use the localized example (I tried the french version), as this bug only appears in the localized version</p> <p dir="auto">Try to set the datepicker to the "19 July in 1968", the date in the output-field will show "19 August in 1968"</p> <p dir="auto">This could be helpful for bugfixing:<br> If you click on the arrows for the months, You will see, that the month "march" ("mars") appears two times, only after the second click the next month is shown</p>
0
<h3 dir="auto">Official Helm Chart version</h3> <p dir="auto">1.1.0 (latest released)</p> <h3 dir="auto">Apache Airflow version</h3> <p dir="auto">2.1.2</p> <h3 dir="auto">Kubernetes Version</h3> <p dir="auto">1.18</p> <h3 dir="auto">Helm Chart configuration</h3> <p dir="auto">no configuration</p> <h3 dir="auto">Docker Image customisations</h3> <p dir="auto">no customization</p> <h3 dir="auto">What happened</h3> <p dir="auto">if we install airflow against argoCD, argoCD synchronizes all, then webserver and scheduler tries to run, inits with the wait-for-migrations but the job from migrate-database-job.yaml will never run because is not yet "installed" from the point of view of argoCD synchronization.</p> <h3 dir="auto">What you expected to happen</h3> <p dir="auto">To run the job from migrate-database-job.yaml without need of post-install in first "installation"</p> <h3 dir="auto">How to reproduce</h3> <p dir="auto">Install chart using argoCD (per example version v1.8.7+eb3d1fb)</p> <h3 dir="auto">Anything else</h3> <p dir="auto">We can fix it setting replicas to 0 to scheduler and webserver (minimum), then we let to continue to post-install and then change again the replicas to scheduler and webserver</p> <h3 dir="auto">Are you willing to submit PR?</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Yes I am willing to submit a PR!</li> </ul> <h3 dir="auto">Code of Conduct</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li> </ul>
<h3 dir="auto">Apache Airflow version</h3> <p dir="auto">2.2.0 (latest released)</p> <h3 dir="auto">Operating System</h3> <p dir="auto">Ubuntu 20.04.2 LTS</p> <h3 dir="auto">Versions of Apache Airflow Providers</h3> <p dir="auto">docker tag: apache/airflow:2.2.0-python3.7</p> <h3 dir="auto">Deployment</h3> <p dir="auto">Other</p> <h3 dir="auto">Deployment details</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">What happened</h3> <p dir="auto">No matter what time zone do I specify in config file [core/default_timezone] or dag's start date, the suffix of dag_run_id is always "+00:00".</p> <h3 dir="auto">What you expected to happen</h3> <p dir="auto">The time zone suffix of dag_run_id should be some kind related to the time zone that I specify in the config file or the dag object. Is there any way to customize the format of dag_run_id?</p> <h3 dir="auto">How to reproduce</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Anything else</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Are you willing to submit PR?</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Yes I am willing to submit a PR!</li> </ul> <h3 dir="auto">Code of Conduct</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li> </ul>
0
<p dir="auto">When overriding the contrastDefaultColor of a theme, the text color of a button does not change.</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { createMuiTheme } from 'material-ui/styles' import cyan from 'material-ui/colors/cyan' const theme = createMuiTheme({ palette: { primary: { ...cyan, contrastDefaultColor: 'light' }, }, })"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">createMuiTheme</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'material-ui/styles'</span> <span class="pl-k">import</span> <span class="pl-s1">cyan</span> <span class="pl-k">from</span> <span class="pl-s">'material-ui/colors/cyan'</span> <span class="pl-k">const</span> <span class="pl-s1">theme</span> <span class="pl-c1">=</span> <span class="pl-en">createMuiTheme</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">palette</span>: <span class="pl-kos">{</span> <span class="pl-c1">primary</span>: <span class="pl-kos">{</span> ...<span class="pl-s1">cyan</span><span class="pl-kos">,</span> <span class="pl-c1">contrastDefaultColor</span>: <span class="pl-s">'light'</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">)</span></pre></div> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">The following button should now have light text, on a cyan background</p> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;Button raised color=&quot;primary&quot;&gt;Example&lt;/Button&gt;"><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">Button</span> <span class="pl-c1">raised</span> <span class="pl-c1">color</span>="<span class="pl-s">primary</span>"<span class="pl-kos">&gt;</span>Example<span class="pl-kos">&lt;/</span><span class="pl-ent">Button</span><span class="pl-kos">&gt;</span></pre></div> <h2 dir="auto">Current Behavior</h2> <p dir="auto">The button still has dark text on a cyan background.</p> <h2 dir="auto">Environment</h2> <p dir="auto">Material-UI: 1.0.0-beta.9<br> React: 15.6.1</p>
<ul dir="auto"> <li>[ x] I have searched the <a href="https://github.com/mui-org/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">The api and example documentation for the modal should reflect the most up to date props, including show instead of open, and onRequestClose instead of onClose</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">Currently the documentation reads</p> <blockquote> <p dir="auto">open : bool -- If true the modal is open<br> onClose : func -- Callback fired when the component requests to be closed. The reason parameter can optionally be used to control the response to onClose.</p> <p dir="auto">Signature:<br> function(event: object, reason: string) =&gt; void<br> event: The event source of the callback<br> reason: Can be:"escapeKeyDown", "backdropClick"</p> </blockquote> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td>1.0.0-beta.22</td> </tr> <tr> <td>React</td> <td></td> </tr> <tr> <td>browser</td> <td></td> </tr> <tr> <td>etc</td> <td></td> </tr> </tbody> </table>
0
<p dir="auto">Describe what you were doing when the bug occurred:<br> 1.<br> 2.<br> 3.</p> <hr> <h2 dir="auto">Please do not remove the text below this line</h2> <p dir="auto">DevTools version: 4.2.1-3816ae7c3</p> <p dir="auto">Call stack: at chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:157108<br> at Map.forEach ()<br> at commitIndex (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:157054)<br> at e.getRankedChartData (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:157577)<br> at vl (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:314907)<br> at gi (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:59907)<br> at jl (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:107381)<br> at Lc (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:92715)<br> at Pc (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:92640)<br> at wc (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:89544)</p> <p dir="auto">Component stack: in vl<br> in div<br> in div<br> in div<br> in wo<br> in Unknown<br> in n<br> in Unknown<br> in div<br> in div<br> in Li<br> in $e<br> in dn<br> in Ca<br> in Pc</p>
<p dir="auto">PLEASE INCLUDE REPRO INSTRUCTIONS AND EXAMPLE CODE</p> <p dir="auto">I got this error when I click 'Ranked'.</p> <hr> <h2 dir="auto">Please do not remove the text below this line</h2> <p dir="auto">DevTools version: 4.0.4-3c6a219</p> <p dir="auto">Call stack: at chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:11441<br> at Map.forEach ()<br> at commitIndex (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:11387)<br> at e.getRankedChartData (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:11920)<br> at _i (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:56:277123)<br> at Ha (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:43:55890)<br> at Xl (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:43:98280)<br> at Hl (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:43:84255)<br> at Fl (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:43:81285)<br> at chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:43:25363</p> <p dir="auto">Component stack: in _i<br> in div<br> in div<br> in div<br> in Or<br> in Unknown<br> in n<br> in Unknown<br> in div<br> in div<br> in Ha<br> in le<br> in ve<br> in ko<br> in Ul</p>
1
<p dir="auto">(1) Shrink the page horizontally so the the navbar moves into the drop down. (2) Drop the drop down (3) Leaving the drop down dropped, stretch the page again. (4) Drop the drop down and it produces a nasty scroll bar in the header which you have to scroll down to see the dropped menu.</p>
<p dir="auto">Steps to reproduce:<br> Open, for example, bootstrap-3.0.2\examples\theme\index.html.</p> <ol dir="auto"> <li>Make screen smaller to get collapsed nav bar</li> <li>Click on one of menu for drop-down list in nav bar</li> <li>Maximize screen again</li> <li>Go to Drop-down - drop-down and click again - list will be in scroll area.</li> </ol> <p dir="auto">Did the same on tablet Nexus - 7'' : Landscape and Portrait, the same effect. After refresh everything is fine again.</p>
1
<p dir="auto">I installed the windows Version (Win7, 64bit), Atom 1.0 and i cant input \ (Alt-gr + ß) on a german keyboard.</p> <p dir="auto">Doesnt work in Latex or textfile.</p>
<p dir="auto">Original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="28529842" data-permission-text="Title is private" data-url="https://github.com/atom/atom/issues/1625" data-hovercard-type="issue" data-hovercard-url="/atom/atom/issues/1625/hovercard" href="https://github.com/atom/atom/issues/1625">atom/atom#1625</a></p> <hr> <p dir="auto">Use <a href="https://atom.io/packages/keyboard-localization" rel="nofollow">https://atom.io/packages/keyboard-localization</a> until this issue gets fixed (should be in the Blink upstream).</p>
1
<p dir="auto">Just a <code class="notranslate">ReferenceError: 'Promise' is not defined</code> on Internet Explorer 11 for <code class="notranslate">^2.0.0-beta.25</code>.</p> <p dir="auto">Here is the full error log:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ReferenceError: 'Promise' is not defined at updateOnClient (http://localhost:3000/_next/-/commons.js:16822:3) at mount (http://localhost:3000/_next/-/commons.js:16800:3) at componentWillMount (http://localhost:3000/_next/-/commons.js:16741:7) at Anonymous function (http://localhost:3000/_next/-/main.js:16665:11) at measureLifeCyclePerf (http://localhost:3000/_next/-/main.js:16392:5) at ReactCompositeComponent.performInitialMount (http://localhost:3000/_next/-/main.js:16664:9) at ReactCompositeComponent.mountComponent (http://localhost:3000/_next/-/main.js:16575:7) at ReactReconciler.mountComponent (http://localhost:3000/_next/-/main.js:1493:5) at ReactMultiChild.Mixin.mountChildren (http://localhost:3000/_next/-/main.js:21058:11) at ReactDOMComponent.Mixin._createContentMarkup (http://localhost:3000/_next/-/main.js:17995:9)"><pre class="notranslate"><code class="notranslate">ReferenceError: 'Promise' is not defined at updateOnClient (http://localhost:3000/_next/-/commons.js:16822:3) at mount (http://localhost:3000/_next/-/commons.js:16800:3) at componentWillMount (http://localhost:3000/_next/-/commons.js:16741:7) at Anonymous function (http://localhost:3000/_next/-/main.js:16665:11) at measureLifeCyclePerf (http://localhost:3000/_next/-/main.js:16392:5) at ReactCompositeComponent.performInitialMount (http://localhost:3000/_next/-/main.js:16664:9) at ReactCompositeComponent.mountComponent (http://localhost:3000/_next/-/main.js:16575:7) at ReactReconciler.mountComponent (http://localhost:3000/_next/-/main.js:1493:5) at ReactMultiChild.Mixin.mountChildren (http://localhost:3000/_next/-/main.js:21058:11) at ReactDOMComponent.Mixin._createContentMarkup (http://localhost:3000/_next/-/main.js:17995:9) </code></pre></div>
<p dir="auto">Hi everyone,</p> <p dir="auto">I am currently evaluating next.js for one of my client projects. While playing around with the Redux sample under <a href="https://github.com/zeit/next.js/tree/master/examples/with-redux">https://github.com/zeit/next.js/tree/master/examples/with-redux</a> I noticed that it throws the following error under IE11:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ReferenceError: 'Promise' is undefined at updateOnClient (http://172.16.102.1:3000/_next/-/commons.js:8875:3) at mount (http://172.16.102.1:3000/_next/-/commons.js:8853:3) at componentWillMount (http://172.16.102.1:3000/_next/-/commons.js:8794:7) at Anonymous function (http://172.16.102.1:3000/_next/-/main.js:16691:11) at measureLifeCyclePerf (http://172.16.102.1:3000/_next/-/main.js:16418:5) at ReactCompositeComponent.performInitialMount (http://172.16.102.1:3000/_next/-/main.js:16690:9) at ReactCompositeComponent.mountComponent (http://172.16.102.1:3000/_next/-/main.js:16601:7) at ReactReconciler.mountComponent (http://172.16.102.1:3000/_next/-/main.js:1496:5) at ReactMultiChild.Mixin.mountChildren (http://172.16.102.1:3000/_next/-/main.js:21084:11) at ReactDOMComponent.Mixin._createContentMarkup (http://172.16.102.1:3000/_next/-/main.js:18021:9)"><pre class="notranslate"><code class="notranslate">ReferenceError: 'Promise' is undefined at updateOnClient (http://172.16.102.1:3000/_next/-/commons.js:8875:3) at mount (http://172.16.102.1:3000/_next/-/commons.js:8853:3) at componentWillMount (http://172.16.102.1:3000/_next/-/commons.js:8794:7) at Anonymous function (http://172.16.102.1:3000/_next/-/main.js:16691:11) at measureLifeCyclePerf (http://172.16.102.1:3000/_next/-/main.js:16418:5) at ReactCompositeComponent.performInitialMount (http://172.16.102.1:3000/_next/-/main.js:16690:9) at ReactCompositeComponent.mountComponent (http://172.16.102.1:3000/_next/-/main.js:16601:7) at ReactReconciler.mountComponent (http://172.16.102.1:3000/_next/-/main.js:1496:5) at ReactMultiChild.Mixin.mountChildren (http://172.16.102.1:3000/_next/-/main.js:21084:11) at ReactDOMComponent.Mixin._createContentMarkup (http://172.16.102.1:3000/_next/-/main.js:18021:9) </code></pre></div> <p dir="auto">The other examples that I've tried don't seem to throw this error and they also make use of Promise inside of commons.js. Does anyone have any pointers on how to resolve this?</p> <p dir="auto">Regards,<br> Sven</p>
1
<h2 dir="auto">Feature Request</h2> <p dir="auto">In contexts where Babel is running alongside a filesystem watcher, there are cases where a plugin may load an arbitrary file. Take a plugin like <a href="https://www.npmjs.com/package/babel-plugin-inline-import" rel="nofollow">https://www.npmjs.com/package/babel-plugin-inline-import</a> for example. Or some usecases of babel-plugin-macros.</p> <p dir="auto">It would be ideal if Babel had a way for plugins to indicate that these dependencies exist, so that if callers of Babel wanted to take that into account, they could. For example, Webpack has <a href="https://webpack.js.org/api/loaders/#this-adddependency" rel="nofollow"><code class="notranslate">.addDependency</code></a>, so that changes to that file will cause the loader to re-execute when the dependency is changed. We could easily use this API in <code class="notranslate">babel-loader</code> to handle this. Implementing a similar API in <code class="notranslate">@babel/cli</code>'s watcher wouldn't be too bad either.</p> <p dir="auto">I don't know how other Babel wrappers would fair, but if someone wanted to help investigate that, it would certainly help. Off the top off my head we'd want to check, at the very least, if the following have ways to register additional files to watch:</p> <ul dir="auto"> <li>Meteor</li> <li>Jest</li> <li>Browserify</li> <li>Gulp</li> </ul> <h3 dir="auto">Edit</h3> <p dir="auto">We may also want to include in this work logic to help us take dependency file content into account for the purposes of cache invalidation. For example, <code class="notranslate">babel-loader</code>'s <code class="notranslate">cacheDirectory</code> option will not invalidate caches, if say a <code class="notranslate">.browserlistrc</code> file changes <code class="notranslate">preset-env</code>'s plugin list: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="364087522" data-permission-text="Title is private" data-url="https://github.com/babel/babel-loader/issues/690" data-hovercard-type="issue" data-hovercard-url="/babel/babel-loader/issues/690/hovercard" href="https://github.com/babel/babel-loader/issues/690">babel/babel-loader#690</a></p>
<p dir="auto">This is a bug report</p> <h3 dir="auto">Input Code</h3> <p dir="auto">The following code produces an error:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="export class Test { static staticProp = {}; constructor(props) { console.log(props); } log = (props) =&gt; { console.log(props.msg); }; }"><pre class="notranslate"><span class="pl-k">export</span> <span class="pl-k">class</span> <span class="pl-v">Test</span> <span class="pl-kos">{</span> <span class="pl-k">static</span> <span class="pl-c1">staticProp</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-en">constructor</span><span class="pl-kos">(</span><span class="pl-s1">props</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">props</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-c1">log</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-s1">props</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">props</span><span class="pl-kos">.</span><span class="pl-c1">msg</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <h3 dir="auto">Babel/Babylon Configuration (.babelrc, package.json, cli command)</h3> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ &quot;presets&quot;: [ [&quot;@babel/stage-1&quot;, { &quot;decoratorsLegacy&quot;: true }] ] } "><pre class="notranslate"><span class="pl-kos">{</span> <span class="pl-s">"presets"</span>: <span class="pl-kos">[</span> <span class="pl-kos">[</span><span class="pl-s">"@babel/stage-1"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-s">"decoratorsLegacy"</span>: <span class="pl-c1">true</span> <span class="pl-kos">}</span><span class="pl-kos">]</span> <span class="pl-kos">]</span> <span class="pl-kos">}</span></pre></div> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">Babel should successfully compile the code. Works with babel 6 in the REPL: <a href="https://babeljs.io/repl/#?babili=false&amp;browsers=&amp;build=&amp;builtIns=usage&amp;code_lz=KYDwDg9gTgLgBAYwDYEMDOa4BVhvgbwCg448UYBLBUmcqgBSgjDgF458BfAbmMQgB2eKAFcEMaAAowTMGgCUHPiQSC0EJMAB0SCAHNpshbxKc-uvWziHmCtgD4lJFWo3aLNuVoC2aPfJM4HkJOIA&amp;debug=false&amp;forceAllTransforms=false&amp;shippedProposals=false&amp;circleciRepo=&amp;evaluate=true&amp;fileSize=false&amp;lineWrap=false&amp;presets=stage-1&amp;prettier=false&amp;targets=&amp;version=6.26.0&amp;envVersion=1.6.2" rel="nofollow">https://babeljs.io/repl/#?babili=false&amp;browsers=&amp;build=&amp;builtIns=usage&amp;code_lz=KYDwDg9gTgLgBAYwDYEMDOa4BVhvgbwCg448UYBLBUmcqgBSgjDgF458BfAbmMQgB2eKAFcEMaAAowTMGgCUHPiQSC0EJMAB0SCAHNpshbxKc-uvWziHmCtgD4lJFWo3aLNuVoC2aPfJM4HkJOIA&amp;debug=false&amp;forceAllTransforms=false&amp;shippedProposals=false&amp;circleciRepo=&amp;evaluate=true&amp;fileSize=false&amp;lineWrap=false&amp;presets=stage-1&amp;prettier=false&amp;targets=&amp;version=6.26.0&amp;envVersion=1.6.2</a></p> <h3 dir="auto">Current Behavior</h3> <p dir="auto">Babel fails to compile with the following error:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Error: We don't know what to do with this node type. We were previously a Statement but we can't fit in here? at NodePath.insertAfter (/path/to/project/node_modules/@babel/traverse/lib/path/modification.js:154:11) at PluginPass.Class (/path/to/project/node_modules/@babel/plugin-proposal-class-properties/lib/index.js:267:14) at newFn (/path/to/project/node_modules/@babel/traverse/lib/visitors.js:243:21) at NodePath._call (/path/to/project/node_modules/@babel/traverse/lib/path/context.js:65:18) at NodePath.call (/path/to/project/node_modules/@babel/traverse/lib/path/context.js:40:17) at NodePath.visit (/path/to/project/node_modules/@babel/traverse/lib/path/context.js:100:12) at TraversalContext.visitQueue (/path/to/project/node_modules/@babel/traverse/lib/context.js:144:16) at TraversalContext.visitSingle (/path/to/project/node_modules/@babel/traverse/lib/context.js:104:19) at TraversalContext.visit (/path/to/project/node_modules/@babel/traverse/lib/context.js:185:19) at Function.traverse.node (/path/to/project/node_modules/@babel/traverse/lib/index.js:106:17)"><pre class="notranslate"><code class="notranslate">Error: We don't know what to do with this node type. We were previously a Statement but we can't fit in here? at NodePath.insertAfter (/path/to/project/node_modules/@babel/traverse/lib/path/modification.js:154:11) at PluginPass.Class (/path/to/project/node_modules/@babel/plugin-proposal-class-properties/lib/index.js:267:14) at newFn (/path/to/project/node_modules/@babel/traverse/lib/visitors.js:243:21) at NodePath._call (/path/to/project/node_modules/@babel/traverse/lib/path/context.js:65:18) at NodePath.call (/path/to/project/node_modules/@babel/traverse/lib/path/context.js:40:17) at NodePath.visit (/path/to/project/node_modules/@babel/traverse/lib/path/context.js:100:12) at TraversalContext.visitQueue (/path/to/project/node_modules/@babel/traverse/lib/context.js:144:16) at TraversalContext.visitSingle (/path/to/project/node_modules/@babel/traverse/lib/context.js:104:19) at TraversalContext.visit (/path/to/project/node_modules/@babel/traverse/lib/context.js:185:19) at Function.traverse.node (/path/to/project/node_modules/@babel/traverse/lib/index.js:106:17) </code></pre></div> <h3 dir="auto">Possible Solution</h3> <p dir="auto">Not sure, but it's interesting that either of the following adjustments can be used to work around the issue:</p> <div class="highlight highlight-source-diff notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// Use different identifiers for constructor arg and `log` arg export class Test { static staticProp = {}; constructor(props) { console.log(props); } - log = (props) =&gt; { + log = (p) =&gt; { - console.log(props.msg); + console.log(p.msg); }; }"><pre class="notranslate">// Use different identifiers for constructor arg and `log` arg export class Test { static staticProp = {}; constructor(props) { console.log(props); } <span class="pl-md"><span class="pl-md">-</span> log = (props) =&gt; {</span> <span class="pl-mi1"><span class="pl-mi1">+</span> log = (p) =&gt; {</span> <span class="pl-md"><span class="pl-md">-</span> console.log(props.msg);</span> <span class="pl-mi1"><span class="pl-mi1">+</span> console.log(p.msg);</span> }; }</pre></div> <div class="highlight highlight-source-diff notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// Export the class separate from its declaration -export class Test { +class Test { static staticProp = {}; constructor(props) { console.log(props); } log = (props) =&gt; { console.log(props.msg); }; } + +export { Test };"><pre class="notranslate">// Export the class separate from its declaration <span class="pl-md"><span class="pl-md">-</span>export class Test {</span> <span class="pl-mi1"><span class="pl-mi1">+</span>class Test {</span> static staticProp = {}; constructor(props) { console.log(props); } log = (props) =&gt; { console.log(props.msg); }; } <span class="pl-mi1"><span class="pl-mi1">+</span></span> <span class="pl-mi1"><span class="pl-mi1">+</span>export { Test };</span></pre></div> <h3 dir="auto">Context</h3> <p dir="auto">Trying to use what I <em>think</em> is compliant with the current proposals, but have to follow one of the provided workarounds instead.</p> <h3 dir="auto">Your Environment</h3> <table role="table"> <thead> <tr> <th>software</th> <th>version(s)</th> </tr> </thead> <tbody> <tr> <td>Babel</td> <td>7.0.0-beta.46</td> </tr> <tr> <td>Babylon</td> <td></td> </tr> <tr> <td>node</td> <td>8.6.0</td> </tr> <tr> <td>npm</td> <td>yarn 1.5.1</td> </tr> <tr> <td>Operating System</td> <td>mac OS</td> </tr> </tbody> </table>
0
<p dir="auto">I have run into an unexpected problem with (a more complicated version of) the following code:</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia&gt; function f(x::Bool) if x function g(y) return y end return g else function g(y) return y + 1 end return g end end f (generic function with 1 method) julia&gt; f(true) (::var&quot;#g#7&quot;) (generic function with 1 method) julia&gt; f(false) ERROR: UndefVarError: g not defined Stacktrace: [1] f(::Bool) at ./REPL[1]:11 [2] top-level scope at REPL[3]:1"><pre class="notranslate">julia<span class="pl-k">&gt;</span> <span class="pl-k">function</span> <span class="pl-en">f</span>(x<span class="pl-k">::</span><span class="pl-c1">Bool</span>) <span class="pl-k">if</span> x <span class="pl-k">function</span> <span class="pl-en">g</span>(y) <span class="pl-k">return</span> y <span class="pl-k">end</span> <span class="pl-k">return</span> g <span class="pl-k">else</span> <span class="pl-k">function</span> <span class="pl-en">g</span>(y) <span class="pl-k">return</span> y <span class="pl-k">+</span> <span class="pl-c1">1</span> <span class="pl-k">end</span> <span class="pl-k">return</span> g <span class="pl-k">end</span> <span class="pl-k">end</span> f (generic <span class="pl-k">function</span> with <span class="pl-c1">1</span> method) julia<span class="pl-k">&gt;</span> <span class="pl-c1">f</span>(<span class="pl-c1">true</span>) (<span class="pl-k">::</span><span class="pl-c1">var"#g#7"</span>) (generic <span class="pl-k">function</span> with <span class="pl-c1">1</span> method) julia<span class="pl-k">&gt;</span> <span class="pl-c1">f</span>(<span class="pl-c1">false</span>) ERROR<span class="pl-k">:</span> UndefVarError<span class="pl-k">:</span> g not defined Stacktrace<span class="pl-k">:</span> [<span class="pl-c1">1</span>] <span class="pl-c1">f</span>(<span class="pl-k">::</span><span class="pl-c1">Bool</span>) at <span class="pl-k">./</span>REPL[<span class="pl-c1">1</span>]<span class="pl-k">:</span><span class="pl-c1">11</span> [<span class="pl-c1">2</span>] top<span class="pl-k">-</span>level scope at REPL[<span class="pl-c1">3</span>]<span class="pl-k">:</span><span class="pl-c1">1</span></pre></div> <p dir="auto">I had assumed that closure notation <code class="notranslate">function f(x) ... end</code> was intended to be equivalent to <code class="notranslate">f = (x) -&gt; ...</code> (well, the former may allow you to attach an addition method to the function or closure, also). Lowering has generated the following code:</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia&gt; @code_lowered f(true) CodeInfo( 1 ─ Core.NewvarNode(:(g)) └── goto #3 if not x 2 ─ g = %new(Main.:(var&quot;#g#7&quot;)) └── return g 3 ─ return g )"><pre class="notranslate">julia<span class="pl-k">&gt;</span> <span class="pl-c1">@code_lowered</span> <span class="pl-c1">f</span>(<span class="pl-c1">true</span>) <span class="pl-c1">CodeInfo</span>( <span class="pl-c1">1</span> ─ Core<span class="pl-k">.</span><span class="pl-c1">NewvarNode</span>(:(g)) └── goto <span class="pl-c"><span class="pl-c">#</span>3 if not x</span> <span class="pl-c1">2</span> ─ g <span class="pl-k">=</span> <span class="pl-k">%</span><span class="pl-c1">new</span>(Main.:(<span class="pl-c1">var"#g#7"</span>)) └── <span class="pl-k">return</span> g <span class="pl-c1">3</span> ─ <span class="pl-k">return</span> g )</pre></div> <p dir="auto">It seems to have removed the second closure assignment entirely. I expected it to behave like the following assignment form (even with "long" function notation):</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia&gt; function f(x::Bool) if x g = function (y) return y end return g else g = function (y) return y + 1 end return g end end f (generic function with 1 method) julia&gt; @code_lowered f(true) CodeInfo( 1 ─ Core.NewvarNode(:(#8)) │ Core.NewvarNode(:(#9)) │ Core.NewvarNode(:(g)) └── goto #3 if not x 2 ─ #8 = %new(Main.:(var&quot;#8#10&quot;)) │ g = #8 └── return g 3 ─ #9 = %new(Main.:(var&quot;#9#11&quot;)) │ g = #9 └── return g ) "><pre class="notranslate">julia<span class="pl-k">&gt;</span> <span class="pl-k">function</span> <span class="pl-en">f</span>(x<span class="pl-k">::</span><span class="pl-c1">Bool</span>) <span class="pl-k">if</span> x g <span class="pl-k">=</span> <span class="pl-k">function</span> (y) <span class="pl-k">return</span> y <span class="pl-k">end</span> <span class="pl-k">return</span> g <span class="pl-k">else</span> g <span class="pl-k">=</span> <span class="pl-k">function</span> (y) <span class="pl-k">return</span> y <span class="pl-k">+</span> <span class="pl-c1">1</span> <span class="pl-k">end</span> <span class="pl-k">return</span> g <span class="pl-k">end</span> <span class="pl-k">end</span> f (generic <span class="pl-k">function</span> with <span class="pl-c1">1</span> method) julia<span class="pl-k">&gt;</span> <span class="pl-c1">@code_lowered</span> <span class="pl-c1">f</span>(<span class="pl-c1">true</span>) <span class="pl-c1">CodeInfo</span>( <span class="pl-c1">1</span> ─ Core<span class="pl-k">.</span><span class="pl-c1">NewvarNode</span>(:(<span class="pl-c"><span class="pl-c">#</span>8))</span> │ Core<span class="pl-k">.</span><span class="pl-c1">NewvarNode</span>(:(<span class="pl-c"><span class="pl-c">#</span>9))</span> │ Core<span class="pl-k">.</span><span class="pl-c1">NewvarNode</span>(:(g)) └── goto <span class="pl-c"><span class="pl-c">#</span>3 if not x</span> <span class="pl-c1">2</span> ─ <span class="pl-c"><span class="pl-c">#</span>8 = %new(Main.:(var"#8#10"))</span> │ g <span class="pl-k">=</span> <span class="pl-c"><span class="pl-c">#</span>8</span> └── <span class="pl-k">return</span> g <span class="pl-c1">3</span> ─ <span class="pl-c"><span class="pl-c">#</span>9 = %new(Main.:(var"#9#11"))</span> │ g <span class="pl-k">=</span> <span class="pl-c"><span class="pl-c">#</span>9</span> └── <span class="pl-k">return</span> g ) </pre></div>
<p dir="auto">Reproduce with</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia&gt; run(pipeline(`ls`, stdout=IOBuffer())) ERROR: MethodError: `uvhandle` has no method matching uvhandle(::Base.AbstractIOBuffer{Array{UInt8,1}}) in _jl_spawn at process.jl:253 in anonymous at process.jl:415 in setup_stdio at process.jl:403 in spawn at process.jl:414 in spawn at process.jl:293 in run at process.jl:530"><pre class="notranslate">julia<span class="pl-k">&gt;</span> <span class="pl-c1">run</span>(<span class="pl-c1">pipeline</span>(<span class="pl-s"><span class="pl-pds">`</span>ls<span class="pl-pds">`</span></span>, <span class="pl-c1">stdout</span><span class="pl-k">=</span><span class="pl-c1">IOBuffer</span>())) ERROR<span class="pl-k">:</span> MethodError<span class="pl-k">:</span> <span class="pl-s"><span class="pl-pds">`</span>uvhandle<span class="pl-pds">`</span></span> has no method matching <span class="pl-c1">uvhandle</span>(<span class="pl-k">::</span><span class="pl-c1">Base.AbstractIOBuffer{Array{UInt8,1}}</span>) <span class="pl-k">in</span> _jl_spawn at process<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">253</span> <span class="pl-k">in</span> anonymous at process<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">415</span> <span class="pl-k">in</span> setup_stdio at process<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">403</span> <span class="pl-k">in</span> spawn at process<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">414</span> <span class="pl-k">in</span> spawn at process<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">293</span> <span class="pl-k">in</span> run at process<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">530</span></pre></div>
0
<p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/.):no" rel="nofollow">http://kubernetes.io/docs/troubleshooting/.):no</a></p> <p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.): create service</p> <hr> <p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one):<br> FEATURE REQUEST</p> <p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>):</p> <p dir="auto"><strong>Environment</strong>:</p> <ul dir="auto"> <li><strong>Cloud provider or hardware configuration</strong>:</li> <li><strong>OS</strong> (e.g. from /etc/os-release):</li> <li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>):</li> <li><strong>Install tools</strong>:</li> <li><strong>Others</strong>:</li> </ul> <p dir="auto"><strong>What happened</strong>:</p> <p dir="auto"><strong>What you expected to happen</strong>:</p> <p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):</p> <p dir="auto"><strong>Anything else do we need to know</strong>:</p>
<p dir="auto">Many apps need to know where their peers are, to do some sort of replication or sharding. (hopefully this isn't a duplicate; I did search...)</p> <p dir="auto">We have the "endpoints" concept. If we provided easy-to-use plumbing, that could make it easier to use the above sort of app.</p> <p dir="auto">Having kubelet stuff them in env variables is not quite right, because the list could change.</p> <p dir="auto">So I propose making a little container that watches endpoints, and writes out a config file whenever they change.</p> <p dir="auto">It could take the service to watch as an env var. It should optionally write out a file (using the go template language), optionally run a command, optionally send HUP or whatever else seems useful.</p> <p dir="auto">People could use this as a sidecar container in their pod, to get their app joining the rest of their cluster.</p>
0
<p dir="auto">Please go to Stack Overflow for help and support:</p> <p dir="auto"><a href="https://stackoverflow.com/questions/tagged/tensorflow" rel="nofollow">https://stackoverflow.com/questions/tagged/tensorflow</a></p> <p dir="auto">If you open a GitHub issue, here is our policy:</p> <ol dir="auto"> <li>It must be a bug, a feature request, or a significant problem with documentation (for small docs fixes please send a PR instead).</li> <li>The form below must be filled out.</li> <li>It shouldn't be a TensorBoard issue. Those go <a href="https://github.com/tensorflow/tensorboard/issues">here</a>.</li> </ol> <p dir="auto"><strong>Here's why we have that policy</strong>: TensorFlow developers respond to issues. We want to focus on work that benefits the whole community, e.g., fixing bugs and adding features. Support only helps individuals. GitHub also notifies thousands of people when issues are filed. We want them to see you communicating an interesting problem, rather than being redirected to Stack Overflow.</p> <hr> <h3 dir="auto">System information</h3> <ul dir="auto"> <li><strong>Have I written custom code (as opposed to using a stock example script provided in TensorFlow)</strong>:</li> <li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04)</strong>:<br> windows 7 ultimate 64 bit.</li> <li><strong>TensorFlow installed from (source or binary)</strong>:<br> conda</li> <li><strong>TensorFlow version (use command below)</strong>:<br> 1.8.0</li> <li><strong>Python version</strong>:<br> 3.6.5</li> <li><strong>Bazel version (if compiling from source)</strong>:</li> <li><strong>GCC/Compiler version (if compiling from source)</strong>:</li> <li><strong>CUDA/cuDNN version</strong>:</li> <li><strong>GPU model and memory</strong>:</li> <li><strong>Exact command to reproduce</strong>:<br> 1 . conda create -n tensorflow pip python=3.5<br> 2 . activate tensorflow<br> 3 . pip install --ignore-installed --upgrade tensorflow<br> You can collect some of this information using our environment capture script:</li> </ul> <p dir="auto"><a href="https://github.com/tensorflow/tensorflow/tree/master/tools/tf_env_collect.sh">https://github.com/tensorflow/tensorflow/tree/master/tools/tf_env_collect.sh</a></p> <p dir="auto">Log from tf_env_collect.sh</p> <p dir="auto">Collecting system information...<br> cat: /proc/1/cgroup: No such file or directory<br> Traceback (most recent call last):<br> File "C:\Users\SridharKannan\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 14, in swig_import_helper<br> return importlib.import_module(mname)<br> File "C:\Users\SridharKannan\AppData\Local\Programs\Python\Python36\lib\importlib_<em>init</em>_.py", line 126, in import_module<br> return _bootstrap._gcd_import(name[level:], package, level)<br> File "", line 994, in _gcd_import<br> File "", line 971, in _find_and_load<br> File "", line 955, in _find_and_load_unlocked<br> File "", line 658, in _load_unlocked<br> File "", line 571, in module_from_spec<br> File "", line 922, in create_module<br> File "", line 219, in _call_with_frames_removed<br> ImportError: DLL load failed with error code -1073741795</p> <p dir="auto">During handling of the above exception, another exception occurred:</p> <p dir="auto">Traceback (most recent call last):<br> File "C:\Users\SridharKannan\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in <br> from tensorflow.python.pywrap_tensorflow_internal import *<br> File "C:\Users\SridharKannan\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 17, in <br> _pywrap_tensorflow_internal = swig_import_helper()<br> File "C:\Users\SridharKannan\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 16, in swig_import_helper<br> return importlib.import_module('<em>pywrap_tensorflow_internal')<br> File "C:\Users\SridharKannan\AppData\Local\Programs\Python\Python36\lib\importlib_<em>init</em></em>.py", line 126, in import_module<br> return _bootstrap._gcd_import(name[level:], package, level)<br> ModuleNotFoundError: No module named '_pywrap_tensorflow_internal'</p> <p dir="auto">During handling of the above exception, another exception occurred:</p> <p dir="auto">Traceback (most recent call last):<br> File "C:/Users/SRIDHA~1/AppData/Local/Temp/check_tf.py", line 1, in <br> import tensorflow as tf;<br> File "C:\Users\SridharKannan\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow_<em>init</em>_.py", line 24, in <br> from tensorflow.python import pywrap_tensorflow # pylint: disable=unused-import<br> File "C:\Users\SridharKannan\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python_<em>init</em>_.py", line 49, in <br> from tensorflow.python import pywrap_tensorflow<br> File "C:\Users\SridharKannan\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 74, in <br> raise ImportError(msg)<br> ImportError: Traceback (most recent call last):<br> File "C:\Users\SridharKannan\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 14, in swig_import_helper<br> return importlib.import_module(mname)<br> File "C:\Users\SridharKannan\AppData\Local\Programs\Python\Python36\lib\importlib_<em>init</em>_.py", line 126, in import_module<br> return _bootstrap._gcd_import(name[level:], package, level)<br> File "", line 994, in _gcd_import<br> File "", line 971, in _find_and_load<br> File "", line 955, in _find_and_load_unlocked<br> File "", line 658, in _load_unlocked<br> File "", line 571, in module_from_spec<br> File "", line 922, in create_module<br> File "", line 219, in _call_with_frames_removed<br> ImportError: DLL load failed with error code -1073741795</p> <p dir="auto">During handling of the above exception, another exception occurred:</p> <p dir="auto">Traceback (most recent call last):<br> File "C:\Users\SridharKannan\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in <br> from tensorflow.python.pywrap_tensorflow_internal import *<br> File "C:\Users\SridharKannan\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 17, in <br> _pywrap_tensorflow_internal = swig_import_helper()<br> File "C:\Users\SridharKannan\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 16, in swig_import_helper<br> return importlib.import_module('<em>pywrap_tensorflow_internal')<br> File "C:\Users\SridharKannan\AppData\Local\Programs\Python\Python36\lib\importlib_<em>init</em></em>.py", line 126, in import_module<br> return _bootstrap._gcd_import(name[level:], package, level)<br> ModuleNotFoundError: No module named '_pywrap_tensorflow_internal'</p> <p dir="auto">Failed to load the native TensorFlow runtime.</p> <p dir="auto">See <a href="https://www.tensorflow.org/install/install_sources#common_installation_problems" rel="nofollow">https://www.tensorflow.org/install/install_sources#common_installation_problems</a></p> <p dir="auto">for some common reasons and solutions. Include the entire stack trace<br> above this error message when asking for help.<br> Wrote environment to tf_env.txt. You can review the contents of that file.<br> and use it to populate the fields in the github issue template.</p> <p dir="auto">cat tf_env.txt</p> <h3 dir="auto">Describe the problem</h3> <p dir="auto">I tried to install tensorflow in my laptop.The installation went smoothly , but I'm getting error while importing tensorflow .</p> <h3 dir="auto">Source code / logs</h3> <blockquote> <blockquote> <blockquote> <p dir="auto">import tensorflow<br> Traceback (most recent call last):<br> File "C:\Users\SridharKannan\Miniconda3\envs\tensorflow\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 14, in swig_import_helper<br> return importlib.import_module(mname)<br> File "C:\Users\SridharKannan\Miniconda3\envs\tensorflow\lib\importlib_<em>init</em>_.py", line 126, in import_module<br> return _bootstrap._gcd_import(name[level:], package, level)<br> File "", line 985, in _gcd_import<br> File "", line 968, in _find_and_load<br> File "", line 957, in _find_and_load_unlocked<br> File "", line 666, in _load_unlocked<br> File "", line 577, in module_from_spec<br> File "", line 938, in create_module<br> File "", line 222, in _call_with_frames_removed<br> ImportError: DLL load failed with error code -1073741795</p> </blockquote> </blockquote> </blockquote> <p dir="auto">During handling of the above exception, another exception occurred:</p> <p dir="auto">Traceback (most recent call last):<br> File "C:\Users\SridharKannan\Miniconda3\envs\tensorflow\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in <br> from tensorflow.python.pywrap_tensorflow_internal import *<br> File "C:\Users\SridharKannan\Miniconda3\envs\tensorflow\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 17, in <br> _pywrap_tensorflow_internal = swig_import_helper()<br> File "C:\Users\SridharKannan\Miniconda3\envs\tensorflow\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 16, in swig_import_helper<br> return importlib.import_module('<em>pywrap_tensorflow_internal')<br> File "C:\Users\SridharKannan\Miniconda3\envs\tensorflow\lib\importlib_<em>init</em></em>.py", line 126, in import_module<br> return _bootstrap._gcd_import(name[level:], package, level)<br> ImportError: No module named '_pywrap_tensorflow_internal'</p> <p dir="auto">During handling of the above exception, another exception occurred:</p> <p dir="auto">Traceback (most recent call last):<br> File "", line 1, in <br> File "C:\Users\SridharKannan\Miniconda3\envs\tensorflow\lib\site-packages\tensorflow_<em>init</em>_.py", line 24, in <br> from tensorflow.python import pywrap_tensorflow # pylint: disable=unused-import<br> File "C:\Users\SridharKannan\Miniconda3\envs\tensorflow\lib\site-packages\tensorflow\python_<em>init</em>_.py", line 49, in <br> from tensorflow.python import pywrap_tensorflow<br> File "C:\Users\SridharKannan\Miniconda3\envs\tensorflow\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 74, in <br> raise ImportError(msg)<br> ImportError: Traceback (most recent call last):<br> File "C:\Users\SridharKannan\Miniconda3\envs\tensorflow\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 14, in swig_import_helper<br> return importlib.import_module(mname)<br> File "C:\Users\SridharKannan\Miniconda3\envs\tensorflow\lib\importlib_<em>init</em>_.py", line 126, in import_module<br> return _bootstrap._gcd_import(name[level:], package, level)<br> File "", line 985, in _gcd_import<br> File "", line 968, in _find_and_load<br> File "", line 957, in _find_and_load_unlocked<br> File "", line 666, in _load_unlocked<br> File "", line 577, in module_from_spec<br> File "", line 938, in create_module<br> File "", line 222, in _call_with_frames_removed<br> ImportError: DLL load failed with error code -1073741795</p> <p dir="auto">During handling of the above exception, another exception occurred:</p> <p dir="auto">Traceback (most recent call last):<br> File "C:\Users\SridharKannan\Miniconda3\envs\tensorflow\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in <br> from tensorflow.python.pywrap_tensorflow_internal import *<br> File "C:\Users\SridharKannan\Miniconda3\envs\tensorflow\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 17, in <br> _pywrap_tensorflow_internal = swig_import_helper()<br> File "C:\Users\SridharKannan\Miniconda3\envs\tensorflow\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 16, in swig_import_helper<br> return importlib.import_module('<em>pywrap_tensorflow_internal')<br> File "C:\Users\SridharKannan\Miniconda3\envs\tensorflow\lib\importlib_<em>init</em></em>.py", line 126, in import_module<br> return _bootstrap._gcd_import(name[level:], package, level)<br> ImportError: No module named '_pywrap_tensorflow_internal'</p> <p dir="auto">Failed to load the native TensorFlow runtime.</p> <p dir="auto">See <a href="https://www.tensorflow.org/install/install_sources#common_installation_problems" rel="nofollow">https://www.tensorflow.org/install/install_sources#common_installation_problems</a></p> <p dir="auto">for some common reasons and solutions. Include the entire stack trace<br> above this error message when asking for help.</p>
<h3 dir="auto">System information</h3> <ul dir="auto"> <li><strong>Have I written custom code (as opposed to using a stock example script provided in TensorFlow)</strong>: No, problem appears on import (import tensorflow as tf).</li> <li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04)</strong>: Windows 10 x64</li> <li><strong>TensorFlow installed from (source or binary)</strong>: binary (pip --no-cache-dir) install --upgrade tensorflow</li> <li><strong>TensorFlow version (use command below)</strong>: 1.6.0 (install says tensorflow-1.6.0-cp36-cp36m-win_amd64.whl)</li> <li><strong>Python version</strong>: 3.6.4 x64</li> <li><strong>Bazel version (if compiling from source)</strong>: n/a</li> <li><strong>GCC/Compiler version (if compiling from source)</strong>: n/a</li> <li><strong>CUDA/cuDNN version</strong>: n/a</li> <li><strong>GPU model and memory</strong>: n/a</li> <li><strong>Exact command to reproduce</strong>: import tensorflow as tf</li> </ul> <p dir="auto">You can collect some of this information using our environment capture script:</p> <p dir="auto"><a href="https://github.com/tensorflow/tensorflow/tree/master/tools/tf_env_collect.sh">https://github.com/tensorflow/tensorflow/tree/master/tools/tf_env_collect.sh</a></p> <p dir="auto">You can obtain the TensorFlow version with</p> <p dir="auto">python -c "import tensorflow as tf; print(tf.GIT_VERSION, tf.VERSION)"</p> <h3 dir="auto">Describe the problem</h3> <p dir="auto">When installing tensorflow 1.6.0 the import reports problems. See log below. Tried uninstalled r1.6 and reinstalled 1.5.0 to see if something else might be the problem. 1.5.0 works like a charm. Tried a clean install of 1.6.0 without any luck.</p> <p dir="auto">Ran the 'tensorflow_self_check.py' script. See log below.</p> <h3 dir="auto">Source code / logs</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Python 3.6.4 (v3.6.4:d48eceb, Dec 19 2017, 06:54:40) [MSC v.1900 64 bit (AMD64)] on win32 Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information. &gt;&gt;&gt; import tensorflow as tf Traceback (most recent call last): File &quot;C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py&quot;, line 18, in swig_import_helper return importlib.import_module(mname) File &quot;C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\importlib\__init__.py&quot;, line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 994, in _gcd_import File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 971, in _find_and_load File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 955, in _find_and_load_unlocked File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 658, in _load_unlocked File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 571, in module_from_spec File &quot;&lt;frozen importlib._bootstrap_external&gt;&quot;, line 922, in create_module File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 219, in _call_with_frames_removed ImportError: DLL load failed: A dynamic link library (DLL) initialization routine failed. During handling of the above exception, another exception occurred: Traceback (most recent call last): File &quot;C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py&quot;, line 58, in &lt;module&gt; from tensorflow.python.pywrap_tensorflow_internal import * File &quot;C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py&quot;, line 21, in &lt;module&gt; _pywrap_tensorflow_internal = swig_import_helper() File &quot;C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py&quot;, line 20, in swig_import_helper return importlib.import_module('_pywrap_tensorflow_internal') File &quot;C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\importlib\__init__.py&quot;, line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) ModuleNotFoundError: No module named '_pywrap_tensorflow_internal' During handling of the above exception, another exception occurred: Traceback (most recent call last): File &quot;&lt;stdin&gt;&quot;, line 1, in &lt;module&gt; File &quot;C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\__init__.py&quot;, line 24, in &lt;module&gt; from tensorflow.python import * File &quot;C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\__init__.py&quot;, line 49, in &lt;module&gt; from tensorflow.python import pywrap_tensorflow File &quot;C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py&quot;, line 74, in &lt;module&gt; raise ImportError(msg) ImportError: Traceback (most recent call last): File &quot;C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py&quot;, line 18, in swig_import_helper return importlib.import_module(mname) File &quot;C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\importlib\__init__.py&quot;, line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 994, in _gcd_import File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 971, in _find_and_load File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 955, in _find_and_load_unlocked File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 658, in _load_unlocked File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 571, in module_from_spec File &quot;&lt;frozen importlib._bootstrap_external&gt;&quot;, line 922, in create_module File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 219, in _call_with_frames_removed ImportError: DLL load failed: A dynamic link library (DLL) initialization routine failed. During handling of the above exception, another exception occurred: Traceback (most recent call last): File &quot;C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py&quot;, line 58, in &lt;module&gt; from tensorflow.python.pywrap_tensorflow_internal import * File &quot;C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py&quot;, line 21, in &lt;module&gt; _pywrap_tensorflow_internal = swig_import_helper() File &quot;C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py&quot;, line 20, in swig_import_helper return importlib.import_module('_pywrap_tensorflow_internal') File &quot;C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\importlib\__init__.py&quot;, line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) ModuleNotFoundError: No module named '_pywrap_tensorflow_internal' Failed to load the native TensorFlow runtime. See https://www.tensorflow.org/install/install_sources#common_installation_problems for some common reasons and solutions. Include the entire stack trace above this error message when asking for help. ------------------------ When running 'tensorflow_self_check.py' this is what is reported. Supposed to have installed the CPU version so cuda is not installed. ERROR: Failed to import the TensorFlow module. - Python version is 3.6. - TensorFlow is installed at: C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow - Could not load 'cudart64_80.dll'. The GPU version of TensorFlow requires that this DLL be installed in a directory that is named in your %PATH% environment variable. Download and install CUDA 8.0 from this URL: https://developer.nvidia.com/cuda-toolkit - Could not load 'cudnn64_5.dll'. The GPU version of TensorFlow requires that this DLL be installed in a directory that is named in your %PATH% environment variable. Note that installing cuDNN is a separate step from installing CUDA, and it is often found in a different directory from the CUDA DLLs. You may install the necessary DLL by downloading cuDNN 5.1 from this URL: https://developer.nvidia.com/cudnn - Could not find cuDNN."><pre class="notranslate"><code class="notranslate">Python 3.6.4 (v3.6.4:d48eceb, Dec 19 2017, 06:54:40) [MSC v.1900 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. &gt;&gt;&gt; import tensorflow as tf Traceback (most recent call last): File "C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 18, in swig_import_helper return importlib.import_module(mname) File "C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\importlib\__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "&lt;frozen importlib._bootstrap&gt;", line 994, in _gcd_import File "&lt;frozen importlib._bootstrap&gt;", line 971, in _find_and_load File "&lt;frozen importlib._bootstrap&gt;", line 955, in _find_and_load_unlocked File "&lt;frozen importlib._bootstrap&gt;", line 658, in _load_unlocked File "&lt;frozen importlib._bootstrap&gt;", line 571, in module_from_spec File "&lt;frozen importlib._bootstrap_external&gt;", line 922, in create_module File "&lt;frozen importlib._bootstrap&gt;", line 219, in _call_with_frames_removed ImportError: DLL load failed: A dynamic link library (DLL) initialization routine failed. During handling of the above exception, another exception occurred: Traceback (most recent call last): File "C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in &lt;module&gt; from tensorflow.python.pywrap_tensorflow_internal import * File "C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 21, in &lt;module&gt; _pywrap_tensorflow_internal = swig_import_helper() File "C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 20, in swig_import_helper return importlib.import_module('_pywrap_tensorflow_internal') File "C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\importlib\__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) ModuleNotFoundError: No module named '_pywrap_tensorflow_internal' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in &lt;module&gt; File "C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\__init__.py", line 24, in &lt;module&gt; from tensorflow.python import * File "C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\__init__.py", line 49, in &lt;module&gt; from tensorflow.python import pywrap_tensorflow File "C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 74, in &lt;module&gt; raise ImportError(msg) ImportError: Traceback (most recent call last): File "C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 18, in swig_import_helper return importlib.import_module(mname) File "C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\importlib\__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "&lt;frozen importlib._bootstrap&gt;", line 994, in _gcd_import File "&lt;frozen importlib._bootstrap&gt;", line 971, in _find_and_load File "&lt;frozen importlib._bootstrap&gt;", line 955, in _find_and_load_unlocked File "&lt;frozen importlib._bootstrap&gt;", line 658, in _load_unlocked File "&lt;frozen importlib._bootstrap&gt;", line 571, in module_from_spec File "&lt;frozen importlib._bootstrap_external&gt;", line 922, in create_module File "&lt;frozen importlib._bootstrap&gt;", line 219, in _call_with_frames_removed ImportError: DLL load failed: A dynamic link library (DLL) initialization routine failed. During handling of the above exception, another exception occurred: Traceback (most recent call last): File "C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in &lt;module&gt; from tensorflow.python.pywrap_tensorflow_internal import * File "C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 21, in &lt;module&gt; _pywrap_tensorflow_internal = swig_import_helper() File "C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 20, in swig_import_helper return importlib.import_module('_pywrap_tensorflow_internal') File "C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\importlib\__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) ModuleNotFoundError: No module named '_pywrap_tensorflow_internal' Failed to load the native TensorFlow runtime. See https://www.tensorflow.org/install/install_sources#common_installation_problems for some common reasons and solutions. Include the entire stack trace above this error message when asking for help. ------------------------ When running 'tensorflow_self_check.py' this is what is reported. Supposed to have installed the CPU version so cuda is not installed. ERROR: Failed to import the TensorFlow module. - Python version is 3.6. - TensorFlow is installed at: C:\Users\Jonas\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow - Could not load 'cudart64_80.dll'. The GPU version of TensorFlow requires that this DLL be installed in a directory that is named in your %PATH% environment variable. Download and install CUDA 8.0 from this URL: https://developer.nvidia.com/cuda-toolkit - Could not load 'cudnn64_5.dll'. The GPU version of TensorFlow requires that this DLL be installed in a directory that is named in your %PATH% environment variable. Note that installing cuDNN is a separate step from installing CUDA, and it is often found in a different directory from the CUDA DLLs. You may install the necessary DLL by downloading cuDNN 5.1 from this URL: https://developer.nvidia.com/cudnn - Could not find cuDNN. </code></pre></div>
1
<ul dir="auto"> <li>Electron version: 2.0.0-beta.7</li> <li>Operating system: Linux - Ubuntu<br> More operating systems here:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/282777/39531114-c361d962-4e2a-11e8-8fc3-d975cc4bf582.png"><img src="https://user-images.githubusercontent.com/282777/39531114-c361d962-4e2a-11e8-8fc3-d975cc4bf582.png" alt="image" style="max-width: 100%;"></a></li> </ul> <ul dir="auto"> <li>Last known working Electron version: 1.8.x</li> </ul> <h3 dir="auto">Expected behavior</h3> <p dir="auto">No crash</p> <h3 dir="auto">Actual behavior</h3> <details> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" 0.0.0 Linux 4.13.0-39-generic #44-Ubuntu SMP Thu Apr 5 14:25:01 UTC 2018 x86_64 CPU: amd64 family 6 model 60 stepping 3 1 CPU GPU: UNKNOWN Crash reason: SIGABRT Crash address: 0x3e80000194e Process uptime: not available Thread 0 (crashed) 0 libc-2.23.so + 0x35428 rax = 0x0000000000000000 rdx = 0x0000000000000006 rcx = 0x00007f9afd5fd428 rbx = 0x00000000000000a6 rsi = 0x000000000000194e rdi = 0x000000000000194e rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab1858 r8 = 0x0000000000000000 r9 = 0x0000000000000001 r10 = 0x0000000000000008 r11 = 0x0000000000000206 r12 = 0x00000000000000a6 r13 = 0x00007ffee0ab1a08 r14 = 0x00007ffee0ab1a08 r15 = 0x0000000000000002 rip = 0x00007f9afd5fd428 Found by: given as instruction pointer in context 1 libc-2.23.so + 0x3702a rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab1860 rip = 0x00007f9afd5ff02a Found by: stack scanning 2 libc-2.23.so + 0x8453c rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab1940 rip = 0x00007f9afd64c53c Found by: stack scanning 3 libc-2.23.so + 0x777ea rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab1990 rip = 0x00007f9afd63f7ea Found by: stack scanning 4 libc-2.23.so + 0x190ed8 rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab1998 rip = 0x00007f9afd758ed8 Found by: stack scanning 5 libc-2.23.so + 0x190ee8 rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab19b8 rip = 0x00007f9afd758ee8 Found by: stack scanning 6 libc-2.23.so + 0x18dd3f rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab19c8 rip = 0x00007f9afd755d3f Found by: stack scanning 7 libc-2.23.so + 0x190eed rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab19d8 rip = 0x00007f9afd758eed Found by: stack scanning 8 libc-2.23.so + 0x190ef3 rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab19f8 rip = 0x00007f9afd758ef3 Found by: stack scanning 9 libc-2.23.so + 0x190ef3 rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab1a18 rip = 0x00007f9afd758ef3 Found by: stack scanning 10 libc-2.23.so + 0x775ce rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab1a40 rip = 0x00007f9afd63f5ce Found by: stack scanning 11 libglib-2.0.so.0.4800.2!g_variant_serialiser_needed_size + 0x319 rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab1a60 rip = 0x00007f9affee7cf9 Found by: stack scanning 12 libglib-2.0.so.0.4800.2!g_variant_new_fixed_array + 0x1c7 rbx = 0x00000000061d8010 rbp = 0x00007ffee0ab1b50 rsp = 0x00007ffee0ab1af0 r12 = 0x00007f9afd63f654 r13 = 0x00007f9afd758ee8 r14 = 0x0000000000000003 r15 = 0x00007ffee0ab1b00 rip = 0x00007f9affee1ca7 Found by: call frame info 13 libc-2.23.so + 0x775ce rbx = 0x00000000061d8010 rbp = 0x00007ffee0ab1b50 rsp = 0x00007ffee0ab1b00 r12 = 0x00007f9afd63f654 r13 = 0x00007f9afd758ee8 r14 = 0x0000000000000003 r15 = 0x00007ffee0ab1b00 rip = 0x00007f9afd63f5ce Found by: call frame info 14 libc-2.23.so + 0x39786 rbp = 0x00007ffee0ab1b50 rsp = 0x00007ffee0ab1b20 rip = 0x00007f9afd601786 Found by: stack scanning 15 libc-2.23.so + 0x77654 rbp = 0x00007ffee0ab1b50 rsp = 0x00007ffee0ab1b30 rip = 0x00007f9afd63f654 Found by: stack scanning 16 libc-2.23.so + 0x190ed8 rbp = 0x00007ffee0ab1b50 rsp = 0x00007ffee0ab1b38 rip = 0x00007f9afd758ed8 Found by: stack scanning 17 libc-2.23.so + 0x775ce rsp = 0x00007ffee0ab1b60 rip = 0x00007f9afd63f5ce Found by: stack scanning 18 libgobject-2.0.so.0.4800.2!g_cclosure_marshal_BOOLEAN__BOXED_BOXEDv + 0x830 rsp = 0x00007ffee0ab1b78 rip = 0x00007f9b023b6110 Found by: stack scanning 19 libc-2.23.so + 0x18dd3f rsp = 0x00007ffee0ab1bb0 rip = 0x00007f9afd755d3f Found by: stack scanning 20 libc-2.23.so + 0x8213e rsp = 0x00007ffee0ab1c00 rip = 0x00007f9afd64a13e Found by: stack scanning 21 libglib-2.0.so.0.4800.2!g_variant_get_child_value + 0xf0 rsp = 0x00007ffee0ab1c98 rip = 0x00007f9affee2500 Found by: stack scanning 22 0x7f9a680078b0 rbx = 0x00007f9afd64c184 rbp = 0x0000000000000015 rsp = 0x00007ffee0ab1cf8 r12 = 0x0000000000000113 rip = 0x00007f9a680078b0 Found by: call frame info 23 skypeforlinux + 0x2fc0fac rsp = 0x00007ffee0ab1d00 rip = 0x00000000047b8fac Found by: stack scanning 24 libglib-2.0.so.0.4800.2!g_malloc + 0x19 rsp = 0x00007ffee0ab1d30 rip = 0x00007f9affeac719 Found by: stack scanning 25 libglib-2.0.so.0.4800.2!g_variant_unref + 0x1ed rbx = 0x00007f9a68007890 rsp = 0x00007ffee0ab1d40 rip = 0x00007f9affee208d Found by: call frame info 26 libglib-2.0.so.0.4800.2!g_variant_get_data + 0x1f rbx = 0x00007f9a68007890 rbp = 0x00007f9a680078b0 rsp = 0x00007ffee0ab1d60 rip = 0x00007f9affee22ff Found by: call frame info 27 libglib-2.0.so.0.4800.2!g_variant_get + 0xda rbx = 0x00007f9aef778070 rbp = 0x00007f9a68007890 rsp = 0x00007ffee0ab1d80 rip = 0x00007f9affee110a Found by: call frame info 28 libgioremote-volume-monitor.so + 0x8e63 rbx = 0x000000000601cba0 rbp = 0x00007f9aef778000 rsp = 0x00007ffee0ab1e70 rip = 0x00007f9aef76de63 Found by: call frame info 29 libc-2.23.so + 0x84184 rsp = 0x00007ffee0ab1ee0 rip = 0x00007f9afd64c184 Found by: stack scanning 30 skypeforlinux + 0x2fc0fac rsp = 0x00007ffee0ab1f00 rip = 0x00000000047b8fac Found by: stack scanning 31 libglib-2.0.so.0.4800.2!g_datalist_id_set_data_full + 0x1ce rsp = 0x00007ffee0ab1f40 rip = 0x00007f9affe8ae6e Found by: stack scanning 32 0x7ffee0ab1fd0 rbx = 0x000000000601cba0 rbp = 0x0000000005ea1d39 rsp = 0x00007ffee0ab1f90 r12 = 0xf5a6c04319cc4e00 r13 = 0x0000000004f159e0 r14 = 0x00007f9a78002770 r15 = 0x00007f9a68007890 rip = 0x00007ffee0ab1fd0 Found by: call frame info 33 libgioremote-volume-monitor.so + 0xcbfe rsp = 0x00007ffee0ab1fb0 rip = 0x00007f9aef771bfe Found by: stack scanning 34 skypeforlinux + 0x894ce0 rsp = 0x00007ffee0ab1ff8 rip = 0x0000000000972ce0 Found by: stack scanning 35 libc-2.23.so + 0x84184 rsp = 0x00007ffee0ab2000 rip = 0x00007f9afd64c184 Found by: stack scanning 36 libglib-2.0.so.0.4800.2!g_str_equal + 0x20 rsp = 0x00007ffee0ab2008 rip = 0x00007f9affe96770 Found by: stack scanning 37 skypeforlinux + 0x2fc0fac rsp = 0x00007ffee0ab2020 rip = 0x00000000047b8fac Found by: stack scanning 38 libglib-2.0.so.0.4800.2!g_malloc + 0x19 rsp = 0x00007ffee0ab2050 rip = 0x00007f9affeac719 Found by: stack scanning 39 0xf5a6c04319cc4e00 rbx = 0x000000000600a640 rsp = 0x00007ffee0ab2060 rip = 0xf5a6c04319cc4e00 Found by: call frame info 40 skypeforlinux + 0x371d9e0 rsp = 0x00007ffee0ab2088 rip = 0x0000000004f159e0 Found by: stack scanning 41 libgioremote-volume-monitor.so + 0xda8b rsp = 0x00007ffee0ab2090 rip = 0x00007f9aef772a8b Found by: stack scanning 42 libgobject-2.0.so.0.4800.2!g_object_unref + 0xed8 rsp = 0x00007ffee0ab20e0 rip = 0x00007f9b023b7ad8 Found by: stack scanning 43 libgobject-2.0.so.0.4800.2!g_object_newv + 0xd1 rbx = 0x0000000000000000 rbp = 0x00007ffee0ab2210 rsp = 0x00007ffee0ab21b0 r12 = 0x0000000005f28300 r13 = 0x00000000061d7c10 r14 = 0x0000000000000000 r15 = 0x00000000065e39b0 rip = 0x00007f9b023b8c01 Found by: call frame info 44 libgobject-2.0.so.0.4800.2!g_object_new + 0x104 rbx = 0x0000000005f28300 rbp = 0x0000000000000000 rsp = 0x00007ffee0ab2220 r12 = 0x0000000006016800 r13 = 0x00000000061d7c10 r14 = 0x0000000000000000 r15 = 0x00000000065e39b0 rip = 0x00007f9b023b9534 Found by: call frame info 45 libgio-2.0.so.0.4800.2!g_volume_monitor_get + 0x7c rbx = 0x00000000065b5230 rbp = 0x00000000065ca130 rsp = 0x00007ffee0ab2310 r12 = 0x0000000006016800 r13 = 0x00000000061d7c10 r14 = 0x0000000000000000 r15 = 0x00000000065e39b0 rip = 0x00007f9b02688ebc Found by: call frame info 46 libgtk-3.so.0.1800.9 + 0x25c3d5 rbx = 0x00000000065de450 rbp = 0x00000000065ca130 rsp = 0x00007ffee0ab2340 r12 = 0x0000000006016800 r13 = 0x0000000000000000 r14 = 0x0000000000000000 r15 = 0x00000000065e39b0 rip = 0x00007f9b03a683d5 Found by: call frame info 47 libgobject-2.0.so.0.4800.2!g_type_create_instance + 0x1f9 rsp = 0x00007ffee0ab2370 rip = 0x00007f9b023d5359 Found by: stack scanning 48 libgobject-2.0.so.0.4800.2!g_object_unref + 0x71b rbx = 0x0000000000000000 rbp = 0x00007ffee0ab2590 rsp = 0x00007ffee0ab2460 r12 = 0x00000000065ca130 r13 = 0x0000000000000000 r14 = 0x0000000006016800 rip = 0x00007f9b023b731b Found by: call frame info 49 libgobject-2.0.so.0.4800.2!g_object_newv + 0xd1 rbx = 0x0000000000000000 rbp = 0x00007ffee0ab2590 rsp = 0x00007ffee0ab2530 r12 = 0x00000000065ca130 r13 = 0x00007ffee0ab2750 r14 = 0x0000000005fdcc00 r15 = 0x00000000065e39b0 rip = 0x00007f9b023b8c01 Found by: call frame info 50 libgtk-3.so.0.1800.9 + 0x11a75a rbx = 0x000000000604d240 rbp = 0x0000000000000000 rsp = 0x00007ffee0ab25a0 r12 = 0x00007ffee0ab2700 r13 = 0x00007ffee0ab2750 r14 = 0x0000000005fdcc00 r15 = 0x00000000065e39b0 rip = 0x00007f9b0392675a Found by: call frame info 51 skypeforlinux + 0x2fc1055 rsp = 0x00007ffee0ab25b0 rip = 0x00000000047b9055 Found by: stack scanning 52 libgtk-3.so.0.1800.9 + 0x11ce73 rsp = 0x00007ffee0ab2620 rip = 0x00007f9b03928e73 Found by: stack scanning 53 libglib-2.0.so.0.4800.2!g_slist_concat + 0x1b rsp = 0x00007ffee0ab2690 rip = 0x00007f9affec503b Found by: stack scanning 54 0x65ca1d0 rbx = 0xf5a6c04319cc4e00 rbp = 0x00000000063d98d0 rsp = 0x00007ffee0ab26b0 rip = 0x00000000065ca1d0 Found by: call frame info 55 libglib-2.0.so.0.4800.2!g_markup_parse_context_push + 0x233 rsp = 0x00007ffee0ab26e0 rip = 0x00007f9affeaa5a3 Found by: stack scanning 56 libgtk-3.so.0.1800.9 + 0x4175a4 rsp = 0x00007ffee0ab26f0 rip = 0x00007f9b03c235a4 Found by: stack scanning 57 libgtk-3.so.0.1800.9 + 0x3b3085 rsp = 0x00007ffee0ab26f8 rip = 0x00007f9b03bbf085 Found by: stack scanning 58 libglib-2.0.so.0.4800.2!g_slist_prepend + 0x16 rsp = 0x00007ffee0ab2700 rip = 0x00007f9affec49f6 Found by: stack scanning 59 0x7ffee0ab2748 rbx = 0x000000000000000b rbp = 0x0000000005fdcc00 rsp = 0x00007ffee0ab2720 rip = 0x00007ffee0ab2748 Found by: call frame info 60 libglib-2.0.so.0.4800.2!g_string_insert_len + 0x101 rsp = 0x00007ffee0ab2750 rip = 0x00007f9affec7fe1 Found by: stack scanning 61 libglib-2.0.so.0.4800.2!g_markup_parse_context_parse + 0xfc3 rbx = 0x00007f9affef7d60 rbp = 0x00007ffee0ab27e0 rsp = 0x00007ffee0ab27a0 r12 = 0x00007ffee0ab27d8 r13 = 0x00000000063d98d0 r14 = 0x0000000000000007 r15 = 0x00007ffee0ab2890 rip = 0x00007f9affeab763 Found by: call frame info 62 libgtk-3.so.0.1800.9 + 0x11d8d6 rbx = 0x000000000604d240 rbp = 0x00000000065e39b0 rsp = 0x00007ffee0ab2830 r12 = 0x00007ffee0ab2890 r13 = 0x0000000000000000 r14 = 0x0000000000000000 r15 = 0x0000000000007070 rip = 0x00007f9b039298d6 Found by: call frame info 63 libgtk-3.so.0.1800.9 + 0x3b2df4 rsp = 0x00007ffee0ab2840 rip = 0x00007f9b03bbedf4 Found by: stack scanning 64 libgtk-3.so.0.1800.9 + 0x118b78 rsp = 0x00007ffee0ab2880 rip = 0x00007f9b03924b78 Found by: stack scanning 65 libgtk-3.so.0.1800.9 + 0x362e07 rsp = 0x00007ffee0ab28e0 rip = 0x00007f9b03b6ee07 Found by: stack scanning 66 libgtk-3.so.0.1800.9 + 0x1ae4f1 rsp = 0x00007ffee0ab2940 rip = 0x00007f9b039ba4f1 Found by: stack scanning 67 libgobject-2.0.so.0.4800.2!g_type_create_instance + 0x1f9 rsp = 0x00007ffee0ab2960 rip = 0x00007f9b023d5359 Found by: stack scanning 68 libgobject-2.0.so.0.4800.2!g_object_unref + 0x71b rbx = 0x0000000000000000 rbp = 0x00007ffee0ab2b80 rsp = 0x00007ffee0ab2a50 r12 = 0x0000000005f23050 r13 = 0x0000000000000000 r14 = 0x0000000006632000 rip = 0x00007f9b023b731b Found by: call frame info 69 libgobject-2.0.so.0.4800.2!g_object_newv + 0xd1 rbx = 0x0000000000000000 rbp = 0x00007ffee0ab2b80 rsp = 0x00007ffee0ab2b20 r12 = 0x0000000005f23050 r13 = 0x00000000061e2d80 r14 = 0x000000000662eb00 r15 = 0x0000000006631de0 rip = 0x00007f9b023b8c01 Found by: call frame info 70 libgtk-3.so.0.1800.9 + 0x11a75a rbx = 0x000000000662eb00 rbp = 0x0000000000000000 rsp = 0x00007ffee0ab2b90 r12 = 0x00000000063ad498 r13 = 0x00000000061e2d80 r14 = 0x000000000662eb00 r15 = 0x0000000006631de0 rip = 0x00007f9b0392675a Found by: call frame info 71 skypeforlinux + 0x894ce0 rsp = 0x00007ffee0ab2bb8 rip = 0x0000000000972ce0 Found by: stack scanning 72 libgtk-3.so.0.1800.9 + 0x4175a4 rsp = 0x00007ffee0ab2c00 rip = 0x00007f9b03c235a4 Found by: stack scanning 73 libgtk-3.so.0.1800.9 + 0x11bb65 rsp = 0x00007ffee0ab2c10 rip = 0x00007f9b03927b65 Found by: stack scanning 74 libgtk-3.so.0.1800.9 + 0x11d4f1 rsp = 0x00007ffee0ab2c40 rip = 0x00007f9b039294f1 Found by: stack scanning 75 libglib-2.0.so.0.4800.2!g_markup_parse_context_pop + 0x117 rsp = 0x00007ffee0ab2c90 rip = 0x00007f9affeaa6d7 Found by: stack scanning 76 libglib-2.0.so.0.4800.2!g_markup_parse_context_parse + 0xd8e rbx = 0x00007f9affef7d60 rbp = 0x00007ffee0ab2db0 rsp = 0x00007ffee0ab2cc0 rip = 0x00007f9affeab52e Found by: call frame info 77 libgtk-3.so.0.1800.9 + 0x11d8d6 rbx = 0x00000000063ad490 rbp = 0x0000000006631de0 rsp = 0x00007ffee0ab2d50 r12 = 0x00007ffee0ab2db0 r13 = 0x0000000000000000 r14 = 0x0000000000000000 r15 = 0x0000000000000763 rip = 0x00007f9b039298d6 Found by: call frame info 78 libgtk-3.so.0.1800.9 + 0x3b2df4 rsp = 0x00007ffee0ab2d60 rip = 0x00007f9b03bbedf4 Found by: stack scanning 79 libgtk-3.so.0.1800.9 + 0x3c9f9d rsp = 0x00007ffee0ab2d68 rip = 0x00007f9b03bd5f9d Found by: stack scanning 80 libgtk-3.so.0.1800.9 + 0x118b78 rsp = 0x00007ffee0ab2da0 rip = 0x00007f9b03924b78 Found by: stack scanning 81 libgtk-3.so.0.1800.9 + 0x362e07 rsp = 0x00007ffee0ab2e00 rip = 0x00007f9b03b6ee07 Found by: stack scanning 82 libgtk-3.so.0.1800.9 + 0x1a773e rsp = 0x00007ffee0ab2e60 rip = 0x00007f9b039b373e Found by: stack scanning 83 libgobject-2.0.so.0.4800.2!g_type_create_instance + 0x1f9 rsp = 0x00007ffee0ab2e70 rip = 0x00007f9b023d5359 Found by: stack scanning 84 libgobject-2.0.so.0.4800.2!g_object_unref + 0x71b rbx = 0x00007ffee0ab3110 rbp = 0x00007ffee0ab3250 rsp = 0x00007ffee0ab2f60 r12 = 0x00000000061cbf30 r13 = 0x0000000000000002 r14 = 0x0000000006015400 rip = 0x00007f9b023b731b Found by: call frame info 85 libgobject-2.0.so.0.4800.2!g_object_new_valist + 0x3b5 rbx = 0x0000000000000002 rbp = 0x00007ffee0ab3250 rsp = 0x00007ffee0ab3030 r12 = 0x00000000061cbf30 r13 = 0x00007f9b023e0d40 r14 = 0x0000000000000001 r15 = 0x00007ffee0ab30d0 rip = 0x00007f9b023b91b5 Found by: call frame info 86 libgobject-2.0.so.0.4800.2!g_object_new + 0xf1 rbx = 0x000000000626e600 rbp = 0x00007f9b03bbc8a2 rsp = 0x00007ffee0ab3260 r12 = 0x0000000000000000 r13 = 0x00000000002230a4 r14 = 0x0000000000000000 r15 = 0x0000000006611408 rip = 0x00007f9b023b9521 Found by: call frame info 87 libgtk-3.so.0.1800.9 + 0x1a8294 rbx = 0x0000000000000000 rbp = 0x0000000005800498 rsp = 0x00007ffee0ab3350 r12 = 0x0000000000000000 r13 = 0x00000000002230a4 r14 = 0x0000000000000000 r15 = 0x0000000006611408 rip = 0x00007f9b039b4294 Found by: call frame info 88 skypeforlinux + 0x1450ac rsp = 0x00007ffee0ab33a0 rip = 0x00000000002230ac Found by: stack scanning 89 skypeforlinux + 0x33c50f rsp = 0x00007ffee0ab33a8 rip = 0x000000000041a50f Found by: stack scanning 90 skypeforlinux + 0x1450ac rsp = 0x00007ffee0ab33b0 rip = 0x00000000002230ac Found by: stack scanning 91 skypeforlinux + 0x362fdfb rsp = 0x00007ffee0ab33d0 rip = 0x0000000004e27dfb Found by: stack scanning 92 libc-2.23.so + 0x84184 rsp = 0x00007ffee0ab3420 rip = 0x00007f9afd64c184 Found by: stack scanning 93 skypeforlinux + 0x363032d rsp = 0x00007ffee0ab3470 rip = 0x0000000004e2832d Found by: stack scanning 94 skypeforlinux + 0x3641d3c rsp = 0x00007ffee0ab34a0 rip = 0x0000000004e39d3c Found by: stack scanning 95 skypeforlinux + 0x136bbde rsp = 0x00007ffee0ab3500 rip = 0x0000000002b63bde Found by: stack scanning 96 libc-2.23.so + 0x84184 rsp = 0x00007ffee0ab3540 rip = 0x00007f9afd64c184 Found by: stack scanning 97 skypeforlinux + 0x58a9b4 rsp = 0x00007ffee0ab35d0 rip = 0x0000000001d829b4 Found by: stack scanning 98 skypeforlinux + 0x58a950 rsp = 0x00007ffee0ab35f0 rip = 0x0000000001d82950 Found by: stack scanning 99 skypeforlinux + 0x58a858 rsp = 0x00007ffee0ab3600 rip = 0x0000000001d82858 Found by: stack scanning 100 skypeforlinux + 0x894ce0 rsp = 0x00007ffee0ab3630 rip = 0x0000000000972ce0 Found by: stack scanning 101 libc-2.23.so + 0x115800 rsp = 0x00007ffee0ab36a0 rip = 0x00007f9afd6dd800 Found by: stack scanning 102 libc-2.23.so + 0x115801 rsp = 0x00007ffee0ab36b0 rip = 0x00007f9afd6dd801 Found by: stack scanning 103 skypeforlinux + 0x16198f rsp = 0x00007ffee0ab3710 rip = 0x000000000023f98f Found by: stack scanning 104 skypeforlinux + 0x584c2f rsp = 0x00007ffee0ab3740 rip = 0x0000000001d7cc2f Found by: stack scanning 105 skypeforlinux + 0x161cb7 rsp = 0x00007ffee0ab3750 rip = 0x000000000023fcb7 Found by: stack scanning 106 skypeforlinux + 0x16198f rsp = 0x00007ffee0ab3758 rip = 0x000000000023f98f Found by: stack scanning 107 skypeforlinux + 0x584bc9 rsp = 0x00007ffee0ab3768 rip = 0x0000000001d7cbc9 Found by: stack scanning 108 skypeforlinux + 0x30fd5e rsp = 0x00007ffee0ab3790 rip = 0x00000000003edd5e Found by: stack scanning 109 libc-2.23.so + 0x115876 rsp = 0x00007ffee0ab37a0 rip = 0x00007f9afd6dd876 Found by: stack scanning 110 libc-2.23.so + 0x115876 rsp = 0x00007ffee0ab37b0 rip = 0x00007f9afd6dd876 Found by: stack scanning 111 skypeforlinux + 0xb454a5 rsp = 0x00007ffee0ab3810 rip = 0x000000000233d4a5 Found by: stack scanning 112 skypeforlinux + 0x30fd5e rsp = 0x00007ffee0ab3828 rip = 0x00000000003edd5e Found by: stack scanning 113 skypeforlinux + 0x2ff4e4b rsp = 0x00007ffee0ab3840 rip = 0x00000000047ece4b Found by: stack scanning 114 skypeforlinux + 0xb4539b rsp = 0x00007ffee0ab3890 rip = 0x000000000233d39b Found by: stack scanning 115 skypeforlinux + 0xb77eef rsp = 0x00007ffee0ab3898 rip = 0x000000000236feef Found by: stack scanning 116 skypeforlinux + 0x2fc0efe rsp = 0x00007ffee0ab38f0 rip = 0x00000000047b8efe Found by: stack scanning 117 skypeforlinux + 0x2fe263b rsp = 0x00007ffee0ab3970 rip = 0x00000000047da63b Found by: stack scanning 118 skypeforlinux + 0x1a8708 rsp = 0x00007ffee0ab39f0 rip = 0x0000000000286708 Found by: stack scanning 119 skypeforlinux + 0x2fe2958 rsp = 0x00007ffee0ab3a30 rip = 0x00000000047da958 Found by: stack scanning 120 skypeforlinux + 0x2fe2d31 rsp = 0x00007ffee0ab3a50 rip = 0x00000000047dad31 Found by: stack scanning 121 skypeforlinux + 0x1a8727 rsp = 0x00007ffee0ab3a88 rip = 0x0000000000286727 Found by: stack scanning 122 skypeforlinux + 0x1a8708 rsp = 0x00007ffee0ab3a90 rip = 0x0000000000286708 Found by: stack scanning 123 skypeforlinux + 0xb4539b rsp = 0x00007ffee0ab3aa0 rip = 0x000000000233d39b Found by: stack scanning 124 skypeforlinux + 0xb77eef rsp = 0x00007ffee0ab3aa8 rip = 0x000000000236feef Found by: stack scanning 125 skypeforlinux + 0x1a8727 rsp = 0x00007ffee0ab3af0 rip = 0x0000000000286727 Found by: stack scanning 126 skypeforlinux + 0x1a8708 rsp = 0x00007ffee0ab3af8 rip = 0x0000000000286708 Found by: stack scanning 127 skypeforlinux + 0xb4539b rsp = 0x00007ffee0ab3b08 rip = 0x000000000233d39b Found by: stack scanning 128 skypeforlinux + 0xb77eef rsp = 0x00007ffee0ab3b10 rip = 0x000000000236feef Found by: stack scanning 129 libX11.so.6.3.0!_XFreeX11XCBStructure + 0x8c8 rsp = 0x00007ffee0ab3b50 rip = 0x00007f9b009e80e8 Found by: stack scanning 130 libX11.so.6.3.0!_XFreeX11XCBStructure + 0xa2b rbx = 0x00000000062607c0 rbp = 0x00007ffee0ab3b78 rsp = 0x00007ffee0ab3b70 rip = 0x00007f9b009e824b Found by: call frame info 131 skypeforlinux + 0x2fb8f10 rbx = 0x00000000062a8d10 rbp = 0x0000000005ea2860 rsp = 0x00007ffee0ab3bc0 r12 = 0x0000000005efb540 r13 = 0x00000000062a81d0 rip = 0x00000000047b0f10 Found by: call frame info 132 skypeforlinux + 0x2fb8f2a rsp = 0x00007ffee0ab3bd0 rip = 0x00000000047b0f2a Found by: stack scanning 133 libglib-2.0.so.0.4800.2!g_main_context_dispatch + 0x2a7 rsp = 0x00007ffee0ab3be0 rip = 0x00007f9affea7197 Found by: stack scanning 134 libglib-2.0.so.0.4800.2!g_main_context_dispatch + 0x500 rbx = 0x0000000005ea2860 rbp = 0x0000000000000001 rsp = 0x00007ffee0ab3c70 r12 = 0x0000000006360ea0 r13 = 0x0000000000000006 r14 = 0x00007f9affeb6280 r15 = 0x0000000000000006 rip = 0x00007f9affea73f0 Found by: call frame info 135 libglib-2.0.so.0.4800.2!g_main_context_iteration + 0x2c rbx = 0x0000000005ea2860 rbp = 0x0000000000000001 rsp = 0x00007ffee0ab3cd0 r12 = 0x00000000062a8d10 r13 = 0x00007ffee0ab43d0 r14 = 0x00000000062a8d28 r15 = 0x0000000000000000 rip = 0x00007f9affea749c Found by: call frame info 136 skypeforlinux + 0x2fb8e16 rbx = 0x00007ffee0ab3d00 rbp = 0x0000000000000000 rsp = 0x00007ffee0ab3cf0 r12 = 0x00000000062a8d10 r13 = 0x00007ffee0ab43d0 r14 = 0x00000000062a8d28 r15 = 0x0000000000000000 rip = 0x00000000047b0e16 Found by: call frame info 137 skypeforlinux + 0x171a000 rsp = 0x00007ffee0ab3d20 rip = 0x00000000017f8000 Found by: stack scanning 138 skypeforlinux + 0x2fa4c20 rsp = 0x00007ffee0ab3d40 rip = 0x000000000479cc20 Found by: stack scanning 139 skypeforlinux + 0x15f224 rsp = 0x00007ffee0ab3d48 rip = 0x000000000023d224 Found by: stack scanning 140 skypeforlinux + 0x2fe763b rsp = 0x00007ffee0ab3d60 rip = 0x00000000047df63b Found by: stack scanning 141 skypeforlinux + 0x2fe7610 rsp = 0x00007ffee0ab3d68 rip = 0x00000000047df610 Found by: stack scanning 142 skypeforlinux + 0x563d70 rsp = 0x00007ffee0ab3d80 rip = 0x0000000001d5bd70 Found by: stack scanning 143 skypeforlinux + 0x4ffe73 rsp = 0x00007ffee0ab3db0 rip = 0x00000000005dde73 Found by: stack scanning 144 skypeforlinux + 0x3fcf9e rsp = 0x00007ffee0ab3dd0 rip = 0x0000000001bf4f9e Found by: stack scanning 145 skypeforlinux + 0x2ff100c rsp = 0x00007ffee0ab3df0 rip = 0x00000000047e900c Found by: stack scanning 146 skypeforlinux + 0xf22100 rsp = 0x00007ffee0ab3e00 rip = 0x0000000001000100 Found by: stack scanning 147 skypeforlinux + 0x171a000 rsp = 0x00007ffee0ab3e28 rip = 0x00000000017f8000 Found by: stack scanning 148 skypeforlinux + 0x3fcd9e rsp = 0x00007ffee0ab3e40 rip = 0x0000000001bf4d9e Found by: stack scanning 149 skypeforlinux + 0x10a406 rsp = 0x00007ffee0ab3e70 rip = 0x00000000001e8406 Found by: stack scanning 150 skypeforlinux + 0x563ead rsp = 0x00007ffee0ab3eb0 rip = 0x0000000001d5bead Found by: stack scanning 151 skypeforlinux + 0x665b93 rsp = 0x00007ffee0ab3ec0 rip = 0x0000000001e5db93 Found by: stack scanning 152 libstdc++.so.6.0.21 + 0xcebb8 rsp = 0x00007ffee0ab3ed0 rip = 0x00007f9afdf7fbb8 Found by: stack scanning 153 skypeforlinux + 0x171a000 rsp = 0x00007ffee0ab3ef0 rip = 0x00000000017f8000 Found by: stack scanning 154 skypeforlinux + 0x35a3384 rsp = 0x00007ffee0ab3f00 rip = 0x0000000004d9b384 Found by: stack scanning 155 skypeforlinux + 0x249f04 rsp = 0x00007ffee0ab3f10 rip = 0x0000000001a41f04 Found by: stack scanning 156 skypeforlinux + 0x24a63c rsp = 0x00007ffee0ab3f30 rip = 0x0000000001a4263c Found by: stack scanning 157 skypeforlinux + 0x1e4d0d rsp = 0x00007ffee0ab3f80 rip = 0x00000000019dcd0d Found by: stack scanning 158 ld-2.23.so + 0x9e14 rsp = 0x00007ffee0ab3f90 rip = 0x00007f9b05631e14 Found by: stack scanning 159 libsystemd.so.0.14.0 + 0x7f001 rsp = 0x00007ffee0ab3fa8 rip = 0x00007f9b05830001 Found by: stack scanning 160 skypeforlinux + 0x16240 rsp = 0x00007ffee0ab3fb0 rip = 0x00000000000f4240 Found by: stack scanning 161 libc-2.23.so + 0x10ff8 rsp = 0x00007ffee0ab3fd0 rip = 0x00007f9afd5d8ff8 Found by: stack scanning 162 ld-2.23.so + 0x9fe1 rsp = 0x00007ffee0ab3ff0 rip = 0x00007f9b05631fe1 Found by: stack scanning 163 ld-2.23.so + 0xab1f rsp = 0x00007ffee0ab40c0 rip = 0x00007f9b05632b1f Found by: stack scanning 164 libc-2.23.so + 0x8658 rsp = 0x00007ffee0ab4158 rip = 0x00007f9afd5d0658 Found by: stack scanning 165 skypeforlinux + 0x5455e0 rsp = 0x00007ffee0ab4178 rip = 0x00000000006235e0 Found by: stack scanning 166 libc-2.23.so + 0x8658 rsp = 0x00007ffee0ab4210 rip = 0x00007f9afd5d0658 Found by: stack scanning 167 ld-2.23.so + 0x17923 rsp = 0x00007ffee0ab4220 rip = 0x00007f9b0563f923 Found by: stack scanning 168 skypeforlinux + 0x2fc0efe rsp = 0x00007ffee0ab42f0 rip = 0x00000000047b8efe Found by: stack scanning 169 skypeforlinux + 0x894ce0 rsp = 0x00007ffee0ab4310 rip = 0x0000000000972ce0 Found by: stack scanning 170 libc-2.23.so + 0x84184 rsp = 0x00007ffee0ab4330 rip = 0x00007f9afd64c184 Found by: stack scanning 171 skypeforlinux + 0x2fc0efe rsp = 0x00007ffee0ab4350 rip = 0x00000000047b8efe Found by: stack scanning 172 skypeforlinux + 0x171a000 rsp = 0x00007ffee0ab4360 rip = 0x00000000017f8000 Found by: stack scanning 173 skypeforlinux + 0x171a000 rsp = 0x00007ffee0ab4388 rip = 0x00000000017f8000 Found by: stack scanning 174 skypeforlinux + 0x24af92 rsp = 0x00007ffee0ab43b0 rip = 0x0000000001a42f92 Found by: stack scanning 175 skypeforlinux + 0x364278 rsp = 0x00007ffee0ab43d8 rip = 0x0000000000442278 Found by: stack scanning 176 skypeforlinux + 0x35a2bad rsp = 0x00007ffee0ab4430 rip = 0x0000000004d9abad Found by: stack scanning 177 skypeforlinux + 0x527270 rsp = 0x00007ffee0ab4468 rip = 0x0000000000605270 Found by: stack scanning 178 skypeforlinux + 0xc06a0 rsp = 0x00007ffee0ab44a8 rip = 0x00000000018b86a0 Found by: stack scanning 179 libc-2.23.so + 0x20830 rsp = 0x00007ffee0ab44b0 rip = 0x00007f9afd5e8830 Found by: stack scanning 180 skypeforlinux + 0x35a2b60 rsp = 0x00007ffee0ab44d0 rip = 0x0000000004d9ab60 Found by: stack scanning 181 skypeforlinux + 0x171a000 rsp = 0x00007ffee0ab44e8 rip = 0x00000000017f8000 Found by: stack scanning 182 skypeforlinux + 0xc0710 rsp = 0x00007ffee0ab4530 rip = 0x00000000018b8710 Found by: stack scanning 183 ld-2.23.so + 0x10ab0 rsp = 0x00007ffee0ab4538 rip = 0x00007f9b05638ab0 Found by: stack scanning 184 ld-2.23.so + 0x107cb rsp = 0x00007ffee0ab4540 rip = 0x00007f9b056387cb Found by: stack scanning 185 skypeforlinux + 0x171a000 rsp = 0x00007ffee0ab4558 rip = 0x00000000017f8000 Found by: stack scanning 186 skypeforlinux + 0x29 rsp = 0x00007ffee0ab4570 rip = 0x00000000017f8029 Found by: stack scanning Thread 1 0 libc-2.23.so + 0xfb74d rax = 0xfffffffffffffdfc rdx = 0x00000000ffffffff rcx = 0x00007f9afd6c374d rbx = 0x00007f9af49db9c0 rsi = 0x0000000000000002 rdi = 0x00007f9af49db9c0 rbp = 0x00007f9af0000a50 rsp = 0x00007f9af49db9b0 r8 = 0x00007f9af0000900 r9 = 0x00007f9af49daf00 r10 = 0x00007f9af49daef0 r11 = 0x0000000000000293 r12 = 0x00007f9af49db9d0 r13 = 0x0000000000000000 r14 = 0x00007f9af49db9e0 r15 = 0x0000000005e9c970 rip = 0x00007f9afd6c374d Found by: given as instruction pointer in context 1 skypeforlinux + 0x545742 rsp = 0x00007f9af49db9c0 rip = 0x0000000001d3d742 Found by: stack scanning 2 skypeforlinux + 0x5088c8 rsp = 0x00007f9af49dbaa8 rip = 0x00000000005e68c8 Found by: stack scanning 3 skypeforlinux + 0x2fe763b rsp = 0x00007f9af49dbad0 rip = 0x00000000047df63b Found by: stack scanning 4 libc-2.23.so + 0x8453c rsp = 0x00007f9af49dbb10 rip = 0x00007f9afd64c53c Found by: stack scanning 5 skypeforlinux + 0x2fddce7 rsp = 0x00007f9af49dbb90 rip = 0x00000000047d5ce7 Found by: stack scanning 6 skypeforlinux + 0x2fdda43 rsp = 0x00007f9af49dbbc0 rip = 0x00000000047d5a43 Found by: stack scanning 7 libpthread-2.23.so + 0x76ba rsp = 0x00007f9af49dbbe0 rip = 0x00007f9b041426ba Found by: stack scanning 8 libc-2.23.so + 0x10741d rsp = 0x00007f9af49dbc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 2 0 libc-2.23.so + 0xfb74d rax = 0xfffffffffffffdfc rdx = 0x00000000ffffffff rcx = 0x00007f9afd6c374d rbx = 0x0000000005f1a560 rsi = 0x0000000000000002 rdi = 0x00007f9ae00008c0 rbp = 0x0000000000000002 rsp = 0x00007f9aef763b30 r8 = 0x0000000000000002 r9 = 0x0000000000000001 r10 = 0x00000000065e56c0 r11 = 0x0000000000000293 r12 = 0x00007f9ae00008c0 r13 = 0x00000000ffffffff r14 = 0x00007f9affeb6280 r15 = 0x0000000000000002 rip = 0x00007f9afd6c374d Found by: given as instruction pointer in context 1 libglib-2.0.so.0.4800.2!g_main_context_dispatch + 0x49c rsp = 0x00007f9aef763b40 rip = 0x00007f9affea738c Found by: stack scanning 2 libglib-2.0.so.0.4800.2!g_main_context_iteration + 0x2c rbx = 0x0000000005f1a560 rbp = 0x0000000000000001 rsp = 0x00007f9aef763ba0 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab295f r14 = 0x00007f9aef7649c0 r15 = 0x0000000000000000 rip = 0x00007f9affea749c Found by: call frame info 3 libglib-2.0.so.0.4800.2!g_main_context_iteration + 0x69 rbx = 0x0000000005ecacf0 rbp = 0x0000000000000000 rsp = 0x00007f9aef763bc0 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab295f r14 = 0x00007f9aef7649c0 r15 = 0x0000000000000000 rip = 0x00007f9affea74d9 Found by: call frame info 4 libglib-2.0.so.0.4800.2!g_test_get_filename + 0x195 rbx = 0x0000000005ecacf0 rbp = 0x0000000000000000 rsp = 0x00007f9aef763bd0 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab295f r14 = 0x00007f9aef7649c0 r15 = 0x0000000000000000 rip = 0x00007f9affecdbb5 Found by: call frame info 5 libpthread-2.23.so + 0x76ba rbx = 0x0000000000000000 rbp = 0x0000000000000000 rsp = 0x00007f9aef763be0 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab295f r14 = 0x00007f9aef7649c0 r15 = 0x0000000000000000 rip = 0x00007f9b041426ba Found by: call frame info 6 libc-2.23.so + 0x10741d rsp = 0x00007f9aef763c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 3 0 libc-2.23.so + 0xfb74d rax = 0xfffffffffffffdfc rdx = 0x00000000ffffffff rcx = 0x00007f9afd6c374d rbx = 0x0000000005f24d40 rsi = 0x0000000000000002 rdi = 0x00007f9ae80010c0 rbp = 0x0000000000000002 rsp = 0x00007f9aeef62b20 r8 = 0x0000000000000002 r9 = 0x0000000000000001 r10 = 0x0000000005ef52c0 r11 = 0x0000000000000293 r12 = 0x00007f9ae80010c0 r13 = 0x00000000ffffffff r14 = 0x00007f9affeb6280 r15 = 0x0000000000000002 rip = 0x00007f9afd6c374d Found by: given as instruction pointer in context 1 libglib-2.0.so.0.4800.2!g_main_context_dispatch + 0x49c rsp = 0x00007f9aeef62b30 rip = 0x00007f9affea738c Found by: stack scanning 2 libglib-2.0.so.0.4800.2!g_main_loop_run + 0xc2 rbx = 0x0000000005f24cd0 rbp = 0x0000000005f24cdc rsp = 0x00007f9aeef62b90 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab2abf r14 = 0x00007f9aeef639c0 r15 = 0x0000000005f24d10 rip = 0x00007f9affea7712 Found by: call frame info 3 libgio-2.0.so.0.4800.2!g_dbus_proxy_call_with_unix_fd_list_sync + 0x1b6 rbx = 0x0000000005f24d10 rbp = 0x0000000000000000 rsp = 0x00007f9aeef62bc0 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab2abf r14 = 0x00007f9aeef639c0 r15 = 0x0000000005f24d10 rip = 0x00007f9b026d99d6 Found by: call frame info 4 libglib-2.0.so.0.4800.2!g_test_get_filename + 0x195 rbx = 0x0000000005ecad40 rbp = 0x0000000000000000 rsp = 0x00007f9aeef62bd0 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab2abf r14 = 0x00007f9aeef639c0 r15 = 0x0000000005f24d10 rip = 0x00007f9affecdbb5 Found by: call frame info 5 libpthread-2.23.so + 0x76ba rbx = 0x0000000000000000 rbp = 0x0000000000000000 rsp = 0x00007f9aeef62be0 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab2abf r14 = 0x00007f9aeef639c0 r15 = 0x0000000005f24d10 rip = 0x00007f9b041426ba Found by: call frame info 6 libc-2.23.so + 0x10741d rsp = 0x00007f9aeef62c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 4 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000bb3 rcx = 0x00007f9b04148360 rbx = 0x0000000006046e50 rsi = 0x0000000000000080 rdi = 0x0000000006046e7c rbp = 0x0000000000000000 rsp = 0x00007f9aed6e8b60 r8 = 0x0000000006046e00 r9 = 0x00000000000005d8 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab390f r14 = 0x0000000000000000 r15 = 0x0000000006046e78 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 libnode.so!v8::internal::FullCodeGenerator::Generate [full-codegen-x64.cc : 307 + 0xa] rsp = 0x00007f9aed6e8b90 rip = 0x00007f9b055511d6 Found by: stack scanning 2 libnode.so!icu_59::RuleBasedNumberFormat::init [rbnf.cpp : 1558 + 0xb] rsp = 0x00007f9aed6e8ba0 rip = 0x00007f9b053fd434 Found by: stack scanning 3 libnode.so + 0x932be0 rsp = 0x00007f9aed6e8bb8 rip = 0x00007f9b053fcbe0 Found by: stack scanning 4 libnode.so!icu_59::StringLocalizationInfo::~StringLocalizationInfo [rbnf.cpp : 624 + 0x2] rsp = 0x00007f9aed6e8bc0 rip = 0x00007f9b053fcc12 Found by: stack scanning 5 libpthread-2.23.so + 0x76ba rsp = 0x00007f9aed6e8be0 rip = 0x00007f9b041426ba Found by: stack scanning 6 libnode.so + 0x932be0 rsp = 0x00007f9aed6e8c20 rip = 0x00007f9b053fcbe0 Found by: stack scanning 7 libc-2.23.so + 0x10741d rsp = 0x00007f9aed6e8c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 5 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000bb7 rcx = 0x00007f9b04148360 rbx = 0x0000000006046e50 rsi = 0x0000000000000080 rdi = 0x0000000006046e7c rbp = 0x0000000000000000 rsp = 0x00007f9aecee7b60 r8 = 0x0000000006046e00 r9 = 0x00000000000005da r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab390f r14 = 0x0000000000000000 r15 = 0x0000000006046e78 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 libnode.so!v8::internal::FullCodeGenerator::Generate [full-codegen-x64.cc : 307 + 0xa] rsp = 0x00007f9aecee7b90 rip = 0x00007f9b055511d6 Found by: stack scanning 2 libnode.so!icu_59::RuleBasedNumberFormat::init [rbnf.cpp : 1558 + 0xb] rsp = 0x00007f9aecee7ba0 rip = 0x00007f9b053fd434 Found by: stack scanning 3 libnode.so + 0x932be0 rsp = 0x00007f9aecee7bb8 rip = 0x00007f9b053fcbe0 Found by: stack scanning 4 libnode.so!icu_59::StringLocalizationInfo::~StringLocalizationInfo [rbnf.cpp : 624 + 0x2] rsp = 0x00007f9aecee7bc0 rip = 0x00007f9b053fcc12 Found by: stack scanning 5 libpthread-2.23.so + 0x76ba rsp = 0x00007f9aecee7be0 rip = 0x00007f9b041426ba Found by: stack scanning 6 libnode.so + 0x932be0 rsp = 0x00007f9aecee7c20 rip = 0x00007f9b053fcbe0 Found by: stack scanning 7 libc-2.23.so + 0x10741d rsp = 0x00007f9aecee7c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 6 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000bb5 rcx = 0x00007f9b04148360 rbx = 0x0000000006046e50 rsi = 0x0000000000000080 rdi = 0x0000000006046e7c rbp = 0x0000000000000000 rsp = 0x00007f9ae7ffeb60 r8 = 0x0000000006046e00 r9 = 0x00000000000005d9 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab390f r14 = 0x0000000000000000 r15 = 0x0000000006046e78 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 libnode.so!v8::internal::FullCodeGenerator::Generate [full-codegen-x64.cc : 307 + 0xa] rsp = 0x00007f9ae7ffeb90 rip = 0x00007f9b055511d6 Found by: stack scanning 2 libnode.so!icu_59::RuleBasedNumberFormat::init [rbnf.cpp : 1558 + 0xb] rsp = 0x00007f9ae7ffeba0 rip = 0x00007f9b053fd434 Found by: stack scanning 3 libnode.so + 0x932be0 rsp = 0x00007f9ae7ffebb8 rip = 0x00007f9b053fcbe0 Found by: stack scanning 4 libnode.so!icu_59::StringLocalizationInfo::~StringLocalizationInfo [rbnf.cpp : 624 + 0x2] rsp = 0x00007f9ae7ffebc0 rip = 0x00007f9b053fcc12 Found by: stack scanning 5 libpthread-2.23.so + 0x76ba rsp = 0x00007f9ae7ffebe0 rip = 0x00007f9b041426ba Found by: stack scanning 6 libnode.so + 0x932be0 rsp = 0x00007f9ae7ffec20 rip = 0x00007f9b053fcbe0 Found by: stack scanning 7 libc-2.23.so + 0x10741d rsp = 0x00007f9ae7ffec80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 7 0 libc-2.23.so + 0x107a13 rax = 0xfffffffffffffffc rdx = 0x0000000000000020 rcx = 0x00007f9afd6cfa13 rbx = 0x00007f9ad40021f0 rsi = 0x00007f9ad40021f0 rdi = 0x0000000000000028 rbp = 0x0000000000000000 rsp = 0x00007f9ae6fae9a0 r8 = 0x0000000000000000 r9 = 0x00007f9ad4005300 r10 = 0x00000000ffffffff r11 = 0x0000000000000293 r12 = 0x00007f9ad4001bc0 r13 = 0x00007f9ad40021b8 r14 = 0x00007f9ad40009e0 r15 = 0x00007f9ad4001bc0 rip = 0x00007f9afd6cfa13 Found by: given as instruction pointer in context 1 skypeforlinux + 0x300ca77 rsp = 0x00007f9ae6fae9b0 rip = 0x0000000004804a77 Found by: stack scanning 2 skypeforlinux + 0x300a611 rsp = 0x00007f9ae6fae9e0 rip = 0x0000000004802611 Found by: stack scanning 3 skypeforlinux + 0x9384b3 rsp = 0x00007f9ae6faea00 rip = 0x00000000021304b3 Found by: stack scanning 4 libc-2.23.so + 0x84184 rsp = 0x00007f9ae6faea10 rip = 0x00007f9afd64c184 Found by: stack scanning 5 skypeforlinux + 0x8958c8 rsp = 0x00007f9ae6faea28 rip = 0x00000000009738c8 Found by: stack scanning 6 skypeforlinux + 0x2fa9082 rsp = 0x00007f9ae6faea60 rip = 0x00000000047a1082 Found by: stack scanning 7 skypeforlinux + 0x33f00c rsp = 0x00007f9ae6faea68 rip = 0x0000000001b3700c Found by: stack scanning 8 skypeforlinux + 0x2f7a9c9 rsp = 0x00007f9ae6faea80 rip = 0x00000000047729c9 Found by: stack scanning 9 skypeforlinux + 0x2fa4c20 rsp = 0x00007f9ae6faeac0 rip = 0x000000000479cc20 Found by: stack scanning 10 skypeforlinux + 0x2f86e00 rsp = 0x00007f9ae6faeaf0 rip = 0x000000000477ee00 Found by: stack scanning 11 skypeforlinux + 0x2ff2de6 rsp = 0x00007f9ae6faeb50 rip = 0x00000000047eade6 Found by: stack scanning 12 skypeforlinux + 0x2fdda43 rsp = 0x00007f9ae6faebc0 rip = 0x00000000047d5a43 Found by: stack scanning 13 libpthread-2.23.so + 0x76ba rsp = 0x00007f9ae6faebe0 rip = 0x00007f9b041426ba Found by: stack scanning 14 libc-2.23.so + 0x10741d rsp = 0x00007f9ae6faec80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 8 0 libc-2.23.so + 0x107a13 rax = 0xfffffffffffffffc rdx = 0x0000000000000020 rcx = 0x00007f9afd6cfa13 rbx = 0x00007f9ac80021b0 rsi = 0x00007f9ac80021b0 rdi = 0x0000000000000030 rbp = 0x0000000000000000 rsp = 0x00007f9ae67ad9a0 r8 = 0x0000000000000000 r9 = 0x0000000000000000 r10 = 0x00000000ffffffff r11 = 0x0000000000000293 r12 = 0x00007f9ac8001b80 r13 = 0x00007f9ac8002178 r14 = 0x00007f9ac80008f0 r15 = 0x00007f9ac8001b80 rip = 0x00007f9afd6cfa13 Found by: given as instruction pointer in context 1 skypeforlinux + 0x300ca77 rsp = 0x00007f9ae67ad9b0 rip = 0x0000000004804a77 Found by: stack scanning 2 skypeforlinux + 0x300a611 rsp = 0x00007f9ae67ad9e0 rip = 0x0000000004802611 Found by: stack scanning 3 skypeforlinux + 0x31688e rsp = 0x00007f9ae67ada00 rip = 0x00000000003f488e Found by: stack scanning 4 skypeforlinux + 0x8958c8 rsp = 0x00007f9ae67ada28 rip = 0x00000000009738c8 Found by: stack scanning 5 skypeforlinux + 0x2fa9082 rsp = 0x00007f9ae67ada60 rip = 0x00000000047a1082 Found by: stack scanning 6 skypeforlinux + 0x1637213 rsp = 0x00007f9ae67ada78 rip = 0x0000000001715213 Found by: stack scanning 7 skypeforlinux + 0x2fa4c20 rsp = 0x00007f9ae67adac0 rip = 0x000000000479cc20 Found by: stack scanning 8 skypeforlinux + 0x2f86e00 rsp = 0x00007f9ae67adaf0 rip = 0x000000000477ee00 Found by: stack scanning 9 skypeforlinux + 0x2ff2de6 rsp = 0x00007f9ae67adb50 rip = 0x00000000047eade6 Found by: stack scanning 10 skypeforlinux + 0x2fdda43 rsp = 0x00007f9ae67adbc0 rip = 0x00000000047d5a43 Found by: stack scanning 11 libpthread-2.23.so + 0x76ba rsp = 0x00007f9ae67adbe0 rip = 0x00007f9b041426ba Found by: stack scanning 12 libc-2.23.so + 0x10741d rsp = 0x00007f9ae67adc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 9 0 libpthread-2.23.so + 0x1051d rax = 0xfffffffffffffe00 rdx = 0x0000000000000004 rcx = 0x00007f9b0414b51d rbx = 0x0000000000000004 rsi = 0x00007f9af419e9f8 rdi = 0x000000000000002e rbp = 0x00007f9af0000a50 rsp = 0x00007f9af419e9e0 r8 = 0x0000000005e6cba0 r9 = 0x0000000000000000 r10 = 0x00007f9afd6c94d9 r11 = 0x0000000000000293 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab36ef r14 = 0x00000000062e9fa0 r15 = 0x00007f9af419e9f8 rip = 0x00007f9b0414b51d Found by: given as instruction pointer in context 1 skypeforlinux + 0x360771f rsp = 0x00007f9af419e9f0 rip = 0x0000000004dff71f Found by: stack scanning 2 libstdc++.so.6.0.21 + 0xcee39 rsp = 0x00007f9af419ea40 rip = 0x00007f9afdf7fe39 Found by: stack scanning 3 libstdc++.so.6.0.21 + 0xcfd87 rsp = 0x00007f9af419ea70 rip = 0x00007f9afdf80d87 Found by: stack scanning 4 skypeforlinux + 0x2f80959 rsp = 0x00007f9af419eaa0 rip = 0x0000000004778959 Found by: stack scanning 5 skypeforlinux + 0x894ce0 rsp = 0x00007f9af419eae0 rip = 0x0000000000972ce0 Found by: stack scanning 6 libc-2.23.so + 0x84184 rsp = 0x00007f9af419eb00 rip = 0x00007f9afd64c184 Found by: stack scanning 7 skypeforlinux + 0x11bc43 rsp = 0x00007f9af419eb10 rip = 0x0000000001913c43 Found by: stack scanning 8 skypeforlinux + 0x2409c6 rsp = 0x00007f9af419eb50 rip = 0x0000000001a389c6 Found by: stack scanning 9 skypeforlinux + 0x2fc1a14 rsp = 0x00007f9af419eb80 rip = 0x00000000047b9a14 Found by: stack scanning 10 skypeforlinux + 0x2fdda43 rsp = 0x00007f9af419ebc0 rip = 0x00000000047d5a43 Found by: stack scanning 11 libpthread-2.23.so + 0x76ba rsp = 0x00007f9af419ebe0 rip = 0x00007f9b041426ba Found by: stack scanning 12 libc-2.23.so + 0x10741d rsp = 0x00007f9af419ec80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 10 0 libc-2.23.so + 0xfd5d3 rax = 0xfffffffffffffdfe rdx = 0x0000000000000000 rcx = 0x00007f9afd6c55d3 rbx = 0x0000000000000037 rsi = 0x00007f9ae5fac648 rdi = 0x0000000000000037 rbp = 0x00007f9ae5fac648 rsp = 0x00007f9ae5fac590 r8 = 0x0000000000000000 r9 = 0x0000000000000000 r10 = 0x0000000000000000 r11 = 0x0000000000000293 r12 = 0x00000000057f20d0 r13 = 0x0000000000000036 r14 = 0x0000000000000036 r15 = 0x0040000000000000 rip = 0x00007f9afd6c55d3 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fab321 rbp = 0x00007f9ae5fac648 rsp = 0x00007f9ae5fac5a0 rip = 0x00000000047a3321 Found by: stack scanning 2 linux-gate.so + 0xc30 rbp = 0x00007f9ae5fac648 rsp = 0x00007f9ae5fac610 rip = 0x00007ffee0ad8c30 Found by: stack scanning 3 skypeforlinux + 0x30fd5e rsp = 0x00007f9ae5fac6e8 rip = 0x00000000003edd5e Found by: stack scanning 4 skypeforlinux + 0x2ff4e4b rsp = 0x00007f9ae5fac700 rip = 0x00000000047ece4b Found by: stack scanning 5 skypeforlinux + 0x2faab11 rsp = 0x00007f9ae5fac750 rip = 0x00000000047a2b11 Found by: stack scanning 6 skypeforlinux + 0x2fe263b rsp = 0x00007f9ae5fac830 rip = 0x00000000047da63b Found by: stack scanning 7 skypeforlinux + 0x30d451 rsp = 0x00007f9ae5fac8b0 rip = 0x00000000003eb451 Found by: stack scanning 8 skypeforlinux + 0x2fe2958 rsp = 0x00007f9ae5fac8f0 rip = 0x00000000047da958 Found by: stack scanning 9 skypeforlinux + 0x2fe2d31 rsp = 0x00007f9ae5fac910 rip = 0x00000000047dad31 Found by: stack scanning 10 skypeforlinux + 0x30d493 rsp = 0x00007f9ae5fac948 rip = 0x00000000003eb493 Found by: stack scanning 11 skypeforlinux + 0x30d451 rsp = 0x00007f9ae5fac950 rip = 0x00000000003eb451 Found by: stack scanning 12 skypeforlinux + 0x2faab11 rsp = 0x00007f9ae5fac960 rip = 0x00000000047a2b11 Found by: stack scanning 13 skypeforlinux + 0x30d493 rsp = 0x00007f9ae5fac9b0 rip = 0x00000000003eb493 Found by: stack scanning 14 skypeforlinux + 0x30d451 rsp = 0x00007f9ae5fac9b8 rip = 0x00000000003eb451 Found by: stack scanning 15 skypeforlinux + 0x2faab11 rsp = 0x00007f9ae5fac9c8 rip = 0x00000000047a2b11 Found by: stack scanning 16 libc-2.23.so + 0x115876 rsp = 0x00007f9ae5faca20 rip = 0x00007f9afd6dd876 Found by: stack scanning 17 libc-2.23.so + 0x115876 rsp = 0x00007f9ae5faca30 rip = 0x00007f9afd6dd876 Found by: stack scanning 18 skypeforlinux + 0x2f8d453 rsp = 0x00007f9ae5faca50 rip = 0x0000000004785453 Found by: stack scanning 19 skypeforlinux + 0x2f99b99 rsp = 0x00007f9ae5faca90 rip = 0x0000000004791b99 Found by: stack scanning 20 skypeforlinux + 0x2fa4c20 rsp = 0x00007f9ae5facac0 rip = 0x000000000479cc20 Found by: stack scanning 21 skypeforlinux + 0x2f86e00 rsp = 0x00007f9ae5facaf0 rip = 0x000000000477ee00 Found by: stack scanning 22 skypeforlinux + 0x2ff2de6 rsp = 0x00007f9ae5facb50 rip = 0x00000000047eade6 Found by: stack scanning 23 skypeforlinux + 0x2fdda43 rsp = 0x00007f9ae5facbc0 rip = 0x00000000047d5a43 Found by: stack scanning 24 libpthread-2.23.so + 0x76ba rsp = 0x00007f9ae5facbe0 rip = 0x00007f9b041426ba Found by: stack scanning 25 libc-2.23.so + 0x10741d rsp = 0x00007f9ae5facc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 11 0 libpthread-2.23.so + 0xd709 rax = 0xfffffffffffffdfc rdx = 0x0000000000000124 rcx = 0x00007f9b04148709 rbx = 0x0000000000002143 rsi = 0x0000000000000089 rdi = 0x00007f9ad4004784 rbp = 0x0000000004f26be0 rsp = 0x00007f9ae57ab900 r8 = 0x00007f9ad4004758 r9 = 0x00000000ffffffff r10 = 0x00007f9ae57ab960 r11 = 0x0000000000000206 r12 = 0x0000000000000124 r13 = 0x00007f9ae57ab960 r14 = 0xffffffffffffff92 r15 = 0x000000000292e000 rip = 0x00007f9b04148709 Found by: given as instruction pointer in context 1 skypeforlinux + 0x113609b rsp = 0x00007f9ae57ab930 rip = 0x000000000292e09b Found by: stack scanning 2 skypeforlinux + 0x2fea132 rsp = 0x00007f9ae57ab950 rip = 0x00000000047e2132 Found by: stack scanning 3 skypeforlinux + 0x113609b rsp = 0x00007f9ae57ab960 rip = 0x000000000292e09b Found by: stack scanning 4 skypeforlinux + 0x113609b rsp = 0x00007f9ae57ab970 rip = 0x000000000292e09b Found by: stack scanning 5 skypeforlinux + 0x2f87564 rsp = 0x00007f9ae57ab990 rip = 0x000000000477f564 Found by: stack scanning 6 skypeforlinux + 0x2f7bac3 rsp = 0x00007f9ae57ab9d0 rip = 0x0000000004773ac3 Found by: stack scanning 7 skypeforlinux + 0x1135707 rsp = 0x00007f9ae57ab9d8 rip = 0x000000000292d707 Found by: stack scanning 8 skypeforlinux + 0x2f7a614 rsp = 0x00007f9ae57ab9e0 rip = 0x0000000004772614 Found by: stack scanning 9 skypeforlinux + 0x25ae84 rsp = 0x00007f9ae57aba30 rip = 0x0000000000338e84 Found by: stack scanning 10 skypeforlinux + 0x2f8797c rsp = 0x00007f9ae57aba40 rip = 0x000000000477f97c Found by: stack scanning 11 libstdc++.so.6.0.21 + 0xcfd87 rsp = 0x00007f9ae57aba70 rip = 0x00007f9afdf80d87 Found by: stack scanning 12 skypeforlinux + 0x25b468 rsp = 0x00007f9ae57abad0 rip = 0x0000000000339468 Found by: stack scanning 13 skypeforlinux + 0x25ae84 rsp = 0x00007f9ae57abad8 rip = 0x0000000000338e84 Found by: stack scanning 14 skypeforlinux + 0x1800f68 rsp = 0x00007f9ae57abae8 rip = 0x0000000002ff8f68 Found by: stack scanning 15 skypeforlinux + 0x17d9067 rsp = 0x00007f9ae57abaf0 rip = 0x0000000002fd1067 Found by: stack scanning 16 skypeforlinux + 0x2409c6 rsp = 0x00007f9ae57abb50 rip = 0x0000000001a389c6 Found by: stack scanning 17 skypeforlinux + 0x2fdda43 rsp = 0x00007f9ae57abbc0 rip = 0x00000000047d5a43 Found by: stack scanning 18 libpthread-2.23.so + 0x76ba rsp = 0x00007f9ae57abbe0 rip = 0x00007f9b041426ba Found by: stack scanning 19 libc-2.23.so + 0x10741d rsp = 0x00007f9ae57abc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 12 0 libpthread-2.23.so + 0xd709 rax = 0xfffffffffffffdfc rdx = 0x0000000000000128 rcx = 0x00007f9b04148709 rbx = 0x0000000000002143 rsi = 0x0000000000000089 rdi = 0x00007f9ad4004784 rbp = 0x0000000004f26be0 rsp = 0x00007f9ae4faa900 r8 = 0x00007f9ad4004758 r9 = 0x00000000ffffffff r10 = 0x00007f9ae4faa960 r11 = 0x0000000000000206 r12 = 0x0000000000000128 r13 = 0x00007f9ae4faa960 r14 = 0xffffffffffffff92 r15 = 0x0000000013f02d00 rip = 0x00007f9b04148709 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fea132 rsp = 0x00007f9ae4faa950 rip = 0x00000000047e2132 Found by: stack scanning 2 skypeforlinux + 0x2f87564 rsp = 0x00007f9ae4faa990 rip = 0x000000000477f564 Found by: stack scanning 3 skypeforlinux + 0x2f7bac3 rsp = 0x00007f9ae4faa9d0 rip = 0x0000000004773ac3 Found by: stack scanning 4 skypeforlinux + 0x2f7a614 rsp = 0x00007f9ae4faa9e0 rip = 0x0000000004772614 Found by: stack scanning 5 skypeforlinux + 0x25ae84 rsp = 0x00007f9ae4faaa30 rip = 0x0000000000338e84 Found by: stack scanning 6 skypeforlinux + 0x2f8797c rsp = 0x00007f9ae4faaa40 rip = 0x000000000477f97c Found by: stack scanning 7 libstdc++.so.6.0.21 + 0xcfd87 rsp = 0x00007f9ae4faaa70 rip = 0x00007f9afdf80d87 Found by: stack scanning 8 skypeforlinux + 0x25b468 rsp = 0x00007f9ae4faaad0 rip = 0x0000000000339468 Found by: stack scanning 9 skypeforlinux + 0x25ae84 rsp = 0x00007f9ae4faaad8 rip = 0x0000000000338e84 Found by: stack scanning 10 skypeforlinux + 0x1800f68 rsp = 0x00007f9ae4faaae8 rip = 0x0000000002ff8f68 Found by: stack scanning 11 skypeforlinux + 0x17d9067 rsp = 0x00007f9ae4faaaf0 rip = 0x0000000002fd1067 Found by: stack scanning 12 skypeforlinux + 0x2409c6 rsp = 0x00007f9ae4faab50 rip = 0x0000000001a389c6 Found by: stack scanning 13 skypeforlinux + 0x2fdda43 rsp = 0x00007f9ae4faabc0 rip = 0x00000000047d5a43 Found by: stack scanning 14 libpthread-2.23.so + 0x76ba rsp = 0x00007f9ae4faabe0 rip = 0x00007f9b041426ba Found by: stack scanning 15 libc-2.23.so + 0x10741d rsp = 0x00007f9ae4faac80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 13 0 libc-2.23.so + 0x107a13 rax = 0xfffffffffffffffc rdx = 0x0000000000000020 rcx = 0x00007f9afd6cfa13 rbx = 0x00007f9ab40021f0 rsi = 0x00007f9ab40021f0 rdi = 0x0000000000000038 rbp = 0x00007f9abfffe9e0 rsp = 0x00007f9abfffe9a0 r8 = 0x0000000000000000 r9 = 0x0000000000000001 r10 = 0x0000000000000988 r11 = 0x0000000000000293 r12 = 0x00007f9ab4001bc0 r13 = 0x00007f9ab40021b8 r14 = 0x00007f9ab40009e0 r15 = 0x00007f9ab4001bc0 rip = 0x00007f9afd6cfa13 Found by: given as instruction pointer in context 1 skypeforlinux + 0x300ca77 rbp = 0x00007f9abfffe9e0 rsp = 0x00007f9abfffe9b0 rip = 0x0000000004804a77 Found by: stack scanning 2 skypeforlinux + 0x300a611 rbp = 0x00007f9abfffe9e0 rsp = 0x00007f9abfffe9e0 rip = 0x0000000004802611 Found by: stack scanning 3 skypeforlinux + 0x8958c8 rsp = 0x00007f9abfffea28 rip = 0x00000000009738c8 Found by: stack scanning 4 skypeforlinux + 0x2fa9064 rsp = 0x00007f9abfffea60 rip = 0x00000000047a1064 Found by: stack scanning 5 skypeforlinux + 0x351fc05 rsp = 0x00007f9abfffea68 rip = 0x0000000004d17c05 Found by: stack scanning 6 skypeforlinux + 0x175a2b rsp = 0x00007f9abfffea78 rip = 0x0000000000253a2b Found by: stack scanning 7 skypeforlinux + 0x2fa4c20 rsp = 0x00007f9abfffeac0 rip = 0x000000000479cc20 Found by: stack scanning 8 skypeforlinux + 0x2f86e00 rsp = 0x00007f9abfffeaf0 rip = 0x000000000477ee00 Found by: stack scanning 9 skypeforlinux + 0x2ff2de6 rsp = 0x00007f9abfffeb50 rip = 0x00000000047eade6 Found by: stack scanning 10 skypeforlinux + 0x2fdda43 rsp = 0x00007f9abfffebc0 rip = 0x00000000047d5a43 Found by: stack scanning 11 libpthread-2.23.so + 0x76ba rsp = 0x00007f9abfffebe0 rip = 0x00007f9b041426ba Found by: stack scanning 12 libc-2.23.so + 0x10741d rsp = 0x00007f9abfffec80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 14 0 libpthread-2.23.so + 0xd709 rax = 0xfffffffffffffdfc rdx = 0x0000000000000001 rcx = 0x00007f9b04148709 rbx = 0x0000000000001fe5 rsi = 0x0000000000000089 rdi = 0x00007f9abf7fdaac rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fd9d0 r8 = 0x00007f9abf7fda80 r9 = 0x00000000ffffffff r10 = 0x00007f9abf7fda30 r11 = 0x0000000000000206 r12 = 0x0000000000000001 r13 = 0x00007f9abf7fda30 r14 = 0xffffffffffffff92 r15 = 0x00000000072a7e00 rip = 0x00007f9b04148709 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fea132 rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fda20 rip = 0x00000000047e2132 Found by: stack scanning 2 skypeforlinux + 0x2fcc98a rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fda60 rip = 0x00000000047c498a Found by: stack scanning 3 skypeforlinux + 0x4a4380 rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fda68 rip = 0x0000000001c9c380 Found by: stack scanning 4 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fda70 rip = 0x00000000005e6c00 Found by: stack scanning 5 libc-2.23.so + 0x115876 rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fdaf0 rip = 0x00007f9afd6dd876 Found by: stack scanning 6 skypeforlinux + 0x2fcca79 rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fdb30 rip = 0x00000000047c4a79 Found by: stack scanning 7 skypeforlinux + 0x2fc1f49 rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fdb50 rip = 0x00000000047b9f49 Found by: stack scanning 8 skypeforlinux + 0x4a4380 rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fdb60 rip = 0x0000000001c9c380 Found by: stack scanning 9 skypeforlinux + 0x2fc256e rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fdb70 rip = 0x00000000047ba56e Found by: stack scanning 10 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fdbc0 rip = 0x00000000047d5a43 Found by: stack scanning 11 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fdbe0 rip = 0x00007f9b041426ba Found by: stack scanning 12 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fdc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 15 0 libpthread-2.23.so + 0xd709 rax = 0xfffffffffffffdfc rdx = 0x0000000000000001 rcx = 0x00007f9b04148709 rbx = 0x0000000000001ff2 rsi = 0x0000000000000089 rdi = 0x00007f9abeffcaac rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffc9d0 r8 = 0x00007f9abeffca80 r9 = 0x00000000ffffffff r10 = 0x00007f9abeffca30 r11 = 0x0000000000000206 r12 = 0x0000000000000001 r13 = 0x00007f9abeffca30 r14 = 0xffffffffffffff92 r15 = 0x0000000003a79300 rip = 0x00007f9b04148709 Found by: given as instruction pointer in context 1 skypeforlinux + 0x22813c6 rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffca00 rip = 0x0000000003a793c6 Found by: stack scanning 2 skypeforlinux + 0x2fea132 rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffca20 rip = 0x00000000047e2132 Found by: stack scanning 3 skypeforlinux + 0x22817ae rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffca30 rip = 0x0000000003a797ae Found by: stack scanning 4 skypeforlinux + 0x22813c6 rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffca40 rip = 0x0000000003a793c6 Found by: stack scanning 5 skypeforlinux + 0x2fcc98a rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffca60 rip = 0x00000000047c498a Found by: stack scanning 6 skypeforlinux + 0xe2d9ff rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffca68 rip = 0x00000000026259ff Found by: stack scanning 7 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffca70 rip = 0x00000000005e6c00 Found by: stack scanning 8 libc-2.23.so + 0x115876 rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffcaf0 rip = 0x00007f9afd6dd876 Found by: stack scanning 9 skypeforlinux + 0x2fcca79 rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffcb30 rip = 0x00000000047c4a79 Found by: stack scanning 10 skypeforlinux + 0x2fc1f49 rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffcb50 rip = 0x00000000047b9f49 Found by: stack scanning 11 skypeforlinux + 0xe2da00 rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffcb60 rip = 0x0000000002625a00 Found by: stack scanning 12 skypeforlinux + 0x2fc256e rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffcb70 rip = 0x00000000047ba56e Found by: stack scanning 13 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffcbc0 rip = 0x00000000047d5a43 Found by: stack scanning 14 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffcbe0 rip = 0x00007f9b041426ba Found by: stack scanning 15 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffcc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 16 0 libpthread-2.23.so + 0xd709 rax = 0xfffffffffffffdfc rdx = 0x0000000000000001 rcx = 0x00007f9b04148709 rbx = 0x0000000000001fe5 rsi = 0x0000000000000089 rdi = 0x00007f9abe7fbaac rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fb9d0 r8 = 0x00007f9abe7fba80 r9 = 0x00000000ffffffff r10 = 0x00007f9abe7fba30 r11 = 0x0000000000000206 r12 = 0x0000000000000001 r13 = 0x00007f9abe7fba30 r14 = 0xffffffffffffff92 r15 = 0x000000000729b500 rip = 0x00007f9b04148709 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fea132 rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fba20 rip = 0x00000000047e2132 Found by: stack scanning 2 skypeforlinux + 0x2fcc98a rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fba60 rip = 0x00000000047c498a Found by: stack scanning 3 skypeforlinux + 0x4a437f rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fba68 rip = 0x0000000001c9c37f Found by: stack scanning 4 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fba70 rip = 0x00000000005e6c00 Found by: stack scanning 5 libc-2.23.so + 0x115876 rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fbaf0 rip = 0x00007f9afd6dd876 Found by: stack scanning 6 skypeforlinux + 0x2fcca79 rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fbb30 rip = 0x00000000047c4a79 Found by: stack scanning 7 skypeforlinux + 0x2fc1f49 rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fbb50 rip = 0x00000000047b9f49 Found by: stack scanning 8 skypeforlinux + 0x4a4380 rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fbb60 rip = 0x0000000001c9c380 Found by: stack scanning 9 skypeforlinux + 0x2fc256e rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fbb70 rip = 0x00000000047ba56e Found by: stack scanning 10 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fbbc0 rip = 0x00000000047d5a43 Found by: stack scanning 11 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fbbe0 rip = 0x00007f9b041426ba Found by: stack scanning 12 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fbc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 17 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000001 rcx = 0x00007f9b04148360 rbx = 0x00007f9abcff8a70 rsi = 0x0000000000000080 rdi = 0x00007f9abcff8abc rbp = 0x7fffffffffffffff rsp = 0x00007f9abcff8a40 r8 = 0x00007f9abcff8a00 r9 = 0x0000000000000000 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9abcff8b40 r13 = 0x0000000006305058 r14 = 0x7fffffffffffffff r15 = 0x00007f9abcff8a78 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fcc95f rbp = 0x7fffffffffffffff rsp = 0x00007f9abcff8a70 rip = 0x00000000047c495f Found by: stack scanning 2 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9abcff8a80 rip = 0x00000000005e6c00 Found by: stack scanning 3 skypeforlinux + 0x2fcc847 rbp = 0x7fffffffffffffff rsp = 0x00007f9abcff8b40 rip = 0x00000000047c4847 Found by: stack scanning 4 skypeforlinux + 0x2fc1f3a rbp = 0x7fffffffffffffff rsp = 0x00007f9abcff8b50 rip = 0x00000000047b9f3a Found by: stack scanning 5 skypeforlinux + 0x2fc256e rbp = 0x7fffffffffffffff rsp = 0x00007f9abcff8b70 rip = 0x00000000047ba56e Found by: stack scanning 6 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9abcff8bc0 rip = 0x00000000047d5a43 Found by: stack scanning 7 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9abcff8be0 rip = 0x00007f9b041426ba Found by: stack scanning 8 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9abcff8c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 18 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000001 rcx = 0x00007f9b04148360 rbx = 0x00007f9ab3ffea70 rsi = 0x0000000000000080 rdi = 0x00007f9ab3ffeabc rbp = 0x7fffffffffffffff rsp = 0x00007f9ab3ffea40 r8 = 0x00007f9ab3ffea00 r9 = 0x0000000000000000 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9ab3ffeb40 r13 = 0x0000000006305748 r14 = 0x7fffffffffffffff r15 = 0x00007f9ab3ffea78 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fcc95f rbp = 0x7fffffffffffffff rsp = 0x00007f9ab3ffea70 rip = 0x00000000047c495f Found by: stack scanning 2 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab3ffea80 rip = 0x00000000005e6c00 Found by: stack scanning 3 skypeforlinux + 0x2fcc847 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab3ffeb40 rip = 0x00000000047c4847 Found by: stack scanning 4 skypeforlinux + 0x2fc1f3a rbp = 0x7fffffffffffffff rsp = 0x00007f9ab3ffeb50 rip = 0x00000000047b9f3a Found by: stack scanning 5 skypeforlinux + 0x2fc256e rbp = 0x7fffffffffffffff rsp = 0x00007f9ab3ffeb70 rip = 0x00000000047ba56e Found by: stack scanning 6 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab3ffebc0 rip = 0x00000000047d5a43 Found by: stack scanning 7 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9ab3ffebe0 rip = 0x00007f9b041426ba Found by: stack scanning 8 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9ab3ffec80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 19 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000001 rcx = 0x00007f9b04148360 rbx = 0x00007f9ab37fda70 rsi = 0x0000000000000080 rdi = 0x00007f9ab37fdabc rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fda40 r8 = 0x00007f9ab37fda00 r9 = 0x0000000000000000 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9ab37fdb40 r13 = 0x0000000006305e28 r14 = 0x7fffffffffffffff r15 = 0x00007f9ab37fda78 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fcc95f rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fda70 rip = 0x00000000047c495f Found by: stack scanning 2 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fda80 rip = 0x00000000005e6c00 Found by: stack scanning 3 skypeforlinux + 0x508800 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fda88 rip = 0x00000000005e6800 Found by: stack scanning 4 skypeforlinux + 0x2fa5d85 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fdb00 rip = 0x000000000479dd85 Found by: stack scanning 5 skypeforlinux + 0x2fcc847 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fdb40 rip = 0x00000000047c4847 Found by: stack scanning 6 skypeforlinux + 0x2fc1f3a rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fdb50 rip = 0x00000000047b9f3a Found by: stack scanning 7 skypeforlinux + 0x2fc2347 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fdb70 rip = 0x00000000047ba347 Found by: stack scanning 8 skypeforlinux + 0x2fc1a14 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fdb80 rip = 0x00000000047b9a14 Found by: stack scanning 9 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fdbc0 rip = 0x00000000047d5a43 Found by: stack scanning 10 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fdbe0 rip = 0x00007f9b041426ba Found by: stack scanning 11 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fdc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 20 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000001 rcx = 0x00007f9b04148360 rbx = 0x00007f9ab2ffca70 rsi = 0x0000000000000080 rdi = 0x00007f9ab2ffcabc rbp = 0x7fffffffffffffff rsp = 0x00007f9ab2ffca40 r8 = 0x00007f9ab2ffca00 r9 = 0x0000000000000000 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9ab2ffcb40 r13 = 0x00000000063064d8 r14 = 0x7fffffffffffffff r15 = 0x00007f9ab2ffca78 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fcc95f rbp = 0x7fffffffffffffff rsp = 0x00007f9ab2ffca70 rip = 0x00000000047c495f Found by: stack scanning 2 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab2ffca80 rip = 0x00000000005e6c00 Found by: stack scanning 3 skypeforlinux + 0x2fcc847 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab2ffcb40 rip = 0x00000000047c4847 Found by: stack scanning 4 skypeforlinux + 0x2fc1f3a rbp = 0x7fffffffffffffff rsp = 0x00007f9ab2ffcb50 rip = 0x00000000047b9f3a Found by: stack scanning 5 skypeforlinux + 0x2fc256e rbp = 0x7fffffffffffffff rsp = 0x00007f9ab2ffcb70 rip = 0x00000000047ba56e Found by: stack scanning 6 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab2ffcbc0 rip = 0x00000000047d5a43 Found by: stack scanning 7 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9ab2ffcbe0 rip = 0x00007f9b041426ba Found by: stack scanning 8 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9ab2ffcc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 21 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000001 rcx = 0x00007f9b04148360 rbx = 0x00007f9ab27fba70 rsi = 0x0000000000000080 rdi = 0x00007f9ab27fbabc rbp = 0x7fffffffffffffff rsp = 0x00007f9ab27fba40 r8 = 0x00007f9ab27fba00 r9 = 0x0000000000000000 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9ab27fbb40 r13 = 0x0000000006305df8 r14 = 0x7fffffffffffffff r15 = 0x00007f9ab27fba78 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fcc95f rbp = 0x7fffffffffffffff rsp = 0x00007f9ab27fba70 rip = 0x00000000047c495f Found by: stack scanning 2 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab27fba80 rip = 0x00000000005e6c00 Found by: stack scanning 3 skypeforlinux + 0x2fcc847 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab27fbb40 rip = 0x00000000047c4847 Found by: stack scanning 4 skypeforlinux + 0x2fc1f3a rbp = 0x7fffffffffffffff rsp = 0x00007f9ab27fbb50 rip = 0x00000000047b9f3a Found by: stack scanning 5 skypeforlinux + 0x2fc256e rbp = 0x7fffffffffffffff rsp = 0x00007f9ab27fbb70 rip = 0x00000000047ba56e Found by: stack scanning 6 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab27fbbc0 rip = 0x00000000047d5a43 Found by: stack scanning 7 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9ab27fbbe0 rip = 0x00007f9b041426ba Found by: stack scanning 8 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9ab27fbc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 22 0 libc-2.23.so + 0x107a13 rax = 0xfffffffffffffffc rdx = 0x0000000000000020 rcx = 0x00007f9afd6cfa13 rbx = 0x00007f9aa80021b0 rsi = 0x00007f9aa80021b0 rdi = 0x000000000000003d rbp = 0x00007f9ab1ffa9b0 rsp = 0x00007f9ab1ffa970 r8 = 0x0000000000000000 r9 = 0x00000000062a8a68 r10 = 0x0000000000003f31 r11 = 0x0000000000000293 r12 = 0x00007f9aa8001b80 r13 = 0x00007f9aa8002178 r14 = 0x00007f9aa80008f0 r15 = 0x00007f9aa8001b80 rip = 0x00007f9afd6cfa13 Found by: given as instruction pointer in context 1 skypeforlinux + 0x300ca77 rbp = 0x00007f9ab1ffa9b0 rsp = 0x00007f9ab1ffa980 rip = 0x0000000004804a77 Found by: stack scanning 2 skypeforlinux + 0x300a611 rbp = 0x00007f9ab1ffa9b0 rsp = 0x00007f9ab1ffa9b0 rip = 0x0000000004802611 Found by: stack scanning 3 skypeforlinux + 0x8958c8 rsp = 0x00007f9ab1ffa9f8 rip = 0x00000000009738c8 Found by: stack scanning 4 skypeforlinux + 0x2fa9064 rsp = 0x00007f9ab1ffaa30 rip = 0x00000000047a1064 Found by: stack scanning 5 skypeforlinux + 0xe8f5a4 rsp = 0x00007f9ab1ffaa48 rip = 0x0000000000f6d5a4 Found by: stack scanning 6 skypeforlinux + 0x2fa4c20 rsp = 0x00007f9ab1ffaa90 rip = 0x000000000479cc20 Found by: stack scanning 7 skypeforlinux + 0x28ff71 rsp = 0x00007f9ab1ffaa98 rip = 0x0000000001a87f71 Found by: stack scanning 8 skypeforlinux + 0xd28a rsp = 0x00007f9ab1ffab00 rip = 0x00000000000eb28a Found by: stack scanning 9 skypeforlinux + 0x28fe6e rsp = 0x00007f9ab1ffab20 rip = 0x0000000001a87e6e Found by: stack scanning 10 skypeforlinux + 0x28ff13 rsp = 0x00007f9ab1ffab30 rip = 0x0000000001a87f13 Found by: stack scanning 11 skypeforlinux + 0x2ff2de6 rsp = 0x00007f9ab1ffab50 rip = 0x00000000047eade6 Found by: stack scanning 12 skypeforlinux + 0x2fdda43 rsp = 0x00007f9ab1ffabc0 rip = 0x00000000047d5a43 Found by: stack scanning 13 libpthread-2.23.so + 0x76ba rsp = 0x00007f9ab1ffabe0 rip = 0x00007f9b041426ba Found by: stack scanning 14 libc-2.23.so + 0x10741d rsp = 0x00007f9ab1ffac80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 23 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x00000000000003e9 rcx = 0x00007f9b04148360 rbx = 0x000000000632d900 rsi = 0x0000000000000080 rdi = 0x000000000632d9b4 rbp = 0x00007f9af0000a50 rsp = 0x00007f9ab17f9b40 r8 = 0x000000000632d900 r9 = 0x00000000000001f4 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab384f r14 = 0x000000000632d918 r15 = 0x000000000632d9b0 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2c677c8 rbp = 0x00007f9af0000a50 rsp = 0x00007f9ab17f9b70 rip = 0x000000000445f7c8 Found by: stack scanning 2 skypeforlinux + 0x2fddce7 rbp = 0x00007f9af0000a50 rsp = 0x00007f9ab17f9b90 rip = 0x00000000047d5ce7 Found by: stack scanning 3 skypeforlinux + 0x2fdda43 rbp = 0x00007f9af0000a50 rsp = 0x00007f9ab17f9bc0 rip = 0x00000000047d5a43 Found by: stack scanning 4 libpthread-2.23.so + 0x76ba rbp = 0x00007f9af0000a50 rsp = 0x00007f9ab17f9be0 rip = 0x00007f9b041426ba Found by: stack scanning 5 libc-2.23.so + 0x10741d rbp = 0x00007f9af0000a50 rsp = 0x00007f9ab17f9c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 24 0 libpthread-2.23.so + 0xd709 rax = 0xfffffffffffffdfc rdx = 0x0000000000000001 rcx = 0x00007f9b04148709 rbx = 0x0000000000001fd3 rsi = 0x0000000000000089 rdi = 0x00007f9ab0ff8a0c rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff8930 r8 = 0x00007f9ab0ff89e0 r9 = 0x00000000ffffffff r10 = 0x00007f9ab0ff8990 r11 = 0x0000000000000206 r12 = 0x0000000000000001 r13 = 0x00007f9ab0ff8990 r14 = 0xffffffffffffff92 r15 = 0x000000002d0dc600 rip = 0x00007f9b04148709 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fea132 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff8980 rip = 0x00000000047e2132 Found by: stack scanning 2 skypeforlinux + 0x2fcc98a rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff89c0 rip = 0x00000000047c498a Found by: stack scanning 3 skypeforlinux + 0xa93af8 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff89c8 rip = 0x0000000000b71af8 Found by: stack scanning 4 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff89d0 rip = 0x00000000005e6c00 Found by: stack scanning 5 skypeforlinux + 0x28d6f00 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff89d8 rip = 0x00000000040cef00 Found by: stack scanning 6 skypeforlinux + 0x28d6f85 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff8a50 rip = 0x00000000040cef85 Found by: stack scanning 7 skypeforlinux + 0x2f99bf1 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff8a90 rip = 0x0000000004791bf1 Found by: stack scanning 8 skypeforlinux + 0x2fa4c20 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff8ac0 rip = 0x000000000479cc20 Found by: stack scanning 9 skypeforlinux + 0x2f86e00 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff8af0 rip = 0x000000000477ee00 Found by: stack scanning 10 skypeforlinux + 0x2ff2de6 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff8b50 rip = 0x00000000047eade6 Found by: stack scanning 11 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff8bc0 rip = 0x00000000047d5a43 Found by: stack scanning 12 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff8be0 rip = 0x00007f9b041426ba Found by: stack scanning 13 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff8c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 25 0 libc-2.23.so + 0x107a13 rax = 0xfffffffffffffffc rdx = 0x0000000000000001 rcx = 0x00007f9afd6cfa13 rbx = 0x0000000005e9bac0 rsi = 0x00007f9a8bffeb90 rdi = 0x000000000000000d rbp = 0x000000000003a6fe rsp = 0x00007f9a8bffeb80 r8 = 0x0000000000000000 r9 = 0x00000000ffffffff r10 = 0x000000000003a6fe r11 = 0x0000000000000293 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab3abf r14 = 0x00007f9a8bffeb90 r15 = 0x0000000004e67d10 rip = 0x00007f9afd6cfa13 Found by: given as instruction pointer in context 1 skypeforlinux + 0x36a57f5 rsp = 0x00007f9a8bffeb90 rip = 0x0000000004e9d7f5 Found by: stack scanning 2 skypeforlinux + 0x366fd3f rsp = 0x00007f9a8bffebc0 rip = 0x0000000004e67d3f Found by: stack scanning 3 libpthread-2.23.so + 0x76ba rsp = 0x00007f9a8bffebe0 rip = 0x00007f9b041426ba Found by: stack scanning 4 skypeforlinux + 0x366fd10 rsp = 0x00007f9a8bffec20 rip = 0x0000000004e67d10 Found by: stack scanning 5 libc-2.23.so + 0x10741d rsp = 0x00007f9a8bffec80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 26 0 libc-2.23.so + 0xfb74d rax = 0xfffffffffffffdfc rdx = 0x00000000ffffffff rcx = 0x00007f9afd6c374d rbx = 0x000000000629dbf0 rsi = 0x0000000000000001 rdi = 0x00007f9a780010c0 rbp = 0x0000000000000001 rsp = 0x00007f9a8b7fdb30 r8 = 0x0000000000000001 r9 = 0x0000000000000001 r10 = 0x0000000005f2f360 r11 = 0x0000000000000293 r12 = 0x00007f9a780010c0 r13 = 0x00000000ffffffff r14 = 0x00007f9affeb6280 r15 = 0x0000000000000001 rip = 0x00007f9afd6c374d Found by: given as instruction pointer in context 1 libglib-2.0.so.0.4800.2!g_main_context_dispatch + 0x49c rsp = 0x00007f9a8b7fdb40 rip = 0x00007f9affea738c Found by: stack scanning 2 libglib-2.0.so.0.4800.2!g_main_context_iteration + 0x2c rbx = 0x000000000629dbf0 rbp = 0x0000000000000001 rsp = 0x00007f9a8b7fdba0 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab0e4f r14 = 0x00007f9a8b7fe9c0 r15 = 0x000000000629dbf0 rip = 0x00007f9affea749c Found by: call frame info 3 libdconfsettings.so + 0x746d rbx = 0x000000000629dbf0 rbp = 0x0000000000000000 rsp = 0x00007f9a8b7fdbc0 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab0e4f r14 = 0x00007f9a8b7fe9c0 r15 = 0x000000000629dbf0 rip = 0x00007f9aefdfa46d Found by: call frame info 4 libglib-2.0.so.0.4800.2!g_test_get_filename + 0x195 rsp = 0x00007f9a8b7fdbd0 rip = 0x00007f9affecdbb5 Found by: stack scanning 5 libpthread-2.23.so + 0x76ba rbx = 0x0000000000000000 rsp = 0x00007f9a8b7fdbe0 rip = 0x00007f9b041426ba Found by: call frame info 6 libc-2.23.so + 0x10741d rsp = 0x00007f9a8b7fdc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 27 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000011 rcx = 0x00007f9b04148360 rbx = 0x00007f9b05626ee0 rsi = 0x0000000000000080 rdi = 0x00007f9b05626f0c rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8affcb60 r8 = 0x00007f9b05626e00 r9 = 0x0000000000000007 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9b05626ea0 r13 = 0x0000000000000090 r14 = 0x00007f9b05626f08 r15 = 0x00007f9b05626f40 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 libnode.so!v8::internal::FullCodeGenerator::Generate [full-codegen-x64.cc : 307 + 0xa] rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8affcb90 rip = 0x00007f9b055511d6 Found by: stack scanning 2 libnode.so!v8::internal::compiler::Typer::Visitor::ObjectIsNaN [types.h : 589 + 0x2] rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8affcba0 rip = 0x00007f9b055455a3 Found by: stack scanning 3 libnode.so!&lt;name omitted&gt; + 0x60 rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8affcbd0 rip = 0x00007f9b055454a0 Found by: stack scanning 4 libpthread-2.23.so + 0x76ba rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8affcbe0 rip = 0x00007f9b041426ba Found by: stack scanning 5 libnode.so!&lt;name omitted&gt; + 0x60 rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8affcc20 rip = 0x00007f9b055454a0 Found by: stack scanning 6 libc-2.23.so + 0x10741d rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8affcc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 28 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000015 rcx = 0x00007f9b04148360 rbx = 0x00007f9b05626ee0 rsi = 0x0000000000000080 rdi = 0x00007f9b05626f0c rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8a7fbb60 r8 = 0x00007f9b05626e00 r9 = 0x0000000000000009 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9b05626ea0 r13 = 0x0000000000000090 r14 = 0x00007f9b05626f08 r15 = 0x00007f9b05626f40 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 libnode.so!v8::internal::FullCodeGenerator::Generate [full-codegen-x64.cc : 307 + 0xa] rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8a7fbb90 rip = 0x00007f9b055511d6 Found by: stack scanning 2 libnode.so!v8::internal::compiler::Typer::Visitor::ObjectIsNaN [types.h : 589 + 0x2] rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8a7fbba0 rip = 0x00007f9b055455a3 Found by: stack scanning 3 libnode.so!&lt;name omitted&gt; + 0x60 rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8a7fbbd0 rip = 0x00007f9b055454a0 Found by: stack scanning 4 libpthread-2.23.so + 0x76ba rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8a7fbbe0 rip = 0x00007f9b041426ba Found by: stack scanning 5 libnode.so!&lt;name omitted&gt; + 0x60 rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8a7fbc20 rip = 0x00007f9b055454a0 Found by: stack scanning 6 libc-2.23.so + 0x10741d rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8a7fbc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 29 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000016 rcx = 0x00007f9b04148360 rbx = 0x00007f9b05626ee0 rsi = 0x0000000000000080 rdi = 0x00007f9b05626f0c rbp = 0x00007f9b05626f40 rsp = 0x00007f9a89ffab60 r8 = 0x00007f9b05626e00 r9 = 0x0000000000000009 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9b05626ea0 r13 = 0x0000000000000090 r14 = 0x00007f9b05626f08 r15 = 0x00007f9b05626f40 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 libnode.so!v8::internal::FullCodeGenerator::Generate [full-codegen-x64.cc : 307 + 0xa] rbp = 0x00007f9b05626f40 rsp = 0x00007f9a89ffab90 rip = 0x00007f9b055511d6 Found by: stack scanning 2 libnode.so!v8::internal::compiler::Typer::Visitor::ObjectIsNaN [types.h : 589 + 0x2] rbp = 0x00007f9b05626f40 rsp = 0x00007f9a89ffaba0 rip = 0x00007f9b055455a3 Found by: stack scanning 3 libnode.so!&lt;name omitted&gt; + 0x60 rbp = 0x00007f9b05626f40 rsp = 0x00007f9a89ffabd0 rip = 0x00007f9b055454a0 Found by: stack scanning 4 libpthread-2.23.so + 0x76ba rbp = 0x00007f9b05626f40 rsp = 0x00007f9a89ffabe0 rip = 0x00007f9b041426ba Found by: stack scanning 5 libnode.so!&lt;name omitted&gt; + 0x60 rbp = 0x00007f9b05626f40 rsp = 0x00007f9a89ffac20 rip = 0x00007f9b055454a0 Found by: stack scanning 6 libc-2.23.so + 0x10741d rbp = 0x00007f9b05626f40 rsp = 0x00007f9a89ffac80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 30 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000012 rcx = 0x00007f9b04148360 rbx = 0x00007f9b05626ee0 rsi = 0x0000000000000080 rdi = 0x00007f9b05626f0c rbp = 0x00007f9b05626f40 rsp = 0x00007f9a897f9b60 r8 = 0x00007f9b05626e00 r9 = 0x0000000000000007 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9b05626ea0 r13 = 0x0000000000000090 r14 = 0x00007f9b05626f08 r15 = 0x00007f9b05626f40 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 libnode.so!v8::internal::FullCodeGenerator::Generate [full-codegen-x64.cc : 307 + 0xa] rbp = 0x00007f9b05626f40 rsp = 0x00007f9a897f9b90 rip = 0x00007f9b055511d6 Found by: stack scanning 2 libnode.so!v8::internal::compiler::Typer::Visitor::ObjectIsNaN [types.h : 589 + 0x2] rbp = 0x00007f9b05626f40 rsp = 0x00007f9a897f9ba0 rip = 0x00007f9b055455a3 Found by: stack scanning 3 libnode.so!&lt;name omitted&gt; + 0x60 rbp = 0x00007f9b05626f40 rsp = 0x00007f9a897f9bd0 rip = 0x00007f9b055454a0 Found by: stack scanning 4 libpthread-2.23.so + 0x76ba rbp = 0x00007f9b05626f40 rsp = 0x00007f9a897f9be0 rip = 0x00007f9b041426ba Found by: stack scanning 5 libnode.so!&lt;name omitted&gt; + 0x60 rbp = 0x00007f9b05626f40 rsp = 0x00007f9a897f9c20 rip = 0x00007f9b055454a0 Found by: stack scanning 6 libc-2.23.so + 0x10741d rbp = 0x00007f9b05626f40 rsp = 0x00007f9a897f9c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 31 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000001 rcx = 0x00007f9b04148360 rbx = 0x00007f9a60aa4a70 rsi = 0x0000000000000080 rdi = 0x00007f9a60aa4abc rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4a40 r8 = 0x00007f9a60aa4a00 r9 = 0x0000000000000000 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9a60aa4b40 r13 = 0x00007f9aa81a00c8 r14 = 0x7fffffffffffffff r15 = 0x00007f9a60aa4a78 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fcc95f rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4a70 rip = 0x00000000047c495f Found by: stack scanning 2 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4a80 rip = 0x00000000005e6c00 Found by: stack scanning 3 skypeforlinux + 0x508800 rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4a88 rip = 0x00000000005e6800 Found by: stack scanning 4 skypeforlinux + 0x2fa5d85 rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4b00 rip = 0x000000000479dd85 Found by: stack scanning 5 skypeforlinux + 0x2fcc847 rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4b40 rip = 0x00000000047c4847 Found by: stack scanning 6 skypeforlinux + 0x2fc1f3a rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4b50 rip = 0x00000000047b9f3a Found by: stack scanning 7 skypeforlinux + 0x2fc2347 rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4b70 rip = 0x00000000047ba347 Found by: stack scanning 8 skypeforlinux + 0x2fc1a14 rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4b80 rip = 0x00000000047b9a14 Found by: stack scanning 9 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4bc0 rip = 0x00000000047d5a43 Found by: stack scanning 10 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4be0 rip = 0x00007f9b041426ba Found by: stack scanning 11 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 32 0 libpthread-2.23.so + 0xd709 rax = 0xfffffffffffffdfc rdx = 0x0000000000000122 rcx = 0x00007f9b04148709 rbx = 0x00000000000020c3 rsi = 0x0000000000000089 rdi = 0x00007f9ad4004784 rbp = 0x0000000004f26be0 rsp = 0x00007f9a5d497900 r8 = 0x00007f9ad4004758 r9 = 0x00000000ffffffff r10 = 0x00007f9a5d497960 r11 = 0x0000000000000206 r12 = 0x0000000000000122 r13 = 0x00007f9a5d497960 r14 = 0xffffffffffffff92 r15 = 0x000000002f52fa00 rip = 0x00007f9b04148709 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fea132 rsp = 0x00007f9a5d497950 rip = 0x00000000047e2132 Found by: stack scanning 2 skypeforlinux + 0x2f87564 rsp = 0x00007f9a5d497990 rip = 0x000000000477f564 Found by: stack scanning 3 skypeforlinux + 0x2f7bac3 rsp = 0x00007f9a5d4979d0 rip = 0x0000000004773ac3 Found by: stack scanning 4 skypeforlinux + 0x2f7a614 rsp = 0x00007f9a5d4979e0 rip = 0x0000000004772614 Found by: stack scanning 5 skypeforlinux + 0x2fae400 rsp = 0x00007f9a5d497a00 rip = 0x00000000047a6400 Found by: stack scanning 6 skypeforlinux + 0x241db8 rsp = 0x00007f9a5d497a30 rip = 0x000000000031fdb8 Found by: stack scanning 7 skypeforlinux + 0x2f8797c rsp = 0x00007f9a5d497a40 rip = 0x000000000477f97c Found by: stack scanning 8 libstdc++.so.6.0.21 + 0xcfd87 rsp = 0x00007f9a5d497a70 rip = 0x00007f9afdf80d87 Found by: stack scanning 9 skypeforlinux + 0x13e1c4 rsp = 0x00007f9a5d497ad0 rip = 0x000000000021c1c4 Found by: stack scanning 10 skypeforlinux + 0x241db8 rsp = 0x00007f9a5d497ad8 rip = 0x000000000031fdb8 Found by: stack scanning 11 skypeforlinux + 0x1645185 rsp = 0x00007f9a5d497ae8 rip = 0x0000000002e3d185 Found by: stack scanning 12 skypeforlinux + 0x2409c6 rsp = 0x00007f9a5d497b50 rip = 0x0000000001a389c6 Found by: stack scanning 13 skypeforlinux + 0x2fdda43 rsp = 0x00007f9a5d497bc0 rip = 0x00000000047d5a43 Found by: stack scanning 14 libpthread-2.23.so + 0x76ba rsp = 0x00007f9a5d497be0 rip = 0x00007f9b041426ba Found by: stack scanning 15 libc-2.23.so + 0x10741d rsp = 0x00007f9a5d497c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 33 0 libpthread-2.23.so + 0xd709 rax = 0xfffffffffffffdfc rdx = 0x0000000000000126 rcx = 0x00007f9b04148709 rbx = 0x0000000000002143 rsi = 0x0000000000000089 rdi = 0x00007f9ad4004784 rbp = 0x0000000004f26be0 rsp = 0x00007f9a5cc96900 r8 = 0x00007f9ad4004758 r9 = 0x00000000ffffffff r10 = 0x00007f9a5cc96960 r11 = 0x0000000000000206 r12 = 0x0000000000000126 r13 = 0x00007f9a5cc96960 r14 = 0xffffffffffffff92 r15 = 0x000000000daf1a00 rip = 0x00007f9b04148709 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fea132 rsp = 0x00007f9a5cc96950 rip = 0x00000000047e2132 Found by: stack scanning 2 skypeforlinux + 0x2f87564 rsp = 0x00007f9a5cc96990 rip = 0x000000000477f564 Found by: stack scanning 3 skypeforlinux + 0x2f7bac3 rsp = 0x00007f9a5cc969d0 rip = 0x0000000004773ac3 Found by: stack scanning 4 skypeforlinux + 0x2f7a614 rsp = 0x00007f9a5cc969e0 rip = 0x0000000004772614 Found by: stack scanning 5 skypeforlinux + 0x2fae400 rsp = 0x00007f9a5cc96a00 rip = 0x00000000047a6400 Found by: stack scanning 6 skypeforlinux + 0x241db8 rsp = 0x00007f9a5cc96a30 rip = 0x000000000031fdb8 Found by: stack scanning 7 skypeforlinux + 0x2f8797c rsp = 0x00007f9a5cc96a40 rip = 0x000000000477f97c Found by: stack scanning 8 libstdc++.so.6.0.21 + 0xcfd87 rsp = 0x00007f9a5cc96a70 rip = 0x00007f9afdf80d87 Found by: stack scanning 9 skypeforlinux + 0x13e1c4 rsp = 0x00007f9a5cc96ad0 rip = 0x000000000021c1c4 Found by: stack scanning 10 skypeforlinux + 0x241db8 rsp = 0x00007f9a5cc96ad8 rip = 0x000000000031fdb8 Found by: stack scanning 11 skypeforlinux + 0x1645185 rsp = 0x00007f9a5cc96ae8 rip = 0x0000000002e3d185 Found by: stack scanning 12 skypeforlinux + 0x2409c6 rsp = 0x00007f9a5cc96b50 rip = 0x0000000001a389c6 Found by: stack scanning 13 skypeforlinux + 0x2fdda43 rsp = 0x00007f9a5cc96bc0 rip = 0x00000000047d5a43 Found by: stack scanning 14 libpthread-2.23.so + 0x76ba rsp = 0x00007f9a5cc96be0 rip = 0x00007f9b041426ba Found by: stack scanning 15 libc-2.23.so + 0x10741d rsp = 0x00007f9a5cc96c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 34 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000003 rcx = 0x00007f9b04148360 rbx = 0x0000000004f36920 rsi = 0x0000000000000080 rdi = 0x0000000004f36984 rbp = 0x000000000253c9e0 rsp = 0x00007f9abdffaac0 r8 = 0x0000000004f36900 r9 = 0x0000000000000001 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9a7c012890 r13 = 0x0000000004f26f60 r14 = 0x0000000004f36958 r15 = 0x0000000004f36980 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 skypeforlinux + 0xd35288 rsp = 0x00007f9abdffaaf0 rip = 0x000000000252d288 Found by: stack scanning 2 libc-2.23.so + 0x84184 rsp = 0x00007f9abdffab00 rip = 0x00007f9afd64c184 Found by: stack scanning 3 skypeforlinux + 0x11bc43 rsp = 0x00007f9abdffab10 rip = 0x0000000001913c43 Found by: stack scanning 4 skypeforlinux + 0x2409c6 rsp = 0x00007f9abdffab50 rip = 0x0000000001a389c6 Found by: stack scanning 5 skypeforlinux + 0xd351f6 rsp = 0x00007f9abdffaba0 rip = 0x000000000252d1f6 Found by: stack scanning 6 skypeforlinux + 0x3b2ac0 rsp = 0x00007f9abdffaba8 rip = 0x0000000000490ac0 Found by: stack scanning 7 skypeforlinux + 0xd36bbb rsp = 0x00007f9abdffabb0 rip = 0x000000000252ebbb Found by: stack scanning 8 skypeforlinux + 0x2fdda43 rsp = 0x00007f9abdffabc0 rip = 0x00000000047d5a43 Found by: stack scanning 9 skypeforlinux + 0x722000 rsp = 0x00007f9abdffabd0 rip = 0x0000000000800000 Found by: stack scanning 10 libpthread-2.23.so + 0x76ba rsp = 0x00007f9abdffabe0 rip = 0x00007f9b041426ba Found by: stack scanning 11 skypeforlinux + 0x722000 rsp = 0x00007f9abdffac18 rip = 0x0000000000800000 Found by: stack scanning 12 libc-2.23.so + 0x10741d rsp = 0x00007f9abdffac80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 35 0 libpthread-2.23.so + 0xd709 rax = 0xfffffffffffffdfc rdx = 0x0000000000000001 rcx = 0x00007f9b04148709 rbx = 0x0000000000002006 rsi = 0x0000000000000089 rdi = 0x00007f9a61fb9aac rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb99d0 r8 = 0x00007f9a61fb9a80 r9 = 0x00000000ffffffff r10 = 0x00007f9a61fb9a30 r11 = 0x0000000000000206 r12 = 0x0000000000000001 r13 = 0x00007f9a61fb9a30 r14 = 0xffffffffffffff92 r15 = 0x000000002a020100 rip = 0x00007f9b04148709 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fea132 rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9a20 rip = 0x00000000047e2132 Found by: stack scanning 2 skypeforlinux + 0x2fcc98a rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9a60 rip = 0x00000000047c498a Found by: stack scanning 3 skypeforlinux + 0x21406ff rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9a68 rip = 0x00000000039386ff Found by: stack scanning 4 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9a70 rip = 0x00000000005e6c00 Found by: stack scanning 5 libc-2.23.so + 0x115876 rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9af0 rip = 0x00007f9afd6dd876 Found by: stack scanning 6 skypeforlinux + 0x2fcca79 rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9b30 rip = 0x00000000047c4a79 Found by: stack scanning 7 skypeforlinux + 0x2fc1f49 rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9b50 rip = 0x00000000047b9f49 Found by: stack scanning 8 skypeforlinux + 0x2140700 rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9b60 rip = 0x0000000003938700 Found by: stack scanning 9 skypeforlinux + 0x2fc256e rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9b70 rip = 0x00000000047ba56e Found by: stack scanning 10 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9bc0 rip = 0x00000000047d5a43 Found by: stack scanning 11 skypeforlinux + 0x722000 rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9bd0 rip = 0x0000000000800000 Found by: stack scanning 12 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9be0 rip = 0x00007f9b041426ba Found by: stack scanning 13 skypeforlinux + 0x722000 rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9c18 rip = 0x0000000000800000 Found by: stack scanning 14 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 36 0 libpthread-2.23.so + 0xd709 rax = 0xfffffffffffffdfc rdx = 0x0000000000000001 rcx = 0x00007f9b04148709 rbx = 0x0000000000002006 rsi = 0x0000000000000089 rdi = 0x00007f9abd7f9aac rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f99d0 r8 = 0x00007f9abd7f9a80 r9 = 0x00000000ffffffff r10 = 0x00007f9abd7f9a30 r11 = 0x0000000000000206 r12 = 0x0000000000000001 r13 = 0x00007f9abd7f9a30 r14 = 0xffffffffffffff92 r15 = 0x000000000367e900 rip = 0x00007f9b04148709 Found by: given as instruction pointer in context 1 skypeforlinux + 0x1e8691f rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9a00 rip = 0x000000000367e91f Found by: stack scanning 2 skypeforlinux + 0x2fea132 rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9a20 rip = 0x00000000047e2132 Found by: stack scanning 3 skypeforlinux + 0x1e86d07 rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9a30 rip = 0x000000000367ed07 Found by: stack scanning 4 skypeforlinux + 0x1e8691f rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9a40 rip = 0x000000000367e91f Found by: stack scanning 5 skypeforlinux + 0x2fcc98a rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9a60 rip = 0x00000000047c498a Found by: stack scanning 6 skypeforlinux + 0x21406ff rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9a68 rip = 0x00000000039386ff Found by: stack scanning 7 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9a70 rip = 0x00000000005e6c00 Found by: stack scanning 8 libc-2.23.so + 0x115876 rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9af0 rip = 0x00007f9afd6dd876 Found by: stack scanning 9 skypeforlinux + 0x2fcca79 rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9b30 rip = 0x00000000047c4a79 Found by: stack scanning 10 skypeforlinux + 0x2fc1f49 rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9b50 rip = 0x00000000047b9f49 Found by: stack scanning 11 skypeforlinux + 0x2140700 rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9b60 rip = 0x0000000003938700 Found by: stack scanning 12 skypeforlinux + 0x2fc256e rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9b70 rip = 0x00000000047ba56e Found by: stack scanning 13 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9bc0 rip = 0x00000000047d5a43 Found by: stack scanning 14 skypeforlinux + 0x722000 rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9bd0 rip = 0x0000000000800000 Found by: stack scanning 15 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9be0 rip = 0x00007f9b041426ba Found by: stack scanning 16 skypeforlinux + 0x722000 rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9c18 rip = 0x0000000000800000 Found by: stack scanning 17 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9c80 rip = 0x00007f9afd6cf41d Found by: stack scanning``` &lt;/details&gt; ### How to reproduce "><pre lang="Operating" class="notranslate"><code class="notranslate"> 0.0.0 Linux 4.13.0-39-generic #44-Ubuntu SMP Thu Apr 5 14:25:01 UTC 2018 x86_64 CPU: amd64 family 6 model 60 stepping 3 1 CPU GPU: UNKNOWN Crash reason: SIGABRT Crash address: 0x3e80000194e Process uptime: not available Thread 0 (crashed) 0 libc-2.23.so + 0x35428 rax = 0x0000000000000000 rdx = 0x0000000000000006 rcx = 0x00007f9afd5fd428 rbx = 0x00000000000000a6 rsi = 0x000000000000194e rdi = 0x000000000000194e rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab1858 r8 = 0x0000000000000000 r9 = 0x0000000000000001 r10 = 0x0000000000000008 r11 = 0x0000000000000206 r12 = 0x00000000000000a6 r13 = 0x00007ffee0ab1a08 r14 = 0x00007ffee0ab1a08 r15 = 0x0000000000000002 rip = 0x00007f9afd5fd428 Found by: given as instruction pointer in context 1 libc-2.23.so + 0x3702a rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab1860 rip = 0x00007f9afd5ff02a Found by: stack scanning 2 libc-2.23.so + 0x8453c rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab1940 rip = 0x00007f9afd64c53c Found by: stack scanning 3 libc-2.23.so + 0x777ea rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab1990 rip = 0x00007f9afd63f7ea Found by: stack scanning 4 libc-2.23.so + 0x190ed8 rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab1998 rip = 0x00007f9afd758ed8 Found by: stack scanning 5 libc-2.23.so + 0x190ee8 rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab19b8 rip = 0x00007f9afd758ee8 Found by: stack scanning 6 libc-2.23.so + 0x18dd3f rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab19c8 rip = 0x00007f9afd755d3f Found by: stack scanning 7 libc-2.23.so + 0x190eed rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab19d8 rip = 0x00007f9afd758eed Found by: stack scanning 8 libc-2.23.so + 0x190ef3 rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab19f8 rip = 0x00007f9afd758ef3 Found by: stack scanning 9 libc-2.23.so + 0x190ef3 rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab1a18 rip = 0x00007f9afd758ef3 Found by: stack scanning 10 libc-2.23.so + 0x775ce rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab1a40 rip = 0x00007f9afd63f5ce Found by: stack scanning 11 libglib-2.0.so.0.4800.2!g_variant_serialiser_needed_size + 0x319 rbp = 0x00007ffee0ab1bf0 rsp = 0x00007ffee0ab1a60 rip = 0x00007f9affee7cf9 Found by: stack scanning 12 libglib-2.0.so.0.4800.2!g_variant_new_fixed_array + 0x1c7 rbx = 0x00000000061d8010 rbp = 0x00007ffee0ab1b50 rsp = 0x00007ffee0ab1af0 r12 = 0x00007f9afd63f654 r13 = 0x00007f9afd758ee8 r14 = 0x0000000000000003 r15 = 0x00007ffee0ab1b00 rip = 0x00007f9affee1ca7 Found by: call frame info 13 libc-2.23.so + 0x775ce rbx = 0x00000000061d8010 rbp = 0x00007ffee0ab1b50 rsp = 0x00007ffee0ab1b00 r12 = 0x00007f9afd63f654 r13 = 0x00007f9afd758ee8 r14 = 0x0000000000000003 r15 = 0x00007ffee0ab1b00 rip = 0x00007f9afd63f5ce Found by: call frame info 14 libc-2.23.so + 0x39786 rbp = 0x00007ffee0ab1b50 rsp = 0x00007ffee0ab1b20 rip = 0x00007f9afd601786 Found by: stack scanning 15 libc-2.23.so + 0x77654 rbp = 0x00007ffee0ab1b50 rsp = 0x00007ffee0ab1b30 rip = 0x00007f9afd63f654 Found by: stack scanning 16 libc-2.23.so + 0x190ed8 rbp = 0x00007ffee0ab1b50 rsp = 0x00007ffee0ab1b38 rip = 0x00007f9afd758ed8 Found by: stack scanning 17 libc-2.23.so + 0x775ce rsp = 0x00007ffee0ab1b60 rip = 0x00007f9afd63f5ce Found by: stack scanning 18 libgobject-2.0.so.0.4800.2!g_cclosure_marshal_BOOLEAN__BOXED_BOXEDv + 0x830 rsp = 0x00007ffee0ab1b78 rip = 0x00007f9b023b6110 Found by: stack scanning 19 libc-2.23.so + 0x18dd3f rsp = 0x00007ffee0ab1bb0 rip = 0x00007f9afd755d3f Found by: stack scanning 20 libc-2.23.so + 0x8213e rsp = 0x00007ffee0ab1c00 rip = 0x00007f9afd64a13e Found by: stack scanning 21 libglib-2.0.so.0.4800.2!g_variant_get_child_value + 0xf0 rsp = 0x00007ffee0ab1c98 rip = 0x00007f9affee2500 Found by: stack scanning 22 0x7f9a680078b0 rbx = 0x00007f9afd64c184 rbp = 0x0000000000000015 rsp = 0x00007ffee0ab1cf8 r12 = 0x0000000000000113 rip = 0x00007f9a680078b0 Found by: call frame info 23 skypeforlinux + 0x2fc0fac rsp = 0x00007ffee0ab1d00 rip = 0x00000000047b8fac Found by: stack scanning 24 libglib-2.0.so.0.4800.2!g_malloc + 0x19 rsp = 0x00007ffee0ab1d30 rip = 0x00007f9affeac719 Found by: stack scanning 25 libglib-2.0.so.0.4800.2!g_variant_unref + 0x1ed rbx = 0x00007f9a68007890 rsp = 0x00007ffee0ab1d40 rip = 0x00007f9affee208d Found by: call frame info 26 libglib-2.0.so.0.4800.2!g_variant_get_data + 0x1f rbx = 0x00007f9a68007890 rbp = 0x00007f9a680078b0 rsp = 0x00007ffee0ab1d60 rip = 0x00007f9affee22ff Found by: call frame info 27 libglib-2.0.so.0.4800.2!g_variant_get + 0xda rbx = 0x00007f9aef778070 rbp = 0x00007f9a68007890 rsp = 0x00007ffee0ab1d80 rip = 0x00007f9affee110a Found by: call frame info 28 libgioremote-volume-monitor.so + 0x8e63 rbx = 0x000000000601cba0 rbp = 0x00007f9aef778000 rsp = 0x00007ffee0ab1e70 rip = 0x00007f9aef76de63 Found by: call frame info 29 libc-2.23.so + 0x84184 rsp = 0x00007ffee0ab1ee0 rip = 0x00007f9afd64c184 Found by: stack scanning 30 skypeforlinux + 0x2fc0fac rsp = 0x00007ffee0ab1f00 rip = 0x00000000047b8fac Found by: stack scanning 31 libglib-2.0.so.0.4800.2!g_datalist_id_set_data_full + 0x1ce rsp = 0x00007ffee0ab1f40 rip = 0x00007f9affe8ae6e Found by: stack scanning 32 0x7ffee0ab1fd0 rbx = 0x000000000601cba0 rbp = 0x0000000005ea1d39 rsp = 0x00007ffee0ab1f90 r12 = 0xf5a6c04319cc4e00 r13 = 0x0000000004f159e0 r14 = 0x00007f9a78002770 r15 = 0x00007f9a68007890 rip = 0x00007ffee0ab1fd0 Found by: call frame info 33 libgioremote-volume-monitor.so + 0xcbfe rsp = 0x00007ffee0ab1fb0 rip = 0x00007f9aef771bfe Found by: stack scanning 34 skypeforlinux + 0x894ce0 rsp = 0x00007ffee0ab1ff8 rip = 0x0000000000972ce0 Found by: stack scanning 35 libc-2.23.so + 0x84184 rsp = 0x00007ffee0ab2000 rip = 0x00007f9afd64c184 Found by: stack scanning 36 libglib-2.0.so.0.4800.2!g_str_equal + 0x20 rsp = 0x00007ffee0ab2008 rip = 0x00007f9affe96770 Found by: stack scanning 37 skypeforlinux + 0x2fc0fac rsp = 0x00007ffee0ab2020 rip = 0x00000000047b8fac Found by: stack scanning 38 libglib-2.0.so.0.4800.2!g_malloc + 0x19 rsp = 0x00007ffee0ab2050 rip = 0x00007f9affeac719 Found by: stack scanning 39 0xf5a6c04319cc4e00 rbx = 0x000000000600a640 rsp = 0x00007ffee0ab2060 rip = 0xf5a6c04319cc4e00 Found by: call frame info 40 skypeforlinux + 0x371d9e0 rsp = 0x00007ffee0ab2088 rip = 0x0000000004f159e0 Found by: stack scanning 41 libgioremote-volume-monitor.so + 0xda8b rsp = 0x00007ffee0ab2090 rip = 0x00007f9aef772a8b Found by: stack scanning 42 libgobject-2.0.so.0.4800.2!g_object_unref + 0xed8 rsp = 0x00007ffee0ab20e0 rip = 0x00007f9b023b7ad8 Found by: stack scanning 43 libgobject-2.0.so.0.4800.2!g_object_newv + 0xd1 rbx = 0x0000000000000000 rbp = 0x00007ffee0ab2210 rsp = 0x00007ffee0ab21b0 r12 = 0x0000000005f28300 r13 = 0x00000000061d7c10 r14 = 0x0000000000000000 r15 = 0x00000000065e39b0 rip = 0x00007f9b023b8c01 Found by: call frame info 44 libgobject-2.0.so.0.4800.2!g_object_new + 0x104 rbx = 0x0000000005f28300 rbp = 0x0000000000000000 rsp = 0x00007ffee0ab2220 r12 = 0x0000000006016800 r13 = 0x00000000061d7c10 r14 = 0x0000000000000000 r15 = 0x00000000065e39b0 rip = 0x00007f9b023b9534 Found by: call frame info 45 libgio-2.0.so.0.4800.2!g_volume_monitor_get + 0x7c rbx = 0x00000000065b5230 rbp = 0x00000000065ca130 rsp = 0x00007ffee0ab2310 r12 = 0x0000000006016800 r13 = 0x00000000061d7c10 r14 = 0x0000000000000000 r15 = 0x00000000065e39b0 rip = 0x00007f9b02688ebc Found by: call frame info 46 libgtk-3.so.0.1800.9 + 0x25c3d5 rbx = 0x00000000065de450 rbp = 0x00000000065ca130 rsp = 0x00007ffee0ab2340 r12 = 0x0000000006016800 r13 = 0x0000000000000000 r14 = 0x0000000000000000 r15 = 0x00000000065e39b0 rip = 0x00007f9b03a683d5 Found by: call frame info 47 libgobject-2.0.so.0.4800.2!g_type_create_instance + 0x1f9 rsp = 0x00007ffee0ab2370 rip = 0x00007f9b023d5359 Found by: stack scanning 48 libgobject-2.0.so.0.4800.2!g_object_unref + 0x71b rbx = 0x0000000000000000 rbp = 0x00007ffee0ab2590 rsp = 0x00007ffee0ab2460 r12 = 0x00000000065ca130 r13 = 0x0000000000000000 r14 = 0x0000000006016800 rip = 0x00007f9b023b731b Found by: call frame info 49 libgobject-2.0.so.0.4800.2!g_object_newv + 0xd1 rbx = 0x0000000000000000 rbp = 0x00007ffee0ab2590 rsp = 0x00007ffee0ab2530 r12 = 0x00000000065ca130 r13 = 0x00007ffee0ab2750 r14 = 0x0000000005fdcc00 r15 = 0x00000000065e39b0 rip = 0x00007f9b023b8c01 Found by: call frame info 50 libgtk-3.so.0.1800.9 + 0x11a75a rbx = 0x000000000604d240 rbp = 0x0000000000000000 rsp = 0x00007ffee0ab25a0 r12 = 0x00007ffee0ab2700 r13 = 0x00007ffee0ab2750 r14 = 0x0000000005fdcc00 r15 = 0x00000000065e39b0 rip = 0x00007f9b0392675a Found by: call frame info 51 skypeforlinux + 0x2fc1055 rsp = 0x00007ffee0ab25b0 rip = 0x00000000047b9055 Found by: stack scanning 52 libgtk-3.so.0.1800.9 + 0x11ce73 rsp = 0x00007ffee0ab2620 rip = 0x00007f9b03928e73 Found by: stack scanning 53 libglib-2.0.so.0.4800.2!g_slist_concat + 0x1b rsp = 0x00007ffee0ab2690 rip = 0x00007f9affec503b Found by: stack scanning 54 0x65ca1d0 rbx = 0xf5a6c04319cc4e00 rbp = 0x00000000063d98d0 rsp = 0x00007ffee0ab26b0 rip = 0x00000000065ca1d0 Found by: call frame info 55 libglib-2.0.so.0.4800.2!g_markup_parse_context_push + 0x233 rsp = 0x00007ffee0ab26e0 rip = 0x00007f9affeaa5a3 Found by: stack scanning 56 libgtk-3.so.0.1800.9 + 0x4175a4 rsp = 0x00007ffee0ab26f0 rip = 0x00007f9b03c235a4 Found by: stack scanning 57 libgtk-3.so.0.1800.9 + 0x3b3085 rsp = 0x00007ffee0ab26f8 rip = 0x00007f9b03bbf085 Found by: stack scanning 58 libglib-2.0.so.0.4800.2!g_slist_prepend + 0x16 rsp = 0x00007ffee0ab2700 rip = 0x00007f9affec49f6 Found by: stack scanning 59 0x7ffee0ab2748 rbx = 0x000000000000000b rbp = 0x0000000005fdcc00 rsp = 0x00007ffee0ab2720 rip = 0x00007ffee0ab2748 Found by: call frame info 60 libglib-2.0.so.0.4800.2!g_string_insert_len + 0x101 rsp = 0x00007ffee0ab2750 rip = 0x00007f9affec7fe1 Found by: stack scanning 61 libglib-2.0.so.0.4800.2!g_markup_parse_context_parse + 0xfc3 rbx = 0x00007f9affef7d60 rbp = 0x00007ffee0ab27e0 rsp = 0x00007ffee0ab27a0 r12 = 0x00007ffee0ab27d8 r13 = 0x00000000063d98d0 r14 = 0x0000000000000007 r15 = 0x00007ffee0ab2890 rip = 0x00007f9affeab763 Found by: call frame info 62 libgtk-3.so.0.1800.9 + 0x11d8d6 rbx = 0x000000000604d240 rbp = 0x00000000065e39b0 rsp = 0x00007ffee0ab2830 r12 = 0x00007ffee0ab2890 r13 = 0x0000000000000000 r14 = 0x0000000000000000 r15 = 0x0000000000007070 rip = 0x00007f9b039298d6 Found by: call frame info 63 libgtk-3.so.0.1800.9 + 0x3b2df4 rsp = 0x00007ffee0ab2840 rip = 0x00007f9b03bbedf4 Found by: stack scanning 64 libgtk-3.so.0.1800.9 + 0x118b78 rsp = 0x00007ffee0ab2880 rip = 0x00007f9b03924b78 Found by: stack scanning 65 libgtk-3.so.0.1800.9 + 0x362e07 rsp = 0x00007ffee0ab28e0 rip = 0x00007f9b03b6ee07 Found by: stack scanning 66 libgtk-3.so.0.1800.9 + 0x1ae4f1 rsp = 0x00007ffee0ab2940 rip = 0x00007f9b039ba4f1 Found by: stack scanning 67 libgobject-2.0.so.0.4800.2!g_type_create_instance + 0x1f9 rsp = 0x00007ffee0ab2960 rip = 0x00007f9b023d5359 Found by: stack scanning 68 libgobject-2.0.so.0.4800.2!g_object_unref + 0x71b rbx = 0x0000000000000000 rbp = 0x00007ffee0ab2b80 rsp = 0x00007ffee0ab2a50 r12 = 0x0000000005f23050 r13 = 0x0000000000000000 r14 = 0x0000000006632000 rip = 0x00007f9b023b731b Found by: call frame info 69 libgobject-2.0.so.0.4800.2!g_object_newv + 0xd1 rbx = 0x0000000000000000 rbp = 0x00007ffee0ab2b80 rsp = 0x00007ffee0ab2b20 r12 = 0x0000000005f23050 r13 = 0x00000000061e2d80 r14 = 0x000000000662eb00 r15 = 0x0000000006631de0 rip = 0x00007f9b023b8c01 Found by: call frame info 70 libgtk-3.so.0.1800.9 + 0x11a75a rbx = 0x000000000662eb00 rbp = 0x0000000000000000 rsp = 0x00007ffee0ab2b90 r12 = 0x00000000063ad498 r13 = 0x00000000061e2d80 r14 = 0x000000000662eb00 r15 = 0x0000000006631de0 rip = 0x00007f9b0392675a Found by: call frame info 71 skypeforlinux + 0x894ce0 rsp = 0x00007ffee0ab2bb8 rip = 0x0000000000972ce0 Found by: stack scanning 72 libgtk-3.so.0.1800.9 + 0x4175a4 rsp = 0x00007ffee0ab2c00 rip = 0x00007f9b03c235a4 Found by: stack scanning 73 libgtk-3.so.0.1800.9 + 0x11bb65 rsp = 0x00007ffee0ab2c10 rip = 0x00007f9b03927b65 Found by: stack scanning 74 libgtk-3.so.0.1800.9 + 0x11d4f1 rsp = 0x00007ffee0ab2c40 rip = 0x00007f9b039294f1 Found by: stack scanning 75 libglib-2.0.so.0.4800.2!g_markup_parse_context_pop + 0x117 rsp = 0x00007ffee0ab2c90 rip = 0x00007f9affeaa6d7 Found by: stack scanning 76 libglib-2.0.so.0.4800.2!g_markup_parse_context_parse + 0xd8e rbx = 0x00007f9affef7d60 rbp = 0x00007ffee0ab2db0 rsp = 0x00007ffee0ab2cc0 rip = 0x00007f9affeab52e Found by: call frame info 77 libgtk-3.so.0.1800.9 + 0x11d8d6 rbx = 0x00000000063ad490 rbp = 0x0000000006631de0 rsp = 0x00007ffee0ab2d50 r12 = 0x00007ffee0ab2db0 r13 = 0x0000000000000000 r14 = 0x0000000000000000 r15 = 0x0000000000000763 rip = 0x00007f9b039298d6 Found by: call frame info 78 libgtk-3.so.0.1800.9 + 0x3b2df4 rsp = 0x00007ffee0ab2d60 rip = 0x00007f9b03bbedf4 Found by: stack scanning 79 libgtk-3.so.0.1800.9 + 0x3c9f9d rsp = 0x00007ffee0ab2d68 rip = 0x00007f9b03bd5f9d Found by: stack scanning 80 libgtk-3.so.0.1800.9 + 0x118b78 rsp = 0x00007ffee0ab2da0 rip = 0x00007f9b03924b78 Found by: stack scanning 81 libgtk-3.so.0.1800.9 + 0x362e07 rsp = 0x00007ffee0ab2e00 rip = 0x00007f9b03b6ee07 Found by: stack scanning 82 libgtk-3.so.0.1800.9 + 0x1a773e rsp = 0x00007ffee0ab2e60 rip = 0x00007f9b039b373e Found by: stack scanning 83 libgobject-2.0.so.0.4800.2!g_type_create_instance + 0x1f9 rsp = 0x00007ffee0ab2e70 rip = 0x00007f9b023d5359 Found by: stack scanning 84 libgobject-2.0.so.0.4800.2!g_object_unref + 0x71b rbx = 0x00007ffee0ab3110 rbp = 0x00007ffee0ab3250 rsp = 0x00007ffee0ab2f60 r12 = 0x00000000061cbf30 r13 = 0x0000000000000002 r14 = 0x0000000006015400 rip = 0x00007f9b023b731b Found by: call frame info 85 libgobject-2.0.so.0.4800.2!g_object_new_valist + 0x3b5 rbx = 0x0000000000000002 rbp = 0x00007ffee0ab3250 rsp = 0x00007ffee0ab3030 r12 = 0x00000000061cbf30 r13 = 0x00007f9b023e0d40 r14 = 0x0000000000000001 r15 = 0x00007ffee0ab30d0 rip = 0x00007f9b023b91b5 Found by: call frame info 86 libgobject-2.0.so.0.4800.2!g_object_new + 0xf1 rbx = 0x000000000626e600 rbp = 0x00007f9b03bbc8a2 rsp = 0x00007ffee0ab3260 r12 = 0x0000000000000000 r13 = 0x00000000002230a4 r14 = 0x0000000000000000 r15 = 0x0000000006611408 rip = 0x00007f9b023b9521 Found by: call frame info 87 libgtk-3.so.0.1800.9 + 0x1a8294 rbx = 0x0000000000000000 rbp = 0x0000000005800498 rsp = 0x00007ffee0ab3350 r12 = 0x0000000000000000 r13 = 0x00000000002230a4 r14 = 0x0000000000000000 r15 = 0x0000000006611408 rip = 0x00007f9b039b4294 Found by: call frame info 88 skypeforlinux + 0x1450ac rsp = 0x00007ffee0ab33a0 rip = 0x00000000002230ac Found by: stack scanning 89 skypeforlinux + 0x33c50f rsp = 0x00007ffee0ab33a8 rip = 0x000000000041a50f Found by: stack scanning 90 skypeforlinux + 0x1450ac rsp = 0x00007ffee0ab33b0 rip = 0x00000000002230ac Found by: stack scanning 91 skypeforlinux + 0x362fdfb rsp = 0x00007ffee0ab33d0 rip = 0x0000000004e27dfb Found by: stack scanning 92 libc-2.23.so + 0x84184 rsp = 0x00007ffee0ab3420 rip = 0x00007f9afd64c184 Found by: stack scanning 93 skypeforlinux + 0x363032d rsp = 0x00007ffee0ab3470 rip = 0x0000000004e2832d Found by: stack scanning 94 skypeforlinux + 0x3641d3c rsp = 0x00007ffee0ab34a0 rip = 0x0000000004e39d3c Found by: stack scanning 95 skypeforlinux + 0x136bbde rsp = 0x00007ffee0ab3500 rip = 0x0000000002b63bde Found by: stack scanning 96 libc-2.23.so + 0x84184 rsp = 0x00007ffee0ab3540 rip = 0x00007f9afd64c184 Found by: stack scanning 97 skypeforlinux + 0x58a9b4 rsp = 0x00007ffee0ab35d0 rip = 0x0000000001d829b4 Found by: stack scanning 98 skypeforlinux + 0x58a950 rsp = 0x00007ffee0ab35f0 rip = 0x0000000001d82950 Found by: stack scanning 99 skypeforlinux + 0x58a858 rsp = 0x00007ffee0ab3600 rip = 0x0000000001d82858 Found by: stack scanning 100 skypeforlinux + 0x894ce0 rsp = 0x00007ffee0ab3630 rip = 0x0000000000972ce0 Found by: stack scanning 101 libc-2.23.so + 0x115800 rsp = 0x00007ffee0ab36a0 rip = 0x00007f9afd6dd800 Found by: stack scanning 102 libc-2.23.so + 0x115801 rsp = 0x00007ffee0ab36b0 rip = 0x00007f9afd6dd801 Found by: stack scanning 103 skypeforlinux + 0x16198f rsp = 0x00007ffee0ab3710 rip = 0x000000000023f98f Found by: stack scanning 104 skypeforlinux + 0x584c2f rsp = 0x00007ffee0ab3740 rip = 0x0000000001d7cc2f Found by: stack scanning 105 skypeforlinux + 0x161cb7 rsp = 0x00007ffee0ab3750 rip = 0x000000000023fcb7 Found by: stack scanning 106 skypeforlinux + 0x16198f rsp = 0x00007ffee0ab3758 rip = 0x000000000023f98f Found by: stack scanning 107 skypeforlinux + 0x584bc9 rsp = 0x00007ffee0ab3768 rip = 0x0000000001d7cbc9 Found by: stack scanning 108 skypeforlinux + 0x30fd5e rsp = 0x00007ffee0ab3790 rip = 0x00000000003edd5e Found by: stack scanning 109 libc-2.23.so + 0x115876 rsp = 0x00007ffee0ab37a0 rip = 0x00007f9afd6dd876 Found by: stack scanning 110 libc-2.23.so + 0x115876 rsp = 0x00007ffee0ab37b0 rip = 0x00007f9afd6dd876 Found by: stack scanning 111 skypeforlinux + 0xb454a5 rsp = 0x00007ffee0ab3810 rip = 0x000000000233d4a5 Found by: stack scanning 112 skypeforlinux + 0x30fd5e rsp = 0x00007ffee0ab3828 rip = 0x00000000003edd5e Found by: stack scanning 113 skypeforlinux + 0x2ff4e4b rsp = 0x00007ffee0ab3840 rip = 0x00000000047ece4b Found by: stack scanning 114 skypeforlinux + 0xb4539b rsp = 0x00007ffee0ab3890 rip = 0x000000000233d39b Found by: stack scanning 115 skypeforlinux + 0xb77eef rsp = 0x00007ffee0ab3898 rip = 0x000000000236feef Found by: stack scanning 116 skypeforlinux + 0x2fc0efe rsp = 0x00007ffee0ab38f0 rip = 0x00000000047b8efe Found by: stack scanning 117 skypeforlinux + 0x2fe263b rsp = 0x00007ffee0ab3970 rip = 0x00000000047da63b Found by: stack scanning 118 skypeforlinux + 0x1a8708 rsp = 0x00007ffee0ab39f0 rip = 0x0000000000286708 Found by: stack scanning 119 skypeforlinux + 0x2fe2958 rsp = 0x00007ffee0ab3a30 rip = 0x00000000047da958 Found by: stack scanning 120 skypeforlinux + 0x2fe2d31 rsp = 0x00007ffee0ab3a50 rip = 0x00000000047dad31 Found by: stack scanning 121 skypeforlinux + 0x1a8727 rsp = 0x00007ffee0ab3a88 rip = 0x0000000000286727 Found by: stack scanning 122 skypeforlinux + 0x1a8708 rsp = 0x00007ffee0ab3a90 rip = 0x0000000000286708 Found by: stack scanning 123 skypeforlinux + 0xb4539b rsp = 0x00007ffee0ab3aa0 rip = 0x000000000233d39b Found by: stack scanning 124 skypeforlinux + 0xb77eef rsp = 0x00007ffee0ab3aa8 rip = 0x000000000236feef Found by: stack scanning 125 skypeforlinux + 0x1a8727 rsp = 0x00007ffee0ab3af0 rip = 0x0000000000286727 Found by: stack scanning 126 skypeforlinux + 0x1a8708 rsp = 0x00007ffee0ab3af8 rip = 0x0000000000286708 Found by: stack scanning 127 skypeforlinux + 0xb4539b rsp = 0x00007ffee0ab3b08 rip = 0x000000000233d39b Found by: stack scanning 128 skypeforlinux + 0xb77eef rsp = 0x00007ffee0ab3b10 rip = 0x000000000236feef Found by: stack scanning 129 libX11.so.6.3.0!_XFreeX11XCBStructure + 0x8c8 rsp = 0x00007ffee0ab3b50 rip = 0x00007f9b009e80e8 Found by: stack scanning 130 libX11.so.6.3.0!_XFreeX11XCBStructure + 0xa2b rbx = 0x00000000062607c0 rbp = 0x00007ffee0ab3b78 rsp = 0x00007ffee0ab3b70 rip = 0x00007f9b009e824b Found by: call frame info 131 skypeforlinux + 0x2fb8f10 rbx = 0x00000000062a8d10 rbp = 0x0000000005ea2860 rsp = 0x00007ffee0ab3bc0 r12 = 0x0000000005efb540 r13 = 0x00000000062a81d0 rip = 0x00000000047b0f10 Found by: call frame info 132 skypeforlinux + 0x2fb8f2a rsp = 0x00007ffee0ab3bd0 rip = 0x00000000047b0f2a Found by: stack scanning 133 libglib-2.0.so.0.4800.2!g_main_context_dispatch + 0x2a7 rsp = 0x00007ffee0ab3be0 rip = 0x00007f9affea7197 Found by: stack scanning 134 libglib-2.0.so.0.4800.2!g_main_context_dispatch + 0x500 rbx = 0x0000000005ea2860 rbp = 0x0000000000000001 rsp = 0x00007ffee0ab3c70 r12 = 0x0000000006360ea0 r13 = 0x0000000000000006 r14 = 0x00007f9affeb6280 r15 = 0x0000000000000006 rip = 0x00007f9affea73f0 Found by: call frame info 135 libglib-2.0.so.0.4800.2!g_main_context_iteration + 0x2c rbx = 0x0000000005ea2860 rbp = 0x0000000000000001 rsp = 0x00007ffee0ab3cd0 r12 = 0x00000000062a8d10 r13 = 0x00007ffee0ab43d0 r14 = 0x00000000062a8d28 r15 = 0x0000000000000000 rip = 0x00007f9affea749c Found by: call frame info 136 skypeforlinux + 0x2fb8e16 rbx = 0x00007ffee0ab3d00 rbp = 0x0000000000000000 rsp = 0x00007ffee0ab3cf0 r12 = 0x00000000062a8d10 r13 = 0x00007ffee0ab43d0 r14 = 0x00000000062a8d28 r15 = 0x0000000000000000 rip = 0x00000000047b0e16 Found by: call frame info 137 skypeforlinux + 0x171a000 rsp = 0x00007ffee0ab3d20 rip = 0x00000000017f8000 Found by: stack scanning 138 skypeforlinux + 0x2fa4c20 rsp = 0x00007ffee0ab3d40 rip = 0x000000000479cc20 Found by: stack scanning 139 skypeforlinux + 0x15f224 rsp = 0x00007ffee0ab3d48 rip = 0x000000000023d224 Found by: stack scanning 140 skypeforlinux + 0x2fe763b rsp = 0x00007ffee0ab3d60 rip = 0x00000000047df63b Found by: stack scanning 141 skypeforlinux + 0x2fe7610 rsp = 0x00007ffee0ab3d68 rip = 0x00000000047df610 Found by: stack scanning 142 skypeforlinux + 0x563d70 rsp = 0x00007ffee0ab3d80 rip = 0x0000000001d5bd70 Found by: stack scanning 143 skypeforlinux + 0x4ffe73 rsp = 0x00007ffee0ab3db0 rip = 0x00000000005dde73 Found by: stack scanning 144 skypeforlinux + 0x3fcf9e rsp = 0x00007ffee0ab3dd0 rip = 0x0000000001bf4f9e Found by: stack scanning 145 skypeforlinux + 0x2ff100c rsp = 0x00007ffee0ab3df0 rip = 0x00000000047e900c Found by: stack scanning 146 skypeforlinux + 0xf22100 rsp = 0x00007ffee0ab3e00 rip = 0x0000000001000100 Found by: stack scanning 147 skypeforlinux + 0x171a000 rsp = 0x00007ffee0ab3e28 rip = 0x00000000017f8000 Found by: stack scanning 148 skypeforlinux + 0x3fcd9e rsp = 0x00007ffee0ab3e40 rip = 0x0000000001bf4d9e Found by: stack scanning 149 skypeforlinux + 0x10a406 rsp = 0x00007ffee0ab3e70 rip = 0x00000000001e8406 Found by: stack scanning 150 skypeforlinux + 0x563ead rsp = 0x00007ffee0ab3eb0 rip = 0x0000000001d5bead Found by: stack scanning 151 skypeforlinux + 0x665b93 rsp = 0x00007ffee0ab3ec0 rip = 0x0000000001e5db93 Found by: stack scanning 152 libstdc++.so.6.0.21 + 0xcebb8 rsp = 0x00007ffee0ab3ed0 rip = 0x00007f9afdf7fbb8 Found by: stack scanning 153 skypeforlinux + 0x171a000 rsp = 0x00007ffee0ab3ef0 rip = 0x00000000017f8000 Found by: stack scanning 154 skypeforlinux + 0x35a3384 rsp = 0x00007ffee0ab3f00 rip = 0x0000000004d9b384 Found by: stack scanning 155 skypeforlinux + 0x249f04 rsp = 0x00007ffee0ab3f10 rip = 0x0000000001a41f04 Found by: stack scanning 156 skypeforlinux + 0x24a63c rsp = 0x00007ffee0ab3f30 rip = 0x0000000001a4263c Found by: stack scanning 157 skypeforlinux + 0x1e4d0d rsp = 0x00007ffee0ab3f80 rip = 0x00000000019dcd0d Found by: stack scanning 158 ld-2.23.so + 0x9e14 rsp = 0x00007ffee0ab3f90 rip = 0x00007f9b05631e14 Found by: stack scanning 159 libsystemd.so.0.14.0 + 0x7f001 rsp = 0x00007ffee0ab3fa8 rip = 0x00007f9b05830001 Found by: stack scanning 160 skypeforlinux + 0x16240 rsp = 0x00007ffee0ab3fb0 rip = 0x00000000000f4240 Found by: stack scanning 161 libc-2.23.so + 0x10ff8 rsp = 0x00007ffee0ab3fd0 rip = 0x00007f9afd5d8ff8 Found by: stack scanning 162 ld-2.23.so + 0x9fe1 rsp = 0x00007ffee0ab3ff0 rip = 0x00007f9b05631fe1 Found by: stack scanning 163 ld-2.23.so + 0xab1f rsp = 0x00007ffee0ab40c0 rip = 0x00007f9b05632b1f Found by: stack scanning 164 libc-2.23.so + 0x8658 rsp = 0x00007ffee0ab4158 rip = 0x00007f9afd5d0658 Found by: stack scanning 165 skypeforlinux + 0x5455e0 rsp = 0x00007ffee0ab4178 rip = 0x00000000006235e0 Found by: stack scanning 166 libc-2.23.so + 0x8658 rsp = 0x00007ffee0ab4210 rip = 0x00007f9afd5d0658 Found by: stack scanning 167 ld-2.23.so + 0x17923 rsp = 0x00007ffee0ab4220 rip = 0x00007f9b0563f923 Found by: stack scanning 168 skypeforlinux + 0x2fc0efe rsp = 0x00007ffee0ab42f0 rip = 0x00000000047b8efe Found by: stack scanning 169 skypeforlinux + 0x894ce0 rsp = 0x00007ffee0ab4310 rip = 0x0000000000972ce0 Found by: stack scanning 170 libc-2.23.so + 0x84184 rsp = 0x00007ffee0ab4330 rip = 0x00007f9afd64c184 Found by: stack scanning 171 skypeforlinux + 0x2fc0efe rsp = 0x00007ffee0ab4350 rip = 0x00000000047b8efe Found by: stack scanning 172 skypeforlinux + 0x171a000 rsp = 0x00007ffee0ab4360 rip = 0x00000000017f8000 Found by: stack scanning 173 skypeforlinux + 0x171a000 rsp = 0x00007ffee0ab4388 rip = 0x00000000017f8000 Found by: stack scanning 174 skypeforlinux + 0x24af92 rsp = 0x00007ffee0ab43b0 rip = 0x0000000001a42f92 Found by: stack scanning 175 skypeforlinux + 0x364278 rsp = 0x00007ffee0ab43d8 rip = 0x0000000000442278 Found by: stack scanning 176 skypeforlinux + 0x35a2bad rsp = 0x00007ffee0ab4430 rip = 0x0000000004d9abad Found by: stack scanning 177 skypeforlinux + 0x527270 rsp = 0x00007ffee0ab4468 rip = 0x0000000000605270 Found by: stack scanning 178 skypeforlinux + 0xc06a0 rsp = 0x00007ffee0ab44a8 rip = 0x00000000018b86a0 Found by: stack scanning 179 libc-2.23.so + 0x20830 rsp = 0x00007ffee0ab44b0 rip = 0x00007f9afd5e8830 Found by: stack scanning 180 skypeforlinux + 0x35a2b60 rsp = 0x00007ffee0ab44d0 rip = 0x0000000004d9ab60 Found by: stack scanning 181 skypeforlinux + 0x171a000 rsp = 0x00007ffee0ab44e8 rip = 0x00000000017f8000 Found by: stack scanning 182 skypeforlinux + 0xc0710 rsp = 0x00007ffee0ab4530 rip = 0x00000000018b8710 Found by: stack scanning 183 ld-2.23.so + 0x10ab0 rsp = 0x00007ffee0ab4538 rip = 0x00007f9b05638ab0 Found by: stack scanning 184 ld-2.23.so + 0x107cb rsp = 0x00007ffee0ab4540 rip = 0x00007f9b056387cb Found by: stack scanning 185 skypeforlinux + 0x171a000 rsp = 0x00007ffee0ab4558 rip = 0x00000000017f8000 Found by: stack scanning 186 skypeforlinux + 0x29 rsp = 0x00007ffee0ab4570 rip = 0x00000000017f8029 Found by: stack scanning Thread 1 0 libc-2.23.so + 0xfb74d rax = 0xfffffffffffffdfc rdx = 0x00000000ffffffff rcx = 0x00007f9afd6c374d rbx = 0x00007f9af49db9c0 rsi = 0x0000000000000002 rdi = 0x00007f9af49db9c0 rbp = 0x00007f9af0000a50 rsp = 0x00007f9af49db9b0 r8 = 0x00007f9af0000900 r9 = 0x00007f9af49daf00 r10 = 0x00007f9af49daef0 r11 = 0x0000000000000293 r12 = 0x00007f9af49db9d0 r13 = 0x0000000000000000 r14 = 0x00007f9af49db9e0 r15 = 0x0000000005e9c970 rip = 0x00007f9afd6c374d Found by: given as instruction pointer in context 1 skypeforlinux + 0x545742 rsp = 0x00007f9af49db9c0 rip = 0x0000000001d3d742 Found by: stack scanning 2 skypeforlinux + 0x5088c8 rsp = 0x00007f9af49dbaa8 rip = 0x00000000005e68c8 Found by: stack scanning 3 skypeforlinux + 0x2fe763b rsp = 0x00007f9af49dbad0 rip = 0x00000000047df63b Found by: stack scanning 4 libc-2.23.so + 0x8453c rsp = 0x00007f9af49dbb10 rip = 0x00007f9afd64c53c Found by: stack scanning 5 skypeforlinux + 0x2fddce7 rsp = 0x00007f9af49dbb90 rip = 0x00000000047d5ce7 Found by: stack scanning 6 skypeforlinux + 0x2fdda43 rsp = 0x00007f9af49dbbc0 rip = 0x00000000047d5a43 Found by: stack scanning 7 libpthread-2.23.so + 0x76ba rsp = 0x00007f9af49dbbe0 rip = 0x00007f9b041426ba Found by: stack scanning 8 libc-2.23.so + 0x10741d rsp = 0x00007f9af49dbc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 2 0 libc-2.23.so + 0xfb74d rax = 0xfffffffffffffdfc rdx = 0x00000000ffffffff rcx = 0x00007f9afd6c374d rbx = 0x0000000005f1a560 rsi = 0x0000000000000002 rdi = 0x00007f9ae00008c0 rbp = 0x0000000000000002 rsp = 0x00007f9aef763b30 r8 = 0x0000000000000002 r9 = 0x0000000000000001 r10 = 0x00000000065e56c0 r11 = 0x0000000000000293 r12 = 0x00007f9ae00008c0 r13 = 0x00000000ffffffff r14 = 0x00007f9affeb6280 r15 = 0x0000000000000002 rip = 0x00007f9afd6c374d Found by: given as instruction pointer in context 1 libglib-2.0.so.0.4800.2!g_main_context_dispatch + 0x49c rsp = 0x00007f9aef763b40 rip = 0x00007f9affea738c Found by: stack scanning 2 libglib-2.0.so.0.4800.2!g_main_context_iteration + 0x2c rbx = 0x0000000005f1a560 rbp = 0x0000000000000001 rsp = 0x00007f9aef763ba0 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab295f r14 = 0x00007f9aef7649c0 r15 = 0x0000000000000000 rip = 0x00007f9affea749c Found by: call frame info 3 libglib-2.0.so.0.4800.2!g_main_context_iteration + 0x69 rbx = 0x0000000005ecacf0 rbp = 0x0000000000000000 rsp = 0x00007f9aef763bc0 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab295f r14 = 0x00007f9aef7649c0 r15 = 0x0000000000000000 rip = 0x00007f9affea74d9 Found by: call frame info 4 libglib-2.0.so.0.4800.2!g_test_get_filename + 0x195 rbx = 0x0000000005ecacf0 rbp = 0x0000000000000000 rsp = 0x00007f9aef763bd0 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab295f r14 = 0x00007f9aef7649c0 r15 = 0x0000000000000000 rip = 0x00007f9affecdbb5 Found by: call frame info 5 libpthread-2.23.so + 0x76ba rbx = 0x0000000000000000 rbp = 0x0000000000000000 rsp = 0x00007f9aef763be0 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab295f r14 = 0x00007f9aef7649c0 r15 = 0x0000000000000000 rip = 0x00007f9b041426ba Found by: call frame info 6 libc-2.23.so + 0x10741d rsp = 0x00007f9aef763c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 3 0 libc-2.23.so + 0xfb74d rax = 0xfffffffffffffdfc rdx = 0x00000000ffffffff rcx = 0x00007f9afd6c374d rbx = 0x0000000005f24d40 rsi = 0x0000000000000002 rdi = 0x00007f9ae80010c0 rbp = 0x0000000000000002 rsp = 0x00007f9aeef62b20 r8 = 0x0000000000000002 r9 = 0x0000000000000001 r10 = 0x0000000005ef52c0 r11 = 0x0000000000000293 r12 = 0x00007f9ae80010c0 r13 = 0x00000000ffffffff r14 = 0x00007f9affeb6280 r15 = 0x0000000000000002 rip = 0x00007f9afd6c374d Found by: given as instruction pointer in context 1 libglib-2.0.so.0.4800.2!g_main_context_dispatch + 0x49c rsp = 0x00007f9aeef62b30 rip = 0x00007f9affea738c Found by: stack scanning 2 libglib-2.0.so.0.4800.2!g_main_loop_run + 0xc2 rbx = 0x0000000005f24cd0 rbp = 0x0000000005f24cdc rsp = 0x00007f9aeef62b90 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab2abf r14 = 0x00007f9aeef639c0 r15 = 0x0000000005f24d10 rip = 0x00007f9affea7712 Found by: call frame info 3 libgio-2.0.so.0.4800.2!g_dbus_proxy_call_with_unix_fd_list_sync + 0x1b6 rbx = 0x0000000005f24d10 rbp = 0x0000000000000000 rsp = 0x00007f9aeef62bc0 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab2abf r14 = 0x00007f9aeef639c0 r15 = 0x0000000005f24d10 rip = 0x00007f9b026d99d6 Found by: call frame info 4 libglib-2.0.so.0.4800.2!g_test_get_filename + 0x195 rbx = 0x0000000005ecad40 rbp = 0x0000000000000000 rsp = 0x00007f9aeef62bd0 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab2abf r14 = 0x00007f9aeef639c0 r15 = 0x0000000005f24d10 rip = 0x00007f9affecdbb5 Found by: call frame info 5 libpthread-2.23.so + 0x76ba rbx = 0x0000000000000000 rbp = 0x0000000000000000 rsp = 0x00007f9aeef62be0 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab2abf r14 = 0x00007f9aeef639c0 r15 = 0x0000000005f24d10 rip = 0x00007f9b041426ba Found by: call frame info 6 libc-2.23.so + 0x10741d rsp = 0x00007f9aeef62c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 4 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000bb3 rcx = 0x00007f9b04148360 rbx = 0x0000000006046e50 rsi = 0x0000000000000080 rdi = 0x0000000006046e7c rbp = 0x0000000000000000 rsp = 0x00007f9aed6e8b60 r8 = 0x0000000006046e00 r9 = 0x00000000000005d8 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab390f r14 = 0x0000000000000000 r15 = 0x0000000006046e78 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 libnode.so!v8::internal::FullCodeGenerator::Generate [full-codegen-x64.cc : 307 + 0xa] rsp = 0x00007f9aed6e8b90 rip = 0x00007f9b055511d6 Found by: stack scanning 2 libnode.so!icu_59::RuleBasedNumberFormat::init [rbnf.cpp : 1558 + 0xb] rsp = 0x00007f9aed6e8ba0 rip = 0x00007f9b053fd434 Found by: stack scanning 3 libnode.so + 0x932be0 rsp = 0x00007f9aed6e8bb8 rip = 0x00007f9b053fcbe0 Found by: stack scanning 4 libnode.so!icu_59::StringLocalizationInfo::~StringLocalizationInfo [rbnf.cpp : 624 + 0x2] rsp = 0x00007f9aed6e8bc0 rip = 0x00007f9b053fcc12 Found by: stack scanning 5 libpthread-2.23.so + 0x76ba rsp = 0x00007f9aed6e8be0 rip = 0x00007f9b041426ba Found by: stack scanning 6 libnode.so + 0x932be0 rsp = 0x00007f9aed6e8c20 rip = 0x00007f9b053fcbe0 Found by: stack scanning 7 libc-2.23.so + 0x10741d rsp = 0x00007f9aed6e8c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 5 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000bb7 rcx = 0x00007f9b04148360 rbx = 0x0000000006046e50 rsi = 0x0000000000000080 rdi = 0x0000000006046e7c rbp = 0x0000000000000000 rsp = 0x00007f9aecee7b60 r8 = 0x0000000006046e00 r9 = 0x00000000000005da r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab390f r14 = 0x0000000000000000 r15 = 0x0000000006046e78 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 libnode.so!v8::internal::FullCodeGenerator::Generate [full-codegen-x64.cc : 307 + 0xa] rsp = 0x00007f9aecee7b90 rip = 0x00007f9b055511d6 Found by: stack scanning 2 libnode.so!icu_59::RuleBasedNumberFormat::init [rbnf.cpp : 1558 + 0xb] rsp = 0x00007f9aecee7ba0 rip = 0x00007f9b053fd434 Found by: stack scanning 3 libnode.so + 0x932be0 rsp = 0x00007f9aecee7bb8 rip = 0x00007f9b053fcbe0 Found by: stack scanning 4 libnode.so!icu_59::StringLocalizationInfo::~StringLocalizationInfo [rbnf.cpp : 624 + 0x2] rsp = 0x00007f9aecee7bc0 rip = 0x00007f9b053fcc12 Found by: stack scanning 5 libpthread-2.23.so + 0x76ba rsp = 0x00007f9aecee7be0 rip = 0x00007f9b041426ba Found by: stack scanning 6 libnode.so + 0x932be0 rsp = 0x00007f9aecee7c20 rip = 0x00007f9b053fcbe0 Found by: stack scanning 7 libc-2.23.so + 0x10741d rsp = 0x00007f9aecee7c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 6 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000bb5 rcx = 0x00007f9b04148360 rbx = 0x0000000006046e50 rsi = 0x0000000000000080 rdi = 0x0000000006046e7c rbp = 0x0000000000000000 rsp = 0x00007f9ae7ffeb60 r8 = 0x0000000006046e00 r9 = 0x00000000000005d9 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab390f r14 = 0x0000000000000000 r15 = 0x0000000006046e78 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 libnode.so!v8::internal::FullCodeGenerator::Generate [full-codegen-x64.cc : 307 + 0xa] rsp = 0x00007f9ae7ffeb90 rip = 0x00007f9b055511d6 Found by: stack scanning 2 libnode.so!icu_59::RuleBasedNumberFormat::init [rbnf.cpp : 1558 + 0xb] rsp = 0x00007f9ae7ffeba0 rip = 0x00007f9b053fd434 Found by: stack scanning 3 libnode.so + 0x932be0 rsp = 0x00007f9ae7ffebb8 rip = 0x00007f9b053fcbe0 Found by: stack scanning 4 libnode.so!icu_59::StringLocalizationInfo::~StringLocalizationInfo [rbnf.cpp : 624 + 0x2] rsp = 0x00007f9ae7ffebc0 rip = 0x00007f9b053fcc12 Found by: stack scanning 5 libpthread-2.23.so + 0x76ba rsp = 0x00007f9ae7ffebe0 rip = 0x00007f9b041426ba Found by: stack scanning 6 libnode.so + 0x932be0 rsp = 0x00007f9ae7ffec20 rip = 0x00007f9b053fcbe0 Found by: stack scanning 7 libc-2.23.so + 0x10741d rsp = 0x00007f9ae7ffec80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 7 0 libc-2.23.so + 0x107a13 rax = 0xfffffffffffffffc rdx = 0x0000000000000020 rcx = 0x00007f9afd6cfa13 rbx = 0x00007f9ad40021f0 rsi = 0x00007f9ad40021f0 rdi = 0x0000000000000028 rbp = 0x0000000000000000 rsp = 0x00007f9ae6fae9a0 r8 = 0x0000000000000000 r9 = 0x00007f9ad4005300 r10 = 0x00000000ffffffff r11 = 0x0000000000000293 r12 = 0x00007f9ad4001bc0 r13 = 0x00007f9ad40021b8 r14 = 0x00007f9ad40009e0 r15 = 0x00007f9ad4001bc0 rip = 0x00007f9afd6cfa13 Found by: given as instruction pointer in context 1 skypeforlinux + 0x300ca77 rsp = 0x00007f9ae6fae9b0 rip = 0x0000000004804a77 Found by: stack scanning 2 skypeforlinux + 0x300a611 rsp = 0x00007f9ae6fae9e0 rip = 0x0000000004802611 Found by: stack scanning 3 skypeforlinux + 0x9384b3 rsp = 0x00007f9ae6faea00 rip = 0x00000000021304b3 Found by: stack scanning 4 libc-2.23.so + 0x84184 rsp = 0x00007f9ae6faea10 rip = 0x00007f9afd64c184 Found by: stack scanning 5 skypeforlinux + 0x8958c8 rsp = 0x00007f9ae6faea28 rip = 0x00000000009738c8 Found by: stack scanning 6 skypeforlinux + 0x2fa9082 rsp = 0x00007f9ae6faea60 rip = 0x00000000047a1082 Found by: stack scanning 7 skypeforlinux + 0x33f00c rsp = 0x00007f9ae6faea68 rip = 0x0000000001b3700c Found by: stack scanning 8 skypeforlinux + 0x2f7a9c9 rsp = 0x00007f9ae6faea80 rip = 0x00000000047729c9 Found by: stack scanning 9 skypeforlinux + 0x2fa4c20 rsp = 0x00007f9ae6faeac0 rip = 0x000000000479cc20 Found by: stack scanning 10 skypeforlinux + 0x2f86e00 rsp = 0x00007f9ae6faeaf0 rip = 0x000000000477ee00 Found by: stack scanning 11 skypeforlinux + 0x2ff2de6 rsp = 0x00007f9ae6faeb50 rip = 0x00000000047eade6 Found by: stack scanning 12 skypeforlinux + 0x2fdda43 rsp = 0x00007f9ae6faebc0 rip = 0x00000000047d5a43 Found by: stack scanning 13 libpthread-2.23.so + 0x76ba rsp = 0x00007f9ae6faebe0 rip = 0x00007f9b041426ba Found by: stack scanning 14 libc-2.23.so + 0x10741d rsp = 0x00007f9ae6faec80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 8 0 libc-2.23.so + 0x107a13 rax = 0xfffffffffffffffc rdx = 0x0000000000000020 rcx = 0x00007f9afd6cfa13 rbx = 0x00007f9ac80021b0 rsi = 0x00007f9ac80021b0 rdi = 0x0000000000000030 rbp = 0x0000000000000000 rsp = 0x00007f9ae67ad9a0 r8 = 0x0000000000000000 r9 = 0x0000000000000000 r10 = 0x00000000ffffffff r11 = 0x0000000000000293 r12 = 0x00007f9ac8001b80 r13 = 0x00007f9ac8002178 r14 = 0x00007f9ac80008f0 r15 = 0x00007f9ac8001b80 rip = 0x00007f9afd6cfa13 Found by: given as instruction pointer in context 1 skypeforlinux + 0x300ca77 rsp = 0x00007f9ae67ad9b0 rip = 0x0000000004804a77 Found by: stack scanning 2 skypeforlinux + 0x300a611 rsp = 0x00007f9ae67ad9e0 rip = 0x0000000004802611 Found by: stack scanning 3 skypeforlinux + 0x31688e rsp = 0x00007f9ae67ada00 rip = 0x00000000003f488e Found by: stack scanning 4 skypeforlinux + 0x8958c8 rsp = 0x00007f9ae67ada28 rip = 0x00000000009738c8 Found by: stack scanning 5 skypeforlinux + 0x2fa9082 rsp = 0x00007f9ae67ada60 rip = 0x00000000047a1082 Found by: stack scanning 6 skypeforlinux + 0x1637213 rsp = 0x00007f9ae67ada78 rip = 0x0000000001715213 Found by: stack scanning 7 skypeforlinux + 0x2fa4c20 rsp = 0x00007f9ae67adac0 rip = 0x000000000479cc20 Found by: stack scanning 8 skypeforlinux + 0x2f86e00 rsp = 0x00007f9ae67adaf0 rip = 0x000000000477ee00 Found by: stack scanning 9 skypeforlinux + 0x2ff2de6 rsp = 0x00007f9ae67adb50 rip = 0x00000000047eade6 Found by: stack scanning 10 skypeforlinux + 0x2fdda43 rsp = 0x00007f9ae67adbc0 rip = 0x00000000047d5a43 Found by: stack scanning 11 libpthread-2.23.so + 0x76ba rsp = 0x00007f9ae67adbe0 rip = 0x00007f9b041426ba Found by: stack scanning 12 libc-2.23.so + 0x10741d rsp = 0x00007f9ae67adc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 9 0 libpthread-2.23.so + 0x1051d rax = 0xfffffffffffffe00 rdx = 0x0000000000000004 rcx = 0x00007f9b0414b51d rbx = 0x0000000000000004 rsi = 0x00007f9af419e9f8 rdi = 0x000000000000002e rbp = 0x00007f9af0000a50 rsp = 0x00007f9af419e9e0 r8 = 0x0000000005e6cba0 r9 = 0x0000000000000000 r10 = 0x00007f9afd6c94d9 r11 = 0x0000000000000293 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab36ef r14 = 0x00000000062e9fa0 r15 = 0x00007f9af419e9f8 rip = 0x00007f9b0414b51d Found by: given as instruction pointer in context 1 skypeforlinux + 0x360771f rsp = 0x00007f9af419e9f0 rip = 0x0000000004dff71f Found by: stack scanning 2 libstdc++.so.6.0.21 + 0xcee39 rsp = 0x00007f9af419ea40 rip = 0x00007f9afdf7fe39 Found by: stack scanning 3 libstdc++.so.6.0.21 + 0xcfd87 rsp = 0x00007f9af419ea70 rip = 0x00007f9afdf80d87 Found by: stack scanning 4 skypeforlinux + 0x2f80959 rsp = 0x00007f9af419eaa0 rip = 0x0000000004778959 Found by: stack scanning 5 skypeforlinux + 0x894ce0 rsp = 0x00007f9af419eae0 rip = 0x0000000000972ce0 Found by: stack scanning 6 libc-2.23.so + 0x84184 rsp = 0x00007f9af419eb00 rip = 0x00007f9afd64c184 Found by: stack scanning 7 skypeforlinux + 0x11bc43 rsp = 0x00007f9af419eb10 rip = 0x0000000001913c43 Found by: stack scanning 8 skypeforlinux + 0x2409c6 rsp = 0x00007f9af419eb50 rip = 0x0000000001a389c6 Found by: stack scanning 9 skypeforlinux + 0x2fc1a14 rsp = 0x00007f9af419eb80 rip = 0x00000000047b9a14 Found by: stack scanning 10 skypeforlinux + 0x2fdda43 rsp = 0x00007f9af419ebc0 rip = 0x00000000047d5a43 Found by: stack scanning 11 libpthread-2.23.so + 0x76ba rsp = 0x00007f9af419ebe0 rip = 0x00007f9b041426ba Found by: stack scanning 12 libc-2.23.so + 0x10741d rsp = 0x00007f9af419ec80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 10 0 libc-2.23.so + 0xfd5d3 rax = 0xfffffffffffffdfe rdx = 0x0000000000000000 rcx = 0x00007f9afd6c55d3 rbx = 0x0000000000000037 rsi = 0x00007f9ae5fac648 rdi = 0x0000000000000037 rbp = 0x00007f9ae5fac648 rsp = 0x00007f9ae5fac590 r8 = 0x0000000000000000 r9 = 0x0000000000000000 r10 = 0x0000000000000000 r11 = 0x0000000000000293 r12 = 0x00000000057f20d0 r13 = 0x0000000000000036 r14 = 0x0000000000000036 r15 = 0x0040000000000000 rip = 0x00007f9afd6c55d3 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fab321 rbp = 0x00007f9ae5fac648 rsp = 0x00007f9ae5fac5a0 rip = 0x00000000047a3321 Found by: stack scanning 2 linux-gate.so + 0xc30 rbp = 0x00007f9ae5fac648 rsp = 0x00007f9ae5fac610 rip = 0x00007ffee0ad8c30 Found by: stack scanning 3 skypeforlinux + 0x30fd5e rsp = 0x00007f9ae5fac6e8 rip = 0x00000000003edd5e Found by: stack scanning 4 skypeforlinux + 0x2ff4e4b rsp = 0x00007f9ae5fac700 rip = 0x00000000047ece4b Found by: stack scanning 5 skypeforlinux + 0x2faab11 rsp = 0x00007f9ae5fac750 rip = 0x00000000047a2b11 Found by: stack scanning 6 skypeforlinux + 0x2fe263b rsp = 0x00007f9ae5fac830 rip = 0x00000000047da63b Found by: stack scanning 7 skypeforlinux + 0x30d451 rsp = 0x00007f9ae5fac8b0 rip = 0x00000000003eb451 Found by: stack scanning 8 skypeforlinux + 0x2fe2958 rsp = 0x00007f9ae5fac8f0 rip = 0x00000000047da958 Found by: stack scanning 9 skypeforlinux + 0x2fe2d31 rsp = 0x00007f9ae5fac910 rip = 0x00000000047dad31 Found by: stack scanning 10 skypeforlinux + 0x30d493 rsp = 0x00007f9ae5fac948 rip = 0x00000000003eb493 Found by: stack scanning 11 skypeforlinux + 0x30d451 rsp = 0x00007f9ae5fac950 rip = 0x00000000003eb451 Found by: stack scanning 12 skypeforlinux + 0x2faab11 rsp = 0x00007f9ae5fac960 rip = 0x00000000047a2b11 Found by: stack scanning 13 skypeforlinux + 0x30d493 rsp = 0x00007f9ae5fac9b0 rip = 0x00000000003eb493 Found by: stack scanning 14 skypeforlinux + 0x30d451 rsp = 0x00007f9ae5fac9b8 rip = 0x00000000003eb451 Found by: stack scanning 15 skypeforlinux + 0x2faab11 rsp = 0x00007f9ae5fac9c8 rip = 0x00000000047a2b11 Found by: stack scanning 16 libc-2.23.so + 0x115876 rsp = 0x00007f9ae5faca20 rip = 0x00007f9afd6dd876 Found by: stack scanning 17 libc-2.23.so + 0x115876 rsp = 0x00007f9ae5faca30 rip = 0x00007f9afd6dd876 Found by: stack scanning 18 skypeforlinux + 0x2f8d453 rsp = 0x00007f9ae5faca50 rip = 0x0000000004785453 Found by: stack scanning 19 skypeforlinux + 0x2f99b99 rsp = 0x00007f9ae5faca90 rip = 0x0000000004791b99 Found by: stack scanning 20 skypeforlinux + 0x2fa4c20 rsp = 0x00007f9ae5facac0 rip = 0x000000000479cc20 Found by: stack scanning 21 skypeforlinux + 0x2f86e00 rsp = 0x00007f9ae5facaf0 rip = 0x000000000477ee00 Found by: stack scanning 22 skypeforlinux + 0x2ff2de6 rsp = 0x00007f9ae5facb50 rip = 0x00000000047eade6 Found by: stack scanning 23 skypeforlinux + 0x2fdda43 rsp = 0x00007f9ae5facbc0 rip = 0x00000000047d5a43 Found by: stack scanning 24 libpthread-2.23.so + 0x76ba rsp = 0x00007f9ae5facbe0 rip = 0x00007f9b041426ba Found by: stack scanning 25 libc-2.23.so + 0x10741d rsp = 0x00007f9ae5facc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 11 0 libpthread-2.23.so + 0xd709 rax = 0xfffffffffffffdfc rdx = 0x0000000000000124 rcx = 0x00007f9b04148709 rbx = 0x0000000000002143 rsi = 0x0000000000000089 rdi = 0x00007f9ad4004784 rbp = 0x0000000004f26be0 rsp = 0x00007f9ae57ab900 r8 = 0x00007f9ad4004758 r9 = 0x00000000ffffffff r10 = 0x00007f9ae57ab960 r11 = 0x0000000000000206 r12 = 0x0000000000000124 r13 = 0x00007f9ae57ab960 r14 = 0xffffffffffffff92 r15 = 0x000000000292e000 rip = 0x00007f9b04148709 Found by: given as instruction pointer in context 1 skypeforlinux + 0x113609b rsp = 0x00007f9ae57ab930 rip = 0x000000000292e09b Found by: stack scanning 2 skypeforlinux + 0x2fea132 rsp = 0x00007f9ae57ab950 rip = 0x00000000047e2132 Found by: stack scanning 3 skypeforlinux + 0x113609b rsp = 0x00007f9ae57ab960 rip = 0x000000000292e09b Found by: stack scanning 4 skypeforlinux + 0x113609b rsp = 0x00007f9ae57ab970 rip = 0x000000000292e09b Found by: stack scanning 5 skypeforlinux + 0x2f87564 rsp = 0x00007f9ae57ab990 rip = 0x000000000477f564 Found by: stack scanning 6 skypeforlinux + 0x2f7bac3 rsp = 0x00007f9ae57ab9d0 rip = 0x0000000004773ac3 Found by: stack scanning 7 skypeforlinux + 0x1135707 rsp = 0x00007f9ae57ab9d8 rip = 0x000000000292d707 Found by: stack scanning 8 skypeforlinux + 0x2f7a614 rsp = 0x00007f9ae57ab9e0 rip = 0x0000000004772614 Found by: stack scanning 9 skypeforlinux + 0x25ae84 rsp = 0x00007f9ae57aba30 rip = 0x0000000000338e84 Found by: stack scanning 10 skypeforlinux + 0x2f8797c rsp = 0x00007f9ae57aba40 rip = 0x000000000477f97c Found by: stack scanning 11 libstdc++.so.6.0.21 + 0xcfd87 rsp = 0x00007f9ae57aba70 rip = 0x00007f9afdf80d87 Found by: stack scanning 12 skypeforlinux + 0x25b468 rsp = 0x00007f9ae57abad0 rip = 0x0000000000339468 Found by: stack scanning 13 skypeforlinux + 0x25ae84 rsp = 0x00007f9ae57abad8 rip = 0x0000000000338e84 Found by: stack scanning 14 skypeforlinux + 0x1800f68 rsp = 0x00007f9ae57abae8 rip = 0x0000000002ff8f68 Found by: stack scanning 15 skypeforlinux + 0x17d9067 rsp = 0x00007f9ae57abaf0 rip = 0x0000000002fd1067 Found by: stack scanning 16 skypeforlinux + 0x2409c6 rsp = 0x00007f9ae57abb50 rip = 0x0000000001a389c6 Found by: stack scanning 17 skypeforlinux + 0x2fdda43 rsp = 0x00007f9ae57abbc0 rip = 0x00000000047d5a43 Found by: stack scanning 18 libpthread-2.23.so + 0x76ba rsp = 0x00007f9ae57abbe0 rip = 0x00007f9b041426ba Found by: stack scanning 19 libc-2.23.so + 0x10741d rsp = 0x00007f9ae57abc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 12 0 libpthread-2.23.so + 0xd709 rax = 0xfffffffffffffdfc rdx = 0x0000000000000128 rcx = 0x00007f9b04148709 rbx = 0x0000000000002143 rsi = 0x0000000000000089 rdi = 0x00007f9ad4004784 rbp = 0x0000000004f26be0 rsp = 0x00007f9ae4faa900 r8 = 0x00007f9ad4004758 r9 = 0x00000000ffffffff r10 = 0x00007f9ae4faa960 r11 = 0x0000000000000206 r12 = 0x0000000000000128 r13 = 0x00007f9ae4faa960 r14 = 0xffffffffffffff92 r15 = 0x0000000013f02d00 rip = 0x00007f9b04148709 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fea132 rsp = 0x00007f9ae4faa950 rip = 0x00000000047e2132 Found by: stack scanning 2 skypeforlinux + 0x2f87564 rsp = 0x00007f9ae4faa990 rip = 0x000000000477f564 Found by: stack scanning 3 skypeforlinux + 0x2f7bac3 rsp = 0x00007f9ae4faa9d0 rip = 0x0000000004773ac3 Found by: stack scanning 4 skypeforlinux + 0x2f7a614 rsp = 0x00007f9ae4faa9e0 rip = 0x0000000004772614 Found by: stack scanning 5 skypeforlinux + 0x25ae84 rsp = 0x00007f9ae4faaa30 rip = 0x0000000000338e84 Found by: stack scanning 6 skypeforlinux + 0x2f8797c rsp = 0x00007f9ae4faaa40 rip = 0x000000000477f97c Found by: stack scanning 7 libstdc++.so.6.0.21 + 0xcfd87 rsp = 0x00007f9ae4faaa70 rip = 0x00007f9afdf80d87 Found by: stack scanning 8 skypeforlinux + 0x25b468 rsp = 0x00007f9ae4faaad0 rip = 0x0000000000339468 Found by: stack scanning 9 skypeforlinux + 0x25ae84 rsp = 0x00007f9ae4faaad8 rip = 0x0000000000338e84 Found by: stack scanning 10 skypeforlinux + 0x1800f68 rsp = 0x00007f9ae4faaae8 rip = 0x0000000002ff8f68 Found by: stack scanning 11 skypeforlinux + 0x17d9067 rsp = 0x00007f9ae4faaaf0 rip = 0x0000000002fd1067 Found by: stack scanning 12 skypeforlinux + 0x2409c6 rsp = 0x00007f9ae4faab50 rip = 0x0000000001a389c6 Found by: stack scanning 13 skypeforlinux + 0x2fdda43 rsp = 0x00007f9ae4faabc0 rip = 0x00000000047d5a43 Found by: stack scanning 14 libpthread-2.23.so + 0x76ba rsp = 0x00007f9ae4faabe0 rip = 0x00007f9b041426ba Found by: stack scanning 15 libc-2.23.so + 0x10741d rsp = 0x00007f9ae4faac80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 13 0 libc-2.23.so + 0x107a13 rax = 0xfffffffffffffffc rdx = 0x0000000000000020 rcx = 0x00007f9afd6cfa13 rbx = 0x00007f9ab40021f0 rsi = 0x00007f9ab40021f0 rdi = 0x0000000000000038 rbp = 0x00007f9abfffe9e0 rsp = 0x00007f9abfffe9a0 r8 = 0x0000000000000000 r9 = 0x0000000000000001 r10 = 0x0000000000000988 r11 = 0x0000000000000293 r12 = 0x00007f9ab4001bc0 r13 = 0x00007f9ab40021b8 r14 = 0x00007f9ab40009e0 r15 = 0x00007f9ab4001bc0 rip = 0x00007f9afd6cfa13 Found by: given as instruction pointer in context 1 skypeforlinux + 0x300ca77 rbp = 0x00007f9abfffe9e0 rsp = 0x00007f9abfffe9b0 rip = 0x0000000004804a77 Found by: stack scanning 2 skypeforlinux + 0x300a611 rbp = 0x00007f9abfffe9e0 rsp = 0x00007f9abfffe9e0 rip = 0x0000000004802611 Found by: stack scanning 3 skypeforlinux + 0x8958c8 rsp = 0x00007f9abfffea28 rip = 0x00000000009738c8 Found by: stack scanning 4 skypeforlinux + 0x2fa9064 rsp = 0x00007f9abfffea60 rip = 0x00000000047a1064 Found by: stack scanning 5 skypeforlinux + 0x351fc05 rsp = 0x00007f9abfffea68 rip = 0x0000000004d17c05 Found by: stack scanning 6 skypeforlinux + 0x175a2b rsp = 0x00007f9abfffea78 rip = 0x0000000000253a2b Found by: stack scanning 7 skypeforlinux + 0x2fa4c20 rsp = 0x00007f9abfffeac0 rip = 0x000000000479cc20 Found by: stack scanning 8 skypeforlinux + 0x2f86e00 rsp = 0x00007f9abfffeaf0 rip = 0x000000000477ee00 Found by: stack scanning 9 skypeforlinux + 0x2ff2de6 rsp = 0x00007f9abfffeb50 rip = 0x00000000047eade6 Found by: stack scanning 10 skypeforlinux + 0x2fdda43 rsp = 0x00007f9abfffebc0 rip = 0x00000000047d5a43 Found by: stack scanning 11 libpthread-2.23.so + 0x76ba rsp = 0x00007f9abfffebe0 rip = 0x00007f9b041426ba Found by: stack scanning 12 libc-2.23.so + 0x10741d rsp = 0x00007f9abfffec80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 14 0 libpthread-2.23.so + 0xd709 rax = 0xfffffffffffffdfc rdx = 0x0000000000000001 rcx = 0x00007f9b04148709 rbx = 0x0000000000001fe5 rsi = 0x0000000000000089 rdi = 0x00007f9abf7fdaac rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fd9d0 r8 = 0x00007f9abf7fda80 r9 = 0x00000000ffffffff r10 = 0x00007f9abf7fda30 r11 = 0x0000000000000206 r12 = 0x0000000000000001 r13 = 0x00007f9abf7fda30 r14 = 0xffffffffffffff92 r15 = 0x00000000072a7e00 rip = 0x00007f9b04148709 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fea132 rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fda20 rip = 0x00000000047e2132 Found by: stack scanning 2 skypeforlinux + 0x2fcc98a rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fda60 rip = 0x00000000047c498a Found by: stack scanning 3 skypeforlinux + 0x4a4380 rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fda68 rip = 0x0000000001c9c380 Found by: stack scanning 4 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fda70 rip = 0x00000000005e6c00 Found by: stack scanning 5 libc-2.23.so + 0x115876 rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fdaf0 rip = 0x00007f9afd6dd876 Found by: stack scanning 6 skypeforlinux + 0x2fcca79 rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fdb30 rip = 0x00000000047c4a79 Found by: stack scanning 7 skypeforlinux + 0x2fc1f49 rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fdb50 rip = 0x00000000047b9f49 Found by: stack scanning 8 skypeforlinux + 0x4a4380 rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fdb60 rip = 0x0000000001c9c380 Found by: stack scanning 9 skypeforlinux + 0x2fc256e rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fdb70 rip = 0x00000000047ba56e Found by: stack scanning 10 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fdbc0 rip = 0x00000000047d5a43 Found by: stack scanning 11 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fdbe0 rip = 0x00007f9b041426ba Found by: stack scanning 12 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9abf7fdc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 15 0 libpthread-2.23.so + 0xd709 rax = 0xfffffffffffffdfc rdx = 0x0000000000000001 rcx = 0x00007f9b04148709 rbx = 0x0000000000001ff2 rsi = 0x0000000000000089 rdi = 0x00007f9abeffcaac rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffc9d0 r8 = 0x00007f9abeffca80 r9 = 0x00000000ffffffff r10 = 0x00007f9abeffca30 r11 = 0x0000000000000206 r12 = 0x0000000000000001 r13 = 0x00007f9abeffca30 r14 = 0xffffffffffffff92 r15 = 0x0000000003a79300 rip = 0x00007f9b04148709 Found by: given as instruction pointer in context 1 skypeforlinux + 0x22813c6 rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffca00 rip = 0x0000000003a793c6 Found by: stack scanning 2 skypeforlinux + 0x2fea132 rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffca20 rip = 0x00000000047e2132 Found by: stack scanning 3 skypeforlinux + 0x22817ae rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffca30 rip = 0x0000000003a797ae Found by: stack scanning 4 skypeforlinux + 0x22813c6 rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffca40 rip = 0x0000000003a793c6 Found by: stack scanning 5 skypeforlinux + 0x2fcc98a rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffca60 rip = 0x00000000047c498a Found by: stack scanning 6 skypeforlinux + 0xe2d9ff rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffca68 rip = 0x00000000026259ff Found by: stack scanning 7 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffca70 rip = 0x00000000005e6c00 Found by: stack scanning 8 libc-2.23.so + 0x115876 rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffcaf0 rip = 0x00007f9afd6dd876 Found by: stack scanning 9 skypeforlinux + 0x2fcca79 rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffcb30 rip = 0x00000000047c4a79 Found by: stack scanning 10 skypeforlinux + 0x2fc1f49 rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffcb50 rip = 0x00000000047b9f49 Found by: stack scanning 11 skypeforlinux + 0xe2da00 rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffcb60 rip = 0x0000000002625a00 Found by: stack scanning 12 skypeforlinux + 0x2fc256e rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffcb70 rip = 0x00000000047ba56e Found by: stack scanning 13 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffcbc0 rip = 0x00000000047d5a43 Found by: stack scanning 14 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffcbe0 rip = 0x00007f9b041426ba Found by: stack scanning 15 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9abeffcc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 16 0 libpthread-2.23.so + 0xd709 rax = 0xfffffffffffffdfc rdx = 0x0000000000000001 rcx = 0x00007f9b04148709 rbx = 0x0000000000001fe5 rsi = 0x0000000000000089 rdi = 0x00007f9abe7fbaac rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fb9d0 r8 = 0x00007f9abe7fba80 r9 = 0x00000000ffffffff r10 = 0x00007f9abe7fba30 r11 = 0x0000000000000206 r12 = 0x0000000000000001 r13 = 0x00007f9abe7fba30 r14 = 0xffffffffffffff92 r15 = 0x000000000729b500 rip = 0x00007f9b04148709 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fea132 rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fba20 rip = 0x00000000047e2132 Found by: stack scanning 2 skypeforlinux + 0x2fcc98a rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fba60 rip = 0x00000000047c498a Found by: stack scanning 3 skypeforlinux + 0x4a437f rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fba68 rip = 0x0000000001c9c37f Found by: stack scanning 4 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fba70 rip = 0x00000000005e6c00 Found by: stack scanning 5 libc-2.23.so + 0x115876 rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fbaf0 rip = 0x00007f9afd6dd876 Found by: stack scanning 6 skypeforlinux + 0x2fcca79 rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fbb30 rip = 0x00000000047c4a79 Found by: stack scanning 7 skypeforlinux + 0x2fc1f49 rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fbb50 rip = 0x00000000047b9f49 Found by: stack scanning 8 skypeforlinux + 0x4a4380 rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fbb60 rip = 0x0000000001c9c380 Found by: stack scanning 9 skypeforlinux + 0x2fc256e rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fbb70 rip = 0x00000000047ba56e Found by: stack scanning 10 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fbbc0 rip = 0x00000000047d5a43 Found by: stack scanning 11 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fbbe0 rip = 0x00007f9b041426ba Found by: stack scanning 12 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9abe7fbc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 17 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000001 rcx = 0x00007f9b04148360 rbx = 0x00007f9abcff8a70 rsi = 0x0000000000000080 rdi = 0x00007f9abcff8abc rbp = 0x7fffffffffffffff rsp = 0x00007f9abcff8a40 r8 = 0x00007f9abcff8a00 r9 = 0x0000000000000000 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9abcff8b40 r13 = 0x0000000006305058 r14 = 0x7fffffffffffffff r15 = 0x00007f9abcff8a78 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fcc95f rbp = 0x7fffffffffffffff rsp = 0x00007f9abcff8a70 rip = 0x00000000047c495f Found by: stack scanning 2 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9abcff8a80 rip = 0x00000000005e6c00 Found by: stack scanning 3 skypeforlinux + 0x2fcc847 rbp = 0x7fffffffffffffff rsp = 0x00007f9abcff8b40 rip = 0x00000000047c4847 Found by: stack scanning 4 skypeforlinux + 0x2fc1f3a rbp = 0x7fffffffffffffff rsp = 0x00007f9abcff8b50 rip = 0x00000000047b9f3a Found by: stack scanning 5 skypeforlinux + 0x2fc256e rbp = 0x7fffffffffffffff rsp = 0x00007f9abcff8b70 rip = 0x00000000047ba56e Found by: stack scanning 6 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9abcff8bc0 rip = 0x00000000047d5a43 Found by: stack scanning 7 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9abcff8be0 rip = 0x00007f9b041426ba Found by: stack scanning 8 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9abcff8c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 18 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000001 rcx = 0x00007f9b04148360 rbx = 0x00007f9ab3ffea70 rsi = 0x0000000000000080 rdi = 0x00007f9ab3ffeabc rbp = 0x7fffffffffffffff rsp = 0x00007f9ab3ffea40 r8 = 0x00007f9ab3ffea00 r9 = 0x0000000000000000 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9ab3ffeb40 r13 = 0x0000000006305748 r14 = 0x7fffffffffffffff r15 = 0x00007f9ab3ffea78 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fcc95f rbp = 0x7fffffffffffffff rsp = 0x00007f9ab3ffea70 rip = 0x00000000047c495f Found by: stack scanning 2 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab3ffea80 rip = 0x00000000005e6c00 Found by: stack scanning 3 skypeforlinux + 0x2fcc847 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab3ffeb40 rip = 0x00000000047c4847 Found by: stack scanning 4 skypeforlinux + 0x2fc1f3a rbp = 0x7fffffffffffffff rsp = 0x00007f9ab3ffeb50 rip = 0x00000000047b9f3a Found by: stack scanning 5 skypeforlinux + 0x2fc256e rbp = 0x7fffffffffffffff rsp = 0x00007f9ab3ffeb70 rip = 0x00000000047ba56e Found by: stack scanning 6 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab3ffebc0 rip = 0x00000000047d5a43 Found by: stack scanning 7 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9ab3ffebe0 rip = 0x00007f9b041426ba Found by: stack scanning 8 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9ab3ffec80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 19 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000001 rcx = 0x00007f9b04148360 rbx = 0x00007f9ab37fda70 rsi = 0x0000000000000080 rdi = 0x00007f9ab37fdabc rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fda40 r8 = 0x00007f9ab37fda00 r9 = 0x0000000000000000 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9ab37fdb40 r13 = 0x0000000006305e28 r14 = 0x7fffffffffffffff r15 = 0x00007f9ab37fda78 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fcc95f rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fda70 rip = 0x00000000047c495f Found by: stack scanning 2 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fda80 rip = 0x00000000005e6c00 Found by: stack scanning 3 skypeforlinux + 0x508800 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fda88 rip = 0x00000000005e6800 Found by: stack scanning 4 skypeforlinux + 0x2fa5d85 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fdb00 rip = 0x000000000479dd85 Found by: stack scanning 5 skypeforlinux + 0x2fcc847 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fdb40 rip = 0x00000000047c4847 Found by: stack scanning 6 skypeforlinux + 0x2fc1f3a rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fdb50 rip = 0x00000000047b9f3a Found by: stack scanning 7 skypeforlinux + 0x2fc2347 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fdb70 rip = 0x00000000047ba347 Found by: stack scanning 8 skypeforlinux + 0x2fc1a14 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fdb80 rip = 0x00000000047b9a14 Found by: stack scanning 9 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fdbc0 rip = 0x00000000047d5a43 Found by: stack scanning 10 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fdbe0 rip = 0x00007f9b041426ba Found by: stack scanning 11 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9ab37fdc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 20 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000001 rcx = 0x00007f9b04148360 rbx = 0x00007f9ab2ffca70 rsi = 0x0000000000000080 rdi = 0x00007f9ab2ffcabc rbp = 0x7fffffffffffffff rsp = 0x00007f9ab2ffca40 r8 = 0x00007f9ab2ffca00 r9 = 0x0000000000000000 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9ab2ffcb40 r13 = 0x00000000063064d8 r14 = 0x7fffffffffffffff r15 = 0x00007f9ab2ffca78 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fcc95f rbp = 0x7fffffffffffffff rsp = 0x00007f9ab2ffca70 rip = 0x00000000047c495f Found by: stack scanning 2 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab2ffca80 rip = 0x00000000005e6c00 Found by: stack scanning 3 skypeforlinux + 0x2fcc847 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab2ffcb40 rip = 0x00000000047c4847 Found by: stack scanning 4 skypeforlinux + 0x2fc1f3a rbp = 0x7fffffffffffffff rsp = 0x00007f9ab2ffcb50 rip = 0x00000000047b9f3a Found by: stack scanning 5 skypeforlinux + 0x2fc256e rbp = 0x7fffffffffffffff rsp = 0x00007f9ab2ffcb70 rip = 0x00000000047ba56e Found by: stack scanning 6 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab2ffcbc0 rip = 0x00000000047d5a43 Found by: stack scanning 7 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9ab2ffcbe0 rip = 0x00007f9b041426ba Found by: stack scanning 8 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9ab2ffcc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 21 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000001 rcx = 0x00007f9b04148360 rbx = 0x00007f9ab27fba70 rsi = 0x0000000000000080 rdi = 0x00007f9ab27fbabc rbp = 0x7fffffffffffffff rsp = 0x00007f9ab27fba40 r8 = 0x00007f9ab27fba00 r9 = 0x0000000000000000 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9ab27fbb40 r13 = 0x0000000006305df8 r14 = 0x7fffffffffffffff r15 = 0x00007f9ab27fba78 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fcc95f rbp = 0x7fffffffffffffff rsp = 0x00007f9ab27fba70 rip = 0x00000000047c495f Found by: stack scanning 2 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab27fba80 rip = 0x00000000005e6c00 Found by: stack scanning 3 skypeforlinux + 0x2fcc847 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab27fbb40 rip = 0x00000000047c4847 Found by: stack scanning 4 skypeforlinux + 0x2fc1f3a rbp = 0x7fffffffffffffff rsp = 0x00007f9ab27fbb50 rip = 0x00000000047b9f3a Found by: stack scanning 5 skypeforlinux + 0x2fc256e rbp = 0x7fffffffffffffff rsp = 0x00007f9ab27fbb70 rip = 0x00000000047ba56e Found by: stack scanning 6 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab27fbbc0 rip = 0x00000000047d5a43 Found by: stack scanning 7 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9ab27fbbe0 rip = 0x00007f9b041426ba Found by: stack scanning 8 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9ab27fbc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 22 0 libc-2.23.so + 0x107a13 rax = 0xfffffffffffffffc rdx = 0x0000000000000020 rcx = 0x00007f9afd6cfa13 rbx = 0x00007f9aa80021b0 rsi = 0x00007f9aa80021b0 rdi = 0x000000000000003d rbp = 0x00007f9ab1ffa9b0 rsp = 0x00007f9ab1ffa970 r8 = 0x0000000000000000 r9 = 0x00000000062a8a68 r10 = 0x0000000000003f31 r11 = 0x0000000000000293 r12 = 0x00007f9aa8001b80 r13 = 0x00007f9aa8002178 r14 = 0x00007f9aa80008f0 r15 = 0x00007f9aa8001b80 rip = 0x00007f9afd6cfa13 Found by: given as instruction pointer in context 1 skypeforlinux + 0x300ca77 rbp = 0x00007f9ab1ffa9b0 rsp = 0x00007f9ab1ffa980 rip = 0x0000000004804a77 Found by: stack scanning 2 skypeforlinux + 0x300a611 rbp = 0x00007f9ab1ffa9b0 rsp = 0x00007f9ab1ffa9b0 rip = 0x0000000004802611 Found by: stack scanning 3 skypeforlinux + 0x8958c8 rsp = 0x00007f9ab1ffa9f8 rip = 0x00000000009738c8 Found by: stack scanning 4 skypeforlinux + 0x2fa9064 rsp = 0x00007f9ab1ffaa30 rip = 0x00000000047a1064 Found by: stack scanning 5 skypeforlinux + 0xe8f5a4 rsp = 0x00007f9ab1ffaa48 rip = 0x0000000000f6d5a4 Found by: stack scanning 6 skypeforlinux + 0x2fa4c20 rsp = 0x00007f9ab1ffaa90 rip = 0x000000000479cc20 Found by: stack scanning 7 skypeforlinux + 0x28ff71 rsp = 0x00007f9ab1ffaa98 rip = 0x0000000001a87f71 Found by: stack scanning 8 skypeforlinux + 0xd28a rsp = 0x00007f9ab1ffab00 rip = 0x00000000000eb28a Found by: stack scanning 9 skypeforlinux + 0x28fe6e rsp = 0x00007f9ab1ffab20 rip = 0x0000000001a87e6e Found by: stack scanning 10 skypeforlinux + 0x28ff13 rsp = 0x00007f9ab1ffab30 rip = 0x0000000001a87f13 Found by: stack scanning 11 skypeforlinux + 0x2ff2de6 rsp = 0x00007f9ab1ffab50 rip = 0x00000000047eade6 Found by: stack scanning 12 skypeforlinux + 0x2fdda43 rsp = 0x00007f9ab1ffabc0 rip = 0x00000000047d5a43 Found by: stack scanning 13 libpthread-2.23.so + 0x76ba rsp = 0x00007f9ab1ffabe0 rip = 0x00007f9b041426ba Found by: stack scanning 14 libc-2.23.so + 0x10741d rsp = 0x00007f9ab1ffac80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 23 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x00000000000003e9 rcx = 0x00007f9b04148360 rbx = 0x000000000632d900 rsi = 0x0000000000000080 rdi = 0x000000000632d9b4 rbp = 0x00007f9af0000a50 rsp = 0x00007f9ab17f9b40 r8 = 0x000000000632d900 r9 = 0x00000000000001f4 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab384f r14 = 0x000000000632d918 r15 = 0x000000000632d9b0 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2c677c8 rbp = 0x00007f9af0000a50 rsp = 0x00007f9ab17f9b70 rip = 0x000000000445f7c8 Found by: stack scanning 2 skypeforlinux + 0x2fddce7 rbp = 0x00007f9af0000a50 rsp = 0x00007f9ab17f9b90 rip = 0x00000000047d5ce7 Found by: stack scanning 3 skypeforlinux + 0x2fdda43 rbp = 0x00007f9af0000a50 rsp = 0x00007f9ab17f9bc0 rip = 0x00000000047d5a43 Found by: stack scanning 4 libpthread-2.23.so + 0x76ba rbp = 0x00007f9af0000a50 rsp = 0x00007f9ab17f9be0 rip = 0x00007f9b041426ba Found by: stack scanning 5 libc-2.23.so + 0x10741d rbp = 0x00007f9af0000a50 rsp = 0x00007f9ab17f9c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 24 0 libpthread-2.23.so + 0xd709 rax = 0xfffffffffffffdfc rdx = 0x0000000000000001 rcx = 0x00007f9b04148709 rbx = 0x0000000000001fd3 rsi = 0x0000000000000089 rdi = 0x00007f9ab0ff8a0c rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff8930 r8 = 0x00007f9ab0ff89e0 r9 = 0x00000000ffffffff r10 = 0x00007f9ab0ff8990 r11 = 0x0000000000000206 r12 = 0x0000000000000001 r13 = 0x00007f9ab0ff8990 r14 = 0xffffffffffffff92 r15 = 0x000000002d0dc600 rip = 0x00007f9b04148709 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fea132 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff8980 rip = 0x00000000047e2132 Found by: stack scanning 2 skypeforlinux + 0x2fcc98a rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff89c0 rip = 0x00000000047c498a Found by: stack scanning 3 skypeforlinux + 0xa93af8 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff89c8 rip = 0x0000000000b71af8 Found by: stack scanning 4 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff89d0 rip = 0x00000000005e6c00 Found by: stack scanning 5 skypeforlinux + 0x28d6f00 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff89d8 rip = 0x00000000040cef00 Found by: stack scanning 6 skypeforlinux + 0x28d6f85 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff8a50 rip = 0x00000000040cef85 Found by: stack scanning 7 skypeforlinux + 0x2f99bf1 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff8a90 rip = 0x0000000004791bf1 Found by: stack scanning 8 skypeforlinux + 0x2fa4c20 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff8ac0 rip = 0x000000000479cc20 Found by: stack scanning 9 skypeforlinux + 0x2f86e00 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff8af0 rip = 0x000000000477ee00 Found by: stack scanning 10 skypeforlinux + 0x2ff2de6 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff8b50 rip = 0x00000000047eade6 Found by: stack scanning 11 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff8bc0 rip = 0x00000000047d5a43 Found by: stack scanning 12 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff8be0 rip = 0x00007f9b041426ba Found by: stack scanning 13 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9ab0ff8c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 25 0 libc-2.23.so + 0x107a13 rax = 0xfffffffffffffffc rdx = 0x0000000000000001 rcx = 0x00007f9afd6cfa13 rbx = 0x0000000005e9bac0 rsi = 0x00007f9a8bffeb90 rdi = 0x000000000000000d rbp = 0x000000000003a6fe rsp = 0x00007f9a8bffeb80 r8 = 0x0000000000000000 r9 = 0x00000000ffffffff r10 = 0x000000000003a6fe r11 = 0x0000000000000293 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab3abf r14 = 0x00007f9a8bffeb90 r15 = 0x0000000004e67d10 rip = 0x00007f9afd6cfa13 Found by: given as instruction pointer in context 1 skypeforlinux + 0x36a57f5 rsp = 0x00007f9a8bffeb90 rip = 0x0000000004e9d7f5 Found by: stack scanning 2 skypeforlinux + 0x366fd3f rsp = 0x00007f9a8bffebc0 rip = 0x0000000004e67d3f Found by: stack scanning 3 libpthread-2.23.so + 0x76ba rsp = 0x00007f9a8bffebe0 rip = 0x00007f9b041426ba Found by: stack scanning 4 skypeforlinux + 0x366fd10 rsp = 0x00007f9a8bffec20 rip = 0x0000000004e67d10 Found by: stack scanning 5 libc-2.23.so + 0x10741d rsp = 0x00007f9a8bffec80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 26 0 libc-2.23.so + 0xfb74d rax = 0xfffffffffffffdfc rdx = 0x00000000ffffffff rcx = 0x00007f9afd6c374d rbx = 0x000000000629dbf0 rsi = 0x0000000000000001 rdi = 0x00007f9a780010c0 rbp = 0x0000000000000001 rsp = 0x00007f9a8b7fdb30 r8 = 0x0000000000000001 r9 = 0x0000000000000001 r10 = 0x0000000005f2f360 r11 = 0x0000000000000293 r12 = 0x00007f9a780010c0 r13 = 0x00000000ffffffff r14 = 0x00007f9affeb6280 r15 = 0x0000000000000001 rip = 0x00007f9afd6c374d Found by: given as instruction pointer in context 1 libglib-2.0.so.0.4800.2!g_main_context_dispatch + 0x49c rsp = 0x00007f9a8b7fdb40 rip = 0x00007f9affea738c Found by: stack scanning 2 libglib-2.0.so.0.4800.2!g_main_context_iteration + 0x2c rbx = 0x000000000629dbf0 rbp = 0x0000000000000001 rsp = 0x00007f9a8b7fdba0 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab0e4f r14 = 0x00007f9a8b7fe9c0 r15 = 0x000000000629dbf0 rip = 0x00007f9affea749c Found by: call frame info 3 libdconfsettings.so + 0x746d rbx = 0x000000000629dbf0 rbp = 0x0000000000000000 rsp = 0x00007f9a8b7fdbc0 r12 = 0x0000000000000000 r13 = 0x00007ffee0ab0e4f r14 = 0x00007f9a8b7fe9c0 r15 = 0x000000000629dbf0 rip = 0x00007f9aefdfa46d Found by: call frame info 4 libglib-2.0.so.0.4800.2!g_test_get_filename + 0x195 rsp = 0x00007f9a8b7fdbd0 rip = 0x00007f9affecdbb5 Found by: stack scanning 5 libpthread-2.23.so + 0x76ba rbx = 0x0000000000000000 rsp = 0x00007f9a8b7fdbe0 rip = 0x00007f9b041426ba Found by: call frame info 6 libc-2.23.so + 0x10741d rsp = 0x00007f9a8b7fdc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 27 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000011 rcx = 0x00007f9b04148360 rbx = 0x00007f9b05626ee0 rsi = 0x0000000000000080 rdi = 0x00007f9b05626f0c rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8affcb60 r8 = 0x00007f9b05626e00 r9 = 0x0000000000000007 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9b05626ea0 r13 = 0x0000000000000090 r14 = 0x00007f9b05626f08 r15 = 0x00007f9b05626f40 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 libnode.so!v8::internal::FullCodeGenerator::Generate [full-codegen-x64.cc : 307 + 0xa] rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8affcb90 rip = 0x00007f9b055511d6 Found by: stack scanning 2 libnode.so!v8::internal::compiler::Typer::Visitor::ObjectIsNaN [types.h : 589 + 0x2] rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8affcba0 rip = 0x00007f9b055455a3 Found by: stack scanning 3 libnode.so!&lt;name omitted&gt; + 0x60 rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8affcbd0 rip = 0x00007f9b055454a0 Found by: stack scanning 4 libpthread-2.23.so + 0x76ba rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8affcbe0 rip = 0x00007f9b041426ba Found by: stack scanning 5 libnode.so!&lt;name omitted&gt; + 0x60 rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8affcc20 rip = 0x00007f9b055454a0 Found by: stack scanning 6 libc-2.23.so + 0x10741d rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8affcc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 28 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000015 rcx = 0x00007f9b04148360 rbx = 0x00007f9b05626ee0 rsi = 0x0000000000000080 rdi = 0x00007f9b05626f0c rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8a7fbb60 r8 = 0x00007f9b05626e00 r9 = 0x0000000000000009 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9b05626ea0 r13 = 0x0000000000000090 r14 = 0x00007f9b05626f08 r15 = 0x00007f9b05626f40 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 libnode.so!v8::internal::FullCodeGenerator::Generate [full-codegen-x64.cc : 307 + 0xa] rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8a7fbb90 rip = 0x00007f9b055511d6 Found by: stack scanning 2 libnode.so!v8::internal::compiler::Typer::Visitor::ObjectIsNaN [types.h : 589 + 0x2] rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8a7fbba0 rip = 0x00007f9b055455a3 Found by: stack scanning 3 libnode.so!&lt;name omitted&gt; + 0x60 rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8a7fbbd0 rip = 0x00007f9b055454a0 Found by: stack scanning 4 libpthread-2.23.so + 0x76ba rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8a7fbbe0 rip = 0x00007f9b041426ba Found by: stack scanning 5 libnode.so!&lt;name omitted&gt; + 0x60 rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8a7fbc20 rip = 0x00007f9b055454a0 Found by: stack scanning 6 libc-2.23.so + 0x10741d rbp = 0x00007f9b05626f40 rsp = 0x00007f9a8a7fbc80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 29 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000016 rcx = 0x00007f9b04148360 rbx = 0x00007f9b05626ee0 rsi = 0x0000000000000080 rdi = 0x00007f9b05626f0c rbp = 0x00007f9b05626f40 rsp = 0x00007f9a89ffab60 r8 = 0x00007f9b05626e00 r9 = 0x0000000000000009 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9b05626ea0 r13 = 0x0000000000000090 r14 = 0x00007f9b05626f08 r15 = 0x00007f9b05626f40 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 libnode.so!v8::internal::FullCodeGenerator::Generate [full-codegen-x64.cc : 307 + 0xa] rbp = 0x00007f9b05626f40 rsp = 0x00007f9a89ffab90 rip = 0x00007f9b055511d6 Found by: stack scanning 2 libnode.so!v8::internal::compiler::Typer::Visitor::ObjectIsNaN [types.h : 589 + 0x2] rbp = 0x00007f9b05626f40 rsp = 0x00007f9a89ffaba0 rip = 0x00007f9b055455a3 Found by: stack scanning 3 libnode.so!&lt;name omitted&gt; + 0x60 rbp = 0x00007f9b05626f40 rsp = 0x00007f9a89ffabd0 rip = 0x00007f9b055454a0 Found by: stack scanning 4 libpthread-2.23.so + 0x76ba rbp = 0x00007f9b05626f40 rsp = 0x00007f9a89ffabe0 rip = 0x00007f9b041426ba Found by: stack scanning 5 libnode.so!&lt;name omitted&gt; + 0x60 rbp = 0x00007f9b05626f40 rsp = 0x00007f9a89ffac20 rip = 0x00007f9b055454a0 Found by: stack scanning 6 libc-2.23.so + 0x10741d rbp = 0x00007f9b05626f40 rsp = 0x00007f9a89ffac80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 30 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000012 rcx = 0x00007f9b04148360 rbx = 0x00007f9b05626ee0 rsi = 0x0000000000000080 rdi = 0x00007f9b05626f0c rbp = 0x00007f9b05626f40 rsp = 0x00007f9a897f9b60 r8 = 0x00007f9b05626e00 r9 = 0x0000000000000007 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9b05626ea0 r13 = 0x0000000000000090 r14 = 0x00007f9b05626f08 r15 = 0x00007f9b05626f40 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 libnode.so!v8::internal::FullCodeGenerator::Generate [full-codegen-x64.cc : 307 + 0xa] rbp = 0x00007f9b05626f40 rsp = 0x00007f9a897f9b90 rip = 0x00007f9b055511d6 Found by: stack scanning 2 libnode.so!v8::internal::compiler::Typer::Visitor::ObjectIsNaN [types.h : 589 + 0x2] rbp = 0x00007f9b05626f40 rsp = 0x00007f9a897f9ba0 rip = 0x00007f9b055455a3 Found by: stack scanning 3 libnode.so!&lt;name omitted&gt; + 0x60 rbp = 0x00007f9b05626f40 rsp = 0x00007f9a897f9bd0 rip = 0x00007f9b055454a0 Found by: stack scanning 4 libpthread-2.23.so + 0x76ba rbp = 0x00007f9b05626f40 rsp = 0x00007f9a897f9be0 rip = 0x00007f9b041426ba Found by: stack scanning 5 libnode.so!&lt;name omitted&gt; + 0x60 rbp = 0x00007f9b05626f40 rsp = 0x00007f9a897f9c20 rip = 0x00007f9b055454a0 Found by: stack scanning 6 libc-2.23.so + 0x10741d rbp = 0x00007f9b05626f40 rsp = 0x00007f9a897f9c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 31 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000001 rcx = 0x00007f9b04148360 rbx = 0x00007f9a60aa4a70 rsi = 0x0000000000000080 rdi = 0x00007f9a60aa4abc rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4a40 r8 = 0x00007f9a60aa4a00 r9 = 0x0000000000000000 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9a60aa4b40 r13 = 0x00007f9aa81a00c8 r14 = 0x7fffffffffffffff r15 = 0x00007f9a60aa4a78 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fcc95f rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4a70 rip = 0x00000000047c495f Found by: stack scanning 2 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4a80 rip = 0x00000000005e6c00 Found by: stack scanning 3 skypeforlinux + 0x508800 rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4a88 rip = 0x00000000005e6800 Found by: stack scanning 4 skypeforlinux + 0x2fa5d85 rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4b00 rip = 0x000000000479dd85 Found by: stack scanning 5 skypeforlinux + 0x2fcc847 rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4b40 rip = 0x00000000047c4847 Found by: stack scanning 6 skypeforlinux + 0x2fc1f3a rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4b50 rip = 0x00000000047b9f3a Found by: stack scanning 7 skypeforlinux + 0x2fc2347 rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4b70 rip = 0x00000000047ba347 Found by: stack scanning 8 skypeforlinux + 0x2fc1a14 rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4b80 rip = 0x00000000047b9a14 Found by: stack scanning 9 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4bc0 rip = 0x00000000047d5a43 Found by: stack scanning 10 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4be0 rip = 0x00007f9b041426ba Found by: stack scanning 11 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9a60aa4c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 32 0 libpthread-2.23.so + 0xd709 rax = 0xfffffffffffffdfc rdx = 0x0000000000000122 rcx = 0x00007f9b04148709 rbx = 0x00000000000020c3 rsi = 0x0000000000000089 rdi = 0x00007f9ad4004784 rbp = 0x0000000004f26be0 rsp = 0x00007f9a5d497900 r8 = 0x00007f9ad4004758 r9 = 0x00000000ffffffff r10 = 0x00007f9a5d497960 r11 = 0x0000000000000206 r12 = 0x0000000000000122 r13 = 0x00007f9a5d497960 r14 = 0xffffffffffffff92 r15 = 0x000000002f52fa00 rip = 0x00007f9b04148709 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fea132 rsp = 0x00007f9a5d497950 rip = 0x00000000047e2132 Found by: stack scanning 2 skypeforlinux + 0x2f87564 rsp = 0x00007f9a5d497990 rip = 0x000000000477f564 Found by: stack scanning 3 skypeforlinux + 0x2f7bac3 rsp = 0x00007f9a5d4979d0 rip = 0x0000000004773ac3 Found by: stack scanning 4 skypeforlinux + 0x2f7a614 rsp = 0x00007f9a5d4979e0 rip = 0x0000000004772614 Found by: stack scanning 5 skypeforlinux + 0x2fae400 rsp = 0x00007f9a5d497a00 rip = 0x00000000047a6400 Found by: stack scanning 6 skypeforlinux + 0x241db8 rsp = 0x00007f9a5d497a30 rip = 0x000000000031fdb8 Found by: stack scanning 7 skypeforlinux + 0x2f8797c rsp = 0x00007f9a5d497a40 rip = 0x000000000477f97c Found by: stack scanning 8 libstdc++.so.6.0.21 + 0xcfd87 rsp = 0x00007f9a5d497a70 rip = 0x00007f9afdf80d87 Found by: stack scanning 9 skypeforlinux + 0x13e1c4 rsp = 0x00007f9a5d497ad0 rip = 0x000000000021c1c4 Found by: stack scanning 10 skypeforlinux + 0x241db8 rsp = 0x00007f9a5d497ad8 rip = 0x000000000031fdb8 Found by: stack scanning 11 skypeforlinux + 0x1645185 rsp = 0x00007f9a5d497ae8 rip = 0x0000000002e3d185 Found by: stack scanning 12 skypeforlinux + 0x2409c6 rsp = 0x00007f9a5d497b50 rip = 0x0000000001a389c6 Found by: stack scanning 13 skypeforlinux + 0x2fdda43 rsp = 0x00007f9a5d497bc0 rip = 0x00000000047d5a43 Found by: stack scanning 14 libpthread-2.23.so + 0x76ba rsp = 0x00007f9a5d497be0 rip = 0x00007f9b041426ba Found by: stack scanning 15 libc-2.23.so + 0x10741d rsp = 0x00007f9a5d497c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 33 0 libpthread-2.23.so + 0xd709 rax = 0xfffffffffffffdfc rdx = 0x0000000000000126 rcx = 0x00007f9b04148709 rbx = 0x0000000000002143 rsi = 0x0000000000000089 rdi = 0x00007f9ad4004784 rbp = 0x0000000004f26be0 rsp = 0x00007f9a5cc96900 r8 = 0x00007f9ad4004758 r9 = 0x00000000ffffffff r10 = 0x00007f9a5cc96960 r11 = 0x0000000000000206 r12 = 0x0000000000000126 r13 = 0x00007f9a5cc96960 r14 = 0xffffffffffffff92 r15 = 0x000000000daf1a00 rip = 0x00007f9b04148709 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fea132 rsp = 0x00007f9a5cc96950 rip = 0x00000000047e2132 Found by: stack scanning 2 skypeforlinux + 0x2f87564 rsp = 0x00007f9a5cc96990 rip = 0x000000000477f564 Found by: stack scanning 3 skypeforlinux + 0x2f7bac3 rsp = 0x00007f9a5cc969d0 rip = 0x0000000004773ac3 Found by: stack scanning 4 skypeforlinux + 0x2f7a614 rsp = 0x00007f9a5cc969e0 rip = 0x0000000004772614 Found by: stack scanning 5 skypeforlinux + 0x2fae400 rsp = 0x00007f9a5cc96a00 rip = 0x00000000047a6400 Found by: stack scanning 6 skypeforlinux + 0x241db8 rsp = 0x00007f9a5cc96a30 rip = 0x000000000031fdb8 Found by: stack scanning 7 skypeforlinux + 0x2f8797c rsp = 0x00007f9a5cc96a40 rip = 0x000000000477f97c Found by: stack scanning 8 libstdc++.so.6.0.21 + 0xcfd87 rsp = 0x00007f9a5cc96a70 rip = 0x00007f9afdf80d87 Found by: stack scanning 9 skypeforlinux + 0x13e1c4 rsp = 0x00007f9a5cc96ad0 rip = 0x000000000021c1c4 Found by: stack scanning 10 skypeforlinux + 0x241db8 rsp = 0x00007f9a5cc96ad8 rip = 0x000000000031fdb8 Found by: stack scanning 11 skypeforlinux + 0x1645185 rsp = 0x00007f9a5cc96ae8 rip = 0x0000000002e3d185 Found by: stack scanning 12 skypeforlinux + 0x2409c6 rsp = 0x00007f9a5cc96b50 rip = 0x0000000001a389c6 Found by: stack scanning 13 skypeforlinux + 0x2fdda43 rsp = 0x00007f9a5cc96bc0 rip = 0x00000000047d5a43 Found by: stack scanning 14 libpthread-2.23.so + 0x76ba rsp = 0x00007f9a5cc96be0 rip = 0x00007f9b041426ba Found by: stack scanning 15 libc-2.23.so + 0x10741d rsp = 0x00007f9a5cc96c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 34 0 libpthread-2.23.so + 0xd360 rax = 0xfffffffffffffe00 rdx = 0x0000000000000003 rcx = 0x00007f9b04148360 rbx = 0x0000000004f36920 rsi = 0x0000000000000080 rdi = 0x0000000004f36984 rbp = 0x000000000253c9e0 rsp = 0x00007f9abdffaac0 r8 = 0x0000000004f36900 r9 = 0x0000000000000001 r10 = 0x0000000000000000 r11 = 0x0000000000000246 r12 = 0x00007f9a7c012890 r13 = 0x0000000004f26f60 r14 = 0x0000000004f36958 r15 = 0x0000000004f36980 rip = 0x00007f9b04148360 Found by: given as instruction pointer in context 1 skypeforlinux + 0xd35288 rsp = 0x00007f9abdffaaf0 rip = 0x000000000252d288 Found by: stack scanning 2 libc-2.23.so + 0x84184 rsp = 0x00007f9abdffab00 rip = 0x00007f9afd64c184 Found by: stack scanning 3 skypeforlinux + 0x11bc43 rsp = 0x00007f9abdffab10 rip = 0x0000000001913c43 Found by: stack scanning 4 skypeforlinux + 0x2409c6 rsp = 0x00007f9abdffab50 rip = 0x0000000001a389c6 Found by: stack scanning 5 skypeforlinux + 0xd351f6 rsp = 0x00007f9abdffaba0 rip = 0x000000000252d1f6 Found by: stack scanning 6 skypeforlinux + 0x3b2ac0 rsp = 0x00007f9abdffaba8 rip = 0x0000000000490ac0 Found by: stack scanning 7 skypeforlinux + 0xd36bbb rsp = 0x00007f9abdffabb0 rip = 0x000000000252ebbb Found by: stack scanning 8 skypeforlinux + 0x2fdda43 rsp = 0x00007f9abdffabc0 rip = 0x00000000047d5a43 Found by: stack scanning 9 skypeforlinux + 0x722000 rsp = 0x00007f9abdffabd0 rip = 0x0000000000800000 Found by: stack scanning 10 libpthread-2.23.so + 0x76ba rsp = 0x00007f9abdffabe0 rip = 0x00007f9b041426ba Found by: stack scanning 11 skypeforlinux + 0x722000 rsp = 0x00007f9abdffac18 rip = 0x0000000000800000 Found by: stack scanning 12 libc-2.23.so + 0x10741d rsp = 0x00007f9abdffac80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 35 0 libpthread-2.23.so + 0xd709 rax = 0xfffffffffffffdfc rdx = 0x0000000000000001 rcx = 0x00007f9b04148709 rbx = 0x0000000000002006 rsi = 0x0000000000000089 rdi = 0x00007f9a61fb9aac rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb99d0 r8 = 0x00007f9a61fb9a80 r9 = 0x00000000ffffffff r10 = 0x00007f9a61fb9a30 r11 = 0x0000000000000206 r12 = 0x0000000000000001 r13 = 0x00007f9a61fb9a30 r14 = 0xffffffffffffff92 r15 = 0x000000002a020100 rip = 0x00007f9b04148709 Found by: given as instruction pointer in context 1 skypeforlinux + 0x2fea132 rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9a20 rip = 0x00000000047e2132 Found by: stack scanning 2 skypeforlinux + 0x2fcc98a rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9a60 rip = 0x00000000047c498a Found by: stack scanning 3 skypeforlinux + 0x21406ff rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9a68 rip = 0x00000000039386ff Found by: stack scanning 4 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9a70 rip = 0x00000000005e6c00 Found by: stack scanning 5 libc-2.23.so + 0x115876 rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9af0 rip = 0x00007f9afd6dd876 Found by: stack scanning 6 skypeforlinux + 0x2fcca79 rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9b30 rip = 0x00000000047c4a79 Found by: stack scanning 7 skypeforlinux + 0x2fc1f49 rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9b50 rip = 0x00000000047b9f49 Found by: stack scanning 8 skypeforlinux + 0x2140700 rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9b60 rip = 0x0000000003938700 Found by: stack scanning 9 skypeforlinux + 0x2fc256e rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9b70 rip = 0x00000000047ba56e Found by: stack scanning 10 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9bc0 rip = 0x00000000047d5a43 Found by: stack scanning 11 skypeforlinux + 0x722000 rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9bd0 rip = 0x0000000000800000 Found by: stack scanning 12 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9be0 rip = 0x00007f9b041426ba Found by: stack scanning 13 skypeforlinux + 0x722000 rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9c18 rip = 0x0000000000800000 Found by: stack scanning 14 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9a61fb9c80 rip = 0x00007f9afd6cf41d Found by: stack scanning Thread 36 0 libpthread-2.23.so + 0xd709 rax = 0xfffffffffffffdfc rdx = 0x0000000000000001 rcx = 0x00007f9b04148709 rbx = 0x0000000000002006 rsi = 0x0000000000000089 rdi = 0x00007f9abd7f9aac rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f99d0 r8 = 0x00007f9abd7f9a80 r9 = 0x00000000ffffffff r10 = 0x00007f9abd7f9a30 r11 = 0x0000000000000206 r12 = 0x0000000000000001 r13 = 0x00007f9abd7f9a30 r14 = 0xffffffffffffff92 r15 = 0x000000000367e900 rip = 0x00007f9b04148709 Found by: given as instruction pointer in context 1 skypeforlinux + 0x1e8691f rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9a00 rip = 0x000000000367e91f Found by: stack scanning 2 skypeforlinux + 0x2fea132 rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9a20 rip = 0x00000000047e2132 Found by: stack scanning 3 skypeforlinux + 0x1e86d07 rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9a30 rip = 0x000000000367ed07 Found by: stack scanning 4 skypeforlinux + 0x1e8691f rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9a40 rip = 0x000000000367e91f Found by: stack scanning 5 skypeforlinux + 0x2fcc98a rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9a60 rip = 0x00000000047c498a Found by: stack scanning 6 skypeforlinux + 0x21406ff rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9a68 rip = 0x00000000039386ff Found by: stack scanning 7 skypeforlinux + 0x508c00 rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9a70 rip = 0x00000000005e6c00 Found by: stack scanning 8 libc-2.23.so + 0x115876 rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9af0 rip = 0x00007f9afd6dd876 Found by: stack scanning 9 skypeforlinux + 0x2fcca79 rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9b30 rip = 0x00000000047c4a79 Found by: stack scanning 10 skypeforlinux + 0x2fc1f49 rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9b50 rip = 0x00000000047b9f49 Found by: stack scanning 11 skypeforlinux + 0x2140700 rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9b60 rip = 0x0000000003938700 Found by: stack scanning 12 skypeforlinux + 0x2fc256e rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9b70 rip = 0x00000000047ba56e Found by: stack scanning 13 skypeforlinux + 0x2fdda43 rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9bc0 rip = 0x00000000047d5a43 Found by: stack scanning 14 skypeforlinux + 0x722000 rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9bd0 rip = 0x0000000000800000 Found by: stack scanning 15 libpthread-2.23.so + 0x76ba rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9be0 rip = 0x00007f9b041426ba Found by: stack scanning 16 skypeforlinux + 0x722000 rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9c18 rip = 0x0000000000800000 Found by: stack scanning 17 libc-2.23.so + 0x10741d rbp = 0x7fffffffffffffff rsp = 0x00007f9abd7f9c80 rip = 0x00007f9afd6cf41d Found by: stack scanning``` &lt;/details&gt; ### How to reproduce </code></pre></div></details>
<ul dir="auto"> <li>Electron version: 2.0.1</li> <li>Operating system: Windows 10 Home</li> </ul> <h3 dir="auto">Expected behavior</h3> <p dir="auto">When I set <code class="notranslate">transparent: true</code> in the <code class="notranslate">BrowserWindow</code> object, it should not display the white clutter (shown below) outside my html container because i've set;<br> <code class="notranslate">html, body { background: rgba(0, 0, 0, 0); }</code></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/18026360/40307354-87b604ec-5d1b-11e8-871f-26e9c105adfd.png"><img src="https://user-images.githubusercontent.com/18026360/40307354-87b604ec-5d1b-11e8-871f-26e9c105adfd.png" alt="image" style="max-width: 100%;"></a></p> <h3 dir="auto">Actual behavior</h3> <p dir="auto">Instead, when I set <code class="notranslate">transparent: true</code> the <code class="notranslate">BrowserWindow</code> behaves abnormally and produces the following result;</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/18026360/40307415-d244d93e-5d1b-11e8-814f-a4e624bbd48a.png"><img src="https://user-images.githubusercontent.com/18026360/40307415-d244d93e-5d1b-11e8-814f-a4e624bbd48a.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">The Window gets smaller and is no longer re-sizable. I've tried everything I could look up. Help is immensely appreciated.</p> <h3 dir="auto">How to reproduce</h3> <p dir="auto"><strong>HTML</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="`&lt;body&gt; &lt;div class=&quot;container&quot;&gt; Lorem ipsum, dolor sit amet consectetur adipisicing elit. Laudantium ab nihil officia obcaecati sunt unde aspernatur, illo et nostrum consequatur ea itaque porro delectus repudiandae dolorum labore, molestiae minus sint. &lt;/div&gt; &lt;/body&gt;`"><pre class="notranslate"><code class="notranslate">`&lt;body&gt; &lt;div class="container"&gt; Lorem ipsum, dolor sit amet consectetur adipisicing elit. Laudantium ab nihil officia obcaecati sunt unde aspernatur, illo et nostrum consequatur ea itaque porro delectus repudiandae dolorum labore, molestiae minus sint. &lt;/div&gt; &lt;/body&gt;` </code></pre></div> <p dir="auto"><strong>CSS</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="`html, body { background: rgba(0, 0, 0, 0); } .container { width: 90vw; height: 90vh; position: absolute; top: 5vh; left: 5vw; border-radius: 20px; background-color: #eeeeee; box-shadow: 2px 2px 2px black; }`"><pre class="notranslate"><code class="notranslate">`html, body { background: rgba(0, 0, 0, 0); } .container { width: 90vw; height: 90vh; position: absolute; top: 5vh; left: 5vw; border-radius: 20px; background-color: #eeeeee; box-shadow: 2px 2px 2px black; }` </code></pre></div> <p dir="auto"><strong>JS</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const {app, BrowserWindow} = require('electron'); const path = require('path'); var win; app.on('ready', function(){ console.log('ready'); win = new BrowserWindow({transparent: true , width: 300, height: 500, frame: false, show: false}); win.loadURL(path.join(&quot;file://&quot; + __dirname + &quot;/views/login.html&quot;)); console.log('load'); win.show(); })"><pre class="notranslate"><code class="notranslate">const {app, BrowserWindow} = require('electron'); const path = require('path'); var win; app.on('ready', function(){ console.log('ready'); win = new BrowserWindow({transparent: true , width: 300, height: 500, frame: false, show: false}); win.loadURL(path.join("file://" + __dirname + "/views/login.html")); console.log('load'); win.show(); }) </code></pre></div> <p dir="auto">I hope someone helps.</p>
0
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x ] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[x ] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question </code></pre></div> <p dir="auto"><strong>Current behavior</strong><br> When trying to render nested dynamic components via the ComponentFactoryResolver I receive an exception/error message:</p> <p dir="auto">browser_adapter.js:84Error: Expression has changed after it was checked. Previous value: 'CD_INIT_VALUE'. Current value: 'null'. It seems like the view has been created after its parent and its children have been dirty checked. Has it been created in a change detection hook ?</p> <p dir="auto"><strong>Expected/desired behavior</strong><br> It should render the nested dynamic controls. This had worked until the introduction of the ComponentFactoryResolver.</p> <p dir="auto"><strong>Reproduction of the problem</strong><br> Here is the plunkr recreating the issue: <a href="http://plnkr.co/edit/BfqEYqNqyZuJDytt1DCc?p=preview" rel="nofollow">http://plnkr.co/edit/BfqEYqNqyZuJDytt1DCc?p=preview</a></p> <p dir="auto">It's a duplicate of <a href="url">https://github.com/angular/angular/issues/10762</a> except that the solution provided does not work for ViewChildren, it only works for ViewChild.</p> <p dir="auto"><strong>What is the expected behavior?</strong><br> I should be able to render a control via ComponentFactoryResolver which in turn also renders multiple controls via ComponentFactoryResolver.</p> <p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong></p> <p dir="auto">It used to work.</p> <p dir="auto"><strong>Please tell us about your environment:</strong></p> <ul dir="auto"> <li><strong>Angular version:</strong> 2.0.0-rc.5</li> <li><strong>Browser:</strong> [all]</li> <li><strong>Language:</strong> [all]</li> </ul>
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ ] bug report =&gt; search github for a similar issue or PR before submitting [X] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[ ] bug report =&gt; search github for a similar issue or PR before submitting [X] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question </code></pre></div> <p dir="auto">Follow-up issue for <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="182795157" data-permission-text="Title is private" data-url="https://github.com/angular/angular/issues/12275" data-hovercard-type="issue" data-hovercard-url="/angular/angular/issues/12275/hovercard" href="https://github.com/angular/angular/issues/12275">#12275</a> as requested by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/DzmitryShylovich/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/DzmitryShylovich">@DzmitryShylovich</a></p> <p dir="auto"><strong>Current behavior</strong><br> <code class="notranslate">entryComponents</code> of a lazy loaded NgModule cannot be rendered using <code class="notranslate">ComponentFactoryResolver</code>. Error message: <code class="notranslate">No component factory found for {{entryComponent}}</code></p> <p dir="auto"><strong>Expected behavior</strong><br> <code class="notranslate">entryComponents</code> should be available just like if the module is imported</p> <p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong><br> <a href="http://plnkr.co/edit/9euisYeSNbEFrfzOhhzf?p=preview" rel="nofollow">http://plnkr.co/edit/9euisYeSNbEFrfzOhhzf?p=preview</a></p> <p dir="auto">I created a simple setup, similar to what we use internally. <code class="notranslate">Main</code> component provides a method to render a <code class="notranslate">Type</code>. <code class="notranslate">EntryComponent</code> is declared as <code class="notranslate">entryComponent</code> in <code class="notranslate">Page1Module</code>. However after having loaded <code class="notranslate">Page1Module</code>, when trying to render <code class="notranslate">EntryComponent</code> via <code class="notranslate">ComponentFactoryResolver</code>, <code class="notranslate">No component factory found for EntryComponent</code> is thrown.</p> <p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br> Render <code class="notranslate">entryComponents</code> of child modules at root level. Use cases for this approach are</p> <ul dir="auto"> <li>Modals that shall be rendered on top of everything</li> <li>Notifications</li> <li>etc.</li> </ul> <p dir="auto"><strong>Please tell us about your environment:</strong><br> We're using currently Angular 2.1.1 but this affects the latest version of Angular (2.4.6) as well (see plnkr).</p> <ul dir="auto"> <li><strong>Language:</strong> TypeScript ^2.0.0</li> </ul>
0
<p dir="auto">This is a proposition to deprecate <code class="notranslate">logistic_regression_path</code> and make it private.</p> <p dir="auto">Context: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="340206495" data-permission-text="Title is private" data-url="https://github.com/scikit-learn/scikit-learn/issues/11476" data-hovercard-type="pull_request" data-hovercard-url="/scikit-learn/scikit-learn/pull/11476/hovercard?comment_id=413958478&amp;comment_type=issue_comment" href="https://github.com/scikit-learn/scikit-learn/pull/11476#issuecomment-413958478">#11476 (comment)</a></p> <p dir="auto">Making it private would make it much easier to refactor the code in <code class="notranslate">LogisticRegression</code> and especially in <code class="notranslate">LogisticRegerssionCV</code>, where a lot of case-by-case logic has to be implemented due to non-homogeneous array shapes.</p> <p dir="auto">The deprecation should not affect users. Quoting a mail from <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/amueller/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/amueller">@amueller</a> who has looked for occurences of the use of <code class="notranslate">logistic_regression_path</code> on GitHub repositories:</p> <blockquote> <p dir="auto">Can confirm it's not used anywhere. I get 12 hits in the 46081 files using sklearn,<br> all of which are vendoring scikit-learn as a whole (so it's not actually used).<br> For comparison, LogisticRegression is included in 3980 files (many duplicates and forks of tensorflow)<br> and in 1662 projects (identified by project name, which is likely underestimating, since not all projects named "kaggle" correspond to the same project).</p> </blockquote>
<p dir="auto">Hi,</p> <p dir="auto">I currently have a distance matrix that contains Euclidean distances. However, according to the documentation of AgglomerativeClustering, I cannot use this pre-computed metric as input if I want to use Ward linkage. Ward is reserverd for Euclidean distances only (which makes sense from a theoretical point of view). However, my precomputed distance matrix is within the Euclidean space and therefore I should be allowed to use Ward.</p> <p dir="auto">Can I just input my distance matrix and run it with "Euclidean" affinity and "Ward" linkage? Or do I need to transform my Euclidean distance matrix to a MDS matrix and input these with "Euclidean" affinity and "Ward" linkage?</p> <p dir="auto">Maybe include a statement in the documentation: Note, Ward linkage assumes a Euclidean distance matrix. Make sure your pre-computed distance matrix contains Euclidean distances if you want to use Ward linkage.</p> <p dir="auto">Instead of throwing an error.</p>
0
<p dir="auto">The dbpedia_csv.tar.gz file downloaded seems to be corrupt and the link for the dataset, i.e.<br> <a href="https://googledrive.com/host/0Bz8a_Dbh9Qhbfll6bVpmNUtUcFdjYmF2SEpmZUZUcVNiMUw1TWN6RDV3a0JHT3kxLVhVR2M/dbpedia_csv.tar.gz" rel="nofollow">https://googledrive.com/host/0Bz8a_Dbh9Qhbfll6bVpmNUtUcFdjYmF2SEpmZUZUcVNiMUw1TWN6RDV3a0JHT3kxLVhVR2M/dbpedia_csv.tar.gz</a></p> <p dir="auto">is giving 404 error. The file dbpedia_csv.tar.gz seems to be downloaded but upon running tensorflow/tensorflow/examples/learn/text_classification_cnn.py, an error is produced giving</p> <p dir="auto">Successfully downloaded dbpedia_csv.tar.gz 1657 bytes.<br> Traceback (most recent call last):<br> File "main.py", line 122, in <br> tf.app.run(main=main, argv=[sys.argv[0]] + unparsed)<br> File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/platform/app.py", line 43, in run<br> sys.exit(main(sys.argv[:1] + flags_passthrough))<br> File "main.py", line 88, in main<br> 'dbpedia', test_with_fake_data=FLAGS.test_with_fake_data, size='large')<br> File "/usr/local/lib/python2.7/dist-packages/tensorflow/contrib/learn/python/learn/datasets/<strong>init</strong>.py", line 64, in load_dataset<br> return DATASETS[name](size, test_with_fake_data)<br> File "/usr/local/lib/python2.7/dist-packages/tensorflow/contrib/learn/python/learn/datasets/text_datasets.py", line 48, in load_dbpedia<br> maybe_download_dbpedia(data_dir)<br> File "/usr/local/lib/python2.7/dist-packages/tensorflow/contrib/learn/python/learn/datasets/text_datasets.py", line 40, in maybe_download_dbpedia<br> tfile = tarfile.open(archive_path, 'r:*')<br> File "/usr/lib/python2.7/tarfile.py", line 1678, in open<br> raise ReadError("file could not be opened successfully")<br> tarfile.ReadError: file could not be opened successfully</p>
<p dir="auto">DBPEDIA_URL in <a href="https://github.com/tensorflow/tensorflow/blob/master/tensorflow/contrib/learn/python/learn/datasets/text_datasets.py">text_datasets.py</a> is not a valid url anymore because web hosting in Google Drive has been deprecated, <a href="https://gsuite-developers.googleblog.com/2015/08/deprecating-web-hosting-support-in.html" rel="nofollow">https://gsuite-developers.googleblog.com/2015/08/deprecating-web-hosting-support-in.html</a></p> <p dir="auto">Proposed fix:</p> <ul dir="auto"> <li>Move <a href="https://drive.google.com/drive/folders/0Bz8a_Dbh9Qhbfll6bVpmNUtUcFdjYmF2SEpmZUZUcVNiMUw1TWN6RDV3a0JHT3kxLVhVR2M" rel="nofollow">dbpedia_csv.tar.gz</a> to cloud storage.</li> </ul> <p dir="auto">What is affected:</p> <ul dir="auto"> <li>Text classification examples that depend on DBpedia data like <a href="https://github.com/tensorflow/tensorflow/blob/master/tensorflow/examples/learn/text_classification.py">text_classification.py</a> are now broken.</li> </ul>
1
<p dir="auto">I was looking into the classes for GetResponseEvent and PostResponseEvent and found tthat even tought they share a lot of code they do not have common acentors.</p> <p dir="auto">Here is what i found:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="GetResponseEvent -&gt; KernelEvent -&gt; Event"><pre class="notranslate"><code class="notranslate">GetResponseEvent -&gt; KernelEvent -&gt; Event </code></pre></div> <p dir="auto">and</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="PostResponseEvent -&gt; Event"><pre class="notranslate"><code class="notranslate">PostResponseEvent -&gt; Event </code></pre></div> <p dir="auto">Get: implements <code class="notranslate">response property</code><br> KernelEvent: Implements <code class="notranslate">kernel</code>, <code class="notranslate">request</code> and <code class="notranslate">request type</code><br> Post: implements <code class="notranslate">kernel</code>, <code class="notranslate">request</code>, <code class="notranslate">response</code></p> <p dir="auto">It seems to me that there is a clear overlap, would it make sense to organize this so that both have a common ancestor and less duplicate code? Or is PostResponseEvent not considered a <code class="notranslate">KernelEvent</code>?</p>
<p dir="auto"></p><div class="Box Box--condensed my-2"> <div class="Box-header f6"> <p class="mb-0 text-bold"> <a href="https://github.com/symfony/symfony/blob/1cada24000ccfc76033bd216f07fb8cc5382bf7a/src/Symfony/Component/HttpFoundation/FileBag.php#L49">symfony/src/Symfony/Component/HttpFoundation/FileBag.php</a> </p> <p class="mb-0 color-fg-muted"> Line 49 in <a data-pjax="true" class="commit-tease-sha" href="/symfony/symfony/commit/1cada24000ccfc76033bd216f07fb8cc5382bf7a">1cada24</a> </p> </div> <div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data"> <table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip=""> <tbody><tr class="border-0"> <td id="L49" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="49"></td> <td id="LC49" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">throw</span> <span class="pl-k">new</span> \<span class="pl-v">InvalidArgumentException</span>(<span class="pl-s">'An uploaded file must be an array or an instance of UploadedFile.'</span>); </td> </tr> </tbody></table> </div> </div> <p></p> <p dir="auto">"An uploaded file must be an array or an instance of UploadedFile"</p> <p dir="auto">Where is the check for null?, if the $value is null, why don't you ignore the request, currently the forms doesn't work if you don't submit a file.</p> <p dir="auto">and why is this approach of throwing an exception on every error?, if the $value is not an array and not an uploadeded file, whats the harm of ignoring the value and continue?</p>
0
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[X] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[X] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question </code></pre></div> <p dir="auto"><strong>Current behavior</strong></p> <p dir="auto">Under certain conditions where module dependencies are listed in particular import orders, values that are provided with the multi flag (such as via a forChild syntax) will be duplicated when application boots.</p> <p dir="auto">This behavior does not occur in angular 2.2.1 and was observed in 2.3.0 and 2.4.0.</p> <p dir="auto"><strong>Expected behavior</strong></p> <p dir="auto">Values provided within a module should not be duplicated if the module is referenced by several others.</p> <p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong></p> <p dir="auto">I've narrowed down the situation when this occurs to this <a href="https://plnkr.co/edit/duzRz5STjl6kujmOulgo" rel="nofollow">plunker</a>. When run, you can see the list of provided values printed to the DOM. When the problem occurs, the string 'shared' will be printed twice.</p> <p dir="auto">In this example there are 5 modules--AppModule, FeatureModule, FeatureWidgetModule, SharedModule, WidgetModule.</p> <p dir="auto">The WidgetModule exposes a <code class="notranslate">forChild</code> method which simply provides string arguments as a multiple provider.</p> <p dir="auto">The SharedModule imports <code class="notranslate">WidgetModule.forChild('shared')</code>.</p> <p dir="auto">The FeatureModule follows a pattern often seen in Router documentation where there is a secondary module dedicated to importing the routes (or in this case widgets) for a feature. So, FeatureModule imports FeatureWidgetModule which imports <code class="notranslate">WidgetModule.forChild('feature')</code>.</p> <p dir="auto">Finally, the AppModule imports both FeatureModule and SharedModule.</p> <p dir="auto">When we use this setup, using the specific import order in the punker, the value <code class="notranslate">'shared'</code> that was multi-provided by the SharedModule appears twice when we inspect all provided widgets.</p> <p dir="auto">If you change the import order of the modules in the <a href="https://plnkr.co/edit/duzRz5STjl6kujmOulgo" rel="nofollow">plunker</a> you will see that 'shared' is only printed once.</p> <p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong></p> <p dir="auto">My use case is to allow various feature modules to provide their own values (such as route definitions) in a larger application with some shared modules referenced by several others. While i can work around the issue by manually manipulating the import orders, it requires that every module writer understand all the dependencies of the modules upon which they depend, which I believe should not be their concern.</p> <p dir="auto"><strong>Please tell us about your environment:</strong></p> <p dir="auto">Using OSX, WebStorm, npm,<br> Able to reproduce using both SystemJS and Webpack</p> <ul dir="auto"> <li><strong>Angular version:</strong> 2.4.0</li> </ul> <p dir="auto">Problem occurs in angular 2.3.0 and 2.4.0.<br> Does not occur in 2.2.1.</p> <ul dir="auto"> <li><strong>Browser:</strong> [all]</li> <li><strong>Language:</strong> [TypeScript 2.1.1]</li> <li><strong>Node (for AoT issues):</strong> <code class="notranslate">node --version</code> = 6.9.1</li> </ul>
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[x] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question </code></pre></div> <p dir="auto"><strong>Current behavior</strong><br> In the angular.io project we rely on a fake xhr implementation to simulate a web api in our samples. The implementation can be found here: <a href="https://github.com/angular/in-memory-web-api/blob/master/src/in-memory-backend.service.ts#L120">https://github.com/angular/in-memory-web-api/blob/master/src/in-memory-backend.service.ts#L120</a></p> <p dir="auto">To short circuit the injection of <code class="notranslate">XHRBackend</code>, we provide the fake backend like this:<br> <code class="notranslate">{ provide: XHRBackend, useClass: InMemoryBackendService }</code></p> <p dir="auto">This approach works well for JIT compiled samples, but for some reason this does not work when doing AOT compilation.</p> <p dir="auto">The compile error I am seeing is:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Error: Error at /Users/tor/Helgevold-Consulting-Dev/angular.io/public/docs/_examples/toh-6/ts/app/app.module.ngfactory.ts:219:67: Supplied parameters do not match any signature of call target. Error at /Users/tor/Helgevold-Consulting-Dev/angular.io/public/docs/_examples/toh-6/ts/app/app.module.ngfactory.ts:227:75: Argument of type 'InMemoryBackendService' is not assignable to parameter of type 'XHRBackend'. Property '_browserXHR' is missing in type 'InMemoryBackendService'."><pre class="notranslate"><code class="notranslate">Error: Error at /Users/tor/Helgevold-Consulting-Dev/angular.io/public/docs/_examples/toh-6/ts/app/app.module.ngfactory.ts:219:67: Supplied parameters do not match any signature of call target. Error at /Users/tor/Helgevold-Consulting-Dev/angular.io/public/docs/_examples/toh-6/ts/app/app.module.ngfactory.ts:227:75: Argument of type 'InMemoryBackendService' is not assignable to parameter of type 'XHRBackend'. Property '_browserXHR' is missing in type 'InMemoryBackendService'. </code></pre></div> <p dir="auto">It complains that <code class="notranslate">_browserXHR</code> is not defined in the class.</p> <p dir="auto">I tried defining <code class="notranslate">_browserXHR</code>, but that leads me to the new error:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Argument of type 'InMemoryBackendService' is not assignable to parameter of type 'XHRBackend'. Types have separate declarations of a private property '_browserXHR'."><pre class="notranslate"><code class="notranslate">Argument of type 'InMemoryBackendService' is not assignable to parameter of type 'XHRBackend'. Types have separate declarations of a private property '_browserXHR'. </code></pre></div> <p dir="auto">I am not sure why this doesn't AOT compile. Why is it comparing internal (private) properties between the two implementations?</p> <p dir="auto">Thanks!</p>
0
<p dir="auto">I want to visualize detection results on images using <code class="notranslate">tf.summary.image</code> and record the original name of this image at the same time.<br> In the old version <code class="notranslate">tf.image_summary()</code>, I can pass a placeholder for an image name and feed the name in <code class="notranslate">sess.run</code>. Like this,</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="log_image_data = tf.placeholder(tf.uint8, [None, None, 3]) log_image_name = tf.placeholder(tf.string) log_image = tf.image_summary(log_image_name, tf.expand_dims(log_image_data, 0), max_images=1)"><pre class="notranslate"><code class="notranslate">log_image_data = tf.placeholder(tf.uint8, [None, None, 3]) log_image_name = tf.placeholder(tf.string) log_image = tf.image_summary(log_image_name, tf.expand_dims(log_image_data, 0), max_images=1) </code></pre></div> <p dir="auto">But the new version of api only allows to speficy a fixed <code class="notranslate">name</code> in string type instead of a placeholder when building the summry graph.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="tf.summary.image(name, tensor, max_outputs=3, collections=None) # Args: # name: A name for the generated node, which cannot be a placeholder"><pre class="notranslate"><code class="notranslate">tf.summary.image(name, tensor, max_outputs=3, collections=None) # Args: # name: A name for the generated node, which cannot be a placeholder </code></pre></div> <p dir="auto">How can I name the visualized image on the fly?</p>
<p dir="auto">I enter this command : tflite_convert \ --output_file=/tmp/foo.tflite \ --keras_model_file=C:/Users/n.muthuraj/Desktop/cnn/02/dataset/ashik.h5</p> <p dir="auto">The Output is : Traceback (most recent call last):</p> <p dir="auto">File "c:\users\n.muthuraj\appdata\local\programs\python\python35\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 14, in swig_import_helper return importlib.import_module(mname) File "c:\users\n.muthuraj\appdata\local\programs\python\python35\lib\importlib_init_.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "", line 986, in _gcd_import File "", line 969, in _find_and_load File "", line 958, in _find_and_load_unlocked File "", line 666, in _load_unlocked File "", line 577, in module_from_spec File "", line 906, in create_module File "", line 222, in _call_with_frames_removed ImportError: DLL load failed: The specified module could not be found. During handling of the above exception, another exception occurred: Traceback (most recent call last): File "c:\users\n.muthuraj\appdata\local\programs\python\python35\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in from tensorflow.python.pywrap_tensorflow_internal import * File "c:\users\n.muthuraj\appdata\local\programs\python\python35\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 17, in _pywrap_tensorflow_internal = swig_import_helper() File "c:\users\n.muthuraj\appdata\local\programs\python\python35\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 16, in swig_import_helper return importlib.import_module('pywrap_tensorflow_internal') File "c:\users\n.muthuraj\appdata\local\programs\python\python35\lib\importlib_init.py", line 126, in import_module return _bootstrap.gcd_import(name[level:], package, level) ImportError: No module named 'pywrap_tensorflow_internal' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "c:\users\n.muthuraj\appdata\local\programs\python\python35\lib\runpy.py", line 184, in run_module_as_main "main", mod_spec) File "c:\users\n.muthuraj\appdata\local\programs\python\python35\lib\runpy.py", line 85, in run_code exec(code, run_globals) File "C:\Users\n.muthuraj\AppData\Local\Programs\Python\Python35\Scripts\tflite_convert.exe_main.py", line 5, in File "c:\users\n.muthuraj\appdata\local\programs\python\python35\lib\site-packages\tensorflow_init.py", line 22, in from tensorflow.python import pywrap_tensorflow # pylint: disable=unused-import File "c:\users\n.muthuraj\appdata\local\programs\python\python35\lib\site-packages\tensorflow\python_init.py", line 49, in from tensorflow.python import pywrap_tensorflow File "c:\users\n.muthuraj\appdata\local\programs\python\python35\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 74, in raise ImportError(msg) ImportError: Traceback (most recent call last): File "c:\users\n.muthuraj\appdata\local\programs\python\python35\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 14, in swig_import_helper return importlib.import_module(mname) File "c:\users\n.muthuraj\appdata\local\programs\python\python35\lib\importlib_init.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "", line 986, in _gcd_import File "", line 969, in _find_and_load File "", line 958, in _find_and_load_unlocked File "", line 666, in _load_unlocked File "", line 577, in module_from_spec File "", line 906, in create_module File "", line 222, in _call_with_frames_removed ImportError: DLL load failed: The specified module could not be found. During handling of the above exception, another exception occurred: Traceback (most recent call last): File "c:\users\n.muthuraj\appdata\local\programs\python\python35\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in from tensorflow.python.pywrap_tensorflow_internal import * File "c:\users\n.muthuraj\appdata\local\programs\python\python35\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 17, in _pywrap_tensorflow_internal = swig_import_helper() File "c:\users\n.muthuraj\appdata\local\programs\python\python35\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 16, in swig_import_helper return importlib.import_module('pywrap_tensorflow_internal') File "c:\users\n.muthuraj\appdata\local\programs\python\python35\lib\importlib_init.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) ImportError: No module named '_pywrap_tensorflow_internal' Failed to load the native TensorFlow runtime. See <a href="https://www.tensorflow.org/install/install_sources#common_installation_problems" rel="nofollow">https://www.tensorflow.org/install/install_sources#common_installation_problems</a> for some common reasons and solutions. Include the entire stack trace above this error message when asking for help.</p> <p dir="auto">I am not sure where i am going wrong</p>
0
<h5 dir="auto">Description of the problem</h5> <p dir="auto">I'm using computeVertexNormals on mesh from OBJ and VRML Loader in order to have a smooth shading applied.</p> <p dir="auto">It works with VRML Loader but it don't using OBJ Loader with exactly the same mesh.</p> <p dir="auto">You can see how normal looks like in the 2 cases :</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/7044986/13814266/dca8b634-eb85-11e5-8e8e-b89462cc51a2.png"><img src="https://cloud.githubusercontent.com/assets/7044986/13814266/dca8b634-eb85-11e5-8e8e-b89462cc51a2.png" alt="cone-obj-normals" style="max-width: 100%;"></a><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/7044986/13814267/dcac0582-eb85-11e5-9239-fe4f55af840c.png"><img src="https://cloud.githubusercontent.com/assets/7044986/13814267/dcac0582-eb85-11e5-9239-fe4f55af840c.png" alt="cone-vrml-normals" style="max-width: 100%;"></a></p> <p dir="auto">VRML is smooth shaded and normals (even if inside the mesh) are mingled for one given vertex.<br> OBJ mesh normals are diverging for one given vertex and consequently mesh is not smooth shaded.</p> <p dir="auto">The question is ... why ?</p> <p dir="auto">One difference I have noticed is loaded mesh use geometry in VRML case and BufferGeometry in OBJ case.</p> <p dir="auto">Thanks in advance for answers</p> <h5 dir="auto">Three.js version</h5> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Dev</li> <li>[x ] r74</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> ...</li> </ul> <h5 dir="auto">Browser</h5> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> All of them</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Chrome</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Firefox</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Internet Explorer</li> </ul> <h5 dir="auto">OS</h5> <ul class="contains-task-list"> <li>[] All of them</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Windows</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Linux</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Android</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> IOS</li> </ul> <h5 dir="auto">Hardware Requirements (graphics card, VR Device, ...)</h5>
<h5 dir="auto">Description of the problem</h5> <p dir="auto">When rendering scene, objects outside camera's frustum will not be rendered. But if object is geometry with groups, frustum.intersectsObject only checks the whole object's bounding sphere. Currently I workaround this by toggling material's visibility in scene.onBeforeRender/onAfterRender, but if some groups of geometry share the same material, this will not work.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="intersectsObject: function () { var sphere = new Sphere(); return function intersectsObject( object ) { var geometry = object.geometry; if ( geometry.boundingSphere === null ) geometry.computeBoundingSphere(); sphere.copy( geometry.boundingSphere ) .applyMatrix4( object.matrixWorld ); return this.intersectsSphere( sphere ); }; }()"><pre class="notranslate"><code class="notranslate">intersectsObject: function () { var sphere = new Sphere(); return function intersectsObject( object ) { var geometry = object.geometry; if ( geometry.boundingSphere === null ) geometry.computeBoundingSphere(); sphere.copy( geometry.boundingSphere ) .applyMatrix4( object.matrixWorld ); return this.intersectsSphere( sphere ); }; }() </code></pre></div> <h5 dir="auto">Three.js version</h5> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Dev</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> r90</li> </ul> <h5 dir="auto">Browser</h5> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> All of them</li> </ul> <h5 dir="auto">OS</h5> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> All of them</li> </ul>
0
<h5 dir="auto">ISSUE TYPE</h5> <ul dir="auto"> <li>Bug Report</li> </ul> <h5 dir="auto">COMPONENT NAME</h5> <p dir="auto">include_role</p> <h5 dir="auto">ANSIBLE VERSION</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.4.1.0 config file = /etc/ansible/ansible.cfg configured module search path = [u'/root/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] ansible python module location = /usr/lib/python2.7/site-packages/ansible executable location = /usr/bin/ansible python version = 2.7.5 (default, Aug 9 2016, 05:27:46) [GCC 4.8.5 20150623 (Red Hat 4.8.5-4)] "><pre class="notranslate"><code class="notranslate">ansible 2.4.1.0 config file = /etc/ansible/ansible.cfg configured module search path = [u'/root/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] ansible python module location = /usr/lib/python2.7/site-packages/ansible executable location = /usr/bin/ansible python version = 2.7.5 (default, Aug 9 2016, 05:27:46) [GCC 4.8.5 20150623 (Red Hat 4.8.5-4)] </code></pre></div> <h5 dir="auto">CONFIGURATION</h5> <p dir="auto">ansible-config dump --only-changed<br> DEFAULT_ROLES_PATH(/etc/ansible/ansible.cfg) = [u'/etc/ansible/roles', u'/usr/share/ansible/roles']</p> <h5 dir="auto">OS / ENVIRONMENT</h5> <p dir="auto">N/A</p> <h5 dir="auto">SUMMARY</h5> <p dir="auto">"allow_duplicates: no" not work, same role will be executed again.<br> tasks:<br> - include_role:<br> name: bb<br> allow_duplicates: no<br> - include_role:<br> name: bb<br> allow_duplicates: no</p> <p dir="auto">Maybe following code causes this issue:<br> if block._eor and host.name in block._role._had_task_run and not in_child:<br> block._role._completed[host.name] = True<br> BTW, I wonder why put "not in_child" here. Does it mean include_role/import_role is limited than roles?</p>
<p dir="auto">From <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dekimsey/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dekimsey">@dekimsey</a> on 2016-08-12T19:42:12Z</p> <h5 dir="auto">ISSUE TYPE</h5> <ul dir="auto"> <li>Bug Report</li> </ul> <h5 dir="auto">COMPONENT NAME</h5> <p dir="auto">ini_file</p> <h5 dir="auto">ANSIBLE VERSION</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.1.1.0 config file = /Users/dkimsey/.ansible.cfg configured module search path = ['library/']"><pre class="notranslate"><code class="notranslate">ansible 2.1.1.0 config file = /Users/dkimsey/.ansible.cfg configured module search path = ['library/'] </code></pre></div> <h5 dir="auto">CONFIGURATION</h5> <p dir="auto">N/A</p> <h5 dir="auto">OS / ENVIRONMENT</h5> <p dir="auto">N/A</p> <h5 dir="auto">SUMMARY</h5> <p dir="auto">Using a multiline string as a value in pre-existing ini_file results in duplicate entries.</p> <h5 dir="auto">STEPS TO REPRODUCE</h5> <p dir="auto">It appears the ini_file was changed from a configparser to a by-line reader. However it does not maintain compatibility correctly as configparser handles mulitline values correctly.</p> <p dir="auto">Also, documentation still suggests configparser is in use. It's imported, but unused. It might be appropriate to use configparser to validate the ini file before emitting it to disk. The fact that it didn't surprised us as I wasn't expecting ini_file to produce an invalid ini file. Also, it will happily parse non-ini files into psuedo ini files which break when read with ini_file.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- name: Set multiline.ini.inline ini_file: dest: multiline.ini.inline section: foo option: bar value: | line 1 line 2 line 3"><pre class="notranslate"><code class="notranslate">- name: Set multiline.ini.inline ini_file: dest: multiline.ini.inline section: foo option: bar value: | line 1 line 2 line 3 </code></pre></div> <p dir="auto">See a complete test: <a href="https://gist.github.com/dekimsey/45aeb95814b4aa878ab3f0e5d2d3cb8f">https://gist.github.com/dekimsey/45aeb95814b4aa878ab3f0e5d2d3cb8f</a></p> <p dir="auto">Test with</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible-playbook -i localhost, example.yml -v"><pre class="notranslate"><code class="notranslate">ansible-playbook -i localhost, example.yml -v </code></pre></div> <h5 dir="auto">EXPECTED RESULTS</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[foo] baz = simple value bar = line 1 line 2 line 3"><pre class="notranslate"><code class="notranslate">[foo] baz = simple value bar = line 1 line 2 line 3 </code></pre></div> <h5 dir="auto">ACTUAL RESULTS</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[foo] baz = simple value bar = line 1 line 2 line 3 line 2 line 3"><pre class="notranslate"><code class="notranslate">[foo] baz = simple value bar = line 1 line 2 line 3 line 2 line 3 </code></pre></div> <p dir="auto">Copied from original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="170944674" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible-modules-core/issues/4413" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible-modules-core/issues/4413/hovercard" href="https://github.com/ansible/ansible-modules-core/issues/4413">ansible/ansible-modules-core#4413</a></p>
0
<p dir="auto">It seems passing argument <code class="notranslate">allow_nan = False</code> to <code class="notranslate">flask.jsonify</code> will not actually turn <code class="notranslate">NaN</code>s into something else like <code class="notranslate">null</code> - e.g. <code class="notranslate">flask.jsonify({“a” : numpy.nan})</code> will produce <code class="notranslate">{“a” : NaN}</code></p>
<h3 dir="auto">Expected Behavior</h3> <p dir="auto">Should be able to run flask with FLASK_ENV=development or production</p> <h3 dir="auto">Actual Behavior</h3> <p dir="auto">I get the output</p> <ul dir="auto"> <li>Serving Flask app "simple" (lazy loading)</li> <li>Environment: production<br> WARNING: This is a development server. Do not use it in a production deployment.<br> Use a production WSGI server instead.</li> <li>Debug mode: on</li> <li>Restarting with stat<br> c:\users\Riprock\Projects\simple s&amp;r\venv\scripts\python.exe: No module named C:\Users\Riprock\Projects\Simple S&amp;R\venv\Scripts\flask</li> </ul> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>Python version: 3.7.4</li> <li>Flask version: 1.1.1</li> <li>Werkzeug version: 0.15.5</li> </ul> <p dir="auto">I can't seem to get a flask server running after updating to the latest version of Flask and python. Before the update my FLASK_ENV=development and FLASK_DEBUG=1. Then I updated and started to encounter the error. I tried rebuilding my venv and getting the same error.</p>
0
<p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/" rel="nofollow">http://kubernetes.io/docs/troubleshooting/</a>.): No</p> <p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.): canary, too many pods, pods dying, label selector</p> <hr> <p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one): BUG REPORT</p> <p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>): 1.2.0</p> <p dir="auto"><strong>Environment</strong>:</p> <ul dir="auto"> <li><strong>Cloud provider or hardware configuration</strong>: baremetal</li> <li><strong>OS</strong> (e.g. from /etc/os-release): CentOS Linux release 7.2.1511 (Core)</li> <li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>): 4.4.24-1</li> <li><strong>Install tools</strong>:</li> <li><strong>Others</strong>: flannel (0.5.3)</li> </ul> <p dir="auto"><strong>What happened</strong>:<br> I am trying to deploy a canary as described at <a href="http://kubernetes.io/docs/user-guide/managing-deployments/#canary-deployments" rel="nofollow">http://kubernetes.io/docs/user-guide/managing-deployments/#canary-deployments</a>. I have 2 deployments which are identical except for their names and # of replicas. Deployment A has replicas=6 and deployment B has replicas=1, both having the same app label. I have one service which includes both deployments via the label selector. I am able to launch deployment A and everything runs fine. However when I launch deployment B, I notice 3 pods are created for the deployment. Even more problematic is it seems the pods in deployment B are in a cycle of dying and being recreated. The interesting thing is, if I simply change the app label on deployment B and relaunch it, the correct number of replicas are created and the pod stays alive. But obviously that won't work for canarying.</p> <p dir="auto"><strong>What you expected to happen</strong>:<br> Canary deployment should honor number of replicas and be stable.</p> <p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):<br> Create 2 deployments that share the same app label and 1 service which selects for the app label. Launch first deployment and service. Launch second deployment and observe above.</p> <p dir="auto"><strong>Anything else do we need to know</strong>:<br> While looking at the kubelet logs to see why the pods might be dying I see things like below related to the pods going up and down.</p> <p dir="auto">Error running pod "server-canary-408865492-yf1g4_qa(d2c8e37c-9428-11e6-8c1b-90e2bac3873c)" container "configurator": runContainer: API error (404): {"message":"oci runtime error: container_linux.go:1215: running lstat on namespace path "/proc/28386/ns/ipc" caused "lstat /proc/28386/ns/ipc: no such file or directory""}</p> <p dir="auto">Error running pod "408865492-ifa0s_qa(d1727ff2-9428-11e6-8c1b-90e2bac3873c)" container "server": GenerateRunContainerOptions: impossible: cannot find the mounted volumes for pod "server-canary-408865492-ifa0s_qa(d1727ff2-9428-11e6-8c1b-90e2bac3873c)"</p> <p dir="auto">kubelet[17062]: , failed to "StartContainer" for "blah" with RunContainerError: "runContainer: API error (409): {"message":"cannot join network of a non running container: 947f639bbcccc5643a4812833bf5a9797bc36f6539c1677629c3ac9aa634f013"}\n"</p> <p dir="auto">pod_workers.go:138] Error syncing pod 3d082c94-942c-11e6-8c1b-90e2bac3873c, skipping: [failed to "StartContainer" for "server" with RunContainerError: "runContainer: API error (500): {"message":"oci runtime error: process_linux.go:245: running exec setns process for init caused \"exit status 1\""}\n"</p>
<p dir="auto"><a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gci-gce/458/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gci-gce/458/</a></p> <p dir="auto">Failed: [k8s.io] Downward API volume should update labels on modification [Conformance] {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/common/downwardapi_volume.go:113 Timed out after 65.000s. Expected &lt;string&gt;: content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; content of file &quot;/etc/labels&quot;: key1=&quot;value1&quot; key2=&quot;value2&quot; to contain substring &lt;string&gt;: key3=&quot;value3&quot; /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/common/downwardapi_volume.go:112"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/common/downwardapi_volume.go:113 Timed out after 65.000s. Expected &lt;string&gt;: content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" content of file "/etc/labels": key1="value1" key2="value2" to contain substring &lt;string&gt;: key3="value3" /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/common/downwardapi_volume.go:112 </code></pre></div> <p dir="auto">Previous issues for this test: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="163506515" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/28416" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/28416/hovercard" href="https://github.com/kubernetes/kubernetes/issues/28416">#28416</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="172263977" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/31055" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/31055/hovercard" href="https://github.com/kubernetes/kubernetes/issues/31055">#31055</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="179667260" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/33627" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/33627/hovercard" href="https://github.com/kubernetes/kubernetes/issues/33627">#33627</a></p>
0
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 10.0.18990.0 Windows Terminal version (if applicable): 0.5.2681.0 Any other software? WSL Ubuntu 18.04.3's bash."><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: 10.0.18990.0 Windows Terminal version (if applicable): 0.5.2681.0 Any other software? WSL Ubuntu 18.04.3's bash. </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <p dir="auto">With powershell tab open, open new Ubuntu tab<br> Close Ubuntu tab by pressing Ctrl+D<br> Press Ctrl+D in powershell followed by Enter</p> <h1 dir="auto">Expected behavior</h1> <p dir="auto">Error message of the likes of "The term ^D is not recognized as the name of a cmdlet, function, script file, or operable program."</p> <h1 dir="auto">Actual behavior</h1> <p dir="auto">A crash.</p>
<p dir="auto">I'm not sure if this is already a way to do this or not...</p> <p dir="auto">I have two long running python scripts that I run from Powershell. Instead of opening two PS Windows and then calling the the scripts manually, I created a batch file that spins up two instances of Powershell and calls the scripts on each:</p> <p dir="auto"><code class="notranslate">start powershell -noexit -executionpolicy remotesigned .\some_path\script.py -somearguments</code></p> <p dir="auto">I was wondering if there is a way to tell it to spin the Powershell windows inside the new Windows Terminal?</p>
0
<p dir="auto">Hopefully this is not a duplicate (couldn't find anything). Out of all the "less desirable" VS (and VS code as well) plugin behaviors I've found this to be the number one most disturbing:</p> <p dir="auto"><strong>TypeScript Version:</strong></p> <p dir="auto">1.8.7 (VS 2015 Community, Update 1)</p> <p dir="auto"><strong>Screenshots</strong><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/17719551/14063910/caa4cd04-f3f2-11e5-815f-7ae3aa215955.png"><img src="https://cloud.githubusercontent.com/assets/17719551/14063910/caa4cd04-f3f2-11e5-815f-7ae3aa215955.png" alt="clipboard02" style="max-width: 100%;"></a></p> <p dir="auto">And after fixing the return type (only changed <code class="notranslate">PromiseX.start&lt;void&gt;</code> to <code class="notranslate">PromiseX.start&lt;any&gt;</code>):<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/17719551/14063911/d13828e6-f3f2-11e5-9313-ffedf5750fc5.png"><img src="https://cloud.githubusercontent.com/assets/17719551/14063911/d13828e6-f3f2-11e5-9313-ffedf5750fc5.png" alt="clipboard03" style="max-width: 100%;"></a></p> <p dir="auto"><strong>Reduced test case</strong></p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function func(f: () =&gt; number) { } func(() =&gt; { let x = &quot;HI&quot;; // &lt;-- Whole line highlighted in red return x; // &lt;-- Whole line highlighted in red });"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">func</span><span class="pl-kos">(</span><span class="pl-s1">f</span>: <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-smi">number</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-kos">}</span> <span class="pl-en">func</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">let</span> <span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s">"HI"</span><span class="pl-kos">;</span> <span class="pl-c">// &lt;-- Whole line highlighted in red</span> <span class="pl-k">return</span> <span class="pl-s1">x</span><span class="pl-kos">;</span> <span class="pl-c">// &lt;-- Whole line highlighted in red</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">For comparison, when <code class="notranslate">function</code> is used instead, only the keyword "function" is highlighted:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function func(f: () =&gt; number) { } func(function() { // &lt;-- only the &quot;function&quot; keyword is highlighted in red let x = &quot;HI&quot;; return x; });"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">func</span><span class="pl-kos">(</span><span class="pl-s1">f</span>: <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-smi">number</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-kos">}</span> <span class="pl-en">func</span><span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-c">// &lt;-- only the "function" keyword is highlighted in red</span> <span class="pl-k">let</span> <span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s">"HI"</span><span class="pl-kos">;</span> <span class="pl-k">return</span> <span class="pl-s1">x</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto"><strong>Suggestion</strong></p> <p dir="auto">No need to highlight the whole function body in this case. Highlighting only the arrow (i.e. <code class="notranslate">=&gt;</code>) could also work (I tried to find a solution that would work with all variations of the arrow notation, e.g. including reduced notation like <code class="notranslate">val =&gt; val * 2</code>). This would be significantly less distracting and wouldn't mask other errors within the function scope.</p> <p dir="auto">On a more personal note, I would be super-thankful if this would be fixed! This happens very frequently when using callback or promise heavy code (I mean sometimes up to hundreds of times per day).</p>
<p dir="auto">As an example:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// Function 'F' takes function 'a' // and returns a new function which has exactly the same set of args as function 'a' interface F&lt;A extends Function&gt;{ (a:A):A; } // Is there a way to say: var Foo:F; // Or am I forced to do : var HigherOrderFunction: &lt;A extends Function&gt;(a:A)=&gt;A;"><pre class="notranslate"><span class="pl-c">// Function 'F' takes function 'a' </span> <span class="pl-c">// and returns a new function which has exactly the same set of args as function 'a'</span> <span class="pl-k">interface</span> <span class="pl-smi">F</span><span class="pl-c1">&lt;</span><span class="pl-smi">A</span> <span class="pl-k">extends</span> <span class="pl-smi">Function</span><span class="pl-c1">&gt;</span><span class="pl-kos">{</span> <span class="pl-kos">(</span><span class="pl-s1">a</span>:<span class="pl-smi">A</span><span class="pl-kos">)</span>:<span class="pl-smi">A</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-c">// Is there a way to say:</span> <span class="pl-k">var</span> <span class="pl-smi">Foo</span>:<span class="pl-smi">F</span><span class="pl-kos">;</span> <span class="pl-c">// Or am I forced to do : </span> <span class="pl-k">var</span> <span class="pl-smi">HigherOrderFunction</span>: <span class="pl-c1">&lt;</span><span class="pl-smi">A</span> <span class="pl-k">extends</span> <span class="pl-smi">Function</span><span class="pl-c1">&gt;</span><span class="pl-kos">(</span><span class="pl-s1">a</span>:<span class="pl-smi">A</span><span class="pl-kos">)</span><span class="pl-c1">=&gt;</span><span class="pl-smi">A</span><span class="pl-kos">;</span></pre></div> <p dir="auto">I don't think there is currently a way to say what I want to say beyond duplicating the interface definition inline.</p>
0
<p dir="auto">Would be neat if <code class="notranslate">$on</code> supported an array of events:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="bus.$on(['CLICK_BODY', 'KEYUP_ESCAPE'], () =&gt; { this.active = false })"><pre class="notranslate"><span class="pl-s1">bus</span><span class="pl-kos">.</span><span class="pl-en">$on</span><span class="pl-kos">(</span><span class="pl-kos">[</span><span class="pl-s">'CLICK_BODY'</span><span class="pl-kos">,</span> <span class="pl-s">'KEYUP_ESCAPE'</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">active</span> <span class="pl-c1">=</span> <span class="pl-c1">false</span> <span class="pl-kos">}</span><span class="pl-kos">)</span></pre></div> <p dir="auto">Without it we need duplication</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="bus.$on('CLICK_BODY', () =&gt; { this.active = false }) bus.$on('KEYUP_ESCAPE', () =&gt; { this.active = false }) // or bus.$on('CLICK_BODY', deactivate) bus.$on('KEYUP_ESCAPE', deactivate)"><pre class="notranslate"><span class="pl-s1">bus</span><span class="pl-kos">.</span><span class="pl-en">$on</span><span class="pl-kos">(</span><span class="pl-s">'CLICK_BODY'</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">active</span> <span class="pl-c1">=</span> <span class="pl-c1">false</span> <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-s1">bus</span><span class="pl-kos">.</span><span class="pl-en">$on</span><span class="pl-kos">(</span><span class="pl-s">'KEYUP_ESCAPE'</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">active</span> <span class="pl-c1">=</span> <span class="pl-c1">false</span> <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c">// or</span> <span class="pl-s1">bus</span><span class="pl-kos">.</span><span class="pl-en">$on</span><span class="pl-kos">(</span><span class="pl-s">'CLICK_BODY'</span><span class="pl-kos">,</span> <span class="pl-s1">deactivate</span><span class="pl-kos">)</span> <span class="pl-s1">bus</span><span class="pl-kos">.</span><span class="pl-en">$on</span><span class="pl-kos">(</span><span class="pl-s">'KEYUP_ESCAPE'</span><span class="pl-kos">,</span> <span class="pl-s1">deactivate</span><span class="pl-kos">)</span></pre></div>
<h3 dir="auto">Version</h3> <p dir="auto">2.5.13</p> <h3 dir="auto">Reproduction link</h3> <p dir="auto"><a href="https://jsfiddle.net/sohail85/d72g4jxt/" rel="nofollow">https://jsfiddle.net/sohail85/d72g4jxt/</a></p> <h3 dir="auto">Steps to reproduce</h3> <p dir="auto">Map collections are not reactive, even computed properties depending to Map collections does not changes when their dependency changed</p> <h3 dir="auto">What is expected?</h3> <p dir="auto">Map collection like other data structure should be reactive</p> <h3 dir="auto">What is actually happening?</h3> <p dir="auto">instance variable of type Map collection does not reflect its changes to UI</p>
0
<p dir="auto">Should the functions <a href="http://docs.scipy.org/doc/numpy/reference/generated/numpy.histogram2d.html" rel="nofollow"><code class="notranslate">histogram2d</code></a> and <a href="http://docs.scipy.org/doc/numpy/reference/generated/numpy.histogramdd.html" rel="nofollow"><code class="notranslate">histogramdd</code></a> have the keyword <code class="notranslate">density</code> added and <code class="notranslate">normed</code> deprecated, to match <a href="http://docs.scipy.org/doc/numpy/reference/generated/numpy.histogram.html" rel="nofollow"><code class="notranslate">histogram</code></a>?</p>
<p dir="auto">Sort order for <code class="notranslate">NaT</code> values got <a href="https://numpy.org/doc/stable/release/1.18.0-notes.html#nat-now-sorts-to-the-end-of-arrays" rel="nofollow">changed in numpy 1.18.0</a>.</p> <p dir="auto"><code class="notranslate">PyArray_CompareFunc</code> of dtype <code class="notranslate">datetime64</code> returns incorrect as per the updated sort order.</p> <p dir="auto">This is present with numpy 1.20.2 and 1.21 too.</p> <p dir="auto">This is reproducible via the following extension module.</p> <p dir="auto">compare_bug.c</p> <div class="highlight highlight-source-c notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="#include &lt;Python.h&gt; #include &quot;numpy/arrayobject.h&quot; #include &quot;numpy/ndarrayobject.h&quot; #include &quot;numpy/ndarraytypes.h&quot; #include &quot;numpy/arrayscalars.h&quot; #include &quot;numpy/ufuncobject.h&quot; static PyObject* reproduce_bug(PyObject* self, PyObject* args) { PyObject *arr = NULL; if (!PyArg_ParseTuple(args, &quot;|O&quot;, &amp;arr)) { return Py_None; } PyArrayObject *numpy_arr = (PyArrayObject*) arr; // We just compare 0th and 1st element and print out // the returned value. int x = numpy_arr-&gt;descr-&gt;f-&gt;compare( PyArray_GETPTR1(numpy_arr, 0), PyArray_GETPTR1(numpy_arr, 1), numpy_arr ); printf(&quot;DEBUG %d\n&quot;, x); return Py_None; } static PyMethodDef bug_functions[] = { {&quot;bug&quot;, (PyCFunction)reproduce_bug, METH_VARARGS, NULL}, { NULL, NULL, 0, NULL } }; static struct PyModuleDef numpybugmodule = { PyModuleDef_HEAD_INIT, &quot;numpy_bug&quot;, NULL, -1, bug_functions }; PyMODINIT_FUNC PyInit_numpy_bug(void) { return PyModule_Create(&amp;numpybugmodule); }"><pre class="notranslate"><span class="pl-k">#include</span> <span class="pl-s">&lt;Python.h&gt;</span> <span class="pl-k">#include</span> <span class="pl-s">"numpy/arrayobject.h"</span> <span class="pl-k">#include</span> <span class="pl-s">"numpy/ndarrayobject.h"</span> <span class="pl-k">#include</span> <span class="pl-s">"numpy/ndarraytypes.h"</span> <span class="pl-k">#include</span> <span class="pl-s">"numpy/arrayscalars.h"</span> <span class="pl-k">#include</span> <span class="pl-s">"numpy/ufuncobject.h"</span> <span class="pl-k">static</span> <span class="pl-smi">PyObject</span><span class="pl-c1">*</span> <span class="pl-en">reproduce_bug</span>(<span class="pl-smi">PyObject</span><span class="pl-c1">*</span> <span class="pl-s1">self</span>, <span class="pl-smi">PyObject</span><span class="pl-c1">*</span> <span class="pl-s1">args</span>) { <span class="pl-smi">PyObject</span> <span class="pl-c1">*</span><span class="pl-s1">arr</span> <span class="pl-c1">=</span> <span class="pl-c1">NULL</span>; <span class="pl-k">if</span> (!<span class="pl-en">PyArg_ParseTuple</span>(<span class="pl-s1">args</span>, <span class="pl-s">"|O"</span>, <span class="pl-c1">&amp;</span><span class="pl-s1">arr</span>)) { <span class="pl-k">return</span> <span class="pl-s1">Py_None</span>; } <span class="pl-smi">PyArrayObject</span> <span class="pl-c1">*</span><span class="pl-s1">numpy_arr</span> <span class="pl-c1">=</span> (<span class="pl-smi">PyArrayObject</span><span class="pl-c1">*</span>) <span class="pl-s1">arr</span>; <span class="pl-c">// We just compare 0th and 1st element and print out</span> <span class="pl-c">// the returned value.</span> <span class="pl-smi">int</span> <span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">numpy_arr</span><span class="pl-c1">-&gt;</span><span class="pl-c1">descr</span><span class="pl-c1">-&gt;</span><span class="pl-c1">f</span><span class="pl-c1">-&gt;</span><span class="pl-en">compare</span>( <span class="pl-en">PyArray_GETPTR1</span>(<span class="pl-s1">numpy_arr</span>, <span class="pl-c1">0</span>), <span class="pl-en">PyArray_GETPTR1</span>(<span class="pl-s1">numpy_arr</span>, <span class="pl-c1">1</span>), <span class="pl-s1">numpy_arr</span> ); <span class="pl-en">printf</span>(<span class="pl-s">"DEBUG %d\n"</span>, <span class="pl-s1">x</span>); <span class="pl-k">return</span> <span class="pl-s1">Py_None</span>; } <span class="pl-k">static</span> <span class="pl-smi">PyMethodDef</span> <span class="pl-s1">bug_functions</span>[] <span class="pl-c1">=</span> { {<span class="pl-s">"bug"</span>, (<span class="pl-smi">PyCFunction</span>)<span class="pl-s1">reproduce_bug</span>, <span class="pl-c1">METH_VARARGS</span>, <span class="pl-c1">NULL</span>}, { <span class="pl-c1">NULL</span>, <span class="pl-c1">NULL</span>, <span class="pl-c1">0</span>, <span class="pl-c1">NULL</span> } }; <span class="pl-k">static</span> <span class="pl-k">struct</span> <span class="pl-smi">PyModuleDef</span> <span class="pl-s1">numpybugmodule</span> <span class="pl-c1">=</span> { <span class="pl-s1">PyModuleDef_HEAD_INIT</span>, <span class="pl-s">"numpy_bug"</span>, <span class="pl-c1">NULL</span>, <span class="pl-c1">-1</span>, <span class="pl-s1">bug_functions</span> }; <span class="pl-smi">PyMODINIT_FUNC</span> <span class="pl-en">PyInit_numpy_bug</span>(<span class="pl-smi">void</span>) { <span class="pl-k">return</span> <span class="pl-en">PyModule_Create</span>(<span class="pl-c1">&amp;</span><span class="pl-s1">numpybugmodule</span>); }</pre></div> <p dir="auto">setup.py</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from distutils.core import setup, Extension, DEBUG import numpy extra_compile_args = [&quot;-DNDEBUG&quot;, &quot;-O3&quot;] sfc_module = Extension('numpy_bug', sources = ['compare_bug..c'], include_dirs=[numpy.get_include()], extra_compile_args=extra_compile_args) setup(name = 'mtnumpy', version = '1.0', description = 'Python Package with superfastcode C++ extension', ext_modules = [sfc_module] )"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">distutils</span>.<span class="pl-s1">core</span> <span class="pl-k">import</span> <span class="pl-s1">setup</span>, <span class="pl-v">Extension</span>, <span class="pl-v">DEBUG</span> <span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-s1">extra_compile_args</span> <span class="pl-c1">=</span> [<span class="pl-s">"-DNDEBUG"</span>, <span class="pl-s">"-O3"</span>] <span class="pl-s1">sfc_module</span> <span class="pl-c1">=</span> <span class="pl-v">Extension</span>(<span class="pl-s">'numpy_bug'</span>, <span class="pl-s1">sources</span> <span class="pl-c1">=</span> [<span class="pl-s">'compare_bug..c'</span>], <span class="pl-s1">include_dirs</span><span class="pl-c1">=</span>[<span class="pl-s1">numpy</span>.<span class="pl-en">get_include</span>()], <span class="pl-s1">extra_compile_args</span><span class="pl-c1">=</span><span class="pl-s1">extra_compile_args</span>) <span class="pl-en">setup</span>(<span class="pl-s1">name</span> <span class="pl-c1">=</span> <span class="pl-s">'mtnumpy'</span>, <span class="pl-s1">version</span> <span class="pl-c1">=</span> <span class="pl-s">'1.0'</span>, <span class="pl-s1">description</span> <span class="pl-c1">=</span> <span class="pl-s">'Python Package with superfastcode C++ extension'</span>, <span class="pl-s1">ext_modules</span> <span class="pl-c1">=</span> [<span class="pl-s1">sfc_module</span>] )</pre></div> <p dir="auto">Running this after installing above:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [1]: import numpy, numpy_bug In [2]: numpy_bug.bug(numpy.array(['NaT', '2020-01-01'], dtype='datetime64[s]')) # should print 1 as per new sort order. DEBUG -1"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">1</span>]: <span class="pl-s1">import</span> <span class="pl-s1">numpy</span>, <span class="pl-s1">numpy_bug</span> <span class="pl-v">In</span> [<span class="pl-c1">2</span>]: <span class="pl-s1">numpy_bug</span>.<span class="pl-en">bug</span>(<span class="pl-s1">numpy</span>.<span class="pl-en">array</span>([<span class="pl-s">'NaT'</span>, <span class="pl-s">'2020-01-01'</span>], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s">'datetime64[s]'</span>)) <span class="pl-c"># should print 1 as per new sort order.</span> <span class="pl-v">DEBUG</span> <span class="pl-c1">-</span><span class="pl-c1">1</span></pre></div>
0
<p dir="auto">Paste this snippet in the <a href="http://www.typescriptlang.org/Playground" rel="nofollow">playground</a>:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const result = [{ foo: 'hello' }] .map(({ foo }) =&gt; foo) .map(foo =&gt; foo);"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">result</span> <span class="pl-c1">=</span> <span class="pl-kos">[</span><span class="pl-kos">{</span> <span class="pl-c1">foo</span>: <span class="pl-s">'hello'</span> <span class="pl-kos">}</span><span class="pl-kos">]</span> <span class="pl-kos">.</span><span class="pl-en">map</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">{</span> foo <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-s1">foo</span><span class="pl-kos">)</span> <span class="pl-kos">.</span><span class="pl-en">map</span><span class="pl-kos">(</span><span class="pl-s1">foo</span> <span class="pl-c1">=&gt;</span> <span class="pl-s1">foo</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">If you hover over <code class="notranslate">foo</code> in the first <code class="notranslate">map()</code> call, you'll notice that its type is <code class="notranslate">any</code> (should be <code class="notranslate">string</code>).</p> <p dir="auto">The type of <code class="notranslate">result</code> is correctly inferred to be <code class="notranslate">string[]</code>, though. It just seems that there is no type information for destructured function parameters.</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class GenericClass&lt;T&gt; { payload: T; } var genericObject = new GenericClass&lt;{greeting: string}&gt;(); function genericFunction&lt;T&gt;(object: GenericClass&lt;T&gt;, callback: (payload: T) =&gt; void) { callback(object.payload); } // Works genericFunction(genericObject, (payload) =&gt; { // Here TS understands that payload have a property greeting // and that payload.greeting is a string. }); // Fails to compile with &quot;Type 'T' has no property 'greeting' and no index signature.&quot;. // Type of greeting is any genericFunction(genericObject, ({greeting}) =&gt; { });"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-smi">GenericClass</span><span class="pl-c1">&lt;</span><span class="pl-smi">T</span><span class="pl-c1">&gt;</span> <span class="pl-kos">{</span> <span class="pl-c1">payload</span>: <span class="pl-smi">T</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">var</span> <span class="pl-s1">genericObject</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-smi">GenericClass</span><span class="pl-kos">&lt;</span><span class="pl-kos">{</span><span class="pl-c1">greeting</span>: <span class="pl-smi">string</span><span class="pl-kos">}</span><span class="pl-kos">&gt;</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">function</span> <span class="pl-en">genericFunction</span><span class="pl-c1">&lt;</span><span class="pl-smi">T</span><span class="pl-c1">&gt;</span><span class="pl-kos">(</span><span class="pl-s1">object</span>: <span class="pl-smi">GenericClass</span><span class="pl-kos">&lt;</span><span class="pl-smi">T</span><span class="pl-kos">&gt;</span><span class="pl-kos">,</span> <span class="pl-s1">callback</span>: <span class="pl-kos">(</span><span class="pl-s1">payload</span>: <span class="pl-smi">T</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-smi"><span class="pl-k">void</span></span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-en">callback</span><span class="pl-kos">(</span><span class="pl-s1">object</span><span class="pl-kos">.</span><span class="pl-c1">payload</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-c">// Works</span> <span class="pl-en">genericFunction</span><span class="pl-kos">(</span><span class="pl-s1">genericObject</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-s1">payload</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-c">// Here TS understands that payload have a property greeting</span> <span class="pl-c">// and that payload.greeting is a string.</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Fails to compile with "Type 'T' has no property 'greeting' and no index signature.".</span> <span class="pl-c">// Type of greeting is any</span> <span class="pl-en">genericFunction</span><span class="pl-kos">(</span><span class="pl-s1">genericObject</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-kos">{</span>greeting<span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
1
<p dir="auto">Hello, I am trying to build a front end with web components using Materials UI as a UI library. I have the following <code class="notranslate">deps.tsx</code>:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import MatUI from &quot;https://jspm.dev/@material-ui/core@4.11.0&quot;; export {MatUI};"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-smi">MatUI</span> <span class="pl-k">from</span> <span class="pl-s">"https://jspm.dev/@material-ui/core@4.11.0"</span><span class="pl-kos">;</span> <span class="pl-k">export</span> <span class="pl-kos">{</span><span class="pl-smi">MatUI</span><span class="pl-kos">}</span><span class="pl-kos">;</span></pre></div> <p dir="auto"><code class="notranslate">tsconfig.json</code>:</p> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ &quot;compilerOptions&quot;: { &quot;experimentalDecorators&quot;: true, &quot;noImplicitAny&quot;: false, &quot;skipLibCheck&quot;: true, &quot;lib&quot;: [&quot;dom&quot;, &quot;esnext&quot;, &quot;deno.ns&quot;], &quot;plugins&quot;: [ { &quot;name&quot;: &quot;typescript-deno-plugin&quot;, &quot;enable&quot;: true } ], }, &quot;include&quot;: [ &quot;./src/**/*&quot; ] }"><pre class="notranslate">{ <span class="pl-ent">"compilerOptions"</span>: { <span class="pl-ent">"experimentalDecorators"</span>: <span class="pl-c1">true</span>, <span class="pl-ent">"noImplicitAny"</span>: <span class="pl-c1">false</span>, <span class="pl-ent">"skipLibCheck"</span>: <span class="pl-c1">true</span>, <span class="pl-ent">"lib"</span>: [<span class="pl-s"><span class="pl-pds">"</span>dom<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>esnext<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>deno.ns<span class="pl-pds">"</span></span>], <span class="pl-ent">"plugins"</span>: [ { <span class="pl-ent">"name"</span>: <span class="pl-s"><span class="pl-pds">"</span>typescript-deno-plugin<span class="pl-pds">"</span></span>, <span class="pl-ent">"enable"</span>: <span class="pl-c1">true</span> } ], }, <span class="pl-ent">"include"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>./src/**/*<span class="pl-pds">"</span></span> ] }</pre></div> <p dir="auto">and <code class="notranslate">app.ts</code>:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { MatUI } from &quot;../src/deps.tsx&quot; const { Button } = MatUI as any;"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-smi">MatUI</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"../src/deps.tsx"</span> <span class="pl-k">const</span> <span class="pl-kos">{</span> Button <span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-smi">MatUI</span> <span class="pl-k">as</span> <span class="pl-smi">any</span><span class="pl-kos">;</span></pre></div> <p dir="auto">I am getting many (7008) errors, but a common one looks like this:</p> <p dir="auto"><code class="notranslate">TS2441 [ERROR]: Duplicate identifier 'exports'. Compiler reserves name 'exports' in top level scope of a module. var exports = {}; ~~~~~~~ at https://jspm.dev/npm:tiny-warning@1.0.3!cjs:1:5</code></p> <p dir="auto">I am running <code class="notranslate">deno bundle src/app.ts --config tsconfig.json src/app.js</code>.</p> <p dir="auto">Does anyone know a way to configure out the name clashes?</p>
<p dir="auto">Receiving TS2531 [ERROR] when running the mjs/cjs after Deno 1.0.4.</p> <p dir="auto">save as "test.mjs"</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import { exp } from &quot;./test_mod.ts&quot;; if (false) null.func();"><pre class="notranslate"><code class="notranslate">import { exp } from "./test_mod.ts"; if (false) null.func(); </code></pre></div> <p dir="auto">save as "test_mod.ts"</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="export const exp = {};"><pre class="notranslate"><code class="notranslate">export const exp = {}; </code></pre></div> <p dir="auto">and run</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="% deno run test.mjs Compile file:/// ... /test.mjs error: TS2531 [ERROR]: Object is possibly 'null'. if (false) null.func(); ~~~~ at file:/// ... /test.mjs:2:12"><pre class="notranslate"><code class="notranslate">% deno run test.mjs Compile file:/// ... /test.mjs error: TS2531 [ERROR]: Object is possibly 'null'. if (false) null.func(); ~~~~ at file:/// ... /test.mjs:2:12 </code></pre></div> <p dir="auto">1.0.5 -- NG<br> 1.0.4 -- NG<br> 1.0.3 -- OK</p> <p dir="auto">without ts import -- OK<br> import mjs -- OK</p>
1
<p dir="auto">I have two textfields, both of them have a onChange func waiting to be called each time the func is called a validation occurs and if some error is found using setState update the <code class="notranslate">errorText</code> property where is need.</p> <p dir="auto">the problem is the webkit-autofil (on chrome) fills both fields the onChange event is trigger for the first one but not for the second one leaving the error on the second field and this last one have the focus</p> <p dir="auto">my business logic disable the submit button if there's errors. any advice how to sort this issue?</p>
<h3 dir="auto">Problem description</h3> <p dir="auto">First github issue - be gentle. <g-emoji class="g-emoji" alias="smile" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f604.png">😄</g-emoji></p> <p dir="auto">I may be doing this incorrectly.</p> <p dir="auto">I have a that opens a with a single &lt;TextArea&gt;. I look for an onKeyDown event == 13, then take the value of the textarea and send it off to space. When the dialog closes, however, there's a pulsing ripple on the Button that was clicked before the dialog opened. I can close it "manually" by looking at the event.keyCode==13, or use the built-ins "onEscapeKeyUp" or "onBackdropClick".</p><p dir="auto"></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/21341843/29738782-0f539530-89e2-11e7-9303-b5889688f59f.png"><img src="https://user-images.githubusercontent.com/21341843/29738782-0f539530-89e2-11e7-9303-b5889688f59f.png" alt="clipboard01" style="max-width: 100%;"></a></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/21341843/29738784-13d76bb8-89e2-11e7-98f7-d772ddce6084.png"><img src="https://user-images.githubusercontent.com/21341843/29738784-13d76bb8-89e2-11e7-98f7-d772ddce6084.png" alt="clipboard02" style="max-width: 100%;"></a></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/21341843/29738781-02d50f78-89e2-11e7-9402-4df4093b1c45.png"><img src="https://user-images.githubusercontent.com/21341843/29738781-02d50f78-89e2-11e7-9402-4df4093b1c45.png" alt="clipboard03" style="max-width: 100%;"></a></p> <h3 dir="auto">Steps to reproduce</h3> <ol dir="auto"> <li>Open a Dialog with setState in a handler from onTouchTap on a Button</li> <li>Do some dialog-y stuff.</li> <li>Close the dialog with setState in a handler from a variety of sources (onEscapeKeyUp; onBackgroupClick; onKeyDown in the TextField when event.keyCode==13, etc).</li> </ol> <p dir="auto">Relevant code:<br> <code class="notranslate">handleClose = () =&gt; { this.setState({ open: false }); };</code><br> <code class="notranslate">handleOpen = () =&gt; { this.setState({ open: true }); };</code><br> <code class="notranslate">...</code><br> <code class="notranslate">&lt;Dialog onEscapeKeyUp={this.handleClose} onBackdropClick={this.handleClose} open={this.state.open}&gt;</code><br> <code class="notranslate">...</code><br> <code class="notranslate">&lt;/Dialog&gt;</code><br> <code class="notranslate">...</code><br> <code class="notranslate">&lt;Button onClick={this.handleOpen}&gt;</code><br> <code class="notranslate">...</code><br> <code class="notranslate">&lt;/Button&gt;</code></p> <h3 dir="auto">Versions</h3> <ul dir="auto"> <li>Material-UI: beta 6</li> <li>React: 15.6.1</li> <li>Browser: Chrome Version 60.0.3112.113 (Official Build) (64-bit)</li> </ul><p></p>
0
<h3 dir="auto">Problem description</h3> <p dir="auto">Clicking a button to trigger a dialog and then using the 'esc' key to dismiss the dialog puts the button into an active ripple state. Noticed in my own code, was able to reproduce it on the dialog docs examples.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9599461/29236354-1fa574a8-7ecf-11e7-8759-6e542698c2fe.png"><img src="https://user-images.githubusercontent.com/9599461/29236354-1fa574a8-7ecf-11e7-8759-6e542698c2fe.png" alt="image" style="max-width: 100%;"></a></p> <h3 dir="auto">Steps to reproduce</h3> <p dir="auto">On <strong><a href="https://material-ui-1dab0.firebaseapp.com/component-demos/dialogs" rel="nofollow">https://material-ui-1dab0.firebaseapp.com/component-demos/dialogs</a></strong> click any of the buttons to bring up a dialog box.<br> Press the 'esc' key to dismiss the dialog.</p> <h3 dir="auto">Versions</h3> <ul dir="auto"> <li>Material-UI: 1.0.0-beta4</li> <li>React: 15.6.1</li> <li>Browser: Microsoft Edge 40.15063.0.0, Chrome 60.0.3112.90 (Official Build) (64-bit)</li> </ul>
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/mui-org/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">When using a Button to open a Dialog, when the Dialog is closed with either the escape key or clicking outside of it, the Button should look like it did before the click.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">When using a Button to open a dialog, when the Dialog is closed with the escape key, the button displays a ripple effect similar to if it was clicked. This does not happen when the dialog is closed by clicking outside of it.</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <ol dir="auto"> <li>Using <a href="https://codesandbox.io/s/m48ywqxnkp" rel="nofollow">https://codesandbox.io/s/m48ywqxnkp</a> from the documentation, click the <em>Open Simple Dialog</em> button</li> <li>When the Dialog appears, press escape to close the dialog</li> <li>The ripple effect is displayed in the button until something else is clicked</li> </ol> <p dir="auto">The alert dialog demo does not seem to have the same behavior: <a href="https://codesandbox.io/s/3vwx0l7kjq" rel="nofollow">https://codesandbox.io/s/3vwx0l7kjq</a></p> <h2 dir="auto">Context</h2> <p dir="auto">This does not impact usability, just an aesthetic issue.</p> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td>1.0.0-beta.41</td> </tr> <tr> <td>React</td> <td>16.3.1</td> </tr> <tr> <td>browser</td> <td>Chrome 65.0.3325.181, Firefox 59.0.2</td> </tr> <tr> <td>etc</td> <td></td> </tr> </tbody> </table>
1
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="#service.yml app.resource_upload_listener: class: AppBundle\EventListener\ResourceUploadListener arguments: ['@app.resource.service'] tags: - {name: doctrine.event_listener, event: prePersist} - {name: doctrine.event_listener, event: preUpdate}"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span>service.yml</span> <span class="pl-ent">app.resource_upload_listener</span>: <span class="pl-ent">class</span>: <span class="pl-s">AppBundle\EventListener\ResourceUploadListener</span> <span class="pl-ent">arguments</span>: <span class="pl-s">['@app.resource.service']</span> <span class="pl-ent">tags</span>: - <span class="pl-s">{name: doctrine.event_listener, event: prePersist}</span> - <span class="pl-s">{name: doctrine.event_listener, event: preUpdate}</span></pre></div> <div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="#listener private $uploader; public function __construct(ResourceService $uploader) { $this-&gt;uploader = $uploader; } public function prePersist(LifecycleEventArgs $args){ $entity = $args-&gt;getEntity(); $this-&gt;uploadFile($entity); } public function preUpdate(PreUpdateEventArgs $args) { $entity = $args-&gt;getEntity(); $this-&gt;uploadFile($entity); } private function uploadFile($entity) { $file = $entity-&gt;getBrochure(); if(!$file instanceof UploadedFile){ return; } $fileName = $this-&gt;uploader-&gt;upload($file); $entity-&gt;setBrochure($fileName); }"><pre class="notranslate"><span class="pl-c">#listener</span> <span class="pl-k">private</span> <span class="pl-s1"><span class="pl-c1">$</span>uploader</span>; <span class="pl-k">public</span> <span class="pl-k">function</span> <span class="pl-en">__construct</span>(<span class="pl-smi"><span class="pl-smi">ResourceService</span></span> <span class="pl-s1"><span class="pl-c1">$</span>uploader</span>) { <span class="pl-s1"><span class="pl-c1">$</span><span class="pl-smi">this</span></span>-&gt;<span class="pl-c1">uploader</span> = <span class="pl-s1"><span class="pl-c1">$</span>uploader</span>; } <span class="pl-k">public</span> <span class="pl-k">function</span> <span class="pl-en">prePersist</span>(<span class="pl-smi"><span class="pl-smi">LifecycleEventArgs</span></span> <span class="pl-s1"><span class="pl-c1">$</span>args</span>){ <span class="pl-s1"><span class="pl-c1">$</span>entity</span> = <span class="pl-s1"><span class="pl-c1">$</span>args</span>-&gt;<span class="pl-en">getEntity</span>(); <span class="pl-s1"><span class="pl-c1">$</span><span class="pl-smi">this</span></span>-&gt;<span class="pl-en">uploadFile</span>(<span class="pl-s1"><span class="pl-c1">$</span>entity</span>); } <span class="pl-k">public</span> <span class="pl-k">function</span> <span class="pl-en">preUpdate</span>(<span class="pl-smi"><span class="pl-smi">PreUpdateEventArgs</span></span> <span class="pl-s1"><span class="pl-c1">$</span>args</span>) { <span class="pl-s1"><span class="pl-c1">$</span>entity</span> = <span class="pl-s1"><span class="pl-c1">$</span>args</span>-&gt;<span class="pl-en">getEntity</span>(); <span class="pl-s1"><span class="pl-c1">$</span><span class="pl-smi">this</span></span>-&gt;<span class="pl-en">uploadFile</span>(<span class="pl-s1"><span class="pl-c1">$</span>entity</span>); } <span class="pl-k">private</span> <span class="pl-k">function</span> <span class="pl-en">uploadFile</span>(<span class="pl-s1"><span class="pl-c1">$</span>entity</span>) { <span class="pl-s1"><span class="pl-c1">$</span>file</span> = <span class="pl-s1"><span class="pl-c1">$</span>entity</span>-&gt;<span class="pl-en">getBrochure</span>(); <span class="pl-k">if</span>(!<span class="pl-s1"><span class="pl-c1">$</span>file</span> instanceof <span class="pl-v">UploadedFile</span>){ <span class="pl-k">return</span>; } <span class="pl-s1"><span class="pl-c1">$</span>fileName</span> = <span class="pl-s1"><span class="pl-c1">$</span><span class="pl-smi">this</span></span>-&gt;<span class="pl-c1">uploader</span>-&gt;<span class="pl-en">upload</span>(<span class="pl-s1"><span class="pl-c1">$</span>file</span>); <span class="pl-s1"><span class="pl-c1">$</span>entity</span>-&gt;<span class="pl-en">setBrochure</span>(<span class="pl-s1"><span class="pl-c1">$</span>fileName</span>); }</pre></div> <p dir="auto">I use the event listener to cooperate the upload file, But when start the web server , it thrown an error: Circular reference detected for service "doctrine.dbal.default_connection", path: "doctrine.dbal.default_connection".</p> <p dir="auto">Help</p>
<p dir="auto">Hello,<br> DoctrineBundle have made a change ir orm.xml (added lazy=true):</p> <div class="highlight highlight-text-xml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" &lt;service id=&quot;doctrine.orm.entity_manager.abstract&quot; class=&quot;%doctrine.orm.entity_manager.class%&quot; abstract=&quot;true&quot; lazy=&quot;true&quot; /&gt;"><pre class="notranslate"> &lt;<span class="pl-ent">service</span> <span class="pl-e">id</span>=<span class="pl-s"><span class="pl-pds">"</span>doctrine.orm.entity_manager.abstract<span class="pl-pds">"</span></span> <span class="pl-e">class</span>=<span class="pl-s"><span class="pl-pds">"</span>%doctrine.orm.entity_manager.class%<span class="pl-pds">"</span></span> <span class="pl-e">abstract</span>=<span class="pl-s"><span class="pl-pds">"</span>true<span class="pl-pds">"</span></span> <span class="pl-e">lazy</span>=<span class="pl-s"><span class="pl-pds">"</span>true<span class="pl-pds">"</span></span> /&gt;</pre></div> <p dir="auto">Now all my lazy services which are actually doctrine listeners stopped working (throws circular error).</p> <p dir="auto">After couple of hours of debugging I've found out a bug (hopefully) in <code class="notranslate">PhpDumper.php</code> <code class="notranslate">hasReference</code> method.</p> <p dir="auto">I've added a debugging echo lines in that method and saw these results:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="hasReference: (doctrine.dbal.default_connection) , visited: doctrine.orm.default_listeners.attach_entity_listeners -&gt; listener.event_logger -&gt; doctrine.orm.default_entity_manager -&gt; doctrine.orm.default_entity_manager.delegate (eq: false) Service: doctrine.orm.default_entity_manager.delegate (lazy), has arguments: [ doctrine.dbal.default_connection, def: Doctrine\ORM\Configuration ] hasReference: (doctrine.dbal.default_connection) , visited: doctrine.orm.default_listeners.attach_entity_listeners -&gt; listener.event_logger -&gt; doctrine.orm.default_entity_manager -&gt; doctrine.orm.default_entity_manager.delegate -&gt; doctrine.dbal.default_connection (eq: true)"><pre class="notranslate"><code class="notranslate">hasReference: (doctrine.dbal.default_connection) , visited: doctrine.orm.default_listeners.attach_entity_listeners -&gt; listener.event_logger -&gt; doctrine.orm.default_entity_manager -&gt; doctrine.orm.default_entity_manager.delegate (eq: false) Service: doctrine.orm.default_entity_manager.delegate (lazy), has arguments: [ doctrine.dbal.default_connection, def: Doctrine\ORM\Configuration ] hasReference: (doctrine.dbal.default_connection) , visited: doctrine.orm.default_listeners.attach_entity_listeners -&gt; listener.event_logger -&gt; doctrine.orm.default_entity_manager -&gt; doctrine.orm.default_entity_manager.delegate -&gt; doctrine.dbal.default_connection (eq: true) </code></pre></div> <p dir="auto">It looks like hasReference also recursively looking up a lazy services arguments for reference search,<br> I've thought, is that really logically? Because lazy services is lazy and are instantiated indirectly so more logically would be skip reference search in lazy service definitions, isn't it?</p> <p dir="auto">more information:<br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="167251361" data-permission-text="Title is private" data-url="https://github.com/doctrine/DoctrineBundle/issues/559" data-hovercard-type="pull_request" data-hovercard-url="/doctrine/DoctrineBundle/pull/559/hovercard?comment_id=241442703&amp;comment_type=issue_comment" href="https://github.com/doctrine/DoctrineBundle/pull/559#issuecomment-241442703">doctrine/DoctrineBundle#559 (comment)</a></p>
1
<h2 dir="auto"><g-emoji class="g-emoji" alias="rocket" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f680.png">🚀</g-emoji> Feature</h2> <p dir="auto">The MKLDNN is enabled by default for linux based packages (both pip and conda). However, on windows it is disabled by default and we are instructed to compile it from source code.<br> Is there any technical reason behind this, that made it disabled by default under windows and not linux? or is it just an unintentional bug?</p> <h2 dir="auto">Motivation</h2> <p dir="auto">MKLDNN has a profound affect on performance specially when used in CPU only mode. The inclusion of it by default in Windows based packages will then help a lot.<br> It may also be the reason behind the performance difference between the two platforms (Linux being much faster than its windows counter part)</p> <h2 dir="auto">Pitch</h2> <p dir="auto">Enable MKLDNN by default for pip/conda packages under Windows just like Linux</p>
<h2 dir="auto">Bug</h2> <p dir="auto">In MKLDNN cmake, MSVS build are disabled explicitly.<br> </p><div class="Box Box--condensed my-2"> <div class="Box-header f6"> <p class="mb-0 text-bold"> <a href="https://github.com/pytorch/pytorch/blob/12e0ed55b4327d41052651ddbae58506c5957ab8/cmake/Modules/FindMKLDNN.cmake#L16-L19">pytorch/cmake/Modules/FindMKLDNN.cmake</a> </p> <p class="mb-0 color-fg-muted"> Lines 16 to 19 in <a data-pjax="true" class="commit-tease-sha" href="/pytorch/pytorch/commit/12e0ed55b4327d41052651ddbae58506c5957ab8">12e0ed5</a> </p> </div> <div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data"> <table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip=""> <tbody><tr class="border-0"> <td id="L16" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="16"></td> <td id="LC16" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">IF</span>(MSVC) </td> </tr> <tr class="border-0"> <td id="L17" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="17"></td> <td id="LC17" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c1">MESSAGE</span>(STATUS <span class="pl-s">"MKL-DNN needs omp 3+ which is not supported in MSVC so far"</span>) </td> </tr> <tr class="border-0"> <td id="L18" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="18"></td> <td id="LC18" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">RETURN</span>() </td> </tr> <tr class="border-0"> <td id="L19" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="19"></td> <td id="LC19" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">ENDIF</span>(MSVC) </td> </tr> </tbody></table> </div> </div> <p></p> <p dir="auto">I think this is no longer the case as we can build mkldnn directly with Visual Studio 2017 and MKLDNN's official cmake doesn't complain about that<br> <a href="https://github.com/intel/mkl-dnn/blob/4bdffc2cb1c3d47df9604d35d2c7e5e47a13f1a6/cmake/OpenMP.cmake#L78-L81">https://github.com/intel/mkl-dnn/blob/4bdffc2cb1c3d47df9604d35d2c7e5e47a13f1a6/cmake/OpenMP.cmake#L78-L81</a></p> <p dir="auto">But, after commenting out the <code class="notranslate">RETURN()</code>, the issue I'm encountering is about ideep.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="pytorch\third_party\ideep\include\ideep\allocators.hpp(151): error C2039: 'posix_memalign': is not a member of '`global namespace'' pytorch\third_party\ideep\include\ideep\allocators.hpp(151): error C3861: 'posix_memalign': identifier not found"><pre class="notranslate"><code class="notranslate">pytorch\third_party\ideep\include\ideep\allocators.hpp(151): error C2039: 'posix_memalign': is not a member of '`global namespace'' pytorch\third_party\ideep\include\ideep\allocators.hpp(151): error C3861: 'posix_memalign': identifier not found </code></pre></div> <h2 dir="auto">Environment</h2> <ul dir="auto"> <li>PyTorch Version (e.g., 1.0): master</li> <li>OS (e.g., Linux): Win10</li> <li>How you installed PyTorch (<code class="notranslate">conda</code>, <code class="notranslate">pip</code>, source): source</li> <li>Build command you used (if compiling from source): cmake + ninja</li> <li>Python version: 3.7.2</li> <li>CUDA/cuDNN version: 10.0/7</li> <li>GPU models and configuration: 1080Ti</li> </ul>
1
<h3 dir="auto">Preflight Checklist</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://www.github.com/electron/electron/issues">issue tracker</a> for a feature request that matches the one I want to file, without success.</li> </ul> <h3 dir="auto">Electron Version</h3> <p dir="auto">12.0.9</p> <h3 dir="auto">What operating system are you using?</h3> <p dir="auto">Ubuntu</p> <h3 dir="auto">Operating System Version</h3> <p dir="auto">20.04</p> <h3 dir="auto">What arch are you using?</h3> <p dir="auto">x64</p> <h3 dir="auto">Last Known Working Electron version</h3> <ul dir="auto"> <li></li> </ul> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">Exit status of a process when killed by a signal should <em>not</em> be 0, example:<br> (sleep 5 ; killall nodejs ) &amp; nodejs ; echo exitstatus: $?<br> [1]+ Done ( sleep 5; killall nodejs )<br> Terminated<br> exitstatus: 143</p> <h3 dir="auto">Actual Behavior</h3> <p dir="auto">Exit status of many Electron versions when killed by a signal should is erroneously 0, example:<br> (sleep 5 ; killall electron ) &amp; node_modules/electron/dist/electron ; echo exitstatus: $?<br> [1]+ Done ( sleep 5; killall electron )<br> exitstatus: 0</p> <h3 dir="auto">Testcase Gist URL</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Additional Information</h3> <p dir="auto">I disagree with the following statement:<br> "I agree to follow the Code of Conduct that this project adheres to. *"<br> IMHO, forcing bug reporters to click this is discriminatory and unrealistic to abide to by non-lawyers.</p> <p dir="auto">I disagree with the following statement:<br> "I have searched the issue tracker for a feature request that matches the one I want to file, without success. *"<br> IMHO, forcing bug reporters to click this is counterproductive, issues can provide valuable information even if searches have not been performed or duplicate exists.</p> <p dir="auto">There is a previous issues for this bug report here, but it's closed: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="477380433" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/19650" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/19650/hovercard" href="https://github.com/electron/electron/issues/19650">#19650</a></p>
<h3 dir="auto">Preflight Checklist</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/main/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://www.github.com/electron/electron/issues">issue tracker</a> for a feature request that matches the one I want to file, without success.</li> </ul> <h3 dir="auto">Electron Version</h3> <p dir="auto">15.3.1</p> <h3 dir="auto">What operating system are you using?</h3> <p dir="auto">Windows</p> <h3 dir="auto">Operating System Version</h3> <p dir="auto">window 10</p> <h3 dir="auto">What arch are you using?</h3> <p dir="auto">x64</p> <h3 dir="auto">Last Known Working Electron version</h3> <p dir="auto">none</p> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">5 pages in total, print with <code class="notranslate">pageRanges: [{from: 0, to: 2}]</code>, print first three pages.</p> <h3 dir="auto">Actual Behavior</h3> <p dir="auto">it won't do print task. if i select Microsft Pdf Printer, the pdf file created is broken, can't be opend.<br> if i remove the pageRanges key from options, it works.</p> <h3 dir="auto">Testcase Gist URL</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Additional Information</h3> <p dir="auto"><em>No response</em></p>
0
<p dir="auto">Hi all,</p> <p dir="auto">while writing examples for <a href="http://grow3.zyxxy.de" rel="nofollow">grow3.js</a>, I found out that adding objects gets increasingly slower with more objects already in the scene. It gets apparent at &gt;&gt;10k objects in a scene.</p> <p dir="auto">I tracked down the problem to <a href="https://github.com/mrdoob/three.js/blob/master/src/scenes/Scene.js#L43">this line in Scene.js</a>:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="if ( this.__objects.indexOf( object ) === - 1 ) {"><pre class="notranslate"><code class="notranslate">if ( this.__objects.indexOf( object ) === - 1 ) { </code></pre></div> <p dir="auto">Usually objects you try to add to a scene aren't already in it, so the <code class="notranslate">indexOf()</code> statement searches through the whole array every time an object is added to the scene. This means a <strong>quadratic</strong> increase in computation time depending on the overall number of objects n.</p> <p dir="auto"><code class="notranslate">Scene.__objects</code> seems to be used to prevent duplicate objects ending in <code class="notranslate">__objectAdded</code>. I'm not sure if this somewhat defensive code is needed - the objects aren't prevented to be added to the scene hierarchy anyway.</p> <p dir="auto">So my proposal would be to just remove the __objects array. I did this <a href="https://github.com/filgf/three.js/blob/dev/src/scenes/Scene.js">here</a>. three.js examples seem to still work fine, performance while building scenes with many objects increases dramatically.</p> <p dir="auto">An alternative might be to have some flag to explicitly disable dupes-checking at runtime.</p> <p dir="auto">Finally some vague measurements (with my oldish Macbook) based on the <a href="https://github.com/mrdoob/three.js/blob/master/examples/webgl_performance.html">webgl_performance.html</a> example, by changing the number of objects (numbers = ms for initializing the scene):<br> 500 nodes: 200ms (no __objects: 95ms)<br> 20000 nodes: 1707ms (no __objects: 577ms)<br> 40000 nodes: 7000ms (no __objects: 744ms)</p> <p dir="auto">If maintainers agree, I'd issue a pull request. Just didn't want to rush in, as this seems to apply to the very core of three.js...</p> <p dir="auto">Cheers!</p>
<h5 dir="auto">Summary of feature request</h5> <p dir="auto"><code class="notranslate">.addScaledVector</code> but instead of <em>adding</em> a <em>scaled</em> <em>vector</em>, <em>merging</em> a <em>transformed</em> <em>BufferGeometry</em></p> <h5 dir="auto">Description of feature request</h5> <p dir="auto">For optimization purposes, I want to render a single buffer geometry instead of rendering each object in my scene separately</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const geometry = THREE.BufferGeometryUtils.mergeBufferGeometries(this.children.map(child =&gt; child.geometry.clone().applyMatrix4(child.matrix) // The issue )); this.add(new THREE.Mesh(geometry, this.children[0].material)); for (const child of this.children) { child.visible = false; }"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">geometry</span> <span class="pl-c1">=</span> <span class="pl-c1">THREE</span><span class="pl-kos">.</span><span class="pl-c1">BufferGeometryUtils</span><span class="pl-kos">.</span><span class="pl-en">mergeBufferGeometries</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">children</span><span class="pl-kos">.</span><span class="pl-en">map</span><span class="pl-kos">(</span><span class="pl-s1">child</span> <span class="pl-c1">=&gt;</span> <span class="pl-s1">child</span><span class="pl-kos">.</span><span class="pl-c1">geometry</span><span class="pl-kos">.</span><span class="pl-en">clone</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">applyMatrix4</span><span class="pl-kos">(</span><span class="pl-s1">child</span><span class="pl-kos">.</span><span class="pl-c1">matrix</span><span class="pl-kos">)</span> <span class="pl-c">// The issue</span> <span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">add</span><span class="pl-kos">(</span><span class="pl-k">new</span> <span class="pl-c1">THREE</span><span class="pl-kos">.</span><span class="pl-c1">Mesh</span><span class="pl-kos">(</span><span class="pl-s1">geometry</span><span class="pl-kos">,</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">children</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-c1">material</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">for</span> <span class="pl-kos">(</span><span class="pl-k">const</span> <span class="pl-s1">child</span> <span class="pl-k">of</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">children</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-s1">child</span><span class="pl-kos">.</span><span class="pl-c1">visible</span> <span class="pl-c1">=</span> <span class="pl-c1">false</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">(simplified code, not tested but should convey my point)</p> <p dir="auto">Unfortunately, the existing buffer geometry merge methods don't support transforming each merged vertex by a custom matrix. That means I have to clone each child's geometry and apply the matrix to the entire clone at once.</p> <p dir="auto">This is a waste of memory, and could be avoided with</p> <ul dir="auto"> <li><code class="notranslate">BufferGeometry.merge(bufferGeometry, optionalMatrix)</code></li> <li><code class="notranslate">BufferGeometryUtils.mergeBufferGeometries(bufferGeometries, optionalMatrices)</code></li> </ul> <p dir="auto">The 2nd option is slightly more awkward but is preferred because BufferGeometryUtils is lossless (doesn't require manual index argument)</p> <p dir="auto">If a matrix is passed in, each vertex being merged in should have it applied.</p> <p dir="auto">Note: I know I could get around this by pre-applyMatrix4-ing all my objects' geometries, but I don't want to do that...I want them to share a single, applyMatrix4'd buffer geometry instance.</p> <p dir="auto">Note 2: For my use case, each child's BufferGeometry is the same. A solution specific to my case is :</p> <ul dir="auto"> <li><code class="notranslate">BufferGeometryUtils.stamp(bufferGeometry, matrices)</code></li> </ul> <p dir="auto">Which would take a single geometry and stamp it at multiple locations/rotations/scales defined by each matrix.</p> <h5 dir="auto">Three.js version</h5> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Dev</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> r114</li> </ul>
0
<p dir="auto">after upgrading to 0.10.1 code has often no responding very easily.</p>
<p dir="auto">Sometimes editor just freeze. Kill task helps only. Have this problem at work and home.<br> I noticed that this started after latest update (0.10.1).</p> <p dir="auto">Working in PHP files.</p> <p dir="auto">Windows 10 64.</p>
1
<p dir="auto">Or just use LLVM to do this (if it has a mode that hash-conses to avoid duplicate constants). As per FIXME in <code class="notranslate">trans::base::trans_const_expr</code>.</p>
<p dir="auto">After examination, it doesn't appear that deriving raw pointers presents any kind of safety problem (no derivings dereference unsafe pointers). Most people seem to believe that the original justification presented in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="29818209" data-permission-text="Title is private" data-url="https://github.com/rust-lang/rust/issues/13032" data-hovercard-type="issue" data-hovercard-url="/rust-lang/rust/issues/13032/hovercard" href="https://github.com/rust-lang/rust/issues/13032">#13032</a> isn't sufficient.</p>
0
<p dir="auto">The Link and Title for this Exercise Is Missing on the Map page in the Basic Algorithm Scripting section. Missing title n link for an exercise on Map page, Basic Algorithm Scripting section.<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1571403/22378151/34900a9a-e4e7-11e6-91bc-e13da1374ee8.png"><img src="https://cloud.githubusercontent.com/assets/1571403/22378151/34900a9a-e4e7-11e6-91bc-e13da1374ee8.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">Issue On URL (Map page, Basic Algorithm Scripting section):<br> <a href="https://beta.freecodecamp.com/en/map" rel="nofollow">https://beta.freecodecamp.com/en/map</a></p> <h4 dir="auto">Challenge Name</h4> <h4 dir="auto">Issue Description</h4> <h4 dir="auto">Browser Information</h4> <ul dir="auto"> <li>Browser Name, Version:</li> <li>Operating System:</li> <li>Mobile, Desktop, or Tablet:</li> </ul> <h4 dir="auto">Your Code</h4> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" "><pre class="notranslate"> </pre></div> <h4 dir="auto">Screenshot</h4>
<h4 dir="auto">Challenge Name</h4> <p dir="auto"><a href="https://www.freecodecamp.com/challenges/manage-packages-with-npm" rel="nofollow">https://www.freecodecamp.com/challenges/manage-packages-with-npm</a></p> <h4 dir="auto">Issue Description</h4> <p dir="auto">After running how-to-npm and selecting option 7, 'package niceties' I am given the following instructions:</p> <p dir="auto">So, we've created a package.json file, but it's missing a few things<br> that people usually expect. If you type <code class="notranslate">npm install</code>, you'll see<br> something like this:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="npm WARN package.json project1@1.0.0 No description npm WARN package.json project1@1.0.0 No repository field. npm WARN package.json project1@1.0.0 No README data"><pre class="notranslate"><code class="notranslate">npm WARN package.json project1@1.0.0 No description npm WARN package.json project1@1.0.0 No repository field. npm WARN package.json project1@1.0.0 No README data </code></pre></div> <p dir="auto">Before we can share this work of art with the world, we need to make<br> it a bit more polished so that people know how to use it.</p> <p dir="auto">First, create a README.md file, with a bit of words in it.<em>---- There is already a file by this name. Do we create a duplicate(this isn't allowed without deleting or renaming the existing file) or edit this file?</em></p> <p dir="auto">Then, add a "repository" field in your package.json file, with a url<br> where people can access the code.---- <em>Where and how do I add the "repository" field? I have no prior education or training in backend development, so I don't even know where to begin. Also, what URL would we be using? This information is needed to complete the challenge, but it not included.</em></p> <h4 dir="auto">Browser Information</h4> <p dir="auto">C9 workspace</p>
0
<p dir="auto">If I use a <code class="notranslate">Navigator</code> as a child of a <code class="notranslate">TabBarView</code>, and that <code class="notranslate">Navigator</code> uses a <code class="notranslate">GlobalKey</code>, then there is a situation where <code class="notranslate">Element.updateChild</code> is called, and this causes a spurious assert that</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Multiple widgets used the same GlobalKey&quot;."><pre class="notranslate"><code class="notranslate">Multiple widgets used the same GlobalKey". </code></pre></div> <p dir="auto">Here is some code that demonstrates the problem. Run the following app, and after it starts up, hit tab "C" to see the error.</p> <div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import 'package:flutter/material.dart'; void main() =&gt; runApp(MyApp()); class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( primarySwatch: Colors.blue, ), home: MyHomePage(title: 'Flutter Demo Home Page'), ); } } class MyHomePage extends StatefulWidget { MyHomePage({Key key, this.title}) : super(key: key); final String title; @override _MyHomePageState createState() =&gt; _MyHomePageState(); } class _MyHomePageState extends State&lt;MyHomePage&gt; { GlobalKey globalKeyA = GlobalKey(debugLabel: 'A'); @override Widget build(BuildContext context) { return SafeArea( child: DefaultTabController( length: 3, child: Scaffold( appBar: AppBar( title: Text(widget.title), ), body: TabBarView( children: [ Navigator( key: globalKeyA, onGenerateRoute: (_) =&gt; MaterialPageRoute( settings: RouteSettings( isInitialRoute: true ), builder: (context) =&gt; Text('Page A'), ) ), Text('Page B'), Text('Page C'), ] ), bottomNavigationBar: TabBar( labelColor: Colors.black, tabs: [ Tab(text: 'A'), Tab(text: 'B'), Tab(text: 'C') ] ), ) ) ); } }"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s">'package:flutter/material.dart'</span>; <span class="pl-k">void</span> <span class="pl-en">main</span>() <span class="pl-k">=&gt;</span> <span class="pl-en">runApp</span>(<span class="pl-c1">MyApp</span>()); <span class="pl-k">class</span> <span class="pl-c1">MyApp</span> <span class="pl-k">extends</span> <span class="pl-c1">StatelessWidget</span> { <span class="pl-c">// This widget is the root of your application.</span> <span class="pl-k">@override</span> <span class="pl-c1">Widget</span> <span class="pl-en">build</span>(<span class="pl-c1">BuildContext</span> context) { <span class="pl-k">return</span> <span class="pl-c1">MaterialApp</span>( title<span class="pl-k">:</span> <span class="pl-s">'Flutter Demo'</span>, theme<span class="pl-k">:</span> <span class="pl-c1">ThemeData</span>( primarySwatch<span class="pl-k">:</span> <span class="pl-c1">Colors</span>.blue, ), home<span class="pl-k">:</span> <span class="pl-c1">MyHomePage</span>(title<span class="pl-k">:</span> <span class="pl-s">'Flutter Demo Home Page'</span>), ); } } <span class="pl-k">class</span> <span class="pl-c1">MyHomePage</span> <span class="pl-k">extends</span> <span class="pl-c1">StatefulWidget</span> { <span class="pl-c1">MyHomePage</span>({<span class="pl-c1">Key</span> key, <span class="pl-c1">this</span>.title}) <span class="pl-k">:</span> <span class="pl-c1">super</span>(key<span class="pl-k">:</span> key); <span class="pl-k">final</span> <span class="pl-c1">String</span> title; <span class="pl-k">@override</span> <span class="pl-c1">_MyHomePageState</span> <span class="pl-en">createState</span>() <span class="pl-k">=&gt;</span> <span class="pl-c1">_MyHomePageState</span>(); } <span class="pl-k">class</span> <span class="pl-c1">_MyHomePageState</span> <span class="pl-k">extends</span> <span class="pl-c1">State</span>&lt;<span class="pl-c1">MyHomePage</span>&gt; { <span class="pl-c1">GlobalKey</span> globalKeyA <span class="pl-k">=</span> <span class="pl-c1">GlobalKey</span>(debugLabel<span class="pl-k">:</span> <span class="pl-s">'A'</span>); <span class="pl-k">@override</span> <span class="pl-c1">Widget</span> <span class="pl-en">build</span>(<span class="pl-c1">BuildContext</span> context) { <span class="pl-k">return</span> <span class="pl-c1">SafeArea</span>( child<span class="pl-k">:</span> <span class="pl-c1">DefaultTabController</span>( length<span class="pl-k">:</span> <span class="pl-c1">3</span>, child<span class="pl-k">:</span> <span class="pl-c1">Scaffold</span>( appBar<span class="pl-k">:</span> <span class="pl-c1">AppBar</span>( title<span class="pl-k">:</span> <span class="pl-c1">Text</span>(widget.title), ), body<span class="pl-k">:</span> <span class="pl-c1">TabBarView</span>( children<span class="pl-k">:</span> [ <span class="pl-c1">Navigator</span>( key<span class="pl-k">:</span> globalKeyA, onGenerateRoute<span class="pl-k">:</span> (_) <span class="pl-k">=&gt;</span> <span class="pl-c1">MaterialPageRoute</span>( settings<span class="pl-k">:</span> <span class="pl-c1">RouteSettings</span>( isInitialRoute<span class="pl-k">:</span> <span class="pl-c1">true</span> ), builder<span class="pl-k">:</span> (context) <span class="pl-k">=&gt;</span> <span class="pl-c1">Text</span>(<span class="pl-s">'Page A'</span>), ) ), <span class="pl-c1">Text</span>(<span class="pl-s">'Page B'</span>), <span class="pl-c1">Text</span>(<span class="pl-s">'Page C'</span>), ] ), bottomNavigationBar<span class="pl-k">:</span> <span class="pl-c1">TabBar</span>( labelColor<span class="pl-k">:</span> <span class="pl-c1">Colors</span>.black, tabs<span class="pl-k">:</span> [ <span class="pl-c1">Tab</span>(text<span class="pl-k">:</span> <span class="pl-s">'A'</span>), <span class="pl-c1">Tab</span>(text<span class="pl-k">:</span> <span class="pl-s">'B'</span>), <span class="pl-c1">Tab</span>(text<span class="pl-k">:</span> <span class="pl-s">'C'</span>) ] ), ) ) ); } }</pre></div> <p dir="auto">The error is:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="flutter: #2 Element.updateChild.&lt;anonymous closure&gt; (package:flutter/src/widgets/framework.dart:2724:13) flutter: #3 Element.updateChild (package:flutter/src/widgets/framework.dart:2727:6) flutter: #4 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4838:14) flutter: #5 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2950:14) flutter: #6 Element.updateChild (package:flutter/src/widgets/framework.dart:2753:12) flutter: #7 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4838:14) (etc...)"><pre class="notranslate"><code class="notranslate">flutter: #2 Element.updateChild.&lt;anonymous closure&gt; (package:flutter/src/widgets/framework.dart:2724:13) flutter: #3 Element.updateChild (package:flutter/src/widgets/framework.dart:2727:6) flutter: #4 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4838:14) flutter: #5 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2950:14) flutter: #6 Element.updateChild (package:flutter/src/widgets/framework.dart:2753:12) flutter: #7 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4838:14) (etc...) </code></pre></div> <p dir="auto">The problem is that in <code class="notranslate">Element.updateChild</code>, the code checks that a <code class="notranslate">GlobalKey</code> is not being reused by a different widget. But this check occurs before the old child widget has had a chance to be deactivated, so it is unsurprising that the <code class="notranslate">GlobalKey</code> appears to be used twice.</p> <p dir="auto">This will always happen when an Element that uses a <code class="notranslate">GlobalKey</code> has updateChild called.</p> <p dir="auto">The fix would be to move the assertion that checks that the <code class="notranslate">GlobalKey</code> is not reused to be later in the <code class="notranslate">updateChild</code> method, after the original has been deactivated.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="--- a/packages/flutter/lib/src/widgets/framework.dart +++ b/packages/flutter/lib/src/widgets/framework.dart @@ -2705,18 +2705,12 @@ abstract class Element extends DiagnosticableTree implements BuildContext { /// | **child != null** | Old child is removed, returns null. | Old child updated if possible, returns child or new [Element]. | @protected Element updateChild(Element child, Widget newWidget, dynamic newSlot) { - assert(() { - if (newWidget != null &amp;&amp; newWidget.key is GlobalKey) { - final GlobalKey key = newWidget.key; - key._debugReserveFor(this); - } - return true; - }()); if (newWidget == null) { if (child != null) deactivateChild(child); return null; } + if (child != null) { if (child.widget == newWidget) { if (child.slot != newSlot) @@ -2737,6 +2731,13 @@ abstract class Element extends DiagnosticableTree implements BuildContext { deactivateChild(child); assert(child._parent == null); } + assert(() { + if (newWidget.key is GlobalKey) { + final GlobalKey key = newWidget.key; + key._debugReserveFor(this); + } + return true; + }()); return inflateWidget(newWidget, newSlot); }"><pre class="notranslate"><code class="notranslate">--- a/packages/flutter/lib/src/widgets/framework.dart +++ b/packages/flutter/lib/src/widgets/framework.dart @@ -2705,18 +2705,12 @@ abstract class Element extends DiagnosticableTree implements BuildContext { /// | **child != null** | Old child is removed, returns null. | Old child updated if possible, returns child or new [Element]. | @protected Element updateChild(Element child, Widget newWidget, dynamic newSlot) { - assert(() { - if (newWidget != null &amp;&amp; newWidget.key is GlobalKey) { - final GlobalKey key = newWidget.key; - key._debugReserveFor(this); - } - return true; - }()); if (newWidget == null) { if (child != null) deactivateChild(child); return null; } + if (child != null) { if (child.widget == newWidget) { if (child.slot != newSlot) @@ -2737,6 +2731,13 @@ abstract class Element extends DiagnosticableTree implements BuildContext { deactivateChild(child); assert(child._parent == null); } + assert(() { + if (newWidget.key is GlobalKey) { + final GlobalKey key = newWidget.key; + key._debugReserveFor(this); + } + return true; + }()); return inflateWidget(newWidget, newSlot); } </code></pre></div> <p dir="auto">It's okay to move the assert to the end, because it cannot possibly trigger on the other code paths.<br> Either newWidget == null, so it can't have a GlobalKey anyway. Or child.widget == newWidget so the GlobalKey is already being used by the child. Or (see code below), Widget.canUpdate(child.widget, newWidget) is true, which means that child.widget.key == newWidget.key, according to the rules of being allowed to replace a widget.</p> <div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" if (Widget.canUpdate(child.widget, newWidget)) { if (child.slot != newSlot) updateSlotForChild(child, newSlot); child.update(newWidget); assert(child.widget == newWidget); assert(() { child.owner._debugElementWasRebuilt(child); return true; }()); return child; }"><pre class="notranslate"> <span class="pl-k">if</span> (<span class="pl-c1">Widget</span>.<span class="pl-en">canUpdate</span>(child.widget, newWidget)) { <span class="pl-k">if</span> (child.slot <span class="pl-k">!=</span> newSlot) <span class="pl-en">updateSlotForChild</span>(child, newSlot); child.<span class="pl-en">update</span>(newWidget); <span class="pl-k">assert</span>(child.widget <span class="pl-k">==</span> newWidget); <span class="pl-k">assert</span>(() { child.owner.<span class="pl-en">_debugElementWasRebuilt</span>(child); <span class="pl-k">return</span> <span class="pl-c1">true</span>; }()); <span class="pl-k">return</span> child; }</pre></div> <p dir="auto">Therefore, the only place that needs to have the assert to check we're not using a GlobalKey more than once, is near the end of this method.</p> <p dir="auto">See also:</p> <p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="314771757" data-permission-text="Title is private" data-url="https://github.com/flutter/flutter/issues/16630" data-hovercard-type="issue" data-hovercard-url="/flutter/flutter/issues/16630/hovercard" href="https://github.com/flutter/flutter/issues/16630">#16630</a><br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="358514166" data-permission-text="Title is private" data-url="https://github.com/flutter/flutter/issues/21630" data-hovercard-type="issue" data-hovercard-url="/flutter/flutter/issues/21630/hovercard" href="https://github.com/flutter/flutter/issues/21630">#21630</a><br> <a href="https://stackoverflow.com/questions/49862572/multiple-widgets-used-the-same-globalkey?rq=1" rel="nofollow">https://stackoverflow.com/questions/49862572/multiple-widgets-used-the-same-globalkey?rq=1</a></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ flutter doctor -v [✓] Flutter (Channel master, v0.11.10-pre.2, on Mac OS X 10.13.6 17G3025, locale en-GB) • Flutter version 0.11.10-pre.2 at /Users/steve/code/flutter • Framework revision b55e52c6f7 (18 hours ago), 2018-11-21 15:48:23 -0500 • Engine revision 1e37b99ac0 • Dart version 2.1.0 (build 2.1.0-dev.9.4 f9ebf21297) [✓] Android toolchain - develop for Android devices (Android SDK 28.0.1) • Android SDK at /Users/steve/Library/Android/sdk • Android NDK location not configured (optional; useful for native profiling support) • Platform android-28, build-tools 28.0.1 • 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-1024-b01) • All Android licenses accepted. [!] iOS toolchain - develop for iOS devices (Xcode 10.1) • Xcode at /Applications/Xcode.app/Contents/Developer • Xcode 10.1, Build version 10B61 ✗ Verify that all connected devices have been paired with this computer in Xcode. If all devices have been paired, libimobiledevice and ideviceinstaller may require updating. To update with Brew, run: brew update brew uninstall --ignore-dependencies libimobiledevice brew uninstall --ignore-dependencies usbmuxd brew install --HEAD usbmuxd brew unlink usbmuxd brew link usbmuxd brew install --HEAD libimobiledevice brew install ideviceinstaller • ios-deploy 2.0.0 • CocoaPods version 1.5.3 [✓] Android Studio (version 3.1) • Android Studio at /Applications/Android Studio.app/Contents • Flutter plugin version 26.0.1 • Dart plugin version 173.4700 • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01) [✓] VS Code (version 1.29.1) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 2.20.0 [✓] Connected device (1 available) • iPhone XR • 1EE1625B-61BB-421E-B104-CB3C8A5B6076 • ios • iOS 12.1 (simulator) ! Doctor found issues in 1 category."><pre class="notranslate"><code class="notranslate">$ flutter doctor -v [✓] Flutter (Channel master, v0.11.10-pre.2, on Mac OS X 10.13.6 17G3025, locale en-GB) • Flutter version 0.11.10-pre.2 at /Users/steve/code/flutter • Framework revision b55e52c6f7 (18 hours ago), 2018-11-21 15:48:23 -0500 • Engine revision 1e37b99ac0 • Dart version 2.1.0 (build 2.1.0-dev.9.4 f9ebf21297) [✓] Android toolchain - develop for Android devices (Android SDK 28.0.1) • Android SDK at /Users/steve/Library/Android/sdk • Android NDK location not configured (optional; useful for native profiling support) • Platform android-28, build-tools 28.0.1 • 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-1024-b01) • All Android licenses accepted. [!] iOS toolchain - develop for iOS devices (Xcode 10.1) • Xcode at /Applications/Xcode.app/Contents/Developer • Xcode 10.1, Build version 10B61 ✗ Verify that all connected devices have been paired with this computer in Xcode. If all devices have been paired, libimobiledevice and ideviceinstaller may require updating. To update with Brew, run: brew update brew uninstall --ignore-dependencies libimobiledevice brew uninstall --ignore-dependencies usbmuxd brew install --HEAD usbmuxd brew unlink usbmuxd brew link usbmuxd brew install --HEAD libimobiledevice brew install ideviceinstaller • ios-deploy 2.0.0 • CocoaPods version 1.5.3 [✓] Android Studio (version 3.1) • Android Studio at /Applications/Android Studio.app/Contents • Flutter plugin version 26.0.1 • Dart plugin version 173.4700 • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01) [✓] VS Code (version 1.29.1) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 2.20.0 [✓] Connected device (1 available) • iPhone XR • 1EE1625B-61BB-421E-B104-CB3C8A5B6076 • ios • iOS 12.1 (simulator) ! Doctor found issues in 1 category. </code></pre></div>
<h2 dir="auto">Steps to Reproduce</h2> <ol dir="auto"> <li>cd <code class="notranslate">/examples/hello_world/</code></li> <li>connect a physical Android device</li> <li><code class="notranslate">flutter run</code></li> </ol> <p dir="auto">Output:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="mit-macbookpro2:hello_world mit$ flutter run -d 00ca05b380789730 Launching lib/main.dart on Nexus 5X in debug mode... Exception from flutter run: FormatException: Bad UTF-8 encoding 0xff dart:isolate _RawReceivePortImpl._handleMessage Building APK in debug mode (android-arm)... 5081ms Installing build/app.apk... 2435ms Syncing files to device... 3968ms"><pre class="notranslate"><code class="notranslate">mit-macbookpro2:hello_world mit$ flutter run -d 00ca05b380789730 Launching lib/main.dart on Nexus 5X in debug mode... Exception from flutter run: FormatException: Bad UTF-8 encoding 0xff dart:isolate _RawReceivePortImpl._handleMessage Building APK in debug mode (android-arm)... 5081ms Installing build/app.apk... 2435ms Syncing files to device... 3968ms </code></pre></div> <p dir="auto">Running on an Android or iOS simulator does not throw the exception!</p> <h2 dir="auto">Flutter Doctor</h2> <p dir="auto">Paste the output of running <code class="notranslate">flutter doctor</code> here.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ flutter doctor [✓] Flutter (on Mac OS, channel master) • Flutter at /Users/mit/dev/github/flutter • Framework revision 3a43fc88b6 (5 hours ago), 2017-01-31 23:32:10 • Engine revision 2d54edf0f9 • Tools Dart version 1.22.0-dev.9.1 [✓] Android toolchain - develop for Android devices (Android SDK 25.0.0) • Android SDK at /Users/mit/Library/Android/sdk • Platform android-25, build-tools 25.0.0 • ANDROID_HOME = /Users/mit/Library/Android/sdk • Java(TM) SE Runtime Environment (build 1.8.0_112-b16) [✓] iOS toolchain - develop for iOS devices (Xcode 8.2.1) • XCode at /Applications/Xcode.app/Contents/Developer • Xcode 8.2.1, Build version 8C1002 [✓] IntelliJ IDEA Ultimate Edition (version 2016.3.4) • Dart plugin version 163.12753 • Flutter plugin version 0.1.8.1 [✓] Connected devices • Nexus 5X • 00ca05b380789730 • android-arm • Android 7.0 (API 24) • Android SDK built for x86 • emulator-5554 • android-x86 • Android 6.0 (API 23) (emulator) $"><pre class="notranslate"><code class="notranslate">$ flutter doctor [✓] Flutter (on Mac OS, channel master) • Flutter at /Users/mit/dev/github/flutter • Framework revision 3a43fc88b6 (5 hours ago), 2017-01-31 23:32:10 • Engine revision 2d54edf0f9 • Tools Dart version 1.22.0-dev.9.1 [✓] Android toolchain - develop for Android devices (Android SDK 25.0.0) • Android SDK at /Users/mit/Library/Android/sdk • Platform android-25, build-tools 25.0.0 • ANDROID_HOME = /Users/mit/Library/Android/sdk • Java(TM) SE Runtime Environment (build 1.8.0_112-b16) [✓] iOS toolchain - develop for iOS devices (Xcode 8.2.1) • XCode at /Applications/Xcode.app/Contents/Developer • Xcode 8.2.1, Build version 8C1002 [✓] IntelliJ IDEA Ultimate Edition (version 2016.3.4) • Dart plugin version 163.12753 • Flutter plugin version 0.1.8.1 [✓] Connected devices • Nexus 5X • 00ca05b380789730 • android-arm • Android 7.0 (API 24) • Android SDK built for x86 • emulator-5554 • android-x86 • Android 6.0 (API 23) (emulator) $ </code></pre></div>
0
<blockquote> <p dir="auto">Issue originally made by Ryan Duffy (ryan.duffy)</p> </blockquote> <h3 dir="auto">Bug information</h3> <ul dir="auto"> <li><strong>Babel version:</strong> 6.11.4</li> </ul> <h3 dir="auto">Options</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="es2015 preset"><pre class="notranslate"><code class="notranslate">es2015 preset </code></pre></div> <h3 dir="auto">Input code</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="export default () =&gt; ({ x: ({x}) =&gt; {} });"><pre class="notranslate"><code class="notranslate">export default () =&gt; ({ x: ({x}) =&gt; {} }); </code></pre></div> <h3 dir="auto">Description</h3> <p dir="auto">With the above code, babel transpiles to a closure without <code class="notranslate">module.exports</code>. Seems to be unique to the combination of exporting an arrow function that returns an object containing a key whose value is an arrow function where the first arg is deconstructed with a key of the same name.</p> <ul dir="auto"> <li>If the keys are different (<code class="notranslate">x: ({y}) =&gt; {}</code>) or the deconstructed key is renamed (e.g. <code class="notranslate">x: ({x: y}) =&gt; {}</code>), it doesn't reproduce.</li> <li>If you use <code class="notranslate">function</code> in place of either arrow function, it doesn't reproduce.</li> <li>If you store the closure into a local variable and then export that, it doesn't reproduce.</li> </ul> <p dir="auto">Reproducible via the babel repl as well</p>
<blockquote> <p dir="auto">Issue originally made by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jprichardson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jprichardson">@jprichardson</a></p> </blockquote> <h3 dir="auto">Bug information</h3> <ul dir="auto"> <li><strong>Babel version:</strong> 6.x</li> <li><strong>Node version:</strong> 5.3.0</li> <li><strong>npm version:</strong> 3.7.1</li> </ul> <h3 dir="auto">Input code</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="export default (onClick) =&gt; (&lt;div onClick={ () =&gt; onClick(text) } &gt;&lt;/div&gt;);"><pre class="notranslate"><code class="notranslate">export default (onClick) =&gt; (&lt;div onClick={ () =&gt; onClick(text) } &gt;&lt;/div&gt;); </code></pre></div> <h3 dir="auto">Description</h3> <p dir="auto">You'll notice an <code class="notranslate">export</code> at the bottom that didn't get transpiled.</p> <p dir="auto">Sorry, regarding Babel "version", wasn't sure which version to put since there are so many libraries. I'm using babel-plugin-transform-es2015-arrow-functions@6.5.2.</p>
1
<h2 dir="auto">Steps to Reproduce</h2> <p dir="auto">Trying to compile Flutter application which uses FlutterViewController for iPhone5 (ARM 32 bit)</p> <h2 dir="auto">Logs</h2> <p dir="auto">Run your application with <code class="notranslate">flutter run</code> and attach all the log output.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="pawelurban@MacBook-Pro-4 ~/w/Flutter-Demo&gt; ../flutter/bin/flutter run Launching lib/main.dart on iPhone (Test) in debug mode... 2017-02-07 13:31:00.989 ios-deploy[84260:11111874] [ !! ] Error 0xe8000087: This application does not support this device's CPU type. AMDeviceSecureInstallApplication(0, device, url, options, install_callback, 0) Could not install build/ios/Release-iphoneos/Runner.app on 116fe6f14b81cb490ebab9c2f150d45810a740ed. Try launching Xcode and selecting &quot;Product &gt; Run&quot; to fix the problem: open ios/Runner.xcodeproj Error launching application on iPhone (Test)."><pre class="notranslate"><code class="notranslate">pawelurban@MacBook-Pro-4 ~/w/Flutter-Demo&gt; ../flutter/bin/flutter run Launching lib/main.dart on iPhone (Test) in debug mode... 2017-02-07 13:31:00.989 ios-deploy[84260:11111874] [ !! ] Error 0xe8000087: This application does not support this device's CPU type. AMDeviceSecureInstallApplication(0, device, url, options, install_callback, 0) Could not install build/ios/Release-iphoneos/Runner.app on 116fe6f14b81cb490ebab9c2f150d45810a740ed. Try launching Xcode and selecting "Product &gt; Run" to fix the problem: open ios/Runner.xcodeproj Error launching application on iPhone (Test). </code></pre></div> <h2 dir="auto">Flutter Doctor</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="pawelurban@MacBook-Pro-4 ~/w/Flutter-Demo&gt; ../flutter/bin/flutter doctor [✓] Flutter (on Mac OS, channel master) • Flutter at /Users/pawelurban/workspace/flutter • Framework revision 06f879b57e (6 hours ago), 2017-02-06 22:15:36 • Engine revision cbf49d0652 • Tools Dart version 1.22.0-dev.10.3 [✓] Android toolchain - develop for Android devices (Android SDK 25.0.2) • Android SDK at /Users/pawelurban/Library/Android/sdk • Platform android-25, build-tools 25.0.2 • Java(TM) SE Runtime Environment (build 1.8.0_77-b03) [✓] iOS toolchain - develop for iOS devices (Xcode 8.2.1) • Xcode at /Applications/Xcode.app/Contents/Developer • Xcode 8.2.1, Build version 8C1002 • ios-deploy 1.9.0 [✓] IntelliJ IDEA Community Edition (version 2016.3.4) • Dart plugin version 163.13137 • Flutter plugin version 0.1.9.1 [✓] Connected devices • iPhone (Test) • 116fe6f14b81cb490ebab9c2f150d45810a740ed • ios • iOS 10.0.2 (14A456)"><pre class="notranslate"><code class="notranslate">pawelurban@MacBook-Pro-4 ~/w/Flutter-Demo&gt; ../flutter/bin/flutter doctor [✓] Flutter (on Mac OS, channel master) • Flutter at /Users/pawelurban/workspace/flutter • Framework revision 06f879b57e (6 hours ago), 2017-02-06 22:15:36 • Engine revision cbf49d0652 • Tools Dart version 1.22.0-dev.10.3 [✓] Android toolchain - develop for Android devices (Android SDK 25.0.2) • Android SDK at /Users/pawelurban/Library/Android/sdk • Platform android-25, build-tools 25.0.2 • Java(TM) SE Runtime Environment (build 1.8.0_77-b03) [✓] iOS toolchain - develop for iOS devices (Xcode 8.2.1) • Xcode at /Applications/Xcode.app/Contents/Developer • Xcode 8.2.1, Build version 8C1002 • ios-deploy 1.9.0 [✓] IntelliJ IDEA Community Edition (version 2016.3.4) • Dart plugin version 163.13137 • Flutter plugin version 0.1.9.1 [✓] Connected devices • iPhone (Test) • 116fe6f14b81cb490ebab9c2f150d45810a740ed • ios • iOS 10.0.2 (14A456) </code></pre></div>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/chinmaygarde/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/chinmaygarde">@chinmaygarde</a> says this should be very straightforward and is just about teaching our Mac bot to build the ARM32-bit variants of our engine, uploading them to the right place, and teaching our XCode project template to use them.</p> <p dir="auto">EDIT: Turns out it was not straight forward. Work is actively underway, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/cbracken/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/cbracken">@cbracken</a> is driving the effort.</p>
1
<p dir="auto">Recently, <code class="notranslate">functional.softmax</code> has been changed to accept <code class="notranslate">dim</code> as argument.<br> When run on CPU, I can specify arbitrary value for <code class="notranslate">dim</code>, whether <code class="notranslate">input</code> is 2D or 3D.</p> <p dir="auto">For example, the following code works without any problem:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [23]: functional.softmax(Variable(torch.ones(3, 4)), dim=0) Out[23]: Variable containing: 0.3333 0.3333 0.3333 0.3333 0.3333 0.3333 0.3333 0.3333 0.3333 0.3333 0.3333 0.3333 [torch.FloatTensor of size 3x4] In [24]: functional.softmax(Variable(torch.ones(3, 4, 5)), dim=1) Out[24]: Variable containing: (0 ,.,.) = 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 (1 ,.,.) = 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 (2 ,.,.) = 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 [torch.FloatTensor of size 3x4x5]"><pre class="notranslate"><code class="notranslate">In [23]: functional.softmax(Variable(torch.ones(3, 4)), dim=0) Out[23]: Variable containing: 0.3333 0.3333 0.3333 0.3333 0.3333 0.3333 0.3333 0.3333 0.3333 0.3333 0.3333 0.3333 [torch.FloatTensor of size 3x4] In [24]: functional.softmax(Variable(torch.ones(3, 4, 5)), dim=1) Out[24]: Variable containing: (0 ,.,.) = 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 (1 ,.,.) = 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 (2 ,.,.) = 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 0.2500 [torch.FloatTensor of size 3x4x5] </code></pre></div> <p dir="auto">However, when the computation is performed in GPU, the flexibility decreases.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [25]: functional.softmax(Variable(torch.ones(3, 4)).cuda(), dim=0) --------------------------------------------------------------------------- RuntimeError Traceback (most recent call last) &lt;ipython-input-25-d95ff8a04b77&gt; in &lt;module&gt;() ----&gt; 1 functional.softmax(Variable(torch.ones(3, 4)).cuda(), dim=0) ~/anaconda3/envs/ml/lib/python3.6/site-packages/torch/nn/functional.py in softmax(input, dim, _stacklevel) 648 if dim is None: 649 dim = _get_softmax_dim('softmax', input.dim(), _stacklevel) --&gt; 650 return _Softmax(dim)(input) 651 652 RuntimeError: invalid argument 4: dim has to be 1 for 2D input at /home/jhchoi/workspace/pytorch/torch/lib/THCUNN/generic/SoftMax.cu:32 In [26]: functional.softmax(Variable(torch.ones(3, 4, 5)).cuda(), dim=1) --------------------------------------------------------------------------- RuntimeError Traceback (most recent call last) &lt;ipython-input-26-672d6d5d3b8d&gt; in &lt;module&gt;() ----&gt; 1 functional.softmax(Variable(torch.ones(3, 4, 5)).cuda(), dim=1) ~/anaconda3/envs/ml/lib/python3.6/site-packages/torch/nn/functional.py in softmax(input, dim, _stacklevel) 648 if dim is None: 649 dim = _get_softmax_dim('softmax', input.dim(), _stacklevel) --&gt; 650 return _Softmax(dim)(input) 651 652 RuntimeError: invalid argument 4: dim has to be 0 for 3D input at /home/jhchoi/workspace/pytorch/torch/lib/THCUNN/generic/SoftMax.cu:42"><pre class="notranslate"><code class="notranslate">In [25]: functional.softmax(Variable(torch.ones(3, 4)).cuda(), dim=0) --------------------------------------------------------------------------- RuntimeError Traceback (most recent call last) &lt;ipython-input-25-d95ff8a04b77&gt; in &lt;module&gt;() ----&gt; 1 functional.softmax(Variable(torch.ones(3, 4)).cuda(), dim=0) ~/anaconda3/envs/ml/lib/python3.6/site-packages/torch/nn/functional.py in softmax(input, dim, _stacklevel) 648 if dim is None: 649 dim = _get_softmax_dim('softmax', input.dim(), _stacklevel) --&gt; 650 return _Softmax(dim)(input) 651 652 RuntimeError: invalid argument 4: dim has to be 1 for 2D input at /home/jhchoi/workspace/pytorch/torch/lib/THCUNN/generic/SoftMax.cu:32 In [26]: functional.softmax(Variable(torch.ones(3, 4, 5)).cuda(), dim=1) --------------------------------------------------------------------------- RuntimeError Traceback (most recent call last) &lt;ipython-input-26-672d6d5d3b8d&gt; in &lt;module&gt;() ----&gt; 1 functional.softmax(Variable(torch.ones(3, 4, 5)).cuda(), dim=1) ~/anaconda3/envs/ml/lib/python3.6/site-packages/torch/nn/functional.py in softmax(input, dim, _stacklevel) 648 if dim is None: 649 dim = _get_softmax_dim('softmax', input.dim(), _stacklevel) --&gt; 650 return _Softmax(dim)(input) 651 652 RuntimeError: invalid argument 4: dim has to be 0 for 3D input at /home/jhchoi/workspace/pytorch/torch/lib/THCUNN/generic/SoftMax.cu:42 </code></pre></div> <p dir="auto">Is it intended behavior? If it is, then I think it should be specified in the document.</p>
<p dir="auto">(removed previous report addressed by <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="267805013" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/3245" data-hovercard-type="pull_request" data-hovercard-url="/pytorch/pytorch/pull/3245/hovercard" href="https://github.com/pytorch/pytorch/pull/3245">#3245</a>)</p> <p dir="auto">There's a missing letter 'f' in the <a href="http://pytorch.org/docs/master/nn.html?highlight=softmax#torch.nn.functional.softmax" rel="nofollow">docs</a>, my browser doesn't render the equation:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=":math:`softmax(x) = rac{exp(-x_i)}{sum_j exp(-x_j)}`"><pre class="notranslate"><code class="notranslate">:math:`softmax(x) = rac{exp(-x_i)}{sum_j exp(-x_j)}` </code></pre></div>
1
<p dir="auto">I'm creating API on server.js that uses user authentication via passport.</p> <p dir="auto">I already add code to use passport and it works fine. If the user is not authorized, then redirect to login page for page, or return 403 Forbedden for APIs.</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const isAuthenticatedAPI = (req, res, next) =&gt; { if (req.isAuthenticated()) { return next(); } else { res.sendStatus(403); } }; server.get(&quot;/api/item/:id&quot;, isAuthenticatedAPI, (req, res) =&gt; { // API implementation });"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-en">isAuthenticatedAPI</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-s1">req</span><span class="pl-kos">,</span> <span class="pl-s1">res</span><span class="pl-kos">,</span> <span class="pl-s1">next</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">req</span><span class="pl-kos">.</span><span class="pl-en">isAuthenticated</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-s1">next</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-kos">{</span> <span class="pl-s1">res</span><span class="pl-kos">.</span><span class="pl-en">sendStatus</span><span class="pl-kos">(</span><span class="pl-c1">403</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-s1">server</span><span class="pl-kos">.</span><span class="pl-en">get</span><span class="pl-kos">(</span><span class="pl-s">"/api/item/:id"</span><span class="pl-kos">,</span> <span class="pl-en">isAuthenticatedAPI</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-s1">req</span><span class="pl-kos">,</span> <span class="pl-s1">res</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-c">// API implementation</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">But it is too strong. The code reject API calls during SSR. I hope to omit authentication check during SSR. I thought two solutions, but they were fragile:</p> <ul dir="auto"> <li>Checking user-agent is <code class="notranslate">node-fetch/1.0 (+https://github.com/bitinn/node-fetch)</code> or not.</li> <li>Checking req.ip is local or not (via <a href="https://www.npmjs.com/package/is-local-ip" rel="nofollow">is-local-ip</a>)</li> </ul> <p dir="auto">Is there any cool solution to identify the API client is for SSR or CSR?</p> <p dir="auto">thanks,</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">We will get any good solution to decide authentication check should be omitted or not.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">I couldn't identify API call is for SSR/CSR in Express.js's handler.</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <ol dir="auto"> <li>Add passport to next's server.js</li> <li>Call the API during SSR (it's ok on CSR)</li> <li></li> <li></li> </ol> <h2 dir="auto">Context</h2> <p dir="auto">I am creating the website that has uses user authentication via passport.</p> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>next</td> <td>5.0</td> </tr> <tr> <td>node</td> <td>8.9.4</td> </tr> <tr> <td>OS</td> <td>macOS 10.12.6</td> </tr> <tr> <td>browser</td> <td>Chrome M63</td> </tr> <tr> <td>etc</td> <td></td> </tr> </tbody> </table>
<p dir="auto">I have see the example with-external-scoped-css , but it compile the scss or sass to static , then import in html head ? so all page css will be imported ! and the static asset dont add hash with name ? how to force the cdn update ?</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <h2 dir="auto">Current Behavior</h2> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <ol dir="auto"> <li></li> <li></li> <li></li> <li></li> </ol> <h2 dir="auto">Context</h2> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>next</td> <td></td> </tr> <tr> <td>node</td> <td></td> </tr> <tr> <td>OS</td> <td></td> </tr> <tr> <td>browser</td> <td></td> </tr> <tr> <td>etc</td> <td></td> </tr> </tbody> </table>
0
<p dir="auto">ES 2.1<br> <strong>Describe the feature</strong>:<br> below query still get response:<br> MatchAllQueryBuilder maq = QueryBuilders.matchAllQuery();<br> SearchResponse sResponse = client.prepareSearch(indexName)<br> .setSearchType(SearchType.SCAN)<br> .setQuery(maq)<br> .setSize(20000)<br> .execute()<br> .actionGet();</p> <p dir="auto">better limit size for scroll search type the same way for search with max result window</p>
<p dir="auto"><strong>Elasticsearch version</strong>: 2.1.2 / 2.3.3</p> <p dir="auto"><strong>JVM version</strong>: Java 8u91</p> <p dir="auto"><strong>OS version</strong>: Ubuntu 16.04</p> <p dir="auto"><strong>Description of the problem including expected versus actual behavior</strong>:<br> Specifying a high value for <code class="notranslate">size=</code> when using scroll causes OOM.</p> <p dir="auto">E.g: running <code class="notranslate">curl -XGET 'localhost:9200/*/_search?size=99999999'</code> results in:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{&quot;error&quot;:{&quot;root_cause&quot;:[{&quot;type&quot;:&quot;query_phase_execution_exception&quot;,&quot;reason&quot;:&quot;Result window is too large, from + size must be less than or equal to: [10000] but was [99999999]. See the scroll api for a more efficient way to request large data sets. This limit can be set by changing the [index.max_result_window] index level parameter.&quot;}],&quot;type&quot;:&quot;search_phase_execution_exception&quot;,&quot;reason&quot;:&quot;all shards failed&quot;,&quot;phase&quot;:&quot;query&quot;,&quot;grouped&quot;:true,&quot;failed_shards&quot;:[{&quot;shard&quot;:0,&quot;index&quot;:&quot;.triggered_watches&quot;,&quot;node&quot;:&quot;qmVwvx_9RDqdn6QG8n8SKQ&quot;,&quot;reason&quot;:{&quot;type&quot;:&quot;query_phase_execution_exception&quot;,&quot;reason&quot;:&quot;Result window is too large, from + size must be less than or equal to: [10000] but was [99999999]. See the scroll api for a more efficient way to request large data sets. This limit can be set by changing the [index.max_result_window] index level parameter.&quot;}}]},&quot;status&quot;:500}"><pre class="notranslate"><code class="notranslate">{"error":{"root_cause":[{"type":"query_phase_execution_exception","reason":"Result window is too large, from + size must be less than or equal to: [10000] but was [99999999]. See the scroll api for a more efficient way to request large data sets. This limit can be set by changing the [index.max_result_window] index level parameter."}],"type":"search_phase_execution_exception","reason":"all shards failed","phase":"query","grouped":true,"failed_shards":[{"shard":0,"index":".triggered_watches","node":"qmVwvx_9RDqdn6QG8n8SKQ","reason":{"type":"query_phase_execution_exception","reason":"Result window is too large, from + size must be less than or equal to: [10000] but was [99999999]. See the scroll api for a more efficient way to request large data sets. This limit can be set by changing the [index.max_result_window] index level parameter."}}]},"status":500} </code></pre></div> <p dir="auto">But when running <code class="notranslate">curl -XGET 'localhost:9200/*/_search?scroll=8m&amp;size=99999999</code>, the high value for <code class="notranslate">size=</code> is accepted, causing the node running OOM.</p> <p dir="auto"><strong>Steps to reproduce</strong>:</p> <ol dir="auto"> <li>Start ES</li> <li>Run <code class="notranslate">curl -XGET 'localhost:9200/*/_search?scroll=8m&amp;size=99999999</code></li> <li>Node runs OOM</li> </ol> <p dir="auto"><strong>Provide logs (if relevant)</strong>:</p> <p dir="auto">Logs when calling <code class="notranslate">_search?scroll=8m&amp;size=99999999</code></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[2016-07-04 13:34:08,734][INFO ][monitor.jvm ] [Doctor Glitternight] [gc][young][1107][34] duration [781ms], collections [1]/[1.4s], total [781ms]/[7.7s], memory [440.3mb]-&gt;[394.6mb]/[990.7mb], all_pools {[young] [172.7mb]-&gt;[1mb]/[266.2mb]}{[survivor] [33.2mb]-&gt;[33.2mb]/[33.2mb]}{[old] [234.3mb]-&gt;[360.3mb]/[691.2mb]} [2016-07-04 13:36:00,540][WARN ][rest.suppressed ] /*/_search Params: {pretty=, size=99999999, scroll=8m, index=*} java.lang.OutOfMemoryError: Java heap space at org.elasticsearch.cache.recycler.PageCacheRecycler$1.newInstance(PageCacheRecycler.java:102) at org.elasticsearch.cache.recycler.PageCacheRecycler$1.newInstance(PageCacheRecycler.java:99) at org.elasticsearch.common.recycler.DequeRecycler.obtain(DequeRecycler.java:53) at org.elasticsearch.common.recycler.AbstractRecycler.obtain(AbstractRecycler.java:33) at org.elasticsearch.common.recycler.DequeRecycler.obtain(DequeRecycler.java:28) at org.elasticsearch.common.recycler.FilterRecycler.obtain(FilterRecycler.java:39) at org.elasticsearch.common.recycler.Recyclers$3.obtain(Recyclers.java:119) at org.elasticsearch.common.recycler.FilterRecycler.obtain(FilterRecycler.java:39) at org.elasticsearch.cache.recycler.PageCacheRecycler.bytePage(PageCacheRecycler.java:150) at org.elasticsearch.common.util.AbstractBigArray.newBytePage(AbstractBigArray.java:108) at org.elasticsearch.common.util.BigByteArray.resize(BigByteArray.java:140) at org.elasticsearch.common.util.BigArrays.resizeInPlace(BigArrays.java:425) at org.elasticsearch.common.util.BigArrays.resize(BigArrays.java:472) at org.elasticsearch.common.util.BigArrays.grow(BigArrays.java:489) at org.elasticsearch.common.io.stream.BytesStreamOutput.ensureCapacity(BytesStreamOutput.java:160) at org.elasticsearch.common.io.stream.BytesStreamOutput.writeBytes(BytesStreamOutput.java:90) at org.elasticsearch.common.io.stream.StreamOutput.write(StreamOutput.java:299) at com.fasterxml.jackson.core.json.UTF8JsonGenerator._flushBuffer(UTF8JsonGenerator.java:2003) at com.fasterxml.jackson.core.json.UTF8JsonGenerator.writeRaw(UTF8JsonGenerator.java:597) at com.fasterxml.jackson.core.util.DefaultIndenter.writeIndentation(DefaultIndenter.java:94) at com.fasterxml.jackson.core.util.DefaultPrettyPrinter.writeObjectEntrySeparator(DefaultPrettyPrinter.java:307) at com.fasterxml.jackson.core.json.UTF8JsonGenerator._writePPFieldName(UTF8JsonGenerator.java:354) at com.fasterxml.jackson.core.json.UTF8JsonGenerator.writeFieldName(UTF8JsonGenerator.java:181) at com.fasterxml.jackson.core.JsonGenerator.copyCurrentStructure(JsonGenerator.java:1557) at com.fasterxml.jackson.core.JsonGenerator.copyCurrentStructure(JsonGenerator.java:1566) at org.elasticsearch.common.xcontent.json.JsonXContentGenerator.copyCurrentStructure(JsonXContentGenerator.java:425) at org.elasticsearch.common.xcontent.json.JsonXContentGenerator.copyRawValue(JsonXContentGenerator.java:410) at org.elasticsearch.common.xcontent.json.JsonXContentGenerator.writeRawField(JsonXContentGenerator.java:363) at org.elasticsearch.common.xcontent.XContentBuilder.rawField(XContentBuilder.java:914) at org.elasticsearch.common.xcontent.XContentHelper.writeRawField(XContentHelper.java:378) at org.elasticsearch.search.internal.InternalSearchHit.toXContent(InternalSearchHit.java:476) at org.elasticsearch.search.internal.InternalSearchHits.toXContent(InternalSearchHits.java:184)"><pre class="notranslate"><code class="notranslate">[2016-07-04 13:34:08,734][INFO ][monitor.jvm ] [Doctor Glitternight] [gc][young][1107][34] duration [781ms], collections [1]/[1.4s], total [781ms]/[7.7s], memory [440.3mb]-&gt;[394.6mb]/[990.7mb], all_pools {[young] [172.7mb]-&gt;[1mb]/[266.2mb]}{[survivor] [33.2mb]-&gt;[33.2mb]/[33.2mb]}{[old] [234.3mb]-&gt;[360.3mb]/[691.2mb]} [2016-07-04 13:36:00,540][WARN ][rest.suppressed ] /*/_search Params: {pretty=, size=99999999, scroll=8m, index=*} java.lang.OutOfMemoryError: Java heap space at org.elasticsearch.cache.recycler.PageCacheRecycler$1.newInstance(PageCacheRecycler.java:102) at org.elasticsearch.cache.recycler.PageCacheRecycler$1.newInstance(PageCacheRecycler.java:99) at org.elasticsearch.common.recycler.DequeRecycler.obtain(DequeRecycler.java:53) at org.elasticsearch.common.recycler.AbstractRecycler.obtain(AbstractRecycler.java:33) at org.elasticsearch.common.recycler.DequeRecycler.obtain(DequeRecycler.java:28) at org.elasticsearch.common.recycler.FilterRecycler.obtain(FilterRecycler.java:39) at org.elasticsearch.common.recycler.Recyclers$3.obtain(Recyclers.java:119) at org.elasticsearch.common.recycler.FilterRecycler.obtain(FilterRecycler.java:39) at org.elasticsearch.cache.recycler.PageCacheRecycler.bytePage(PageCacheRecycler.java:150) at org.elasticsearch.common.util.AbstractBigArray.newBytePage(AbstractBigArray.java:108) at org.elasticsearch.common.util.BigByteArray.resize(BigByteArray.java:140) at org.elasticsearch.common.util.BigArrays.resizeInPlace(BigArrays.java:425) at org.elasticsearch.common.util.BigArrays.resize(BigArrays.java:472) at org.elasticsearch.common.util.BigArrays.grow(BigArrays.java:489) at org.elasticsearch.common.io.stream.BytesStreamOutput.ensureCapacity(BytesStreamOutput.java:160) at org.elasticsearch.common.io.stream.BytesStreamOutput.writeBytes(BytesStreamOutput.java:90) at org.elasticsearch.common.io.stream.StreamOutput.write(StreamOutput.java:299) at com.fasterxml.jackson.core.json.UTF8JsonGenerator._flushBuffer(UTF8JsonGenerator.java:2003) at com.fasterxml.jackson.core.json.UTF8JsonGenerator.writeRaw(UTF8JsonGenerator.java:597) at com.fasterxml.jackson.core.util.DefaultIndenter.writeIndentation(DefaultIndenter.java:94) at com.fasterxml.jackson.core.util.DefaultPrettyPrinter.writeObjectEntrySeparator(DefaultPrettyPrinter.java:307) at com.fasterxml.jackson.core.json.UTF8JsonGenerator._writePPFieldName(UTF8JsonGenerator.java:354) at com.fasterxml.jackson.core.json.UTF8JsonGenerator.writeFieldName(UTF8JsonGenerator.java:181) at com.fasterxml.jackson.core.JsonGenerator.copyCurrentStructure(JsonGenerator.java:1557) at com.fasterxml.jackson.core.JsonGenerator.copyCurrentStructure(JsonGenerator.java:1566) at org.elasticsearch.common.xcontent.json.JsonXContentGenerator.copyCurrentStructure(JsonXContentGenerator.java:425) at org.elasticsearch.common.xcontent.json.JsonXContentGenerator.copyRawValue(JsonXContentGenerator.java:410) at org.elasticsearch.common.xcontent.json.JsonXContentGenerator.writeRawField(JsonXContentGenerator.java:363) at org.elasticsearch.common.xcontent.XContentBuilder.rawField(XContentBuilder.java:914) at org.elasticsearch.common.xcontent.XContentHelper.writeRawField(XContentHelper.java:378) at org.elasticsearch.search.internal.InternalSearchHit.toXContent(InternalSearchHit.java:476) at org.elasticsearch.search.internal.InternalSearchHits.toXContent(InternalSearchHits.java:184) </code></pre></div> <p dir="auto"><strong>Describe the feature</strong>:</p>
1
<p dir="auto">When scrolling to the bottom of the page, affix-Plugin sets the class "affix-bottom" and sets inline styles like "position: relative; top: XYZpx;". The Problem is, that the inline "position: relative" aren't removed after scrolling up again. It would be better, to set "position: relative" via the class "affix-bottom" (which works correct) and not via javascript. That would solve the problem.</p> <p dir="auto">BTW: I use Mac OS 10.9.3, Chrome 35.0.1916.114</p>
<p dir="auto">The following issue is reproducible with the current bootstrap docs website (e.g. <a href="http://getbootstrap.com/javascript/" rel="nofollow">http://getbootstrap.com/javascript/</a>) using Firefox 28 and Chrome 33, on Windows:</p> <ol dir="auto"> <li>Start with a large browser window.</li> <li>Load <a href="http://getbootstrap.com/javascript/" rel="nofollow">http://getbootstrap.com/javascript/</a></li> <li>Decrease width of the window, so that the sidebar disappears, i.e. the affix contents menu goes to the bottom of the page (you don't see it anymore).</li> <li>Scroll all the way down to the footer, you see the affix contents menu again.</li> <li>Increase the window width again. At some point, the affix contents menu goes to the top again (you don't see it anymore).</li> <li>Scroll all the way up, there it is.</li> <li>Scroll down, the affix does not follow scroll movement anymore.</li> </ol>
1
<p dir="auto">Is there an ability to query for a selector that has extraneous space around it? I'm left to "test" some legacy Angular.js apps, which are notorious for this.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/599459/97960076-6ba6f500-1dfc-11eb-912b-57717d26d509.png"><img src="https://user-images.githubusercontent.com/599459/97960076-6ba6f500-1dfc-11eb-912b-57717d26d509.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">my <code class="notranslate">await page.waitForSelector('"What does your Ford Focus need?"')</code> is never resolving, and upon DEBUG mode it never resolves.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/599459/97960120-84170f80-1dfc-11eb-8f36-8633ffc6c3ec.png"><img src="https://user-images.githubusercontent.com/599459/97960120-84170f80-1dfc-11eb-8f36-8633ffc6c3ec.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">other elements I query do however work, so it could either be the dodgy space in there—or the fact that part of the "text" is nested in a span?</p>
<p dir="auto"><strong>Context:</strong></p> <ul dir="auto"> <li>Playwright Version: 0.16.0</li> <li>Operating System: Mac</li> <li>Node version: v13.11.0</li> <li>Browser: All</li> </ul> <p dir="auto"><strong>Code Snippet</strong></p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const { chromium } = require('playwright'); (async () =&gt; { const browser = await chromium.launch() const context = await browser.newContext() const page = await context.newPage() await page.setContent(` &lt;div class=&quot;wrapper&quot;&gt; &lt;div&gt; &lt;span&gt;Should&lt;/span&gt; &lt;/div&gt; &lt;div&gt; &lt;span&gt;match&lt;/span&gt; &lt;/div&gt; &lt;/div&gt;`) const elementByClass = await page.$('.wrapper') const innerText = await elementByClass.innerText() console.log('Inner Text matches regex:', /Should.*match/is.test(innerText)) const elementByText = await page.$('text=/Should.*match/is') console.log('element not found:', elementByText === null) await browser.close() })()"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-kos">{</span> chromium <span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'playwright'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">(</span><span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">const</span> <span class="pl-s1">browser</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">chromium</span><span class="pl-kos">.</span><span class="pl-en">launch</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-k">const</span> <span class="pl-s1">context</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">browser</span><span class="pl-kos">.</span><span class="pl-en">newContext</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-k">const</span> <span class="pl-s1">page</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">context</span><span class="pl-kos">.</span><span class="pl-en">newPage</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">setContent</span><span class="pl-kos">(</span><span class="pl-s">`</span> <span class="pl-s">&lt;div class="wrapper"&gt;</span> <span class="pl-s"> &lt;div&gt;</span> <span class="pl-s"> &lt;span&gt;Should&lt;/span&gt;</span> <span class="pl-s"> &lt;/div&gt;</span> <span class="pl-s"> &lt;div&gt;</span> <span class="pl-s"> &lt;span&gt;match&lt;/span&gt;</span> <span class="pl-s"> &lt;/div&gt;</span> <span class="pl-s">&lt;/div&gt;`</span><span class="pl-kos">)</span> <span class="pl-k">const</span> <span class="pl-s1">elementByClass</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">'.wrapper'</span><span class="pl-kos">)</span> <span class="pl-k">const</span> <span class="pl-s1">innerText</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">elementByClass</span><span class="pl-kos">.</span><span class="pl-en">innerText</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'Inner Text matches regex:'</span><span class="pl-kos">,</span> <span class="pl-pds"><span class="pl-c1">/</span>Should.<span class="pl-c1">*</span>match<span class="pl-c1">/</span>is</span><span class="pl-kos">.</span><span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-s1">innerText</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-k">const</span> <span class="pl-s1">elementByText</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">'text=/Should.*match/is'</span><span class="pl-kos">)</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'element not found:'</span><span class="pl-kos">,</span> <span class="pl-s1">elementByText</span> <span class="pl-c1">===</span> <span class="pl-c1">null</span><span class="pl-kos">)</span> <span class="pl-k">await</span> <span class="pl-s1">browser</span><span class="pl-kos">.</span><span class="pl-en">close</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-kos">)</span></pre></div> <p dir="auto"><strong>Output</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Inner Text matches regex: true element not found: true"><pre class="notranslate"><code class="notranslate">Inner Text matches regex: true element not found: true </code></pre></div> <p dir="auto"><strong>Describe the bug</strong><br> Since regex matches innerText of <code class="notranslate">.wrapper</code> element I expect it to be matched by selector.</p>
1
<p dir="auto">I have a freshly-built numpy on OS X 10.9, and am running into pretty regular crashes related to umath.so. <a href="https://gist.github.com/fonnesbeck/31d372805647da7af6e3">Here is a Gist with the crash report</a>. It seems to crash in a variety of ways, but I can reliably get it to crash by importing a module like Theano, which has numpy as a dependency. I have re-built all of my packages since upgrading to OSX 10.9.</p>
<h3 dir="auto">Describe the issue:</h3> <p dir="auto">I have replaced the last 3 lines in this code</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="A = np.ones((150000,3,3)) j = np.ones((150000)) s = np.ones((150000)) jDuplicated = np.repeat(j, 3**2).reshape((len(elements), dim, dim)) sDuplicated = np.repeat(s, 3**2).reshape((len(elements), dim, dim)) res= sDuplicated * A @ np.swapaxes(A,1,2) * jDuplicated"><pre class="notranslate"><span class="pl-v">A</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">ones</span>((<span class="pl-c1">150000</span>,<span class="pl-c1">3</span>,<span class="pl-c1">3</span>)) <span class="pl-s1">j</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">ones</span>((<span class="pl-c1">150000</span>)) <span class="pl-s1">s</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">ones</span>((<span class="pl-c1">150000</span>)) <span class="pl-s1">jDuplicated</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">repeat</span>(<span class="pl-s1">j</span>, <span class="pl-c1">3</span><span class="pl-c1">**</span><span class="pl-c1">2</span>).<span class="pl-en">reshape</span>((<span class="pl-en">len</span>(<span class="pl-s1">elements</span>), <span class="pl-s1">dim</span>, <span class="pl-s1">dim</span>)) <span class="pl-s1">sDuplicated</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">repeat</span>(<span class="pl-s1">s</span>, <span class="pl-c1">3</span><span class="pl-c1">**</span><span class="pl-c1">2</span>).<span class="pl-en">reshape</span>((<span class="pl-en">len</span>(<span class="pl-s1">elements</span>), <span class="pl-s1">dim</span>, <span class="pl-s1">dim</span>)) <span class="pl-s1">res</span><span class="pl-c1">=</span> <span class="pl-s1">sDuplicated</span> <span class="pl-c1">*</span> <span class="pl-v">A</span> @ <span class="pl-s1">np</span>.<span class="pl-en">swapaxes</span>(<span class="pl-v">A</span>,<span class="pl-c1">1</span>,<span class="pl-c1">2</span>) <span class="pl-c1">*</span> <span class="pl-s1">jDuplicated</span></pre></div> <p dir="auto">with</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="res = np.einsum('i,i,ijk,ilk-&gt;ijl',s,j,A,A)"><pre class="notranslate"><span class="pl-s1">res</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">einsum</span>(<span class="pl-s">'i,i,ijk,ilk-&gt;ijl'</span>,<span class="pl-s1">s</span>,<span class="pl-s1">j</span>,<span class="pl-v">A</span>,<span class="pl-v">A</span>)</pre></div> <p dir="auto">The single line looks much better than duplicating a lot of data so that I can perform element-wise multiplication. However the top version is around 10% faster on my pc.</p> <p dir="auto">I would expect einsum to be faster, since it does not replicate a lot of data. Does anybody have an idea why this is not the case? Maybe the repeated data causes less cache misses?</p> <h3 dir="auto">Reproduce the code example:</h3> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np A = np.ones((150000,3,3)) j = np.ones((150000)) s = np.ones((150000)) # the numbers might need to be random to avoid simplification res = np.einsum('i,i,ijk,ilk-&gt;ijl',s,j,A,A)"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span> <span class="pl-v">A</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">ones</span>((<span class="pl-c1">150000</span>,<span class="pl-c1">3</span>,<span class="pl-c1">3</span>)) <span class="pl-s1">j</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">ones</span>((<span class="pl-c1">150000</span>)) <span class="pl-s1">s</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">ones</span>((<span class="pl-c1">150000</span>)) <span class="pl-c"># the numbers might need to be random to avoid simplification</span> <span class="pl-s1">res</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">einsum</span>(<span class="pl-s">'i,i,ijk,ilk-&gt;ijl'</span>,<span class="pl-s1">s</span>,<span class="pl-s1">j</span>,<span class="pl-v">A</span>,<span class="pl-v">A</span>)</pre></div> <h3 dir="auto">Error message:</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">NumPy/Python version information:</h3> <p dir="auto">1.22.1 3.10.2 (main, Jan 15 2022, 18:03:19) [GCC 7.5.0]</p>
0
<p dir="auto">I trained a model with tensorflow1.4, and want to finetune in tensorflow 1.3,following is part of my code:<br> 1)train code with tf1.4:<br> with slim.arg_scope(inception_v3.inception_v3_arg_scope()):<br> y, endpoints = inception_v3.inception_v3(x, CLASSES, True)<br> 2)test code with master:<br> with slim.arg_scope(inception_v3.inception_v3_arg_scope()):<br> y, end_points = inception_v3.inception_v3(x, label_dim, False)<br> with tf.name_scope('train'):<br> loss = custom_function.loss_function(y, y_)<br> train_op = custom_function.train_function(loss, learn_rate)<br> accuracy_op = custom_function.accuracy_function(y, y_)<br> output_result = custom_function.output_result(y)<br> init_op = tf.group(tf.global_variables_initializer(), tf.local_variables_initializer())<br> saver = tf.train.Saver()<br> sess_config = tf.ConfigProto(allow_soft_placement=True, log_device_placement=False)<br> sess_config.gpu_options.allow_growth = True<br> sess = tf.Session(config=sess_config)<br> merged_summary = tf.summary.merge_all()<br> train_writer = tf.summary.FileWriter(log_dir, sess.graph)<br> #saver = tf.train.import_meta_graph('model_meishi/inception-v3/graph-1205-190241.meta',clear_devices=True)<br> sess.run(init_op)<br> coord = tf.train.Coordinator()<br> threads = tf.train.start_queue_runners(sess=sess, coord=coord)<br> #saver.restore(sess, "model_meishi/model-6690")<br> saver.restore(sess, "model_meishi/inception-v3/model-12042")<br> error is:NotFoundError (see above for traceback): Key InceptionV3/Mixed_7b/Branch_2/Conv2d_0a_1x1/BatchNorm/gamma not found in checkpoint<br> at first, i think the reason is slim.argscope is not the same in these two version tensorflow and<br> I tried to replace the slim of tf1.4 with the slim of master,but the error still exist.<br> what's the problem of my code ?thx</p>
<p dir="auto">I am trying to use the given pretrained inception v3 model in research/slim, but the weights don't match</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import tensorflow as tf from nets.inception_v3 import inception_v3_base tf_images = tf.placeholder(tf.float32, [None, 299, 299, 3]) inception,inception_layers=inception_v3_base(tf_images) saver = tf.train.Saver() with tf.Session() as sess: saver.restore(sess,'models/weights/inception_v3.ckpt')"><pre class="notranslate"><code class="notranslate">import tensorflow as tf from nets.inception_v3 import inception_v3_base tf_images = tf.placeholder(tf.float32, [None, 299, 299, 3]) inception,inception_layers=inception_v3_base(tf_images) saver = tf.train.Saver() with tf.Session() as sess: saver.restore(sess,'models/weights/inception_v3.ckpt') </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="NotFoundError: Tensor name &quot;InceptionV3/Mixed_5c/Branch_2/Conv2d_0a_1x1/biases&quot; not found in checkpoint files models/weights/inception_v3.ckpt [[Node: save/RestoreV2_30 = RestoreV2[dtypes=[DT_FLOAT], _device=&quot;/job:localhost/replica:0/task:0/device:CPU:0&quot;](_arg_save/Const_0_0, save/RestoreV2_30/tensor_names, save/RestoreV2_30/shape_and_slices)]] [[Node: save/RestoreV2_184/_5 = _Recv[client_terminated=false, recv_device=&quot;/job:localhost/replica:0/task:0/device:GPU:0&quot;, send_device=&quot;/job:localhost/replica:0/task:0/device:CPU:0&quot;, send_device_incarnation=1, tensor_name=&quot;edge_384_save/RestoreV2_184&quot;, tensor_type=DT_FLOAT, _device=&quot;/job:localhost/replica:0/task:0/device:GPU:0&quot;]()]]"><pre class="notranslate"><code class="notranslate">NotFoundError: Tensor name "InceptionV3/Mixed_5c/Branch_2/Conv2d_0a_1x1/biases" not found in checkpoint files models/weights/inception_v3.ckpt [[Node: save/RestoreV2_30 = RestoreV2[dtypes=[DT_FLOAT], _device="/job:localhost/replica:0/task:0/device:CPU:0"](_arg_save/Const_0_0, save/RestoreV2_30/tensor_names, save/RestoreV2_30/shape_and_slices)]] [[Node: save/RestoreV2_184/_5 = _Recv[client_terminated=false, recv_device="/job:localhost/replica:0/task:0/device:GPU:0", send_device="/job:localhost/replica:0/task:0/device:CPU:0", send_device_incarnation=1, tensor_name="edge_384_save/RestoreV2_184", tensor_type=DT_FLOAT, _device="/job:localhost/replica:0/task:0/device:GPU:0"]()]] </code></pre></div> <p dir="auto">Looking at the variables they indeed don't match</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from tensorflow.python import pywrap_tensorflow reader = pywrap_tensorflow.NewCheckpointReader('models/weights/inception_v3.ckpt') var_to_shape_map = reader.get_variable_to_shape_map() print(sorted(var_to_shape_map)) print([var.name for var in saver._var_list])"><pre class="notranslate"><code class="notranslate">from tensorflow.python import pywrap_tensorflow reader = pywrap_tensorflow.NewCheckpointReader('models/weights/inception_v3.ckpt') var_to_shape_map = reader.get_variable_to_shape_map() print(sorted(var_to_shape_map)) print([var.name for var in saver._var_list]) </code></pre></div> <p dir="auto">For the checkpoint a subsample is:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="'InceptionV3/Conv2d_1a_3x3/BatchNorm/beta', 'InceptionV3/Conv2d_1a_3x3/BatchNorm/moving_mean', 'InceptionV3/Conv2d_1a_3x3/BatchNorm/moving_variance', 'InceptionV3/Conv2d_1a_3x3/weights', 'InceptionV3/Conv2d_2a_3x3/BatchNorm/beta', 'InceptionV3/Conv2d_2a_3x3/BatchNorm/moving_mean', 'InceptionV3/Conv2d_2a_3x3/BatchNorm/moving_variance', 'InceptionV3/Conv2d_2a_3x3/weights', 'InceptionV3/Conv2d_2b_3x3/BatchNorm/beta', 'InceptionV3/Conv2d_2b_3x3/BatchNorm/moving_mean', 'InceptionV3/Conv2d_2b_3x3/BatchNorm/moving_variance', 'InceptionV3/Conv2d_2b_3x3/weights', 'InceptionV3/Conv2d_3b_1x1/BatchNorm/beta', 'InceptionV3/Conv2d_3b_1x1/BatchNorm/moving_mean', 'InceptionV3/Conv2d_3b_1x1/BatchNorm/moving_variance', 'InceptionV3/Conv2d_3b_1x1/weights', 'InceptionV3/Conv2d_4a_3x3/BatchNorm/beta', 'InceptionV3/Conv2d_4a_3x3/BatchNorm/moving_mean', 'InceptionV3/Conv2d_4a_3x3/BatchNorm/moving_variance', 'InceptionV3/Conv2d_4a_3x3/weights',"><pre class="notranslate"><code class="notranslate">'InceptionV3/Conv2d_1a_3x3/BatchNorm/beta', 'InceptionV3/Conv2d_1a_3x3/BatchNorm/moving_mean', 'InceptionV3/Conv2d_1a_3x3/BatchNorm/moving_variance', 'InceptionV3/Conv2d_1a_3x3/weights', 'InceptionV3/Conv2d_2a_3x3/BatchNorm/beta', 'InceptionV3/Conv2d_2a_3x3/BatchNorm/moving_mean', 'InceptionV3/Conv2d_2a_3x3/BatchNorm/moving_variance', 'InceptionV3/Conv2d_2a_3x3/weights', 'InceptionV3/Conv2d_2b_3x3/BatchNorm/beta', 'InceptionV3/Conv2d_2b_3x3/BatchNorm/moving_mean', 'InceptionV3/Conv2d_2b_3x3/BatchNorm/moving_variance', 'InceptionV3/Conv2d_2b_3x3/weights', 'InceptionV3/Conv2d_3b_1x1/BatchNorm/beta', 'InceptionV3/Conv2d_3b_1x1/BatchNorm/moving_mean', 'InceptionV3/Conv2d_3b_1x1/BatchNorm/moving_variance', 'InceptionV3/Conv2d_3b_1x1/weights', 'InceptionV3/Conv2d_4a_3x3/BatchNorm/beta', 'InceptionV3/Conv2d_4a_3x3/BatchNorm/moving_mean', 'InceptionV3/Conv2d_4a_3x3/BatchNorm/moving_variance', 'InceptionV3/Conv2d_4a_3x3/weights', </code></pre></div> <p dir="auto">And for the saver:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="'InceptionV3/Conv2d_1a_3x3/weights:0', 'InceptionV3/Conv2d_1a_3x3/biases:0', 'InceptionV3/Conv2d_2a_3x3/weights:0', 'InceptionV3/Conv2d_2a_3x3/biases:0', 'InceptionV3/Conv2d_2b_3x3/weights:0', 'InceptionV3/Conv2d_2b_3x3/biases:0', 'InceptionV3/Conv2d_3b_1x1/weights:0', 'InceptionV3/Conv2d_3b_1x1/biases:0', 'InceptionV3/Conv2d_4a_3x3/weights:0', 'InceptionV3/Conv2d_4a_3x3/biases:0',"><pre class="notranslate"><code class="notranslate">'InceptionV3/Conv2d_1a_3x3/weights:0', 'InceptionV3/Conv2d_1a_3x3/biases:0', 'InceptionV3/Conv2d_2a_3x3/weights:0', 'InceptionV3/Conv2d_2a_3x3/biases:0', 'InceptionV3/Conv2d_2b_3x3/weights:0', 'InceptionV3/Conv2d_2b_3x3/biases:0', 'InceptionV3/Conv2d_3b_1x1/weights:0', 'InceptionV3/Conv2d_3b_1x1/biases:0', 'InceptionV3/Conv2d_4a_3x3/weights:0', 'InceptionV3/Conv2d_4a_3x3/biases:0', </code></pre></div> <p dir="auto">Looks like a mismatch with the biases and the batchnorms. I am using tensorflow version 1.4.0 and models commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/tensorflow/models/commit/69cf6fca2106c41946a3c395126bdd6994d36e6b/hovercard" href="https://github.com/tensorflow/models/commit/69cf6fca2106c41946a3c395126bdd6994d36e6b"><tt>69cf6fc</tt></a> if that is relevant. The checkpoint file is taken from inception_v3_2016_08_28.tar.gz</p>
1
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li> </ul> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>Dubbo version: 2.6.6</li> <li>Operating System version: centos</li> <li>Java version: 1.8</li> </ul> <h3 dir="auto">Steps to reproduce this issue</h3> <ol dir="auto"> <li>服务出现线程池打满的情况打印了Dubbo的堆栈<br> 2.但是出现的线程都是等待任务<br> 3.配置了dubbo的业务线程是1000,qps大概是1500+</li> </ol> <h3 dir="auto">Expected Result</h3> <p dir="auto">不应该是线程池满了,但是并发量比较高</p> <h3 dir="auto">Actual Result</h3> <p dir="auto">打印的dubbo线程的状态都是这种,我查到是说现在这个状态都是空闲状态</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&quot;DubboServerHandler-xxx-thread-234&quot; Id=322 WAITING on java.util.concurrent.SynchronousQueue$TransferStack@53452753 at sun.misc.Unsafe.park(Native Method) - waiting on java.util.concurrent.SynchronousQueue$TransferStack@53452753 at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175) at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:458) at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:362) at java.util.concurrent.SynchronousQueue.take(SynchronousQueue.java:924) at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1067) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1127) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at java.lang.Thread.run(Thread.java:745)"><pre lang="log" class="notranslate"><code class="notranslate">"DubboServerHandler-xxx-thread-234" Id=322 WAITING on java.util.concurrent.SynchronousQueue$TransferStack@53452753 at sun.misc.Unsafe.park(Native Method) - waiting on java.util.concurrent.SynchronousQueue$TransferStack@53452753 at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175) at java.util.concurrent.SynchronousQueue$TransferStack.awaitFulfill(SynchronousQueue.java:458) at java.util.concurrent.SynchronousQueue$TransferStack.transfer(SynchronousQueue.java:362) at java.util.concurrent.SynchronousQueue.take(SynchronousQueue.java:924) at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1067) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1127) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at java.lang.Thread.run(Thread.java:745) </code></pre></div> <p dir="auto">我需要调整线程数吗,还是有什么其他的优化的方法,谢谢</p>
<ul dir="auto"> <li>I have searched the <a href="https://github.com/apache/incubator-dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li>I have checked the <a href="https://github.com/apache/incubator-dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li> </ul> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>Dubbo version: 2.7.0</li> <li>Operating System version: Ubuntu18.04</li> <li>Java version: jdk8</li> </ul> <ol dir="auto"> <li>dubbo-ops with dubbo 2.7.0 and other appication use old version.</li> <li>Copy MonitorService from old version to dubbo-ops.</li> <li>Other application send url call com.alibaba.dubbo.monitor.MonitorService#collect(URL statistics).</li> </ol> <p dir="auto">result:<br> WARN dubbo.DecodeableRpcInvocation - [DUBBO] Decode argument failed: 'com.alibaba.dubbo.common.URL' could not be instantiated, dubbo version: 2.7.0-SNAPSHOT, current host: 10.236.105.240<br> com.alibaba.com.caucho.hessian.io.HessianProtocolException: 'com.alibaba.dubbo.common.URL' could not be instantiated</p> <p dir="auto"><a href="url">https://github.com/ebourg/hessian/blob/git-svn/src/com/caucho/hessian/io/JavaDeserializer.java</a><br> `for (int i = 0; i &lt; constructors.length; i++) {<br> Class&lt;?&gt; []param = constructors[i].getParameterTypes();<br> long cost = 0;</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" for (int j = 0; j &lt; param.length; j++) { cost = 4 * cost; if (Object.class.equals(param[j])) cost += 1; else if (String.class.equals(param[j])) cost += 2; else if (int.class.equals(param[j])) cost += 3; else if (long.class.equals(param[j])) cost += 4; else if (param[j].isPrimitive()) cost += 5; else cost += 6; } if (cost &lt; 0 || cost &gt; (1 &lt;&lt; 48)) cost = 1 &lt;&lt; 48; cost += (long) param.length &lt;&lt; 48; if (cost &lt; bestCost) { _constructor = constructors[i]; bestCost = cost; } } if (_constructor != null) { _constructor.setAccessible(true); Class&lt;?&gt; []params = _constructor.getParameterTypes(); _constructorArgs = new Object[params.length]; for (int i = 0; i &lt; params.length; i++) { _constructorArgs[i] = getParamArg(params[i]); } }`"><pre class="notranslate"><code class="notranslate"> for (int j = 0; j &lt; param.length; j++) { cost = 4 * cost; if (Object.class.equals(param[j])) cost += 1; else if (String.class.equals(param[j])) cost += 2; else if (int.class.equals(param[j])) cost += 3; else if (long.class.equals(param[j])) cost += 4; else if (param[j].isPrimitive()) cost += 5; else cost += 6; } if (cost &lt; 0 || cost &gt; (1 &lt;&lt; 48)) cost = 1 &lt;&lt; 48; cost += (long) param.length &lt;&lt; 48; if (cost &lt; bestCost) { _constructor = constructors[i]; bestCost = cost; } } if (_constructor != null) { _constructor.setAccessible(true); Class&lt;?&gt; []params = _constructor.getParameterTypes(); _constructorArgs = new Object[params.length]; for (int i = 0; i &lt; params.length; i++) { _constructorArgs[i] = getParamArg(params[i]); } }` </code></pre></div> <p dir="auto"><a href="url">https://github.com/apache/incubator-dubbo/blob/master/dubbo-compatible/src/main/java/com/alibaba/dubbo/common/URL.java</a><br> the bestcost constructor is this one;<br> <code class="notranslate"> public URL(org.apache.dubbo.common.URL url) { super(url.getProtocol(), url.getUsername(), url.getPassword(), url.getHost(), url.getPort(), url.getPath(), url.getParameters()); }</code></p> <p dir="auto">and _constructorArgs[0] is null<br> when run at _constructor.newInstance(_constructorArgs) application throw NullPointerException</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Caused by: java.lang.reflect.InvocationTargetException at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:423) at com.alibaba.com.caucho.hessian.io.JavaDeserializer.instantiate(JavaDeserializer.java:312) ... 32 more Caused by: java.lang.NullPointerException at com.alibaba.dubbo.common.URL.&lt;init&gt;(URL.java:30)"><pre class="notranslate"><code class="notranslate">Caused by: java.lang.reflect.InvocationTargetException at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:423) at com.alibaba.com.caucho.hessian.io.JavaDeserializer.instantiate(JavaDeserializer.java:312) ... 32 more Caused by: java.lang.NullPointerException at com.alibaba.dubbo.common.URL.&lt;init&gt;(URL.java:30) </code></pre></div>
0
<p dir="auto">The go 1.6 compiler panics on this 2.25 Mbyte source file containing a slice with 13240 elements: <a href="https://drive.google.com/file/d/0B2AF520HhpuzdzZhSVpPZGZkTUU/view" rel="nofollow">https://drive.google.com/file/d/0B2AF520HhpuzdzZhSVpPZGZkTUU/view</a></p> <p dir="auto">go1.6 linux/amd64<br> GOARCH="amd64"<br> GOOS="linux"</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ go build buildme.go # command-line-arguments panic: runtime error: makeslice: len out of range goroutine 1 [running]: panic(0x804f60, 0xc86085dd70) /usr/lib/google-golang/src/runtime/panic.go:483 +0x3ef cmd/compile/internal/gc.newliveness(0xc82018b9e0, 0xc8200a0000, 0xc865c44000, 0x2d416, 0x2e400, 0xc866950000, 0xcee1, 0xf000, 0xc9cda4b11aac74db) /usr/lib/google-golang/src/cmd/compile/internal/gc/plive.go:687 +0x161 cmd/compile/internal/gc.liveness(0xc82018b9e0, 0xc8200a0000, 0xc848dee900, 0xc848dee980) /usr/lib/google-golang/src/cmd/compile/internal/gc/plive.go:1782 +0x2cf cmd/compile/internal/gc.compile(0xc82018b9e0) /usr/lib/google-golang/src/cmd/compile/internal/gc/pgen.go:541 +0xdf2 cmd/compile/internal/gc.funccompile(0xc82018b9e0) /usr/lib/google-golang/src/cmd/compile/internal/gc/dcl.go:1450 +0x1c0 cmd/compile/internal/gc.Main() /usr/lib/google-golang/src/cmd/compile/internal/gc/lex.go:472 +0x2116 cmd/compile/internal/amd64.Main() /usr/lib/google-golang/src/cmd/compile/internal/amd64/galign.go:127 +0x58d main.main() /usr/lib/google-golang/src/cmd/compile/main.go:32 +0x395"><pre class="notranslate"><code class="notranslate">$ go build buildme.go # command-line-arguments panic: runtime error: makeslice: len out of range goroutine 1 [running]: panic(0x804f60, 0xc86085dd70) /usr/lib/google-golang/src/runtime/panic.go:483 +0x3ef cmd/compile/internal/gc.newliveness(0xc82018b9e0, 0xc8200a0000, 0xc865c44000, 0x2d416, 0x2e400, 0xc866950000, 0xcee1, 0xf000, 0xc9cda4b11aac74db) /usr/lib/google-golang/src/cmd/compile/internal/gc/plive.go:687 +0x161 cmd/compile/internal/gc.liveness(0xc82018b9e0, 0xc8200a0000, 0xc848dee900, 0xc848dee980) /usr/lib/google-golang/src/cmd/compile/internal/gc/plive.go:1782 +0x2cf cmd/compile/internal/gc.compile(0xc82018b9e0) /usr/lib/google-golang/src/cmd/compile/internal/gc/pgen.go:541 +0xdf2 cmd/compile/internal/gc.funccompile(0xc82018b9e0) /usr/lib/google-golang/src/cmd/compile/internal/gc/dcl.go:1450 +0x1c0 cmd/compile/internal/gc.Main() /usr/lib/google-golang/src/cmd/compile/internal/gc/lex.go:472 +0x2116 cmd/compile/internal/amd64.Main() /usr/lib/google-golang/src/cmd/compile/internal/amd64/galign.go:127 +0x58d main.main() /usr/lib/google-golang/src/cmd/compile/main.go:32 +0x395 </code></pre></div>
<p dir="auto">We have a lot of packages in the std that uses specialized instructions<br> that are not always present. Most of the times, the package will detect<br> the required features by themselves. This is fine but will lead to code<br> duplication. And as Bryan Chan mentioned on <a href="https://golang.org/cl/22201" rel="nofollow">https://golang.org/cl/22201</a>,<br> even if the processor provides way to detect certain optional features,<br> it's still better to use AT_HWCAP from Linux auxv because that also<br> takes kernel support into account.</p> <p dir="auto">Only the runtime can access auxv, so it makes sense for the runtime<br> to query the processor capabilities and provide that to the packages.</p> <p dir="auto">I propose that we add an internal package <code class="notranslate">internal/cpu</code> that exposes<br> capability flags for the current processor so that each std packages<br> could query it directly instead of having a runtime detection routine<br> that duplicates the work.</p> <p dir="auto">Another benefit is that, some processors, like ARM, doesn't provide<br> a way to do runtime capability detection, so we have to rely on the<br> kernel to provide this information. Different kernels provide different<br> mechanisms for this (sysctl for BSD and auxv for linux), so providing<br> a package that abstracts those OS-dependent feature away is also<br> beneficial.</p> <p dir="auto">We might promote the package to runtime/cpu if deemed fit, but that's<br> out of the scope for this proposal.</p> <p dir="auto">The package could be modeled after the Linux's AT_HWCAP bits,<br> and it will be processor dependent.</p>
0
<h2 dir="auto">Steps to Reproduce</h2> <p dir="auto">When the keyboard appears, the bottomNavigationBar in the Scaffold not stay at the bottom and a keyboard height is added to it.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/32248/35469528-43737b7e-0371-11e8-9ee2-dbfdd881c8e2.png"><img src="https://user-images.githubusercontent.com/32248/35469528-43737b7e-0371-11e8-9ee2-dbfdd881c8e2.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/32248/35469531-4ede4b9c-0371-11e8-8a98-2d18dc10687d.png"><img src="https://user-images.githubusercontent.com/32248/35469531-4ede4b9c-0371-11e8-8a98-2d18dc10687d.png" alt="image" style="max-width: 100%;"></a><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/32248/35469533-53af0b16-0371-11e8-8fbd-e43486936015.png"><img src="https://user-images.githubusercontent.com/32248/35469533-53af0b16-0371-11e8-8fbd-e43486936015.png" alt="image" style="max-width: 100%;"></a></p> <h2 dir="auto">Flutter Doctor</h2> <p dir="auto">[✓] Flutter (on Mac OS X 10.13.3 17D47, locale zh-Hans-CN, channel alpha)<br> • Flutter at /Users/tsangpo/workspace/sdk/flutter<br> • Framework revision <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/flutter/flutter/commit/8f65fec5f5f7d7afbb0965f4a44bdb330a28fb19/hovercard" href="https://github.com/flutter/flutter/commit/8f65fec5f5f7d7afbb0965f4a44bdb330a28fb19"><tt>8f65fec</tt></a> (7 weeks ago), 2017-12-12 09:50:14 -0800<br> • Engine revision <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/flutter/flutter/commit/edaecdc8b8098f20512c23745b9d0b135a8ee56d/hovercard" href="https://github.com/flutter/flutter/commit/edaecdc8b8098f20512c23745b9d0b135a8ee56d"><tt>edaecdc</tt></a><br> • Tools Dart version 1.25.0-dev.11.0<br> • Engine Dart version 2.0.0-edge.d8ae797298c3a6cf8dc9f4558707bd2672224d3e</p> <p dir="auto">[✓] Android toolchain - develop for Android devices (Android SDK 27.0.0)<br> • Android SDK at /Users/tsangpo/workspace/sdk/android-sdk<br> • Android NDK at /Users/tsangpo/workspace/sdk/android-sdk/ndk-bundle<br> • Platform android-27, build-tools 27.0.0<br> • ANDROID_HOME = /Users/tsangpo/workspace/sdk/android-sdk<br> • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java<br> • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08)</p> <p dir="auto">[-] iOS toolchain - develop for iOS devices (Xcode 9.2)<br> • Xcode at /Applications/Xcode.app/Contents/Developer<br> • Xcode 9.2, Build version 9C40b<br> ✗ libimobiledevice and ideviceinstaller are not installed. To install, run:<br> brew install --HEAD libimobiledevice<br> brew install ideviceinstaller<br> ✗ ios-deploy not installed. To install:<br> brew install ios-deploy<br> • CocoaPods version 1.4.0</p> <p dir="auto">[✓] Android Studio (version 3.0)<br> • Android Studio at /Applications/Android Studio.app/Contents<br> • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08)</p> <p dir="auto">[✓] IntelliJ IDEA Community Edition (version 2017.3.3)<br> • Flutter plugin version 21.0.3<br> • Dart plugin version 173.4301.22</p> <p dir="auto">[-] Connected devices<br> • None</p>
<h2 dir="auto">Steps to Reproduce</h2> <ul dir="auto"> <li>Tap the TextField</li> <li>You'll notice the entire page is pushed up when the soft keyboard shows up</li> </ul> <p dir="auto">Gist: <a href="https://gist.github.com/silverAndroid/eb40f5faaa2d8a0296baf2f9c337ec2b">https://gist.github.com/silverAndroid/eb40f5faaa2d8a0296baf2f9c337ec2b</a></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/8110c7ddaaab457abaf6a1e8ad654795600e0c66aea3293a6c38d98f2aaa8d0b/68747470733a2f2f7468756d62732e6766796361742e636f6d2f506f736974697665496d7065636361626c654571756573747269616e2d6d61782d31346d622e676966"><img src="https://camo.githubusercontent.com/8110c7ddaaab457abaf6a1e8ad654795600e0c66aea3293a6c38d98f2aaa8d0b/68747470733a2f2f7468756d62732e6766796361742e636f6d2f506f736974697665496d7065636361626c654571756573747269616e2d6d61782d31346d622e676966" alt="" data-animated-image="" data-canonical-src="https://thumbs.gfycat.com/PositiveImpeccableEquestrian-max-14mb.gif" style="max-width: 100%;"></a></p> <h2 dir="auto">Logs</h2> <p dir="auto">No exception.</p> <h2 dir="auto">Flutter Doctor</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[√] Flutter (on Microsoft Windows [Version 10.0.15063], locale en-US, channel master) • Flutter at D:\dev\SDKs\flutter • Framework revision 51ab5f36c6 (14 hours ago), 2017-12-08 20:39:56 -0800 • Engine revision edb0201fa2 • Tools Dart version 1.25.0-dev.11.0 • Engine Dart version 2.0.0-edge.a38ac7cf127f4611c873c2f2d523c06ce06b1342 [√] Android toolchain - develop for Android devices (Android SDK 26.0.2) • Android SDK at D:\dev\SDKs\android-sdk • Android NDK location not configured (optional; useful for native profiling support) • Platform android-26, build-tools 26.0.2 • ANDROID_HOME = D:\dev\SDKs\android-sdk • Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b01) [√] Android Studio (version 3.0) • Android Studio at C:\Program Files\Android\Android Studio • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b01) [√] IntelliJ IDEA Ultimate Edition (version 2017.3) • Flutter plugin version 20.0.3 • Dart plugin version 173.3727.108 [√] Connected devices • LG H915 • LGH9157e1e3243 • android-arm • Android 7.0 (API 24)"><pre class="notranslate"><code class="notranslate">[√] Flutter (on Microsoft Windows [Version 10.0.15063], locale en-US, channel master) • Flutter at D:\dev\SDKs\flutter • Framework revision 51ab5f36c6 (14 hours ago), 2017-12-08 20:39:56 -0800 • Engine revision edb0201fa2 • Tools Dart version 1.25.0-dev.11.0 • Engine Dart version 2.0.0-edge.a38ac7cf127f4611c873c2f2d523c06ce06b1342 [√] Android toolchain - develop for Android devices (Android SDK 26.0.2) • Android SDK at D:\dev\SDKs\android-sdk • Android NDK location not configured (optional; useful for native profiling support) • Platform android-26, build-tools 26.0.2 • ANDROID_HOME = D:\dev\SDKs\android-sdk • Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b01) [√] Android Studio (version 3.0) • Android Studio at C:\Program Files\Android\Android Studio • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b01) [√] IntelliJ IDEA Ultimate Edition (version 2017.3) • Flutter plugin version 20.0.3 • Dart plugin version 173.3727.108 [√] Connected devices • LG H915 • LGH9157e1e3243 • android-arm • Android 7.0 (API 24) </code></pre></div>
1
<p dir="auto">Hello, I have this example: <a href="https://jsfiddle.net/rjurado/tq136Lwr/" rel="nofollow">https://jsfiddle.net/rjurado/tq136Lwr/</a></p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;textarea id=&quot;textarea&quot; v-pre&gt; {{works}} &lt;/textarea&gt; &lt;div id=&quot;example&quot;&gt; &lt;p v-pre&gt;{{ work }}&lt;/p&gt; &lt;textarea v-pre&gt;{{ no wokrs }}&lt;/textarea&gt; &lt;/div&gt;"><pre class="notranslate"><span class="pl-c1">&lt;</span><span class="pl-ent">textarea</span> <span class="pl-c1">id</span><span class="pl-c1">=</span><span class="pl-s">"textarea"</span> <span class="pl-c1">v-pre</span><span class="pl-c1">&gt;</span> <span class="pl-kos">{</span><span class="pl-kos">{</span>works<span class="pl-kos">}</span><span class="pl-kos">}</span> <span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">textarea</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-s1">div</span> <span class="pl-s1">id</span><span class="pl-c1">=</span><span class="pl-s">"example"</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">p</span> <span class="pl-c1">v-pre</span><span class="pl-c1">&gt;</span><span class="pl-kos">{</span><span class="pl-kos">{</span> work <span class="pl-kos">}</span><span class="pl-kos">}</span><span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">p</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-s1">textarea</span> <span class="pl-s1">v</span><span class="pl-c1">-</span><span class="pl-s1">pre</span><span class="pl-c1">&gt;</span><span class="pl-kos">{</span><span class="pl-kos">{</span> <span class="pl-s1">no</span> wokrs <span class="pl-kos">}</span><span class="pl-kos">}</span><span class="pl-c1">&lt;</span><span class="pl-pds"><span class="pl-c1">/</span>textarea&gt;</span> <span class="pl-pds"><span class="pl-c1">&lt;</span><span class="pl-c1">/</span>div</span><span class="pl-c1">&gt;</span></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="new Vue({ el: '#textarea' }); new Vue({ el: '#example' });"><pre class="notranslate"><code class="notranslate">new Vue({ el: '#textarea' }); new Vue({ el: '#example' }); </code></pre></div> <p dir="auto">Why second textarea show empty?<br> If you inspect it you can see this:</p> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;textarea :value=&quot;no wokrs&quot;&gt;{{ no wokrs }}&lt;/textarea&gt;"><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">textarea</span> <span class="pl-c1">:value</span>="<span class="pl-s">no wokrs</span>"<span class="pl-kos">&gt;</span>{{ no wokrs }}<span class="pl-kos">&lt;/</span><span class="pl-ent">textarea</span><span class="pl-kos">&gt;</span></pre></div>
<h3 dir="auto">Vue.js version</h3> <p dir="auto">1.0.26</p> <h3 dir="auto">Reproduction Link</h3> <p dir="auto"><a href="https://jsfiddle.net/simplesmiler/Lrk9sxjf/102/" rel="nofollow">https://jsfiddle.net/simplesmiler/Lrk9sxjf/102/</a></p> <h3 dir="auto">What is Expected?</h3> <p dir="auto">Both textareas having text inside them.</p> <h3 dir="auto">What is actually happening?</h3> <p dir="auto">First textarea has text. Second textarea is empty, and has literal attribute <code class="notranslate">:value</code>.</p>
1
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x] bug report [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[x] bug report [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question </code></pre></div> <p dir="auto"><strong>Current behavior</strong><br> when body is null, body.text will go wrong</p> <p dir="auto"><a href="https://github.com/angular/angular/blob/master/modules/%40angular/http/src/body.ts#L43">https://github.com/angular/angular/blob/master/modules/%40angular/http/src/body.ts#L43</a></p> <p dir="auto"><strong>Expected/desired behavior</strong></p> <p dir="auto">add method to deal with null body</p> <ul dir="auto"> <li><strong>Angular version:</strong> 2.0.0-rc.5</li> </ul>
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x] bug report [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[x] bug report [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question </code></pre></div> <p dir="auto"><strong>Current behavior</strong><br> Creating a Component with an <code class="notranslate">@ViewChild</code> property off of a base class that has <code class="notranslate">@Input</code> properties does not transpile with an error message of "Can't bind to 'myproperty' since it isn't a known native property"</p> <p dir="auto"><strong>Expected/desired behavior</strong><br> Transpilation works</p> <p dir="auto"><strong>Reproduction of the problem</strong><br> <a href="http://plnkr.co/edit/eJjxhg0pucM6w8PyENzj?p=preview" rel="nofollow">http://plnkr.co/edit/eJjxhg0pucM6w8PyENzj?p=preview</a><br> Note the comment in the "app/child-component.ts" file which, when uncommented, will reveal the issue.</p> <p dir="auto"><strong>Please tell us about your environment:</strong></p> <ul dir="auto"> <li><strong>Angular version:</strong> 2.0.0-rc.4</li> <li><strong>Browser:</strong> Chrome 51.0</li> <li><strong>Language:</strong> TypeScript 1.9.0</li> </ul>
0
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/apache/incubator-dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the <a href="https://github.com/apache/incubator-dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li> </ul> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>Dubbo version: 2.6.2</li> <li>Operating System version: win7</li> <li>Java version: 1.8</li> </ul> <h3 dir="auto">Step to reproduce this issue</h3> <ol dir="auto"> <li>在本机启动了一个provider, accepts参数设置的为1:<br> java -Ddubbo.protocol.port=12345 -Dserver.port=9090 -Dmanagement.server.port=9091 -Ddubbo.application.qos-port=22221 -Ddubbo.protocol.accepts=1 -jar dubbo-demo-provider\target\dubbo-provider-1.0-SNAPSHOT.jar</li> <li>在本机启动了两个consumer:<br> java -Dserver.port=8080 -Dmanagement.server.port=8081 -Ddubbo.registry.file=xxx.properties -jar dubbo-demo-consumer\target\dubbo-consumer-1.0-SNAPSHOT.jar<br> java -Dserver.port=8084 -Dmanagement.server.port=8085 -Ddubbo.registry.file=yyy.properties -jar dubbo-demo-consumer\target\dubbo-consumer-1.0-SNAPSHOT.jar<br> 第二个启动的consumer会正常被accepts=1给断开连接。</li> <li>然后我在admin中动态修改配置,将accepts改为2<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/16410900/44095585-c6213462-a00b-11e8-9175-1352b298b4cb.png"><img src="https://user-images.githubusercontent.com/16410900/44095585-c6213462-a00b-11e8-9175-1352b298b4cb.png" alt="image" style="max-width: 100%;"></a><br> 发现第二个启动的consumer可以正常连接,没问题<br> 4.在admin页面中,将accepts再次修改成1,发现两个consumer仍然会正常连接,理论上是要有一个被踢下线的才对。</li> </ol> <h3 dir="auto">Expected Result</h3> <p dir="auto">期望只有一个consumer连接,另外一个consumer会由于超过accepts数而拒绝连接</p> <h3 dir="auto">Actual Result</h3> <p dir="auto">两个consumer都正常连接着,并能够正常对外提供服务</p>
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li> </ul> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>Dubbo version: 2.7.4-SNAPSHOT</li> <li>Operating System version: macOS10.12.6</li> <li>Java version: 1.8</li> </ul> <h3 dir="auto">Steps to reproduce this issue</h3> <p dir="auto">主要是配合dubbo admin的时候,如果意外删除了接口目录,导致之后该接口的实例将不再被发现</p> <ol dir="auto"> <li>启动dubbo-admin</li> <li>启动dubbo生产者,此时dubbo-admin有该生产者记录</li> <li>关闭生产者,并且删除该生产者的接口目录</li> <li>重启生产者,将不会在dubbo-admin上看到相关记录</li> </ol> <p dir="auto">主要原因是以下回调对anyServices只有add操作,没有delete操作,导致下一次目录变化时,也不会进入if中进行订阅新增接口。</p> <div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" listeners.putIfAbsent(listener, (parentPath, currentChilds) -&gt; { for (String child : currentChilds) { child = URL.decode(child); if (!anyServices.contains(child)) { anyServices.add(child); subscribe(url.setPath(child).addParameters(INTERFACE_KEY, child, Constants.CHECK_KEY, String.valueOf(false)), listener); } }); "><pre class="notranslate"> <span class="pl-s1">listeners</span>.<span class="pl-en">putIfAbsent</span>(<span class="pl-s1">listener</span>, (<span class="pl-s1">parentPath</span>, <span class="pl-s1">currentChilds</span>) -&gt; { <span class="pl-k">for</span> (<span class="pl-smi">String</span> <span class="pl-s1">child</span> : <span class="pl-s1">currentChilds</span>) { <span class="pl-s1">child</span> = <span class="pl-smi">URL</span>.<span class="pl-en">decode</span>(<span class="pl-s1">child</span>); <span class="pl-k">if</span> (!<span class="pl-s1">anyServices</span>.<span class="pl-en">contains</span>(<span class="pl-s1">child</span>)) { <span class="pl-s1">anyServices</span>.<span class="pl-en">add</span>(<span class="pl-s1">child</span>); <span class="pl-en">subscribe</span>(<span class="pl-s1">url</span>.<span class="pl-en">setPath</span>(<span class="pl-s1">child</span>).<span class="pl-en">addParameters</span>(<span class="pl-c1">INTERFACE_KEY</span>, <span class="pl-s1">child</span>, <span class="pl-smi">Constants</span>.<span class="pl-c1">CHECK_KEY</span>, <span class="pl-smi">String</span>.<span class="pl-en">valueOf</span>(<span class="pl-c1">false</span>)), <span class="pl-s1">listener</span>); } });</pre></div>
0
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: Microsoft Windows [Version 10.0.19041.208] PowerToys version: v0.17 PowerToy module for which you are reporting the bug (if applicable): PowerToys Settings"><pre class="notranslate"><code class="notranslate">Windows build number: Microsoft Windows [Version 10.0.19041.208] PowerToys version: v0.17 PowerToy module for which you are reporting the bug (if applicable): PowerToys Settings </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <ol dir="auto"> <li>Make a change to one of the settings</li> <li>Click save</li> </ol> <h1 dir="auto">Expected behaviour</h1> <p dir="auto">It says 'saving' briefly and then saves.</p> <h1 dir="auto">Actual behaviour</h1> <p dir="auto">It gets stuck on 'saving'.</p> <h1 dir="auto">Screenshots</h1> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/50421330/81670110-0969ca80-943f-11ea-80dc-4485739dddaf.png"><img src="https://user-images.githubusercontent.com/50421330/81670110-0969ca80-943f-11ea-80dc-4485739dddaf.png" alt="image" style="max-width: 100%;"></a></p>
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 10.0.18362.778 PowerToys version: 0.17.0 PowerToy module for which you are reporting the bug: FancyZones"><pre class="notranslate"><code class="notranslate">Windows build number: 10.0.18362.778 PowerToys version: 0.17.0 PowerToy module for which you are reporting the bug: FancyZones </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <ul dir="auto"> <li>Uninstall previous version of PowerToys</li> <li>Install 0.17.0</li> <li>Open PowerToys, things work just fine</li> <li>Wait for a while</li> <li>Try to place a window inside a zone, it shows no zones, and acts as if the app no longer running</li> <li>Can open settings window and interact with toggles and such, but cannot save</li> <li>Can close settings window</li> <li>Can sometimes right click &gt; exit on the systray icon, other times i have to force close in task manager</li> <li>Reopen PowerToys, repeat</li> </ul> <h1 dir="auto">Expected behavior</h1> <p dir="auto">The ability to use FancyZones as long as the PowerToys app is running</p> <h1 dir="auto">Actual behavior</h1> <p dir="auto">FanzyZones only being usable right after opening, and then no longer working after an undetermined amount of time when trying to snap a window</p>
1
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 10.0.18362.0 Windows Terminal version (if applicable): 0.6.2951.0"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: 10.0.18362.0 Windows Terminal version (if applicable): 0.6.2951.0 </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <ul dir="auto"> <li><code class="notranslate">ssh</code> to a Linux box</li> <li><code class="notranslate">seq 100</code></li> <li>shrink the window vertically (fewer lines)</li> <li>scroll back</li> </ul> <h1 dir="auto">Expected behavior</h1> <p dir="auto">See the numbers from 1 to 100</p> <h1 dir="auto">Actual behavior</h1> <p dir="auto">Lines get permanently lost as the window is made smaller, e.g. the sequence goes like ... 70 71 72 73 78 79 80 81 ...</p>
<h1 dir="auto">Description of the new feature/enhancement</h1> <p dir="auto">Currently, if you drag back the scrollbar and then resize the window, the viewport jumps back to the "regular" position (the end of the data buffer, and the bottom position of the scrollbar).</p> <p dir="auto">It would be better to (approximately) maintain the scrolled position, so that the user keeps seeing whichever data was previously shown.</p> <p dir="auto">In VTE we usually track the position at the bottom of the viewport and try to keep that at the bottom; except when fully scrolled back to the top. More details in <a href="https://gitlab.gnome.org/GNOME/vte/blob/master/doc/rewrap.txt" rel="nofollow">doc/rewrap.txt</a>.</p>
0
<p dir="auto">There is a type that is quite interesting in typescript <code class="notranslate">void | {}</code>, this type has some unique behavior, everything can be assigned to this type, but the compiler does not infer any property for this type unlike for <code class="notranslate">{}</code> that inherits the basic object properties, the difference with <code class="notranslate">{}</code> is subtile but still pretty interesting:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function func1(val: {} ) { val.hasOwnProperty('hello'); // no error } function func2(val: {} | void) { val.hasOwnProperty('hello'); // error: Property 'hasOwnProperty' does not exist on type 'void | {}'. }"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">func1</span><span class="pl-kos">(</span><span class="pl-s1">val</span>: <span class="pl-kos">{</span><span class="pl-kos">}</span> <span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-s1">val</span><span class="pl-kos">.</span><span class="pl-en">hasOwnProperty</span><span class="pl-kos">(</span><span class="pl-s">'hello'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// no error</span> <span class="pl-kos">}</span> <span class="pl-k">function</span> <span class="pl-en">func2</span><span class="pl-kos">(</span><span class="pl-s1">val</span>: <span class="pl-kos">{</span><span class="pl-kos">}</span> <span class="pl-c1">|</span> <span class="pl-smi"><span class="pl-k">void</span></span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-s1">val</span><span class="pl-kos">.</span><span class="pl-en">hasOwnProperty</span><span class="pl-kos">(</span><span class="pl-s">'hello'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// error: Property 'hasOwnProperty' does not exist on type 'void | {}'.</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">However there is not typeguard for <code class="notranslate">void</code>, it could be interesting to add some type guards for this case:</p> <ul dir="auto"> <li><code class="notranslate">typeof val !== 'undefined'</code></li> <li><code class="notranslate">val !== undefined</code></li> <li><code class="notranslate">val != undefined</code></li> <li><code class="notranslate">val != null</code></li> </ul>
<p dir="auto">I think that it should be special <strong>bottom</strong> type with the following properties:</p> <ul dir="auto"> <li>( T | <strong>bottom</strong> ) = ( <strong>bottom</strong> | T ) = T — <strong>bottom</strong> is unit for type unions;</li> <li>expression of type <strong>bottom</strong> is assignable to any other type;</li> <li><strong>bottom</strong> type could be used only as return type of the function (out-only);</li> <li>if function has return type <strong>bottom</strong> then all branches of the control flow either throw exceptions or return expression of type <strong>bottom</strong>;</li> <li>if all branches of the control flow either throw exceptions or return expression of type <strong>bottom</strong> and function has no explicit return type then <strong>bottom</strong> type inferred as the result type;</li> <li><del>two functional types are not assignable to each other if exactly one of them has return type <strong>bottom</strong></del> (?);</li> <li><strong>bottom</strong> type can't be used as the actual type parameter for the generic type.</li> </ul> <h3 dir="auto">rationale</h3> <p dir="auto">Let's consider the function that always throws:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function alwaysThrows() { throw new Error(&quot;!&quot;); }"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">alwaysThrows</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">throw</span> <span class="pl-k">new</span> <span class="pl-smi">Error</span><span class="pl-kos">(</span><span class="pl-s">"!"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">and other function that uses it</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function test(a: boolean) { return a ? 123 : alwaysThrow(); }"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-s1">a</span>: <span class="pl-smi">boolean</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-s1">a</span> ? <span class="pl-c1">123</span> : <span class="pl-en">alwaysThrow</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">We expect that <code class="notranslate">test</code> should have type <code class="notranslate">number</code> instead of <code class="notranslate">( number | void )</code></p> <p dir="auto">In more sophisticated example that involves Promise type declarations:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="declare class Promise&lt;T&gt; { catch&lt;U&gt;( handler: (reason: any) =&gt; U | Promise&lt;U&gt; ): Promise&lt;T | U&gt;; // Note the union here (!) then&lt;U&gt;( fulfilled?: (result: T) =&gt; U | Promise&lt;U&gt;, rejected?: (reason: any) =&gt; U | Promise&lt;U&gt; ): Promise&lt;U&gt; }"><pre class="notranslate"><span class="pl-k">declare</span> <span class="pl-k">class</span> <span class="pl-smi">Promise</span><span class="pl-c1">&lt;</span><span class="pl-smi">T</span><span class="pl-c1">&gt;</span> <span class="pl-kos">{</span> <span class="pl-c1">catch</span><span class="pl-c1">&lt;</span><span class="pl-smi">U</span><span class="pl-c1">&gt;</span><span class="pl-kos">(</span> <span class="pl-s1">handler</span>: <span class="pl-kos">(</span><span class="pl-s1">reason</span>: <span class="pl-smi">any</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-smi">U</span> <span class="pl-c1">|</span> <span class="pl-smi">Promise</span><span class="pl-kos">&lt;</span><span class="pl-smi">U</span><span class="pl-kos">&gt;</span> <span class="pl-kos">)</span>: <span class="pl-smi">Promise</span><span class="pl-kos">&lt;</span><span class="pl-smi">T</span> <span class="pl-c1">|</span> <span class="pl-smi">U</span><span class="pl-kos">&gt;</span><span class="pl-kos">;</span> <span class="pl-c">// Note the union here (!)</span> <span class="pl-c1">then</span><span class="pl-c1">&lt;</span><span class="pl-smi">U</span><span class="pl-c1">&gt;</span><span class="pl-kos">(</span> <span class="pl-s1">fulfilled</span>?: <span class="pl-kos">(</span><span class="pl-s1">result</span>: <span class="pl-smi">T</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-smi">U</span> <span class="pl-c1">|</span> <span class="pl-smi">Promise</span><span class="pl-kos">&lt;</span><span class="pl-smi">U</span><span class="pl-kos">&gt;</span><span class="pl-kos">,</span> <span class="pl-s1">rejected</span>?: <span class="pl-kos">(</span><span class="pl-s1">reason</span>: <span class="pl-smi">any</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-smi">U</span> <span class="pl-c1">|</span> <span class="pl-smi">Promise</span><span class="pl-kos">&lt;</span><span class="pl-smi">U</span><span class="pl-kos">&gt;</span> <span class="pl-kos">)</span>: <span class="pl-smi">Promise</span><span class="pl-kos">&lt;</span><span class="pl-smi">U</span><span class="pl-kos">&gt;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">We expect that</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="promiseOfString.catch(function(e) { throw new BusinessError(e); });"><pre class="notranslate"><span class="pl-s1">promiseOfString</span><span class="pl-kos">.</span><span class="pl-en">catch</span><span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">e</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">throw</span> <span class="pl-k">new</span> <span class="pl-v">BusinessError</span><span class="pl-kos">(</span><span class="pl-s1">e</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">should have the type of <code class="notranslate">Promise&lt;string&gt;</code> instead of <code class="notranslate">Promise&lt;string | void&gt;</code>.</p> <p dir="auto">See <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="68933329" data-permission-text="Title is private" data-url="https://github.com/petkaantonov/bluebird/issues/589" data-hovercard-type="issue" data-hovercard-url="/petkaantonov/bluebird/issues/589/hovercard?comment_id=99979305&amp;comment_type=issue_comment" href="https://github.com/petkaantonov/bluebird/issues/589#issuecomment-99979305">petkaantonov/bluebird#589 (comment)</a></p> <p dir="auto">Possible explicit annotation that function always throws is using <strong>undefined</strong> as the type</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function alwaysThrows(): undefined { throw new Error(&quot;!&quot;); }"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">alwaysThrows</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: <span class="pl-c1">undefined</span> <span class="pl-kos">{</span> <span class="pl-k">throw</span> <span class="pl-k">new</span> <span class="pl-smi">Error</span><span class="pl-kos">(</span><span class="pl-s">"!"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div>
1
<h1 dir="auto">Summary of the new feature/enhancement</h1> <p dir="auto">Please, consider adding the old PowerMenu to PowerToys.<br> I was using it a lot, I had the options to make a Window to be always on top and I was using some others to have transparency.<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/72734371d077d71fe428de4a7e8e6b68f41124ccbc6c12520842ce9ce6d6a40e/68747470733a2f2f692e696d6775722e636f6d2f7464446934754d2e6a7067"><img src="https://camo.githubusercontent.com/72734371d077d71fe428de4a7e8e6b68f41124ccbc6c12520842ce9ce6d6a40e/68747470733a2f2f692e696d6775722e636f6d2f7464446934754d2e6a7067" alt="PowerMenu" data-canonical-src="https://i.imgur.com/tdDi4uM.jpg" style="max-width: 100%;"></a></p>
<h1 dir="auto">Summary of the new feature/enhancement</h1> <p dir="auto">Useful tools that many Windows developers, testers and sysadmins install are Microsoft (aka Mark Russinovich's) Sysinternals BgInfo and ZoomIt (and Microsoft Garage Mouse without Borders). Please add BgInfo and ZoomIt to Microsoft PowerToys so they can be conveniently installed, discovered, and enhanced. BgInfo is great for remote desktop scenarios when managing many Windows servers, ZoomIt is super usefully when doing a code, UI, spreadsheet or (Visio) drawing peer reviews. Especially useful is ZoomIt's quick hotkeys, screen pen inking and shapes drawing features.<br> <a href="https://docs.microsoft.com/en-us/sysinternals/downloads/zoomit" rel="nofollow">ZoomIt</a><br> <a href="https://docs.microsoft.com/en-us/sysinternals/downloads/bginfo" rel="nofollow">BgInfo</a></p> <h1 dir="auto">Proposed technical implementation details (optional)</h1> <p dir="auto">N/A</p>
0
<p dir="auto">Hello ,<br> when i use glide to load url picture, just like</p> <div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" Glide.with(this).load(url).placeholder(R.drawable.img_photo_fail).into(imageview);"><pre class="notranslate"> <span class="pl-smi">Glide</span>.<span class="pl-en">with</span>(<span class="pl-smi">this</span>).<span class="pl-en">load</span>(<span class="pl-s1">url</span>).<span class="pl-en">placeholder</span>(<span class="pl-smi">R</span>.<span class="pl-s1">drawable</span>.<span class="pl-s1">img_photo_fail</span>).<span class="pl-en">into</span>(<span class="pl-s1">imageview</span>);</pre></div> <p dir="auto">I find that the imageview shows the placeholder's pic instead of the url's pic at first .<br> and I click back and come in again , it's rgiht .</p> <p dir="auto">and if I use glide like this</p> <div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" Glide.with(this).load(url).into(imageview); "><pre class="notranslate"> <span class="pl-smi">Glide</span>.<span class="pl-en">with</span>(<span class="pl-smi">this</span>).<span class="pl-en">load</span>(<span class="pl-s1">url</span>).<span class="pl-en">into</span>(<span class="pl-s1">imageview</span>); </pre></div> <p dir="auto">without placehold . It can work well .</p> <p dir="auto">What can I do ? thank you .</p>
<p dir="auto">I encountered problem when using CircleImageView (<a href="https://github.com/hdodenhof/CircleImageView">https://github.com/hdodenhof/CircleImageView</a>). It also happens using CircularImageView (<a href="https://github.com/Pkmmte/CircularImageView">https://github.com/Pkmmte/CircularImageView</a>).</p> <p dir="auto">When image is loaded from memory everything works fine but when loading from disk cache CircleImageView shows placeholder image. When using RequestListener method onResourceReady is properly called but placeholder image stays.<br> If no placeholder is set image is loaded properly.</p> <p dir="auto">Glide version: 3.6.1<br> Tested on Android 4.4 and 5.0</p>
1
<p dir="auto">Forms make heavy use of GlobalKeys for getting access to the FormState and FormFieldState in order to save or validate. This is more expensive than it needs to be. All we really want is a way to grab the State object of a widget. GlobalKey comes with extra baggage.</p> <p dir="auto">See <a href="https://github.com/flutter/flutter/blob/master/examples/flutter_gallery/lib/demo/text_field_demo.dart#L62">this example</a> and <a href="https://github.com/flutter/flutter/pull/6569#issuecomment-256783236" data-hovercard-type="pull_request" data-hovercard-url="/flutter/flutter/pull/6569/hovercard">this comment</a>.</p> <p dir="auto">Something like this would be sufficient:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="class StateKey&lt;T extends State&lt;StatefulWidget&gt;&gt; extends Key { // Called when Element is mounted. void _register(Element element) { currentElement = element; } StatefulElement currentElement; T get currentState =&gt; currentElement?.state; }"><pre class="notranslate"><code class="notranslate">class StateKey&lt;T extends State&lt;StatefulWidget&gt;&gt; extends Key { // Called when Element is mounted. void _register(Element element) { currentElement = element; } StatefulElement currentElement; T get currentState =&gt; currentElement?.state; } </code></pre></div> <p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Hixie/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Hixie">@Hixie</a></p>
<p dir="auto">I have a flutter project. Inside of its <code class="notranslate">android</code> folder I have a lot of android code, including background processing classes and some native UI. I updated this code to use the new <code class="notranslate">androidX </code>packages.</p> <p dir="auto">Now, some of the plugins stopped working. A example is the <code class="notranslate">permission_handler </code>plugin.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="permissionhandler\PermissionHandlerPlugin.kt: (10, 31): Unresolved reference: ActivityCompat permissionhandler\PermissionHandlerPlugin.kt: (11, 27): Unresolved reference: content permissionhandler\PermissionHandlerPlugin.kt: (152, 37): Unresolved reference: ContextCompat permissionhandler\PermissionHandlerPlugin.kt: (191, 20): Unresolved reference: ActivityCompat permissionhandler\PermissionHandlerPlugin.kt: (235, 13): Unresolved reference: ActivityCompat`"><pre class="notranslate"><code class="notranslate">permissionhandler\PermissionHandlerPlugin.kt: (10, 31): Unresolved reference: ActivityCompat permissionhandler\PermissionHandlerPlugin.kt: (11, 27): Unresolved reference: content permissionhandler\PermissionHandlerPlugin.kt: (152, 37): Unresolved reference: ContextCompat permissionhandler\PermissionHandlerPlugin.kt: (191, 20): Unresolved reference: ActivityCompat permissionhandler\PermissionHandlerPlugin.kt: (235, 13): Unresolved reference: ActivityCompat` </code></pre></div> <p dir="auto">I believe this is because the native Android part of my app is using the AndroidX packages, since those plugins are still using the old support library. In the current state, it is impossible to me to roll back to the support library.</p> <p dir="auto">Also, when I add the <code class="notranslate">camera</code> plugin I get the following error:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error: package android.support.annotation does not exist import android.support.annotation.NonNull; ^"><pre class="notranslate"><code class="notranslate">error: package android.support.annotation does not exist import android.support.annotation.NonNull; ^ </code></pre></div> <p dir="auto">Is this a intended behavior? Can someone give me a light?</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[√] Flutter (Channel beta, v0.9.4, on Microsoft Windows [versão 10.0.17134.376], locale pt-BR) [√] Android toolchain - develop for Android devices (Android SDK 28.0.3) [√] Android Studio (version 3.2) [√] IntelliJ IDEA Community Edition (version 2018.2) [√] Connected devices (1 available) • No issues found!`"><pre class="notranslate"><code class="notranslate">[√] Flutter (Channel beta, v0.9.4, on Microsoft Windows [versão 10.0.17134.376], locale pt-BR) [√] Android toolchain - develop for Android devices (Android SDK 28.0.3) [√] Android Studio (version 3.2) [√] IntelliJ IDEA Community Edition (version 2018.2) [√] Connected devices (1 available) • No issues found!` </code></pre></div>
0
<h2 dir="auto">Steps to Reproduce</h2> <ol dir="auto"> <li>Connect an Oreo phone<br> <a href="https://github.com/flutter/flutter/files/2471423/maindart.pdf">maindart.pdf</a></li> </ol> <p dir="auto">to a USB 2 or greater port. I'm using a Samsung SM J727 A upgraded to Android 8.1 by AT&amp;T, but I believe user "raveesh-me" had this happen on a "Motorolla[sic] G5 Plus" on 10 Oct 18.<br> 2. Start any Flutter app in the Android Studio debugger<br> 3. Allow 3-5 minutes to pass while the app is idle. Within 60-90 seconds of the phone's screen dimming due to being idle (2 min since last touch), the app dies, and this shows up:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="F/libc (18213): Fatal signal 11 (SIGSEGV), code 128, fault addr 0x0 in tid 18324 (ple.basketnerds), pid 18213 (ple.basketnerds) *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Build fingerprint: 'samsung/j7popelteuc/j7popelteatt:8.1.0/M1AJQ/J727AUCU3BRH2:user/release-keys' Revision: '5' ABI: 'arm' pid: 18213, tid: 18324, name: ple.basketnerds &gt;&gt;&gt; com.example.basketnerds &lt;&lt;&lt; signal 11 (SIGSEGV), code 128 (SI_KERNEL), fault addr 0x0 r0 cf72c1bc r1 cf72c208 r2 18b7e092 r3 00000008 r4 cf72c458 r5 c8dfa706 r6 fe80a092 r7 d7c52122 r8 c8dfa702 r9 d376a342 sl d7c523f2 fp 18b7e092 ip cf72c1b0 sp d7c55f4a lr cbdbb779 pc f0d64b7c cpsr 60030010 backtrace: #00 pc 00018b7c /system/lib/libc.so (sigsetjmp+128) #01 pc cbdbb777 &lt;unknown&gt;"><pre class="notranslate"><code class="notranslate">F/libc (18213): Fatal signal 11 (SIGSEGV), code 128, fault addr 0x0 in tid 18324 (ple.basketnerds), pid 18213 (ple.basketnerds) *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Build fingerprint: 'samsung/j7popelteuc/j7popelteatt:8.1.0/M1AJQ/J727AUCU3BRH2:user/release-keys' Revision: '5' ABI: 'arm' pid: 18213, tid: 18324, name: ple.basketnerds &gt;&gt;&gt; com.example.basketnerds &lt;&lt;&lt; signal 11 (SIGSEGV), code 128 (SI_KERNEL), fault addr 0x0 r0 cf72c1bc r1 cf72c208 r2 18b7e092 r3 00000008 r4 cf72c458 r5 c8dfa706 r6 fe80a092 r7 d7c52122 r8 c8dfa702 r9 d376a342 sl d7c523f2 fp 18b7e092 ip cf72c1b0 sp d7c55f4a lr cbdbb779 pc f0d64b7c cpsr 60030010 backtrace: #00 pc 00018b7c /system/lib/libc.so (sigsetjmp+128) #01 pc cbdbb777 &lt;unknown&gt; </code></pre></div> <h2 dir="auto">Logs</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="//NB:did not crash under command line flutter run [ +114 ms] executing: [/home/floyd/flutterdev/flutter/] git rev-parse --abbrev-ref --symbolic @{u} [ +134 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ +1 ms] origin/master [ +1 ms] executing: [/home/floyd/flutterdev/flutter/] git rev-parse --abbrev-ref HEAD [ +29 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ ] master [ +1 ms] executing: [/home/floyd/flutterdev/flutter/] git ls-remote --get-url origin [ +57 ms] Exit code 0 from: git ls-remote --get-url origin [ +2 ms] https://github.com/flutter/flutter.git [ +2 ms] executing: [/home/floyd/flutterdev/flutter/] git log -n 1 --pretty=format:%H [ +50 ms] Exit code 0 from: git log -n 1 --pretty=format:%H [ +2 ms] 80f80ab08c0dad8551c91087cd1017aba094d22c [ +5 ms] executing: [/home/floyd/flutterdev/flutter/] git log -n 1 --pretty=format:%ar [ +35 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar [ +2 ms] 2 hours ago [ +2 ms] executing: [/home/floyd/flutterdev/flutter/] git describe --match v*.*.* --first-parent --long --tags [ +121 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags [ ] v0.10.0-34-g80f80ab08 [ +288 ms] executing: /home/floyd/bin/android-sdk/platform-tools/adb devices -l [ +37 ms] Exit code 0 from: /home/floyd/bin/android-sdk/platform-tools/adb devices -l [ ] List of devices attached 52004128ee1a45b5 device usb:1-2 product:j7popelteuc model:SAMSUNG_SM_J727A device:j7popelteatt transport_id:4 [ +984 ms] /home/floyd/bin/android-sdk/platform-tools/adb -s 52004128ee1a45b5 shell getprop [ +173 ms] ro.hardware = samsungexynos7870 [+2237 ms] Launching lib/main.dart on SAMSUNG SM J727A in debug mode... [ +91 ms] Initializing gradle... [ +46 ms] Using gradle from /home/floyd/CrossPlatformDev/basketnerds/android/gradlew. [ +572 ms] executing: /home/floyd/CrossPlatformDev/basketnerds/android/gradlew -v [+2732 ms] ------------------------------------------------------------ Gradle 4.4 ------------------------------------------------------------ Build time: 2017-12-06 09:05:06 UTC Revision: cf7821a6f79f8e2a598df21780e3ff7ce8db2b82 Groovy: 2.4.12 Ant: Apache Ant(TM) version 1.9.9 compiled on February 2 2017 JVM: 1.8.0_152-release (JetBrains s.r.o 25.152-b06) OS: Linux 4.15.0-36-generic amd64 [ +2 ms] Initializing gradle... (completed) [ +2 ms] Resolving dependencies... [ ] executing: [/home/floyd/CrossPlatformDev/basketnerds/android/] /home/floyd/CrossPlatformDev/basketnerds/android/gradlew app:properties [+3080 ms] ------------------------------------------------------------ Project :app ------------------------------------------------------------ allprojects: [project ':app'] android: com.android.build.gradle.AppExtension_Decorated@35acc1f4 androidDependencies: task ':app:androidDependencies' ant: org.gradle.api.internal.project.DefaultAntBuilder@13135d7c antBuilderFactory: org.gradle.api.internal.project.DefaultAntBuilderFactory@127abeaf archivesBaseName: app artifacts: org.gradle.api.internal.artifacts.dsl.DefaultArtifactHandler_Decorated@35022ce6 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' assembleDynamicProfile: task ':app:assembleDynamicProfile' assembleDynamicProfileUnitTest: task ':app:assembleDynamicProfileUnitTest' assembleDynamicRelease: task ':app:assembleDynamicRelease' assembleDynamicReleaseUnitTest: task ':app:assembleDynamicReleaseUnitTest' assembleProfile: task ':app:assembleProfile' assembleProfileUnitTest: task ':app:assembleProfileUnitTest' assembleRelease: task ':app:assembleRelease' assembleReleaseUnitTest: task ':app:assembleReleaseUnitTest' baseClassLoaderScope: org.gradle.api.internal.initialization.DefaultClassLoaderScope@66f2e8d3 buildDependents: task ':app:buildDependents' buildDir: /home/floyd/CrossPlatformDev/basketnerds/build/app buildFile: /home/floyd/CrossPlatformDev/basketnerds/android/app/build.gradle buildNeeded: task ':app:buildNeeded' buildOutputs: BaseVariantOutput container buildPath: : buildScriptSource: org.gradle.groovy.scripts.TextResourceScriptSource@6f03a1cc buildscript: org.gradle.api.internal.initialization.DefaultScriptHandler@284be545 bundleAppClassesDebug: task ':app:bundleAppClassesDebug' bundleAppClassesDebugAndroidTest: task ':app:bundleAppClassesDebugAndroidTest' bundleAppClassesDebugUnitTest: task ':app:bundleAppClassesDebugUnitTest' bundleAppClassesDynamicProfile: task ':app:bundleAppClassesDynamicProfile' bundleAppClassesDynamicProfileUnitTest: task ':app:bundleAppClassesDynamicProfileUnitTest' bundleAppClassesDynamicRelease: task ':app:bundleAppClassesDynamicRelease' bundleAppClassesDynamicReleaseUnitTest: task ':app:bundleAppClassesDynamicReleaseUnitTest' bundleAppClassesProfile: task ':app:bundleAppClassesProfile' bundleAppClassesProfileUnitTest: task ':app:bundleAppClassesProfileUnitTest' bundleAppClassesRelease: task ':app:bundleAppClassesRelease' bundleAppClassesReleaseUnitTest: task ':app:bundleAppClassesReleaseUnitTest' bundleDebugAndroidTestResources: task ':app:bundleDebugAndroidTestResources' bundleDebugResources: task ':app:bundleDebugResources' bundleDynamicProfileResources: task ':app:bundleDynamicProfileResources' bundleDynamicReleaseResources: task ':app:bundleDynamicReleaseResources' bundleProfileResources: task ':app:bundleProfileResources' bundleReleaseResources: task ':app:bundleReleaseResources' check: task ':app:check' checkDebugManifest: task ':app:checkDebugManifest' checkDynamicProfileManifest: task ':app:checkDynamicProfileManifest' checkDynamicReleaseManifest: task ':app:checkDynamicReleaseManifest' checkProfileManifest: task ':app:checkProfileManifest' checkReleaseManifest: task ':app:checkReleaseManifest' childProjects: {} class: class org.gradle.api.internal.project.DefaultProject_Decorated classLoaderScope: org.gradle.api.internal.initialization.DefaultClassLoaderScope@c0a89b6 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' compileDynamicProfileAidl: task ':app:compileDynamicProfileAidl' compileDynamicProfileJavaWithJavac: task ':app:compileDynamicProfileJavaWithJavac' compileDynamicProfileNdk: task ':app:compileDynamicProfileNdk' compileDynamicProfileRenderscript: task ':app:compileDynamicProfileRenderscript' compileDynamicProfileShaders: task ':app:compileDynamicProfileShaders' compileDynamicProfileSources: task ':app:compileDynamicProfileSources' compileDynamicProfileUnitTestJavaWithJavac: task ':app:compileDynamicProfileUnitTestJavaWithJavac' compileDynamicProfileUnitTestSources: task ':app:compileDynamicProfileUnitTestSources' compileDynamicReleaseAidl: task ':app:compileDynamicReleaseAidl' compileDynamicReleaseJavaWithJavac: task ':app:compileDynamicReleaseJavaWithJavac' compileDynamicReleaseNdk: task ':app:compileDynamicReleaseNdk' compileDynamicReleaseRenderscript: task ':app:compileDynamicReleaseRenderscript' compileDynamicReleaseShaders: task ':app:compileDynamicReleaseShaders' compileDynamicReleaseSources: task ':app:compileDynamicReleaseSources' compileDynamicReleaseUnitTestJavaWithJavac: task ':app:compileDynamicReleaseUnitTestJavaWithJavac' compileDynamicReleaseUnitTestSources: task ':app:compileDynamicReleaseUnitTestSources' 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' components: SoftwareComponentInternal set configurationActions: org.gradle.configuration.project.DefaultProjectConfigurationActionContainer@7d4f5c94 configurationTargetIdentifier: org.gradle.configuration.ConfigurationTargetIdentifier$1@f309f30 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@78a6325e copyFlutterAssetsDebug: task ':app:copyFlutterAssetsDebug' copyFlutterAssetsDynamicProfile: task ':app:copyFlutterAssetsDynamicProfile' copyFlutterAssetsDynamicRelease: task ':app:copyFlutterAssetsDynamicRelease' copyFlutterAssetsProfile: task ':app:copyFlutterAssetsProfile' copyFlutterAssetsRelease: task ':app:copyFlutterAssetsRelease' createDebugCompatibleScreenManifests: task ':app:createDebugCompatibleScreenManifests' createDynamicProfileCompatibleScreenManifests: task ':app:createDynamicProfileCompatibleScreenManifests' createDynamicReleaseCompatibleScreenManifests: task ':app:createDynamicReleaseCompatibleScreenManifests' createProfileCompatibleScreenManifests: task ':app:createProfileCompatibleScreenManifests' createReleaseCompatibleScreenManifests: task ':app:createReleaseCompatibleScreenManifests' defaultArtifacts: org.gradle.api.internal.plugins.DefaultArtifactPublicationSet_Decorated@203953c5 defaultTasks: [] deferredProjectConfiguration: org.gradle.api.internal.project.DeferredProjectConfiguration@279500aa dependencies: org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler_Decorated@2cd7d277 depth: 1 description: null deviceAndroidTest: task ':app:deviceAndroidTest' deviceCheck: task ':app:deviceCheck' displayName: project ':app' distsDir: /home/floyd/CrossPlatformDev/basketnerds/build/app/distributions distsDirName: distributions docsDir: /home/floyd/CrossPlatformDev/basketnerds/build/app/docs docsDirName: docs ext: org.gradle.api.internal.plugins.DefaultExtraPropertiesExtension@652a3171 extensions: org.gradle.api.internal.plugins.DefaultConvention@78a6325e extractProguardFiles: task ':app:extractProguardFiles' fileOperations: org.gradle.api.internal.file.DefaultFileOperations@f67e16a fileResolver: org.gradle.api.internal.file.BaseDirFileResolver@78307c flutter: FlutterExtension_Decorated@122e1e6e flutterBuildDebug: task ':app:flutterBuildDebug' flutterBuildDynamicProfile: task ':app:flutterBuildDynamicProfile' flutterBuildDynamicRelease: task ':app:flutterBuildDynamicRelease' flutterBuildProfile: task ':app:flutterBuildProfile' flutterBuildRelease: task ':app:flutterBuildRelease' flutterBuildX86Jar: task ':app:flutterBuildX86Jar' 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' generateDebugResValues: task ':app:generateDebugResValues' generateDebugResources: task ':app:generateDebugResources' generateDebugSources: task ':app:generateDebugSources' generateDynamicProfileAssets: task ':app:generateDynamicProfileAssets' generateDynamicProfileBuildConfig: task ':app:generateDynamicProfileBuildConfig' generateDynamicProfileResValues: task ':app:generateDynamicProfileResValues' generateDynamicProfileResources: task ':app:generateDynamicProfileResources' generateDynamicProfileSources: task ':app:generateDynamicProfileSources' generateDynamicReleaseAssets: task ':app:generateDynamicReleaseAssets' generateDynamicReleaseBuildConfig: task ':app:generateDynamicReleaseBuildConfig' generateDynamicReleaseResValues: task ':app:generateDynamicReleaseResValues' generateDynamicReleaseResources: task ':app:generateDynamicReleaseResources' generateDynamicReleaseSources: task ':app:generateDynamicReleaseSources' generateProfileAssets: task ':app:generateProfileAssets' generateProfileBuildConfig: task ':app:generateProfileBuildConfig' generateProfileResValues: task ':app:generateProfileResValues' generateProfileResources: task ':app:generateProfileResources' generateProfileSources: task ':app:generateProfileSources' generateReleaseAssets: task ':app:generateReleaseAssets' generateReleaseBuildConfig: task ':app:generateReleaseBuildConfig' generateReleaseResValues: task ':app:generateReleaseResValues' generateReleaseResources: task ':app:generateReleaseResources' generateReleaseSources: task ':app:generateReleaseSources' gradle: build 'android' group: android identityPath: :app inheritedScope: org.gradle.api.internal.ExtensibleDynamicObject$InheritedDynamicObject@26bb04e3 installDebug: task ':app:installDebug' installDebugAndroidTest: task ':app:installDebugAndroidTest' installDynamicProfile: task ':app:installDynamicProfile' installDynamicRelease: task ':app:installDynamicRelease' installProfile: task ':app:installProfile' installRelease: task ':app:installRelease' javaPreCompileDebug: task ':app:javaPreCompileDebug' javaPreCompileDebugAndroidTest: task ':app:javaPreCompileDebugAndroidTest' javaPreCompileDebugUnitTest: task ':app:javaPreCompileDebugUnitTest' javaPreCompileDynamicProfile: task ':app:javaPreCompileDynamicProfile' javaPreCompileDynamicProfileUnitTest: task ':app:javaPreCompileDynamicProfileUnitTest' javaPreCompileDynamicRelease: task ':app:javaPreCompileDynamicRelease' javaPreCompileDynamicReleaseUnitTest: task ':app:javaPreCompileDynamicReleaseUnitTest' javaPreCompileProfile: task ':app:javaPreCompileProfile' javaPreCompileProfileUnitTest: task ':app:javaPreCompileProfileUnitTest' javaPreCompileRelease: task ':app:javaPreCompileRelease' javaPreCompileReleaseUnitTest: task ':app:javaPreCompileReleaseUnitTest' layout: org.gradle.api.internal.file.DefaultProjectLayout@1667ddef libsDir: /home/floyd/CrossPlatformDev/basketnerds/build/app/libs libsDirName: libs lint: task ':app:lint' lintDebug: task ':app:lintDebug' lintDynamicProfile: task ':app:lintDynamicProfile' lintDynamicRelease: task ':app:lintDynamicRelease' lintProfile: task ':app:lintProfile' lintRelease: task ':app:lintRelease' lintVitalRelease: task ':app:lintVitalRelease' logger: org.gradle.internal.logging.slf4j.OutputEventListenerBackedLogger@1b4595d1 logging: org.gradle.internal.logging.services.DefaultLoggingManager@575de48f mainApkListPersistenceDebug: task ':app:mainApkListPersistenceDebug' mainApkListPersistenceDebugAndroidTest: task ':app:mainApkListPersistenceDebugAndroidTest' mainApkListPersistenceDynamicProfile: task ':app:mainApkListPersistenceDynamicProfile' mainApkListPersistenceDynamicRelease: task ':app:mainApkListPersistenceDynamicRelease' mainApkListPersistenceProfile: task ':app:mainApkListPersistenceProfile' mainApkListPersistenceRelease: task ':app:mainApkListPersistenceRelease' 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' mergeDynamicProfileAssets: task ':app:mergeDynamicProfileAssets' mergeDynamicProfileJniLibFolders: task ':app:mergeDynamicProfileJniLibFolders' mergeDynamicProfileResources: task ':app:mergeDynamicProfileResources' mergeDynamicProfileShaders: task ':app:mergeDynamicProfileShaders' mergeDynamicReleaseAssets: task ':app:mergeDynamicReleaseAssets' mergeDynamicReleaseJniLibFolders: task ':app:mergeDynamicReleaseJniLibFolders' mergeDynamicReleaseResources: task ':app:mergeDynamicReleaseResources' mergeDynamicReleaseShaders: task ':app:mergeDynamicReleaseShaders' 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' mockableAndroidJar: task ':app:mockableAndroidJar' modelRegistry: org.gradle.model.internal.registry.DefaultModelRegistry@35e25d64 modelSchemaStore: org.gradle.model.internal.manage.schema.extract.DefaultModelSchemaStore@c61b71e module: org.gradle.api.internal.artifacts.ProjectBackedModule@153d54ec name: app normalization: org.gradle.normalization.internal.DefaultInputNormalizationHandler_Decorated@4b80db27 objects: org.gradle.api.internal.model.DefaultObjectFactory@63a0ef1d org.gradle.jvmargs: -Xmx1536M packageDebug: task ':app:packageDebug' packageDebugAndroidTest: task ':app:packageDebugAndroidTest' packageDynamicProfile: task ':app:packageDynamicProfile' packageDynamicRelease: task ':app:packageDynamicRelease' packageProfile: task ':app:packageProfile' packageRelease: task ':app:packageRelease' parent: root project 'android' parentIdentifier: root project 'android' path: :app platformAttrExtractor: task ':app:platformAttrExtractor' pluginManager: org.gradle.api.internal.plugins.DefaultPluginManager_Decorated@5b61067a plugins: [org.gradle.api.plugins.HelpTasksPlugin@7155f409, com.android.build.gradle.api.AndroidBasePlugin@3762cc04, org.gradle.language.base.plugins.LifecycleBasePlugin@3e1f53ca, org.gradle.api.plugins.BasePlugin@659ea255, org.gradle.api.plugins.ReportingBasePlugin@791d1d76, org.gradle.platform.base.plugins.ComponentBasePlugin@433a2431, org.gradle.language.base.plugins.LanguageBasePlugin@525d778d, org.gradle.platform.base.plugins.BinaryBasePlugin@737b7bb5, org.gradle.api.plugins.JavaBasePlugin@7e3e890e, com.android.build.gradle.AppPlugin@75cbb3b7, FlutterPlugin@763973f3] preBuild: task ':app:preBuild' preDebugAndroidTestBuild: task ':app:preDebugAndroidTestBuild' preDebugBuild: task ':app:preDebugBuild' preDebugUnitTestBuild: task ':app:preDebugUnitTestBuild' preDynamicProfileBuild: task ':app:preDynamicProfileBuild' preDynamicProfileUnitTestBuild: task ':app:preDynamicProfileUnitTestBuild' preDynamicReleaseBuild: task ':app:preDynamicReleaseBuild' preDynamicReleaseUnitTestBuild: task ':app:preDynamicReleaseUnitTestBuild' preProfileBuild: task ':app:preProfileBuild' preProfileUnitTestBuild: task ':app:preProfileUnitTestBuild' preReleaseBuild: task ':app:preReleaseBuild' preReleaseUnitTestBuild: task ':app:preReleaseUnitTestBuild' prepareLintJar: task ':app:prepareLintJar' preparePUBLISHED_DEXDebugAndroidTestForPublishing: task ':app:preparePUBLISHED_DEXDebugAndroidTestForPublishing' preparePUBLISHED_DEXDebugForPublishing: task ':app:preparePUBLISHED_DEXDebugForPublishing' preparePUBLISHED_DEXDynamicProfileForPublishing: task ':app:preparePUBLISHED_DEXDynamicProfileForPublishing' preparePUBLISHED_DEXDynamicReleaseForPublishing: task ':app:preparePUBLISHED_DEXDynamicReleaseForPublishing' preparePUBLISHED_DEXProfileForPublishing: task ':app:preparePUBLISHED_DEXProfileForPublishing' preparePUBLISHED_DEXReleaseForPublishing: task ':app:preparePUBLISHED_DEXReleaseForPublishing' preparePUBLISHED_JAVA_RESDebugAndroidTestForPublishing: task ':app:preparePUBLISHED_JAVA_RESDebugAndroidTestForPublishing' preparePUBLISHED_JAVA_RESDebugForPublishing: task ':app:preparePUBLISHED_JAVA_RESDebugForPublishing' preparePUBLISHED_JAVA_RESDynamicProfileForPublishing: task ':app:preparePUBLISHED_JAVA_RESDynamicProfileForPublishing' preparePUBLISHED_JAVA_RESDynamicReleaseForPublishing: task ':app:preparePUBLISHED_JAVA_RESDynamicReleaseForPublishing' preparePUBLISHED_JAVA_RESProfileForPublishing: task ':app:preparePUBLISHED_JAVA_RESProfileForPublishing' preparePUBLISHED_JAVA_RESReleaseForPublishing: task ':app:preparePUBLISHED_JAVA_RESReleaseForPublishing' preparePUBLISHED_NATIVE_LIBSDebugAndroidTestForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSDebugAndroidTestForPublishing' preparePUBLISHED_NATIVE_LIBSDebugForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSDebugForPublishing' preparePUBLISHED_NATIVE_LIBSDynamicProfileForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSDynamicProfileForPublishing' preparePUBLISHED_NATIVE_LIBSDynamicReleaseForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSDynamicReleaseForPublishing' preparePUBLISHED_NATIVE_LIBSProfileForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSProfileForPublishing' preparePUBLISHED_NATIVE_LIBSReleaseForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSReleaseForPublishing' 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' processDynamicProfileJavaRes: task ':app:processDynamicProfileJavaRes' processDynamicProfileManifest: task ':app:processDynamicProfileManifest' processDynamicProfileResources: task ':app:processDynamicProfileResources' processDynamicProfileUnitTestJavaRes: task ':app:processDynamicProfileUnitTestJavaRes' processDynamicReleaseJavaRes: task ':app:processDynamicReleaseJavaRes' processDynamicReleaseManifest: task ':app:processDynamicReleaseManifest' processDynamicReleaseResources: task ':app:processDynamicReleaseResources' processDynamicReleaseUnitTestJavaRes: task ':app:processDynamicReleaseUnitTestJavaRes' processOperations: org.gradle.api.internal.file.DefaultFileOperations@f67e16a 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.BuildOperationCrossProjectConfigurator@7c4f690f projectDir: /home/floyd/CrossPlatformDev/basketnerds/android/app projectEvaluationBroadcaster: ProjectEvaluationListener broadcast projectEvaluator: org.gradle.configuration.project.LifecycleProjectEvaluator@31dbcc42 projectPath: :app projectRegistry: org.gradle.api.internal.project.DefaultProjectRegistry@55671563 properties: {...} providers: org.gradle.api.internal.provider.DefaultProviderFactory@3faaa98a reportBuildArtifactsDebug: task ':app:reportBuildArtifactsDebug' reportBuildArtifactsDynamicProfile: task ':app:reportBuildArtifactsDynamicProfile' reportBuildArtifactsDynamicRelease: task ':app:reportBuildArtifactsDynamicRelease' reportBuildArtifactsProfile: task ':app:reportBuildArtifactsProfile' reportBuildArtifactsRelease: task ':app:reportBuildArtifactsRelease' reporting: org.gradle.api.reporting.ReportingExtension_Decorated@6e69b63 reportsDir: /home/floyd/CrossPlatformDev/basketnerds/build/app/reports repositories: repository container resolveConfigAttr: task ':app:resolveConfigAttr' resourceLoader: org.gradle.internal.resource.transfer.DefaultUriTextResourceLoader@1669da1 resources: org.gradle.api.internal.resources.DefaultResourceHandler@6e30f813 rootDir: /home/floyd/CrossPlatformDev/basketnerds/android rootProject: root project 'android' script: false scriptHandlerFactory: org.gradle.api.internal.initialization.DefaultScriptHandlerFactory@39124bb scriptPluginFactory: org.gradle.configuration.ScriptPluginFactorySelector@311e8a29 serviceRegistryFactory: org.gradle.internal.service.scopes.ProjectScopeServices$4@4a0923e services: ProjectScopeServices signingReport: task ':app:signingReport' sourceCompatibility: 1.8 sourceSets: SourceSet container splitsDiscoveryTaskDebug: task ':app:splitsDiscoveryTaskDebug' splitsDiscoveryTaskDynamicProfile: task ':app:splitsDiscoveryTaskDynamicProfile' splitsDiscoveryTaskDynamicRelease: task ':app:splitsDiscoveryTaskDynamicRelease' splitsDiscoveryTaskProfile: task ':app:splitsDiscoveryTaskProfile' splitsDiscoveryTaskRelease: task ':app:splitsDiscoveryTaskRelease' standardOutputCapture: org.gradle.internal.logging.services.DefaultLoggingManager@575de48f state: project state 'EXECUTED' status: integration subprojects: [] targetCompatibility: 1.8 tasks: task set test: task ':app:test' testDebugUnitTest: task ':app:testDebugUnitTest' testDynamicProfileUnitTest: task ':app:testDynamicProfileUnitTest' testDynamicReleaseUnitTest: task ':app:testDynamicReleaseUnitTest' testProfileUnitTest: task ':app:testProfileUnitTest' testReleaseUnitTest: task ':app:testReleaseUnitTest' testReportDir: /home/floyd/CrossPlatformDev/basketnerds/build/app/reports/tests testReportDirName: tests testResultsDir: /home/floyd/CrossPlatformDev/basketnerds/build/app/test-results testResultsDirName: test-results transformClassesWithDexBuilderForDebug: task ':app:transformClassesWithDexBuilderForDebug' transformClassesWithDexBuilderForDebugAndroidTest: task ':app:transformClassesWithDexBuilderForDebugAndroidTest' transformClassesWithDexBuilderForDynamicProfile: task ':app:transformClassesWithDexBuilderForDynamicProfile' transformClassesWithDexBuilderForDynamicRelease: task ':app:transformClassesWithDexBuilderForDynamicRelease' transformClassesWithDexBuilderForProfile: task ':app:transformClassesWithDexBuilderForProfile' transformClassesWithDexBuilderForRelease: task ':app:transformClassesWithDexBuilderForRelease' transformDexArchiveWithDexMergerForDebug: task ':app:transformDexArchiveWithDexMergerForDebug' transformDexArchiveWithDexMergerForDebugAndroidTest: task ':app:transformDexArchiveWithDexMergerForDebugAndroidTest' transformDexArchiveWithDexMergerForDynamicProfile: task ':app:transformDexArchiveWithDexMergerForDynamicProfile' transformDexArchiveWithDexMergerForDynamicRelease: task ':app:transformDexArchiveWithDexMergerForDynamicRelease' transformDexArchiveWithDexMergerForProfile: task ':app:transformDexArchiveWithDexMergerForProfile' transformDexArchiveWithDexMergerForRelease: task ':app:transformDexArchiveWithDexMergerForRelease' transformDexArchiveWithExternalLibsDexMergerForDebug: task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug' transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest: task ':app:transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest' transformDexArchiveWithExternalLibsDexMergerForDynamicProfile: task ':app:transformDexArchiveWithExternalLibsDexMergerForDynamicProfile' transformDexArchiveWithExternalLibsDexMergerForDynamicRelease: task ':app:transformDexArchiveWithExternalLibsDexMergerForDynamicRelease' transformDexArchiveWithExternalLibsDexMergerForProfile: task ':app:transformDexArchiveWithExternalLibsDexMergerForProfile' transformDexArchiveWithExternalLibsDexMergerForRelease: task ':app:transformDexArchiveWithExternalLibsDexMergerForRelease' transformNativeLibsWithMergeJniLibsForDebug: task ':app:transformNativeLibsWithMergeJniLibsForDebug' transformNativeLibsWithMergeJniLibsForDebugAndroidTest: task ':app:transformNativeLibsWithMergeJniLibsForDebugAndroidTest' transformNativeLibsWithMergeJniLibsForDynamicProfile: task ':app:transformNativeLibsWithMergeJniLibsForDynamicProfile' transformNativeLibsWithMergeJniLibsForDynamicRelease: task ':app:transformNativeLibsWithMergeJniLibsForDynamicRelease' transformNativeLibsWithMergeJniLibsForProfile: task ':app:transformNativeLibsWithMergeJniLibsForProfile' transformNativeLibsWithMergeJniLibsForRelease: task ':app:transformNativeLibsWithMergeJniLibsForRelease' transformResourcesWithMergeJavaResForDebug: task ':app:transformResourcesWithMergeJavaResForDebug' transformResourcesWithMergeJavaResForDebugAndroidTest: task ':app:transformResourcesWithMergeJavaResForDebugAndroidTest' transformResourcesWithMergeJavaResForDebugUnitTest: task ':app:transformResourcesWithMergeJavaResForDebugUnitTest' transformResourcesWithMergeJavaResForDynamicProfile: task ':app:transformResourcesWithMergeJavaResForDynamicProfile' transformResourcesWithMergeJavaResForDynamicProfileUnitTest: task ':app:transformResourcesWithMergeJavaResForDynamicProfileUnitTest' transformResourcesWithMergeJavaResForDynamicRelease: task ':app:transformResourcesWithMergeJavaResForDynamicRelease' transformResourcesWithMergeJavaResForDynamicReleaseUnitTest: task ':app:transformResourcesWithMergeJavaResForDynamicReleaseUnitTest' 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' uninstallDynamicProfile: task ':app:uninstallDynamicProfile' uninstallDynamicRelease: task ':app:uninstallDynamicRelease' uninstallProfile: task ':app:uninstallProfile' uninstallRelease: task ':app:uninstallRelease' validateSigningDebug: task ':app:validateSigningDebug' validateSigningDebugAndroidTest: task ':app:validateSigningDebugAndroidTest' validateSigningDynamicProfile: task ':app:validateSigningDynamicProfile' validateSigningDynamicRelease: task ':app:validateSigningDynamicRelease' validateSigningProfile: task ':app:validateSigningProfile' validateSigningRelease: task ':app:validateSigningRelease' version: unspecified writeDebugApplicationId: task ':app:writeDebugApplicationId' writeDynamicProfileApplicationId: task ':app:writeDynamicProfileApplicationId' writeDynamicReleaseApplicationId: task ':app:writeDynamicReleaseApplicationId' writeProfileApplicationId: task ':app:writeProfileApplicationId' writeReleaseApplicationId: task ':app:writeReleaseApplicationId' 1 actionable task: 1 executed [ +15 ms] executing: [/home/floyd/CrossPlatformDev/basketnerds/android/] /home/floyd/CrossPlatformDev/basketnerds/android/gradlew app:tasks --all [+3184 ms] ------------------------------------------------------------ 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. assembleDynamicProfile - Assembles all DynamicProfile builds. assembleDynamicRelease - Assembles all DynamicRelease 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. clean - Deletes the build directory. cleanBuildCache - Deletes the build cache directory. compileDebugAndroidTestSources compileDebugSources compileDebugUnitTestSources compileDynamicProfileSources compileDynamicProfileUnitTestSources compileDynamicReleaseSources compileDynamicReleaseUnitTestSources compileProfileSources compileProfileUnitTestSources compileReleaseSources compileReleaseUnitTestSources mockableAndroidJar - Creates a version of android.jar that's suitable for unit tests. 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. installDynamicProfile - Installs the DynamicProfile build. installDynamicRelease - Installs the DynamicRelease 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. uninstallDynamicProfile - Uninstalls the DynamicProfile build. uninstallDynamicRelease - Uninstalls the DynamicRelease 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. lintDynamicProfile - Runs lint on the DynamicProfile build. lintDynamicRelease - Runs lint on the DynamicRelease 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. testDynamicProfileUnitTest - Run unit tests for the dynamicProfile build. testDynamicReleaseUnitTest - Run unit tests for the dynamicRelease build. testProfileUnitTest - Run unit tests for the profile build. testReleaseUnitTest - Run unit tests for the release build. Other tasks ----------- assembleDebugAndroidTest assembleDebugUnitTest assembleDynamicProfileUnitTest assembleDynamicReleaseUnitTest assembleProfileUnitTest assembleReleaseUnitTest bundleAppClassesDebug bundleAppClassesDebugAndroidTest bundleAppClassesDebugUnitTest bundleAppClassesDynamicProfile bundleAppClassesDynamicProfileUnitTest bundleAppClassesDynamicRelease bundleAppClassesDynamicReleaseUnitTest bundleAppClassesProfile bundleAppClassesProfileUnitTest bundleAppClassesRelease bundleAppClassesReleaseUnitTest bundleDebugAndroidTestResources bundleDebugResources bundleDynamicProfileResources bundleDynamicReleaseResources bundleProfileResources bundleReleaseResources checkDebugManifest checkDynamicProfileManifest checkDynamicReleaseManifest checkProfileManifest checkReleaseManifest compileDebugAidl compileDebugAndroidTestAidl compileDebugAndroidTestJavaWithJavac compileDebugAndroidTestNdk compileDebugAndroidTestRenderscript compileDebugAndroidTestShaders compileDebugJavaWithJavac compileDebugNdk compileDebugRenderscript compileDebugShaders compileDebugUnitTestJavaWithJavac compileDynamicProfileAidl compileDynamicProfileJavaWithJavac compileDynamicProfileNdk compileDynamicProfileRenderscript compileDynamicProfileShaders compileDynamicProfileUnitTestJavaWithJavac compileDynamicReleaseAidl compileDynamicReleaseJavaWithJavac compileDynamicReleaseNdk compileDynamicReleaseRenderscript compileDynamicReleaseShaders compileDynamicReleaseUnitTestJavaWithJavac compileLint compileProfileAidl compileProfileJavaWithJavac compileProfileNdk compileProfileRenderscript compileProfileShaders compileProfileUnitTestJavaWithJavac compileReleaseAidl compileReleaseJavaWithJavac compileReleaseNdk compileReleaseRenderscript compileReleaseShaders compileReleaseUnitTestJavaWithJavac consumeConfigAttr copyFlutterAssetsDebug copyFlutterAssetsDynamicProfile copyFlutterAssetsDynamicRelease copyFlutterAssetsProfile copyFlutterAssetsRelease createDebugCompatibleScreenManifests createDynamicProfileCompatibleScreenManifests createDynamicReleaseCompatibleScreenManifests createProfileCompatibleScreenManifests createReleaseCompatibleScreenManifests extractProguardFiles flutterBuildDebug flutterBuildDynamicProfile flutterBuildDynamicRelease flutterBuildProfile flutterBuildRelease flutterBuildX86Jar generateDebugAndroidTestAssets generateDebugAndroidTestBuildConfig generateDebugAndroidTestResources generateDebugAndroidTestResValues generateDebugAndroidTestSources generateDebugAssets generateDebugBuildConfig generateDebugResources generateDebugResValues generateDebugSources generateDynamicProfileAssets generateDynamicProfileBuildConfig generateDynamicProfileResources generateDynamicProfileResValues generateDynamicProfileSources generateDynamicReleaseAssets generateDynamicReleaseBuildConfig generateDynamicReleaseResources generateDynamicReleaseResValues generateDynamicReleaseSources generateProfileAssets generateProfileBuildConfig generateProfileResources generateProfileResValues generateProfileSources generateReleaseAssets generateReleaseBuildConfig generateReleaseResources generateReleaseResValues generateReleaseSources javaPreCompileDebug javaPreCompileDebugAndroidTest javaPreCompileDebugUnitTest javaPreCompileDynamicProfile javaPreCompileDynamicProfileUnitTest javaPreCompileDynamicRelease javaPreCompileDynamicReleaseUnitTest javaPreCompileProfile javaPreCompileProfileUnitTest javaPreCompileRelease javaPreCompileReleaseUnitTest mainApkListPersistenceDebug mainApkListPersistenceDebugAndroidTest mainApkListPersistenceDynamicProfile mainApkListPersistenceDynamicRelease mainApkListPersistenceProfile mainApkListPersistenceRelease mergeDebugAndroidTestAssets mergeDebugAndroidTestJniLibFolders mergeDebugAndroidTestResources mergeDebugAndroidTestShaders mergeDebugAssets mergeDebugJniLibFolders mergeDebugResources mergeDebugShaders mergeDynamicProfileAssets mergeDynamicProfileJniLibFolders mergeDynamicProfileResources mergeDynamicProfileShaders mergeDynamicReleaseAssets mergeDynamicReleaseJniLibFolders mergeDynamicReleaseResources mergeDynamicReleaseShaders mergeProfileAssets mergeProfileJniLibFolders mergeProfileResources mergeProfileShaders mergeReleaseAssets mergeReleaseJniLibFolders mergeReleaseResources mergeReleaseShaders packageDebug packageDebugAndroidTest packageDynamicProfile packageDynamicRelease packageProfile packageRelease platformAttrExtractor preBuild preDebugAndroidTestBuild preDebugBuild preDebugUnitTestBuild preDynamicProfileBuild preDynamicProfileUnitTestBuild preDynamicReleaseBuild preDynamicReleaseUnitTestBuild prepareLintJar preparePUBLISHED_DEXDebugAndroidTestForPublishing preparePUBLISHED_DEXDebugForPublishing preparePUBLISHED_DEXDynamicProfileForPublishing preparePUBLISHED_DEXDynamicReleaseForPublishing preparePUBLISHED_DEXProfileForPublishing preparePUBLISHED_DEXReleaseForPublishing preparePUBLISHED_JAVA_RESDebugAndroidTestForPublishing preparePUBLISHED_JAVA_RESDebugForPublishing preparePUBLISHED_JAVA_RESDynamicProfileForPublishing preparePUBLISHED_JAVA_RESDynamicReleaseForPublishing preparePUBLISHED_JAVA_RESProfileForPublishing preparePUBLISHED_JAVA_RESReleaseForPublishing preparePUBLISHED_NATIVE_LIBSDebugAndroidTestForPublishing preparePUBLISHED_NATIVE_LIBSDebugForPublishing preparePUBLISHED_NATIVE_LIBSDynamicProfileForPublishing preparePUBLISHED_NATIVE_LIBSDynamicReleaseForPublishing preparePUBLISHED_NATIVE_LIBSProfileForPublishing preparePUBLISHED_NATIVE_LIBSReleaseForPublishing preProfileBuild preProfileUnitTestBuild preReleaseBuild preReleaseUnitTestBuild processDebugAndroidTestJavaRes processDebugAndroidTestManifest processDebugAndroidTestResources processDebugJavaRes processDebugManifest processDebugResources processDebugUnitTestJavaRes processDynamicProfileJavaRes processDynamicProfileManifest processDynamicProfileResources processDynamicProfileUnitTestJavaRes processDynamicReleaseJavaRes processDynamicReleaseManifest processDynamicReleaseResources processDynamicReleaseUnitTestJavaRes processProfileJavaRes processProfileManifest processProfileResources processProfileUnitTestJavaRes processReleaseJavaRes processReleaseManifest processReleaseResources processReleaseUnitTestJavaRes reportBuildArtifactsDebug reportBuildArtifactsDynamicProfile reportBuildArtifactsDynamicRelease reportBuildArtifactsProfile reportBuildArtifactsRelease resolveConfigAttr splitsDiscoveryTaskDebug splitsDiscoveryTaskDynamicProfile splitsDiscoveryTaskDynamicRelease splitsDiscoveryTaskProfile splitsDiscoveryTaskRelease transformClassesWithDexBuilderForDebug transformClassesWithDexBuilderForDebugAndroidTest transformClassesWithDexBuilderForDynamicProfile transformClassesWithDexBuilderForDynamicRelease transformClassesWithDexBuilderForProfile transformClassesWithDexBuilderForRelease transformDexArchiveWithDexMergerForDebug transformDexArchiveWithDexMergerForDebugAndroidTest transformDexArchiveWithDexMergerForDynamicProfile transformDexArchiveWithDexMergerForDynamicRelease transformDexArchiveWithDexMergerForProfile transformDexArchiveWithDexMergerForRelease transformDexArchiveWithExternalLibsDexMergerForDebug transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest transformDexArchiveWithExternalLibsDexMergerForDynamicProfile transformDexArchiveWithExternalLibsDexMergerForDynamicRelease transformDexArchiveWithExternalLibsDexMergerForProfile transformDexArchiveWithExternalLibsDexMergerForRelease transformNativeLibsWithMergeJniLibsForDebug transformNativeLibsWithMergeJniLibsForDebugAndroidTest transformNativeLibsWithMergeJniLibsForDynamicProfile transformNativeLibsWithMergeJniLibsForDynamicRelease transformNativeLibsWithMergeJniLibsForProfile transformNativeLibsWithMergeJniLibsForRelease transformResourcesWithMergeJavaResForDebug transformResourcesWithMergeJavaResForDebugAndroidTest transformResourcesWithMergeJavaResForDebugUnitTest transformResourcesWithMergeJavaResForDynamicProfile transformResourcesWithMergeJavaResForDynamicProfileUnitTest transformResourcesWithMergeJavaResForDynamicRelease transformResourcesWithMergeJavaResForDynamicReleaseUnitTest transformResourcesWithMergeJavaResForProfile transformResourcesWithMergeJavaResForProfileUnitTest transformResourcesWithMergeJavaResForRelease transformResourcesWithMergeJavaResForReleaseUnitTest validateSigningDebug validateSigningDebugAndroidTest validateSigningDynamicProfile validateSigningDynamicRelease validateSigningProfile validateSigningRelease writeDebugApplicationId writeDynamicProfileApplicationId writeDynamicReleaseApplicationId writeProfileApplicationId writeReleaseApplicationId Rules ----- Pattern: clean&lt;TaskName&gt;: Cleans the output files of a task. Pattern: build&lt;ConfigurationName&gt;: Assembles the artifacts of a configuration. Pattern: upload&lt;ConfigurationName&gt;: Assembles and uploads the artifacts belonging to a configuration. 1 actionable task: 1 executed [ +27 ms] Resolving dependencies... (completed) [ +23 ms] executing: /home/floyd/bin/android-sdk/build-tools/27.0.3/aapt dump xmltree /home/floyd/CrossPlatformDev/basketnerds/build/app/outputs/apk/app.apk AndroidManifest.xml [ +92 ms] Exit code 0 from: /home/floyd/bin/android-sdk/build-tools/27.0.3/aapt dump xmltree /home/floyd/CrossPlatformDev/basketnerds/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)=&quot;1.0.0&quot; (Raw: &quot;1.0.0&quot;) A: package=&quot;com.example.basketnerds&quot; (Raw: &quot;com.example.basketnerds&quot;) E: uses-sdk (line=7) A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10 A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1b E: uses-permission (line=16) A: android:name(0x01010003)=&quot;android.permission.INTERNET&quot; (Raw: &quot;android.permission.INTERNET&quot;) E: application (line=24) A: android:label(0x01010001)=&quot;basketnerds&quot; (Raw: &quot;basketnerds&quot;) A: android:icon(0x01010002)=@0x7f020000 A: android:name(0x01010003)=&quot;io.flutter.app.FlutterApplication&quot; (Raw: &quot;io.flutter.app.FlutterApplication&quot;) A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff E: activity (line=29) A: android:theme(0x01010000)=@0x7f030000 A: android:name(0x01010003)=&quot;com.example.basketnerds.MainActivity&quot; (Raw: &quot;com.example.basketnerds.MainActivity&quot;) A: android:launchMode(0x0101001d)=(type 0x10)0x1 A: android:configChanges(0x0101001f)=(type 0x11)0x400035b4 A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10 A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff E: meta-data (line=43) A: android:name(0x01010003)=&quot;io.flutter.app.android.SplashScreenUntilFirstFrame&quot; (Raw: &quot;io.flutter.app.android.SplashScreenUntilFirstFrame&quot;) A: android:value(0x01010024)=(type 0x12)0xffffffff E: intent-filter (line=47) E: action (line=48) A: android:name(0x01010003)=&quot;android.intent.action.MAIN&quot; (Raw: &quot;android.intent.action.MAIN&quot;) E: category (line=50) A: android:name(0x01010003)=&quot;android.intent.category.LAUNCHER&quot; (Raw: &quot;android.intent.category.LAUNCHER&quot;) [ +24 ms] executing: /home/floyd/bin/android-sdk/platform-tools/adb -s 52004128ee1a45b5 shell -x logcat -v time -t 1 [ +99 ms] Exit code 0 from: /home/floyd/bin/android-sdk/platform-tools/adb -s 52004128ee1a45b5 shell -x logcat -v time -t 1 [ +2 ms] --------- beginning of main 10-11 23:00:22.220 E/adbd ( 8911): recv: OPEN 00002cd3 00000000 001a:73 68 65 6C 6C 3A 6C 6F 67 63 61 74 20 2D 76 20 74 69 6D 65 20 2D 74 20 31 00 [ +37 ms] executing: /home/floyd/bin/android-sdk/platform-tools/adb -s 52004128ee1a45b5 shell -x logcat -v time [+1342 ms] DependencyChecker: nothing is modified after 2018-10-11 22:58:53.245. [ +10 ms] executing: /home/floyd/bin/android-sdk/platform-tools/adb version [ +125 ms] Android Debug Bridge version 1.0.40 Version 4986621 Installed as /home/floyd/bin/android-sdk/platform-tools/adb [ +5 ms] executing: /home/floyd/bin/android-sdk/platform-tools/adb start-server [ +390 ms] Building APK [+1010 ms] Gradle task 'assembleDebug'... [ +4 ms] executing: [/home/floyd/CrossPlatformDev/basketnerds/android/] /home/floyd/CrossPlatformDev/basketnerds/android/gradlew -Pverbose=true -Ptarget=/home/floyd/CrossPlatformDev/basketnerds/lib/main.dart -Pfilesystem-scheme=org-dartlang-root assembleDebug [+3818 ms] 30 actionable tasks: 3 executed, 27 up-to-date [ +436 ms] Gradle task 'assembleDebug'... (completed) [ +178 ms] calculateSha: LocalDirectory: '/home/floyd/CrossPlatformDev/basketnerds/build/app/outputs/apk'/app.apk [+1207 ms] Built build/app/outputs/apk/debug/app-debug.apk. [ +3 ms] executing: /home/floyd/bin/android-sdk/build-tools/27.0.3/aapt dump xmltree /home/floyd/CrossPlatformDev/basketnerds/build/app/outputs/apk/app.apk AndroidManifest.xml [ +70 ms] Exit code 0 from: /home/floyd/bin/android-sdk/build-tools/27.0.3/aapt dump xmltree /home/floyd/CrossPlatformDev/basketnerds/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)=&quot;1.0.0&quot; (Raw: &quot;1.0.0&quot;) A: package=&quot;com.example.basketnerds&quot; (Raw: &quot;com.example.basketnerds&quot;) E: uses-sdk (line=7) A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10 A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1b E: uses-permission (line=16) A: android:name(0x01010003)=&quot;android.permission.INTERNET&quot; (Raw: &quot;android.permission.INTERNET&quot;) E: application (line=24) A: android:label(0x01010001)=&quot;basketnerds&quot; (Raw: &quot;basketnerds&quot;) A: android:icon(0x01010002)=@0x7f020000 A: android:name(0x01010003)=&quot;io.flutter.app.FlutterApplication&quot; (Raw: &quot;io.flutter.app.FlutterApplication&quot;) A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff E: activity (line=29) A: android:theme(0x01010000)=@0x7f030000 A: android:name(0x01010003)=&quot;com.example.basketnerds.MainActivity&quot; (Raw: &quot;com.example.basketnerds.MainActivity&quot;) A: android:launchMode(0x0101001d)=(type 0x10)0x1 A: android:configChanges(0x0101001f)=(type 0x11)0x400035b4 A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10 A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff E: meta-data (line=43) A: android:name(0x01010003)=&quot;io.flutter.app.android.SplashScreenUntilFirstFrame&quot; (Raw: &quot;io.flutter.app.android.SplashScreenUntilFirstFrame&quot;) A: android:value(0x01010024)=(type 0x12)0xffffffff E: intent-filter (line=47) E: action (line=48) A: android:name(0x01010003)=&quot;android.intent.action.MAIN&quot; (Raw: &quot;android.intent.action.MAIN&quot;) E: category (line=50) A: android:name(0x01010003)=&quot;android.intent.category.LAUNCHER&quot; (Raw: &quot;android.intent.category.LAUNCHER&quot;) [ +1 ms] Stopping app 'app.apk' on SAMSUNG SM J727A. [ +1 ms] executing: /home/floyd/bin/android-sdk/platform-tools/adb -s 52004128ee1a45b5 shell am force-stop com.example.basketnerds [ +169 ms] executing: /home/floyd/bin/android-sdk/platform-tools/adb -s 52004128ee1a45b5 shell pm list packages com.example.basketnerds [ +944 ms] package:com.example.basketnerds [ +10 ms] executing: /home/floyd/bin/android-sdk/platform-tools/adb -s 52004128ee1a45b5 shell cat /data/local/tmp/sky.com.example.basketnerds.sha1 [ +101 ms] 41e64295b87d1abac8e51532eb854376e63b3aec [ +3 ms] Latest build already installed. [ +1 ms] SAMSUNG SM J727A startApp [ +5 ms] executing: /home/floyd/bin/android-sdk/platform-tools/adb -s 52004128ee1a45b5 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 com.example.basketnerds/com.example.basketnerds.MainActivity [ +201 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=com.example.basketnerds/.MainActivity (has extras) } [ +1 ms] Waiting for observatory port to be available... [ +665 ms] Observatory URL on device: http://127.0.0.1:49399/ [ +3 ms] executing: /home/floyd/bin/android-sdk/platform-tools/adb -s 52004128ee1a45b5 forward tcp:0 tcp:49399 [ +55 ms] 38241 [ +1 ms] Forwarded host port 38241 to device port 49399 for Observatory [ +19 ms] Connecting to service protocol: http://127.0.0.1:38241/ [ +642 ms] Successfully connected to service protocol: http://127.0.0.1:38241/ [ +8 ms] getVM: {} [ +29 ms] getIsolate: {isolateId: isolates/557990879} [ +11 ms] _flutter.listViews: {isolateId: isolates/557990879} [ +220 ms] DevFS: Creating new filesystem on the device (null) [ +2 ms] _createDevFS: {fsName: basketnerds} [ +69 ms] DevFS: Created new filesystem on the device (file:///data/user/0/com.example.basketnerds/cache/basketnerdsXZHILW/basketnerds/) [ +3 ms] Updating assets [ +803 ms] Syncing files to device SAMSUNG SM J727A... [ +7 ms] DevFS: Starting sync from LocalDirectory: '/home/floyd/CrossPlatformDev/basketnerds' [ ] Scanning project files [ +17 ms] Scanning package files [ +237 ms] Scanning asset files [ +2 ms] Scanning for deleted files [ +59 ms] Compiling dart to kernel with 436 updated files [ +21 ms] /home/floyd/flutterdev/flutter/bin/cache/dart-sdk/bin/dart /home/floyd/flutterdev/flutter/bin/cache/artifacts/engine/linux-x64/frontend_server.dart.snapshot --sdk-root /home/floyd/flutterdev/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --strong --target=flutter --output-dill build/app.dill --packages /home/floyd/CrossPlatformDev/basketnerds/.packages --filesystem-scheme org-dartlang-root [ +303 ms] D/libGLESv2(24138): STS_GLApi : DTS, ODTC are not allowed for Package : com.example.basketnerds [+8024 ms] Updating files [ +577 ms] DevFS: Sync finished [ ] Syncing files to device SAMSUNG SM J727A... (completed) [ +9 ms] Synced 0.8MB. [ +6 ms] _flutter.listViews: {isolateId: isolates/557990879} [ +41 ms] Connected to _flutterView/0xeef5d30c. [ +15 ms] 🔥 To hot reload changes while running, press &quot;r&quot;. To hot restart (and rebuild state), press &quot;R&quot;. [ +6 ms] An Observatory debugger and profiler on SAMSUNG SM J727A is available at: http://127.0.0.1:38241/ [ +1 ms] For a more detailed help message, press &quot;h&quot;. To detach, press &quot;d&quot;; to quit, press &quot;q&quot;. [+4801 ms] D/ViewRootImpl@95a2daa[MainActivity](24138): ViewPostIme pointer 0 [ +57 ms] D/ViewRootImpl@95a2daa[MainActivity](24138): ViewPostIme pointer 1 [+129883 ms] D/ViewRootImpl@95a2daa[MainActivity](24138): ViewPostIme pointer 0 [ +24 ms] D/ViewRootImpl@95a2daa[MainActivity](24138): ViewPostIme pointer 1 [+4219 ms] D/ViewRootImpl@95a2daa[MainActivity](24138): MSG_WINDOW_FOCUS_CHANGED 0 [ +20 ms] D/SurfaceView(24138): windowStopped(true) false 2e51538 of ViewRootImpl@95a2daa[MainActivity] [ +1 ms] D/SurfaceView(24138): BG show() Surface(name=Background for - SurfaceView - com.example.basketnerds/com.example.basketnerds.MainActivity@2e51538@0) io.flutter.view.FlutterView{2e51538 VFE...... .F...... 0,0-720,1280} [ ] D/SurfaceView(24138): surfaceDestroyed 1 #1 io.flutter.view.FlutterView{2e51538 VFE...... .F...... 0,0-720,1280} [ +8 ms] D/SurfaceView(24138): onWindowVisibilityChanged(4) false 2e51538 of ViewRootImpl@95a2daa[MainActivity] [ +1 ms] D/SurfaceView(24138): BG show() Surface(name=Background for - SurfaceView - com.example.basketnerds/com.example.basketnerds.MainActivity@2e51538@0) io.flutter.view.FlutterView{2e51538 VFE...... .F...... 0,0-720,1280} [ +3 ms] D/OpenGLRenderer(24138): eglDestroySurface = 0xe630b8f0, 0xe0d7f800 [ +11 ms] D/ViewRootImpl@95a2daa[MainActivity](24138): Relayout returned: old=[0,0][720,1280] new=[0,0][720,1280] result=0x5 surface={valid=false 0} changed=true [ +29 ms] D/InputTransport(24138): Input channel destroyed: fd=87 [ +21 ms] D/SurfaceView(24138): onWindowVisibilityChanged(8) false 2e51538 of ViewRootImpl@95a2daa[MainActivity] [ +53 ms] D/ViewRootImpl@95a2daa[MainActivity](24138): Relayout returned: old=[0,0][720,1280] new=[0,0][720,1280] result=0x1 surface={valid=false 0} changed=false [+1491 ms] Service protocol connection closed. [ +2 ms] Lost connection to device. [ +6 ms] DevFS: Deleting filesystem on the device (file:///data/user/0/com.example.basketnerds/cache/basketnerdsXZHILW/basketnerds/) [ +1 ms] _deleteDevFS: {fsName: basketnerds} [ +267 ms] TimeoutException after 0:00:00.250000: Future not completed [ +33 ms] &quot;flutter run&quot; took 176,398ms. "><pre class="notranslate"><code class="notranslate">//NB:did not crash under command line flutter run [ +114 ms] executing: [/home/floyd/flutterdev/flutter/] git rev-parse --abbrev-ref --symbolic @{u} [ +134 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ +1 ms] origin/master [ +1 ms] executing: [/home/floyd/flutterdev/flutter/] git rev-parse --abbrev-ref HEAD [ +29 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ ] master [ +1 ms] executing: [/home/floyd/flutterdev/flutter/] git ls-remote --get-url origin [ +57 ms] Exit code 0 from: git ls-remote --get-url origin [ +2 ms] https://github.com/flutter/flutter.git [ +2 ms] executing: [/home/floyd/flutterdev/flutter/] git log -n 1 --pretty=format:%H [ +50 ms] Exit code 0 from: git log -n 1 --pretty=format:%H [ +2 ms] 80f80ab08c0dad8551c91087cd1017aba094d22c [ +5 ms] executing: [/home/floyd/flutterdev/flutter/] git log -n 1 --pretty=format:%ar [ +35 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar [ +2 ms] 2 hours ago [ +2 ms] executing: [/home/floyd/flutterdev/flutter/] git describe --match v*.*.* --first-parent --long --tags [ +121 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags [ ] v0.10.0-34-g80f80ab08 [ +288 ms] executing: /home/floyd/bin/android-sdk/platform-tools/adb devices -l [ +37 ms] Exit code 0 from: /home/floyd/bin/android-sdk/platform-tools/adb devices -l [ ] List of devices attached 52004128ee1a45b5 device usb:1-2 product:j7popelteuc model:SAMSUNG_SM_J727A device:j7popelteatt transport_id:4 [ +984 ms] /home/floyd/bin/android-sdk/platform-tools/adb -s 52004128ee1a45b5 shell getprop [ +173 ms] ro.hardware = samsungexynos7870 [+2237 ms] Launching lib/main.dart on SAMSUNG SM J727A in debug mode... [ +91 ms] Initializing gradle... [ +46 ms] Using gradle from /home/floyd/CrossPlatformDev/basketnerds/android/gradlew. [ +572 ms] executing: /home/floyd/CrossPlatformDev/basketnerds/android/gradlew -v [+2732 ms] ------------------------------------------------------------ Gradle 4.4 ------------------------------------------------------------ Build time: 2017-12-06 09:05:06 UTC Revision: cf7821a6f79f8e2a598df21780e3ff7ce8db2b82 Groovy: 2.4.12 Ant: Apache Ant(TM) version 1.9.9 compiled on February 2 2017 JVM: 1.8.0_152-release (JetBrains s.r.o 25.152-b06) OS: Linux 4.15.0-36-generic amd64 [ +2 ms] Initializing gradle... (completed) [ +2 ms] Resolving dependencies... [ ] executing: [/home/floyd/CrossPlatformDev/basketnerds/android/] /home/floyd/CrossPlatformDev/basketnerds/android/gradlew app:properties [+3080 ms] ------------------------------------------------------------ Project :app ------------------------------------------------------------ allprojects: [project ':app'] android: com.android.build.gradle.AppExtension_Decorated@35acc1f4 androidDependencies: task ':app:androidDependencies' ant: org.gradle.api.internal.project.DefaultAntBuilder@13135d7c antBuilderFactory: org.gradle.api.internal.project.DefaultAntBuilderFactory@127abeaf archivesBaseName: app artifacts: org.gradle.api.internal.artifacts.dsl.DefaultArtifactHandler_Decorated@35022ce6 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' assembleDynamicProfile: task ':app:assembleDynamicProfile' assembleDynamicProfileUnitTest: task ':app:assembleDynamicProfileUnitTest' assembleDynamicRelease: task ':app:assembleDynamicRelease' assembleDynamicReleaseUnitTest: task ':app:assembleDynamicReleaseUnitTest' assembleProfile: task ':app:assembleProfile' assembleProfileUnitTest: task ':app:assembleProfileUnitTest' assembleRelease: task ':app:assembleRelease' assembleReleaseUnitTest: task ':app:assembleReleaseUnitTest' baseClassLoaderScope: org.gradle.api.internal.initialization.DefaultClassLoaderScope@66f2e8d3 buildDependents: task ':app:buildDependents' buildDir: /home/floyd/CrossPlatformDev/basketnerds/build/app buildFile: /home/floyd/CrossPlatformDev/basketnerds/android/app/build.gradle buildNeeded: task ':app:buildNeeded' buildOutputs: BaseVariantOutput container buildPath: : buildScriptSource: org.gradle.groovy.scripts.TextResourceScriptSource@6f03a1cc buildscript: org.gradle.api.internal.initialization.DefaultScriptHandler@284be545 bundleAppClassesDebug: task ':app:bundleAppClassesDebug' bundleAppClassesDebugAndroidTest: task ':app:bundleAppClassesDebugAndroidTest' bundleAppClassesDebugUnitTest: task ':app:bundleAppClassesDebugUnitTest' bundleAppClassesDynamicProfile: task ':app:bundleAppClassesDynamicProfile' bundleAppClassesDynamicProfileUnitTest: task ':app:bundleAppClassesDynamicProfileUnitTest' bundleAppClassesDynamicRelease: task ':app:bundleAppClassesDynamicRelease' bundleAppClassesDynamicReleaseUnitTest: task ':app:bundleAppClassesDynamicReleaseUnitTest' bundleAppClassesProfile: task ':app:bundleAppClassesProfile' bundleAppClassesProfileUnitTest: task ':app:bundleAppClassesProfileUnitTest' bundleAppClassesRelease: task ':app:bundleAppClassesRelease' bundleAppClassesReleaseUnitTest: task ':app:bundleAppClassesReleaseUnitTest' bundleDebugAndroidTestResources: task ':app:bundleDebugAndroidTestResources' bundleDebugResources: task ':app:bundleDebugResources' bundleDynamicProfileResources: task ':app:bundleDynamicProfileResources' bundleDynamicReleaseResources: task ':app:bundleDynamicReleaseResources' bundleProfileResources: task ':app:bundleProfileResources' bundleReleaseResources: task ':app:bundleReleaseResources' check: task ':app:check' checkDebugManifest: task ':app:checkDebugManifest' checkDynamicProfileManifest: task ':app:checkDynamicProfileManifest' checkDynamicReleaseManifest: task ':app:checkDynamicReleaseManifest' checkProfileManifest: task ':app:checkProfileManifest' checkReleaseManifest: task ':app:checkReleaseManifest' childProjects: {} class: class org.gradle.api.internal.project.DefaultProject_Decorated classLoaderScope: org.gradle.api.internal.initialization.DefaultClassLoaderScope@c0a89b6 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' compileDynamicProfileAidl: task ':app:compileDynamicProfileAidl' compileDynamicProfileJavaWithJavac: task ':app:compileDynamicProfileJavaWithJavac' compileDynamicProfileNdk: task ':app:compileDynamicProfileNdk' compileDynamicProfileRenderscript: task ':app:compileDynamicProfileRenderscript' compileDynamicProfileShaders: task ':app:compileDynamicProfileShaders' compileDynamicProfileSources: task ':app:compileDynamicProfileSources' compileDynamicProfileUnitTestJavaWithJavac: task ':app:compileDynamicProfileUnitTestJavaWithJavac' compileDynamicProfileUnitTestSources: task ':app:compileDynamicProfileUnitTestSources' compileDynamicReleaseAidl: task ':app:compileDynamicReleaseAidl' compileDynamicReleaseJavaWithJavac: task ':app:compileDynamicReleaseJavaWithJavac' compileDynamicReleaseNdk: task ':app:compileDynamicReleaseNdk' compileDynamicReleaseRenderscript: task ':app:compileDynamicReleaseRenderscript' compileDynamicReleaseShaders: task ':app:compileDynamicReleaseShaders' compileDynamicReleaseSources: task ':app:compileDynamicReleaseSources' compileDynamicReleaseUnitTestJavaWithJavac: task ':app:compileDynamicReleaseUnitTestJavaWithJavac' compileDynamicReleaseUnitTestSources: task ':app:compileDynamicReleaseUnitTestSources' 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' components: SoftwareComponentInternal set configurationActions: org.gradle.configuration.project.DefaultProjectConfigurationActionContainer@7d4f5c94 configurationTargetIdentifier: org.gradle.configuration.ConfigurationTargetIdentifier$1@f309f30 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@78a6325e copyFlutterAssetsDebug: task ':app:copyFlutterAssetsDebug' copyFlutterAssetsDynamicProfile: task ':app:copyFlutterAssetsDynamicProfile' copyFlutterAssetsDynamicRelease: task ':app:copyFlutterAssetsDynamicRelease' copyFlutterAssetsProfile: task ':app:copyFlutterAssetsProfile' copyFlutterAssetsRelease: task ':app:copyFlutterAssetsRelease' createDebugCompatibleScreenManifests: task ':app:createDebugCompatibleScreenManifests' createDynamicProfileCompatibleScreenManifests: task ':app:createDynamicProfileCompatibleScreenManifests' createDynamicReleaseCompatibleScreenManifests: task ':app:createDynamicReleaseCompatibleScreenManifests' createProfileCompatibleScreenManifests: task ':app:createProfileCompatibleScreenManifests' createReleaseCompatibleScreenManifests: task ':app:createReleaseCompatibleScreenManifests' defaultArtifacts: org.gradle.api.internal.plugins.DefaultArtifactPublicationSet_Decorated@203953c5 defaultTasks: [] deferredProjectConfiguration: org.gradle.api.internal.project.DeferredProjectConfiguration@279500aa dependencies: org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler_Decorated@2cd7d277 depth: 1 description: null deviceAndroidTest: task ':app:deviceAndroidTest' deviceCheck: task ':app:deviceCheck' displayName: project ':app' distsDir: /home/floyd/CrossPlatformDev/basketnerds/build/app/distributions distsDirName: distributions docsDir: /home/floyd/CrossPlatformDev/basketnerds/build/app/docs docsDirName: docs ext: org.gradle.api.internal.plugins.DefaultExtraPropertiesExtension@652a3171 extensions: org.gradle.api.internal.plugins.DefaultConvention@78a6325e extractProguardFiles: task ':app:extractProguardFiles' fileOperations: org.gradle.api.internal.file.DefaultFileOperations@f67e16a fileResolver: org.gradle.api.internal.file.BaseDirFileResolver@78307c flutter: FlutterExtension_Decorated@122e1e6e flutterBuildDebug: task ':app:flutterBuildDebug' flutterBuildDynamicProfile: task ':app:flutterBuildDynamicProfile' flutterBuildDynamicRelease: task ':app:flutterBuildDynamicRelease' flutterBuildProfile: task ':app:flutterBuildProfile' flutterBuildRelease: task ':app:flutterBuildRelease' flutterBuildX86Jar: task ':app:flutterBuildX86Jar' 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' generateDebugResValues: task ':app:generateDebugResValues' generateDebugResources: task ':app:generateDebugResources' generateDebugSources: task ':app:generateDebugSources' generateDynamicProfileAssets: task ':app:generateDynamicProfileAssets' generateDynamicProfileBuildConfig: task ':app:generateDynamicProfileBuildConfig' generateDynamicProfileResValues: task ':app:generateDynamicProfileResValues' generateDynamicProfileResources: task ':app:generateDynamicProfileResources' generateDynamicProfileSources: task ':app:generateDynamicProfileSources' generateDynamicReleaseAssets: task ':app:generateDynamicReleaseAssets' generateDynamicReleaseBuildConfig: task ':app:generateDynamicReleaseBuildConfig' generateDynamicReleaseResValues: task ':app:generateDynamicReleaseResValues' generateDynamicReleaseResources: task ':app:generateDynamicReleaseResources' generateDynamicReleaseSources: task ':app:generateDynamicReleaseSources' generateProfileAssets: task ':app:generateProfileAssets' generateProfileBuildConfig: task ':app:generateProfileBuildConfig' generateProfileResValues: task ':app:generateProfileResValues' generateProfileResources: task ':app:generateProfileResources' generateProfileSources: task ':app:generateProfileSources' generateReleaseAssets: task ':app:generateReleaseAssets' generateReleaseBuildConfig: task ':app:generateReleaseBuildConfig' generateReleaseResValues: task ':app:generateReleaseResValues' generateReleaseResources: task ':app:generateReleaseResources' generateReleaseSources: task ':app:generateReleaseSources' gradle: build 'android' group: android identityPath: :app inheritedScope: org.gradle.api.internal.ExtensibleDynamicObject$InheritedDynamicObject@26bb04e3 installDebug: task ':app:installDebug' installDebugAndroidTest: task ':app:installDebugAndroidTest' installDynamicProfile: task ':app:installDynamicProfile' installDynamicRelease: task ':app:installDynamicRelease' installProfile: task ':app:installProfile' installRelease: task ':app:installRelease' javaPreCompileDebug: task ':app:javaPreCompileDebug' javaPreCompileDebugAndroidTest: task ':app:javaPreCompileDebugAndroidTest' javaPreCompileDebugUnitTest: task ':app:javaPreCompileDebugUnitTest' javaPreCompileDynamicProfile: task ':app:javaPreCompileDynamicProfile' javaPreCompileDynamicProfileUnitTest: task ':app:javaPreCompileDynamicProfileUnitTest' javaPreCompileDynamicRelease: task ':app:javaPreCompileDynamicRelease' javaPreCompileDynamicReleaseUnitTest: task ':app:javaPreCompileDynamicReleaseUnitTest' javaPreCompileProfile: task ':app:javaPreCompileProfile' javaPreCompileProfileUnitTest: task ':app:javaPreCompileProfileUnitTest' javaPreCompileRelease: task ':app:javaPreCompileRelease' javaPreCompileReleaseUnitTest: task ':app:javaPreCompileReleaseUnitTest' layout: org.gradle.api.internal.file.DefaultProjectLayout@1667ddef libsDir: /home/floyd/CrossPlatformDev/basketnerds/build/app/libs libsDirName: libs lint: task ':app:lint' lintDebug: task ':app:lintDebug' lintDynamicProfile: task ':app:lintDynamicProfile' lintDynamicRelease: task ':app:lintDynamicRelease' lintProfile: task ':app:lintProfile' lintRelease: task ':app:lintRelease' lintVitalRelease: task ':app:lintVitalRelease' logger: org.gradle.internal.logging.slf4j.OutputEventListenerBackedLogger@1b4595d1 logging: org.gradle.internal.logging.services.DefaultLoggingManager@575de48f mainApkListPersistenceDebug: task ':app:mainApkListPersistenceDebug' mainApkListPersistenceDebugAndroidTest: task ':app:mainApkListPersistenceDebugAndroidTest' mainApkListPersistenceDynamicProfile: task ':app:mainApkListPersistenceDynamicProfile' mainApkListPersistenceDynamicRelease: task ':app:mainApkListPersistenceDynamicRelease' mainApkListPersistenceProfile: task ':app:mainApkListPersistenceProfile' mainApkListPersistenceRelease: task ':app:mainApkListPersistenceRelease' 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' mergeDynamicProfileAssets: task ':app:mergeDynamicProfileAssets' mergeDynamicProfileJniLibFolders: task ':app:mergeDynamicProfileJniLibFolders' mergeDynamicProfileResources: task ':app:mergeDynamicProfileResources' mergeDynamicProfileShaders: task ':app:mergeDynamicProfileShaders' mergeDynamicReleaseAssets: task ':app:mergeDynamicReleaseAssets' mergeDynamicReleaseJniLibFolders: task ':app:mergeDynamicReleaseJniLibFolders' mergeDynamicReleaseResources: task ':app:mergeDynamicReleaseResources' mergeDynamicReleaseShaders: task ':app:mergeDynamicReleaseShaders' 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' mockableAndroidJar: task ':app:mockableAndroidJar' modelRegistry: org.gradle.model.internal.registry.DefaultModelRegistry@35e25d64 modelSchemaStore: org.gradle.model.internal.manage.schema.extract.DefaultModelSchemaStore@c61b71e module: org.gradle.api.internal.artifacts.ProjectBackedModule@153d54ec name: app normalization: org.gradle.normalization.internal.DefaultInputNormalizationHandler_Decorated@4b80db27 objects: org.gradle.api.internal.model.DefaultObjectFactory@63a0ef1d org.gradle.jvmargs: -Xmx1536M packageDebug: task ':app:packageDebug' packageDebugAndroidTest: task ':app:packageDebugAndroidTest' packageDynamicProfile: task ':app:packageDynamicProfile' packageDynamicRelease: task ':app:packageDynamicRelease' packageProfile: task ':app:packageProfile' packageRelease: task ':app:packageRelease' parent: root project 'android' parentIdentifier: root project 'android' path: :app platformAttrExtractor: task ':app:platformAttrExtractor' pluginManager: org.gradle.api.internal.plugins.DefaultPluginManager_Decorated@5b61067a plugins: [org.gradle.api.plugins.HelpTasksPlugin@7155f409, com.android.build.gradle.api.AndroidBasePlugin@3762cc04, org.gradle.language.base.plugins.LifecycleBasePlugin@3e1f53ca, org.gradle.api.plugins.BasePlugin@659ea255, org.gradle.api.plugins.ReportingBasePlugin@791d1d76, org.gradle.platform.base.plugins.ComponentBasePlugin@433a2431, org.gradle.language.base.plugins.LanguageBasePlugin@525d778d, org.gradle.platform.base.plugins.BinaryBasePlugin@737b7bb5, org.gradle.api.plugins.JavaBasePlugin@7e3e890e, com.android.build.gradle.AppPlugin@75cbb3b7, FlutterPlugin@763973f3] preBuild: task ':app:preBuild' preDebugAndroidTestBuild: task ':app:preDebugAndroidTestBuild' preDebugBuild: task ':app:preDebugBuild' preDebugUnitTestBuild: task ':app:preDebugUnitTestBuild' preDynamicProfileBuild: task ':app:preDynamicProfileBuild' preDynamicProfileUnitTestBuild: task ':app:preDynamicProfileUnitTestBuild' preDynamicReleaseBuild: task ':app:preDynamicReleaseBuild' preDynamicReleaseUnitTestBuild: task ':app:preDynamicReleaseUnitTestBuild' preProfileBuild: task ':app:preProfileBuild' preProfileUnitTestBuild: task ':app:preProfileUnitTestBuild' preReleaseBuild: task ':app:preReleaseBuild' preReleaseUnitTestBuild: task ':app:preReleaseUnitTestBuild' prepareLintJar: task ':app:prepareLintJar' preparePUBLISHED_DEXDebugAndroidTestForPublishing: task ':app:preparePUBLISHED_DEXDebugAndroidTestForPublishing' preparePUBLISHED_DEXDebugForPublishing: task ':app:preparePUBLISHED_DEXDebugForPublishing' preparePUBLISHED_DEXDynamicProfileForPublishing: task ':app:preparePUBLISHED_DEXDynamicProfileForPublishing' preparePUBLISHED_DEXDynamicReleaseForPublishing: task ':app:preparePUBLISHED_DEXDynamicReleaseForPublishing' preparePUBLISHED_DEXProfileForPublishing: task ':app:preparePUBLISHED_DEXProfileForPublishing' preparePUBLISHED_DEXReleaseForPublishing: task ':app:preparePUBLISHED_DEXReleaseForPublishing' preparePUBLISHED_JAVA_RESDebugAndroidTestForPublishing: task ':app:preparePUBLISHED_JAVA_RESDebugAndroidTestForPublishing' preparePUBLISHED_JAVA_RESDebugForPublishing: task ':app:preparePUBLISHED_JAVA_RESDebugForPublishing' preparePUBLISHED_JAVA_RESDynamicProfileForPublishing: task ':app:preparePUBLISHED_JAVA_RESDynamicProfileForPublishing' preparePUBLISHED_JAVA_RESDynamicReleaseForPublishing: task ':app:preparePUBLISHED_JAVA_RESDynamicReleaseForPublishing' preparePUBLISHED_JAVA_RESProfileForPublishing: task ':app:preparePUBLISHED_JAVA_RESProfileForPublishing' preparePUBLISHED_JAVA_RESReleaseForPublishing: task ':app:preparePUBLISHED_JAVA_RESReleaseForPublishing' preparePUBLISHED_NATIVE_LIBSDebugAndroidTestForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSDebugAndroidTestForPublishing' preparePUBLISHED_NATIVE_LIBSDebugForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSDebugForPublishing' preparePUBLISHED_NATIVE_LIBSDynamicProfileForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSDynamicProfileForPublishing' preparePUBLISHED_NATIVE_LIBSDynamicReleaseForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSDynamicReleaseForPublishing' preparePUBLISHED_NATIVE_LIBSProfileForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSProfileForPublishing' preparePUBLISHED_NATIVE_LIBSReleaseForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSReleaseForPublishing' 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' processDynamicProfileJavaRes: task ':app:processDynamicProfileJavaRes' processDynamicProfileManifest: task ':app:processDynamicProfileManifest' processDynamicProfileResources: task ':app:processDynamicProfileResources' processDynamicProfileUnitTestJavaRes: task ':app:processDynamicProfileUnitTestJavaRes' processDynamicReleaseJavaRes: task ':app:processDynamicReleaseJavaRes' processDynamicReleaseManifest: task ':app:processDynamicReleaseManifest' processDynamicReleaseResources: task ':app:processDynamicReleaseResources' processDynamicReleaseUnitTestJavaRes: task ':app:processDynamicReleaseUnitTestJavaRes' processOperations: org.gradle.api.internal.file.DefaultFileOperations@f67e16a 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.BuildOperationCrossProjectConfigurator@7c4f690f projectDir: /home/floyd/CrossPlatformDev/basketnerds/android/app projectEvaluationBroadcaster: ProjectEvaluationListener broadcast projectEvaluator: org.gradle.configuration.project.LifecycleProjectEvaluator@31dbcc42 projectPath: :app projectRegistry: org.gradle.api.internal.project.DefaultProjectRegistry@55671563 properties: {...} providers: org.gradle.api.internal.provider.DefaultProviderFactory@3faaa98a reportBuildArtifactsDebug: task ':app:reportBuildArtifactsDebug' reportBuildArtifactsDynamicProfile: task ':app:reportBuildArtifactsDynamicProfile' reportBuildArtifactsDynamicRelease: task ':app:reportBuildArtifactsDynamicRelease' reportBuildArtifactsProfile: task ':app:reportBuildArtifactsProfile' reportBuildArtifactsRelease: task ':app:reportBuildArtifactsRelease' reporting: org.gradle.api.reporting.ReportingExtension_Decorated@6e69b63 reportsDir: /home/floyd/CrossPlatformDev/basketnerds/build/app/reports repositories: repository container resolveConfigAttr: task ':app:resolveConfigAttr' resourceLoader: org.gradle.internal.resource.transfer.DefaultUriTextResourceLoader@1669da1 resources: org.gradle.api.internal.resources.DefaultResourceHandler@6e30f813 rootDir: /home/floyd/CrossPlatformDev/basketnerds/android rootProject: root project 'android' script: false scriptHandlerFactory: org.gradle.api.internal.initialization.DefaultScriptHandlerFactory@39124bb scriptPluginFactory: org.gradle.configuration.ScriptPluginFactorySelector@311e8a29 serviceRegistryFactory: org.gradle.internal.service.scopes.ProjectScopeServices$4@4a0923e services: ProjectScopeServices signingReport: task ':app:signingReport' sourceCompatibility: 1.8 sourceSets: SourceSet container splitsDiscoveryTaskDebug: task ':app:splitsDiscoveryTaskDebug' splitsDiscoveryTaskDynamicProfile: task ':app:splitsDiscoveryTaskDynamicProfile' splitsDiscoveryTaskDynamicRelease: task ':app:splitsDiscoveryTaskDynamicRelease' splitsDiscoveryTaskProfile: task ':app:splitsDiscoveryTaskProfile' splitsDiscoveryTaskRelease: task ':app:splitsDiscoveryTaskRelease' standardOutputCapture: org.gradle.internal.logging.services.DefaultLoggingManager@575de48f state: project state 'EXECUTED' status: integration subprojects: [] targetCompatibility: 1.8 tasks: task set test: task ':app:test' testDebugUnitTest: task ':app:testDebugUnitTest' testDynamicProfileUnitTest: task ':app:testDynamicProfileUnitTest' testDynamicReleaseUnitTest: task ':app:testDynamicReleaseUnitTest' testProfileUnitTest: task ':app:testProfileUnitTest' testReleaseUnitTest: task ':app:testReleaseUnitTest' testReportDir: /home/floyd/CrossPlatformDev/basketnerds/build/app/reports/tests testReportDirName: tests testResultsDir: /home/floyd/CrossPlatformDev/basketnerds/build/app/test-results testResultsDirName: test-results transformClassesWithDexBuilderForDebug: task ':app:transformClassesWithDexBuilderForDebug' transformClassesWithDexBuilderForDebugAndroidTest: task ':app:transformClassesWithDexBuilderForDebugAndroidTest' transformClassesWithDexBuilderForDynamicProfile: task ':app:transformClassesWithDexBuilderForDynamicProfile' transformClassesWithDexBuilderForDynamicRelease: task ':app:transformClassesWithDexBuilderForDynamicRelease' transformClassesWithDexBuilderForProfile: task ':app:transformClassesWithDexBuilderForProfile' transformClassesWithDexBuilderForRelease: task ':app:transformClassesWithDexBuilderForRelease' transformDexArchiveWithDexMergerForDebug: task ':app:transformDexArchiveWithDexMergerForDebug' transformDexArchiveWithDexMergerForDebugAndroidTest: task ':app:transformDexArchiveWithDexMergerForDebugAndroidTest' transformDexArchiveWithDexMergerForDynamicProfile: task ':app:transformDexArchiveWithDexMergerForDynamicProfile' transformDexArchiveWithDexMergerForDynamicRelease: task ':app:transformDexArchiveWithDexMergerForDynamicRelease' transformDexArchiveWithDexMergerForProfile: task ':app:transformDexArchiveWithDexMergerForProfile' transformDexArchiveWithDexMergerForRelease: task ':app:transformDexArchiveWithDexMergerForRelease' transformDexArchiveWithExternalLibsDexMergerForDebug: task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug' transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest: task ':app:transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest' transformDexArchiveWithExternalLibsDexMergerForDynamicProfile: task ':app:transformDexArchiveWithExternalLibsDexMergerForDynamicProfile' transformDexArchiveWithExternalLibsDexMergerForDynamicRelease: task ':app:transformDexArchiveWithExternalLibsDexMergerForDynamicRelease' transformDexArchiveWithExternalLibsDexMergerForProfile: task ':app:transformDexArchiveWithExternalLibsDexMergerForProfile' transformDexArchiveWithExternalLibsDexMergerForRelease: task ':app:transformDexArchiveWithExternalLibsDexMergerForRelease' transformNativeLibsWithMergeJniLibsForDebug: task ':app:transformNativeLibsWithMergeJniLibsForDebug' transformNativeLibsWithMergeJniLibsForDebugAndroidTest: task ':app:transformNativeLibsWithMergeJniLibsForDebugAndroidTest' transformNativeLibsWithMergeJniLibsForDynamicProfile: task ':app:transformNativeLibsWithMergeJniLibsForDynamicProfile' transformNativeLibsWithMergeJniLibsForDynamicRelease: task ':app:transformNativeLibsWithMergeJniLibsForDynamicRelease' transformNativeLibsWithMergeJniLibsForProfile: task ':app:transformNativeLibsWithMergeJniLibsForProfile' transformNativeLibsWithMergeJniLibsForRelease: task ':app:transformNativeLibsWithMergeJniLibsForRelease' transformResourcesWithMergeJavaResForDebug: task ':app:transformResourcesWithMergeJavaResForDebug' transformResourcesWithMergeJavaResForDebugAndroidTest: task ':app:transformResourcesWithMergeJavaResForDebugAndroidTest' transformResourcesWithMergeJavaResForDebugUnitTest: task ':app:transformResourcesWithMergeJavaResForDebugUnitTest' transformResourcesWithMergeJavaResForDynamicProfile: task ':app:transformResourcesWithMergeJavaResForDynamicProfile' transformResourcesWithMergeJavaResForDynamicProfileUnitTest: task ':app:transformResourcesWithMergeJavaResForDynamicProfileUnitTest' transformResourcesWithMergeJavaResForDynamicRelease: task ':app:transformResourcesWithMergeJavaResForDynamicRelease' transformResourcesWithMergeJavaResForDynamicReleaseUnitTest: task ':app:transformResourcesWithMergeJavaResForDynamicReleaseUnitTest' 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' uninstallDynamicProfile: task ':app:uninstallDynamicProfile' uninstallDynamicRelease: task ':app:uninstallDynamicRelease' uninstallProfile: task ':app:uninstallProfile' uninstallRelease: task ':app:uninstallRelease' validateSigningDebug: task ':app:validateSigningDebug' validateSigningDebugAndroidTest: task ':app:validateSigningDebugAndroidTest' validateSigningDynamicProfile: task ':app:validateSigningDynamicProfile' validateSigningDynamicRelease: task ':app:validateSigningDynamicRelease' validateSigningProfile: task ':app:validateSigningProfile' validateSigningRelease: task ':app:validateSigningRelease' version: unspecified writeDebugApplicationId: task ':app:writeDebugApplicationId' writeDynamicProfileApplicationId: task ':app:writeDynamicProfileApplicationId' writeDynamicReleaseApplicationId: task ':app:writeDynamicReleaseApplicationId' writeProfileApplicationId: task ':app:writeProfileApplicationId' writeReleaseApplicationId: task ':app:writeReleaseApplicationId' 1 actionable task: 1 executed [ +15 ms] executing: [/home/floyd/CrossPlatformDev/basketnerds/android/] /home/floyd/CrossPlatformDev/basketnerds/android/gradlew app:tasks --all [+3184 ms] ------------------------------------------------------------ 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. assembleDynamicProfile - Assembles all DynamicProfile builds. assembleDynamicRelease - Assembles all DynamicRelease 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. clean - Deletes the build directory. cleanBuildCache - Deletes the build cache directory. compileDebugAndroidTestSources compileDebugSources compileDebugUnitTestSources compileDynamicProfileSources compileDynamicProfileUnitTestSources compileDynamicReleaseSources compileDynamicReleaseUnitTestSources compileProfileSources compileProfileUnitTestSources compileReleaseSources compileReleaseUnitTestSources mockableAndroidJar - Creates a version of android.jar that's suitable for unit tests. 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. installDynamicProfile - Installs the DynamicProfile build. installDynamicRelease - Installs the DynamicRelease 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. uninstallDynamicProfile - Uninstalls the DynamicProfile build. uninstallDynamicRelease - Uninstalls the DynamicRelease 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. lintDynamicProfile - Runs lint on the DynamicProfile build. lintDynamicRelease - Runs lint on the DynamicRelease 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. testDynamicProfileUnitTest - Run unit tests for the dynamicProfile build. testDynamicReleaseUnitTest - Run unit tests for the dynamicRelease build. testProfileUnitTest - Run unit tests for the profile build. testReleaseUnitTest - Run unit tests for the release build. Other tasks ----------- assembleDebugAndroidTest assembleDebugUnitTest assembleDynamicProfileUnitTest assembleDynamicReleaseUnitTest assembleProfileUnitTest assembleReleaseUnitTest bundleAppClassesDebug bundleAppClassesDebugAndroidTest bundleAppClassesDebugUnitTest bundleAppClassesDynamicProfile bundleAppClassesDynamicProfileUnitTest bundleAppClassesDynamicRelease bundleAppClassesDynamicReleaseUnitTest bundleAppClassesProfile bundleAppClassesProfileUnitTest bundleAppClassesRelease bundleAppClassesReleaseUnitTest bundleDebugAndroidTestResources bundleDebugResources bundleDynamicProfileResources bundleDynamicReleaseResources bundleProfileResources bundleReleaseResources checkDebugManifest checkDynamicProfileManifest checkDynamicReleaseManifest checkProfileManifest checkReleaseManifest compileDebugAidl compileDebugAndroidTestAidl compileDebugAndroidTestJavaWithJavac compileDebugAndroidTestNdk compileDebugAndroidTestRenderscript compileDebugAndroidTestShaders compileDebugJavaWithJavac compileDebugNdk compileDebugRenderscript compileDebugShaders compileDebugUnitTestJavaWithJavac compileDynamicProfileAidl compileDynamicProfileJavaWithJavac compileDynamicProfileNdk compileDynamicProfileRenderscript compileDynamicProfileShaders compileDynamicProfileUnitTestJavaWithJavac compileDynamicReleaseAidl compileDynamicReleaseJavaWithJavac compileDynamicReleaseNdk compileDynamicReleaseRenderscript compileDynamicReleaseShaders compileDynamicReleaseUnitTestJavaWithJavac compileLint compileProfileAidl compileProfileJavaWithJavac compileProfileNdk compileProfileRenderscript compileProfileShaders compileProfileUnitTestJavaWithJavac compileReleaseAidl compileReleaseJavaWithJavac compileReleaseNdk compileReleaseRenderscript compileReleaseShaders compileReleaseUnitTestJavaWithJavac consumeConfigAttr copyFlutterAssetsDebug copyFlutterAssetsDynamicProfile copyFlutterAssetsDynamicRelease copyFlutterAssetsProfile copyFlutterAssetsRelease createDebugCompatibleScreenManifests createDynamicProfileCompatibleScreenManifests createDynamicReleaseCompatibleScreenManifests createProfileCompatibleScreenManifests createReleaseCompatibleScreenManifests extractProguardFiles flutterBuildDebug flutterBuildDynamicProfile flutterBuildDynamicRelease flutterBuildProfile flutterBuildRelease flutterBuildX86Jar generateDebugAndroidTestAssets generateDebugAndroidTestBuildConfig generateDebugAndroidTestResources generateDebugAndroidTestResValues generateDebugAndroidTestSources generateDebugAssets generateDebugBuildConfig generateDebugResources generateDebugResValues generateDebugSources generateDynamicProfileAssets generateDynamicProfileBuildConfig generateDynamicProfileResources generateDynamicProfileResValues generateDynamicProfileSources generateDynamicReleaseAssets generateDynamicReleaseBuildConfig generateDynamicReleaseResources generateDynamicReleaseResValues generateDynamicReleaseSources generateProfileAssets generateProfileBuildConfig generateProfileResources generateProfileResValues generateProfileSources generateReleaseAssets generateReleaseBuildConfig generateReleaseResources generateReleaseResValues generateReleaseSources javaPreCompileDebug javaPreCompileDebugAndroidTest javaPreCompileDebugUnitTest javaPreCompileDynamicProfile javaPreCompileDynamicProfileUnitTest javaPreCompileDynamicRelease javaPreCompileDynamicReleaseUnitTest javaPreCompileProfile javaPreCompileProfileUnitTest javaPreCompileRelease javaPreCompileReleaseUnitTest mainApkListPersistenceDebug mainApkListPersistenceDebugAndroidTest mainApkListPersistenceDynamicProfile mainApkListPersistenceDynamicRelease mainApkListPersistenceProfile mainApkListPersistenceRelease mergeDebugAndroidTestAssets mergeDebugAndroidTestJniLibFolders mergeDebugAndroidTestResources mergeDebugAndroidTestShaders mergeDebugAssets mergeDebugJniLibFolders mergeDebugResources mergeDebugShaders mergeDynamicProfileAssets mergeDynamicProfileJniLibFolders mergeDynamicProfileResources mergeDynamicProfileShaders mergeDynamicReleaseAssets mergeDynamicReleaseJniLibFolders mergeDynamicReleaseResources mergeDynamicReleaseShaders mergeProfileAssets mergeProfileJniLibFolders mergeProfileResources mergeProfileShaders mergeReleaseAssets mergeReleaseJniLibFolders mergeReleaseResources mergeReleaseShaders packageDebug packageDebugAndroidTest packageDynamicProfile packageDynamicRelease packageProfile packageRelease platformAttrExtractor preBuild preDebugAndroidTestBuild preDebugBuild preDebugUnitTestBuild preDynamicProfileBuild preDynamicProfileUnitTestBuild preDynamicReleaseBuild preDynamicReleaseUnitTestBuild prepareLintJar preparePUBLISHED_DEXDebugAndroidTestForPublishing preparePUBLISHED_DEXDebugForPublishing preparePUBLISHED_DEXDynamicProfileForPublishing preparePUBLISHED_DEXDynamicReleaseForPublishing preparePUBLISHED_DEXProfileForPublishing preparePUBLISHED_DEXReleaseForPublishing preparePUBLISHED_JAVA_RESDebugAndroidTestForPublishing preparePUBLISHED_JAVA_RESDebugForPublishing preparePUBLISHED_JAVA_RESDynamicProfileForPublishing preparePUBLISHED_JAVA_RESDynamicReleaseForPublishing preparePUBLISHED_JAVA_RESProfileForPublishing preparePUBLISHED_JAVA_RESReleaseForPublishing preparePUBLISHED_NATIVE_LIBSDebugAndroidTestForPublishing preparePUBLISHED_NATIVE_LIBSDebugForPublishing preparePUBLISHED_NATIVE_LIBSDynamicProfileForPublishing preparePUBLISHED_NATIVE_LIBSDynamicReleaseForPublishing preparePUBLISHED_NATIVE_LIBSProfileForPublishing preparePUBLISHED_NATIVE_LIBSReleaseForPublishing preProfileBuild preProfileUnitTestBuild preReleaseBuild preReleaseUnitTestBuild processDebugAndroidTestJavaRes processDebugAndroidTestManifest processDebugAndroidTestResources processDebugJavaRes processDebugManifest processDebugResources processDebugUnitTestJavaRes processDynamicProfileJavaRes processDynamicProfileManifest processDynamicProfileResources processDynamicProfileUnitTestJavaRes processDynamicReleaseJavaRes processDynamicReleaseManifest processDynamicReleaseResources processDynamicReleaseUnitTestJavaRes processProfileJavaRes processProfileManifest processProfileResources processProfileUnitTestJavaRes processReleaseJavaRes processReleaseManifest processReleaseResources processReleaseUnitTestJavaRes reportBuildArtifactsDebug reportBuildArtifactsDynamicProfile reportBuildArtifactsDynamicRelease reportBuildArtifactsProfile reportBuildArtifactsRelease resolveConfigAttr splitsDiscoveryTaskDebug splitsDiscoveryTaskDynamicProfile splitsDiscoveryTaskDynamicRelease splitsDiscoveryTaskProfile splitsDiscoveryTaskRelease transformClassesWithDexBuilderForDebug transformClassesWithDexBuilderForDebugAndroidTest transformClassesWithDexBuilderForDynamicProfile transformClassesWithDexBuilderForDynamicRelease transformClassesWithDexBuilderForProfile transformClassesWithDexBuilderForRelease transformDexArchiveWithDexMergerForDebug transformDexArchiveWithDexMergerForDebugAndroidTest transformDexArchiveWithDexMergerForDynamicProfile transformDexArchiveWithDexMergerForDynamicRelease transformDexArchiveWithDexMergerForProfile transformDexArchiveWithDexMergerForRelease transformDexArchiveWithExternalLibsDexMergerForDebug transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest transformDexArchiveWithExternalLibsDexMergerForDynamicProfile transformDexArchiveWithExternalLibsDexMergerForDynamicRelease transformDexArchiveWithExternalLibsDexMergerForProfile transformDexArchiveWithExternalLibsDexMergerForRelease transformNativeLibsWithMergeJniLibsForDebug transformNativeLibsWithMergeJniLibsForDebugAndroidTest transformNativeLibsWithMergeJniLibsForDynamicProfile transformNativeLibsWithMergeJniLibsForDynamicRelease transformNativeLibsWithMergeJniLibsForProfile transformNativeLibsWithMergeJniLibsForRelease transformResourcesWithMergeJavaResForDebug transformResourcesWithMergeJavaResForDebugAndroidTest transformResourcesWithMergeJavaResForDebugUnitTest transformResourcesWithMergeJavaResForDynamicProfile transformResourcesWithMergeJavaResForDynamicProfileUnitTest transformResourcesWithMergeJavaResForDynamicRelease transformResourcesWithMergeJavaResForDynamicReleaseUnitTest transformResourcesWithMergeJavaResForProfile transformResourcesWithMergeJavaResForProfileUnitTest transformResourcesWithMergeJavaResForRelease transformResourcesWithMergeJavaResForReleaseUnitTest validateSigningDebug validateSigningDebugAndroidTest validateSigningDynamicProfile validateSigningDynamicRelease validateSigningProfile validateSigningRelease writeDebugApplicationId writeDynamicProfileApplicationId writeDynamicReleaseApplicationId writeProfileApplicationId writeReleaseApplicationId Rules ----- Pattern: clean&lt;TaskName&gt;: Cleans the output files of a task. Pattern: build&lt;ConfigurationName&gt;: Assembles the artifacts of a configuration. Pattern: upload&lt;ConfigurationName&gt;: Assembles and uploads the artifacts belonging to a configuration. 1 actionable task: 1 executed [ +27 ms] Resolving dependencies... (completed) [ +23 ms] executing: /home/floyd/bin/android-sdk/build-tools/27.0.3/aapt dump xmltree /home/floyd/CrossPlatformDev/basketnerds/build/app/outputs/apk/app.apk AndroidManifest.xml [ +92 ms] Exit code 0 from: /home/floyd/bin/android-sdk/build-tools/27.0.3/aapt dump xmltree /home/floyd/CrossPlatformDev/basketnerds/build/app/outputs/apk/app.apk AndroidManifest.xml [ ] N: android=http://schemas.android.com/apk/res/android E: manifest (line=2) A: android:versionCode(0x0101021b)=(type 0x10)0x1 A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0") A: package="com.example.basketnerds" (Raw: "com.example.basketnerds") E: uses-sdk (line=7) A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10 A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1b E: uses-permission (line=16) A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET") E: application (line=24) A: android:label(0x01010001)="basketnerds" (Raw: "basketnerds") A: android:icon(0x01010002)=@0x7f020000 A: android:name(0x01010003)="io.flutter.app.FlutterApplication" (Raw: "io.flutter.app.FlutterApplication") A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff E: activity (line=29) A: android:theme(0x01010000)=@0x7f030000 A: android:name(0x01010003)="com.example.basketnerds.MainActivity" (Raw: "com.example.basketnerds.MainActivity") A: android:launchMode(0x0101001d)=(type 0x10)0x1 A: android:configChanges(0x0101001f)=(type 0x11)0x400035b4 A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10 A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff E: meta-data (line=43) A: android:name(0x01010003)="io.flutter.app.android.SplashScreenUntilFirstFrame" (Raw: "io.flutter.app.android.SplashScreenUntilFirstFrame") A: android:value(0x01010024)=(type 0x12)0xffffffff E: intent-filter (line=47) E: action (line=48) A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN") E: category (line=50) A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER") [ +24 ms] executing: /home/floyd/bin/android-sdk/platform-tools/adb -s 52004128ee1a45b5 shell -x logcat -v time -t 1 [ +99 ms] Exit code 0 from: /home/floyd/bin/android-sdk/platform-tools/adb -s 52004128ee1a45b5 shell -x logcat -v time -t 1 [ +2 ms] --------- beginning of main 10-11 23:00:22.220 E/adbd ( 8911): recv: OPEN 00002cd3 00000000 001a:73 68 65 6C 6C 3A 6C 6F 67 63 61 74 20 2D 76 20 74 69 6D 65 20 2D 74 20 31 00 [ +37 ms] executing: /home/floyd/bin/android-sdk/platform-tools/adb -s 52004128ee1a45b5 shell -x logcat -v time [+1342 ms] DependencyChecker: nothing is modified after 2018-10-11 22:58:53.245. [ +10 ms] executing: /home/floyd/bin/android-sdk/platform-tools/adb version [ +125 ms] Android Debug Bridge version 1.0.40 Version 4986621 Installed as /home/floyd/bin/android-sdk/platform-tools/adb [ +5 ms] executing: /home/floyd/bin/android-sdk/platform-tools/adb start-server [ +390 ms] Building APK [+1010 ms] Gradle task 'assembleDebug'... [ +4 ms] executing: [/home/floyd/CrossPlatformDev/basketnerds/android/] /home/floyd/CrossPlatformDev/basketnerds/android/gradlew -Pverbose=true -Ptarget=/home/floyd/CrossPlatformDev/basketnerds/lib/main.dart -Pfilesystem-scheme=org-dartlang-root assembleDebug [+3818 ms] 30 actionable tasks: 3 executed, 27 up-to-date [ +436 ms] Gradle task 'assembleDebug'... (completed) [ +178 ms] calculateSha: LocalDirectory: '/home/floyd/CrossPlatformDev/basketnerds/build/app/outputs/apk'/app.apk [+1207 ms] Built build/app/outputs/apk/debug/app-debug.apk. [ +3 ms] executing: /home/floyd/bin/android-sdk/build-tools/27.0.3/aapt dump xmltree /home/floyd/CrossPlatformDev/basketnerds/build/app/outputs/apk/app.apk AndroidManifest.xml [ +70 ms] Exit code 0 from: /home/floyd/bin/android-sdk/build-tools/27.0.3/aapt dump xmltree /home/floyd/CrossPlatformDev/basketnerds/build/app/outputs/apk/app.apk AndroidManifest.xml [ +1 ms] N: android=http://schemas.android.com/apk/res/android E: manifest (line=2) A: android:versionCode(0x0101021b)=(type 0x10)0x1 A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0") A: package="com.example.basketnerds" (Raw: "com.example.basketnerds") E: uses-sdk (line=7) A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10 A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1b E: uses-permission (line=16) A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET") E: application (line=24) A: android:label(0x01010001)="basketnerds" (Raw: "basketnerds") A: android:icon(0x01010002)=@0x7f020000 A: android:name(0x01010003)="io.flutter.app.FlutterApplication" (Raw: "io.flutter.app.FlutterApplication") A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff E: activity (line=29) A: android:theme(0x01010000)=@0x7f030000 A: android:name(0x01010003)="com.example.basketnerds.MainActivity" (Raw: "com.example.basketnerds.MainActivity") A: android:launchMode(0x0101001d)=(type 0x10)0x1 A: android:configChanges(0x0101001f)=(type 0x11)0x400035b4 A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10 A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff E: meta-data (line=43) A: android:name(0x01010003)="io.flutter.app.android.SplashScreenUntilFirstFrame" (Raw: "io.flutter.app.android.SplashScreenUntilFirstFrame") A: android:value(0x01010024)=(type 0x12)0xffffffff E: intent-filter (line=47) E: action (line=48) A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN") E: category (line=50) A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER") [ +1 ms] Stopping app 'app.apk' on SAMSUNG SM J727A. [ +1 ms] executing: /home/floyd/bin/android-sdk/platform-tools/adb -s 52004128ee1a45b5 shell am force-stop com.example.basketnerds [ +169 ms] executing: /home/floyd/bin/android-sdk/platform-tools/adb -s 52004128ee1a45b5 shell pm list packages com.example.basketnerds [ +944 ms] package:com.example.basketnerds [ +10 ms] executing: /home/floyd/bin/android-sdk/platform-tools/adb -s 52004128ee1a45b5 shell cat /data/local/tmp/sky.com.example.basketnerds.sha1 [ +101 ms] 41e64295b87d1abac8e51532eb854376e63b3aec [ +3 ms] Latest build already installed. [ +1 ms] SAMSUNG SM J727A startApp [ +5 ms] executing: /home/floyd/bin/android-sdk/platform-tools/adb -s 52004128ee1a45b5 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 com.example.basketnerds/com.example.basketnerds.MainActivity [ +201 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=com.example.basketnerds/.MainActivity (has extras) } [ +1 ms] Waiting for observatory port to be available... [ +665 ms] Observatory URL on device: http://127.0.0.1:49399/ [ +3 ms] executing: /home/floyd/bin/android-sdk/platform-tools/adb -s 52004128ee1a45b5 forward tcp:0 tcp:49399 [ +55 ms] 38241 [ +1 ms] Forwarded host port 38241 to device port 49399 for Observatory [ +19 ms] Connecting to service protocol: http://127.0.0.1:38241/ [ +642 ms] Successfully connected to service protocol: http://127.0.0.1:38241/ [ +8 ms] getVM: {} [ +29 ms] getIsolate: {isolateId: isolates/557990879} [ +11 ms] _flutter.listViews: {isolateId: isolates/557990879} [ +220 ms] DevFS: Creating new filesystem on the device (null) [ +2 ms] _createDevFS: {fsName: basketnerds} [ +69 ms] DevFS: Created new filesystem on the device (file:///data/user/0/com.example.basketnerds/cache/basketnerdsXZHILW/basketnerds/) [ +3 ms] Updating assets [ +803 ms] Syncing files to device SAMSUNG SM J727A... [ +7 ms] DevFS: Starting sync from LocalDirectory: '/home/floyd/CrossPlatformDev/basketnerds' [ ] Scanning project files [ +17 ms] Scanning package files [ +237 ms] Scanning asset files [ +2 ms] Scanning for deleted files [ +59 ms] Compiling dart to kernel with 436 updated files [ +21 ms] /home/floyd/flutterdev/flutter/bin/cache/dart-sdk/bin/dart /home/floyd/flutterdev/flutter/bin/cache/artifacts/engine/linux-x64/frontend_server.dart.snapshot --sdk-root /home/floyd/flutterdev/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --strong --target=flutter --output-dill build/app.dill --packages /home/floyd/CrossPlatformDev/basketnerds/.packages --filesystem-scheme org-dartlang-root [ +303 ms] D/libGLESv2(24138): STS_GLApi : DTS, ODTC are not allowed for Package : com.example.basketnerds [+8024 ms] Updating files [ +577 ms] DevFS: Sync finished [ ] Syncing files to device SAMSUNG SM J727A... (completed) [ +9 ms] Synced 0.8MB. [ +6 ms] _flutter.listViews: {isolateId: isolates/557990879} [ +41 ms] Connected to _flutterView/0xeef5d30c. [ +15 ms] 🔥 To hot reload changes while running, press "r". To hot restart (and rebuild state), press "R". [ +6 ms] An Observatory debugger and profiler on SAMSUNG SM J727A is available at: http://127.0.0.1:38241/ [ +1 ms] For a more detailed help message, press "h". To detach, press "d"; to quit, press "q". [+4801 ms] D/ViewRootImpl@95a2daa[MainActivity](24138): ViewPostIme pointer 0 [ +57 ms] D/ViewRootImpl@95a2daa[MainActivity](24138): ViewPostIme pointer 1 [+129883 ms] D/ViewRootImpl@95a2daa[MainActivity](24138): ViewPostIme pointer 0 [ +24 ms] D/ViewRootImpl@95a2daa[MainActivity](24138): ViewPostIme pointer 1 [+4219 ms] D/ViewRootImpl@95a2daa[MainActivity](24138): MSG_WINDOW_FOCUS_CHANGED 0 [ +20 ms] D/SurfaceView(24138): windowStopped(true) false 2e51538 of ViewRootImpl@95a2daa[MainActivity] [ +1 ms] D/SurfaceView(24138): BG show() Surface(name=Background for - SurfaceView - com.example.basketnerds/com.example.basketnerds.MainActivity@2e51538@0) io.flutter.view.FlutterView{2e51538 VFE...... .F...... 0,0-720,1280} [ ] D/SurfaceView(24138): surfaceDestroyed 1 #1 io.flutter.view.FlutterView{2e51538 VFE...... .F...... 0,0-720,1280} [ +8 ms] D/SurfaceView(24138): onWindowVisibilityChanged(4) false 2e51538 of ViewRootImpl@95a2daa[MainActivity] [ +1 ms] D/SurfaceView(24138): BG show() Surface(name=Background for - SurfaceView - com.example.basketnerds/com.example.basketnerds.MainActivity@2e51538@0) io.flutter.view.FlutterView{2e51538 VFE...... .F...... 0,0-720,1280} [ +3 ms] D/OpenGLRenderer(24138): eglDestroySurface = 0xe630b8f0, 0xe0d7f800 [ +11 ms] D/ViewRootImpl@95a2daa[MainActivity](24138): Relayout returned: old=[0,0][720,1280] new=[0,0][720,1280] result=0x5 surface={valid=false 0} changed=true [ +29 ms] D/InputTransport(24138): Input channel destroyed: fd=87 [ +21 ms] D/SurfaceView(24138): onWindowVisibilityChanged(8) false 2e51538 of ViewRootImpl@95a2daa[MainActivity] [ +53 ms] D/ViewRootImpl@95a2daa[MainActivity](24138): Relayout returned: old=[0,0][720,1280] new=[0,0][720,1280] result=0x1 surface={valid=false 0} changed=false [+1491 ms] Service protocol connection closed. [ +2 ms] Lost connection to device. [ +6 ms] DevFS: Deleting filesystem on the device (file:///data/user/0/com.example.basketnerds/cache/basketnerdsXZHILW/basketnerds/) [ +1 ms] _deleteDevFS: {fsName: basketnerds} [ +267 ms] TimeoutException after 0:00:00.250000: Future not completed [ +33 ms] "flutter run" took 176,398ms. </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Analyzing basketnerds... info • The value of the field '_counter' isn't used • lib/main.dart:196:7 • unused_field info • The value of the field '_pages' isn't used • lib/main.dart:201:16 • unused_field info • The value of the field '_barTool' isn't used • lib/main.dart:206:14 • unused_field info • Name non-constant identifiers using lowerCamelCase • lib/main.dart:298:8 • non_constant_identifier_names info • Name non-constant identifiers using lowerCamelCase • lib/main.dart:330:12 • non_constant_identifier_names info • Name non-constant identifiers using lowerCamelCase • lib/main.dart:331:12 • non_constant_identifier_names 6 issues found. (ran in 6.7s) "><pre class="notranslate"><code class="notranslate">Analyzing basketnerds... info • The value of the field '_counter' isn't used • lib/main.dart:196:7 • unused_field info • The value of the field '_pages' isn't used • lib/main.dart:201:16 • unused_field info • The value of the field '_barTool' isn't used • lib/main.dart:206:14 • unused_field info • Name non-constant identifiers using lowerCamelCase • lib/main.dart:298:8 • non_constant_identifier_names info • Name non-constant identifiers using lowerCamelCase • lib/main.dart:330:12 • non_constant_identifier_names info • Name non-constant identifiers using lowerCamelCase • lib/main.dart:331:12 • non_constant_identifier_names 6 issues found. (ran in 6.7s) </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[✓] Flutter (Channel master, v0.10.1-pre.34, on Linux, locale en_US.UTF-8) • Flutter version 0.10.1-pre.34 at /home/floyd/flutterdev/flutter • Framework revision 80f80ab08c (2 hours ago), 2018-10-11 18:17:46 -0700 • Engine revision daf4447a2e • Dart version 2.1.0-dev.7.0.flutter-b99bcfd309 [✓] Android toolchain - develop for Android devices (Android SDK 27.0.3) • Android SDK at /home/floyd/bin/android-sdk • Android NDK location not configured (optional; useful for native profiling support) • Platform android-27, build-tools 27.0.3 • ANDROID_HOME = /home/floyd/bin/android-sdk • Java binary at: /home/floyd/bin/android-studio/jre/bin/java • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06) • All Android licenses accepted. [✓] Android Studio (version 3.2) • Android Studio at /home/floyd/bin/android-studio • Flutter plugin version 29.1.1 • Dart plugin version 181.5656 • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06) [✓] IntelliJ IDEA Community Edition (version 2018.2) • IntelliJ at /home/floyd/bin/idea-IC-182.4505.22 • Flutter plugin version 29.0.4 • Dart plugin version 182.4505.50 [✓] Connected device (1 available) • SAMSUNG SM J727A • 52004128ee1a45b5 • android-arm • Android 8.1.0 (API 27) • No issues found! "><pre class="notranslate"><code class="notranslate">[✓] Flutter (Channel master, v0.10.1-pre.34, on Linux, locale en_US.UTF-8) • Flutter version 0.10.1-pre.34 at /home/floyd/flutterdev/flutter • Framework revision 80f80ab08c (2 hours ago), 2018-10-11 18:17:46 -0700 • Engine revision daf4447a2e • Dart version 2.1.0-dev.7.0.flutter-b99bcfd309 [✓] Android toolchain - develop for Android devices (Android SDK 27.0.3) • Android SDK at /home/floyd/bin/android-sdk • Android NDK location not configured (optional; useful for native profiling support) • Platform android-27, build-tools 27.0.3 • ANDROID_HOME = /home/floyd/bin/android-sdk • Java binary at: /home/floyd/bin/android-studio/jre/bin/java • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06) • All Android licenses accepted. [✓] Android Studio (version 3.2) • Android Studio at /home/floyd/bin/android-studio • Flutter plugin version 29.1.1 • Dart plugin version 181.5656 • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06) [✓] IntelliJ IDEA Community Edition (version 2018.2) • IntelliJ at /home/floyd/bin/idea-IC-182.4505.22 • Flutter plugin version 29.0.4 • Dart plugin version 182.4505.50 [✓] Connected device (1 available) • SAMSUNG SM J727A • 52004128ee1a45b5 • android-arm • Android 8.1.0 (API 27) • No issues found! </code></pre></div>
<h2 dir="auto">Steps to Reproduce</h2> <ol dir="auto"> <li>Create a brand new flutter project<br> <code class="notranslate">flutter create -a kotlin bindingtest</code></li> <li>Enable Android bindings in the project</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="android { dataBinding { enabled = true } // ..."><pre class="notranslate"><code class="notranslate">android { dataBinding { enabled = true } // ... </code></pre></div> <ol start="3" dir="auto"> <li>Build the project<br> <code class="notranslate">flutter build apk --debug --verbose</code></li> </ol> <h2 dir="auto">Logs</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="C:\Users\tpolanski\Documents\GitHub\test\bindingtest&gt;flutter build apk --debug --verbose [ +45 ms] [c:\Users\tpolanski\Documents\GitHub\flutter\] git rev-parse --abbrev-ref --symbolic @{u} [ +80 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ +2 ms] origin/master [ +12 ms] [c:\Users\tpolanski\Documents\GitHub\flutter\] git rev-parse --abbrev-ref HEAD [ +58 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ +2 ms] master [ +14 ms] [c:\Users\tpolanski\Documents\GitHub\flutter\] git ls-remote --get-url origin [ +50 ms] Exit code 0 from: git ls-remote --get-url origin [ +2 ms] https://github.com/flutter/flutter.git [ ] [c:\Users\tpolanski\Documents\GitHub\flutter\] git log -n 1 --pretty=format:%H [ +63 ms] Exit code 0 from: git log -n 1 --pretty=format:%H [ +1 ms] b931640c1d582fe51525b8c1b32641fb13b25d5c [ +13 ms] [c:\Users\tpolanski\Documents\GitHub\flutter\] git log -n 1 --pretty=format:%ar [ +74 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar [ +2 ms] 29 hours ago [ +13 ms] [c:\Users\tpolanski\Documents\GitHub\flutter\] git describe --match v*.*.* --first-parent --long --tags [ +103 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags [ +2 ms] v0.5.6-83-gb931640c1 [ +589 ms] Initializing gradle... [ +3 ms] Using gradle from C:\Users\tpolanski\Documents\GitHub\test\bindingtest\android\gradlew.bat. [ +540 ms] C:\Users\tpolanski\Documents\GitHub\test\bindingtest\android\gradlew.bat -v [ +701 ms] ------------------------------------------------------------ Gradle 4.4 ------------------------------------------------------------ Build time: 2017-12-06 09:05:06 UTC Revision: cf7821a6f79f8e2a598df21780e3ff7ce8db2b82 Groovy: 2.4.12 Ant: Apache Ant(TM) version 1.9.9 compiled on February 2 2017 JVM: 1.8.0_152-release (JetBrains s.r.o 25.152-b02) OS: Windows 10 10.0 amd64 Picked up _JAVA_OPTIONS: -Xmx1912m [ +19 ms] Resolving dependencies... [ ] [android\] C:\Users\tpolanski\Documents\GitHub\test\bindingtest\android\gradlew.bat app:properties [+1715 ms] Observed package id 'platform-tools' in inconsistent location 'C:\Users\tpolanski\.android-sdk\platform-toolss' (Expected 'C:\Users\tpolanski\.android-sdk\platform-tools') Already observed package id 'platform-tools' in 'C:\Users\tpolanski\.android-sdk\platform-tools'. Skipping duplicate at 'C:\Users\tpolanski\.android-sdk\platform-toolss' app: 'annotationProcessor' dependencies won't be recognized as kapt annotation processors. Please change the configuration name to 'kapt' for these artifacts: 'com.android.databinding:compiler:3.1.2' and apply the kapt plugin: &quot;apply plugin: 'kotlin-kapt'&quot;. Build cache is an incubating feature. :app:properties ------------------------------------------------------------ Project :app ------------------------------------------------------------ allprojects: [project ':app'] android: com.android.build.gradle.AppExtension_Decorated@63629da0 androidDependencies: task ':app:androidDependencies' ant: org.gradle.api.internal.project.DefaultAntBuilder@6fbbec0e antBuilderFactory: org.gradle.api.internal.project.DefaultAntBuilderFactory@1b9c5dc6 archivesBaseName: app artifacts: org.gradle.api.internal.artifacts.dsl.DefaultArtifactHandler_Decorated@3e808d9e 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.DefaultClassLoaderScope@49788873 buildDependents: task ':app:buildDependents' buildDir: C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app buildFile: C:\Users\tpolanski\Documents\GitHub\test\bindingtest\android\app\build.gradle buildNeeded: task ':app:buildNeeded' buildOutputs: BaseVariantOutput container buildPath: : buildScriptSource: org.gradle.groovy.scripts.TextResourceScriptSource@7993d6ce buildscript: org.gradle.api.internal.initialization.DefaultScriptHandler@98d657 bundleAppClassesDebug: task ':app:bundleAppClassesDebug' bundleAppClassesDebugAndroidTest: task ':app:bundleAppClassesDebugAndroidTest' bundleAppClassesDebugUnitTest: task ':app:bundleAppClassesDebugUnitTest' bundleAppClassesProfile: task ':app:bundleAppClassesProfile' bundleAppClassesProfileUnitTest: task ':app:bundleAppClassesProfileUnitTest' bundleAppClassesRelease: task ':app:bundleAppClassesRelease' bundleAppClassesReleaseUnitTest: task ':app:bundleAppClassesReleaseUnitTest' bundleDebugAndroidTestResources: task ':app:bundleDebugAndroidTestResources' bundleDebugResources: task ':app:bundleDebugResources' bundleProfileResources: task ':app:bundleProfileResources' bundleReleaseResources: task ':app:bundleReleaseResources' check: task ':app:check' checkDebugManifest: task ':app:checkDebugManifest' checkProfileManifest: task ':app:checkProfileManifest' checkReleaseManifest: task ':app:checkReleaseManifest' childProjects: {} class: class org.gradle.api.internal.project.DefaultProject_Decorated classLoaderScope: org.gradle.api.internal.initialization.DefaultClassLoaderScope@3ace57a7 cleanBuildCache: task ':app:cleanBuildCache' compileDebugAidl: task ':app:compileDebugAidl' compileDebugAndroidTestAidl: task ':app:compileDebugAndroidTestAidl' compileDebugAndroidTestJavaWithJavac: task ':app:compileDebugAndroidTestJavaWithJavac' compileDebugAndroidTestKotlin: task ':app:compileDebugAndroidTestKotlin' compileDebugAndroidTestNdk: task ':app:compileDebugAndroidTestNdk' compileDebugAndroidTestRenderscript: task ':app:compileDebugAndroidTestRenderscript' compileDebugAndroidTestShaders: task ':app:compileDebugAndroidTestShaders' compileDebugAndroidTestSources: task ':app:compileDebugAndroidTestSources' compileDebugJavaWithJavac: task ':app:compileDebugJavaWithJavac' compileDebugKotlin: task ':app:compileDebugKotlin' compileDebugNdk: task ':app:compileDebugNdk' compileDebugRenderscript: task ':app:compileDebugRenderscript' compileDebugShaders: task ':app:compileDebugShaders' compileDebugSources: task ':app:compileDebugSources' compileDebugUnitTestJavaWithJavac: task ':app:compileDebugUnitTestJavaWithJavac' compileDebugUnitTestKotlin: task ':app:compileDebugUnitTestKotlin' compileDebugUnitTestSources: task ':app:compileDebugUnitTestSources' compileLint: task ':app:compileLint' compileProfileAidl: task ':app:compileProfileAidl' compileProfileJavaWithJavac: task ':app:compileProfileJavaWithJavac' compileProfileKotlin: task ':app:compileProfileKotlin' compileProfileNdk: task ':app:compileProfileNdk' compileProfileRenderscript: task ':app:compileProfileRenderscript' compileProfileShaders: task ':app:compileProfileShaders' compileProfileSources: task ':app:compileProfileSources' compileProfileUnitTestJavaWithJavac: task ':app:compileProfileUnitTestJavaWithJavac' compileProfileUnitTestKotlin: task ':app:compileProfileUnitTestKotlin' compileProfileUnitTestSources: task ':app:compileProfileUnitTestSources' compileReleaseAidl: task ':app:compileReleaseAidl' compileReleaseJavaWithJavac: task ':app:compileReleaseJavaWithJavac' compileReleaseKotlin: task ':app:compileReleaseKotlin' compileReleaseNdk: task ':app:compileReleaseNdk' compileReleaseRenderscript: task ':app:compileReleaseRenderscript' compileReleaseShaders: task ':app:compileReleaseShaders' compileReleaseSources: task ':app:compileReleaseSources' compileReleaseUnitTestJavaWithJavac: task ':app:compileReleaseUnitTestJavaWithJavac' compileReleaseUnitTestKotlin: task ':app:compileReleaseUnitTestKotlin' compileReleaseUnitTestSources: task ':app:compileReleaseUnitTestSources' components: SoftwareComponentInternal set configurationActions: org.gradle.configuration.project.DefaultProjectConfigurationActionContainer@37f87b9d configurationTargetIdentifier: org.gradle.configuration.ConfigurationTargetIdentifier$1@50bafe0a 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@16d6b024 copyFlutterAssetsDebug: task ':app:copyFlutterAssetsDebug' copyFlutterAssetsProfile: task ':app:copyFlutterAssetsProfile' copyFlutterAssetsRelease: task ':app:copyFlutterAssetsRelease' createDebugCompatibleScreenManifests: task ':app:createDebugCompatibleScreenManifests' createProfileCompatibleScreenManifests: task ':app:createProfileCompatibleScreenManifests' createReleaseCompatibleScreenManifests: task ':app:createReleaseCompatibleScreenManifests' dataBindingExportBuildInfoDebug: task ':app:dataBindingExportBuildInfoDebug' dataBindingExportBuildInfoProfile: task ':app:dataBindingExportBuildInfoProfile' dataBindingExportBuildInfoRelease: task ':app:dataBindingExportBuildInfoRelease' dataBindingGenBaseClassesDebug: task ':app:dataBindingGenBaseClassesDebug' dataBindingGenBaseClassesProfile: task ':app:dataBindingGenBaseClassesProfile' dataBindingGenBaseClassesRelease: task ':app:dataBindingGenBaseClassesRelease' defaultArtifacts: org.gradle.api.internal.plugins.DefaultArtifactPublicationSet_Decorated@5eedae36 defaultTasks: [] deferredProjectConfiguration: org.gradle.api.internal.project.DeferredProjectConfiguration@2a3d12e5 dependencies: org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler_Decorated@2df0e306 depth: 1 description: null deviceAndroidTest: task ':app:deviceAndroidTest' deviceCheck: task ':app:deviceCheck' displayName: project ':app' distsDir: C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app\distributions distsDirName: distributions docsDir: C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app\docs docsDirName: docs ext: org.gradle.api.internal.plugins.DefaultExtraPropertiesExtension@e04210c extensions: org.gradle.api.internal.plugins.DefaultConvention@16d6b024 extractProguardFiles: task ':app:extractProguardFiles' fileOperations: org.gradle.api.internal.file.DefaultFileOperations@3dabb2e4 fileResolver: org.gradle.api.internal.file.BaseDirFileResolver@7f43358e flutter: FlutterExtension_Decorated@550111b3 flutterBuildDebug: task ':app:flutterBuildDebug' flutterBuildProfile: task ':app:flutterBuildProfile' flutterBuildRelease: task ':app:flutterBuildRelease' flutterBuildX86Jar: task ':app:flutterBuildX86Jar' 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' generateDebugResValues: task ':app:generateDebugResValues' generateDebugResources: task ':app:generateDebugResources' generateDebugSources: task ':app:generateDebugSources' generateProfileAssets: task ':app:generateProfileAssets' generateProfileBuildConfig: task ':app:generateProfileBuildConfig' generateProfileResValues: task ':app:generateProfileResValues' generateProfileResources: task ':app:generateProfileResources' generateProfileSources: task ':app:generateProfileSources' generateReleaseAssets: task ':app:generateReleaseAssets' generateReleaseBuildConfig: task ':app:generateReleaseBuildConfig' generateReleaseResValues: task ':app:generateReleaseResValues' generateReleaseResources: task ':app:generateReleaseResources' generateReleaseSources: task ':app:generateReleaseSources' gradle: build 'android' group: android identityPath: :app inheritedScope: org.gradle.api.internal.ExtensibleDynamicObject$InheritedDynamicObject@7aa2565e installDebug: task ':app:installDebug' installDebugAndroidTest: task ':app:installDebugAndroidTest' installProfile: task ':app:installProfile' installRelease: task ':app:installRelease' 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' kapt: org.jetbrains.kotlin.gradle.plugin.KaptExtension_Decorated@1a7ee77c kotlin: org.jetbrains.kotlin.gradle.dsl.KotlinProjectExtension_Decorated@7c774ef8 kotlin_version: 1.2.30 layout: org.gradle.api.internal.file.DefaultProjectLayout@21a6544c libsDir: C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app\libs libsDirName: libs lint: task ':app:lint' lintDebug: task ':app:lintDebug' lintProfile: task ':app:lintProfile' lintRelease: task ':app:lintRelease' lintVitalRelease: task ':app:lintVitalRelease' logger: org.gradle.internal.logging.slf4j.OutputEventListenerBackedLogger@66d8fcf1 logging: org.gradle.internal.logging.services.DefaultLoggingManager@495ef680 mainApkListPersistenceDebug: task ':app:mainApkListPersistenceDebug' mainApkListPersistenceDebugAndroidTest: task ':app:mainApkListPersistenceDebugAndroidTest' mainApkListPersistenceProfile: task ':app:mainApkListPersistenceProfile' mainApkListPersistenceRelease: task ':app:mainApkListPersistenceRelease' 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' mockableAndroidJar: task ':app:mockableAndroidJar' modelRegistry: org.gradle.model.internal.registry.DefaultModelRegistry@24f6bdd0 modelSchemaStore: org.gradle.model.internal.manage.schema.extract.DefaultModelSchemaStore@7a928b7f module: org.gradle.api.internal.artifacts.ProjectBackedModule@61d5c52e name: app normalization: org.gradle.normalization.internal.DefaultInputNormalizationHandler_Decorated@62b02738 objects: org.gradle.api.internal.model.DefaultObjectFactory@71270b16 org.gradle.caching: true org.gradle.daemon: true org.gradle.jvmargs: -Xmx1536m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 org.gradle.parallel: false packageDebug: task ':app:packageDebug' packageDebugAndroidTest: task ':app:packageDebugAndroidTest' packageProfile: task ':app:packageProfile' packageRelease: task ':app:packageRelease' parent: root project 'android' parentIdentifier: root project 'android' path: :app platformAttrExtractor: task ':app:platformAttrExtractor' pluginManager: org.gradle.api.internal.plugins.DefaultPluginManager_Decorated@4f731944 plugins: [org.gradle.api.plugins.HelpTasksPlugin@6c73e52a, com.android.build.gradle.api.AndroidBasePlugin@1e7d0847, org.gradle.language.base.plugins.LifecycleBasePlugin@6c5ad0d, org.gradle.api.plugins.BasePlugin@26cb5d3e, org.gradle.api.plugins.ReportingBasePlugin@520099c9, org.gradle.platform.base.plugins.ComponentBasePlugin@6de94a97, org.gradle.language.base.plugins.LanguageBasePlugin@3b714832, org.gradle.platform.base.plugins.BinaryBasePlugin@5c60f819, org.gradle.api.plugins.JavaBasePlugin@19e50a99, com.android.build.gradle.AppPlugin@16208959, org.jetbrains.kotlin.gradle.plugin.KotlinAndroidPluginWrapper@46b3edc8, FlutterPlugin@2c96c433] 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' preparePUBLISHED_DEXDebugAndroidTestForPublishing: task ':app:preparePUBLISHED_DEXDebugAndroidTestForPublishing' preparePUBLISHED_DEXDebugForPublishing: task ':app:preparePUBLISHED_DEXDebugForPublishing' preparePUBLISHED_DEXProfileForPublishing: task ':app:preparePUBLISHED_DEXProfileForPublishing' preparePUBLISHED_DEXReleaseForPublishing: task ':app:preparePUBLISHED_DEXReleaseForPublishing' preparePUBLISHED_JAVA_RESDebugAndroidTestForPublishing: task ':app:preparePUBLISHED_JAVA_RESDebugAndroidTestForPublishing' preparePUBLISHED_JAVA_RESDebugForPublishing: task ':app:preparePUBLISHED_JAVA_RESDebugForPublishing' preparePUBLISHED_JAVA_RESProfileForPublishing: task ':app:preparePUBLISHED_JAVA_RESProfileForPublishing' preparePUBLISHED_JAVA_RESReleaseForPublishing: task ':app:preparePUBLISHED_JAVA_RESReleaseForPublishing' preparePUBLISHED_NATIVE_LIBSDebugAndroidTestForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSDebugAndroidTestForPublishing' preparePUBLISHED_NATIVE_LIBSDebugForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSDebugForPublishing' preparePUBLISHED_NATIVE_LIBSProfileForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSProfileForPublishing' preparePUBLISHED_NATIVE_LIBSReleaseForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSReleaseForPublishing' 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@3dabb2e4 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.BuildOperationCrossProjectConfigurator@5e7a2547 projectDir: C:\Users\tpolanski\Documents\GitHub\test\bindingtest\android\app projectEvaluationBroadcaster: ProjectEvaluationListener broadcast projectEvaluator: org.gradle.configuration.project.LifecycleProjectEvaluator@3d905057 projectPath: :app projectRegistry: org.gradle.api.internal.project.DefaultProjectRegistry@74a68348 properties: {...} providers: org.gradle.api.internal.provider.DefaultProviderFactory@32035892 reportBuildArtifactsDebug: task ':app:reportBuildArtifactsDebug' reportBuildArtifactsProfile: task ':app:reportBuildArtifactsProfile' reportBuildArtifactsRelease: task ':app:reportBuildArtifactsRelease' reporting: org.gradle.api.reporting.ReportingExtension_Decorated@23481da1 reportsDir: C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app\reports repositories: repository container resolveConfigAttr: task ':app:resolveConfigAttr' resourceLoader: org.gradle.internal.resource.transfer.DefaultUriTextResourceLoader@2c174492 resources: org.gradle.api.internal.resources.DefaultResourceHandler@133aabaf rootDir: C:\Users\tpolanski\Documents\GitHub\test\bindingtest\android rootProject: root project 'android' script: false scriptHandlerFactory: org.gradle.api.internal.initialization.DefaultScriptHandlerFactory@5346c643 scriptPluginFactory: org.gradle.configuration.ScriptPluginFactorySelector@30007c9f serviceRegistryFactory: org.gradle.internal.service.scopes.ProjectScopeServices$4@26258dd9 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@495ef680 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: C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app\reports\tests testReportDirName: tests testResultsDir: C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app\test-results testResultsDirName: test-results transformClassesWithDexBuilderForDebug: task ':app:transformClassesWithDexBuilderForDebug' transformClassesWithDexBuilderForDebugAndroidTest: task ':app:transformClassesWithDexBuilderForDebugAndroidTest' transformClassesWithDexBuilderForProfile: task ':app:transformClassesWithDexBuilderForProfile' transformClassesWithDexBuilderForRelease: task ':app:transformClassesWithDexBuilderForRelease' transformDataBindingBaseClassLogWithDataBindingMergeGenClassesForDebug: task ':app:transformDataBindingBaseClassLogWithDataBindingMergeGenClassesForDebug' transformDataBindingBaseClassLogWithDataBindingMergeGenClassesForProfile: task ':app:transformDataBindingBaseClassLogWithDataBindingMergeGenClassesForProfile' transformDataBindingBaseClassLogWithDataBindingMergeGenClassesForRelease: task ':app:transformDataBindingBaseClassLogWithDataBindingMergeGenClassesForRelease' transformDataBindingWithDataBindingMergeArtifactsForDebug: task ':app:transformDataBindingWithDataBindingMergeArtifactsForDebug' transformDataBindingWithDataBindingMergeArtifactsForProfile: task ':app:transformDataBindingWithDataBindingMergeArtifactsForProfile' transformDataBindingWithDataBindingMergeArtifactsForRelease: task ':app:transformDataBindingWithDataBindingMergeArtifactsForRelease' transformDexArchiveWithDexMergerForDebug: task ':app:transformDexArchiveWithDexMergerForDebug' transformDexArchiveWithDexMergerForDebugAndroidTest: task ':app:transformDexArchiveWithDexMergerForDebugAndroidTest' transformDexArchiveWithDexMergerForProfile: task ':app:transformDexArchiveWithDexMergerForProfile' transformDexArchiveWithDexMergerForRelease: task ':app:transformDexArchiveWithDexMergerForRelease' transformDexArchiveWithExternalLibsDexMergerForDebug: task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug' transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest: task ':app:transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest' 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' BUILD SUCCESSFUL in 1s 1 actionable task: 1 executed Picked up _JAVA_OPTIONS: -Xmx1912m [ +18 ms] Running 'gradlew assembleDebug'... [ +3 ms] [android\] C:\Users\tpolanski\Documents\GitHub\test\bindingtest\android\gradlew.bat -Pverbose=true -Ptarget=lib/main.dart -Ppreview-dart-2=true -Ptarget-platform=android-arm assembleDebug [+1194 ms] app: 'annotationProcessor' dependencies won't be recognized as kapt annotation processors. Please change the configuration name to 'kapt' for these artifacts: 'com.android.databinding:compiler:3.1.2' and apply the kapt plugin: &quot;apply plugin: 'kotlin-kapt'&quot;. [ +26 ms] Build cache is an incubating feature. [ +15 ms] :app:preBuild UP-TO-DATE [ +206 ms] :app:preDebugBuild FROM-CACHE [ +31 ms] :app:compileDebugAidl FROM-CACHE [ +18 ms] :app:compileDebugRenderscript FROM-CACHE [ +20 ms] :app:generateDebugResValues FROM-CACHE [ +18 ms] :app:generateDebugResources UP-TO-DATE [ +695 ms] :app:mergeDebugResources FROM-CACHE [ +20 ms] :app:transformDataBindingBaseClassLogWithDataBindingMergeGenClassesForDebug [ +10 ms] :app:dataBindingGenBaseClassesDebug [ +10 ms] :app:checkDebugManifest [ +31 ms] :app:generateDebugBuildConfig [ +9 ms] :app:prepareLintJar [ +10 ms] :app:cleanMergeDebugAssets UP-TO-DATE [ +818 ms] :app:flutterBuildDebug [ +13 ms] [ +9 ms] [C:\Users\tpolanski\Documents\GitHub\flutter\] git rev-parse --abbrev-ref --symbolic @{u} [ +67 ms] [ +90 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ +3 ms] [ ] origin/master [ +13 ms] [ ] [C:\Users\tpolanski\Documents\GitHub\flutter\] git rev-parse --abbrev-ref HEAD [ +35 ms] [ +50 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ +2 ms] [ ] master [ +12 ms] [ ] [C:\Users\tpolanski\Documents\GitHub\flutter\] git ls-remote --get-url origin [ +34 ms] [ +50 ms] Exit code 0 from: git ls-remote --get-url origin [ +14 ms] [ ] https://github.com/flutter/flutter.git [ +2 ms] [ ] [C:\Users\tpolanski\Documents\GitHub\flutter\] git log -n 1 --pretty=format:%H [ +43 ms] [ +56 ms] Exit code 0 from: git log -n 1 --pretty=format:%H [ +3 ms] [ ] b931640c1d582fe51525b8c1b32641fb13b25d5c [ +13 ms] [ ] [C:\Users\tpolanski\Documents\GitHub\flutter\] git log -n 1 --pretty=format:%ar [ +34 ms] [ +51 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar [ +4 ms] [ ] 29 hours ago [ +2 ms] [ ] [C:\Users\tpolanski\Documents\GitHub\flutter\] git describe --match v*.*.* --first-parent --long --tags [ +85 ms] [ +95 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags [ +2 ms] [ ] v0.5.6-83-gb931640c1 [ +403 ms] [ +403 ms] C:\Users\tpolanski\Documents\GitHub\flutter\bin\cache\dart-sdk\bin\dart C:\Users\tpolanski\Documents\GitHub\flutter\bin\cache\artifacts\engine\windows-x64\frontend_server.dart.snapshot --sdk-root C:\Users\tpolanski\Documents\GitHub\flutter\bin\cache\artifacts\engine\common\flutter_patched_sdk/ --strong --target=flutter --no-link-platform --incremental --packages C:\Users\tpolanski\Documents\GitHub\test\bindingtest\.packages --output-dill build\app.dill --depfile C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app\intermediates\flutter\debug/snapshot_blob.bin.d --filesystem-scheme org-dartlang-root C:\Users\tpolanski\Documents\GitHub\test\bindingtest\lib/main.dart [+3798 ms] [+3802 ms] Building bundle [ +3 ms] [ ] Writing asset files to C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app\intermediates\flutter\debug/flutter_assets [ +67 ms] [ +66 ms] Wrote C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app\intermediates\flutter\debug/flutter_assets [ +9 ms] [ +9 ms] &quot;flutter bundle&quot; took 4,128ms. [ +131 ms] :app:mergeDebugShaders FROM-CACHE [ +10 ms] :app:compileDebugShaders FROM-CACHE [ +4 ms] :app:generateDebugAssets UP-TO-DATE [ +5 ms] :app:mergeDebugAssets FROM-CACHE [ +203 ms] :app:copyFlutterAssetsDebug [ +21 ms] :app:mainApkListPersistenceDebug [ +10 ms] :app:createDebugCompatibleScreenManifests FROM-CACHE [ +70 ms] :app:processDebugManifest [ +10 ms] :app:splitsDiscoveryTaskDebug FROM-CACHE [ +961 ms] :app:processDebugResources [ +2 ms] :app:generateDebugSources [ +27 ms] :app:dataBindingExportBuildInfoDebug FAILED [ +19 ms] FAILURE: Build failed with an exception. [ +1 ms] * What went wrong: [ ] Could not resolve all files for configuration ':app:debugCompileClasspath'. [ ] &gt; Failed to transform file 'flutter-x86.jar' to match attributes {artifactType=android-classes} using transform JarTransform [ ] &gt; Transform output file C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app\intermediates\flutter\flutter-x86.jar does not exist. [ ] * 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 9s [ +1 ms] 22 actionable tasks: 11 executed, 10 from cache, 1 up-to-date [ +377 ms] Picked up _JAVA_OPTIONS: -Xmx1912m [ +82 ms] &quot;flutter apk&quot; took 13,223ms. Gradle build failed: 1 #0 throwToolExit (package:flutter_tools/src/base/common.dart:26) #1 _buildGradleProjectV2 (package:flutter_tools/src/android/gradle.dart:368) &lt;asynchronous suspension&gt; #2 buildGradleProject (package:flutter_tools/src/android/gradle.dart:278) &lt;asynchronous suspension&gt; #3 buildApk (package:flutter_tools/src/android/apk.dart:36) &lt;asynchronous suspension&gt; #4 BuildApkCommand.runCommand (package:flutter_tools/src/commands/build_apk.dart:47) &lt;asynchronous suspension&gt; #5 FlutterCommand.verifyThenRunCommand (package:flutter_tools/src/runner/flutter_command.dart:347) #6 _asyncThenWrapperHelper.&lt;anonymous closure&gt; (dart:async-patch/dart:async/async_patch.dart:77) #7 _rootRunUnary (dart:async/zone.dart:1134) #8 _CustomZone.runUnary (dart:async/zone.dart:1031) #9 _FutureListener.handleValue (dart:async/future_impl.dart:129) #10 Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:638) #11 Future._propagateToListeners (dart:async/future_impl.dart:667) #12 Future._complete (dart:async/future_impl.dart:472) #13 _SyncCompleter.complete (dart:async/future_impl.dart:51) #14 _AsyncAwaitCompleter.complete.&lt;anonymous closure&gt; (dart:async-patch/dart:async/async_patch.dart:33) #15 _rootRun (dart:async/zone.dart:1126) #16 _CustomZone.run (dart:async/zone.dart:1023) #17 _CustomZone.bindCallback.&lt;anonymous closure&gt; (dart:async/zone.dart:949) #18 _microtaskLoop (dart:async/schedule_microtask.dart:41) #19 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50) #20 _runPendingImmediateCallback (dart:isolate-patch/dart:isolate/isolate_patch.dart:113) #21 _RawReceivePortImpl._handleMessage (dart:isolate-patch/dart:isolate/isolate_patch.dart:166)"><pre class="notranslate"><code class="notranslate">C:\Users\tpolanski\Documents\GitHub\test\bindingtest&gt;flutter build apk --debug --verbose [ +45 ms] [c:\Users\tpolanski\Documents\GitHub\flutter\] git rev-parse --abbrev-ref --symbolic @{u} [ +80 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ +2 ms] origin/master [ +12 ms] [c:\Users\tpolanski\Documents\GitHub\flutter\] git rev-parse --abbrev-ref HEAD [ +58 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ +2 ms] master [ +14 ms] [c:\Users\tpolanski\Documents\GitHub\flutter\] git ls-remote --get-url origin [ +50 ms] Exit code 0 from: git ls-remote --get-url origin [ +2 ms] https://github.com/flutter/flutter.git [ ] [c:\Users\tpolanski\Documents\GitHub\flutter\] git log -n 1 --pretty=format:%H [ +63 ms] Exit code 0 from: git log -n 1 --pretty=format:%H [ +1 ms] b931640c1d582fe51525b8c1b32641fb13b25d5c [ +13 ms] [c:\Users\tpolanski\Documents\GitHub\flutter\] git log -n 1 --pretty=format:%ar [ +74 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar [ +2 ms] 29 hours ago [ +13 ms] [c:\Users\tpolanski\Documents\GitHub\flutter\] git describe --match v*.*.* --first-parent --long --tags [ +103 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags [ +2 ms] v0.5.6-83-gb931640c1 [ +589 ms] Initializing gradle... [ +3 ms] Using gradle from C:\Users\tpolanski\Documents\GitHub\test\bindingtest\android\gradlew.bat. [ +540 ms] C:\Users\tpolanski\Documents\GitHub\test\bindingtest\android\gradlew.bat -v [ +701 ms] ------------------------------------------------------------ Gradle 4.4 ------------------------------------------------------------ Build time: 2017-12-06 09:05:06 UTC Revision: cf7821a6f79f8e2a598df21780e3ff7ce8db2b82 Groovy: 2.4.12 Ant: Apache Ant(TM) version 1.9.9 compiled on February 2 2017 JVM: 1.8.0_152-release (JetBrains s.r.o 25.152-b02) OS: Windows 10 10.0 amd64 Picked up _JAVA_OPTIONS: -Xmx1912m [ +19 ms] Resolving dependencies... [ ] [android\] C:\Users\tpolanski\Documents\GitHub\test\bindingtest\android\gradlew.bat app:properties [+1715 ms] Observed package id 'platform-tools' in inconsistent location 'C:\Users\tpolanski\.android-sdk\platform-toolss' (Expected 'C:\Users\tpolanski\.android-sdk\platform-tools') Already observed package id 'platform-tools' in 'C:\Users\tpolanski\.android-sdk\platform-tools'. Skipping duplicate at 'C:\Users\tpolanski\.android-sdk\platform-toolss' app: 'annotationProcessor' dependencies won't be recognized as kapt annotation processors. Please change the configuration name to 'kapt' for these artifacts: 'com.android.databinding:compiler:3.1.2' and apply the kapt plugin: "apply plugin: 'kotlin-kapt'". Build cache is an incubating feature. :app:properties ------------------------------------------------------------ Project :app ------------------------------------------------------------ allprojects: [project ':app'] android: com.android.build.gradle.AppExtension_Decorated@63629da0 androidDependencies: task ':app:androidDependencies' ant: org.gradle.api.internal.project.DefaultAntBuilder@6fbbec0e antBuilderFactory: org.gradle.api.internal.project.DefaultAntBuilderFactory@1b9c5dc6 archivesBaseName: app artifacts: org.gradle.api.internal.artifacts.dsl.DefaultArtifactHandler_Decorated@3e808d9e 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.DefaultClassLoaderScope@49788873 buildDependents: task ':app:buildDependents' buildDir: C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app buildFile: C:\Users\tpolanski\Documents\GitHub\test\bindingtest\android\app\build.gradle buildNeeded: task ':app:buildNeeded' buildOutputs: BaseVariantOutput container buildPath: : buildScriptSource: org.gradle.groovy.scripts.TextResourceScriptSource@7993d6ce buildscript: org.gradle.api.internal.initialization.DefaultScriptHandler@98d657 bundleAppClassesDebug: task ':app:bundleAppClassesDebug' bundleAppClassesDebugAndroidTest: task ':app:bundleAppClassesDebugAndroidTest' bundleAppClassesDebugUnitTest: task ':app:bundleAppClassesDebugUnitTest' bundleAppClassesProfile: task ':app:bundleAppClassesProfile' bundleAppClassesProfileUnitTest: task ':app:bundleAppClassesProfileUnitTest' bundleAppClassesRelease: task ':app:bundleAppClassesRelease' bundleAppClassesReleaseUnitTest: task ':app:bundleAppClassesReleaseUnitTest' bundleDebugAndroidTestResources: task ':app:bundleDebugAndroidTestResources' bundleDebugResources: task ':app:bundleDebugResources' bundleProfileResources: task ':app:bundleProfileResources' bundleReleaseResources: task ':app:bundleReleaseResources' check: task ':app:check' checkDebugManifest: task ':app:checkDebugManifest' checkProfileManifest: task ':app:checkProfileManifest' checkReleaseManifest: task ':app:checkReleaseManifest' childProjects: {} class: class org.gradle.api.internal.project.DefaultProject_Decorated classLoaderScope: org.gradle.api.internal.initialization.DefaultClassLoaderScope@3ace57a7 cleanBuildCache: task ':app:cleanBuildCache' compileDebugAidl: task ':app:compileDebugAidl' compileDebugAndroidTestAidl: task ':app:compileDebugAndroidTestAidl' compileDebugAndroidTestJavaWithJavac: task ':app:compileDebugAndroidTestJavaWithJavac' compileDebugAndroidTestKotlin: task ':app:compileDebugAndroidTestKotlin' compileDebugAndroidTestNdk: task ':app:compileDebugAndroidTestNdk' compileDebugAndroidTestRenderscript: task ':app:compileDebugAndroidTestRenderscript' compileDebugAndroidTestShaders: task ':app:compileDebugAndroidTestShaders' compileDebugAndroidTestSources: task ':app:compileDebugAndroidTestSources' compileDebugJavaWithJavac: task ':app:compileDebugJavaWithJavac' compileDebugKotlin: task ':app:compileDebugKotlin' compileDebugNdk: task ':app:compileDebugNdk' compileDebugRenderscript: task ':app:compileDebugRenderscript' compileDebugShaders: task ':app:compileDebugShaders' compileDebugSources: task ':app:compileDebugSources' compileDebugUnitTestJavaWithJavac: task ':app:compileDebugUnitTestJavaWithJavac' compileDebugUnitTestKotlin: task ':app:compileDebugUnitTestKotlin' compileDebugUnitTestSources: task ':app:compileDebugUnitTestSources' compileLint: task ':app:compileLint' compileProfileAidl: task ':app:compileProfileAidl' compileProfileJavaWithJavac: task ':app:compileProfileJavaWithJavac' compileProfileKotlin: task ':app:compileProfileKotlin' compileProfileNdk: task ':app:compileProfileNdk' compileProfileRenderscript: task ':app:compileProfileRenderscript' compileProfileShaders: task ':app:compileProfileShaders' compileProfileSources: task ':app:compileProfileSources' compileProfileUnitTestJavaWithJavac: task ':app:compileProfileUnitTestJavaWithJavac' compileProfileUnitTestKotlin: task ':app:compileProfileUnitTestKotlin' compileProfileUnitTestSources: task ':app:compileProfileUnitTestSources' compileReleaseAidl: task ':app:compileReleaseAidl' compileReleaseJavaWithJavac: task ':app:compileReleaseJavaWithJavac' compileReleaseKotlin: task ':app:compileReleaseKotlin' compileReleaseNdk: task ':app:compileReleaseNdk' compileReleaseRenderscript: task ':app:compileReleaseRenderscript' compileReleaseShaders: task ':app:compileReleaseShaders' compileReleaseSources: task ':app:compileReleaseSources' compileReleaseUnitTestJavaWithJavac: task ':app:compileReleaseUnitTestJavaWithJavac' compileReleaseUnitTestKotlin: task ':app:compileReleaseUnitTestKotlin' compileReleaseUnitTestSources: task ':app:compileReleaseUnitTestSources' components: SoftwareComponentInternal set configurationActions: org.gradle.configuration.project.DefaultProjectConfigurationActionContainer@37f87b9d configurationTargetIdentifier: org.gradle.configuration.ConfigurationTargetIdentifier$1@50bafe0a 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@16d6b024 copyFlutterAssetsDebug: task ':app:copyFlutterAssetsDebug' copyFlutterAssetsProfile: task ':app:copyFlutterAssetsProfile' copyFlutterAssetsRelease: task ':app:copyFlutterAssetsRelease' createDebugCompatibleScreenManifests: task ':app:createDebugCompatibleScreenManifests' createProfileCompatibleScreenManifests: task ':app:createProfileCompatibleScreenManifests' createReleaseCompatibleScreenManifests: task ':app:createReleaseCompatibleScreenManifests' dataBindingExportBuildInfoDebug: task ':app:dataBindingExportBuildInfoDebug' dataBindingExportBuildInfoProfile: task ':app:dataBindingExportBuildInfoProfile' dataBindingExportBuildInfoRelease: task ':app:dataBindingExportBuildInfoRelease' dataBindingGenBaseClassesDebug: task ':app:dataBindingGenBaseClassesDebug' dataBindingGenBaseClassesProfile: task ':app:dataBindingGenBaseClassesProfile' dataBindingGenBaseClassesRelease: task ':app:dataBindingGenBaseClassesRelease' defaultArtifacts: org.gradle.api.internal.plugins.DefaultArtifactPublicationSet_Decorated@5eedae36 defaultTasks: [] deferredProjectConfiguration: org.gradle.api.internal.project.DeferredProjectConfiguration@2a3d12e5 dependencies: org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler_Decorated@2df0e306 depth: 1 description: null deviceAndroidTest: task ':app:deviceAndroidTest' deviceCheck: task ':app:deviceCheck' displayName: project ':app' distsDir: C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app\distributions distsDirName: distributions docsDir: C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app\docs docsDirName: docs ext: org.gradle.api.internal.plugins.DefaultExtraPropertiesExtension@e04210c extensions: org.gradle.api.internal.plugins.DefaultConvention@16d6b024 extractProguardFiles: task ':app:extractProguardFiles' fileOperations: org.gradle.api.internal.file.DefaultFileOperations@3dabb2e4 fileResolver: org.gradle.api.internal.file.BaseDirFileResolver@7f43358e flutter: FlutterExtension_Decorated@550111b3 flutterBuildDebug: task ':app:flutterBuildDebug' flutterBuildProfile: task ':app:flutterBuildProfile' flutterBuildRelease: task ':app:flutterBuildRelease' flutterBuildX86Jar: task ':app:flutterBuildX86Jar' 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' generateDebugResValues: task ':app:generateDebugResValues' generateDebugResources: task ':app:generateDebugResources' generateDebugSources: task ':app:generateDebugSources' generateProfileAssets: task ':app:generateProfileAssets' generateProfileBuildConfig: task ':app:generateProfileBuildConfig' generateProfileResValues: task ':app:generateProfileResValues' generateProfileResources: task ':app:generateProfileResources' generateProfileSources: task ':app:generateProfileSources' generateReleaseAssets: task ':app:generateReleaseAssets' generateReleaseBuildConfig: task ':app:generateReleaseBuildConfig' generateReleaseResValues: task ':app:generateReleaseResValues' generateReleaseResources: task ':app:generateReleaseResources' generateReleaseSources: task ':app:generateReleaseSources' gradle: build 'android' group: android identityPath: :app inheritedScope: org.gradle.api.internal.ExtensibleDynamicObject$InheritedDynamicObject@7aa2565e installDebug: task ':app:installDebug' installDebugAndroidTest: task ':app:installDebugAndroidTest' installProfile: task ':app:installProfile' installRelease: task ':app:installRelease' 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' kapt: org.jetbrains.kotlin.gradle.plugin.KaptExtension_Decorated@1a7ee77c kotlin: org.jetbrains.kotlin.gradle.dsl.KotlinProjectExtension_Decorated@7c774ef8 kotlin_version: 1.2.30 layout: org.gradle.api.internal.file.DefaultProjectLayout@21a6544c libsDir: C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app\libs libsDirName: libs lint: task ':app:lint' lintDebug: task ':app:lintDebug' lintProfile: task ':app:lintProfile' lintRelease: task ':app:lintRelease' lintVitalRelease: task ':app:lintVitalRelease' logger: org.gradle.internal.logging.slf4j.OutputEventListenerBackedLogger@66d8fcf1 logging: org.gradle.internal.logging.services.DefaultLoggingManager@495ef680 mainApkListPersistenceDebug: task ':app:mainApkListPersistenceDebug' mainApkListPersistenceDebugAndroidTest: task ':app:mainApkListPersistenceDebugAndroidTest' mainApkListPersistenceProfile: task ':app:mainApkListPersistenceProfile' mainApkListPersistenceRelease: task ':app:mainApkListPersistenceRelease' 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' mockableAndroidJar: task ':app:mockableAndroidJar' modelRegistry: org.gradle.model.internal.registry.DefaultModelRegistry@24f6bdd0 modelSchemaStore: org.gradle.model.internal.manage.schema.extract.DefaultModelSchemaStore@7a928b7f module: org.gradle.api.internal.artifacts.ProjectBackedModule@61d5c52e name: app normalization: org.gradle.normalization.internal.DefaultInputNormalizationHandler_Decorated@62b02738 objects: org.gradle.api.internal.model.DefaultObjectFactory@71270b16 org.gradle.caching: true org.gradle.daemon: true org.gradle.jvmargs: -Xmx1536m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 org.gradle.parallel: false packageDebug: task ':app:packageDebug' packageDebugAndroidTest: task ':app:packageDebugAndroidTest' packageProfile: task ':app:packageProfile' packageRelease: task ':app:packageRelease' parent: root project 'android' parentIdentifier: root project 'android' path: :app platformAttrExtractor: task ':app:platformAttrExtractor' pluginManager: org.gradle.api.internal.plugins.DefaultPluginManager_Decorated@4f731944 plugins: [org.gradle.api.plugins.HelpTasksPlugin@6c73e52a, com.android.build.gradle.api.AndroidBasePlugin@1e7d0847, org.gradle.language.base.plugins.LifecycleBasePlugin@6c5ad0d, org.gradle.api.plugins.BasePlugin@26cb5d3e, org.gradle.api.plugins.ReportingBasePlugin@520099c9, org.gradle.platform.base.plugins.ComponentBasePlugin@6de94a97, org.gradle.language.base.plugins.LanguageBasePlugin@3b714832, org.gradle.platform.base.plugins.BinaryBasePlugin@5c60f819, org.gradle.api.plugins.JavaBasePlugin@19e50a99, com.android.build.gradle.AppPlugin@16208959, org.jetbrains.kotlin.gradle.plugin.KotlinAndroidPluginWrapper@46b3edc8, FlutterPlugin@2c96c433] 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' preparePUBLISHED_DEXDebugAndroidTestForPublishing: task ':app:preparePUBLISHED_DEXDebugAndroidTestForPublishing' preparePUBLISHED_DEXDebugForPublishing: task ':app:preparePUBLISHED_DEXDebugForPublishing' preparePUBLISHED_DEXProfileForPublishing: task ':app:preparePUBLISHED_DEXProfileForPublishing' preparePUBLISHED_DEXReleaseForPublishing: task ':app:preparePUBLISHED_DEXReleaseForPublishing' preparePUBLISHED_JAVA_RESDebugAndroidTestForPublishing: task ':app:preparePUBLISHED_JAVA_RESDebugAndroidTestForPublishing' preparePUBLISHED_JAVA_RESDebugForPublishing: task ':app:preparePUBLISHED_JAVA_RESDebugForPublishing' preparePUBLISHED_JAVA_RESProfileForPublishing: task ':app:preparePUBLISHED_JAVA_RESProfileForPublishing' preparePUBLISHED_JAVA_RESReleaseForPublishing: task ':app:preparePUBLISHED_JAVA_RESReleaseForPublishing' preparePUBLISHED_NATIVE_LIBSDebugAndroidTestForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSDebugAndroidTestForPublishing' preparePUBLISHED_NATIVE_LIBSDebugForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSDebugForPublishing' preparePUBLISHED_NATIVE_LIBSProfileForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSProfileForPublishing' preparePUBLISHED_NATIVE_LIBSReleaseForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSReleaseForPublishing' 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@3dabb2e4 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.BuildOperationCrossProjectConfigurator@5e7a2547 projectDir: C:\Users\tpolanski\Documents\GitHub\test\bindingtest\android\app projectEvaluationBroadcaster: ProjectEvaluationListener broadcast projectEvaluator: org.gradle.configuration.project.LifecycleProjectEvaluator@3d905057 projectPath: :app projectRegistry: org.gradle.api.internal.project.DefaultProjectRegistry@74a68348 properties: {...} providers: org.gradle.api.internal.provider.DefaultProviderFactory@32035892 reportBuildArtifactsDebug: task ':app:reportBuildArtifactsDebug' reportBuildArtifactsProfile: task ':app:reportBuildArtifactsProfile' reportBuildArtifactsRelease: task ':app:reportBuildArtifactsRelease' reporting: org.gradle.api.reporting.ReportingExtension_Decorated@23481da1 reportsDir: C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app\reports repositories: repository container resolveConfigAttr: task ':app:resolveConfigAttr' resourceLoader: org.gradle.internal.resource.transfer.DefaultUriTextResourceLoader@2c174492 resources: org.gradle.api.internal.resources.DefaultResourceHandler@133aabaf rootDir: C:\Users\tpolanski\Documents\GitHub\test\bindingtest\android rootProject: root project 'android' script: false scriptHandlerFactory: org.gradle.api.internal.initialization.DefaultScriptHandlerFactory@5346c643 scriptPluginFactory: org.gradle.configuration.ScriptPluginFactorySelector@30007c9f serviceRegistryFactory: org.gradle.internal.service.scopes.ProjectScopeServices$4@26258dd9 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@495ef680 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: C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app\reports\tests testReportDirName: tests testResultsDir: C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app\test-results testResultsDirName: test-results transformClassesWithDexBuilderForDebug: task ':app:transformClassesWithDexBuilderForDebug' transformClassesWithDexBuilderForDebugAndroidTest: task ':app:transformClassesWithDexBuilderForDebugAndroidTest' transformClassesWithDexBuilderForProfile: task ':app:transformClassesWithDexBuilderForProfile' transformClassesWithDexBuilderForRelease: task ':app:transformClassesWithDexBuilderForRelease' transformDataBindingBaseClassLogWithDataBindingMergeGenClassesForDebug: task ':app:transformDataBindingBaseClassLogWithDataBindingMergeGenClassesForDebug' transformDataBindingBaseClassLogWithDataBindingMergeGenClassesForProfile: task ':app:transformDataBindingBaseClassLogWithDataBindingMergeGenClassesForProfile' transformDataBindingBaseClassLogWithDataBindingMergeGenClassesForRelease: task ':app:transformDataBindingBaseClassLogWithDataBindingMergeGenClassesForRelease' transformDataBindingWithDataBindingMergeArtifactsForDebug: task ':app:transformDataBindingWithDataBindingMergeArtifactsForDebug' transformDataBindingWithDataBindingMergeArtifactsForProfile: task ':app:transformDataBindingWithDataBindingMergeArtifactsForProfile' transformDataBindingWithDataBindingMergeArtifactsForRelease: task ':app:transformDataBindingWithDataBindingMergeArtifactsForRelease' transformDexArchiveWithDexMergerForDebug: task ':app:transformDexArchiveWithDexMergerForDebug' transformDexArchiveWithDexMergerForDebugAndroidTest: task ':app:transformDexArchiveWithDexMergerForDebugAndroidTest' transformDexArchiveWithDexMergerForProfile: task ':app:transformDexArchiveWithDexMergerForProfile' transformDexArchiveWithDexMergerForRelease: task ':app:transformDexArchiveWithDexMergerForRelease' transformDexArchiveWithExternalLibsDexMergerForDebug: task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug' transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest: task ':app:transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest' 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' BUILD SUCCESSFUL in 1s 1 actionable task: 1 executed Picked up _JAVA_OPTIONS: -Xmx1912m [ +18 ms] Running 'gradlew assembleDebug'... [ +3 ms] [android\] C:\Users\tpolanski\Documents\GitHub\test\bindingtest\android\gradlew.bat -Pverbose=true -Ptarget=lib/main.dart -Ppreview-dart-2=true -Ptarget-platform=android-arm assembleDebug [+1194 ms] app: 'annotationProcessor' dependencies won't be recognized as kapt annotation processors. Please change the configuration name to 'kapt' for these artifacts: 'com.android.databinding:compiler:3.1.2' and apply the kapt plugin: "apply plugin: 'kotlin-kapt'". [ +26 ms] Build cache is an incubating feature. [ +15 ms] :app:preBuild UP-TO-DATE [ +206 ms] :app:preDebugBuild FROM-CACHE [ +31 ms] :app:compileDebugAidl FROM-CACHE [ +18 ms] :app:compileDebugRenderscript FROM-CACHE [ +20 ms] :app:generateDebugResValues FROM-CACHE [ +18 ms] :app:generateDebugResources UP-TO-DATE [ +695 ms] :app:mergeDebugResources FROM-CACHE [ +20 ms] :app:transformDataBindingBaseClassLogWithDataBindingMergeGenClassesForDebug [ +10 ms] :app:dataBindingGenBaseClassesDebug [ +10 ms] :app:checkDebugManifest [ +31 ms] :app:generateDebugBuildConfig [ +9 ms] :app:prepareLintJar [ +10 ms] :app:cleanMergeDebugAssets UP-TO-DATE [ +818 ms] :app:flutterBuildDebug [ +13 ms] [ +9 ms] [C:\Users\tpolanski\Documents\GitHub\flutter\] git rev-parse --abbrev-ref --symbolic @{u} [ +67 ms] [ +90 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ +3 ms] [ ] origin/master [ +13 ms] [ ] [C:\Users\tpolanski\Documents\GitHub\flutter\] git rev-parse --abbrev-ref HEAD [ +35 ms] [ +50 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ +2 ms] [ ] master [ +12 ms] [ ] [C:\Users\tpolanski\Documents\GitHub\flutter\] git ls-remote --get-url origin [ +34 ms] [ +50 ms] Exit code 0 from: git ls-remote --get-url origin [ +14 ms] [ ] https://github.com/flutter/flutter.git [ +2 ms] [ ] [C:\Users\tpolanski\Documents\GitHub\flutter\] git log -n 1 --pretty=format:%H [ +43 ms] [ +56 ms] Exit code 0 from: git log -n 1 --pretty=format:%H [ +3 ms] [ ] b931640c1d582fe51525b8c1b32641fb13b25d5c [ +13 ms] [ ] [C:\Users\tpolanski\Documents\GitHub\flutter\] git log -n 1 --pretty=format:%ar [ +34 ms] [ +51 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar [ +4 ms] [ ] 29 hours ago [ +2 ms] [ ] [C:\Users\tpolanski\Documents\GitHub\flutter\] git describe --match v*.*.* --first-parent --long --tags [ +85 ms] [ +95 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags [ +2 ms] [ ] v0.5.6-83-gb931640c1 [ +403 ms] [ +403 ms] C:\Users\tpolanski\Documents\GitHub\flutter\bin\cache\dart-sdk\bin\dart C:\Users\tpolanski\Documents\GitHub\flutter\bin\cache\artifacts\engine\windows-x64\frontend_server.dart.snapshot --sdk-root C:\Users\tpolanski\Documents\GitHub\flutter\bin\cache\artifacts\engine\common\flutter_patched_sdk/ --strong --target=flutter --no-link-platform --incremental --packages C:\Users\tpolanski\Documents\GitHub\test\bindingtest\.packages --output-dill build\app.dill --depfile C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app\intermediates\flutter\debug/snapshot_blob.bin.d --filesystem-scheme org-dartlang-root C:\Users\tpolanski\Documents\GitHub\test\bindingtest\lib/main.dart [+3798 ms] [+3802 ms] Building bundle [ +3 ms] [ ] Writing asset files to C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app\intermediates\flutter\debug/flutter_assets [ +67 ms] [ +66 ms] Wrote C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app\intermediates\flutter\debug/flutter_assets [ +9 ms] [ +9 ms] "flutter bundle" took 4,128ms. [ +131 ms] :app:mergeDebugShaders FROM-CACHE [ +10 ms] :app:compileDebugShaders FROM-CACHE [ +4 ms] :app:generateDebugAssets UP-TO-DATE [ +5 ms] :app:mergeDebugAssets FROM-CACHE [ +203 ms] :app:copyFlutterAssetsDebug [ +21 ms] :app:mainApkListPersistenceDebug [ +10 ms] :app:createDebugCompatibleScreenManifests FROM-CACHE [ +70 ms] :app:processDebugManifest [ +10 ms] :app:splitsDiscoveryTaskDebug FROM-CACHE [ +961 ms] :app:processDebugResources [ +2 ms] :app:generateDebugSources [ +27 ms] :app:dataBindingExportBuildInfoDebug FAILED [ +19 ms] FAILURE: Build failed with an exception. [ +1 ms] * What went wrong: [ ] Could not resolve all files for configuration ':app:debugCompileClasspath'. [ ] &gt; Failed to transform file 'flutter-x86.jar' to match attributes {artifactType=android-classes} using transform JarTransform [ ] &gt; Transform output file C:\Users\tpolanski\Documents\GitHub\test\bindingtest\build\app\intermediates\flutter\flutter-x86.jar does not exist. [ ] * 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 9s [ +1 ms] 22 actionable tasks: 11 executed, 10 from cache, 1 up-to-date [ +377 ms] Picked up _JAVA_OPTIONS: -Xmx1912m [ +82 ms] "flutter apk" took 13,223ms. Gradle build failed: 1 #0 throwToolExit (package:flutter_tools/src/base/common.dart:26) #1 _buildGradleProjectV2 (package:flutter_tools/src/android/gradle.dart:368) &lt;asynchronous suspension&gt; #2 buildGradleProject (package:flutter_tools/src/android/gradle.dart:278) &lt;asynchronous suspension&gt; #3 buildApk (package:flutter_tools/src/android/apk.dart:36) &lt;asynchronous suspension&gt; #4 BuildApkCommand.runCommand (package:flutter_tools/src/commands/build_apk.dart:47) &lt;asynchronous suspension&gt; #5 FlutterCommand.verifyThenRunCommand (package:flutter_tools/src/runner/flutter_command.dart:347) #6 _asyncThenWrapperHelper.&lt;anonymous closure&gt; (dart:async-patch/dart:async/async_patch.dart:77) #7 _rootRunUnary (dart:async/zone.dart:1134) #8 _CustomZone.runUnary (dart:async/zone.dart:1031) #9 _FutureListener.handleValue (dart:async/future_impl.dart:129) #10 Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:638) #11 Future._propagateToListeners (dart:async/future_impl.dart:667) #12 Future._complete (dart:async/future_impl.dart:472) #13 _SyncCompleter.complete (dart:async/future_impl.dart:51) #14 _AsyncAwaitCompleter.complete.&lt;anonymous closure&gt; (dart:async-patch/dart:async/async_patch.dart:33) #15 _rootRun (dart:async/zone.dart:1126) #16 _CustomZone.run (dart:async/zone.dart:1023) #17 _CustomZone.bindCallback.&lt;anonymous closure&gt; (dart:async/zone.dart:949) #18 _microtaskLoop (dart:async/schedule_microtask.dart:41) #19 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50) #20 _runPendingImmediateCallback (dart:isolate-patch/dart:isolate/isolate_patch.dart:113) #21 _RawReceivePortImpl._handleMessage (dart:isolate-patch/dart:isolate/isolate_patch.dart:166) </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="C:\Users\tpolanski\Documents\GitHub\test\bindingtest&gt;flutter doctor --verbose [√] Flutter (Channel master, v0.5.7-pre.83, on Microsoft Windows [Version 10.0.16299.431], locale en-GB) • Flutter version 0.5.7-pre.83 at c:\Users\tpolanski\Documents\GitHub\flutter • Framework revision b931640c1d (29 hours ago), 2018-07-10 06:51:12 +0100 • Engine revision 6fe748490d • Dart version 2.0.0-dev.63.0.flutter-4c9689c1d2 [!] Android toolchain - develop for Android devices (Android SDK 27.0.3) • Android SDK at C:\Users\tpolanski\.android-sdk • Android NDK location not configured (optional; useful for native profiling support) • Platform android-27, build-tools 27.0.3 • Java binary at: C:\Users\tpolanski\android-studio\jre\bin\java • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b02) ! Some Android licenses not accepted. To resolve this, run: flutter doctor --android-licenses [√] Android Studio (version 2.3) • Android Studio at C:\Program Files\Android\Android Studio X Flutter plugin not installed; this adds Flutter specific functionality. X Dart plugin not installed; this adds Dart specific functionality. • Java version OpenJDK Runtime Environment (build 1.8.0_112-release-b06) [√] Android Studio (version 3.1) • Android Studio at C:\Program Files\Android\Android Studio3 • Flutter plugin version 26.0.1 • Dart plugin version 173.4700 • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b02) [√] Android Studio (version 3.1) • Android Studio at C:\Users\tpolanski\android-studio • Flutter plugin version 26.0.1 • Dart plugin version 173.4700 • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b02) [√] VS Code, 64-bit edition (version 1.25.0) • VS Code at C:\Program Files\Microsoft VS Code • Flutter extension version 2.15.0 [√] Connected devices (1 available) • Android SDK built for x86 • emulator-5554 • android-x86 • Android 7.1.1 (API 25) (emulator) ! Doctor found issues in 1 category."><pre class="notranslate"><code class="notranslate">C:\Users\tpolanski\Documents\GitHub\test\bindingtest&gt;flutter doctor --verbose [√] Flutter (Channel master, v0.5.7-pre.83, on Microsoft Windows [Version 10.0.16299.431], locale en-GB) • Flutter version 0.5.7-pre.83 at c:\Users\tpolanski\Documents\GitHub\flutter • Framework revision b931640c1d (29 hours ago), 2018-07-10 06:51:12 +0100 • Engine revision 6fe748490d • Dart version 2.0.0-dev.63.0.flutter-4c9689c1d2 [!] Android toolchain - develop for Android devices (Android SDK 27.0.3) • Android SDK at C:\Users\tpolanski\.android-sdk • Android NDK location not configured (optional; useful for native profiling support) • Platform android-27, build-tools 27.0.3 • Java binary at: C:\Users\tpolanski\android-studio\jre\bin\java • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b02) ! Some Android licenses not accepted. To resolve this, run: flutter doctor --android-licenses [√] Android Studio (version 2.3) • Android Studio at C:\Program Files\Android\Android Studio X Flutter plugin not installed; this adds Flutter specific functionality. X Dart plugin not installed; this adds Dart specific functionality. • Java version OpenJDK Runtime Environment (build 1.8.0_112-release-b06) [√] Android Studio (version 3.1) • Android Studio at C:\Program Files\Android\Android Studio3 • Flutter plugin version 26.0.1 • Dart plugin version 173.4700 • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b02) [√] Android Studio (version 3.1) • Android Studio at C:\Users\tpolanski\android-studio • Flutter plugin version 26.0.1 • Dart plugin version 173.4700 • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b02) [√] VS Code, 64-bit edition (version 1.25.0) • VS Code at C:\Program Files\Microsoft VS Code • Flutter extension version 2.15.0 [√] Connected devices (1 available) • Android SDK built for x86 • emulator-5554 • android-x86 • Android 7.1.1 (API 25) (emulator) ! Doctor found issues in 1 category. </code></pre></div> <p dir="auto">This issue is problematic for me as we integrate Flutter in already existing application that already has data bindings in.</p> <p dir="auto">Cheers!</p>
0
<p dir="auto">This gives an compile error:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" type t = () =&gt; void; abstract class A { abstract f : t } "><pre class="notranslate"><code class="notranslate"> type t = () =&gt; void; abstract class A { abstract f : t } </code></pre></div> <p dir="auto">This compiles:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" abstract class A { abstract f () : void; } "><pre class="notranslate"><code class="notranslate"> abstract class A { abstract f () : void; } </code></pre></div> <p dir="auto">Shouldn't both be possible if we support type aliases?</p> <p dir="auto">I used Typescript 1.7.5.</p>
<p dir="auto">This is a proposal to extend <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="89677065" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript/issues/3578" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/3578/hovercard" href="https://github.com/microsoft/TypeScript/issues/3578">#3578</a> to allow abstract properties in abstract classes. So the following should be legal:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="abstract class A { abstract p; } class B extends A { get p() {...} set p(v) {...} }"><pre class="notranslate"><span class="pl-k">abstract</span> <span class="pl-k">class</span> <span class="pl-smi">A</span> <span class="pl-kos">{</span> <span class="pl-k">abstract</span> <span class="pl-c1">p</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">class</span> <span class="pl-smi">B</span> <span class="pl-k">extends</span> <span class="pl-smi">A</span> <span class="pl-kos">{</span> <span class="pl-k">get</span> <span class="pl-en">p</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>...<span class="pl-kos">}</span> <span class="pl-k">set</span> <span class="pl-en">p</span><span class="pl-kos">(</span><span class="pl-s1">v</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>...<span class="pl-kos">}</span> <span class="pl-kos">}</span></pre></div>
1
<p dir="auto">On numpy current master (<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/numpy/numpy/commit/da6e4c71aa229b8bdb18d643456cda4594e6384a/hovercard" href="https://github.com/numpy/numpy/commit/da6e4c71aa229b8bdb18d643456cda4594e6384a"><tt>da6e4c7</tt></a>), np.matmul is apparently not using BLAS:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; import numpy as np &gt;&gt;&gt; x = np.random.rand(5, 512, 512) &gt;&gt;&gt; %timeit np.matmul(x, x) 1 loops, best of 3: 526 ms per loop &gt;&gt;&gt; def xmul(a, b): ... out = np.empty_like(a) ... for j in range(a.shape[0]): ... out[j] = np.dot(a[j], b[j]) ... return out &gt;&gt;&gt; %timeit xmul(x, x) 10 loops, best of 3: 28 ms per loop"><pre class="notranslate"><code class="notranslate">&gt;&gt;&gt; import numpy as np &gt;&gt;&gt; x = np.random.rand(5, 512, 512) &gt;&gt;&gt; %timeit np.matmul(x, x) 1 loops, best of 3: 526 ms per loop &gt;&gt;&gt; def xmul(a, b): ... out = np.empty_like(a) ... for j in range(a.shape[0]): ... out[j] = np.dot(a[j], b[j]) ... return out &gt;&gt;&gt; %timeit xmul(x, x) 10 loops, best of 3: 28 ms per loop </code></pre></div> <p dir="auto">Of course, it's a preliminary feature, but probably best to have an issue for this.</p>
<p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/numpy/ticket/1071" rel="nofollow">http://projects.scipy.org/numpy/ticket/1071</a> on 2009-03-30 by trac user Electrion, assigned to unknown.</em></p> <p dir="auto">Hello,</p> <p dir="auto">I recently noticed that loadtxt() fails when I try to load a file that contains no value on the last column when it is TAB delimited.</p> <p dir="auto">For example :</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="s = StringIO('#X\tY\tC\n1.\t1.\t1.\n2.\t2.\t\n') loadtxt(s)"><pre class="notranslate"><code class="notranslate">s = StringIO('#X\tY\tC\n1.\t1.\t1.\n2.\t2.\t\n') loadtxt(s) </code></pre></div> <p dir="auto">will fail with Exception:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ValueError: setting an array element with a sequence."><pre class="notranslate"><code class="notranslate">ValueError: setting an array element with a sequence. </code></pre></div> <p dir="auto">The use of dtypes or converters (like {2: lambda s: float(s or 'Nan')} ) doesn't help.</p> <p dir="auto">After investigation, I noticed that the loadtxt function strip all lines before splitting and then remove the '\t\n'.</p> <p dir="auto">If think the 'split_line' subfunction in numpy.io.loadtxt</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" def split_line(line): &quot;&quot;&quot;Chop off comments, strip, and split at delimiter.&quot;&quot;&quot; line = line.split(comments)[0].strip() [...]"><pre class="notranslate"><code class="notranslate"> def split_line(line): """Chop off comments, strip, and split at delimiter.""" line = line.split(comments)[0].strip() [...] </code></pre></div> <p dir="auto">should be replaced by</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" def split_line(line): &quot;&quot;&quot;Chop off comments, strip, and split at delimiter.&quot;&quot;&quot; line = line.split(comments)[0].strip('\r\n') [...]"><pre class="notranslate"><code class="notranslate"> def split_line(line): """Chop off comments, strip, and split at delimiter.""" line = line.split(comments)[0].strip('\r\n') [...] </code></pre></div> <p dir="auto">to remove any new line character but not the delimiter.</p>
0
<p dir="auto">I want a feature.</p> <p dir="auto">To be able to extend the SyntheticUIEvents, so that I can add my own Event when required.<br> Thank you.</p>
<p dir="auto">Please add support for custom non-standard DOM events, ideally through a public API but if that's a "no go" at least some way that would not require forking the code base.</p> <p dir="auto">Here is my attempt of exposing non-standard events after getting some insights on IRC, unfortunately it still does not work (as event listeners are not registered) and I am not sure if there is more whitelists somewhere that skips those custom events:<br> <a href="https://gist.github.com/Gozala/a977973957fcee9c5671">https://gist.github.com/Gozala/a977973957fcee9c5671</a></p> <p dir="auto">P.S.: Any help in changing this snippet to make it work is also greatly appreciated</p>
1
<p dir="auto">According to the documentation, " plugins can be shipped in a subdirectory relative to a top-level playbook", and this used to work in v1.</p> <p dir="auto">With v2 however, this does not work (at least for lookup_plugins) unless the "lookup_plugins" subdirectory is explicitly mentioned in ansible.cfg.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ mkdir lookup_plugins $ cp $ANSIBLE_ROOT/lib/ansible/plugins/lookup/items.py lookup_plugins/myitems $ cat test_lookup_pl.yml --- - hosts: localhost tasks: - name: Print items from custom lookup plugin debug: msg=&quot;Item= {{ item }} &quot; with_myitems: - foo - bar $ ansible-playbook test_lookup_pl.yml PLAY **************************************************************************** TASK [setup] ******************************************************************** ok: [localhost] TASK [Print items from custom lookup plugin] ************************************ fatal: [localhost]: FAILED! =&gt; {&quot;failed&quot;: true, &quot;msg&quot;: &quot;ERROR! the field 'args' has an invalid value, which appears to include a variable that is undefined. The error was: 'item' is undefined&quot;} PLAY RECAP ********************************************************************** localhost : ok=1 changed=0 unreachable=0 failed=1 Now if I create an ansible.cfg file: $ cat ansible.cfg [defaults] lookup_plugins=./lookup_plugins $ ansible-playbook test_lookup_pl.yml PLAY **************************************************************************** TASK [setup] ******************************************************************** ok: [localhost] TASK [Print items from custom lookup plugin] ************************************ ok: [localhost] =&gt; (item=foo) =&gt; { &quot;item&quot;: &quot;foo&quot;, &quot;msg&quot;: &quot;Item= foo &quot; } ok: [localhost] =&gt; (item=bar) =&gt; { &quot;item&quot;: &quot;bar&quot;, &quot;msg&quot;: &quot;Item= bar &quot; } ok: [localhost] PLAY RECAP ********************************************************************** localhost : ok=2 changed=0 unreachable=0 failed=0 "><pre class="notranslate"><code class="notranslate">$ mkdir lookup_plugins $ cp $ANSIBLE_ROOT/lib/ansible/plugins/lookup/items.py lookup_plugins/myitems $ cat test_lookup_pl.yml --- - hosts: localhost tasks: - name: Print items from custom lookup plugin debug: msg="Item= {{ item }} " with_myitems: - foo - bar $ ansible-playbook test_lookup_pl.yml PLAY **************************************************************************** TASK [setup] ******************************************************************** ok: [localhost] TASK [Print items from custom lookup plugin] ************************************ fatal: [localhost]: FAILED! =&gt; {"failed": true, "msg": "ERROR! the field 'args' has an invalid value, which appears to include a variable that is undefined. The error was: 'item' is undefined"} PLAY RECAP ********************************************************************** localhost : ok=1 changed=0 unreachable=0 failed=1 Now if I create an ansible.cfg file: $ cat ansible.cfg [defaults] lookup_plugins=./lookup_plugins $ ansible-playbook test_lookup_pl.yml PLAY **************************************************************************** TASK [setup] ******************************************************************** ok: [localhost] TASK [Print items from custom lookup plugin] ************************************ ok: [localhost] =&gt; (item=foo) =&gt; { "item": "foo", "msg": "Item= foo " } ok: [localhost] =&gt; (item=bar) =&gt; { "item": "bar", "msg": "Item= bar " } ok: [localhost] PLAY RECAP ********************************************************************** localhost : ok=2 changed=0 unreachable=0 failed=0 </code></pre></div>
<p dir="auto">I was making an ansible-galaxy role today and when placing the lookup_folder plugin at the same level as the rest of the folders and then using it it returns that it can't find the plugin. Do we have anyway to use lookup_plugins at a role level without forcing uses to manually add it to there playbook?</p> <p dir="auto">Here is the repo in question. Master is how i got it to work for testing that the lookup_plugins folder only works when at the same level as the playbook <a href="https://github.com/nowait-tools/ansible-rabbitmq">https://github.com/nowait-tools/ansible-rabbitmq</a> the branch galaxy test is the one that fails.</p>
1
<p dir="auto">Ehen using build with libraryTarget: 'umd', targeted build in node enviroment; getting:<br> AR:<br> Node give "ReferenceError: window is not defined"<br> ER:<br> no issues in node &amp; browser</p> <p dir="auto">Not possible to set target param to match both platforms;</p> <p dir="auto"><strong>Please mention other relevant information such as the browser version, Node.js version, webpack version, and Operating System.</strong><br> Webpack version 4.1.1<br> It's due to webpackUniversalModuleDefinition - "this" should be as param instead of window</p>
<p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong><br> Report a bug</p> <p dir="auto"><strong>What is the current behavior?</strong><br> We are upgrading a giant codebase from Webpack 3 to 4 and are blocked on one issue. We are seeing significant code duplication in final bundles when the same JS module is required synchronously and asynchronously in the route code.</p> <p dir="auto">The JS module referenced from the entry point file contains synchronous require to the page code like this:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="// entrypoints.js &quot;HomeDesktopPage&quot;:&quot;HomeDesktopEntry.js&quot;"><pre class="notranslate"><code class="notranslate">// entrypoints.js "HomeDesktopPage":"HomeDesktopEntry.js" </code></pre></div> <p dir="auto"><code class="notranslate">HomeDesktopEntry.js</code> requires the relevant page module <code class="notranslate">HomeDesktop.js</code> synchronously in order to bundle all dependencies for the initial page load:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="// HomeDesktopEntry.js: require(&quot;./logging&quot;); // make sure component is part of the entry point require(&quot;./HomeDesktop&quot;);"><pre class="notranslate"><code class="notranslate">// HomeDesktopEntry.js: require("./logging"); // make sure component is part of the entry point require("./HomeDesktop"); </code></pre></div> <p dir="auto">In another JS module in the <code class="notranslate">HomeDesktopEntry</code> dependency tree, we require <code class="notranslate">HomeDesktop</code> asynchronously:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="require.ensure([], () =&gt; { returnValue.resolve({ page: require(&quot;./pageTypes/ActivishDetailsPage/HomeDesktop&quot;), }); });"><pre class="notranslate"><code class="notranslate">require.ensure([], () =&gt; { returnValue.resolve({ page: require("./pageTypes/ActivishDetailsPage/HomeDesktop"), }); }); </code></pre></div> <p dir="auto">Webpack will generate additional bundles for "HomeDesktopLazy" and load them on demand when this code is executed. The lazy loaded chunks contain duplicated JS modules that were already bundled and loaded initially when we navigated to <code class="notranslate">HomeDesktopEntry</code>. Even though we required <code class="notranslate">HomeDesktop</code> in the entry point file and bundled all its dependencies, Webpack runtime generates and loads additional lazy chunks for the asynchronous require of that same module. I've built a little tool to measure the duplication and on our giant codebase, this amounted to additional 3MB of just duplicated JS modules. This creates some additional problems with page performance too since we need to wait for those async chunks to load in order to boot up the page client side.</p> <p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong><br> The behavior happens only with some <code class="notranslate">splitChunks</code> configs. For example, with the below config we get 68 JS bundles for the <code class="notranslate">HomeDesktopPage</code> route but no duplication happens:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="optimization: { splitChunks: { chunks: &quot;all&quot;, minSize: 0, maxInitialRequests: Infinity, maxAsyncRequests: Infinity,"><pre class="notranslate"><code class="notranslate">optimization: { splitChunks: { chunks: "all", minSize: 0, maxInitialRequests: Infinity, maxAsyncRequests: Infinity, </code></pre></div> <p dir="auto">Trying to reduce the number of bundles and initial requests, however, does cause the above bug and significant JS duplication:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="optimization: { splitChunks: { chunks: &quot;all&quot;, minSize: 500000, maxInitialRequests: 5, maxAsyncRequests: 5,"><pre class="notranslate"><code class="notranslate">optimization: { splitChunks: { chunks: "all", minSize: 500000, maxInitialRequests: 5, maxAsyncRequests: 5, </code></pre></div> <p dir="auto">Our codebase is huge, and I am not sure how easy it will be to create a minimal repro example. I am working on it, but wanted to post the problem in the meantime just in case there is a known solution or an explanation for it. Thanks so much for any help!</p> <p dir="auto"><strong>What is the expected behavior?</strong><br> No additional bundles are generated and loaded on demand when the same JS module is required asynchronously if it was previously required synchronously.</p> <p dir="auto"><strong>If this is a feature request, what is motivation or use case for changing the behavior?</strong></p> <p dir="auto"><strong>Please mention other relevant information such as the browser version, Node.js version, webpack version, and Operating System.</strong></p> <p dir="auto">Node 8 and 10, we tried on both<br> webpack 4.28<br> MacOS<br> Chome</p>
0
<p dir="auto">Currently rustdoc doesn't show associated types under the "implementors" portion of the trait page (eg <a href="http://doc.rust-lang.org/std/ops/trait.Index.html" rel="nofollow">here</a>) (though it does show them <a href="http://doc.rust-lang.org/std/primitive.slice.html" rel="nofollow">on the page for the type</a>). Since associated types are as important as type parameters when inspecting an impl (and debugging a type mismatch), perhaps rustdoc should show an <code class="notranslate">(Output = [T])</code> or something similar next to each impl?</p> <p dir="auto">In case of a cross crate impl where the trait shares a crate with the impl, the associated type will be missing from rustdoc altogether.</p>
<p dir="auto">For example, the <code class="notranslate">std::ops::Index</code> trait has an associated <code class="notranslate">Output</code> type. Of course, that type is potentially different for each <code class="notranslate">impl</code> of the trait. <code class="notranslate">impl</code> are documented at <a href="http://localhost/rust/std/ops/trait.Index.html#implementors" rel="nofollow">http://localhost/rust/std/ops/trait.Index.html#implementors</a> , but there is apparently now way to know what is the <code class="notranslate">Output</code> type for a given implementation. (Other than finding the source code, which is not necessarily easy because of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="38085442" data-permission-text="Title is private" data-url="https://github.com/rust-lang/rust/issues/15744" data-hovercard-type="issue" data-hovercard-url="/rust-lang/rust/issues/15744/hovercard" href="https://github.com/rust-lang/rust/issues/15744">#15744</a>.)</p>
1
<p dir="auto"><strong>Migrated issue, originally created by Adrian (<a href="https://github.com/thiefmaster">@thiefmaster</a>)</strong></p> <p dir="auto">Example to reproduce:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from sqlalchemy import * from sqlalchemy.ext.declarative import declarative_base from sqlalchemy.orm import * from sqlalchemy.dialects.postgresql import JSON Base = declarative_base() class ProtectionMode(object): public = 0 inheriting = 1 protected = 2 class Event(Base): __tablename__ = 'events' id = Column(Integer, primary_key=True) category_id = Column(Integer, ForeignKey('categories.id'), nullable=True, index=True) category = relationship('Category', backref='events') def __repr__(self): return '&lt;Event {}&gt;'.format(self.id) class Category(Base): __tablename__ = 'categories' id = Column(Integer, primary_key=True) parent_id = Column(Integer, ForeignKey('categories.id'), index=True, nullable=True) protection_mode = Column(SmallInteger, nullable=False, default=ProtectionMode.inheriting) icon_metadata = Column(JSON, nullable=False, default=lambda: None) children = relationship('Category', primaryjoin=(id == remote(parent_id)), backref=backref('parent', primaryjoin=(remote(id) == parent_id))) @classmethod def get_icon_data_cte(cls): cat_alias = aliased(cls) cte_query = (select([cat_alias.id, cat_alias.id.label('source_id'), cat_alias.icon_metadata]) .where(cat_alias.parent_id.is_(None)) .cte(recursive=True)) rec_query = (select([cat_alias.id, case({'null': cte_query.c.source_id}, else_=cat_alias.id, value=func.json_typeof(cat_alias.icon_metadata)), case({'null': cte_query.c.icon_metadata}, else_=cat_alias.icon_metadata, value=func.json_typeof(cat_alias.icon_metadata))]) .where(cat_alias.parent_id == cte_query.c.id)) return cte_query.union_all(rec_query) @classmethod def get_protection_cte(cls): cat_alias = aliased(cls) cte_query = (select([cat_alias.id, cat_alias.protection_mode]) .where(cat_alias.parent_id.is_(None)) .cte(recursive=True)) rec_query = (select([cat_alias.id, case({ProtectionMode.inheriting: cte_query.c.protection_mode}, else_=cat_alias.protection_mode, value=cat_alias.protection_mode)]) .where(cat_alias.parent_id == cte_query.c.id)) return cte_query.union_all(rec_query) def __repr__(self): return '&lt;Category {}&gt;'.format(self.id) cte = Category.get_protection_cte() query = select([cte.c.protection_mode]).where(cte.c.id == Category.id).correlate_except(cte) Category.effective_protection_mode = column_property(query, deferred=True) cte = Category.get_icon_data_cte() query = (select([func.json_build_object('source_id', cte.c.source_id, 'metadata', cte.c.icon_metadata)]) .where(cte.c.id == Category.id) .correlate_except(cte)) Category.effective_icon_data = column_property(query, deferred=True) e = create_engine('postgresql:///test', echo=True) Base.metadata.create_all(e) s = Session(e) if not s.query(Category).count(): root = Category(protection_mode=ProtectionMode.public) cat = Category(parent=root) s.add(root) e = Event(category=root) s.add(e) s.commit() print 'created data' else: root = s.query(Category).filter_by(parent_id=None).one() cat = root.children[0] e = root.events[0] print '\n\n\nFIRST READ\n' print cat.effective_protection_mode e.category = cat s.flush() print '\n\n\nSECOND READ\n' print cat.effective_protection_mode"><pre class="notranslate"><code class="notranslate">from sqlalchemy import * from sqlalchemy.ext.declarative import declarative_base from sqlalchemy.orm import * from sqlalchemy.dialects.postgresql import JSON Base = declarative_base() class ProtectionMode(object): public = 0 inheriting = 1 protected = 2 class Event(Base): __tablename__ = 'events' id = Column(Integer, primary_key=True) category_id = Column(Integer, ForeignKey('categories.id'), nullable=True, index=True) category = relationship('Category', backref='events') def __repr__(self): return '&lt;Event {}&gt;'.format(self.id) class Category(Base): __tablename__ = 'categories' id = Column(Integer, primary_key=True) parent_id = Column(Integer, ForeignKey('categories.id'), index=True, nullable=True) protection_mode = Column(SmallInteger, nullable=False, default=ProtectionMode.inheriting) icon_metadata = Column(JSON, nullable=False, default=lambda: None) children = relationship('Category', primaryjoin=(id == remote(parent_id)), backref=backref('parent', primaryjoin=(remote(id) == parent_id))) @classmethod def get_icon_data_cte(cls): cat_alias = aliased(cls) cte_query = (select([cat_alias.id, cat_alias.id.label('source_id'), cat_alias.icon_metadata]) .where(cat_alias.parent_id.is_(None)) .cte(recursive=True)) rec_query = (select([cat_alias.id, case({'null': cte_query.c.source_id}, else_=cat_alias.id, value=func.json_typeof(cat_alias.icon_metadata)), case({'null': cte_query.c.icon_metadata}, else_=cat_alias.icon_metadata, value=func.json_typeof(cat_alias.icon_metadata))]) .where(cat_alias.parent_id == cte_query.c.id)) return cte_query.union_all(rec_query) @classmethod def get_protection_cte(cls): cat_alias = aliased(cls) cte_query = (select([cat_alias.id, cat_alias.protection_mode]) .where(cat_alias.parent_id.is_(None)) .cte(recursive=True)) rec_query = (select([cat_alias.id, case({ProtectionMode.inheriting: cte_query.c.protection_mode}, else_=cat_alias.protection_mode, value=cat_alias.protection_mode)]) .where(cat_alias.parent_id == cte_query.c.id)) return cte_query.union_all(rec_query) def __repr__(self): return '&lt;Category {}&gt;'.format(self.id) cte = Category.get_protection_cte() query = select([cte.c.protection_mode]).where(cte.c.id == Category.id).correlate_except(cte) Category.effective_protection_mode = column_property(query, deferred=True) cte = Category.get_icon_data_cte() query = (select([func.json_build_object('source_id', cte.c.source_id, 'metadata', cte.c.icon_metadata)]) .where(cte.c.id == Category.id) .correlate_except(cte)) Category.effective_icon_data = column_property(query, deferred=True) e = create_engine('postgresql:///test', echo=True) Base.metadata.create_all(e) s = Session(e) if not s.query(Category).count(): root = Category(protection_mode=ProtectionMode.public) cat = Category(parent=root) s.add(root) e = Event(category=root) s.add(e) s.commit() print 'created data' else: root = s.query(Category).filter_by(parent_id=None).one() cat = root.children[0] e = root.events[0] print '\n\n\nFIRST READ\n' print cat.effective_protection_mode e.category = cat s.flush() print '\n\n\nSECOND READ\n' print cat.effective_protection_mode </code></pre></div> <hr> <p dir="auto">Relevant output (on the second run):</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="FIRST READ 2018-01-31 16:05:18,233 INFO sqlalchemy.engine.base.Engine WITH RECURSIVE anon_2(id, protection_mode) AS (SELECT categories_1.id AS id, categories_1.protection_mode AS protection_mode FROM categories AS categories_1 WHERE categories_1.parent_id IS NULL UNION ALL SELECT categories_1.id AS id, CASE categories_1.protection_mode WHEN %(param_1)s THEN anon_2.protection_mode ELSE categories_1.protection_mode END AS anon_3 FROM categories AS categories_1, anon_2 WHERE categories_1.parent_id = anon_2.id) SELECT (SELECT anon_2.protection_mode FROM anon_2 WHERE anon_2.id = categories.id) AS anon_1 FROM categories WHERE categories.id = %(param_2)s 2018-01-31 16:05:18,233 INFO sqlalchemy.engine.base.Engine {'param_1': 1, 'param_2': 2} 0 2018-01-31 16:05:18,234 INFO sqlalchemy.engine.base.Engine UPDATE events SET category_id=%(category_id)s WHERE events.id = %(events_id)s 2018-01-31 16:05:18,234 INFO sqlalchemy.engine.base.Engine {'category_id': 2, 'events_id': 1} SECOND READ 2018-01-31 16:05:18,236 INFO sqlalchemy.engine.base.Engine WITH RECURSIVE anon_2(id, protection_mode) AS (SELECT categories_1.id AS id, categories_1.protection_mode AS protection_mode FROM categories AS categories_1 WHERE categories_1.parent_id IS NULL UNION ALL SELECT categories_1.id AS id, CASE categories_1.protection_mode WHEN %(param_1)s THEN anon_2.protection_mode ELSE categories_1.protection_mode END AS anon_3 FROM categories AS categories_1, anon_2 WHERE categories_1.parent_id = anon_2.id), anon_5(id, source_id, icon_metadata) AS (SELECT categories_2.id AS id, categories_2.id AS source_id, categories_2.icon_metadata AS icon_metadata FROM categories AS categories_2 WHERE categories_2.parent_id IS NULL UNION ALL SELECT categories_2.id AS id, CASE json_typeof(categories_2.icon_metadata) WHEN %(param_2)s THEN anon_5.source_id ELSE categories_2.id END AS anon_6, CASE json_typeof(categories_2.icon_metadata) WHEN %(param_3)s THEN anon_5.icon_metadata ELSE categories_2.icon_metadata END AS anon_7 FROM categories AS categories_2, anon_5 WHERE categories_2.parent_id = anon_5.id) SELECT (SELECT anon_2.protection_mode FROM anon_2 WHERE anon_2.id = categories.id) AS anon_1, (SELECT json_build_object(%(json_build_object_2)s, anon_5.source_id, %(json_build_object_3)s, anon_5.icon_metadata) AS json_build_object_1 FROM anon_5 WHERE anon_5.id = categories.id) AS anon_4 FROM categories WHERE categories.id = %(param_4)s 2018-01-31 16:05:18,236 INFO sqlalchemy.engine.base.Engine {'param_4': 2, 'param_1': 1, 'param_3': 'null', 'param_2': 'null', 'json_build_object_3': 'metadata', 'json_build_object_2': 'source_id'} 0"><pre class="notranslate"><code class="notranslate">FIRST READ 2018-01-31 16:05:18,233 INFO sqlalchemy.engine.base.Engine WITH RECURSIVE anon_2(id, protection_mode) AS (SELECT categories_1.id AS id, categories_1.protection_mode AS protection_mode FROM categories AS categories_1 WHERE categories_1.parent_id IS NULL UNION ALL SELECT categories_1.id AS id, CASE categories_1.protection_mode WHEN %(param_1)s THEN anon_2.protection_mode ELSE categories_1.protection_mode END AS anon_3 FROM categories AS categories_1, anon_2 WHERE categories_1.parent_id = anon_2.id) SELECT (SELECT anon_2.protection_mode FROM anon_2 WHERE anon_2.id = categories.id) AS anon_1 FROM categories WHERE categories.id = %(param_2)s 2018-01-31 16:05:18,233 INFO sqlalchemy.engine.base.Engine {'param_1': 1, 'param_2': 2} 0 2018-01-31 16:05:18,234 INFO sqlalchemy.engine.base.Engine UPDATE events SET category_id=%(category_id)s WHERE events.id = %(events_id)s 2018-01-31 16:05:18,234 INFO sqlalchemy.engine.base.Engine {'category_id': 2, 'events_id': 1} SECOND READ 2018-01-31 16:05:18,236 INFO sqlalchemy.engine.base.Engine WITH RECURSIVE anon_2(id, protection_mode) AS (SELECT categories_1.id AS id, categories_1.protection_mode AS protection_mode FROM categories AS categories_1 WHERE categories_1.parent_id IS NULL UNION ALL SELECT categories_1.id AS id, CASE categories_1.protection_mode WHEN %(param_1)s THEN anon_2.protection_mode ELSE categories_1.protection_mode END AS anon_3 FROM categories AS categories_1, anon_2 WHERE categories_1.parent_id = anon_2.id), anon_5(id, source_id, icon_metadata) AS (SELECT categories_2.id AS id, categories_2.id AS source_id, categories_2.icon_metadata AS icon_metadata FROM categories AS categories_2 WHERE categories_2.parent_id IS NULL UNION ALL SELECT categories_2.id AS id, CASE json_typeof(categories_2.icon_metadata) WHEN %(param_2)s THEN anon_5.source_id ELSE categories_2.id END AS anon_6, CASE json_typeof(categories_2.icon_metadata) WHEN %(param_3)s THEN anon_5.icon_metadata ELSE categories_2.icon_metadata END AS anon_7 FROM categories AS categories_2, anon_5 WHERE categories_2.parent_id = anon_5.id) SELECT (SELECT anon_2.protection_mode FROM anon_2 WHERE anon_2.id = categories.id) AS anon_1, (SELECT json_build_object(%(json_build_object_2)s, anon_5.source_id, %(json_build_object_3)s, anon_5.icon_metadata) AS json_build_object_1 FROM anon_5 WHERE anon_5.id = categories.id) AS anon_4 FROM categories WHERE categories.id = %(param_4)s 2018-01-31 16:05:18,236 INFO sqlalchemy.engine.base.Engine {'param_4': 2, 'param_1': 1, 'param_3': 'null', 'param_2': 'null', 'json_build_object_3': 'metadata', 'json_build_object_2': 'source_id'} 0 </code></pre></div> <p dir="auto">As you can see, the second time the property is accessed, the other deferred column property is loaded as well - this results in a massive performance drop in the real (non-simplified) code since some of the deferred relationships are quite expensive.</p> <p dir="auto">This issue happens in 1.1.15 but not in 1.2.2, but I couldn't find any related changelog entry.</p>
<p dir="auto"><strong>Migrated issue, originally created by Michael Bayer (<a href="https://github.com/zzzeek">@zzzeek</a>)</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from sqlalchemy import * from sqlalchemy.orm import * from sqlalchemy.ext.declarative import declarative_base Base = declarative_base() class A(Base): __tablename__ = 'a' id = Column(Integer, primary_key=True) a = Column(Integer) b = Column(Integer) aplusb = column_property( a + b, deferred=True ) e = create_engine(&quot;sqlite://&quot;, echo=True) Base.metadata.create_all(e) s = Session(e) s.add(A(a=1, b=2)) s.commit() a1 = s.query(A).first() assert 'aplusb' not in a1.__dict__ a1.b = 5 s.flush() s.commit() a1.b assert 'aplusb' not in a1.__dict__ "><pre class="notranslate"><code class="notranslate">from sqlalchemy import * from sqlalchemy.orm import * from sqlalchemy.ext.declarative import declarative_base Base = declarative_base() class A(Base): __tablename__ = 'a' id = Column(Integer, primary_key=True) a = Column(Integer) b = Column(Integer) aplusb = column_property( a + b, deferred=True ) e = create_engine("sqlite://", echo=True) Base.metadata.create_all(e) s = Session(e) s.add(A(a=1, b=2)) s.commit() a1 = s.query(A).first() assert 'aplusb' not in a1.__dict__ a1.b = 5 s.flush() s.commit() a1.b assert 'aplusb' not in a1.__dict__ </code></pre></div>
1
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=cbeams" rel="nofollow">Chris Beams</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-8371?redirect=false" rel="nofollow">SPR-8371</a></strong> and commented</p> <p dir="auto">As of 3.1 M2, the <code class="notranslate">@PropertySource</code> annotation allows for declarative registration of property sources against the enclosing <code class="notranslate">Environment</code>. However, it does not allow for manipulation of property source ordering. This (if desired at all) must be done against the <code class="notranslate">ConfigurableEnvironment#getPropertySources()</code> <code class="notranslate">MutablePropertySources</code> API.</p> <p dir="auto">This issue exists to gauge interest in this feature (read: collect votes). Please be specific about use cases in order to assess whether such an enhancement truly represents a general need.</p> <p dir="auto">If interest is sufficient, we'll consider this for 3.1 RC1.</p> <hr> <p dir="auto"><strong>Affects:</strong> 3.1 M2</p> <p dir="auto"><strong>Issue Links:</strong></p> <ul dir="auto"> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398157518" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/14959" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/14959/hovercard" href="https://github.com/spring-projects/spring-framework/issues/14959">#14959</a> Allow for ignoreResourceNotFound on <code class="notranslate">@PropertySource</code> (<em><strong>"is duplicated by"</strong></em>)</li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398112193" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12962" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12962/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12962">#12962</a> Provide <code class="notranslate">@Configuration</code> support for PropertySource registration (<code class="notranslate">@PropertySource</code>)</li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398161635" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/15560" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/15560/hovercard" href="https://github.com/spring-projects/spring-framework/issues/15560">#15560</a> Add "ignoreResourceNotFound" attribute to the <code class="notranslate">@PropertySource</code></li> </ul> <p dir="auto"><strong>Referenced from:</strong> commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/e95bd9e25086bf1dad37f8d08293c948621faf6b/hovercard" href="https://github.com/spring-projects/spring-framework/commit/e95bd9e25086bf1dad37f8d08293c948621faf6b"><tt>e95bd9e</tt></a></p> <p dir="auto">12 votes, 17 watchers</p>
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=fgiust" rel="nofollow">Fabrizio Giustina</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-1383?redirect=false" rel="nofollow">SPR-1383</a></strong> and commented</p> <p dir="auto">Actually jars generated by a binary builds don't have the version number in the name; the attached patch modify build.xml so that generated files are named with spring-{module}-{version}.jar.<br> That's the maven standard way of naming jars and makes also easier for users to keep track of versions they are using (at the moment the version is only specified in the manifest)... having the version number in the jar is a kind of standard after all.</p> <p dir="auto">The patch also adds a new "modulesources" target which generated source archives (spring-{module}-{version}-sources.jar) for each of the modules (at the moment only a single zip files is geneated). Note that the target is not included by default in standard builds.</p> <hr> <p dir="auto"><strong>Affects:</strong> 1.2.5</p> <p dir="auto"><strong>Attachments:</strong></p> <ul dir="auto"> <li><a href="https://jira.spring.io/secure/attachment/11205/spring-buildxml-versioned-jars.diff" rel="nofollow">spring-buildxml-versioned-jars.diff</a> (<em>10.67 kB</em>)</li> </ul> <p dir="auto"><strong>Issue Links:</strong></p> <ul dir="auto"> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398071837" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/7392" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/7392/hovercard" href="https://github.com/spring-projects/spring-framework/issues/7392">#7392</a> Create and upload Maven Source and Javadoc Bundles for Spring 2.0 (<em><strong>"is depended on by"</strong></em>)</li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398071837" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/7392" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/7392/hovercard" href="https://github.com/spring-projects/spring-framework/issues/7392">#7392</a> Create and upload Maven Source and Javadoc Bundles for Spring 2.0 (<em><strong>"duplicates"</strong></em>)</li> </ul> <p dir="auto">1 votes, 0 watchers</p>
0
<p dir="auto">This is fastapi http side:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" from fastapi import Request import aiofiles @app.post('/upload') async def upload(request: Request): try: filename = request.headers['filename'] async with aiofiles.open(filename, 'wb') as f: async for chunk in request.stream(): await f.write(chunk) except Exception: return {&quot;message&quot;: &quot;There was an error uploading the file&quot;} return {&quot;message&quot;: f&quot;Successfuly uploaded {filename}&quot;}"><pre class="notranslate"><code class="notranslate"> from fastapi import Request import aiofiles @app.post('/upload') async def upload(request: Request): try: filename = request.headers['filename'] async with aiofiles.open(filename, 'wb') as f: async for chunk in request.stream(): await f.write(chunk) except Exception: return {"message": "There was an error uploading the file"} return {"message": f"Successfuly uploaded {filename}"} </code></pre></div> <p dir="auto">this is the request side:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" def gen_file_stream(): with open(file_name, &quot;rb&quot;) as f: while True: data = f.read(1024*1024) if not data: break yield data resp=requests.post(url,data=gen_file_stream())"><pre class="notranslate"><code class="notranslate"> def gen_file_stream(): with open(file_name, "rb") as f: while True: data = f.read(1024*1024) if not data: break yield data resp=requests.post(url,data=gen_file_stream()) </code></pre></div> <p dir="auto">when I check the size of the chunk its 64k and not 1MB (as Im trying to send here).<br> If I use TestClient from fastapi it is working, I mean Im able to send a chunk of 1MB, so it seems to me requests package is dividing the size of the chunk internally to 64KB.<br> is there any way I can make request.post to send a chunk of 1MB?</p>
<p dir="auto">In a rare instance, I managed to do a GET request to a server that should retrieve an xml document. However the response.text field contains the document twice (just concatenated, i.e. the first half of the data and second half of the data are exact duplicates):</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; resp = requests.get('http://bigr-rad-xnat.erasmusmc.nl/schemas/xnat/xnat.xsd', auth=('username', 'password')) &gt;&gt;&gt; resp.text[:len(resp.text)/2] == resp.text[len(resp.text)/2:] True"><pre class="notranslate"><span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">resp</span> <span class="pl-c1">=</span> <span class="pl-s1">requests</span>.<span class="pl-en">get</span>(<span class="pl-s">'http://bigr-rad-xnat.erasmusmc.nl/schemas/xnat/xnat.xsd'</span>, <span class="pl-s1">auth</span><span class="pl-c1">=</span>(<span class="pl-s">'username'</span>, <span class="pl-s">'password'</span>)) <span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">resp</span>.<span class="pl-s1">text</span>[:<span class="pl-en">len</span>(<span class="pl-s1">resp</span>.<span class="pl-s1">text</span>)<span class="pl-c1">/</span><span class="pl-c1">2</span>] <span class="pl-c1">==</span> <span class="pl-s1">resp</span>.<span class="pl-s1">text</span>[<span class="pl-en">len</span>(<span class="pl-s1">resp</span>.<span class="pl-s1">text</span>)<span class="pl-c1">/</span><span class="pl-c1">2</span>:] <span class="pl-c1">True</span></pre></div> <p dir="auto">Now of course, it could happen that the document really is that, but it shouldn't and I tried the request using curl, postman (chromium extension), and chromium and it all returns just half the response of requests. As a final test I tried it using urllib2:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; import urllib2 base64 &gt;&gt;&gt; req = urllib2.Request('http://bigr-rad-xnat.erasmusmc.nl/schemas/xnat/xnat.xsd') &gt;&gt;&gt; base64string = base64.encodestring( '%s:%s' % ('password', 'password'))[:-1] authheader = &quot;Basic %s&quot; % base64string req.add_header(&quot;Authorization&quot;, authheader) &gt;&gt;&gt; handler = urllib2.urlopen(req) &gt;&gt;&gt; content = handler.read()"><pre class="notranslate"><span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-k">import</span> <span class="pl-s1">urllib2</span> <span class="pl-s1">base64</span> <span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">req</span> <span class="pl-c1">=</span> <span class="pl-s1">urllib2</span>.<span class="pl-v">Request</span>(<span class="pl-s">'http://bigr-rad-xnat.erasmusmc.nl/schemas/xnat/xnat.xsd'</span>) <span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">base64string</span> <span class="pl-c1">=</span> <span class="pl-s1">base64</span>.<span class="pl-en">encodestring</span>( <span class="pl-s">'%s:%s'</span> <span class="pl-c1">%</span> (<span class="pl-s">'password'</span>, <span class="pl-s">'password'</span>))[:<span class="pl-c1">-</span><span class="pl-c1">1</span>] <span class="pl-s1">authheader</span> <span class="pl-c1">=</span> <span class="pl-s">"Basic %s"</span> <span class="pl-c1">%</span> <span class="pl-s1">base64string</span> <span class="pl-s1">req</span>.<span class="pl-en">add_header</span>(<span class="pl-s">"Authorization"</span>, <span class="pl-s1">authheader</span>) <span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">handler</span> <span class="pl-c1">=</span> <span class="pl-s1">urllib2</span>.<span class="pl-en">urlopen</span>(<span class="pl-s1">req</span>) <span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">content</span> <span class="pl-c1">=</span> <span class="pl-s1">handler</span>.<span class="pl-en">read</span>()</pre></div> <p dir="auto">And that also gave me a single copy of the document. Hence I conclude something is probably going wrong in requests.</p> <p dir="auto">I am using requests version 2.9.1 on python 2.7.11 (and I also tried on 3.5.1) on debian stretch. The server is a tomcat server running XNAT (<a href="http://www.xnat.org" rel="nofollow">www.xnat.org</a>). The problem is that the server serving this is located behind a hospital firewall and therefor I cannot give anyone from outside access to reproduce/test, but I can gather additional information.</p> <p dir="auto">I tried to look at the open bugs and did not find a similar report, but I could have missed it, if so I am sorry.</p>
0
<h4 dir="auto">Code Sample, a copy-pastable example if possible</h4> <p dir="auto">Something goes wrong when I try to set a NaN value using the iloc syntax. Instead of just the entry being set, the entire row gets set.</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import pandas as pd import numpy as np df = pd.DataFrame(np.arange(1,5).reshape(2,2), columns=[&quot;A&quot;]*2) # this works like expected df.iloc[0,0] = -1 df"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span> <span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span> <span class="pl-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>(<span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-c1">1</span>,<span class="pl-c1">5</span>).<span class="pl-en">reshape</span>(<span class="pl-c1">2</span>,<span class="pl-c1">2</span>), <span class="pl-s1">columns</span><span class="pl-c1">=</span>[<span class="pl-s">"A"</span>]<span class="pl-c1">*</span><span class="pl-c1">2</span>) <span class="pl-c"># this works like expected</span> <span class="pl-s1">df</span>.<span class="pl-s1">iloc</span>[<span class="pl-c1">0</span>,<span class="pl-c1">0</span>] <span class="pl-c1">=</span> <span class="pl-c1">-</span><span class="pl-c1">1</span> <span class="pl-s1">df</span></pre></div> <div dir="auto"> <table border="1" role="table"> <thead> <tr> <th></th> <th>A</th> <th>A</th> </tr> </thead> <tbody> <tr> <th>0</th> <td>-1</td> <td>2</td> </tr> <tr> <th>1</th> <td>3</td> <td>4</td> </tr> </tbody> </table> </div> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# this sets the entire row to NaN df.iloc[1,0] = np.nan df"><pre class="notranslate"><span class="pl-c"># this sets the entire row to NaN</span> <span class="pl-s1">df</span>.<span class="pl-s1">iloc</span>[<span class="pl-c1">1</span>,<span class="pl-c1">0</span>] <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-s1">nan</span> <span class="pl-s1">df</span></pre></div> <div dir="auto"> <table border="1" role="table"> <thead> <tr> <th></th> <th>A</th> <th>A</th> </tr> </thead> <tbody> <tr> <th>0</th> <td>-1.0</td> <td>2.0</td> </tr> <tr> <th>1</th> <td>NaN</td> <td>NaN</td> </tr> </tbody> </table> </div> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# It only seems to be an issue when indexing the first repeated column df.iloc[0,1] = np.nan df"><pre class="notranslate"><span class="pl-c"># It only seems to be an issue when indexing the first repeated column</span> <span class="pl-s1">df</span>.<span class="pl-s1">iloc</span>[<span class="pl-c1">0</span>,<span class="pl-c1">1</span>] <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-s1">nan</span> <span class="pl-s1">df</span></pre></div> <div dir="auto"> <table border="1" role="table"> <thead> <tr> <th></th> <th>A</th> <th>A</th> </tr> </thead> <tbody> <tr> <th>0</th> <td>-1.0</td> <td>NaN</td> </tr> <tr> <th>1</th> <td>NaN</td> <td>NaN</td> </tr> </tbody> </table> </div> <h4 dir="auto">output of <code class="notranslate">pd.show_versions()</code></h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="INSTALLED VERSIONS ------------------ commit: None python: 3.5.1.final.0 python-bits: 64 OS: Windows OS-release: 7 machine: AMD64 processor: Intel64 Family 6 Model 61 Stepping 4, GenuineIntel byteorder: little LC_ALL: None LANG: en_US.UTF-8 pandas: 0.18.1 nose: 1.3.7 pip: 8.1.2 setuptools: 21.2.2 Cython: 0.24 numpy: 1.11.0 scipy: 0.17.0 statsmodels: 0.6.1 xarray: None IPython: 4.1.2 sphinx: 1.3.1 patsy: 0.4.0 dateutil: 2.5.3 pytz: 2016.4 blosc: None bottleneck: None tables: 3.2.2 numexpr: 2.5.2 matplotlib: 1.5.1 openpyxl: 2.2.6 xlrd: 0.9.4 xlwt: 1.0.0 xlsxwriter: 0.7.7 lxml: 3.4.4 bs4: 4.4.1 html5lib: None httplib2: None apiclient: None sqlalchemy: 1.0.11 pymysql: None psycopg2: None jinja2: 2.8 boto: 2.38.0 pandas_datareader: None"><pre class="notranslate"><code class="notranslate">INSTALLED VERSIONS ------------------ commit: None python: 3.5.1.final.0 python-bits: 64 OS: Windows OS-release: 7 machine: AMD64 processor: Intel64 Family 6 Model 61 Stepping 4, GenuineIntel byteorder: little LC_ALL: None LANG: en_US.UTF-8 pandas: 0.18.1 nose: 1.3.7 pip: 8.1.2 setuptools: 21.2.2 Cython: 0.24 numpy: 1.11.0 scipy: 0.17.0 statsmodels: 0.6.1 xarray: None IPython: 4.1.2 sphinx: 1.3.1 patsy: 0.4.0 dateutil: 2.5.3 pytz: 2016.4 blosc: None bottleneck: None tables: 3.2.2 numexpr: 2.5.2 matplotlib: 1.5.1 openpyxl: 2.2.6 xlrd: 0.9.4 xlwt: 1.0.0 xlsxwriter: 0.7.7 lxml: 3.4.4 bs4: 4.4.1 html5lib: None httplib2: None apiclient: None sqlalchemy: 1.0.11 pymysql: None psycopg2: None jinja2: 2.8 boto: 2.38.0 pandas_datareader: None </code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# Pandas version 0.17.1 import pandas as pd df = pd.DataFrame({'Same': 1.0, ' Same': pd.np.nan, ' Same': pd.np.nan}, index=[0,1,2]) df.columns = [c.strip() for c in df.columns] df.iloc[:, 2] # Returns all 1.0 df.iloc[:, 0] = df.iloc[:, 0].fillna(df.iloc[:, 1]) df.iloc[:, 2] # Column 2 is corrupted and returns all NaN"><pre class="notranslate"><code class="notranslate"># Pandas version 0.17.1 import pandas as pd df = pd.DataFrame({'Same': 1.0, ' Same': pd.np.nan, ' Same': pd.np.nan}, index=[0,1,2]) df.columns = [c.strip() for c in df.columns] df.iloc[:, 2] # Returns all 1.0 df.iloc[:, 0] = df.iloc[:, 0].fillna(df.iloc[:, 1]) df.iloc[:, 2] # Column 2 is corrupted and returns all NaN </code></pre></div>
1
<h2 dir="auto">Steps to Reproduce</h2> <p dir="auto">Test code:</p> <div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" test('swipes', () async { SerializableFinder body = await find.byValueKey('body'); await new Future&lt;Null&gt;.delayed(new Duration(milliseconds: 500)); await findTab1Content(); await driver.scroll(body, -200.0, 0.0, new Duration(milliseconds: 200)); await new Future&lt;Null&gt;.delayed(new Duration(milliseconds: 500)); await findTab2Content(); await driver.scroll(body, -200.0, 0.0, new Duration(milliseconds: 200)); await new Future&lt;Null&gt;.delayed(new Duration(milliseconds: 500)); await findTab3Content(); await driver.scroll(body, 200.0, 0.0, new Duration(milliseconds: 200)); await new Future&lt;Null&gt;.delayed(new Duration(milliseconds: 500)); await findTab2Content(); await driver.scroll(body, 200.0, 0.0, new Duration(milliseconds: 200)); await findTab1Content(); });"><pre class="notranslate"> <span class="pl-en">test</span>(<span class="pl-s">'swipes'</span>, () <span class="pl-k">async</span> { <span class="pl-c1">SerializableFinder</span> body <span class="pl-k">=</span> <span class="pl-k">await</span> find.<span class="pl-en">byValueKey</span>(<span class="pl-s">'body'</span>); <span class="pl-k">await</span> <span class="pl-k">new</span> <span class="pl-c1">Future</span>&lt;<span class="pl-c1">Null</span>&gt;.<span class="pl-en">delayed</span>(<span class="pl-k">new</span> <span class="pl-c1">Duration</span>(milliseconds<span class="pl-k">:</span> <span class="pl-c1">500</span>)); <span class="pl-k">await</span> <span class="pl-en">findTab1Content</span>(); <span class="pl-k">await</span> driver.<span class="pl-en">scroll</span>(body, <span class="pl-k">-</span><span class="pl-c1">200.0</span>, <span class="pl-c1">0.0</span>, <span class="pl-k">new</span> <span class="pl-c1">Duration</span>(milliseconds<span class="pl-k">:</span> <span class="pl-c1">200</span>)); <span class="pl-k">await</span> <span class="pl-k">new</span> <span class="pl-c1">Future</span>&lt;<span class="pl-c1">Null</span>&gt;.<span class="pl-en">delayed</span>(<span class="pl-k">new</span> <span class="pl-c1">Duration</span>(milliseconds<span class="pl-k">:</span> <span class="pl-c1">500</span>)); <span class="pl-k">await</span> <span class="pl-en">findTab2Content</span>(); <span class="pl-k">await</span> driver.<span class="pl-en">scroll</span>(body, <span class="pl-k">-</span><span class="pl-c1">200.0</span>, <span class="pl-c1">0.0</span>, <span class="pl-k">new</span> <span class="pl-c1">Duration</span>(milliseconds<span class="pl-k">:</span> <span class="pl-c1">200</span>)); <span class="pl-k">await</span> <span class="pl-k">new</span> <span class="pl-c1">Future</span>&lt;<span class="pl-c1">Null</span>&gt;.<span class="pl-en">delayed</span>(<span class="pl-k">new</span> <span class="pl-c1">Duration</span>(milliseconds<span class="pl-k">:</span> <span class="pl-c1">500</span>)); <span class="pl-k">await</span> <span class="pl-en">findTab3Content</span>(); <span class="pl-k">await</span> driver.<span class="pl-en">scroll</span>(body, <span class="pl-c1">200.0</span>, <span class="pl-c1">0.0</span>, <span class="pl-k">new</span> <span class="pl-c1">Duration</span>(milliseconds<span class="pl-k">:</span> <span class="pl-c1">200</span>)); <span class="pl-k">await</span> <span class="pl-k">new</span> <span class="pl-c1">Future</span>&lt;<span class="pl-c1">Null</span>&gt;.<span class="pl-en">delayed</span>(<span class="pl-k">new</span> <span class="pl-c1">Duration</span>(milliseconds<span class="pl-k">:</span> <span class="pl-c1">500</span>)); <span class="pl-k">await</span> <span class="pl-en">findTab2Content</span>(); <span class="pl-k">await</span> driver.<span class="pl-en">scroll</span>(body, <span class="pl-c1">200.0</span>, <span class="pl-c1">0.0</span>, <span class="pl-k">new</span> <span class="pl-c1">Duration</span>(milliseconds<span class="pl-k">:</span> <span class="pl-c1">200</span>)); <span class="pl-k">await</span> <span class="pl-en">findTab1Content</span>(); });</pre></div> <p dir="auto">With the Future.delayed()... lines, the test runs successfully. Without those lines, the test fails. In the emulator running the test, it will swipe right twice to get to tab 3, then swipe left once back to tab 2, wait ~5 seconds, and then fail. The logs indicate that it fails to find content that lives on tab 3.</p> <h2 dir="auto">Flutter Doctor</h2> <p dir="auto">[✓] Flutter (on Linux, channel alpha)<br> • Flutter at /usr/local/bin/flutter<br> • Framework revision <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/flutter/flutter/commit/cc9317089412f3a85f042fbd37c2fff5ac090c75/hovercard" href="https://github.com/flutter/flutter/commit/cc9317089412f3a85f042fbd37c2fff5ac090c75"><tt>cc93170</tt></a> (2 weeks ago), engine revision <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/flutter/flutter/commit/98f020ff2dcb13c60c115a0593f08687edab9a8d/hovercard" href="https://github.com/flutter/flutter/commit/98f020ff2dcb13c60c115a0593f08687edab9a8d"><tt>98f020f</tt></a></p> <p dir="auto">[✓] Android toolchain - develop for Android devices (Android SDK 24.0.0-preview)<br> • Android SDK at /usr/dir/of/android-sdk-linux<br> • Platform android-N, build-tools 24.0.0-preview<br> • OpenJDK Runtime Environment</p> <p dir="auto">[✓] Atom - a lightweight development environment for Flutter<br> • Atom installed; Flutter plugin version 0.2.2</p> <h2 dir="auto">Logs and Crash Reports</h2> <p dir="auto">Flutter logs:<br> <code class="notranslate">--------- beginning of main --------- beginning of system I/flutter : Observatory listening on http://127.0.0.1:36085 I/flutter : Diagnostic server listening on http://127.0.0.1:48470 I/flutter : ══╡ EXCEPTION CAUGHT BY FLUTTER FRAMEWORK ╞═════════════════════════════════════════════════════════ I/flutter : The following message was thrown during a service extension callback for "ext.flutter.driver": I/flutter : Timed out waiting for text "Text from Tab 3" I/flutter : When the exception was thrown, this was the stack: I/flutter : #0 FlutterDriverExtension.waitFor.&lt;waitFor_async_body&gt; (package:flutter_driver/src/extension.dart) I/flutter : #1 _asyncErrorWrapperHelper.&lt;anonymous closure&gt; (dart:async-patch/async_patch.dart:34) I/flutter : #2 _RootZone.runBinary (dart:async/zone.dart:1210) I/flutter : #3 _FutureListener.handleError (dart:async/future_impl.dart:146) I/flutter : #4 _Future._propagateToListeners.handleError (dart:async/future_impl.dart:640) I/flutter : #5 _Future._propagateToListeners (dart:async/future_impl.dart:662) I/flutter : #6 _Future._completeError (dart:async/future_impl.dart:476) I/flutter : #7 _Future._asyncCompleteError.&lt;anonymous closure&gt; (dart:async/future_impl.dart:528) I/flutter : #8 _microtaskLoop (dart:async/schedule_microtask.dart:41) I/flutter : #9 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50) I/flutter : ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━</code><br> Flutter driver output: go/flutter-crash-djshuckerow-5-25-16</p> <blockquote> <p dir="auto">For more information about diagnosing and reporting Flutter bugs, please see <a href="https://flutter.io/bug-reports/" rel="nofollow">https://flutter.io/bug-reports/</a>.</p> </blockquote>
<h2 dir="auto">Steps to Reproduce</h2> <p dir="auto">In the gallery app's "Tab" demo, drag half-way between two tabs and release. The tab widget will snap to the closest tab with an animated transition. During that transition the tab widget will not accept any drag gestures. You have to wait for the animation to complete. This is easy to reproduce in slow animation mode. The behavior is not consistent, you may need to try several times to see it, but it doesn't take long to reproduce.</p> <h2 dir="auto">Flutter Doctor</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[✓] Flutter (on Mac OS, channel unknown) • Flutter at /Users/yjbanov/code/flutter/flutter • Framework revision 43dd9450af (3 months ago), engine revision 7fab0c350b [✓] Android toolchain - develop for Android devices (Android SDK 22.0.1) • Android SDK at /Users/yjbanov/code/android-sdk-macosx • Platform android-22, build-tools 22.0.1 • Java(TM) SE Runtime Environment (build 1.8.0_65-b17) [✓] iOS toolchain - develop for iOS devices (Xcode 7.3.1) • XCode at /Applications/Xcode.app/Contents/Developer • Xcode 7.3.1, Build version 7D1014 [✓] Atom - a lightweight development environment for Flutter • Atom installed; Flutter plugin version 0.2.2"><pre class="notranslate"><code class="notranslate">[✓] Flutter (on Mac OS, channel unknown) • Flutter at /Users/yjbanov/code/flutter/flutter • Framework revision 43dd9450af (3 months ago), engine revision 7fab0c350b [✓] Android toolchain - develop for Android devices (Android SDK 22.0.1) • Android SDK at /Users/yjbanov/code/android-sdk-macosx • Platform android-22, build-tools 22.0.1 • Java(TM) SE Runtime Environment (build 1.8.0_65-b17) [✓] iOS toolchain - develop for iOS devices (Xcode 7.3.1) • XCode at /Applications/Xcode.app/Contents/Developer • Xcode 7.3.1, Build version 7D1014 [✓] Atom - a lightweight development environment for Flutter • Atom installed; Flutter plugin version 0.2.2 </code></pre></div> <p dir="auto">/cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/HansMuller/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/HansMuller">@HansMuller</a></p>
1
<p dir="auto">After finishing a video challenge, the green check mark does not appear on the Map or on the challenge itself.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/ae9efff444e3332b7e94acfa1bfb79ed67a0328ae1c66f505387bde8b3e14bbe/68747470733a2f2f7777772e657665726e6f74652e636f6d2f6c2f4171516653356c383142394f474a484946513979343675746670377469707a674d7645422f696d6167652e706e67"><img src="https://camo.githubusercontent.com/ae9efff444e3332b7e94acfa1bfb79ed67a0328ae1c66f505387bde8b3e14bbe/68747470733a2f2f7777772e657665726e6f74652e636f6d2f6c2f4171516653356c383142394f474a484946513979343675746670377469707a674d7645422f696d6167652e706e67" alt="" data-canonical-src="https://www.evernote.com/l/AqQfS5l81B9OGJHIFQ9y46utfp7tipzgMvEB/image.png" style="max-width: 100%;"></a><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/e610e5adad97dbcde48ecb1baaf43eb46f5fc3637616bfc272473314583e00e9/68747470733a2f2f7777772e657665726e6f74652e636f6d2f6c2f41715249623375697a6770456e347641334a35426b66354b564f6365366e4a41546b49422f696d6167652e706e67"><img src="https://camo.githubusercontent.com/e610e5adad97dbcde48ecb1baaf43eb46f5fc3637616bfc272473314583e00e9/68747470733a2f2f7777772e657665726e6f74652e636f6d2f6c2f41715249623375697a6770456e347641334a35426b66354b564f6365366e4a41546b49422f696d6167652e706e67" alt="" data-canonical-src="https://www.evernote.com/l/AqRIb3uizgpEn4vA3J5Bkf5KVOce6nJATkIB/image.png" style="max-width: 100%;"></a></p>
1
<h4 dir="auto">Code Sample</h4> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import pandas as pd import numpy as np print pd.isnull(['abacaba', np.nan]) # [False, False] print pd.isnull(pd.Series(['abacaba', np.nan])).values # [False, True]"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span> <span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span> <span class="pl-k">print</span> <span class="pl-s1">pd</span>.<span class="pl-en">isnull</span>([<span class="pl-s">'abacaba'</span>, <span class="pl-s1">np</span>.<span class="pl-s1">nan</span>]) <span class="pl-c"># [False, False]</span> <span class="pl-k">print</span> <span class="pl-s1">pd</span>.<span class="pl-en">isnull</span>(<span class="pl-s1">pd</span>.<span class="pl-v">Series</span>([<span class="pl-s">'abacaba'</span>, <span class="pl-s1">np</span>.<span class="pl-s1">nan</span>])).<span class="pl-s1">values</span> <span class="pl-c"># [False, True]</span></pre></div> <h4 dir="auto">Problem description</h4> <p dir="auto">Inconsistent behavior.<br> The call <code class="notranslate">pd.isnull(pd.Series(['abacaba', np.nan])).values</code> returns <code class="notranslate">[False, True]</code>,<br> but <code class="notranslate">pd.isnull(['abacaba', np.nan])</code> returns <code class="notranslate">[False, False]</code>, which is counter-intuitive.<br> <code class="notranslate">np.nan</code> must be detected as null in both cases.</p> <h4 dir="auto">Expected Output</h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[False, True] [False, True]"><pre class="notranslate"><code class="notranslate">[False, True] [False, True] </code></pre></div> <h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4> <details> <h2 dir="auto">INSTALLED VERSIONS</h2> <p dir="auto">commit: None<br> python: 2.7.11.final.0<br> python-bits: 64<br> OS: Linux<br> OS-release: 4.4.0-96-generic<br> machine: x86_64<br> processor: x86_64<br> byteorder: little<br> LC_ALL: None<br> LANG: en_GB.UTF-8<br> LOCALE: en_GB.UTF-8</p> <p dir="auto">pandas: 0.20.3<br> pytest: None<br> pip: 9.0.1<br> setuptools: 35.0.1<br> Cython: 0.24<br> numpy: 1.13.3<br> scipy: 0.18.1<br> xarray: None<br> IPython: 4.2.0<br> sphinx: 1.2.2<br> patsy: 0.4.1<br> dateutil: 2.6.1<br> pytz: 2017.2<br> blosc: None<br> bottleneck: None<br> tables: 3.2.2<br> numexpr: 2.5<br> feather: None<br> matplotlib: 1.5.3<br> openpyxl: None<br> xlrd: None<br> xlwt: None<br> xlsxwriter: None<br> lxml: None<br> bs4: 4.5.3<br> html5lib: 0.999<br> sqlalchemy: None<br> pymysql: None<br> psycopg2: None<br> jinja2: 2.9.6<br> s3fs: 0.1.1<br> pandas_gbq: None<br> pandas_datareader: None</p> </details>
<h4 dir="auto">Code Sample, a copy-pastable example if possible</h4> <p dir="auto">Under 0.19.1 and latest master:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [19]: dr = pd.date_range(&quot;20161123 00:00&quot;, &quot;20161123 02:00&quot;, freq=&quot;H&quot;) In [20]: tdr = pd.timedelta_range(&quot;1 minute&quot;, &quot;3 minutes&quot;, freq=&quot;T&quot;) In [21]: dr + tdr Out[21]: DatetimeIndex(['2016-11-23 00:01:00', '2016-11-23 01:02:00', '2016-11-23 02:03:00'], dtype='datetime64[ns]', freq='61T') In [22]: dr_tz = pd.date_range(&quot;20161123 00:00&quot;, &quot;20161123 02:00&quot;, freq=&quot;H&quot;, tz=&quot;America/New_York&quot;) ...: In [23]: dr_tz + tdr --------------------------------------------------------------------------- TypeError Traceback (most recent call last) &lt;ipython-input-23-c10d4a537816&gt; in &lt;module&gt;() ----&gt; 1 dr_tz + tdr C:\Anaconda\envs\bleeding\lib\site-packages\pandas\tseries\base.pyc in __add__(self, other) 617 from pandas.tseries.offsets import DateOffset 618 if isinstance(other, TimedeltaIndex): --&gt; 619 return self._add_delta(other) 620 elif isinstance(self, TimedeltaIndex) and isinstance(other, Index): 621 if hasattr(other, '_add_delta'): C:\Anaconda\envs\bleeding\lib\site-packages\pandas\tseries\index.pyc in _add_delta(self, delta) 787 new_values = self._add_delta_td(delta) 788 elif isinstance(delta, TimedeltaIndex): --&gt; 789 new_values = self._add_delta_tdi(delta) 790 # update name when delta is Index 791 name = com._maybe_match_name(self, delta) C:\Anaconda\envs\bleeding\lib\site-packages\pandas\tseries\base.pyc in _add_delta_tdi(self, other) 704 mask = (self._isnan) | (other._isnan) 705 new_values[mask] = tslib.iNaT --&gt; 706 return new_values.view(self.dtype) 707 708 def isin(self, values): TypeError: data type not understood "><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">19</span>]: <span class="pl-s1">dr</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">date_range</span>(<span class="pl-s">"20161123 00:00"</span>, <span class="pl-s">"20161123 02:00"</span>, <span class="pl-s1">freq</span><span class="pl-c1">=</span><span class="pl-s">"H"</span>) <span class="pl-v">In</span> [<span class="pl-c1">20</span>]: <span class="pl-s1">tdr</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">timedelta_range</span>(<span class="pl-s">"1 minute"</span>, <span class="pl-s">"3 minutes"</span>, <span class="pl-s1">freq</span><span class="pl-c1">=</span><span class="pl-s">"T"</span>) <span class="pl-v">In</span> [<span class="pl-c1">21</span>]: <span class="pl-s1">dr</span> <span class="pl-c1">+</span> <span class="pl-s1">tdr</span> <span class="pl-v">Out</span>[<span class="pl-c1">21</span>]: <span class="pl-v">DatetimeIndex</span>([<span class="pl-s">'2016-11-23 00:01:00'</span>, <span class="pl-s">'2016-11-23 01:02:00'</span>, <span class="pl-s">'2016-11-23 02:03:00'</span>], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s">'datetime64[ns]'</span>, <span class="pl-s1">freq</span><span class="pl-c1">=</span><span class="pl-s">'61T'</span>) <span class="pl-v">In</span> [<span class="pl-c1">22</span>]: <span class="pl-s1">dr_tz</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">date_range</span>(<span class="pl-s">"20161123 00:00"</span>, <span class="pl-s">"20161123 02:00"</span>, <span class="pl-s1">freq</span><span class="pl-c1">=</span><span class="pl-s">"H"</span>, <span class="pl-s1">tz</span><span class="pl-c1">=</span><span class="pl-s">"America/New_York"</span>) ...: <span class="pl-v">In</span> [<span class="pl-c1">23</span>]: <span class="pl-s1">dr_tz</span> <span class="pl-c1">+</span> <span class="pl-s1">tdr</span> <span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span> <span class="pl-v">TypeError</span> <span class="pl-v">Traceback</span> (<span class="pl-s1">most</span> <span class="pl-s1">recent</span> <span class="pl-s1">call</span> <span class="pl-s1">last</span>) <span class="pl-c1">&lt;</span><span class="pl-s1">ipython</span><span class="pl-c1">-</span><span class="pl-s1">input</span><span class="pl-c1">-</span><span class="pl-c1">23</span><span class="pl-c1">-</span><span class="pl-s1">c10d4a537816</span><span class="pl-c1">&gt;</span> <span class="pl-s1">in</span> <span class="pl-c1">&lt;</span><span class="pl-s1">module</span><span class="pl-c1">&gt;</span>() <span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">&gt;</span> <span class="pl-c1">1</span> <span class="pl-s1">dr_tz</span> <span class="pl-c1">+</span> <span class="pl-s1">tdr</span> <span class="pl-v">C</span>:\A<span class="pl-s1">naconda</span>\e<span class="pl-s1">nvs</span>\b<span class="pl-s1">leeding</span>\l<span class="pl-s1">ib</span>\s<span class="pl-s1">ite</span><span class="pl-c1">-</span><span class="pl-s1">packages</span>\p<span class="pl-s1">andas</span>\t<span class="pl-s1">series</span>\b<span class="pl-s1">ase</span>.<span class="pl-s1">pyc</span> <span class="pl-c1">in</span> <span class="pl-en">__add__</span>(<span class="pl-s1">self</span>, <span class="pl-s1">other</span>) <span class="pl-c1">617</span> <span class="pl-k">from</span> <span class="pl-s1">pandas</span>.<span class="pl-s1">tseries</span>.<span class="pl-s1">offsets</span> <span class="pl-k">import</span> <span class="pl-v">DateOffset</span> <span class="pl-c1">618</span> <span class="pl-k">if</span> <span class="pl-en">isinstance</span>(<span class="pl-s1">other</span>, <span class="pl-v">TimedeltaIndex</span>): <span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">&gt;</span> <span class="pl-c1">619</span> <span class="pl-s1">return</span> <span class="pl-s1">self</span>.<span class="pl-en">_add_delta</span>(<span class="pl-s1">other</span>) <span class="pl-c1">620</span> <span class="pl-s1">elif</span> <span class="pl-en">isinstance</span>(<span class="pl-s1">self</span>, <span class="pl-v">TimedeltaIndex</span>) <span class="pl-c1">and</span> <span class="pl-en">isinstance</span>(<span class="pl-s1">other</span>, <span class="pl-v">Index</span>): <span class="pl-c1">621</span> <span class="pl-k">if</span> <span class="pl-en">hasattr</span>(<span class="pl-s1">other</span>, <span class="pl-s">'_add_delta'</span>): <span class="pl-v">C</span>:\A<span class="pl-s1">naconda</span>\e<span class="pl-s1">nvs</span>\b<span class="pl-s1">leeding</span>\l<span class="pl-s1">ib</span>\s<span class="pl-s1">ite</span><span class="pl-c1">-</span><span class="pl-s1">packages</span>\p<span class="pl-s1">andas</span>\t<span class="pl-s1">series</span>\i<span class="pl-s1">ndex</span>.<span class="pl-s1">pyc</span> <span class="pl-c1">in</span> <span class="pl-en">_add_delta</span>(<span class="pl-s1">self</span>, <span class="pl-s1">delta</span>) <span class="pl-c1">787</span> <span class="pl-s1">new_values</span> <span class="pl-c1">=</span> <span class="pl-s1">self</span>.<span class="pl-en">_add_delta_td</span>(<span class="pl-s1">delta</span>) <span class="pl-c1">788</span> <span class="pl-k">elif</span> <span class="pl-en">isinstance</span>(<span class="pl-s1">delta</span>, <span class="pl-v">TimedeltaIndex</span>): <span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">&gt;</span> <span class="pl-c1">789</span> <span class="pl-s1">new_values</span> <span class="pl-c1">=</span> <span class="pl-s1">self</span>.<span class="pl-en">_add_delta_tdi</span>(<span class="pl-s1">delta</span>) <span class="pl-c1">790</span> <span class="pl-c"># update name when delta is Index </span> <span class="pl-c1">791</span> <span class="pl-s1">name</span> <span class="pl-c1">=</span> <span class="pl-s1">com</span>.<span class="pl-en">_maybe_match_name</span>(<span class="pl-s1">self</span>, <span class="pl-s1">delta</span>) <span class="pl-v">C</span>:\A<span class="pl-s1">naconda</span>\e<span class="pl-s1">nvs</span>\b<span class="pl-s1">leeding</span>\l<span class="pl-s1">ib</span>\s<span class="pl-s1">ite</span><span class="pl-c1">-</span><span class="pl-s1">packages</span>\p<span class="pl-s1">andas</span>\t<span class="pl-s1">series</span>\b<span class="pl-s1">ase</span>.<span class="pl-s1">pyc</span> <span class="pl-c1">in</span> <span class="pl-en">_add_delta_tdi</span>(<span class="pl-s1">self</span>, <span class="pl-s1">other</span>) <span class="pl-c1">704</span> <span class="pl-s1">mask</span> <span class="pl-c1">=</span> (<span class="pl-s1">self</span>.<span class="pl-s1">_isnan</span>) <span class="pl-c1">|</span> (<span class="pl-s1">other</span>.<span class="pl-s1">_isnan</span>) <span class="pl-c1">705</span> <span class="pl-s1">new_values</span>[<span class="pl-s1">mask</span>] <span class="pl-c1">=</span> <span class="pl-s1">tslib</span>.<span class="pl-s1">iNaT</span> <span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">&gt;</span> <span class="pl-c1">706</span> <span class="pl-s1">return</span> <span class="pl-s1">new_values</span>.<span class="pl-en">view</span>(<span class="pl-s1">self</span>.<span class="pl-s1">dtype</span>) <span class="pl-c1">707</span> <span class="pl-c1">708</span> <span class="pl-s1">def</span> <span class="pl-en">isin</span>(<span class="pl-s1">self</span>, <span class="pl-s1">values</span>): <span class="pl-v">TypeError</span>: <span class="pl-s1">data</span> <span class="pl-s1">type</span> <span class="pl-c1">not</span> <span class="pl-s1">understood</span> </pre></div> <h4 dir="auto">Problem description</h4> <p dir="auto">Given a DatetimeIndex that is not tz-aware, adding a TimedeltaIndex of the same length adds the values elementwise, as one would expect. Given a tz-aware DatetimeIndex, however, adding a TimedeltaIndex results in TypeError. Performing the same operation by iterating over the tz-aware index and adding the values directly works in the expected manner. This behavior did not occur under pandas 0.16.2; however, the above behavior occurs under at least 0.19.1 and the latest master.</p> <h4 dir="auto">Expected Output</h4> <p dir="auto">Equivalent to the elementwise operation below, which works on latest master:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [25]: pd.Index([dr_tz[i] + tdr[i] for i in xrange(len(dr_tz))]) Out[25]: DatetimeIndex(['2016-11-23 00:01:00-05:00', '2016-11-23 01:02:00-05:00', '2016-11-23 02:03:00-05:00'], dtype='datetime64[ns, America/New_York]', freq=None) "><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">25</span>]: <span class="pl-s1">pd</span>.<span class="pl-v">Index</span>([<span class="pl-s1">dr_tz</span>[<span class="pl-s1">i</span>] <span class="pl-c1">+</span> <span class="pl-s1">tdr</span>[<span class="pl-s1">i</span>] <span class="pl-k">for</span> <span class="pl-s1">i</span> <span class="pl-c1">in</span> <span class="pl-en">xrange</span>(<span class="pl-en">len</span>(<span class="pl-s1">dr_tz</span>))]) <span class="pl-v">Out</span>[<span class="pl-c1">25</span>]: <span class="pl-v">DatetimeIndex</span>([<span class="pl-s">'2016-11-23 00:01:00-05:00'</span>, <span class="pl-s">'2016-11-23 01:02:00-05:00'</span>, <span class="pl-s">'2016-11-23 02:03:00-05:00'</span>], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s">'datetime64[ns, America/New_York]'</span>, <span class="pl-s1">freq</span><span class="pl-c1">=</span><span class="pl-c1">None</span>) </pre></div> <p dir="auto">This also worked under 0.16.2:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [14]: dr_tz = pd.date_range(&quot;20161123 00:00&quot;, &quot;20161123 02:00&quot;, freq=&quot;H&quot;, tz=&quot;America/New_York&quot;) In [15]: tdr = pd.timedelta_range(&quot;1 minute&quot;, &quot;3 minutes&quot;, freq=&quot;T&quot;) In [16]: dr_tz + tdr Out[16]: DatetimeIndex(['2016-11-23 00:01:00-05:00', '2016-11-23 01:02:00-05:00', '2016-11-23 02:03:00-05:00'], dtype='datetime64[ns]', freq='61T', tz='America/New_York') "><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">14</span>]: <span class="pl-s1">dr_tz</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">date_range</span>(<span class="pl-s">"20161123 00:00"</span>, <span class="pl-s">"20161123 02:00"</span>, <span class="pl-s1">freq</span><span class="pl-c1">=</span><span class="pl-s">"H"</span>, <span class="pl-s1">tz</span><span class="pl-c1">=</span><span class="pl-s">"America/New_York"</span>) <span class="pl-v">In</span> [<span class="pl-c1">15</span>]: <span class="pl-s1">tdr</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">timedelta_range</span>(<span class="pl-s">"1 minute"</span>, <span class="pl-s">"3 minutes"</span>, <span class="pl-s1">freq</span><span class="pl-c1">=</span><span class="pl-s">"T"</span>) <span class="pl-v">In</span> [<span class="pl-c1">16</span>]: <span class="pl-s1">dr_tz</span> <span class="pl-c1">+</span> <span class="pl-s1">tdr</span> <span class="pl-v">Out</span>[<span class="pl-c1">16</span>]: <span class="pl-v">DatetimeIndex</span>([<span class="pl-s">'2016-11-23 00:01:00-05:00'</span>, <span class="pl-s">'2016-11-23 01:02:00-05:00'</span>, <span class="pl-s">'2016-11-23 02:03:00-05:00'</span>], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s">'datetime64[ns]'</span>, <span class="pl-s1">freq</span><span class="pl-c1">=</span><span class="pl-s">'61T'</span>, <span class="pl-s1">tz</span><span class="pl-c1">=</span><span class="pl-s">'America/New_York'</span>) </pre></div> <h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4> <details> In [26]: pd.show_versions() <h2 dir="auto">INSTALLED VERSIONS</h2> <p dir="auto">commit: None<br> python: 2.7.12.final.0<br> python-bits: 64<br> OS: Windows<br> OS-release: 7<br> machine: AMD64<br> processor: Intel64 Family 6 Model 62 Stepping 4, GenuineIntel<br> byteorder: little<br> LC_ALL: None<br> LANG: None<br> LOCALE: None.None</p> <p dir="auto">pandas: 0.19.0+98.gc045e1d<br> nose: 1.3.7<br> pip: 9.0.1<br> setuptools: 27.2.0<br> Cython: 0.24.1<br> numpy: 1.11.2<br> scipy: 0.18.1<br> statsmodels: None<br> xarray: None<br> IPython: 5.1.0<br> sphinx: 1.4.8<br> patsy: None<br> dateutil: 2.5.3<br> pytz: 2016.7<br> blosc: None<br> bottleneck: None<br> tables: 3.2.2<br> numexpr: 2.6.1<br> matplotlib: 1.5.3<br> openpyxl: 2.4.0<br> xlrd: 1.0.0<br> xlwt: 1.1.2<br> xlsxwriter: None<br> lxml: 3.6.4<br> bs4: None<br> html5lib: None<br> httplib2: None<br> apiclient: None<br> sqlalchemy: 1.0.13<br> pymysql: None<br> psycopg2: None<br> jinja2: 2.8<br> boto: None<br> pandas_datareader: None</p> </details>
0
<p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/numpy/ticket/1176" rel="nofollow">http://projects.scipy.org/numpy/ticket/1176</a> on 2009-07-17 by trac user mauro, assigned to unknown.</em></p> <p dir="auto">When making a deepcopy of a numpy.ndarray with dtype S a numpy.string_ is created.</p> <p dir="auto">I am not too familiar with the numpy types, but I think they are basically the same. However, they have different <strong>repr</strong> and this can make this somewhat confusing (it confused me).</p>
<p dir="auto">I cite Chris Baker's message from numpy discussion, since I encountered the exact same bug and I could not find it reporter here:</p> <p dir="auto">Hi folks,</p> <p dir="auto">In [264]: np.<strong>version</strong><br> Out[264]: '1.7.0'</p> <p dir="auto">I just noticed that deep copying a rank-zero array yields a scalar --<br> probably not what we want.</p> <p dir="auto">In [242]: a1 = np.array(3)</p> <p dir="auto">In [243]: type(a1), a1<br> Out[243]: (numpy.ndarray, array(3))</p> <p dir="auto">In [244]: a2 = copy.deepcopy(a1)</p> <p dir="auto">In [245]: type(a2), a2<br> Out[245]: (numpy.int32, 3)</p> <p dir="auto">regular copy.copy() seems to work fine:</p> <p dir="auto">In [246]: a3 = copy.copy(a1)</p> <p dir="auto">In [247]: type(a3), a3<br> Out[247]: (numpy.ndarray, array(3))</p> <p dir="auto">Higher-rank arrays seem to work fine:</p> <p dir="auto">In [253]: a1 = np.array((3,4))</p> <p dir="auto">In [254]: type(a1), a1<br> Out[254]: (numpy.ndarray, array([3, 4]))</p> <p dir="auto">In [255]: a2 = copy.deepcopy(a1)</p> <p dir="auto">In [256]: type(a2), a2<br> Out[256]: (numpy.ndarray, array([3, 4]))</p> <p dir="auto">Array scalars seem to work fine as well:</p> <p dir="auto">In [257]: s1 = np.float32(3)</p> <p dir="auto">In [258]: s2 = copy.deepcopy(s1)</p> <p dir="auto">In [261]: type(s1), s1<br> Out[261]: (numpy.float32, 3.0)</p> <p dir="auto">In [262]: type(s2), s2<br> Out[262]: (numpy.float32, 3.0)</p> <p dir="auto">There are other ways to copy arrays, but in this case, I had a dict<br> with a bunch of arrays in it, and needed a deepcopy of the dict. I was<br> surprised to find that my rank-0 array got turned into a scalar.</p>
1
<h3 dir="auto">Bug report</h3> <p dir="auto">The coordinates reported for <code class="notranslate">eclick</code> and <code class="notranslate">erelease</code> from the <code class="notranslate">onselect</code> callback function don't match what was actually clicked on when drawing a rectangle with <code class="notranslate">RectangleSelector</code></p> <p dir="auto"><strong>Code for reproduction</strong></p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from matplotlib.backend_bases import MouseButton, MouseEvent import matplotlib.pyplot as plt import numpy as np from matplotlib.widgets import RectangleSelector xdata = np.linspace(0,9*np.pi, num=301) ydata = np.sin(xdata) def rect_coords_from_clicks(eclick, erelease): x1, y1 = eclick.xdata, eclick.ydata x2, y2 = erelease.xdata, erelease.ydata print(f&quot;You pressed at {(x1,y1)}, and released at {(x2,y2)}.&quot;) def on_press(event): print(f&quot;You pressed {str(event.button)} at {(event.xdata, event.ydata)}.&quot;) def on_release(event): print(f&quot;You released {str(event.button)} at {(event.xdata, event.ydata)}.&quot;) fig, ax = plt.subplots() line, = ax.plot(xdata, ydata) rs = RectangleSelector(ax, rect_coords_from_clicks, button=[MouseButton.LEFT]) plt.connect('button_press_event', on_press) plt.connect('button_release_event', on_release) plt.show()"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">backend_bases</span> <span class="pl-k">import</span> <span class="pl-v">MouseButton</span>, <span class="pl-v">MouseEvent</span> <span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span> <span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span> <span class="pl-k">from</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">widgets</span> <span class="pl-k">import</span> <span class="pl-v">RectangleSelector</span> <span class="pl-s1">xdata</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">linspace</span>(<span class="pl-c1">0</span>,<span class="pl-c1">9</span><span class="pl-c1">*</span><span class="pl-s1">np</span>.<span class="pl-s1">pi</span>, <span class="pl-s1">num</span><span class="pl-c1">=</span><span class="pl-c1">301</span>) <span class="pl-s1">ydata</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">sin</span>(<span class="pl-s1">xdata</span>) <span class="pl-k">def</span> <span class="pl-en">rect_coords_from_clicks</span>(<span class="pl-s1">eclick</span>, <span class="pl-s1">erelease</span>): <span class="pl-s1">x1</span>, <span class="pl-s1">y1</span> <span class="pl-c1">=</span> <span class="pl-s1">eclick</span>.<span class="pl-s1">xdata</span>, <span class="pl-s1">eclick</span>.<span class="pl-s1">ydata</span> <span class="pl-s1">x2</span>, <span class="pl-s1">y2</span> <span class="pl-c1">=</span> <span class="pl-s1">erelease</span>.<span class="pl-s1">xdata</span>, <span class="pl-s1">erelease</span>.<span class="pl-s1">ydata</span> <span class="pl-en">print</span>(<span class="pl-s">f"You pressed at <span class="pl-s1"><span class="pl-kos">{</span>(<span class="pl-s1">x1</span>,<span class="pl-s1">y1</span>)<span class="pl-kos">}</span></span>, and released at <span class="pl-s1"><span class="pl-kos">{</span>(<span class="pl-s1">x2</span>,<span class="pl-s1">y2</span>)<span class="pl-kos">}</span></span>."</span>) <span class="pl-k">def</span> <span class="pl-en">on_press</span>(<span class="pl-s1">event</span>): <span class="pl-en">print</span>(<span class="pl-s">f"You pressed <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-en">str</span>(<span class="pl-s1">event</span>.<span class="pl-s1">button</span>)<span class="pl-kos">}</span></span> at <span class="pl-s1"><span class="pl-kos">{</span>(<span class="pl-s1">event</span>.<span class="pl-s1">xdata</span>, <span class="pl-s1">event</span>.<span class="pl-s1">ydata</span>)<span class="pl-kos">}</span></span>."</span>) <span class="pl-k">def</span> <span class="pl-en">on_release</span>(<span class="pl-s1">event</span>): <span class="pl-en">print</span>(<span class="pl-s">f"You released <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-en">str</span>(<span class="pl-s1">event</span>.<span class="pl-s1">button</span>)<span class="pl-kos">}</span></span> at <span class="pl-s1"><span class="pl-kos">{</span>(<span class="pl-s1">event</span>.<span class="pl-s1">xdata</span>, <span class="pl-s1">event</span>.<span class="pl-s1">ydata</span>)<span class="pl-kos">}</span></span>."</span>) <span class="pl-s1">fig</span>, <span class="pl-s1">ax</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">subplots</span>() <span class="pl-s1">line</span>, <span class="pl-c1">=</span> <span class="pl-s1">ax</span>.<span class="pl-en">plot</span>(<span class="pl-s1">xdata</span>, <span class="pl-s1">ydata</span>) <span class="pl-s1">rs</span> <span class="pl-c1">=</span> <span class="pl-v">RectangleSelector</span>(<span class="pl-s1">ax</span>, <span class="pl-s1">rect_coords_from_clicks</span>, <span class="pl-s1">button</span><span class="pl-c1">=</span>[<span class="pl-v">MouseButton</span>.<span class="pl-v">LEFT</span>]) <span class="pl-s1">plt</span>.<span class="pl-en">connect</span>(<span class="pl-s">'button_press_event'</span>, <span class="pl-s1">on_press</span>) <span class="pl-s1">plt</span>.<span class="pl-en">connect</span>(<span class="pl-s">'button_release_event'</span>, <span class="pl-s1">on_release</span>) <span class="pl-s1">plt</span>.<span class="pl-en">show</span>()</pre></div> <p dir="auto"><strong>Actual outcome</strong></p> <p dir="auto">clicking the left mousebutton at ~(0,0), dragging the rectangle to ~(25,-1) and then releasing results in the following</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="You pressed MouseButton.LEFT at (0.028502352703939415, -0.009523809523809268). You pressed at (0.028502352703938527, -0.9976190476190476), and released at (24.922457204324836, -0.009523809523809268). You released MouseButton.LEFT at (24.922457204324836, -0.9976190476190476)."><pre class="notranslate"><code class="notranslate">You pressed MouseButton.LEFT at (0.028502352703939415, -0.009523809523809268). You pressed at (0.028502352703938527, -0.9976190476190476), and released at (24.922457204324836, -0.009523809523809268). You released MouseButton.LEFT at (24.922457204324836, -0.9976190476190476). </code></pre></div> <p dir="auto">clicking the left mousebutton at ~(25,1), dragging the rectangle to ~(0,0) and then releasing results in the following</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="You pressed MouseButton.LEFT at (25.04786755622217, -0.9797619047619047). You pressed at (0.028502352703938527, -0.9797619047619047), and released at (25.04786755622217, 0.0023809523809525945). You released MouseButton.LEFT at (0.028502352703939415, 0.0023809523809525945)."><pre class="notranslate"><code class="notranslate">You pressed MouseButton.LEFT at (25.04786755622217, -0.9797619047619047). You pressed at (0.028502352703938527, -0.9797619047619047), and released at (25.04786755622217, 0.0023809523809525945). You released MouseButton.LEFT at (0.028502352703939415, 0.0023809523809525945). </code></pre></div> <p dir="auto">The coordinates of click and release aren't respected by the onselect function of RectangleSelector: the "click" coordinate is always the bottom left corner of the rectangle and the "release" coordinate is always the top right corner.</p> <p dir="auto">The coordinates given by the <code class="notranslate">on_press</code> and <code class="notranslate">on_release</code> functions are always correct.</p> <p dir="auto"><strong>Expected outcome</strong></p> <p dir="auto">clicking the left mousebutton at ~(0,0), dragging the rectangle to ~(25,-1) and then releasing results in the following</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="You pressed MouseButton.LEFT at (0.028502352703939415, -0.009523809523809268). You pressed at (0.028502352703939415, -0.009523809523809268), and released at (24.922457204324836, -0.9976190476190476). You released MouseButton.LEFT at (24.922457204324836, -0.9976190476190476)."><pre class="notranslate"><code class="notranslate">You pressed MouseButton.LEFT at (0.028502352703939415, -0.009523809523809268). You pressed at (0.028502352703939415, -0.009523809523809268), and released at (24.922457204324836, -0.9976190476190476). You released MouseButton.LEFT at (24.922457204324836, -0.9976190476190476). </code></pre></div> <p dir="auto">clicking the left mousebutton at ~(25,1), dragging the rectangle to ~(0,0) and then releasing results in the following</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="You pressed MouseButton.LEFT at (25.04786755622217, -0.9797619047619047). You pressed at (25.04786755622217, -0.9797619047619047), and released at (0.028502352703939415, 0.0023809523809525945). You released MouseButton.LEFT at (0.028502352703939415, 0.0023809523809525945)."><pre class="notranslate"><code class="notranslate">You pressed MouseButton.LEFT at (25.04786755622217, -0.9797619047619047). You pressed at (25.04786755622217, -0.9797619047619047), and released at (0.028502352703939415, 0.0023809523809525945). You released MouseButton.LEFT at (0.028502352703939415, 0.0023809523809525945). </code></pre></div> <p dir="auto">The coordinates reported by <code class="notranslate">eclick</code> and <code class="notranslate">erelease</code> should match the actual click and release coordinate.</p> <p dir="auto"><strong>Matplotlib version</strong></p> <ul dir="auto"> <li>Operating system: Windows 10</li> <li>Matplotlib version: 3.4.2</li> <li>Matplotlib backend: Qt5Agg</li> <li>Python version: 3.9.4</li> </ul>
<h3 dir="auto">Bug report</h3> <p dir="auto">In Python 3.6.3 and the related matplotlib (just compiled from sources) the RectangleSelector does no longer behave as in Python 2.7 and as is described. Instead of returning the mouse click coordinates in the event variable eclick and the release coordinates in erelease it returns the lower left corner in eclick and the upper right corner in erelease. This "normalization" reduces the information content and, thus, the usability of the selector. Only using the old version a user can switch to drawmode='line' and use the selector to input a displacement vector.</p>
1
<h4 dir="auto">Code Sample, a copy-pastable example if possible</h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import pandas as pd import numpy as np print(&quot;Pandas version: &quot;, pd.__version__) # mine: 0.21.0 print(&quot;Numpy version: &quot;, np.__version__) # mine: 1.13.3 # generate some data data = np.random.randn(1,20) target = np.array( ['Test'] * len(data) ).reshape(-1,1) data_and_target = np.hstack((data, target)) data_and_target_cols = [&quot;c&quot; + str(i) for i in range(data.shape[1])] + ['target'] data_and_target_df = pd.DataFrame(data_and_target, columns=data_and_target_cols) print(data_and_target_df[data_and_target_df.columns.difference(['target'])].columns) # the column order I would have expected / &quot;workaround&quot; print(data_and_target_df[data_and_target_df.columns.values[~data_and_target_df.columns.str.contains('target')]].columns ) "><pre class="notranslate"><code class="notranslate">import pandas as pd import numpy as np print("Pandas version: ", pd.__version__) # mine: 0.21.0 print("Numpy version: ", np.__version__) # mine: 1.13.3 # generate some data data = np.random.randn(1,20) target = np.array( ['Test'] * len(data) ).reshape(-1,1) data_and_target = np.hstack((data, target)) data_and_target_cols = ["c" + str(i) for i in range(data.shape[1])] + ['target'] data_and_target_df = pd.DataFrame(data_and_target, columns=data_and_target_cols) print(data_and_target_df[data_and_target_df.columns.difference(['target'])].columns) # the column order I would have expected / "workaround" print(data_and_target_df[data_and_target_df.columns.values[~data_and_target_df.columns.str.contains('target')]].columns ) </code></pre></div> <h4 dir="auto">Problem description</h4> <ul dir="auto"> <li> <p dir="auto">I assumed that pandas.columns.difference has the same functionality as the longer expression given above under workaround.</p> </li> <li> <p dir="auto">It took me a long time to discover that "Index.difference" does not only remove the column but also sorts them in a lexical order.</p> </li> <li> <p dir="auto">This can cause major issues e.g. when transforming the table into numpy via DataFrame.values while not tracking columns.</p> </li> <li> <p dir="auto">It took me a long time to figure out that the degraded performance in my system was due to this call. I now know that the sorting is a documented feature; but maybe this is not an ideal behavior.</p> </li> <li> <p dir="auto">By reporting this I would like to put this to the discussion</p> </li> </ul> <h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4> <details> INSTALLED VERSIONS ------------------ commit: None python: 3.5.3.final.0 python-bits: 64 OS: Windows OS-release: 10 machine: AMD64 processor: Intel64 Family 6 Model 158 Stepping 9, GenuineIntel byteorder: little LC_ALL: None LANG: None LOCALE: None.None <p dir="auto">pandas: 0.21.0<br> pytest: None<br> pip: 9.0.1<br> setuptools: 33.1.1.post20170320<br> Cython: None<br> numpy: 1.13.3<br> scipy: 0.19.0<br> pyarrow: None<br> xarray: None<br> IPython: 5.3.0<br> sphinx: None<br> patsy: 0.4.1<br> dateutil: 2.6.0<br> pytz: 2017.2<br> blosc: None<br> bottleneck: None<br> tables: 3.4.2<br> numexpr: 2.6.2<br> feather: None<br> matplotlib: None<br> openpyxl: None<br> xlrd: None<br> xlwt: None<br> xlsxwriter: None<br> lxml: None<br> bs4: None<br> html5lib: 0.999<br> sqlalchemy: None<br> pymysql: None<br> psycopg2: None<br> jinja2: 2.9.5<br> s3fs: None<br> fastparquet: None<br> pandas_gbq: None<br> pandas_datareader: None</p> </details>
<p dir="auto">I often want to remove certain elements from an index while retaining the original ordering of the index. For this reason a sort keyword in the <code class="notranslate">index.difference</code> method would be required:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In: index = pd.Index([0, 1, 2, 4, 3]) In: index.difference({1, 2}) Out: Int64Index([0, 3, 4], dtype='int64') # It would be cool to have instead In: index.difference({1, 2}, sort=False) Out: Int64Index([0, 4, 3], dtype='int64')"><pre class="notranslate"><code class="notranslate">In: index = pd.Index([0, 1, 2, 4, 3]) In: index.difference({1, 2}) Out: Int64Index([0, 3, 4], dtype='int64') # It would be cool to have instead In: index.difference({1, 2}, sort=False) Out: Int64Index([0, 4, 3], dtype='int64') </code></pre></div> <p dir="auto">I think that this usecase appears frequently and setting the default to <code class="notranslate">sort=True</code> doesn't affect existing code.</p>
1
<p dir="auto">I'm using Win 7, 64bit.<br> Atom version: 1.0.0</p> <p dir="auto">I'm using a Hungarian keyboard layout and I have trouble entering the open bracket [ symbol.</p> <p dir="auto">Pressing AltGr F produces this:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/342688/8451032/3e1608f8-1fe0-11e5-82e0-ba3b639c066f.png"><img src="https://cloud.githubusercontent.com/assets/342688/8451032/3e1608f8-1fe0-11e5-82e0-ba3b639c066f.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">This is how special characters are laid out for us:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/342688/8451064/76d7ff5c-1fe0-11e5-94ba-99ff95cebf06.png"><img src="https://cloud.githubusercontent.com/assets/342688/8451064/76d7ff5c-1fe0-11e5-94ba-99ff95cebf06.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">I'd expect this to be handled by default, without any extra configuration.</p>
<p dir="auto">Original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="28529842" data-permission-text="Title is private" data-url="https://github.com/atom/atom/issues/1625" data-hovercard-type="issue" data-hovercard-url="/atom/atom/issues/1625/hovercard" href="https://github.com/atom/atom/issues/1625">atom/atom#1625</a></p> <hr> <p dir="auto">Use <a href="https://atom.io/packages/keyboard-localization" rel="nofollow">https://atom.io/packages/keyboard-localization</a> until this issue gets fixed (should be in the Blink upstream).</p>
1
<p dir="auto">Relevant <a href="https://stackoverflow.com/questions/23258353/seaborn-facetgrid-col-wrap-wide-to-long-plotting-issue/45377449#45377449" rel="nofollow">StackOverflow question</a> (which I actually just posted to).</p> <p dir="auto">I understand this isn't a showstopper but actually made me research a while before realizing there was also a <code class="notranslate">row</code> parameter that was meant to be used. Perhaps a error message could be displayed?</p> <p dir="auto">If you tell me what the intended behavior is I can try and make a pull request fixing it. <g-emoji class="g-emoji" alias="smile" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f604.png">😄</g-emoji></p>
<p dir="auto">I'm trying to plot side-by-side heatmaps and I'm seeing this problem when <code class="notranslate">sharey=True</code>. The ordering of the data in all but the last subplot is reversed. But because the y axis is shared, the overall figure displays incorrectly.</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import matplotlib.pyplot as plt import numpy as np import pandas as pd import seaborn as sns df1 = pd.DataFrame(np.random.random((10,10,))) df1.loc[2] = 0 df2 = pd.DataFrame(np.random.random((10,10,))) df2.loc[7] = 0"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span> <span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span> <span class="pl-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span> <span class="pl-k">import</span> <span class="pl-s1">seaborn</span> <span class="pl-k">as</span> <span class="pl-s1">sns</span> <span class="pl-s1">df1</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>(<span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">random</span>((<span class="pl-c1">10</span>,<span class="pl-c1">10</span>,))) <span class="pl-s1">df1</span>.<span class="pl-s1">loc</span>[<span class="pl-c1">2</span>] <span class="pl-c1">=</span> <span class="pl-c1">0</span> <span class="pl-s1">df2</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>(<span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">random</span>((<span class="pl-c1">10</span>,<span class="pl-c1">10</span>,))) <span class="pl-s1">df2</span>.<span class="pl-s1">loc</span>[<span class="pl-c1">7</span>] <span class="pl-c1">=</span> <span class="pl-c1">0</span></pre></div> <p dir="auto">Without <code class="notranslate">sharey=True</code></p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="fig, ax = plt.subplots(1,2) sns.heatmap(df1, ax=ax[0]) sns.heatmap(df2, ax=ax[1]);"><pre class="notranslate"><span class="pl-s1">fig</span>, <span class="pl-s1">ax</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">subplots</span>(<span class="pl-c1">1</span>,<span class="pl-c1">2</span>) <span class="pl-s1">sns</span>.<span class="pl-en">heatmap</span>(<span class="pl-s1">df1</span>, <span class="pl-s1">ax</span><span class="pl-c1">=</span><span class="pl-s1">ax</span>[<span class="pl-c1">0</span>]) <span class="pl-s1">sns</span>.<span class="pl-en">heatmap</span>(<span class="pl-s1">df2</span>, <span class="pl-s1">ax</span><span class="pl-c1">=</span><span class="pl-s1">ax</span>[<span class="pl-c1">1</span>]);</pre></div> <p dir="auto">Correctly shows as<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/2991876/62012940-058be680-b152-11e9-8e20-839efedcd9b8.png"><img src="https://user-images.githubusercontent.com/2991876/62012940-058be680-b152-11e9-8e20-839efedcd9b8.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">With <code class="notranslate">sharey=True</code></p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="fig, ax = plt.subplots(1,2, sharey=True) sns.heatmap(df1, ax=ax[0]) sns.heatmap(df2, ax=ax[1]);"><pre class="notranslate"><span class="pl-s1">fig</span>, <span class="pl-s1">ax</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">subplots</span>(<span class="pl-c1">1</span>,<span class="pl-c1">2</span>, <span class="pl-s1">sharey</span><span class="pl-c1">=</span><span class="pl-c1">True</span>) <span class="pl-s1">sns</span>.<span class="pl-en">heatmap</span>(<span class="pl-s1">df1</span>, <span class="pl-s1">ax</span><span class="pl-c1">=</span><span class="pl-s1">ax</span>[<span class="pl-c1">0</span>]) <span class="pl-s1">sns</span>.<span class="pl-en">heatmap</span>(<span class="pl-s1">df2</span>, <span class="pl-s1">ax</span><span class="pl-c1">=</span><span class="pl-s1">ax</span>[<span class="pl-c1">1</span>]);</pre></div> <p dir="auto">shows as<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/2991876/62012996-ab3f5580-b152-11e9-81c1-4a00be683bff.png"><img src="https://user-images.githubusercontent.com/2991876/62012996-ab3f5580-b152-11e9-81c1-4a00be683bff.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">The y axis on the left is reversed (and correctly labeled). But the values on the right are not reversed and because the y is shared, it is incorrect.</p> <p dir="auto">I can't tell if this related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="266835659" data-permission-text="Title is private" data-url="https://github.com/mwaskom/seaborn/issues/1306" data-hovercard-type="issue" data-hovercard-url="/mwaskom/seaborn/issues/1306/hovercard" href="https://github.com/mwaskom/seaborn/issues/1306">#1306</a></p> <p dir="auto">I found this issue after looking at<br> <a href="https://stackoverflow.com/questions/28356359/one-colorbar-for-seaborn-heatmaps-in-subplot" rel="nofollow">https://stackoverflow.com/questions/28356359/one-colorbar-for-seaborn-heatmaps-in-subplot</a></p> <p dir="auto">Using the code from the accepted answer (from mwaskom),</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="fig, axn = plt.subplots(2, 2, sharex=True, sharey=True) cbar_ax = fig.add_axes([.91, .3, .03, .4]) for i, ax in enumerate(axn.flat): sns.heatmap(df1, ax=ax, cbar=i == 0, vmin=0, vmax=1, cbar_ax=None if i else cbar_ax)"><pre class="notranslate"><span class="pl-s1">fig</span>, <span class="pl-s1">axn</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">subplots</span>(<span class="pl-c1">2</span>, <span class="pl-c1">2</span>, <span class="pl-s1">sharex</span><span class="pl-c1">=</span><span class="pl-c1">True</span>, <span class="pl-s1">sharey</span><span class="pl-c1">=</span><span class="pl-c1">True</span>) <span class="pl-s1">cbar_ax</span> <span class="pl-c1">=</span> <span class="pl-s1">fig</span>.<span class="pl-en">add_axes</span>([<span class="pl-c1">.91</span>, <span class="pl-c1">.3</span>, <span class="pl-c1">.03</span>, <span class="pl-c1">.4</span>]) <span class="pl-k">for</span> <span class="pl-s1">i</span>, <span class="pl-s1">ax</span> <span class="pl-c1">in</span> <span class="pl-en">enumerate</span>(<span class="pl-s1">axn</span>.<span class="pl-s1">flat</span>): <span class="pl-s1">sns</span>.<span class="pl-en">heatmap</span>(<span class="pl-s1">df1</span>, <span class="pl-s1">ax</span><span class="pl-c1">=</span><span class="pl-s1">ax</span>, <span class="pl-s1">cbar</span><span class="pl-c1">=</span><span class="pl-s1">i</span> <span class="pl-c1">==</span> <span class="pl-c1">0</span>, <span class="pl-s1">vmin</span><span class="pl-c1">=</span><span class="pl-c1">0</span>, <span class="pl-s1">vmax</span><span class="pl-c1">=</span><span class="pl-c1">1</span>, <span class="pl-s1">cbar_ax</span><span class="pl-c1">=</span><span class="pl-c1">None</span> <span class="pl-k">if</span> <span class="pl-s1">i</span> <span class="pl-k">else</span> <span class="pl-s1">cbar_ax</span>)</pre></div> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/2991876/62013072-957e6000-b153-11e9-95d3-c2942ec7661e.png"><img src="https://user-images.githubusercontent.com/2991876/62013072-957e6000-b153-11e9-95d3-c2942ec7661e.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">I'm getting plots 1, 2, 3 are reversed and 4 is okay. But in the original stackoverflow answer, all plots are okay (identical), so perhaps this is a bug in a recent version of seaborn?</p> <p dir="auto">I'm using seaborn 0.9.0, matplotlib 3.1.0, python 3.7.3 on Mac OS X 10.14.5.</p>
0
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/mui-org/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">Tabs that receive the prop <code class="notranslate">centered</code> should always center.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">They remain left aligned if they are also set <code class="notranslate">scrollable</code>.</p> <h2 dir="auto">Steps to Reproduce</h2> <p dir="auto"><a href="https://codesandbox.io/s/kk371k1w75" rel="nofollow">https://codesandbox.io/s/kk371k1w75</a></p> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td><a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/next/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/next">@next</a></td> </tr> <tr> <td>React</td> <td>16.2.0</td> </tr> <tr> <td>browser</td> <td>chrome</td> </tr> </tbody> </table>
<p dir="auto">For example please see<br> <a href="https://material-ui.com/_next/cae6bd4a-2104-4ec9-8977-c6f7c8c4e44c/page/api/app-bar/index.js" rel="nofollow">https://material-ui.com/_next/cae6bd4a-2104-4ec9-8977-c6f7c8c4e44c/page/api/app-bar/index.js</a></p> <p dir="auto">Also page progress indicator at the top of the page never stops.</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul>
0
<h3 dir="auto">Version</h3> <p dir="auto">2.5.17</p> <h3 dir="auto">Reproduction link</h3> <p dir="auto"><a href="https://jsfiddle.net/truefusion/hLzg2w8b/" rel="nofollow">https://jsfiddle.net/truefusion/hLzg2w8b/</a></p> <h3 dir="auto">Steps to reproduce</h3> <p dir="auto">Extend an Array.<br> Instantiate the new class.<br> Assign it to a component property that is observable by Vue.<br> Access the property in the console.</p> <h3 dir="auto">What is expected?</h3> <p dir="auto">The reference to maintain its instantiated class.</p> <h3 dir="auto">What is actually happening?</h3> <p dir="auto">The instantiated class is mutated into a regular array.</p> <hr> <p dir="auto">Tested in latest version of Chrome. Not sure about the rest (but for my purposes the other browsers are irrelevant for my project).</p>
<h3 dir="auto">Version</h3> <p dir="auto">2.5.13</p> <h3 dir="auto">Reproduction link</h3> <p dir="auto"><a href="https://codepen.io/anon/pen/ppWdEX?editors=1010" rel="nofollow">https://codepen.io/anon/pen/ppWdEX?editors=1010</a></p> <h3 dir="auto">Steps to reproduce</h3> <p dir="auto">Seems that Vue doesn't consider what happens when a Vue component is mounted inside of a shadow root.</p> <p dir="auto">The component's style gets placed into the <code class="notranslate">&lt;head&gt;</code> of the web app, and therefore the style is not able to style the elements generated by the Vue component that are inside the shadow root.</p> <p dir="auto">Here's a reproduction:</p> <p dir="auto">This pen works:</p> <p dir="auto"><a href="https://codepen.io/saawsan/pen/jayzeq" rel="nofollow">https://codepen.io/saawsan/pen/jayzeq</a></p> <p dir="auto">and this one doesn't:</p> <p dir="auto"><a href="https://codepen.io/anon/pen/ppWdEX" rel="nofollow">https://codepen.io/anon/pen/ppWdEX</a></p> <p dir="auto">As you can see the app works (click the buttons) but nothing is styled.</p> <h3 dir="auto">What is expected?</h3> <p dir="auto">The app should be styled.</p> <h3 dir="auto">What is actually happening?</h3> <p dir="auto">It isn't because the styles are placed in the <code class="notranslate">&lt;head&gt;</code> and they don't propagate into the shadow root.</p> <hr> <p dir="auto">Is there a way to configure Vue to place the <code class="notranslate">&lt;style&gt;</code> element as a sibling of the rendered output, or somewhere else? I need the generated <code class="notranslate">style</code> to be placed inside the shadow root, otherwise it has no effect (<code class="notranslate">scoped</code> or not).</p>
0
<p dir="auto"><strong>Steps to reproduce</strong></p> <p dir="auto">Click Tray Icon -&gt; Settings<br> PowerToys "hangs" on start-up, UI doesn't even get rendered</p> <p dir="auto"><strong>Version</strong></p> <p dir="auto">PowerToysSetup-0.18.2-x64.msi<br> winver: Version 1903 (Build 18362.900)</p> <p dir="auto"><strong>Remediation</strong></p> <ul dir="auto"> <li>Uninstall + Install + Reboot didn't work</li> <li>Are there any logs I can send you?</li> </ul> <p dir="auto"><strong>Attachments</strong></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/541307/85110443-36b25100-b213-11ea-9167-3b20e6a85f26.png"><img src="https://user-images.githubusercontent.com/541307/85110443-36b25100-b213-11ea-9167-3b20e6a85f26.png" alt="image" style="max-width: 100%;"></a></p>
<h3 dir="auto">The "Window-Tiling" PowerToy</h3> <p dir="auto">Here's an idea, add the ability to tile windows automatically. What I mean by that is when a window would open, it'll cover the whole screen but when another window would open, it'll cover the half of the screen automatically and the first app would also resize to the half of the screen. If the third window opens it'll open below the second window, resizing the second window to half vertically. And the new window would take place under the second window.</p> <p dir="auto">It has been done before in some Linux window managers like "i3". And a lot of people really appreciate the ability to do that.</p> <h3 dir="auto">Concept Shots</h3> <p dir="auto">I've prepared some concept shots to show that:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/54409865/81105312-2f6a0900-8f2d-11ea-89be-db96ea9445ea.png"><img src="https://user-images.githubusercontent.com/54409865/81105312-2f6a0900-8f2d-11ea-89be-db96ea9445ea.png" alt="Surface Book - 1 (24)" style="max-width: 100%;"></a></p> <p dir="auto">In the image above, a single window is opened. When the user wants open another window, they would need to click the start button or hit the start key on the keyboard. The Start Menu would be replaced with Power Run. The user would be able to select the desired app by typing it's name and selecting one of the results by using the arrow keys. Or just type the name and hit enter</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/54409865/81105842-07c77080-8f2e-11ea-9275-3cc5536915f8.png"><img src="https://user-images.githubusercontent.com/54409865/81105842-07c77080-8f2e-11ea-9275-3cc5536915f8.png" alt="Surface Book - 3 (9)" style="max-width: 100%;"></a><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/54409865/81105857-0d24bb00-8f2e-11ea-9ad8-ed2addcef7b6.png"><img src="https://user-images.githubusercontent.com/54409865/81105857-0d24bb00-8f2e-11ea-9ad8-ed2addcef7b6.png" alt="Surface Book - 2 (17)" style="max-width: 100%;"></a></p> <p dir="auto">And when more than two apps are opened:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/54409865/81105885-1ada4080-8f2e-11ea-8985-545e3fc7ceb6.png"><img src="https://user-images.githubusercontent.com/54409865/81105885-1ada4080-8f2e-11ea-8985-545e3fc7ceb6.png" alt="Surface Book - 4 (4)" style="max-width: 100%;"></a></p> <p dir="auto">And when more than three apps are opened, the third app would be resized to half of it's size and the fourth window would appear in the empty space created by the third app.</p> <p dir="auto">There are better explanations of tiling window managers (than what I've done here) online</p> <h3 dir="auto">Conclusion</h3> <p dir="auto">The window tiling feature is inspired by some window managers in Linux (like i3). I think it'll help with productivity stuff. I've posted these concept shots on Twitter and many people wanted this feature to be in PowerToys. Maybe integrate it in FancyZones by adding a toggle for this feature. What do you think? :)</p>
1
<p dir="auto">Make sure these boxes are checked before submitting your issue - thank you!</p> <ul dir="auto"> <li>[yes] I have checked the superset logs for python stacktraces and included it here as text if any</li> <li>[yes] I have reproduced the issue with at least the latest released version of superset</li> <li>[ yes] I have checked the issue tracker for the same issue and I haven't found one similar</li> </ul> <h3 dir="auto">Superset version</h3> <p dir="auto">0.19.1</p> <h3 dir="auto">Expected results</h3> <p dir="auto">I'm trying to use mapbox with superset. I start with postgresql table and mapbox work well.<br> Now i save my data to druid datasource and get error below:</p> <h3 dir="auto">Actual results</h3> <p dir="auto">TypeError: &lt;superset.connectors.druid.models.DruidMetric object at 0x7744950&gt; is not JSON serializable</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last): File &quot;/usr/lib/python2.7/site-packages/superset/viz.py&quot;, line 249, in get_payload df = self.get_df() File &quot;/usr/lib/python2.7/site-packages/superset/viz.py&quot;, line 79, in get_df self.results = self.datasource.query(query_obj) File &quot;/usr/lib/python2.7/site-packages/superset/connectors/druid/models.py&quot;, line 971, in query client=client, query_obj=query_obj, phase=2) File &quot;/usr/lib/python2.7/site-packages/superset/connectors/druid/models.py&quot;, line 799, in get_query_str return self.run_query(client=client, phase=phase, **query_obj) File &quot;/usr/lib/python2.7/site-packages/superset/connectors/druid/models.py&quot;, line 962, in run_query client.groupby(**qry) File &quot;/usr/lib/python2.7/site-packages/pydruid/client.py&quot;, line 192, in groupby return self._post(query) File &quot;/usr/lib/python2.7/site-packages/pydruid/client.py&quot;, line 391, in _post headers, querystr, url = self._prepare_url_headers_and_body(query) File &quot;/usr/lib/python2.7/site-packages/pydruid/client.py&quot;, line 34, in _prepare_url_headers_and_body querystr = json.dumps(query.query_dict).encode('utf-8') File &quot;/usr/lib64/python2.7/json/__init__.py&quot;, line 243, in dumps return _default_encoder.encode(obj) File &quot;/usr/lib64/python2.7/json/encoder.py&quot;, line 207, in encode chunks = self.iterencode(o, _one_shot=True) File &quot;/usr/lib64/python2.7/json/encoder.py&quot;, line 270, in iterencode return _iterencode(o, 0) File &quot;/usr/lib64/python2.7/json/encoder.py&quot;, line 184, in default raise TypeError(repr(o) + &quot; is not JSON serializable&quot;) TypeError: &lt;superset.connectors.druid.models.DruidMetric object at 0x7744950&gt; is not JSON serializable "><pre class="notranslate"><code class="notranslate">Traceback (most recent call last): File "/usr/lib/python2.7/site-packages/superset/viz.py", line 249, in get_payload df = self.get_df() File "/usr/lib/python2.7/site-packages/superset/viz.py", line 79, in get_df self.results = self.datasource.query(query_obj) File "/usr/lib/python2.7/site-packages/superset/connectors/druid/models.py", line 971, in query client=client, query_obj=query_obj, phase=2) File "/usr/lib/python2.7/site-packages/superset/connectors/druid/models.py", line 799, in get_query_str return self.run_query(client=client, phase=phase, **query_obj) File "/usr/lib/python2.7/site-packages/superset/connectors/druid/models.py", line 962, in run_query client.groupby(**qry) File "/usr/lib/python2.7/site-packages/pydruid/client.py", line 192, in groupby return self._post(query) File "/usr/lib/python2.7/site-packages/pydruid/client.py", line 391, in _post headers, querystr, url = self._prepare_url_headers_and_body(query) File "/usr/lib/python2.7/site-packages/pydruid/client.py", line 34, in _prepare_url_headers_and_body querystr = json.dumps(query.query_dict).encode('utf-8') File "/usr/lib64/python2.7/json/__init__.py", line 243, in dumps return _default_encoder.encode(obj) File "/usr/lib64/python2.7/json/encoder.py", line 207, in encode chunks = self.iterencode(o, _one_shot=True) File "/usr/lib64/python2.7/json/encoder.py", line 270, in iterencode return _iterencode(o, 0) File "/usr/lib64/python2.7/json/encoder.py", line 184, in default raise TypeError(repr(o) + " is not JSON serializable") TypeError: &lt;superset.connectors.druid.models.DruidMetric object at 0x7744950&gt; is not JSON serializable </code></pre></div> <h3 dir="auto">Steps to reproduce</h3> <ul dir="auto"> <li>add datasource to druid (host String, lat Float, Long Float)</li> <li>Use superset mapbow</li> </ul>
<p dir="auto">Make sure these boxes are checked before submitting your issue - thank you!</p> <ul dir="auto"> <li>[yes ] I have checked the superset logs for python stacktraces and included it here as text if any</li> <li>[yes ] I have reproduced the issue with at least the latest released version of superset</li> <li>[yes ] I have checked the issue tracker for the same issue and I haven't found one similar</li> </ul> <h3 dir="auto">Superset version</h3> <p dir="auto">0.19.1</p> <h3 dir="auto">Expected results</h3> <p dir="auto">I try to draw mapbox in superset. I have dataset with column Latitude and Longitude and use it in respective field.</p> <h3 dir="auto">Actual results</h3> <p dir="auto">TypeError: &lt;superset.connectors.druid.models.DruidMetric object at 0xefbea90&gt; is not JSON serializable</p> <h3 dir="auto">Steps to reproduce</h3> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/13684386/31226202-8d89286c-a9d5-11e7-8d8b-eb7e9d6c4d77.png"><img src="https://user-images.githubusercontent.com/13684386/31226202-8d89286c-a9d5-11e7-8d8b-eb7e9d6c4d77.png" alt="togithub" style="max-width: 100%;"></a></p> <p dir="auto">Anyone already have the same problem?<br> Thanks</p>
1
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=setya" rel="nofollow">Setya Nugroho D</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-8502?redirect=false" rel="nofollow">SPR-8502</a></strong> and commented</p> <p dir="auto">To reproduce the problem, just run 'TestServiceInjection.java' unit test in the Eclipse project attachment to make it failed, then comment out method 'someMethod' in the test to make it passed.</p> <hr> <p dir="auto"><strong>Affects:</strong> 3.0.5, 3.1 M2</p> <p dir="auto"><strong>Reference URL:</strong> <a href="http://forum.springsource.org/showthread.php?110338-Strange-problem-with-Configurable" rel="nofollow">http://forum.springsource.org/showthread.php?110338-Strange-problem-with-Configurable</a></p> <p dir="auto"><strong>Attachments:</strong></p> <ul dir="auto"> <li><a href="https://jira.spring.io/secure/attachment/18405/configurable.tar.bz2" rel="nofollow">configurable.tar.bz2</a> (<em>3.35 MB</em>)</li> <li><a href="https://jira.spring.io/secure/attachment/18413/log_when_test_fails.log" rel="nofollow">log_when_test_fails.log</a> (<em>78.16 kB</em>)</li> <li><a href="https://jira.spring.io/secure/attachment/18414/log_when_test_passes.log" rel="nofollow">log_when_test_passes.log</a> (<em>78.28 kB</em>)</li> </ul> <p dir="auto"><strong>Issue Links:</strong></p> <ul dir="auto"> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398113467" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13167" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13167/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13167">#13167</a> <code class="notranslate">@Entity</code> objects are not enhanced by the load time weaver in certain situations</li> </ul> <p dir="auto">2 votes, 4 watchers</p>
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=jtravis" rel="nofollow">Jon Travis</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-7422?redirect=false" rel="nofollow">SPR-7422</a></strong> and commented</p> <p dir="auto">Section 3.13.2 (Standard and Custom Events) of the reference manual is out of date wrt best practices.</p> <ul dir="auto"> <li>It does not talk about using ApplicationListener&lt;T&gt; with a type argument, thus removing instanceof checks in the event callback</li> <li>It does not espouse the use of ApplicationEventPublisher and ApplicationEventPublisherAware</li> </ul> <p dir="auto">In both cases, the javadoc for the corresponding bits is correct and up-to-date, it simply needs to be referenced in the manual.</p> <hr> <p dir="auto"><strong>Affects:</strong> 3.0 GA</p> <p dir="auto"><strong>Issue Links:</strong></p> <ul dir="auto"> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398106380" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12053" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12053/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12053">#12053</a> Document generic use of ApplicationListener interface (<em><strong>"is duplicated by"</strong></em>)</li> </ul> <p dir="auto"><strong>Referenced from:</strong> commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/9008cf907ae2d537cc65640a79f0834823f113fb/hovercard" href="https://github.com/spring-projects/spring-framework/commit/9008cf907ae2d537cc65640a79f0834823f113fb"><tt>9008cf9</tt></a></p>
0
<p dir="auto">Error messages use <code class="notranslate">_</code> a lot but it's meaning is never explained. This could be improved.</p> <p dir="auto"><a href="http://is.gd/T4XGJW" rel="nofollow">Playpen</a></p> <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="fn test(o: Option&lt;i32&gt;) {} fn main() { let i = 7; test(i); }"><pre class="notranslate"><span class="pl-k">fn</span> <span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-s1">o</span><span class="pl-kos">:</span> <span class="pl-smi">Option</span><span class="pl-kos">&lt;</span><span class="pl-smi">i32</span><span class="pl-kos">&gt;</span><span class="pl-kos">)</span> <span class="pl-kos">{</span><span class="pl-kos">}</span> <span class="pl-k">fn</span> <span class="pl-en">main</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">let</span> i = <span class="pl-c1">7</span><span class="pl-kos">;</span> <span class="pl-en">test</span><span class="pl-kos">(</span>i<span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">Error:</p> <div class="highlight highlight-source-batchfile notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// What is `_` supposed to mean? Apparently integral value but it still seems meaningless... ... error ... expected `core::option::Option&lt;i32&gt;`, found `_` ... found integral variable) &lt;anon&gt;:5 test(i); ^ error: aborting due to previous error"><pre class="notranslate">// What is `_` supposed to mean? Apparently integral value but it still seems meaningless... ... error ... expected `core::option::Option<span class="pl-k">&lt;</span>i32<span class="pl-k">&gt;</span>`, found `_` ... found integral variable) <span class="pl-k">&lt;</span>anon<span class="pl-k">&gt;</span>:5 test(i); <span class="pl-cce">^</span> error: aborting due to previous error</pre></div> <hr> <p dir="auto">6/8/2017: updated error message:</p> <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="error[E0308]: mismatched types --&gt; &lt;anon&gt;:5:10 | 5 | test(i); | ^ expected enum `std::option::Option`, found integral variable | = note: expected type `std::option::Option&lt;i32&gt;` found type `{integer}` error: aborting due to previous error"><pre class="notranslate">error<span class="pl-kos">[</span><span class="pl-v">E0308</span><span class="pl-kos">]</span><span class="pl-kos">:</span> mismatched types --&gt; &lt;anon&gt;<span class="pl-kos">:</span><span class="pl-c1">5</span><span class="pl-kos">:</span><span class="pl-c1">10</span> | <span class="pl-c1">5</span> | <span class="pl-en">test</span><span class="pl-kos">(</span>i<span class="pl-kos">)</span><span class="pl-kos">;</span> | ^ expected enum `std<span class="pl-kos">::</span>option<span class="pl-kos">::</span><span class="pl-v">Option</span>`<span class="pl-kos">,</span> found integral variable | = note<span class="pl-kos">:</span> expected type `std<span class="pl-kos">::</span>option<span class="pl-kos">::</span><span class="pl-v">Option</span>&lt;i32&gt;` <span class="pl-smi">found</span> type `<span class="pl-kos">{</span>integer<span class="pl-kos">}</span>` error<span class="pl-kos">:</span> aborting due to previous error</pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="fn main() { let a = Vec::new(); }"><pre class="notranslate"><code class="notranslate">fn main() { let a = Vec::new(); } </code></pre></div> <p dir="auto">Gives me:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;anon&gt;:2:13: 2:21 error: unable to infer enough type information about `_`; type annotations required [E0282] &lt;anon&gt;:2 let a = Vec::new(); ^~~~~~~~"><pre class="notranslate"><code class="notranslate">&lt;anon&gt;:2:13: 2:21 error: unable to infer enough type information about `_`; type annotations required [E0282] &lt;anon&gt;:2 let a = Vec::new(); ^~~~~~~~ </code></pre></div> <p dir="auto">This is confusing because it doesn't say what the <code class="notranslate">_</code> is that it can't figure out. Perhaps it could say something like:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Only able to infer that `a` has type `Vec&lt;_&gt;`; please annotate so I can figure out what `_` is."><pre class="notranslate"><code class="notranslate">Only able to infer that `a` has type `Vec&lt;_&gt;`; please annotate so I can figure out what `_` is. </code></pre></div>
1
<p dir="auto">Rust and cargo installed nicely today on my raspberry pi 4, but running the build script for deno resulted in</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error: failed to add native library /tmp/cargo-installYJydOT/release/gn_out/obj/librusty_v8.a: file too small to be an archive error: aborting due to previous error error: could not compile `rusty_v8` To learn more, run the command again with --verbose. warning: build failed, waiting for other jobs to finish... error: failed to add native library /tmp/cargo-installYJydOT/release/gn_out/obj/librusty_v8.a: file too small to be an archive error: aborting due to previous error error: failed to compile `deno v1.10.3`, intermediate artifacts can be found at `/tmp/cargo-installYJydOT` Caused by: build failed"><pre lang="Compiling" class="notranslate"><code class="notranslate">error: failed to add native library /tmp/cargo-installYJydOT/release/gn_out/obj/librusty_v8.a: file too small to be an archive error: aborting due to previous error error: could not compile `rusty_v8` To learn more, run the command again with --verbose. warning: build failed, waiting for other jobs to finish... error: failed to add native library /tmp/cargo-installYJydOT/release/gn_out/obj/librusty_v8.a: file too small to be an archive error: aborting due to previous error error: failed to compile `deno v1.10.3`, intermediate artifacts can be found at `/tmp/cargo-installYJydOT` Caused by: build failed </code></pre></div>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/16653067/89497299-ad160d00-d7d9-11ea-9eb8-ad5c0b8d59e8.png"><img width="1920" alt="Screenshot 2020-08-06 at 11 39 22 AM" src="https://user-images.githubusercontent.com/16653067/89497299-ad160d00-d7d9-11ea-9eb8-ad5c0b8d59e8.png" style="max-width: 100%;"></a></p> <p dir="auto">I suppose there should be a <strong>next</strong> link</p>
0
<hr> <h3 dir="auto">System information</h3> <ul dir="auto"> <li><strong>Have I written custom code (as opposed to using a stock example script provided in TensorFlow)</strong>: No</li> <li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04)</strong>:<br> Windows 10</li> <li><strong>Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device</strong>:</li> <li><strong>TensorFlow installed from (source or binary)</strong>:<br> Source</li> <li><strong>TensorFlow version (use command below)</strong>:<br> 1.10</li> <li><strong>Python version</strong>:<br> 3.6.2</li> </ul> <p dir="auto">Tensorflow CPU</p> <h3 dir="auto">Describe the problem</h3> <p dir="auto">whenever trying to import tensorflow i get this error.(ImportError: DLL load failed: A dynamic link library (DLL) initialization routine failed.)</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; import tensorflow as tf Traceback (most recent call last): File &quot;C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py&quot;, line 14, in swig_import_helper return importlib.import_module(mname) File &quot;C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\importlib\__init__.py&quot;, line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 978, in _gcd_import File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 961, in _find_and_load File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 950, in _find_and_load_unlocked File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 648, in _load_unlocked File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 560, in module_from_spec File &quot;&lt;frozen importlib._bootstrap_external&gt;&quot;, line 922, in create_module File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 205, in _call_with_frames_removed ImportError: DLL load failed: A dynamic link library (DLL) initialization routine failed. During handling of the above exception, another exception occurred: Traceback (most recent call last): File &quot;C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py&quot;, line 58, in &lt;module&gt; from tensorflow.python.pywrap_tensorflow_internal import * File &quot;C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py&quot;, line 17, in &lt;module&gt; _pywrap_tensorflow_internal = swig_import_helper() File &quot;C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py&quot;, line 16, in swig_import_helper return importlib.import_module('_pywrap_tensorflow_internal') File &quot;C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\importlib\__init__.py&quot;, line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) ModuleNotFoundError: No module named '_pywrap_tensorflow_internal' During handling of the above exception, another exception occurred: Traceback (most recent call last): File &quot;&lt;stdin&gt;&quot;, line 1, in &lt;module&gt; File &quot;C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\__init__.py&quot;, line 22, in &lt;module&gt; from tensorflow.python import pywrap_tensorflow # pylint: disable=unused-import File &quot;C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\__init__.py&quot;, line 49, in &lt;module&gt; from tensorflow.python import pywrap_tensorflow File &quot;C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py&quot;, line 74, in &lt;module&gt; raise ImportError(msg) ImportError: Traceback (most recent call last): File &quot;C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py&quot;, line 14, in swig_import_helper return importlib.import_module(mname) File &quot;C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\importlib\__init__.py&quot;, line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 978, in _gcd_import File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 961, in _find_and_load File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 950, in _find_and_load_unlocked File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 648, in _load_unlocked File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 560, in module_from_spec File &quot;&lt;frozen importlib._bootstrap_external&gt;&quot;, line 922, in create_module File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 205, in _call_with_frames_removed ImportError: DLL load failed: A dynamic link library (DLL) initialization routine failed. During handling of the above exception, another exception occurred: Traceback (most recent call last): File &quot;C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py&quot;, line 58, in &lt;module&gt; from tensorflow.python.pywrap_tensorflow_internal import * File &quot;C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py&quot;, line 17, in &lt;module&gt; _pywrap_tensorflow_internal = swig_import_helper() File &quot;C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py&quot;, line 16, in swig_import_helper return importlib.import_module('_pywrap_tensorflow_internal') File &quot;C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\importlib\__init__.py&quot;, line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) ModuleNotFoundError: No module named '_pywrap_tensorflow_internal' Failed to load the native TensorFlow runtime. See https://www.tensorflow.org/install/install_sources#common_installation_problems"><pre class="notranslate"><code class="notranslate">&gt;&gt;&gt; import tensorflow as tf Traceback (most recent call last): File "C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 14, in swig_import_helper return importlib.import_module(mname) File "C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\importlib\__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "&lt;frozen importlib._bootstrap&gt;", line 978, in _gcd_import File "&lt;frozen importlib._bootstrap&gt;", line 961, in _find_and_load File "&lt;frozen importlib._bootstrap&gt;", line 950, in _find_and_load_unlocked File "&lt;frozen importlib._bootstrap&gt;", line 648, in _load_unlocked File "&lt;frozen importlib._bootstrap&gt;", line 560, in module_from_spec File "&lt;frozen importlib._bootstrap_external&gt;", line 922, in create_module File "&lt;frozen importlib._bootstrap&gt;", line 205, in _call_with_frames_removed ImportError: DLL load failed: A dynamic link library (DLL) initialization routine failed. During handling of the above exception, another exception occurred: Traceback (most recent call last): File "C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in &lt;module&gt; from tensorflow.python.pywrap_tensorflow_internal import * File "C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 17, in &lt;module&gt; _pywrap_tensorflow_internal = swig_import_helper() File "C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 16, in swig_import_helper return importlib.import_module('_pywrap_tensorflow_internal') File "C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\importlib\__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) ModuleNotFoundError: No module named '_pywrap_tensorflow_internal' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in &lt;module&gt; File "C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\__init__.py", line 22, in &lt;module&gt; from tensorflow.python import pywrap_tensorflow # pylint: disable=unused-import File "C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\__init__.py", line 49, in &lt;module&gt; from tensorflow.python import pywrap_tensorflow File "C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 74, in &lt;module&gt; raise ImportError(msg) ImportError: Traceback (most recent call last): File "C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 14, in swig_import_helper return importlib.import_module(mname) File "C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\importlib\__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "&lt;frozen importlib._bootstrap&gt;", line 978, in _gcd_import File "&lt;frozen importlib._bootstrap&gt;", line 961, in _find_and_load File "&lt;frozen importlib._bootstrap&gt;", line 950, in _find_and_load_unlocked File "&lt;frozen importlib._bootstrap&gt;", line 648, in _load_unlocked File "&lt;frozen importlib._bootstrap&gt;", line 560, in module_from_spec File "&lt;frozen importlib._bootstrap_external&gt;", line 922, in create_module File "&lt;frozen importlib._bootstrap&gt;", line 205, in _call_with_frames_removed ImportError: DLL load failed: A dynamic link library (DLL) initialization routine failed. During handling of the above exception, another exception occurred: Traceback (most recent call last): File "C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in &lt;module&gt; from tensorflow.python.pywrap_tensorflow_internal import * File "C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 17, in &lt;module&gt; _pywrap_tensorflow_internal = swig_import_helper() File "C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 16, in swig_import_helper return importlib.import_module('_pywrap_tensorflow_internal') File "C:\Users\Cesar\AppData\Local\Programs\Python\Python36\lib\importlib\__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) ModuleNotFoundError: No module named '_pywrap_tensorflow_internal' Failed to load the native TensorFlow runtime. See https://www.tensorflow.org/install/install_sources#common_installation_problems </code></pre></div> <p dir="auto">I know this problem has to do with the windows installation, some problem with the visual c++ compiler 2015 update 3.<br> The thing is i have them already and it doesnt work. I have tried using an Anaconda enviorment and it didnt work neither whe i used pip3 install --upgrade tensorflow there. But, when i install with the conda installer (conda install tensorflow) it worked perfectly.</p> <p dir="auto">So i assume the problem has to do with some path or something like that in my native enviorment. But i dont have a clue...</p>
<p dir="auto">As announced in release notes, TensorFlow release binaries version 1.6 and higher are prebuilt with AVX instruction sets. This means on any CPU that do not have these instruction sets either CPU or GPU version of TF will fail to load with any of the following errors:</p> <ul dir="auto"> <li><code class="notranslate">ImportError: DLL load failed:</code></li> <li>A crash with return code 132</li> </ul> <p dir="auto">Our recommendation is to build TF from sources on these systems.</p> <h3 dir="auto">System information</h3> <ul dir="auto"> <li><strong>Have I written custom code (as opposed to using a stock example script provided in TensorFlow)</strong>: No</li> <li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04)</strong>: ubuntu/windows/macos</li> <li><strong>TensorFlow installed from (source or binary)</strong>: binary</li> <li><strong>TensorFlow version (use command below)</strong>: 1.6 and up</li> <li><strong>Python version</strong>: 2.7, 3.3, 3.4, 3.5, 3.6 and any newer</li> <li><strong>Bazel version (if compiling from source)</strong>: n/a</li> <li><strong>GCC/Compiler version (if compiling from source)</strong>: n/a</li> <li><strong>CUDA/cuDNN version</strong>: any</li> <li><strong>GPU model and memory</strong>: any</li> <li><strong>Exact command to reproduce</strong>: python -c "import tensorflow as tf"</li> </ul>
1