text1
stringlengths
0
536k
text2
stringlengths
0
536k
label
int64
0
1
<p dir="auto">I tried to recreate this example to add off diagonal lines to a pairplot: <a href="https://stackoverflow.com/a/48122198/4464887" rel="nofollow">https://stackoverflow.com/a/48122198/4464887</a></p> <p dir="auto">The code is:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import seaborn as sns import numpy as np import matplotlib.pyplot as plt def plot_unity(xdata, ydata, **kwargs): mn = min(xdata.min(), ydata.min()) mx = max(xdata.max(), ydata.max()) points = np.linspace(mn, mx, 100) plt.gca().plot(points, points, color='k', marker=None, linestyle='--', linewidth=1.0) ds = sns.load_dataset('iris') grid = sns.pairplot(ds) grid.map_offdiag(plot_unity) plt.savefig('test.png')"><pre class="notranslate"><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-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">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span> <span class="pl-k">def</span> <span class="pl-en">plot_unity</span>(<span class="pl-s1">xdata</span>, <span class="pl-s1">ydata</span>, <span class="pl-c1">**</span><span class="pl-s1">kwargs</span>): <span class="pl-s1">mn</span> <span class="pl-c1">=</span> <span class="pl-en">min</span>(<span class="pl-s1">xdata</span>.<span class="pl-en">min</span>(), <span class="pl-s1">ydata</span>.<span class="pl-en">min</span>()) <span class="pl-s1">mx</span> <span class="pl-c1">=</span> <span class="pl-en">max</span>(<span class="pl-s1">xdata</span>.<span class="pl-en">max</span>(), <span class="pl-s1">ydata</span>.<span class="pl-en">max</span>()) <span class="pl-s1">points</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">linspace</span>(<span class="pl-s1">mn</span>, <span class="pl-s1">mx</span>, <span class="pl-c1">100</span>) <span class="pl-s1">plt</span>.<span class="pl-en">gca</span>().<span class="pl-en">plot</span>(<span class="pl-s1">points</span>, <span class="pl-s1">points</span>, <span class="pl-s1">color</span><span class="pl-c1">=</span><span class="pl-s">'k'</span>, <span class="pl-s1">marker</span><span class="pl-c1">=</span><span class="pl-c1">None</span>, <span class="pl-s1">linestyle</span><span class="pl-c1">=</span><span class="pl-s">'--'</span>, <span class="pl-s1">linewidth</span><span class="pl-c1">=</span><span class="pl-c1">1.0</span>) <span class="pl-s1">ds</span> <span class="pl-c1">=</span> <span class="pl-s1">sns</span>.<span class="pl-en">load_dataset</span>(<span class="pl-s">'iris'</span>) <span class="pl-s1">grid</span> <span class="pl-c1">=</span> <span class="pl-s1">sns</span>.<span class="pl-en">pairplot</span>(<span class="pl-s1">ds</span>) <span class="pl-s1">grid</span>.<span class="pl-en">map_offdiag</span>(<span class="pl-s1">plot_unity</span>) <span class="pl-s1">plt</span>.<span class="pl-en">savefig</span>(<span class="pl-s">'test.png'</span>)</pre></div> <p dir="auto">But the image produced doesn't show the off-diagonal lines present in the linked answer:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/6620652/97183604-e2f1de80-1795-11eb-96fe-5c7cc47c8296.png"><img src="https://user-images.githubusercontent.com/6620652/97183604-e2f1de80-1795-11eb-96fe-5c7cc47c8296.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">Package versions are the latest releases:<br> Matplotlib 3.3.2<br> seaborn 0.11.0<br> Python 3.6.5</p> <p dir="auto">I am running on Windows and get the same output from the REPL, iPython and Jupyter Lab.</p> <p dir="auto">Thanks for a great library!</p>
<p dir="auto">Hi,</p> <p dir="auto">I discovered that the map_* methods of PairGrid seem to be broken in version 0.11.0 for user defined functions. See reproducible example below with a corrfunc defined to plot the pearson correlation value on the lower plots. The function doesn't seem to get evaluated in version 0.11.0. When I pip install seaborn==0.10.1, I get the desired result. Plots from both cases also attached.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from scipy import stats import pandas as pd import seaborn as sns import matplotlib.pyplot as plt sns.set(style=&quot;white&quot;) mean = np.zeros(3) cov = np.random.uniform(.2, .4, (3, 3)) cov += cov.T cov[np.diag_indices(3)] = 1 data = np.random.multivariate_normal(mean, cov, 100) df = pd.DataFrame(data, columns=[&quot;X&quot;, &quot;Y&quot;, &quot;Z&quot;]) def corrfunc(x, y,**kws): r, _ = stats.pearsonr(x, y) ax = plt.gca() ax.annotate(&quot;r = {:.2f}&quot;.format(r), xy=(.1, .9), xycoords=ax.transAxes) g = sns.PairGrid(df, palette=[&quot;red&quot;]) g.map_upper(plt.scatter, s=10) g.map_diag(sns.distplot, kde=False) g.map_lower(sns.kdeplot, cmap=&quot;Blues_d&quot;) g.map_lower(corrfunc) plt.show() "><pre lang="import" class="notranslate"><code class="notranslate">from scipy import stats import pandas as pd import seaborn as sns import matplotlib.pyplot as plt sns.set(style="white") mean = np.zeros(3) cov = np.random.uniform(.2, .4, (3, 3)) cov += cov.T cov[np.diag_indices(3)] = 1 data = np.random.multivariate_normal(mean, cov, 100) df = pd.DataFrame(data, columns=["X", "Y", "Z"]) def corrfunc(x, y,**kws): r, _ = stats.pearsonr(x, y) ax = plt.gca() ax.annotate("r = {:.2f}".format(r), xy=(.1, .9), xycoords=ax.transAxes) g = sns.PairGrid(df, palette=["red"]) g.map_upper(plt.scatter, s=10) g.map_diag(sns.distplot, kde=False) g.map_lower(sns.kdeplot, cmap="Blues_d") g.map_lower(corrfunc) plt.show() </code></pre></div> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/3239171/94969718-380d3e00-04d1-11eb-821b-9aad80ec696e.png"><img src="https://user-images.githubusercontent.com/3239171/94969718-380d3e00-04d1-11eb-821b-9aad80ec696e.png" alt="seaborn-0-11-0" style="max-width: 100%;"></a></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/3239171/94969722-3a6f9800-04d1-11eb-8ef1-861d9beb1f26.png"><img src="https://user-images.githubusercontent.com/3239171/94969722-3a6f9800-04d1-11eb-8ef1-861d9beb1f26.png" alt="seaborn-0-10-1" style="max-width: 100%;"></a></p>
1
<h2 dir="auto">Feature request</h2> <p dir="auto"><g-emoji class="g-emoji" alias="wave" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f44b.png">👋</g-emoji> I'm a developer who's been working on <a href="https://nodejs.medium.com/source-maps-in-node-js-482872b56116" rel="nofollow">adding source map support</a> to Node.js stack traces.</p> <p dir="auto">I've noticed that webpack's source maps use special pseudo paths, which look something like this:</p> <p dir="auto"><strong>webpack:///./index.js</strong></p> <p dir="auto">When these source maps are loaded in Node.js, it's difficult to know what path <code class="notranslate">./index.js</code> should be resolved relative to. The specification indictes:</p> <blockquote> <p dir="auto">the sources are resolved relative to the SourceMap (like resolving script src in a html document).</p> </blockquote> <p dir="auto">Which to me would suggest <code class="notranslate">dist/index.js</code>, vs., the sources's actual location <code class="notranslate">dist/../index.js</code>.</p> <p dir="auto"><strong>What is the expected behavior?</strong></p> <p dir="auto">It would be nice to be able to read a variable like <code class="notranslate">sourceRoot</code>, to determine the root path of the JavaScript file prior to transpilation.</p> <p dir="auto"><strong>What is motivation or use case for adding/changing the behavior?</strong></p> <p dir="auto">Folks use webpack to create bundles of Node.js applications that are run outside of the browser, it would be nice for these people to have accurate stack traces.</p> <p dir="auto"><strong>How should this be implemented in your opinion?</strong></p> <p dir="auto">When specifying <code class="notranslate">--target node</code>, it would be useful if source paths either did not use the <code class="notranslate">webpack://</code> pseudo path, or if the <code class="notranslate">sourceRoot</code> variable was populated (<em>populating <code class="notranslate">sourceRoot</code> would potentially break other implementations reading the sourceMap</em>).</p> <p dir="auto"><strong>Are you willing to work on this yourself?</strong></p> <p dir="auto">yes</p> <p dir="auto">Refs: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="707849640" data-permission-text="Title is private" data-url="https://github.com/nodejs/node/issues/35325" data-hovercard-type="issue" data-hovercard-url="/nodejs/node/issues/35325/hovercard" href="https://github.com/nodejs/node/issues/35325">nodejs/node#35325</a></p>
<h2 dir="auto">Feature request</h2> <p dir="auto"><strong>What is the expected behavior?</strong><br> Expected compiled code Use Directly native es6 module</p> <p dir="auto"><strong>What is motivation or use case for adding/changing the behavior?</strong></p> <p dir="auto">Because the browser environment supports</p> <p dir="auto"><strong>How should this be implemented in your opinion?</strong><br> add a option</p> <p dir="auto"><strong>Are you willing to work on this yourself?</strong><br> yes</p>
0
<h4 dir="auto">Challenge Name</h4> <p dir="auto">Clone an Element Using jQuery<br> <a href="https://www.freecodecamp.com/challenges/clone-an-element-using-jquery" rel="nofollow">https://www.freecodecamp.com/challenges/clone-an-element-using-jquery</a></p> <h4 dir="auto">Issue Description</h4> <h4 dir="auto">Browser Information</h4> <ul dir="auto"> <li>Browser Name, Version: 360 Safe Browser</li> <li>Operating System: Windows 7</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=" &lt;script&gt; $(document).ready(function() { $(&quot;#target1&quot;).css(&quot;color&quot;, &quot;red&quot;); $(&quot;#target1&quot;).prop(&quot;disabled&quot;, true); $(&quot;#target4&quot;).remove(); $(&quot;#target2&quot;).appendTo(&quot;#right-well&quot;); $(&quot;#target5&quot;).clone().appendTo(&quot;#left-well&quot;); }); &lt;/script&gt; &lt;!-- Only change code above this line. --&gt; &lt;div class=&quot;container-fluid&quot;&gt; &lt;h3 class=&quot;text-primary text-center&quot;&gt;jQuery Playground&lt;/h3&gt; &lt;div class=&quot;row&quot;&gt; &lt;div class=&quot;col-xs-6&quot;&gt; &lt;h4&gt;#left-well&lt;/h4&gt; &lt;div class=&quot;well&quot; id=&quot;left-well&quot;&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target1&quot;&gt;#target1&lt;/button&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target2&quot;&gt;#target2&lt;/button&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target3&quot;&gt;#target3&lt;/button&gt; &lt;/div&gt; &lt;/div&gt; &lt;div class=&quot;col-xs-6&quot;&gt; &lt;h4&gt;#right-well&lt;/h4&gt; &lt;div class=&quot;well&quot; id=&quot;right-well&quot;&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target4&quot;&gt;#target4&lt;/button&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target5&quot;&gt;#target5&lt;/button&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target6&quot;&gt;#target6&lt;/button&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; "><pre class="notranslate"> <span class="pl-c1">&lt;</span><span class="pl-ent">script</span><span class="pl-c1">&gt;</span> $(document).ready(function() <span class="pl-kos">{</span> <span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target1"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">css</span><span class="pl-kos">(</span><span class="pl-s">"color"</span><span class="pl-kos">,</span> <span class="pl-s">"red"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target1"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">prop</span><span class="pl-kos">(</span><span class="pl-s">"disabled"</span><span class="pl-kos">,</span> <span class="pl-c1">true</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target4"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">remove</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target2"</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">"#right-well"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target5"</span><span class="pl-kos">)</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">appendTo</span><span class="pl-kos">(</span><span class="pl-s">"#left-well"</span><span class="pl-kos">)</span><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">script</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-c1">!</span><span class="pl-c1">--</span> <span class="pl-v">Only</span> <span class="pl-s1">change</span> <span class="pl-s1">code</span> <span class="pl-s1">above</span> <span class="pl-s1">this</span> <span class="pl-s1">line</span><span class="pl-kos">.</span> <span class="pl-c1">--</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span><span class="pl-c1">=</span><span class="pl-s">"container-fluid"</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">h3</span> <span class="pl-c1">class</span><span class="pl-c1">=</span><span class="pl-s">"text-primary text-center"</span><span class="pl-c1">&gt;</span>jQuery Playground<span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">h3</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span><span class="pl-c1">=</span><span class="pl-s">"row"</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span><span class="pl-c1">=</span><span class="pl-s">"col-xs-6"</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">h4</span><span class="pl-c1">&gt;</span>#left-well<span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">h4</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span><span class="pl-c1">=</span><span class="pl-s">"well"</span> <span class="pl-c1">id</span><span class="pl-c1">=</span><span class="pl-s">"left-well"</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span><span class="pl-c1">=</span><span class="pl-s">"btn btn-default target"</span> <span class="pl-c1">id</span><span class="pl-c1">=</span><span class="pl-s">"target1"</span><span class="pl-c1">&gt;</span>#target1<span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">button</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span><span class="pl-c1">=</span><span class="pl-s">"btn btn-default target"</span> <span class="pl-c1">id</span><span class="pl-c1">=</span><span class="pl-s">"target2"</span><span class="pl-c1">&gt;</span>#target2<span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">button</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span><span class="pl-c1">=</span><span class="pl-s">"btn btn-default target"</span> <span class="pl-c1">id</span><span class="pl-c1">=</span><span class="pl-s">"target3"</span><span class="pl-c1">&gt;</span>#target3<span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">button</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">div</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">div</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span><span class="pl-c1">=</span><span class="pl-s">"col-xs-6"</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">h4</span><span class="pl-c1">&gt;</span>#right-well<span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">h4</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span><span class="pl-c1">=</span><span class="pl-s">"well"</span> <span class="pl-c1">id</span><span class="pl-c1">=</span><span class="pl-s">"right-well"</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span><span class="pl-c1">=</span><span class="pl-s">"btn btn-default target"</span> <span class="pl-c1">id</span><span class="pl-c1">=</span><span class="pl-s">"target4"</span><span class="pl-c1">&gt;</span>#target4<span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">button</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span><span class="pl-c1">=</span><span class="pl-s">"btn btn-default target"</span> <span class="pl-c1">id</span><span class="pl-c1">=</span><span class="pl-s">"target5"</span><span class="pl-c1">&gt;</span>#target5<span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">button</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span><span class="pl-c1">=</span><span class="pl-s">"btn btn-default target"</span> <span class="pl-c1">id</span><span class="pl-c1">=</span><span class="pl-s">"target6"</span><span class="pl-c1">&gt;</span>#target6<span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">button</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">div</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">div</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">div</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">div</span><span class="pl-c1">&gt;</span> </pre></div> <h4 dir="auto">Screenshot</h4> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/12369807/18089169/241193ee-6ef1-11e6-859b-80acee52ef18.png"><img src="https://cloud.githubusercontent.com/assets/12369807/18089169/241193ee-6ef1-11e6-859b-80acee52ef18.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-clone-an-element-using-jquery#?solution=fccss%0A%20%20%24%28document%29.ready%28function%28%29%20%7B%0A%20%20%20%20%24%28%22%23target1%22%29.css%28%22color%22%2C%20%22red%22%29%3B%0A%20%20%20%20%24%28%22%23target1%22%29.prop%28%22disabled%22%2C%20true%29%3B%0A%20%20%20%20%24%28%22%23target4%22%29.remove%28%29%3B%0A%20%20%20%20%24%28%22%23target2%22%29.appendTo%28%22%23right-well%22%29%3B%0A%20%20%20%20%24%28%22%23target5%22%29.clone%28%29.appendTo%28%22%23left-well%22%29%3B%0A%20%20%7D%29%3B%0Afcces%0A%0A%3C!--%20Only%20change%20code%20above%20this%20line.%20--%3E%0A%0A%3Cdiv%20class%3D%22container-fluid%22%3E%0A%20%20%3Ch3%20class%3D%22text-primary%20text-center%22%3EjQuery%20Playground%3C%2Fh3%3E%0A%20%20%3Cdiv%20class%3D%22row%22%3E%0A%20%20%20%20%3Cdiv%20class%3D%22col-xs-6%22%3E%0A%20%20%20%20%20%20%3Ch4%3E%23left-well%3C%2Fh4%3E%0A%20%20%20%20%20%20%3Cdiv%20class%3D%22well%22%20id%3D%22left-well%22%3E%0A%20%20%20%20%20%20%20%20%3Cbutton%20class%3D%22btn%20btn-default%20target%22%20id%3D%22target1%22%3E%23target1%3C%2Fbutton%3E%0A%20%20%20%20%20%20%20%20%3Cbutton%20class%3D%22btn%20btn-default%20target%22%20id%3D%22target2%22%3E%23target2%3C%2Fbutton%3E%0A%20%20%20%20%20%20%20%20%3Cbutton%20class%3D%22btn%20btn-default%20target%22%20id%3D%22target3%22%3E%23target3%3C%2Fbutton%3E%0A%20%20%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%3Cdiv%20class%3D%22col-xs-6%22%3E%0A%20%20%20%20%20%20%3Ch4%3E%23right-well%3C%2Fh4%3E%0A%20%20%20%20%20%20%3Cdiv%20class%3D%22well%22%20id%3D%22right-well%22%3E%0A%20%20%20%20%20%20%20%20%3Cbutton%20class%3D%22btn%20btn-default%20target%22%20id%3D%22target4%22%3E%23target4%3C%2Fbutton%3E%0A%20%20%20%20%20%20%20%20%3Cbutton%20class%3D%22btn%20btn-default%20target%22%20id%3D%22target5%22%3E%23target5%3C%2Fbutton%3E%0A%20%20%20%20%20%20%20%20%3Cbutton%20class%3D%22btn%20btn-default%20target%22%20id%3D%22target6%22%3E%23target6%3C%2Fbutton%3E%0A%20%20%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%3C%2Fdiv%3E%0A%20%20%3C%2Fdiv%3E%0A%3C%2Fdiv%3E%0A" rel="nofollow">Waypoint: Clone an Element Using jQuery</a> has an issue.<br> User Agent is: <code class="notranslate">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36</code>.<br> Please describe how to reproduce this issue, and include links to screenshots if possible.</p> <h2 dir="auto">Issue</h2> <p dir="auto">I believe I've found bug in the phone simulation in <strong>Waypoint: Clone an Element Using jQuery</strong>:</p> <p dir="auto">I entered the code to clone <code class="notranslate">target5</code> and append it to <code class="notranslate">left-well</code>, and now I see three <strong>target5</strong> buttons in the phone simulator. FCC says my code is correct and advances me to the next challenge. The following challenges also show three target5 buttons:</p> <ul dir="auto"> <li>Waypoint: Target the Parent of an Element Using jQuery</li> <li>Waypoint: Target the Children of an Element Using jQuery</li> </ul> <p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/qualitymanifest/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/qualitymanifest">@qualitymanifest</a> confirms this issue on his <strong>Linux</strong> box.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/5673126/11647398/76751658-9d35-11e5-8fcf-112ab89c6920.png"><img src="https://cloud.githubusercontent.com/assets/5673126/11647398/76751658-9d35-11e5-8fcf-112ab89c6920.png" alt="image" style="max-width: 100%;"></a></p> <h2 dir="auto">My code:</h2> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;script&gt; $(document).ready(function() { $(&quot;#target1&quot;).css(&quot;color&quot;, &quot;red&quot;); $(&quot;#target1&quot;).prop(&quot;disabled&quot;, true); $(&quot;#target4&quot;).remove(); $(&quot;#target2&quot;).appendTo(&quot;#right-well&quot;); $(&quot;#target5&quot;).clone().appendTo(&quot;#left-well&quot;); }); &lt;/script&gt; &lt;!-- Only change code above this line. --&gt; &lt;div class=&quot;container-fluid&quot;&gt; &lt;h3 class=&quot;text-primary text-center&quot;&gt;jQuery Playground&lt;/h3&gt; &lt;div class=&quot;row&quot;&gt; &lt;div class=&quot;col-xs-6&quot;&gt; &lt;h4&gt;#left-well&lt;/h4&gt; &lt;div class=&quot;well&quot; id=&quot;left-well&quot;&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target1&quot;&gt;#target1&lt;/button&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target2&quot;&gt;#target2&lt;/button&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target3&quot;&gt;#target3&lt;/button&gt; &lt;/div&gt; &lt;/div&gt; &lt;div class=&quot;col-xs-6&quot;&gt; &lt;h4&gt;#right-well&lt;/h4&gt; &lt;div class=&quot;well&quot; id=&quot;right-well&quot;&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target4&quot;&gt;#target4&lt;/button&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target5&quot;&gt;#target5&lt;/button&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target6&quot;&gt;#target6&lt;/button&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; "><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">script</span><span class="pl-kos">&gt;</span> <span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-smi">document</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">ready</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-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target1"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">css</span><span class="pl-kos">(</span><span class="pl-s">"color"</span><span class="pl-kos">,</span> <span class="pl-s">"red"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target1"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">prop</span><span class="pl-kos">(</span><span class="pl-s">"disabled"</span><span class="pl-kos">,</span> <span class="pl-c1">true</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target4"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">remove</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target2"</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">"#right-well"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target5"</span><span class="pl-kos">)</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">appendTo</span><span class="pl-kos">(</span><span class="pl-s">"#left-well"</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">&lt;/</span><span class="pl-ent">script</span><span class="pl-kos">&gt;</span> <span class="pl-c">&lt;!-- Only change code above this line. --&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">container-fluid</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">h3</span> <span class="pl-c1">class</span>="<span class="pl-s">text-primary text-center</span>"<span class="pl-kos">&gt;</span>jQuery Playground<span class="pl-kos">&lt;/</span><span class="pl-ent">h3</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">row</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">col-xs-6</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">h4</span><span class="pl-kos">&gt;</span>#left-well<span class="pl-kos">&lt;/</span><span class="pl-ent">h4</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">well</span>" <span class="pl-c1">id</span>="<span class="pl-s">left-well</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target1</span>"<span class="pl-kos">&gt;</span>#target1<span class="pl-kos">&lt;/</span><span class="pl-ent">button</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target2</span>"<span class="pl-kos">&gt;</span>#target2<span class="pl-kos">&lt;/</span><span class="pl-ent">button</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target3</span>"<span class="pl-kos">&gt;</span>#target3<span class="pl-kos">&lt;/</span><span class="pl-ent">button</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">col-xs-6</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">h4</span><span class="pl-kos">&gt;</span>#right-well<span class="pl-kos">&lt;/</span><span class="pl-ent">h4</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">well</span>" <span class="pl-c1">id</span>="<span class="pl-s">right-well</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target4</span>"<span class="pl-kos">&gt;</span>#target4<span class="pl-kos">&lt;/</span><span class="pl-ent">button</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target5</span>"<span class="pl-kos">&gt;</span>#target5<span class="pl-kos">&lt;/</span><span class="pl-ent">button</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target6</span>"<span class="pl-kos">&gt;</span>#target6<span class="pl-kos">&lt;/</span><span class="pl-ent">button</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span></pre></div>
1
<p dir="auto">I have two similar pieces of code that I would expect to behave in a similar fashion. The first piece of code compiles and functions properly:</p> <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="trait HasId { fn id() -&gt; i32; } trait Foo {} impl HasId for Foo { fn id() -&gt; i32 { 1 } } trait Bar {} impl HasId for Bar { fn id() -&gt; i32 { 2 } } fn print_id&lt;T: HasId + ?Sized&gt;() { println!(&quot;{}&quot;, &lt;T as HasId&gt;::id()); } fn main() { print_id::&lt;Foo&gt;(); print_id::&lt;Bar&gt;(); }"><pre class="notranslate"><span class="pl-k">trait</span> <span class="pl-smi">HasId</span> <span class="pl-kos">{</span> <span class="pl-k">fn</span> <span class="pl-en">id</span><span class="pl-kos">(</span><span class="pl-kos">)</span> -&gt; <span class="pl-smi">i32</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">trait</span> <span class="pl-smi">Foo</span> <span class="pl-kos">{</span><span class="pl-kos">}</span> <span class="pl-k">impl</span> <span class="pl-smi">HasId</span> <span class="pl-k">for</span> <span class="pl-smi">Foo</span> <span class="pl-kos">{</span> <span class="pl-k">fn</span> <span class="pl-en">id</span><span class="pl-kos">(</span><span class="pl-kos">)</span> -&gt; <span class="pl-smi">i32</span> <span class="pl-kos">{</span> <span class="pl-c1">1</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span> <span class="pl-k">trait</span> <span class="pl-smi">Bar</span> <span class="pl-kos">{</span><span class="pl-kos">}</span> <span class="pl-k">impl</span> <span class="pl-smi">HasId</span> <span class="pl-k">for</span> <span class="pl-smi">Bar</span> <span class="pl-kos">{</span> <span class="pl-k">fn</span> <span class="pl-en">id</span><span class="pl-kos">(</span><span class="pl-kos">)</span> -&gt; <span class="pl-smi">i32</span> <span class="pl-kos">{</span> <span class="pl-c1">2</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span> <span class="pl-k">fn</span> <span class="pl-en">print_id</span><span class="pl-kos">&lt;</span><span class="pl-smi">T</span><span class="pl-kos">:</span> <span class="pl-smi">HasId</span> + ?<span class="pl-smi">Sized</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-en">println</span><span class="pl-en">!</span><span class="pl-kos">(</span><span class="pl-s">"{}"</span>, &lt;<span class="pl-v">T</span> <span class="pl-k">as</span> <span class="pl-v">HasId</span>&gt;::id<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-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-en">print_id</span><span class="pl-kos">::</span><span class="pl-kos">&lt;</span><span class="pl-smi">Foo</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-en">print_id</span><span class="pl-kos">::</span><span class="pl-kos">&lt;</span><span class="pl-smi">Bar</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-kos">}</span></pre></div> <p dir="auto">The second piece of code replaces the static methods with an associated constant:</p> <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="#![feature(associated_consts)] trait HasId { const ID: i32; } trait Foo {} impl HasId for Foo { const ID: i32 = 1; } trait Bar {} impl HasId for Bar { const ID: i32 = 2; } fn print_id&lt;T: HasId + ?Sized&gt;() { println!(&quot;{}&quot;, &lt;T as HasId&gt;::ID); } fn main() { print_id::&lt;Foo&gt;(); print_id::&lt;Bar&gt;(); }"><pre class="notranslate"><span class="pl-c1">#!<span class="pl-kos">[</span>feature<span class="pl-kos">(</span>associated_consts<span class="pl-kos">)</span><span class="pl-kos">]</span></span> <span class="pl-k">trait</span> <span class="pl-smi">HasId</span> <span class="pl-kos">{</span> <span class="pl-k">const</span> <span class="pl-v">ID</span><span class="pl-kos">:</span> <span class="pl-smi">i32</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">trait</span> <span class="pl-smi">Foo</span> <span class="pl-kos">{</span><span class="pl-kos">}</span> <span class="pl-k">impl</span> <span class="pl-smi">HasId</span> <span class="pl-k">for</span> <span class="pl-smi">Foo</span> <span class="pl-kos">{</span> <span class="pl-k">const</span> <span class="pl-v">ID</span><span class="pl-kos">:</span> <span class="pl-smi">i32</span> = <span class="pl-c1">1</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">trait</span> <span class="pl-smi">Bar</span> <span class="pl-kos">{</span><span class="pl-kos">}</span> <span class="pl-k">impl</span> <span class="pl-smi">HasId</span> <span class="pl-k">for</span> <span class="pl-smi">Bar</span> <span class="pl-kos">{</span> <span class="pl-k">const</span> <span class="pl-v">ID</span><span class="pl-kos">:</span> <span class="pl-smi">i32</span> = <span class="pl-c1">2</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">fn</span> <span class="pl-en">print_id</span><span class="pl-kos">&lt;</span><span class="pl-smi">T</span><span class="pl-kos">:</span> <span class="pl-smi">HasId</span> + ?<span class="pl-smi">Sized</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-en">println</span><span class="pl-en">!</span><span class="pl-kos">(</span><span class="pl-s">"{}"</span>, &lt;<span class="pl-v">T</span> <span class="pl-k">as</span> <span class="pl-v">HasId</span>&gt;::<span class="pl-v">ID</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-en">print_id</span><span class="pl-kos">::</span><span class="pl-kos">&lt;</span><span class="pl-smi">Foo</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-en">print_id</span><span class="pl-kos">::</span><span class="pl-kos">&lt;</span><span class="pl-smi">Bar</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-kos">}</span></pre></div> <p dir="auto">This code fails to compile with the following ICE:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;anon&gt;:4:5: 4:19 error: internal compiler error: Encountered error `Unimplemented` when trying to select an implementation for constant trait item reference. &lt;anon&gt;:4 const ID: i32; ^~~~~~~~~~~~~~ note: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports note: run with `RUST_BACKTRACE=1` for a backtrace thread 'rustc' panicked at 'Box&lt;Any&gt;', /home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/libsyntax/diagnostic.rs:170"><pre class="notranslate"><code class="notranslate">&lt;anon&gt;:4:5: 4:19 error: internal compiler error: Encountered error `Unimplemented` when trying to select an implementation for constant trait item reference. &lt;anon&gt;:4 const ID: i32; ^~~~~~~~~~~~~~ note: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports note: run with `RUST_BACKTRACE=1` for a backtrace thread 'rustc' panicked at 'Box&lt;Any&gt;', /home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/libsyntax/diagnostic.rs:170 </code></pre></div> <p dir="auto">What's interesting is that the following code does compile:</p> <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="#![feature(associated_consts)] trait HasId { const ID: i32; } trait Foo {} impl HasId for Foo { const ID: i32 = 1; } trait Bar {} impl HasId for Bar { const ID: i32 = 2; } fn main() { println!(&quot;{}&quot;, &lt;Foo as HasId&gt;::ID); println!(&quot;{}&quot;, &lt;Bar as HasId&gt;::ID); }"><pre class="notranslate"><span class="pl-c1">#!<span class="pl-kos">[</span>feature<span class="pl-kos">(</span>associated_consts<span class="pl-kos">)</span><span class="pl-kos">]</span></span> <span class="pl-k">trait</span> <span class="pl-smi">HasId</span> <span class="pl-kos">{</span> <span class="pl-k">const</span> <span class="pl-v">ID</span><span class="pl-kos">:</span> <span class="pl-smi">i32</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">trait</span> <span class="pl-smi">Foo</span> <span class="pl-kos">{</span><span class="pl-kos">}</span> <span class="pl-k">impl</span> <span class="pl-smi">HasId</span> <span class="pl-k">for</span> <span class="pl-smi">Foo</span> <span class="pl-kos">{</span> <span class="pl-k">const</span> <span class="pl-v">ID</span><span class="pl-kos">:</span> <span class="pl-smi">i32</span> = <span class="pl-c1">1</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">trait</span> <span class="pl-smi">Bar</span> <span class="pl-kos">{</span><span class="pl-kos">}</span> <span class="pl-k">impl</span> <span class="pl-smi">HasId</span> <span class="pl-k">for</span> <span class="pl-smi">Bar</span> <span class="pl-kos">{</span> <span class="pl-k">const</span> <span class="pl-v">ID</span><span class="pl-kos">:</span> <span class="pl-smi">i32</span> = <span class="pl-c1">2</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-en">println</span><span class="pl-en">!</span><span class="pl-kos">(</span><span class="pl-s">"{}"</span>, &lt;<span class="pl-v">Foo</span> <span class="pl-k">as</span> <span class="pl-v">HasId</span>&gt;::<span class="pl-v">ID</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">println</span><span class="pl-en">!</span><span class="pl-kos">(</span><span class="pl-s">"{}"</span>, &lt;<span class="pl-v">Bar</span> <span class="pl-k">as</span> <span class="pl-v">HasId</span>&gt;::<span class="pl-v">ID</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">So it would appear as if this behavior is related to the use of a generic in the UFCS resolution for the associated constant.</p>
<p dir="auto">The compiler fails to compile this:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#![feature(associated_consts)] pub trait Foo { const MIN: i32; fn get_min() -&gt; i32 { Self::MIN } } fn main() {}"><pre class="notranslate"><code class="notranslate">#![feature(associated_consts)] pub trait Foo { const MIN: i32; fn get_min() -&gt; i32 { Self::MIN } } fn main() {} </code></pre></div> <p dir="auto">The error message:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="main.rs:4:5: 4:20 error: internal compiler error: Encountered error `Unimplemented` when trying to select an implementation for constant trait item reference. main.rs:4 const MIN: i32; ^~~~~~~~~~~~~~~ thread 'rustc' panicked at 'Box&lt;Any&gt;', /Users/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-mac/build/src/libsyntax/diagnostic.rs:170"><pre class="notranslate"><code class="notranslate">main.rs:4:5: 4:20 error: internal compiler error: Encountered error `Unimplemented` when trying to select an implementation for constant trait item reference. main.rs:4 const MIN: i32; ^~~~~~~~~~~~~~~ thread 'rustc' panicked at 'Box&lt;Any&gt;', /Users/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-mac/build/src/libsyntax/diagnostic.rs:170 </code></pre></div> <h2 dir="auto">Meta</h2> <p dir="auto"><code class="notranslate">rustc --version --verbose</code>:<br> rustc 1.1.0-nightly (<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-lang/rust/commit/c4b23aec4c5ddf32df1e0ba3cc23212327cd8b1f/hovercard" href="https://github.com/rust-lang/rust/commit/c4b23aec4c5ddf32df1e0ba3cc23212327cd8b1f"><tt>c4b23ae</tt></a> 2015-04-29) (built 2015-04-28)<br> binary: rustc<br> commit-hash: <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-lang/rust/commit/c4b23aec4c5ddf32df1e0ba3cc23212327cd8b1f/hovercard" href="https://github.com/rust-lang/rust/commit/c4b23aec4c5ddf32df1e0ba3cc23212327cd8b1f"><tt>c4b23ae</tt></a><br> commit-date: 2015-04-29<br> build-date: 2015-04-28<br> host: x86_64-apple-darwin<br> release: 1.1.0-nightly</p> <p dir="auto">Stack backtrace:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" 1: 0x10ae5424f - sys::backtrace::write::h0714aaf7fe41e02dzVr 2: 0x10ae5c8c0 - panicking::on_panic::hb86b9b356f51f92dEVv 3: 0x10ae18c35 - rt::unwind::begin_unwind_inner::h58f79e41dbedf2efnDv 4: 0x10a60998e - rt::unwind::begin_unwind::h17476740655312162035 5: 0x10a60991a - diagnostic::SpanHandler::span_bug::h6ece18e7aebef0b3cFB 6: 0x108027cfa - middle::const_eval::resolve_trait_associated_const::hfcf715732ac1e584QMi 7: 0x107fdba61 - middle::const_eval::lookup_const_by_id::hc5a8309a206ad882OOg 8: 0x107fd58b2 - middle::check_const::check_expr::h4c113c7ea3d8c1ffB2d 9: 0x107fcd77c - middle::check_const::CheckCrateVisitor&lt;'a, 'tcx&gt;.Visitor&lt;'v&gt;::visit_expr::hdb217d3565a2586cGTd 10: 0x107fd3e7e - middle::check_const::CheckCrateVisitor&lt;'a, 'tcx&gt;.Visitor&lt;'v&gt;::visit_fn::h37b9b5487c182e36DRd 11: 0x107fd454e - visit::walk_trait_item::h8343690369834256746 12: 0x107fd349f - visit::walk_item::h4252660852014709521 13: 0x107fd2e1c - middle::check_const::CheckCrateVisitor&lt;'a, 'tcx&gt;.Visitor&lt;'v&gt;::visit_item::h3645f3202d46494bKMd 14: 0x107fdbeea - middle::check_const::check_crate::ha1c34da7b8765db0Hle 15: 0x107584171 - driver::phase_3_run_analysis_passes::h2554ff95bce00587tGa 16: 0x10756618c - driver::compile_input::h7c6cf9b085c57594Qba 17: 0x107625ac3 - run_compiler::h55b523753cbd518765b 18: 0x10762322a - boxed::F.FnBox&lt;A&gt;::call_box::h11476165885616507686 19: 0x107622767 - rt::unwind::try::try_fn::h13518150216340287792 20: 0x10aedec58 - rust_try_inner 21: 0x10aedec45 - rust_try 22: 0x107622a4e - boxed::F.FnBox&lt;A&gt;::call_box::h735039165869315632 23: 0x10ae5b2bd - sys::thread::Thread::new::thread_start::hf4c42a114072ab47mYu 24: 0x7fff8cfab267 - _pthread_body 25: 0x7fff8cfab1e4 - _pthread_start"><pre class="notranslate"><code class="notranslate"> 1: 0x10ae5424f - sys::backtrace::write::h0714aaf7fe41e02dzVr 2: 0x10ae5c8c0 - panicking::on_panic::hb86b9b356f51f92dEVv 3: 0x10ae18c35 - rt::unwind::begin_unwind_inner::h58f79e41dbedf2efnDv 4: 0x10a60998e - rt::unwind::begin_unwind::h17476740655312162035 5: 0x10a60991a - diagnostic::SpanHandler::span_bug::h6ece18e7aebef0b3cFB 6: 0x108027cfa - middle::const_eval::resolve_trait_associated_const::hfcf715732ac1e584QMi 7: 0x107fdba61 - middle::const_eval::lookup_const_by_id::hc5a8309a206ad882OOg 8: 0x107fd58b2 - middle::check_const::check_expr::h4c113c7ea3d8c1ffB2d 9: 0x107fcd77c - middle::check_const::CheckCrateVisitor&lt;'a, 'tcx&gt;.Visitor&lt;'v&gt;::visit_expr::hdb217d3565a2586cGTd 10: 0x107fd3e7e - middle::check_const::CheckCrateVisitor&lt;'a, 'tcx&gt;.Visitor&lt;'v&gt;::visit_fn::h37b9b5487c182e36DRd 11: 0x107fd454e - visit::walk_trait_item::h8343690369834256746 12: 0x107fd349f - visit::walk_item::h4252660852014709521 13: 0x107fd2e1c - middle::check_const::CheckCrateVisitor&lt;'a, 'tcx&gt;.Visitor&lt;'v&gt;::visit_item::h3645f3202d46494bKMd 14: 0x107fdbeea - middle::check_const::check_crate::ha1c34da7b8765db0Hle 15: 0x107584171 - driver::phase_3_run_analysis_passes::h2554ff95bce00587tGa 16: 0x10756618c - driver::compile_input::h7c6cf9b085c57594Qba 17: 0x107625ac3 - run_compiler::h55b523753cbd518765b 18: 0x10762322a - boxed::F.FnBox&lt;A&gt;::call_box::h11476165885616507686 19: 0x107622767 - rt::unwind::try::try_fn::h13518150216340287792 20: 0x10aedec58 - rust_try_inner 21: 0x10aedec45 - rust_try 22: 0x107622a4e - boxed::F.FnBox&lt;A&gt;::call_box::h735039165869315632 23: 0x10ae5b2bd - sys::thread::Thread::new::thread_start::hf4c42a114072ab47mYu 24: 0x7fff8cfab267 - _pthread_body 25: 0x7fff8cfab1e4 - _pthread_start </code></pre></div>
1
<p dir="auto">when finding a Yaml date, the parser currently returns it as a unix timestamp.<br> A flag to return it as a DateTime would be great.</p> <p dir="auto">If we handle them as DateTime, the dumper should accept DateTime objects and dump them as Yaml dates though</p>
<p dir="auto">Hi,</p> <p dir="auto">I'm not sure if this issue is a duplicate, because i couldn't find any other that specifically points to this.</p> <p dir="auto">I am rendering two controllers into the view like this:</p> <div class="highlight highlight-text-html-twig notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" {{ render(controller('WebBundle:Task:navTask')) }} {{ render(controller('WebBundle:Notification:navNotification')) }}"><pre class="notranslate"> {{ render(controller(<span class="pl-s"><span class="pl-pds">'</span>WebBundle:Task:navTask<span class="pl-pds">'</span></span>)) }} {{ render(controller(<span class="pl-s"><span class="pl-pds">'</span>WebBundle:Notification:navNotification<span class="pl-pds">'</span></span>)) }}</pre></div> <p dir="auto">Everything works out fine, but for each render i get 1 or 2 errors in the console:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="GET http://example.dev/_wdt/98002d 404 (Not Found)"><pre class="notranslate"><code class="notranslate">GET http://example.dev/_wdt/98002d 404 (Not Found) </code></pre></div> <p dir="auto">Here's content of controller action:</p> <div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" public function navTaskAction() { return $this-&gt;render('WebBundle:Task:navTask.html.twig', [ 'navTasks' =&gt; 2 ]); }"><pre class="notranslate"> <span class="pl-k">public</span> <span class="pl-k">function</span> <span class="pl-en">navTaskAction</span>() { <span class="pl-k">return</span> <span class="pl-s1"><span class="pl-c1">$</span><span class="pl-smi">this</span></span>-&gt;<span class="pl-en">render</span>(<span class="pl-s">'WebBundle:Task:navTask.html.twig'</span>, [ <span class="pl-s">'navTasks'</span> =&gt; <span class="pl-c1">2</span> ]); }</pre></div> <p dir="auto">And view:</p> <div class="highlight highlight-text-html-twig notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;div class=&quot;tasks&quot;&gt; {{ navTasks }} &lt;/div&gt;"><pre class="notranslate">&lt;<span class="pl-ent">div</span> <span class="pl-e">class</span>=<span class="pl-s"><span class="pl-pds">"</span>tasks<span class="pl-pds">"</span></span>&gt; {{ <span class="pl-smi">navTasks</span> }} &lt;/<span class="pl-ent">div</span>&gt;</pre></div> <p dir="auto">When I remove those, errors are gone.</p> <p dir="auto">It didn't bother me at first, but when i wanted to add 3rd render, it started to throw 404 alert for profiler, because it exceeds 5 calls.</p> <p dir="auto">Probably the problem exists because token is not passed to the subrequests, which then throws 404 error. Just a guess. Is there a way to fix this, or am I doing something wrong?</p>
0
<p dir="auto">Check this : <a href="http://twitter.github.com/bootstrap/javascript.html#tooltips">http://twitter.github.com/bootstrap/javascript.html#tooltips</a></p> <p dir="auto">The data-placement doesn't work ... tooltips always opens on top</p>
<p dir="auto">congrats on releasing 2.3.0!<br> I was checking out some of the docs and saw that <a href="http://twitter.github.com/bootstrap/javascript.html#tooltips">tooltips data-placement</a> is not working correctly. I think its because of the one pull request that makes options set in javascript override the options that were set in the html but I'm not sure..</p>
1
<p dir="auto">A couple weeks ago we discussed being able to 'chain' task spawn options, which would be much more fun to write than the current builder interface.</p> <p dir="auto">I envision:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="fn unlinked() -&gt; builder { ... } fn notify_chan() -&gt; builder { ... } fn spawn() { ... } impl for builder { fn unlinked() -&gt; builder { { link: false with builder } } fn notify_chan(chan) -&gt; builder ... fn spawn() ... }"><pre class="notranslate"><code class="notranslate">fn unlinked() -&gt; builder { ... } fn notify_chan() -&gt; builder { ... } fn spawn() { ... } impl for builder { fn unlinked() -&gt; builder { { link: false with builder } } fn notify_chan(chan) -&gt; builder ... fn spawn() ... } </code></pre></div> <p dir="auto">With the functions at the top level returning a default set. Then you'll never need to type "builder" - all of these will be valid:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="do task::spawn { ... } do task::unlinked().notify_chan(c).spawn { ... } do task::notify_chan(c).unlinked().spawn { ... } let t = task::unlinked(); do t.spawn { ... } do t.notify_chan(c).spawn { ... }"><pre class="notranslate"><code class="notranslate">do task::spawn { ... } do task::unlinked().notify_chan(c).spawn { ... } do task::notify_chan(c).unlinked().spawn { ... } let t = task::unlinked(); do t.spawn { ... } do t.notify_chan(c).spawn { ... } </code></pre></div> <p dir="auto">One problem is noncopyability of certain things that might get put in builder - like wrappers and notify ports (or future stuff...? not entirely clear on that).</p> <p dir="auto">Move mode on self can solve that; until then, we could perhaps make it a runtime error by doing the standard option dance. (When move mode on self appears, we can make it a build error without changing the interface.)</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="type builder = ~mut option&lt;{...record...}&gt; impl for builder { fn set_noncopyable_thing() -&gt; builder { let mut result = none; result &lt;-&gt; *self; } }"><pre class="notranslate"><code class="notranslate">type builder = ~mut option&lt;{...record...}&gt; impl for builder { fn set_noncopyable_thing() -&gt; builder { let mut result = none; result &lt;-&gt; *self; } } </code></pre></div> <p dir="auto">An attempt to use a builder with <code class="notranslate">none</code> in it would fail at runtime.</p>
<p dir="auto">I didn't find any duplicate issue, but this problem has probably been there for a long time.</p> <ul dir="auto"> <li>The code <code class="notranslate">panic!("{}", 7)</code> compiles and prints <code class="notranslate">thread &lt;main&gt; panicked at "7", ...</code></li> <li>The code <code class="notranslate">panic!("{} {}", 7)</code> doesn't compile as an argument is missing</li> <li>The code <code class="notranslate">panic!("{}")</code> <strong>does compile</strong> and prints <code class="notranslate">thread &lt;main&gt; panicked at "{}", ...</code></li> </ul> <p dir="auto">The last one doesn't detect potential mistakes, and is inconsistent with <code class="notranslate">println!("{}")</code> which doesn't compile.</p>
0
<h5 dir="auto">ISSUE TYPE</h5> <p dir="auto">Documentation Report</p> <h5 dir="auto">COMPONENT NAME</h5> <p dir="auto">core</p> <h5 dir="auto">ANSIBLE VERSION</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.0.1.0 config file = /root/.ansible.cfg configured module search path = Default w/o overrides"><pre class="notranslate"><code class="notranslate">ansible 2.0.1.0 config file = /root/.ansible.cfg configured module search path = Default w/o overrides </code></pre></div> <h5 dir="auto">CONFIGURATION</h5> <h5 dir="auto">OS / ENVIRONMENT</h5> <p dir="auto">Running ansible on CentOS Linux release 7.2.1511 (Core)<br> Managing a system on CentOS release 5.5 (Final)</p> <h5 dir="auto">SUMMARY</h5> <p dir="auto">wait_for will not accept both port and path. The documentation should note that restriction</p> <h5 dir="auto">STEPS TO REPRODUCE</h5> <p dir="auto">Construct a playbook similar to the following. seths_46 is one of my test VM systems. When duplicating this bug, use one of your test systems instead.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="--- - hosts: seths_46 gather_facts: false strategy: free tasks: - wait_for: host={{ inventory_hostname }} path=&quot;/adp/etc/rc2.d/s099upwrapup&quot; port=22 delay=1 timeout=1800"><pre class="notranslate"><code class="notranslate">--- - hosts: seths_46 gather_facts: false strategy: free tasks: - wait_for: host={{ inventory_hostname }} path="/adp/etc/rc2.d/s099upwrapup" port=22 delay=1 timeout=1800 </code></pre></div> <h5 dir="auto">EXPECTED RESULTS</h5> <p dir="auto">I wanted Ansible to wait for the port to be open and then for the filename in the path to exist. If Ansible cannot do that, then the documentation should say so.</p> <h5 dir="auto">ACTUAL RESULTS</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TASK [wait_for] **************************************************************** fatal: [&lt;ip address deleted&gt;]: FAILED! =&gt; {&quot;changed&quot;: false, &quot;failed&quot;: true, &quot;msg&quot;: &quot;port and path parameter can not both be passed to wait_for&quot;}"><pre class="notranslate"><code class="notranslate">TASK [wait_for] **************************************************************** fatal: [&lt;ip address deleted&gt;]: FAILED! =&gt; {"changed": false, "failed": true, "msg": "port and path parameter can not both be passed to wait_for"} </code></pre></div>
<h5 dir="auto">ISSUE TYPE</h5> <ul dir="auto"> <li>Bug Report</li> </ul> <h5 dir="auto">ANSIBLE VERSION</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 1.9.5 configured module search path = None ansible 2.0.1.0 config file = /dev/null configured module search path = Default w/o overrides # from git: d78ba34cf000cc7d5ff57e8f99b679d03d064540 ansible 2.1.0 config file = /dev/null configured module search path = Default w/o overrides"><pre class="notranslate"><code class="notranslate">ansible 1.9.5 configured module search path = None ansible 2.0.1.0 config file = /dev/null configured module search path = Default w/o overrides # from git: d78ba34cf000cc7d5ff57e8f99b679d03d064540 ansible 2.1.0 config file = /dev/null configured module search path = Default w/o overrides </code></pre></div> <h5 dir="auto">CONFIGURATION</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="export ANSIBLE_CONFIG=/dev/null"><pre class="notranslate"><code class="notranslate">export ANSIBLE_CONFIG=/dev/null </code></pre></div> <h5 dir="auto">OS / ENVIRONMENT</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="OSX 10.11.4 python 2.7.11 (homebrew)"><pre class="notranslate"><code class="notranslate">OSX 10.11.4 python 2.7.11 (homebrew) </code></pre></div> <h5 dir="auto">SUMMARY</h5> <p dir="auto">While migrating some playbooks to Ansible 2.0 i found some inconsistencies between different ansible versions, and most importantly in the same version depending of the syntax chosen.<br> Attached you while find a complete example with variations over the same theme, running the same role multiple times.</p> <h5 dir="auto">STEPS TO REPRODUCE</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# the example code is attached cd example ansible-playbook -i inventory test1.yml ansible-playbook -i inventory test2.yml ansible-playbook -i inventory test3.yml"><pre class="notranslate"><code class="notranslate"># the example code is attached cd example ansible-playbook -i inventory test1.yml ansible-playbook -i inventory test2.yml ansible-playbook -i inventory test3.yml </code></pre></div> <p dir="auto"><a href="https://github.com/ansible/ansible/files/217961/example.zip">example.zip</a></p> <h5 dir="auto">EXPECTED RESULTS</h5> <p dir="auto">All three playbooks should return the same result.</p> <h5 dir="auto">ACTUAL RESULTS</h5> <p dir="auto">Each ansible version tested return different results for playbooks that should be equivalent.</p>
0
<p dir="auto">Is it possible to keep a reference on a scene's object ?<br> When we do :</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="this.scene.add(meshObject);"><pre class="notranslate"><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">scene</span><span class="pl-kos">.</span><span class="pl-en">add</span><span class="pl-kos">(</span><span class="pl-s1">meshObject</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">When I make it, my object is add in the scene and it is "lost" in the property "children" which is an array.<br> I must search the object in the scene's property "children" to modify the object that I display.<br> I would like keep a link on this object and when I modify my object through this link I would modify directly the contents of the scene.</p> <p dir="auto">Like a say precedently I remarked that objects which are displayed are in scene's children property. isn't it possible to have a tree on this property to classify object.<br> By example I have several objects, some of them are cubes other are circles, and I would like classify them in the scene.<br> Like you can see on the following picture :<br> <a href="http://img526.imageshack.us/img526/893/treero.jpg" rel="nofollow">http://img526.imageshack.us/img526/893/treero.jpg</a><br> In this way I could apply a modification on all cubes easily without run all array's member. If I try to set it, the scene will be able to display objects or not ?</p>
<p dir="auto">Names of nodes are user-specified, and not guaranteed to be unique within a glTF file. But because THREE.PropertyBinding relies on track names to target animation, having two nodes with the same name will cause animation to affect the wrong part of a model. We should de-duplicate node names on import, to ensure that every node ends up with a unique name.</p> <p dir="auto">Filing to follow up on <a href="https://discourse.threejs.org/t/gltf-animation-bug-or-wrong-usage/4536/2" rel="nofollow">https://discourse.threejs.org/t/gltf-animation-bug-or-wrong-usage/4536/2</a>.</p>
0
<p dir="auto">I have come across a reproducible segfault in Julia v0.5.0. I'm afraid it's not very minimal, but it's easy to reproduce. To reproduce:</p> <ul dir="auto"> <li>Install branch <code class="notranslate">fsm_matrix_segfault</code> of the package jeff-regier/Celeste.jl (commit 21974)</li> <li>Check out branch <code class="notranslate">segfault</code> from the repo rgiordan/CelesteDev.jl</li> <li>Run the Celeste tests with the command <code class="notranslate">test/runtests misc</code> (this will download the data files needed for the test case)</li> <li>Run the script <code class="notranslate">rasterized_psf/psf_free_image.jl</code> from the CelesteDev.jl directory</li> </ul> <p dir="auto">Please let me know if I can provide any more information. The backtrace is below:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia&gt; PSFConvolution.convolve_fsm_images!(fsm_vec[b]); signal (11): Segmentation fault while loading no file, in expression starting on line 0 ml_matches_visitor at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:2172 jl_typemap_intersection_node_visitor at /home/rgiordan/Documents/git_repos/julia5/src/typemap.c:496 ml_matches at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:2279 [inlined] jl_matching_methods at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:2300 methods_including_ambiguous at ./reflection.jl:283 unknown function (ip: 0x7f24d5fbfcc6) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 showerror at ./replutil.jl:277 #showerror#899 at ./replutil.jl:200 unknown function (ip: 0x7f24d5fbc849) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 #5 at ./REPL.jl:119 jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 with_output_color at ./util.jl:299 display_error at ./REPL.jl:112 unknown function (ip: 0x7f24d5fbb2fd) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 print_response at ./REPL.jl:147 unknown function (ip: 0x7f24d5fbb14d) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 print_response at ./REPL.jl:139 unknown function (ip: 0x7f24d5fbaf1d) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 #22 at ./REPL.jl:652 unknown function (ip: 0x7f24e5336201) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 #38 at ./REPL.jl:867 #13 at ./LineEdit.jl:736 jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 prompt! at ./LineEdit.jl:1605 run_interface at ./LineEdit.jl:1574 unknown function (ip: 0x7f26fea486df) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 run_frontend at ./REPL.jl:903 run_repl at ./REPL.jl:188 unknown function (ip: 0x7f24e532f522) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 _start at ./client.jl:360 unknown function (ip: 0x7f26fea63a78) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 unknown function (ip: 0x40184c) unknown function (ip: 0x4012e6) __libc_start_main at /build/glibc-GKVZIf/glibc-2.23/csu/../csu/libc-start.c:291 unknown function (ip: 0x401338) Allocations: 30470709 (Pool: 30468304; Big: 2405); GC: 45 Segmentation fault (core dumped)"><pre class="notranslate"><code class="notranslate">julia&gt; PSFConvolution.convolve_fsm_images!(fsm_vec[b]); signal (11): Segmentation fault while loading no file, in expression starting on line 0 ml_matches_visitor at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:2172 jl_typemap_intersection_node_visitor at /home/rgiordan/Documents/git_repos/julia5/src/typemap.c:496 ml_matches at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:2279 [inlined] jl_matching_methods at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:2300 methods_including_ambiguous at ./reflection.jl:283 unknown function (ip: 0x7f24d5fbfcc6) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 showerror at ./replutil.jl:277 #showerror#899 at ./replutil.jl:200 unknown function (ip: 0x7f24d5fbc849) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 #5 at ./REPL.jl:119 jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 with_output_color at ./util.jl:299 display_error at ./REPL.jl:112 unknown function (ip: 0x7f24d5fbb2fd) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 print_response at ./REPL.jl:147 unknown function (ip: 0x7f24d5fbb14d) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 print_response at ./REPL.jl:139 unknown function (ip: 0x7f24d5fbaf1d) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 #22 at ./REPL.jl:652 unknown function (ip: 0x7f24e5336201) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 #38 at ./REPL.jl:867 #13 at ./LineEdit.jl:736 jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 prompt! at ./LineEdit.jl:1605 run_interface at ./LineEdit.jl:1574 unknown function (ip: 0x7f26fea486df) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 run_frontend at ./REPL.jl:903 run_repl at ./REPL.jl:188 unknown function (ip: 0x7f24e532f522) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 _start at ./client.jl:360 unknown function (ip: 0x7f26fea63a78) jl_call_method_internal at /home/rgiordan/Documents/git_repos/julia5/src/julia_internal.h:189 [inlined] jl_apply_generic at /home/rgiordan/Documents/git_repos/julia5/src/gf.c:1942 unknown function (ip: 0x40184c) unknown function (ip: 0x4012e6) __libc_start_main at /build/glibc-GKVZIf/glibc-2.23/csu/../csu/libc-start.c:291 unknown function (ip: 0x401338) Allocations: 30470709 (Pool: 30468304; Big: 2405); GC: 45 Segmentation fault (core dumped) </code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia&gt; function foo{T}() nothing end WARNING: static parameter T does not occur in signature for foo at REPL[1]:2. The method will not be callable. foo (generic function with 1 method) julia&gt; foo() signal (11): Segmentation fault: 11 while loading no file, in expression starting on line 0 jl_svecref at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia.h:690 [inlined] ml_matches_visitor at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:2172 jl_typemap_intersection_node_visitor at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/typemap.c:510 [inlined] jl_typemap_intersection_visitor at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/typemap.c:570 ml_matches at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:2279 [inlined] jl_matching_methods at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:2300 methods_including_ambiguous at ./reflection.jl:283 unknown function (ip: 0x11968fc56) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 showerror at ./replutil.jl:277 #showerror#899 at ./replutil.jl:200 unknown function (ip: 0x11968c679) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 #5 at ./REPL.jl:119 jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 with_output_color at ./util.jl:299 display_error at ./REPL.jl:112 unknown function (ip: 0x11968ae6d) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 print_response at ./REPL.jl:147 unknown function (ip: 0x11968ac5d) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 print_response at ./REPL.jl:139 unknown function (ip: 0x11968a9ad) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 #22 at ./REPL.jl:652 unknown function (ip: 0x119679a91) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 run_interface at ./LineEdit.jl:1579 jlcall_run_interface_20650 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 run_frontend at ./REPL.jl:903 run_repl at ./REPL.jl:188 unknown function (ip: 0x1196765e2) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 _start at ./client.jl:360 jlcall__start_21452 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 true_main at /Applications/Julia-0.5.app/Contents/Resources/julia/bin/julia (unknown line) main at /Applications/Julia-0.5.app/Contents/Resources/julia/bin/julia (unknown line) Allocations: 3028631 (Pool: 3027665; Big: 966); GC: 2 [Process completed]"><pre class="notranslate"><code class="notranslate">julia&gt; function foo{T}() nothing end WARNING: static parameter T does not occur in signature for foo at REPL[1]:2. The method will not be callable. foo (generic function with 1 method) julia&gt; foo() signal (11): Segmentation fault: 11 while loading no file, in expression starting on line 0 jl_svecref at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia.h:690 [inlined] ml_matches_visitor at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:2172 jl_typemap_intersection_node_visitor at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/typemap.c:510 [inlined] jl_typemap_intersection_visitor at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/typemap.c:570 ml_matches at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:2279 [inlined] jl_matching_methods at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:2300 methods_including_ambiguous at ./reflection.jl:283 unknown function (ip: 0x11968fc56) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 showerror at ./replutil.jl:277 #showerror#899 at ./replutil.jl:200 unknown function (ip: 0x11968c679) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 #5 at ./REPL.jl:119 jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 with_output_color at ./util.jl:299 display_error at ./REPL.jl:112 unknown function (ip: 0x11968ae6d) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 print_response at ./REPL.jl:147 unknown function (ip: 0x11968ac5d) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 print_response at ./REPL.jl:139 unknown function (ip: 0x11968a9ad) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 #22 at ./REPL.jl:652 unknown function (ip: 0x119679a91) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 run_interface at ./LineEdit.jl:1579 jlcall_run_interface_20650 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 run_frontend at ./REPL.jl:903 run_repl at ./REPL.jl:188 unknown function (ip: 0x1196765e2) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 _start at ./client.jl:360 jlcall__start_21452 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line) jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined] jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942 true_main at /Applications/Julia-0.5.app/Contents/Resources/julia/bin/julia (unknown line) main at /Applications/Julia-0.5.app/Contents/Resources/julia/bin/julia (unknown line) Allocations: 3028631 (Pool: 3027665; Big: 966); GC: 2 [Process completed] </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia&gt; versioninfo() Julia Version 0.5.0 Commit 3c9d753 (2016-09-19 18:14 UTC) Platform Info: System: Darwin (x86_64-apple-darwin13.4.0) CPU: Intel(R) Core(TM) i5-5257U CPU @ 2.70GHz WORD_SIZE: 64 BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY Haswell) LAPACK: libopenblas64_ LIBM: libopenlibm LLVM: libLLVM-3.7.1 (ORCJIT, broadwell)"><pre class="notranslate"><code class="notranslate">julia&gt; versioninfo() Julia Version 0.5.0 Commit 3c9d753 (2016-09-19 18:14 UTC) Platform Info: System: Darwin (x86_64-apple-darwin13.4.0) CPU: Intel(R) Core(TM) i5-5257U CPU @ 2.70GHz WORD_SIZE: 64 BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY Haswell) LAPACK: libopenblas64_ LIBM: libopenlibm LLVM: libLLVM-3.7.1 (ORCJIT, broadwell) </code></pre></div>
1
<p dir="auto">Challenge <a href="http://freecodecamp.com/challenges/waypoint-bring-your-javascript-slot-machine-to-life" rel="nofollow">http://freecodecamp.com/challenges/waypoint-bring-your-javascript-slot-machine-to-life</a> has an issue. Please describe how to reproduce it, and include links to screenshots if possible.</p> <ol dir="auto"> <li>In the space provided for code, type <code class="notranslate">$($)</code></li> <li>This causes an infinite loop.</li> </ol> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/5121391/9425943/16780828-48f3-11e5-978e-49c241e6ab7a.png"><img src="https://cloud.githubusercontent.com/assets/5121391/9425943/16780828-48f3-11e5-978e-49c241e6ab7a.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/fc7759ac37f54b01e6bcd37518139b421b252d3b8995a10b8df171990b85a061/68747470733a2f2f7777772e657665726e6f74652e636f6d2f6c2f416c79705769637a304a354d326150576b796f6d67704f49376f2d44506c75304d7441422f696d6167652e706e67"><img src="https://camo.githubusercontent.com/fc7759ac37f54b01e6bcd37518139b421b252d3b8995a10b8df171990b85a061/68747470733a2f2f7777772e657665726e6f74652e636f6d2f6c2f416c79705769637a304a354d326150576b796f6d67704f49376f2d44506c75304d7441422f696d6167652e706e67" alt="" data-canonical-src="https://www.evernote.com/l/AlypWicz0J5M2aPWkyomgpOI7o-DPlu0MtAB/image.png" 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/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <p dir="auto">Is there any way to configure TablePagination shows all rows on a single page?<br> I mean something like this:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;TablePagination rowsPerPageOptions: [5, 10, 15, 'All'] // or [5, 10, 15, 0] /&gt;"><pre class="notranslate"><span class="pl-c1">&lt;</span><span class="pl-v">TablePagination</span> <span class="pl-s1">rowsPerPageOptions</span>: <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-kos">,</span> <span class="pl-c1">15</span><span class="pl-kos">,</span> <span class="pl-s">'All'</span><span class="pl-kos">]</span> <span class="pl-c">// or [5, 10, 15, 0]</span> <span class="pl-c1">/</span><span class="pl-c1">&gt;</span></pre></div> <p dir="auto">I've already tried to use '0' as a page size, but the 'next' and 'prev' buttons work incorrectly in this case.</p>
<p dir="auto">When testing a component that includes a , I can successfully simulate a click and verify that the component's state is set to open. However, when I then try to find the defined action buttons, I am unable to do so.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="// Code class CustomDialog extends Component { .... this.state = { open: false, }; handleOpen = () =&gt; { this.setState({ open: true }); }; handleDelete =() =&gt; { .... }; handleClose = () =&gt; { .... }; render() { const actions = [ &lt;FlatButton label=&quot;Cancel&quot; onClick={this.handleClose} /&gt;, &lt;FlatButton label=&quot;Delete&quot; onClick={this.handleDelete} /&gt;, ]; return ( &lt;span&gt; &lt;FlatButton label=&quot;Delete&quot; onClick={this.handleOpen} /&gt; &lt;Dialog actions={actions} open={this.state.open} onRequestClose={this.handleClose} &gt; Delete? This operation cannot be reversed. &lt;/Dialog&gt; &lt;/span&gt; ); } } // Tests expect(mountedComponent).toHaveState('open', false); &lt;--PASS mountedComponent .find('FlatButton') .simulate('click'); expect(mountedComponent).toHaveState('open', true); &lt;--PASS expect(mountedComponent .find('FlatButton') .find('[label=&quot;Cancel&quot;]')).toBePresent(); &lt;&lt;&lt; FAIL "><pre class="notranslate"><code class="notranslate">// Code class CustomDialog extends Component { .... this.state = { open: false, }; handleOpen = () =&gt; { this.setState({ open: true }); }; handleDelete =() =&gt; { .... }; handleClose = () =&gt; { .... }; render() { const actions = [ &lt;FlatButton label="Cancel" onClick={this.handleClose} /&gt;, &lt;FlatButton label="Delete" onClick={this.handleDelete} /&gt;, ]; return ( &lt;span&gt; &lt;FlatButton label="Delete" onClick={this.handleOpen} /&gt; &lt;Dialog actions={actions} open={this.state.open} onRequestClose={this.handleClose} &gt; Delete? This operation cannot be reversed. &lt;/Dialog&gt; &lt;/span&gt; ); } } // Tests expect(mountedComponent).toHaveState('open', false); &lt;--PASS mountedComponent .find('FlatButton') .simulate('click'); expect(mountedComponent).toHaveState('open', true); &lt;--PASS expect(mountedComponent .find('FlatButton') .find('[label="Cancel"]')).toBePresent(); &lt;&lt;&lt; FAIL </code></pre></div> <p dir="auto">I haven't done a sandbox because Dialog works fine for me in the browser, it's only when testing that the issues arise.<br> 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.</p> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td>0.19.4</td> </tr> <tr> <td>React</td> <td>16.0.0</td> </tr> <tr> <td>enzyme</td> <td>3.1.0</td> </tr> </tbody> </table> <p dir="auto">And finally, here is my <code class="notranslate">mountedComponent.debug()</code> output:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;AreaDeleteDialog className=&quot;delete&quot; id=&quot;Hollywood&quot; handleAreaDelete={[Function]}&gt; &lt;span&gt; &lt;FlatButton label=&quot;Delete&quot; onClick={[Function]} disabled={false} fullWidth={false} labelStyle={{...}} labelPosition=&quot;after&quot; onKeyboardFocus={[Function]} onMouseEnter={[Function]} onMouseLeave={[Function]} onTouchStart={[Function]} primary={false} secondary={false}&gt; &lt;EnhancedButton onClick={[Function]} onKeyboardFocus={[Function]} onMouseEnter={[Function]} onMouseLeave={[Function]} onTouchStart={[Function]} disabled={false} focusRippleColor=&quot;#999999&quot; focusRippleOpacity={0.3} style={{...}} touchRippleColor=&quot;#999999&quot; touchRippleOpacity={0.3} containerElement=&quot;button&quot; onBlur={[Function]} onFocus={[Function]} onKeyDown={[Function]} onKeyUp={[Function]} tabIndex={0} type=&quot;button&quot;&gt; &lt;button onMouseEnter={[Function]} onMouseLeave={[Function]} onTouchStart={[Function]} style={{...}} disabled={false} onBlur={[Function]} onFocus={[Function]} onKeyUp={[Function]} onKeyDown={[Function]} onClick={[Function]} tabIndex={0} type=&quot;button&quot;&gt; &lt;TouchRipple centerRipple={[undefined]} color=&quot;#999999&quot; opacity={0.3} abortOnScroll={true}&gt; &lt;div onMouseUp={[Function]} onMouseDown={[Function]} onMouseLeave={[Function]} onTouchStart={[Function]} onTouchEnd={[Function]}&gt; &lt;FlatButtonLabel label=&quot;Delete&quot; style={{...}}&gt; &lt;span style={{...}}&gt; Delete &lt;/span&gt; &lt;/FlatButtonLabel&gt; &lt;/div&gt; &lt;/TouchRipple&gt; &lt;/button&gt; &lt;/EnhancedButton&gt; &lt;/FlatButton&gt; &lt;Dialog actions={{...}} open={true} onRequestClose={[Function]} autoDetectWindowHeight={true} autoScrollBodyContent={false} modal={false} repositionOnUpdate={true}&gt; &lt;RenderToLayer render={[Function]} open={true} useLayerForClickAway={false} /&gt; &lt;/Dialog&gt; &lt;/span&gt; &lt;/AreaDeleteDialog&gt;'"><pre class="notranslate"><code class="notranslate">&lt;AreaDeleteDialog className="delete" id="Hollywood" handleAreaDelete={[Function]}&gt; &lt;span&gt; &lt;FlatButton label="Delete" onClick={[Function]} disabled={false} fullWidth={false} labelStyle={{...}} labelPosition="after" onKeyboardFocus={[Function]} onMouseEnter={[Function]} onMouseLeave={[Function]} onTouchStart={[Function]} primary={false} secondary={false}&gt; &lt;EnhancedButton onClick={[Function]} onKeyboardFocus={[Function]} onMouseEnter={[Function]} onMouseLeave={[Function]} onTouchStart={[Function]} disabled={false} focusRippleColor="#999999" focusRippleOpacity={0.3} style={{...}} touchRippleColor="#999999" touchRippleOpacity={0.3} containerElement="button" onBlur={[Function]} onFocus={[Function]} onKeyDown={[Function]} onKeyUp={[Function]} tabIndex={0} type="button"&gt; &lt;button onMouseEnter={[Function]} onMouseLeave={[Function]} onTouchStart={[Function]} style={{...}} disabled={false} onBlur={[Function]} onFocus={[Function]} onKeyUp={[Function]} onKeyDown={[Function]} onClick={[Function]} tabIndex={0} type="button"&gt; &lt;TouchRipple centerRipple={[undefined]} color="#999999" opacity={0.3} abortOnScroll={true}&gt; &lt;div onMouseUp={[Function]} onMouseDown={[Function]} onMouseLeave={[Function]} onTouchStart={[Function]} onTouchEnd={[Function]}&gt; &lt;FlatButtonLabel label="Delete" style={{...}}&gt; &lt;span style={{...}}&gt; Delete &lt;/span&gt; &lt;/FlatButtonLabel&gt; &lt;/div&gt; &lt;/TouchRipple&gt; &lt;/button&gt; &lt;/EnhancedButton&gt; &lt;/FlatButton&gt; &lt;Dialog actions={{...}} open={true} onRequestClose={[Function]} autoDetectWindowHeight={true} autoScrollBodyContent={false} modal={false} repositionOnUpdate={true}&gt; &lt;RenderToLayer render={[Function]} open={true} useLayerForClickAway={false} /&gt; &lt;/Dialog&gt; &lt;/span&gt; &lt;/AreaDeleteDialog&gt;' </code></pre></div>
0
<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" checked=""> 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" checked=""> I have searched the issue tracker for a feature request that matches the one I want to file, without success.</li> </ul> <h3 dir="auto">Problem Description</h3> <p dir="auto">The current ipcRenderer API appears to be similar to the NodeJS EventEmitter API. However, the ipcRenderer docs list neither an <code class="notranslate">addListener()</code> method nor a <code class="notranslate">off()</code> method. The NodeJS EventEmitter API supports both <code class="notranslate">addListener()</code> and <code class="notranslate">removeListener()</code>, as well as respective <code class="notranslate">on()</code> and <code class="notranslate">off()</code> methods which act as aliases.</p> <p dir="auto">Furthermore, the methods <code class="notranslate">addListener()</code> and <code class="notranslate">off()</code> appear to be callable on ipcRenderer despite being undocumented, and no not throw any errors, leading to additional confusion.</p> <h3 dir="auto">Proposed Solution</h3> <p dir="auto">If the <code class="notranslate">addListener()</code> and/or <code class="notranslate">off()</code> methods are already implemented on ipcRenderer, The ipcRenderer documentation should be updated to reflect this. If they are not implemented, they should either be implemented, or alternatively, some warning should be given to developer that they are either not implemented or are deprecated (e.g. via a message in the console).</p> <p dir="auto">Finally, although it could be argued that the presence of aliased functions in the NodeJS EventEmitter class causes confusion for developers, I would argue that having one function for adding listeners in one style (<code class="notranslate">on</code>) and one function for removing listeners in another style (<code class="notranslate">removeListener</code>) in Electron without clear documentation makes for a far less desirable developer experience.</p> <h3 dir="auto">Alternatives Considered</h3> <p dir="auto">If there is really no desire to implement additional/aliased functions (assuming they do not already exist but are undocumented) in the ipcRenderer API, the API should at least be made consistent by implementing either <code class="notranslate">on</code> and <code class="notranslate">off</code> OR <code class="notranslate">addListener</code> and <code class="notranslate">removeListener</code> and not both, and deprecating the function to be removed from the different style with accompanying notices made available to developers.</p> <h3 dir="auto">Additional Information</h3> <p dir="auto">I came across this issue/request while trying to debug a weird issue with React and Electron ipcRenderer events. The confusion between styles for adding/removing event listeners has exacerbated time spent debugging this other problem. For more info, see: <a href="https://stackoverflow.com/questions/60158863/spooky-action-at-a-distance-electron-react-useeffect-unable-to-unsubscribe" rel="nofollow">https://stackoverflow.com/questions/60158863/spooky-action-at-a-distance-electron-react-useeffect-unable-to-unsubscribe</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/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" checked=""> 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" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li> </ul> <h3 dir="auto">Issue Details</h3> <ul dir="auto"> <li><strong>Electron Version:</strong> <ul dir="auto"> <li>8.0.3</li> </ul> </li> <li><strong>Operating System:</strong> <ul dir="auto"> <li>Win 7</li> </ul> </li> <li><strong>Last Known Working Electron version:</strong> <ul dir="auto"> <li>unknown</li> </ul> </li> </ul> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">Relative windows should not been closed when main window is closed.</p> <h3 dir="auto">Actual Behavior</h3> <p dir="auto">Relative windows will be closed when main window is closed.</p> <h3 dir="auto">To Reproduce</h3> <ol dir="auto"> <li>Load a page in main window.</li> <li>Click a link or use js window.open to open a new window.</li> <li>Close the main window. The new popup window will be closed immediately.</li> </ol>
0
<h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt; 3.1</li> <li>Operating System / Platform =&gt; Linux Mint<br> <a href="https://www.virustotal.com/de/file/24bda432eaace9e992322dcc3d30144cefa5314c2424d4aa02e5fe3fa9dd17bd/analysis/1535208210/" rel="nofollow">https://www.virustotal.com/de/file/24bda432eaace9e992322dcc3d30144cefa5314c2424d4aa02e5fe3fa9dd17bd/analysis/1535208210/</a></li> </ul> <p dir="auto">Why u is there a trojan downloader ?! I do not appreciate it!</p> <h5 dir="auto">Detailed description</h5> <p dir="auto">Avast: JS:Downloader-DZB [Trj]<br> AVG : JS:Downloader-DZB [Trj]<br> cyren : ZIP/Trojan.JDGB-6<br> Qihoo360 : Script/Trojan.Downloader.3f1</p> <h5 dir="auto">Steps to reproduce</h5>
<h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt; 3.2</li> <li>Operating System / Platform =&gt; Windows</li> <li>Compiler =&gt; -</li> </ul> <h5 dir="auto">Detailed description</h5> <p dir="auto">Avast detects JS: Downloader-DZB [Trj] virus in OpenCV 3 (.exe file).</p> <h5 dir="auto">Steps to reproduce</h5> <p dir="auto">I downloaded the OpenCV for Windows file (version 3.2) from <a href="http://opencv.org/downloads.html" rel="nofollow">http://opencv.org/downloads.html</a> -&gt; <a href="https://sourceforge.net/projects/opencvlibrary/files/opencv-win/3.2.0/opencv-3.2.0-vc14.exe/download" rel="nofollow">https://sourceforge.net/projects/opencvlibrary/files/opencv-win/3.2.0/opencv-3.2.0-vc14.exe/download</a></p> <p dir="auto">File: open-cv-3.2.0-vc14.exe.</p> <p dir="auto">I ran Avast Antivirus on the downloaded file and received a virus report: JS: Downloader-DZB [Trj] Specifically found in: open-cv-3.2.0-vc14.exe&gt;opencv\sources\modules\ts\src\ts_gtest.cpp</p>
1
<h1 dir="auto">Bug report</h1> <h2 dir="auto">Describe the bug</h2> <p dir="auto">I have a monorepo usecase, where I want to share code between the next app and other modules that are located outside of the app folder.</p> <p dir="auto">It will end up with this error:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{ Error: (client) ../foo.ts 1:0 Module parse failed: The keyword 'interface' is reserved (1:0) You may need an appropriate loader to handle this file type. &gt; interface Foo { | prop: string; | } @ ./pages/index.tsx 4:0-28 8:5-8 @ multi ./pages/index.tsx"><pre class="notranslate"><code class="notranslate">{ Error: (client) ../foo.ts 1:0 Module parse failed: The keyword 'interface' is reserved (1:0) You may need an appropriate loader to handle this file type. &gt; interface Foo { | prop: string; | } @ ./pages/index.tsx 4:0-28 8:5-8 @ multi ./pages/index.tsx </code></pre></div> <h2 dir="auto">To Reproduce</h2> <p dir="auto">I have set up a simple repo here, based on the <a class="issue-link js-issue-link notranslate" rel="noopener noreferrer nofollow" href="https://linear.app/vercel/issue/NEXT-typescript">next-typescript</a> example:</p> <p dir="auto"><a href="https://github.com/Swatinem/next-monorepo/tree/master">https://github.com/Swatinem/next-monorepo/tree/master</a></p> <h2 dir="auto">Expected behavior</h2> <p dir="auto">Whatever I import should be transpiled like everything else, period.</p> <h2 dir="auto">System information</h2> <ul dir="auto"> <li>OS: linux</li> <li>Version of Next.js: next@7.0.2</li> </ul> <h2 dir="auto">Additional context</h2> <p dir="auto">Related issue (possibly a duplicate?): <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="346762684" data-permission-text="Title is private" data-url="https://github.com/vercel/next-plugins/issues/234" data-hovercard-type="issue" data-hovercard-url="/vercel/next-plugins/issues/234/hovercard" href="https://github.com/vercel/next-plugins/issues/234">vercel/next-plugins#234</a><br> Also related maybe:</p> <ul dir="auto"> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="199471918" data-permission-text="Title is private" data-url="https://github.com/vercel/next.js/issues/706" data-hovercard-type="issue" data-hovercard-url="/vercel/next.js/issues/706/hovercard" href="https://github.com/vercel/next.js/issues/706">#706</a></li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="261800404" data-permission-text="Title is private" data-url="https://github.com/vercel/next.js/issues/3018" data-hovercard-type="issue" data-hovercard-url="/vercel/next.js/issues/3018/hovercard" href="https://github.com/vercel/next.js/issues/3018">#3018</a></li> </ul>
<p dir="auto">Now some of us ships NPM packages (specially components) written in ES2015 without transpiling them.</p> <p dir="auto">That's a pretty good thing specially if they are gonna used in a project like Next.js or CRA (which does transpiling). They offer benefits like:</p> <ul dir="auto"> <li>No need to transpile before shipping to NPM</li> <li>Get the benefit of Webpack 2's tree-shaking</li> </ul> <p dir="auto">But we can't do this now we <a href="https://github.com/zeit/next.js/blob/master/server/build/webpack.js#L166">exclude</a> everything inside node_modules from babel transpiling.</p> <p dir="auto">So, here's the proposed solution.</p> <p dir="auto">We have an entry in <code class="notranslate">next.config.js</code> to include modules which needs to go through babel. See:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="module.exports = { transpileModules: [ &quot;my-component&quot;, &quot;redux/src&quot; ] }"><pre class="notranslate"><span class="pl-smi">module</span><span class="pl-kos">.</span><span class="pl-c1">exports</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span> <span class="pl-c1">transpileModules</span>: <span class="pl-kos">[</span> <span class="pl-s">"my-component"</span><span class="pl-kos">,</span> <span class="pl-s">"redux/src"</span> <span class="pl-kos">]</span> <span class="pl-kos">}</span></pre></div>
1
<p dir="auto">I tried to implement React Helmet for our project and noticed a bug when running in production mode.<br> React Helmet doesn't initialize on the very first request after starting the application. But it initializes correctly on each subsequent request (SSR &amp; CSR).<br> I cloned the minimal <a href="https://github.com/zeit/next.js/tree/canary/examples/with-react-helmet">with-react-helmet</a> example and I can confirm that the issue appears there, too.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5004390/34601739-91db88f4-f1fd-11e7-99d5-4a2c6d6ee5a5.png"><img src="https://user-images.githubusercontent.com/5004390/34601739-91db88f4-f1fd-11e7-99d5-4a2c6d6ee5a5.png" alt="image" style="max-width: 100%;"></a></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">React Helmet should initialize correctly on the first request that was made.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">As described above, React Helmet doesn't initialize correctly on the very first request.</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <ol dir="auto"> <li>Clone <a href="https://github.com/zeit/next.js/tree/canary/examples/with-react-helmet">with-react-helmet</a></li> <li>npm install</li> <li>npm run build</li> <li>npm start</li> <li>Check the DOM/page source</li> </ol>
<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> <p dir="auto">I need to support some older browsers, so I would like to always include some polyfills (Intl, Object.assign and Promise) in the app bundle and just execute them if need (I've tried to do it conditionally, but it fails in a lot of situations), but I can't figure out the way to do it. Has anybody did this o has an idea on how can I do it?</p>
0
<p dir="auto">For per-1.0 version, linear progress component has a consistent API with circle progress component, where the range of the progress can be set with 'max' and 'min' props. These APIs have been removed in 1.0, but it wasn't explicitly stated, and it was only implied in the examples that the value props linear progress now takes should be between 0 and 100. This causes a little confusing and unnecessary digging for those who migrated from pre 1.0 or new users who try to use both progress components.</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> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">Linear Progress and Circle Progress to have a consistent API implementation (with or without 'max/min' props')</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">Linear Progress only takes value prop, while Circle Progress accepts max/min.</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <p dir="auto">Use a simple component like this one below.</p> <p dir="auto"><code class="notranslate"> &lt;LinearProgress mode='determinate' max={totalSeconds} min={0} value={totalSeconds - timePassed} /&gt;</code></p> <p dir="auto">If I start with a total seconds &gt; 100, I would not see the linear progress bar moving until the last two minutes.</p> <h2 dir="auto">Context</h2> <p dir="auto">I am trying to give user different views that use different progress bars.</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.18</td> </tr> <tr> <td>React</td> <td>16</td> </tr> <tr> <td>browser</td> <td></td> </tr> <tr> <td>etc</td> <td></td> </tr> </tbody> </table>
<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">LinearProgress and CircularProgress should accept min, max and value props.<br> When mode is 'determinate', the progress is calculated based on value between a scale of min to max.<br> If min and max are not supplied, they default to 0 and 100 respectively (original behavior).<br> <code class="notranslate">inlineStyles.primary.transform = 'scaleX(' + ((value - min) / (max - min)) + ')';</code></p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">LinearProgress and CircularProgress accepts value prop.<br> When mode is 'determinate', the progress is calculated based on value between a scale of 0 to 100.<br> <code class="notranslate">inlineStyles.primary.transform = 'scaleX(' + value / 100 + ')';</code></p> <h2 dir="auto">Context</h2> <p dir="auto">This would simplify components that utilize LinearProgress and CircularProgress as parent components would no longer be responsible for scaling values between 0 and 100. I find it's pretty rare to have data already suitable for the progress components because it's not normally between 0 and 100.</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.18</td> </tr> <tr> <td>React</td> <td>16.0.0</td> </tr> </tbody> </table>
1
<p dir="auto">Yesterday, there was a file, <code class="notranslate">server.ts</code> that existed.<br> Today, it doesn't exist.</p> <p dir="auto"><a href="https://deno.land/std@v1.0.0-rc2/http/server.ts" rel="nofollow">https://deno.land/std@v1.0.0-rc2/http/server.ts</a></p> <p dir="auto">Navigating to this URL makes it seem like there is a file <code class="notranslate">server.ts</code></p> <p dir="auto"><a href="https://deno.land/std@v1.0.0-rc2/http/" rel="nofollow">https://deno.land/std@v1.0.0-rc2/http/</a></p> <p dir="auto">It looks like all files are returning 404s.</p> <p dir="auto">What is wrong?</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/11488886/81811610-1bd32980-954f-11ea-80b5-f6c226619b6f.png"><img src="https://user-images.githubusercontent.com/11488886/81811610-1bd32980-954f-11ea-80b5-f6c226619b6f.png" alt="screenshot" style="max-width: 100%;"></a></p> <h2 dir="auto">Steps to reproduce</h2> <ol dir="auto"> <li>Delete <code class="notranslate">~/.cache/deno</code></li> <li>Clone <a href="https://github.com/KSXGitHub/deno-args">https://github.com/KSXGitHub/deno-args</a></li> <li>Run <code class="notranslate">deno cache --unstable **/*.ts</code></li> </ol> <h2 dir="auto">Expected behavior</h2> <p dir="auto">It runs without error</p> <h2 dir="auto">Actual behavior</h2> <p dir="auto">404 Not Found.</p>
1
<h1 dir="auto">Bug report</h1> <p dir="auto"><strong>What is the current behavior?</strong><br> Assume we have two projects with only index.js files in them, which are having same content:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/938036/122017048-4c2c6d80-cdca-11eb-909a-6f0acbb36152.png"><img src="https://user-images.githubusercontent.com/938036/122017048-4c2c6d80-cdca-11eb-909a-6f0acbb36152.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">and this webpack config:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="module.exports = { mode: 'production', cache: { type: 'filesystem' }, infrastructureLogging: { level: 'info', debug: /webpack\.cache.*/, }, entry: `./${process.env.SRC_DIR}/index.js`, plugins: [ new MiniCssExtractPlugin({ filename:'styles.[chunkhash].css' }) ], output: { pathinfo: false, }, module: { rules: [{ test: /\.(js|jsx)$/, loader: 'babel-loader', options: { &quot;plugins&quot;: [ &quot;syntax-dynamic-import&quot;, &quot;@babel/plugin-proposal-class-properties&quot; ], &quot;presets&quot;: [ [ &quot;@babel/preset-env&quot;, { &quot;modules&quot;: false } ], &quot;@babel/preset-react&quot; ] } }] }, optimization: { minimizer: [new TerserPlugin({ })], } }"><pre class="notranslate"><code class="notranslate">module.exports = { mode: 'production', cache: { type: 'filesystem' }, infrastructureLogging: { level: 'info', debug: /webpack\.cache.*/, }, entry: `./${process.env.SRC_DIR}/index.js`, plugins: [ new MiniCssExtractPlugin({ filename:'styles.[chunkhash].css' }) ], output: { pathinfo: false, }, module: { rules: [{ test: /\.(js|jsx)$/, loader: 'babel-loader', options: { "plugins": [ "syntax-dynamic-import", "@babel/plugin-proposal-class-properties" ], "presets": [ [ "@babel/preset-env", { "modules": false } ], "@babel/preset-react" ] } }] }, optimization: { minimizer: [new TerserPlugin({ })], } } </code></pre></div> <p dir="auto">After cache warmup with <code class="notranslate">webpack5-1</code> repo we build first <code class="notranslate">webpack5-1</code> and then - <code class="notranslate">webpack5-2</code></p> <p dir="auto">warmup time:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="webpack 5 - 1 (warmup) : 5.05401289999485 seconds"><pre class="notranslate"><code class="notranslate">webpack 5 - 1 (warmup) : 5.05401289999485 seconds </code></pre></div> <p dir="auto">Full compilation time with cache is then following:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="webpack 5 - 1: 0.8312232999801635 seconds webpack 5 - 2: 1.4813145999908448 seconds"><pre class="notranslate"><code class="notranslate">webpack 5 - 1: 0.8312232999801635 seconds webpack 5 - 2: 1.4813145999908448 seconds </code></pre></div> <p dir="auto">After that, if we not delete <code class="notranslate">.cache</code> folder and again build <code class="notranslate">webpack5-1</code> and then - <code class="notranslate">webpack5-2</code> then builds aree took almost the same time</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="webpack 5 - 1: 0.8569822000265122 seconds webpack 5 - 2: 0.9038357999920845 seconds"><pre class="notranslate"><code class="notranslate">webpack 5 - 1: 0.8569822000265122 seconds webpack 5 - 2: 0.9038357999920845 seconds </code></pre></div> <p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong><br> Reproducing steps in readme section of repo <a href="https://github.com/SkReD/webpack5-performance-issue/tree/cache-share-problem">https://github.com/SkReD/webpack5-performance-issue/tree/cache-share-problem</a></p> <p dir="auto"><strong>What is the expected behavior?</strong><br> Expect compilation time to be almost the same for both <code class="notranslate">webpack5-1</code> and <code class="notranslate">webpack5-2</code> with cache from the first one.</p> <p dir="auto"><strong>Other relevant information:</strong><br> webpack version: 5.38.1<br> Node.js version: 14.17.0<br> Operating System: windows 10 x64<br> Additional tools:</p>
<h2 dir="auto">Feature request</h2> <p dir="auto"><strong>What is the expected behavior?</strong></p> <p dir="auto">right now cache writes absolute paths</p> <p dir="auto"><strong>What is motivation or use case for adding/changing the behavior?</strong></p> <p dir="auto">if all paths will be relative to cache folder it will allow to share cache</p> <p dir="auto"><strong>How should this be implemented in your opinion?</strong></p> <p dir="auto">Did not investigate this, yet</p> <p dir="auto"><strong>Are you willing to work on this yourself?</strong></p> <p dir="auto">Yes</p>
1
<h3 dir="auto">Bug report</h3> <p dir="auto"><strong>Bug summary</strong></p> <p dir="auto">Using tex (<code class="notranslate">rcParams["text.usetex"] = True</code>) results in an error because of a font name not being valid in current master. Works fine with matplotlib 2.2.3.</p> <p dir="auto"><strong>Code for reproduction</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import matplotlib.pyplot as plt plt.rcParams[&quot;text.usetex&quot;] = True plt.plot([1,2,3]) plt.show()"><pre class="notranslate"><code class="notranslate">import matplotlib.pyplot as plt plt.rcParams["text.usetex"] = True plt.plot([1,2,3]) plt.show() </code></pre></div> <p dir="auto"><strong>Actual outcome</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" File &quot;d:\***\matplotlib\lib\matplotlib\dviread.py&quot;, line 736, in __init__ with open(filename, 'rb') as file: OSError: [Errno 22] Invalid argument: 'D:/Programme/Office/MiKTeX/fonts/tfm/public/cm/cmr10.tfm\r'"><pre class="notranslate"><code class="notranslate"> File "d:\***\matplotlib\lib\matplotlib\dviread.py", line 736, in __init__ with open(filename, 'rb') as file: OSError: [Errno 22] Invalid argument: 'D:/Programme/Office/MiKTeX/fonts/tfm/public/cm/cmr10.tfm\r' </code></pre></div> <p dir="auto">I would suspect the <code class="notranslate">\r</code> simply does not belong at the end of the string.</p> <details> <summary>Complete Traceback</summary> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last): File &quot;d:\***\matplotlib\lib\matplotlib\backends\backend_qt5.py&quot;, line 519, in _draw_idle self.draw() File &quot;d:\***\matplotlib\lib\matplotlib\backends\backend_agg.py&quot;, line 399, in draw self.figure.draw(self.renderer) File &quot;d:\***\matplotlib\lib\matplotlib\artist.py&quot;, line 34, in draw_wrapper return draw(artist, renderer, *args, **kwargs) File &quot;d:\***\matplotlib\lib\matplotlib\figure.py&quot;, line 1649, in draw renderer, self, artists, self.suppressComposite) File &quot;d:\***\matplotlib\lib\matplotlib\image.py&quot;, line 137, in _draw_list_compositing_images a.draw(renderer) File &quot;d:\***\matplotlib\lib\matplotlib\artist.py&quot;, line 34, in draw_wrapper return draw(artist, renderer, *args, **kwargs) File &quot;d:\***\matplotlib\lib\matplotlib\axes\_base.py&quot;, line 2623, in draw mimage._draw_list_compositing_images(renderer, self, artists) File &quot;d:\***\matplotlib\lib\matplotlib\image.py&quot;, line 137, in _draw_list_compositing_images a.draw(renderer) File &quot;d:\***\matplotlib\lib\matplotlib\artist.py&quot;, line 34, in draw_wrapper return draw(artist, renderer, *args, **kwargs) File &quot;d:\***\matplotlib\lib\matplotlib\axis.py&quot;, line 1186, in draw renderer) File &quot;d:\***\matplotlib\lib\matplotlib\axis.py&quot;, line 1124, in _get_tick_bboxes extent = tick.label1.get_window_extent(renderer) File &quot;d:\***\matplotlib\lib\matplotlib\text.py&quot;, line 902, in get_window_extent bbox, info, descent = self._get_layout(self._renderer) File &quot;d:\***\matplotlib\lib\matplotlib\text.py&quot;, line 312, in _get_layout ismath=ismath) File &quot;d:\***\matplotlib\lib\matplotlib\backends\backend_agg.py&quot;, line 206, in get_text_width_height_descent s, fontsize, renderer=self) File &quot;d:\***\matplotlib\lib\matplotlib\texmanager.py&quot;, line 466, in get_text_width_height_descent page = next(iter(dvi)) File &quot;d:\***\matplotlib\lib\matplotlib\dviread.py&quot;, line 244, in __iter__ while self._read(): File &quot;d:\***\matplotlib\lib\matplotlib\dviread.py&quot;, line 302, in _read self._dtable[byte](self, byte) File &quot;d:\***\matplotlib\lib\matplotlib\dviread.py&quot;, line 162, in wrapper return method(self, *[f(self, byte-min) for f in get_args]) File &quot;d:\***\matplotlib\lib\matplotlib\dviread.py&quot;, line 442, in _fnt_def self._fnt_def_real(k, c, s, d, a, l) File &quot;d:\***\matplotlib\lib\matplotlib\dviread.py&quot;, line 447, in _fnt_def_real tfm = _tfmfile(fontname) File &quot;d:\***\matplotlib\lib\matplotlib\dviread.py&quot;, line 1035, in _fontfile return cls(filename) if filename else None File &quot;d:\***\matplotlib\lib\matplotlib\dviread.py&quot;, line 736, in __init__ with open(filename, 'rb') as file: OSError: [Errno 22] Invalid argument: 'D:/Programme/Office/MiKTeX/fonts/tfm/public/cm/cmr10.tfm\r'"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last): File "d:\***\matplotlib\lib\matplotlib\backends\backend_qt5.py", line 519, in _draw_idle self.draw() File "d:\***\matplotlib\lib\matplotlib\backends\backend_agg.py", line 399, in draw self.figure.draw(self.renderer) File "d:\***\matplotlib\lib\matplotlib\artist.py", line 34, in draw_wrapper return draw(artist, renderer, *args, **kwargs) File "d:\***\matplotlib\lib\matplotlib\figure.py", line 1649, in draw renderer, self, artists, self.suppressComposite) File "d:\***\matplotlib\lib\matplotlib\image.py", line 137, in _draw_list_compositing_images a.draw(renderer) File "d:\***\matplotlib\lib\matplotlib\artist.py", line 34, in draw_wrapper return draw(artist, renderer, *args, **kwargs) File "d:\***\matplotlib\lib\matplotlib\axes\_base.py", line 2623, in draw mimage._draw_list_compositing_images(renderer, self, artists) File "d:\***\matplotlib\lib\matplotlib\image.py", line 137, in _draw_list_compositing_images a.draw(renderer) File "d:\***\matplotlib\lib\matplotlib\artist.py", line 34, in draw_wrapper return draw(artist, renderer, *args, **kwargs) File "d:\***\matplotlib\lib\matplotlib\axis.py", line 1186, in draw renderer) File "d:\***\matplotlib\lib\matplotlib\axis.py", line 1124, in _get_tick_bboxes extent = tick.label1.get_window_extent(renderer) File "d:\***\matplotlib\lib\matplotlib\text.py", line 902, in get_window_extent bbox, info, descent = self._get_layout(self._renderer) File "d:\***\matplotlib\lib\matplotlib\text.py", line 312, in _get_layout ismath=ismath) File "d:\***\matplotlib\lib\matplotlib\backends\backend_agg.py", line 206, in get_text_width_height_descent s, fontsize, renderer=self) File "d:\***\matplotlib\lib\matplotlib\texmanager.py", line 466, in get_text_width_height_descent page = next(iter(dvi)) File "d:\***\matplotlib\lib\matplotlib\dviread.py", line 244, in __iter__ while self._read(): File "d:\***\matplotlib\lib\matplotlib\dviread.py", line 302, in _read self._dtable[byte](self, byte) File "d:\***\matplotlib\lib\matplotlib\dviread.py", line 162, in wrapper return method(self, *[f(self, byte-min) for f in get_args]) File "d:\***\matplotlib\lib\matplotlib\dviread.py", line 442, in _fnt_def self._fnt_def_real(k, c, s, d, a, l) File "d:\***\matplotlib\lib\matplotlib\dviread.py", line 447, in _fnt_def_real tfm = _tfmfile(fontname) File "d:\***\matplotlib\lib\matplotlib\dviread.py", line 1035, in _fontfile return cls(filename) if filename else None File "d:\***\matplotlib\lib\matplotlib\dviread.py", line 736, in __init__ with open(filename, 'rb') as file: OSError: [Errno 22] Invalid argument: 'D:/Programme/Office/MiKTeX/fonts/tfm/public/cm/cmr10.tfm\r' </code></pre></div> </details> <hr> <p dir="auto"><strong>Expected outcome</strong></p> <p dir="auto">No Error.</p> <p dir="auto"><strong>Matplotlib version</strong></p> <ul dir="auto"> <li>Operating system: Windows 8.1</li> <li>Matplotlib version: master</li> <li>Matplotlib backend (<code class="notranslate">print(matplotlib.get_backend())</code>): Qt5Agg</li> <li>Python version: 3.6</li> </ul>
<h3 dir="auto">Bug report</h3> <p dir="auto">I like to test my code against the bleeding edge version of matplotlib (by installing it in a conda virtual environment) on my work machine (Windows PC). Since I do not have admin rights to install the necessary tools to build from source, I download the wheels from appveyor and use pip install.</p> <p dir="auto">The following code snippet (representing a part of my working code) started giving an error after I installed "matplotlib-3.0.0rc1+424.g19420b97.dirty-cp36-cp36m-win_amd64.whl" (which corresponds to Merge pull request <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="363272624" data-permission-text="Title is private" data-url="https://github.com/matplotlib/matplotlib/issues/12253" data-hovercard-type="pull_request" data-hovercard-url="/matplotlib/matplotlib/pull/12253/hovercard" href="https://github.com/matplotlib/matplotlib/pull/12253">#12253</a> from anntzer/kpathsea-encoding FIX: Handle utf-8 output by kpathsea on Windows). The wheel which was built for the commit before that, matplotlib-3.0.0rc1+420.gb2c89917.dirty-cp36-cp36m-win_amd64.whl works fine (I reinstalled it and the code snippet works).</p> <p dir="auto">I am not sure if this is the right way to test the bleeding edge code (when you do not have admin rights to install the tools necessary to build from source). If the procedure I am following is not correct, please feel free to close the issue.</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="import matplotlib.pyplot as plt import numpy as np from matplotlib import rc rc('text', usetex=True) rc('text.latex', preamble=r'\usepackage{fourier}, \usepackage[T1]{fontenc}') fig, ax = plt.subplots() ax.plot(np.arange(10)) fig.savefig('test.pdf')"><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">from</span> <span class="pl-s1">matplotlib</span> <span class="pl-k">import</span> <span class="pl-s1">rc</span> <span class="pl-en">rc</span>(<span class="pl-s">'text'</span>, <span class="pl-s1">usetex</span><span class="pl-c1">=</span><span class="pl-c1">True</span>) <span class="pl-en">rc</span>(<span class="pl-s">'text.latex'</span>, <span class="pl-s1">preamble</span><span class="pl-c1">=</span><span class="pl-s">r'\usepackage{fourier}, \usepackage[T1]{fontenc}'</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">ax</span>.<span class="pl-en">plot</span>(<span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-c1">10</span>)) <span class="pl-s1">fig</span>.<span class="pl-en">savefig</span>(<span class="pl-s">'test.pdf'</span>)</pre></div> <p dir="auto"><strong>Actual outcome</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="OSError: [Errno 22] Invalid argument: 'C:/Program Files/MiKTeX 2.9/fonts/tfm/jknappen/ec/ecss1000.tfm \r'"><pre class="notranslate"><code class="notranslate">OSError: [Errno 22] Invalid argument: 'C:/Program Files/MiKTeX 2.9/fonts/tfm/jknappen/ec/ecss1000.tfm \r' </code></pre></div> <p dir="auto"><strong>Expected outcome</strong></p> <p dir="auto"><strong>Matplotlib version</strong></p> <ul dir="auto"> <li> <p dir="auto">Operating system: Windows 10</p> </li> <li> <p dir="auto">Matplotlib version: 3.0.0rc1+424.g19420b97.dirty</p> </li> <li> <p dir="auto">Matplotlib backend (<code class="notranslate">print(matplotlib.get_backend())</code>): Qt5Agg</p> </li> <li> <p dir="auto">Python version:</p> </li> <li> <p dir="auto">Jupyter version (if applicable):</p> </li> <li> <p dir="auto">Other libraries:</p> </li> </ul>
1
<h1 dir="auto">Bug report</h1> <p dir="auto"><strong>What is the current behavior?</strong></p> <p dir="auto">Running webpack throws an exception that <code class="notranslate">acorn</code> cannot be found:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[webpack-cli] Error: Cannot find module 'acorn' Require stack: - [root]\node_modules\acorn-import-assertions\lib\index.js - [root]\node_modules\webpack\lib\javascript\JavascriptParser.js - [root]\node_modules\webpack\lib\javascript\JavascriptModulesPlugin.js - [root]\node_modules\webpack\lib\WebpackOptionsApply.js - [root]\node_modules\webpack\lib\webpack.js - [root]\node_modules\webpack\lib\index.js - [root]\node_modules\webpack-cli\lib\webpack-cli.js - [root]\node_modules\webpack-cli\lib\bootstrap.js - [root]\node_modules\webpack-cli\bin\cli.js - [root]\node_modules\webpack\bin\webpack.js at Function.Module._resolveFilename (node:internal/modules/cjs/loader:933:15) at Function.Module._load (node:internal/modules/cjs/loader:778:27) at Module.require (node:internal/modules/cjs/loader:1005:19) at require (node:internal/modules/cjs/helpers:102:18) at Object.&lt;anonymous&gt; ([root]\node_modules\acorn-import-assertions\lib\index.js:8:38) at Module._compile (node:internal/modules/cjs/loader:1101:14) at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10) at Module.load (node:internal/modules/cjs/loader:981:32) at Function.Module._load (node:internal/modules/cjs/loader:822:12) at Module.require (node:internal/modules/cjs/loader:1005:19) { code: 'MODULE_NOT_FOUND', requireStack: [ '[root]\\node_modules\\acorn-import-assertions\\lib\\index.js', '[root]\\node_modules\\webpack\\lib\\javascript\\JavascriptParser.js', '[root]\\node_modules\\webpack\\lib\\javascript\\JavascriptModulesPlugin.js', '[root]\\node_modules\\webpack\\lib\\WebpackOptionsApply.js', '[root]\\node_modules\\webpack\\lib\\webpack.js', '[root]\\node_modules\\webpack\\lib\\index.js', '[root]\\node_modules\\webpack-cli\\lib\\webpack-cli.js', '[root]\\node_modules\\webpack-cli\\lib\\bootstrap.js', '[root]\\node_modules\\webpack-cli\\bin\\cli.js', '[root]\\node_modules\\webpack\\bin\\webpack.js' ] }"><pre class="notranslate"><code class="notranslate">[webpack-cli] Error: Cannot find module 'acorn' Require stack: - [root]\node_modules\acorn-import-assertions\lib\index.js - [root]\node_modules\webpack\lib\javascript\JavascriptParser.js - [root]\node_modules\webpack\lib\javascript\JavascriptModulesPlugin.js - [root]\node_modules\webpack\lib\WebpackOptionsApply.js - [root]\node_modules\webpack\lib\webpack.js - [root]\node_modules\webpack\lib\index.js - [root]\node_modules\webpack-cli\lib\webpack-cli.js - [root]\node_modules\webpack-cli\lib\bootstrap.js - [root]\node_modules\webpack-cli\bin\cli.js - [root]\node_modules\webpack\bin\webpack.js at Function.Module._resolveFilename (node:internal/modules/cjs/loader:933:15) at Function.Module._load (node:internal/modules/cjs/loader:778:27) at Module.require (node:internal/modules/cjs/loader:1005:19) at require (node:internal/modules/cjs/helpers:102:18) at Object.&lt;anonymous&gt; ([root]\node_modules\acorn-import-assertions\lib\index.js:8:38) at Module._compile (node:internal/modules/cjs/loader:1101:14) at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10) at Module.load (node:internal/modules/cjs/loader:981:32) at Function.Module._load (node:internal/modules/cjs/loader:822:12) at Module.require (node:internal/modules/cjs/loader:1005:19) { code: 'MODULE_NOT_FOUND', requireStack: [ '[root]\\node_modules\\acorn-import-assertions\\lib\\index.js', '[root]\\node_modules\\webpack\\lib\\javascript\\JavascriptParser.js', '[root]\\node_modules\\webpack\\lib\\javascript\\JavascriptModulesPlugin.js', '[root]\\node_modules\\webpack\\lib\\WebpackOptionsApply.js', '[root]\\node_modules\\webpack\\lib\\webpack.js', '[root]\\node_modules\\webpack\\lib\\index.js', '[root]\\node_modules\\webpack-cli\\lib\\webpack-cli.js', '[root]\\node_modules\\webpack-cli\\lib\\bootstrap.js', '[root]\\node_modules\\webpack-cli\\bin\\cli.js', '[root]\\node_modules\\webpack\\bin\\webpack.js' ] } </code></pre></div> <p dir="auto">NOTE: <code class="notranslate">node_modules/webpack/node_modules/acorn</code> exists, but this is invisible to <code class="notranslate">node_modules/acorn-import-assertions</code> since it's at the wrong level (I think).</p> <p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong></p> <p dir="auto">I need some time to create a repro, let me know if it's needed.</p> <p dir="auto">It seems to happen though when another dependency in the same project has a version-incompatible dependency on <code class="notranslate">acorn</code> (e.g. 7 instead of 8) leading to <code class="notranslate">acorn</code> being duplicated and pushed deeper inside the tree.</p> <p dir="auto"><strong>What is the expected behavior?</strong></p> <p dir="auto"><strong>Other relevant information:</strong><br> webpack version: 5.65.0<br> Node.js version: 16.13.1<br> Operating System: Windows 11<br> Additional tools: npm 8.3.0</p>
<p dir="auto"><em>Update: On further investigation, it seems that there's a very significant mismatch between webpack Wasm semantics and the early draft proposed standard, in terms of when Wasm instantiation happens. I'm happy to have the help of the webpack team here, with your experience this space and success building a working system. Let's keep discussing this to figure out what semantics should be standardized.</em></p> <h2 dir="auto">Feature request</h2> <p dir="auto">The WebAssembly CG is working on standardizing the integration of WebAssembly modules and ES Modules. The <a href="https://github.com/WebAssembly/esm-integration/blob/e098188221887871410616ba1e186740c9d4aa86/proposals/esm-integration/README.md">proposal's semantics</a> are very similar to what webpack's experimental WebAssembly support. However, there may be some minor differences. This issue is intended to be an umbrella bug to track the general effort to add tests against the new proposal and semantic changes to match it.</p> <p dir="auto"><strong>What is the expected behavior?</strong></p> <p dir="auto">That webpack's WebAssembly module support would match the new specification.</p> <p dir="auto"><strong>What is motivation or use case for adding/changing the behavior?</strong></p> <ul dir="auto"> <li>All documentation about wasm and ESM (the spec itself, MDN, other developer resources) could match up with webpack's implementation</li> <li>Bring compatibility among bundlers, to make things easier for programmers</li> <li>Make native modules and webpack behave the same, in case the same code may be used both with webpack and as a native module</li> </ul> <p dir="auto"><strong>How should this be implemented in your opinion?</strong></p> <p dir="auto">Let's start with tests. Long-term, it'd be best if tests are part of web-platform-tests and imported into webpack; that's a bit of an unsolved problem for now, though, so the initial plan is to develop tests directly against webpack in a PR.</p> <p dir="auto">Test plan:</p> <ul dir="auto"> <li>Convert the remaining .wasm tests to .wat for easier development</li> <li>Exports of globals from Wasm are imported as WebAssembly.Global<br> objects, not Numbers (this looks likely to be an existing spec violation)</li> <li>Imports of Numbers become only immutable, not mutable, Global objects,<br> and undergo rounding based on the declared type</li> <li>A WebAssembly.Table, Memory or Global instance, or exported Wasm<br> function, exported JS -&gt; Wasm -&gt; JS, comes out with the same identity</li> <li>A cycle Wasm &lt;-&gt; JS, with Wasm on top, leads to a TDZ error for<br> Memory, Global or Table, but hoisted functions work, and Wasm things are<br> all initialized by the time the JS top-level statement runs</li> <li>A cycle JS &lt;-&gt; Wasm, with JS on top, lets Wasm's start function access<br> Memory, Global, Table and functions, but using Wasm exports too early<br> leads to TDZ</li> <li>Variables imported JS -&gt; Wasm are snapshotted (whether you overwrite a<br> bare Number or function, or an entire Memory, Global or Table object<br> which isn't replaced when the variable containing it is overwritten)</li> <li>Memory, Table and mutable Global can be mutated by JS code that's<br> called out from Wasm code, and the mutations are observed from Wasm</li> <li>LinkError results if there is a type mismatch when importing into<br> WebAssembly (whether it's from JS or Wasm)</li> <li>Circular Wasm modules result in an error before any start function<br> executes</li> <li>All Wasm modules in the module graph are validated before any start<br> function runs or JS modules are evaluated; failing validation throws a<br> CompileError</li> <li>The same Wasm module can be imported multiple times (both from JS and<br> Wasm) and only one copy of it is made (1 start function evaluation, 1<br> memory/table/global identity, etc)</li> <li>The name (number) of exported functions, and the enumeration order of<br> exports overall, matches the JS API specification</li> <li>Wasm modules can be imported from an ordinary import inside an inline<br> a JS module and a dynamic import from either a script or a JS module</li> <li>Some parts of the semantics will probably be different in webpack and with native ESM; these tests might only be landed in wpt and not in webpack: <ul dir="auto"> <li>The return value of import() for a Wasm module is a<br> module namespace exotic object, similar to that of native modules<br> (WebPack will need to take shortcuts here)</li> <li>The same resource can be used both as a Wasm module as<br> well as through instantiateStreaming, and there's no observable<br> caching/sharing between these</li> <li>The choice between interpreting as JS and Wasm is<br> based on the mimetype and nothing else; many URL types work (blob, data,<br> served from SW), CSP is checked appropriately, the modern CORS settings<br> are used for the fetch, etc.</li> </ul> </li> </ul> <p dir="auto"><strong>Are you willing to work on this yourself?</strong></p> <p dir="auto">I plan to start implementing the test plan described above. (I wouldn't mind help here, cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Ms2ger/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Ms2ger">@Ms2ger</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/xtuc/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/xtuc">@xtuc</a>) I am not sure when I would have time to implement the changes in webpack; definitely not before the end of this year.</p>
0
<p dir="auto"><strong>Migrated issue, originally created by Anonymous</strong></p> <p dir="auto">inserting multiple rows using single list of row values doesn't work, ex.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="conn.execute(&quot;insert into users (user_id, user_name) values (?, ?)&quot;, [(10,&quot;donkey&quot;)]((9,&quot;barney&quot;),))"><pre class="notranslate"><code class="notranslate">conn.execute("insert into users (user_id, user_name) values (?, ?)", [(10,"donkey")]((9,"barney"),)) </code></pre></div> <p dir="auto">or</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" conn.execute(&quot;insert into users (user_id, user_name) values (%s, %s)&quot;, [[4,&quot;ed&quot;]([4,&quot;ed&quot;), [5,&quot;horse&quot;](5,&quot;horse&quot;)])"><pre class="notranslate"><code class="notranslate"> conn.execute("insert into users (user_id, user_name) values (%s, %s)", [[4,"ed"]([4,"ed"), [5,"horse"](5,"horse")]) </code></pre></div> <p dir="auto">Attached patch fixes this.</p>
<p dir="auto">I have a specific model configuration where queries using limit() on a relationship are not returning the expected number of rows.</p> <p dir="auto">In this example, staff is defined as a relationship on the School model as such:<br> <code class="notranslate">staff = db.relationship( 'User', secondary='grant', primaryjoin='School.id==Grant.school_staff_target_id', secondaryjoin='Grant.user_id==User.id', lazy='dynamic', backref='schools_staff' )</code></p> <p dir="auto">Getting all rows with this query returns two rows, as expected:<br> <code class="notranslate">staff = School.query.filter_by(id='5d2ab3bb1f28426f8148e47543b1cbee').one()\ .staff.filter_by(deleted=False).all()</code></p> <p dir="auto">This query, using <code class="notranslate">limit(2)</code>, only returns one row:<br> <code class="notranslate">staff = School.query.filter_by(id='5d2ab3bb1f28426f8148e47543b1cbee').one()\ .staff.filter_by(deleted=False).limit(2).all()</code></p> <p dir="auto">Whereas this query, using <code class="notranslate">limit(3)</code>, returns both rows (expected):<br> <code class="notranslate">staff = School.query.filter_by(id='5d2ab3bb1f28426f8148e47543b1cbee').one()\ .staff.filter_by(deleted=False).limit(3).all()</code></p>
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/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/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.6</li> <li>Operating System version: Mac 10.15</li> <li>Java version: 11<br> registry:nacos 1.2.0</li> </ul> <h3 dir="auto">Steps to reproduce this issue</h3> <ol dir="auto"> <li>在停应用时,出现以下错误</li> </ol> <p dir="auto">Pls. provide [GitHub address] to reproduce this issue.</p> <h3 dir="auto">Expected Result</h3> <p dir="auto">What do you expected from the above steps?</p> <h3 dir="auto">Actual Result</h3> <p dir="auto">What actually happens?</p> <p dir="auto">If there is an exception, please attach the exception trace:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2020-04-17 17:53:01.735 INFO 41463 DubboShutdownHook o.a.d.r.n.NacosRegistry : [DUBBO] Destroy unsubscribe url consumer://169.254.202.113/org.apache.dubbo.rpc.service.GenericService?application=dubbo-admin-gateway&amp;category=providers,configurators,routers&amp;check=false&amp;connections=0&amp;dubbo=2.0.2&amp;generic=true&amp;interface=com.bw.api.UiPageTableService&amp;pid=41463&amp;qos.enable=false&amp;qos.port=22222&amp;release=2.7.6&amp;retries=0&amp;side=consumer&amp;sticky=false&amp;timeout=32000&amp;timestamp=1587116295070&amp;version=1.0.0, dubbo version: 2.7.6, current host: 169.254.202.113 Exception in thread &quot;DubboShutdownHook&quot; java.lang.RuntimeException: java.util.ConcurrentModificationException at org.apache.dubbo.common.function.ThrowableAction.execute(ThrowableAction.java:48) at org.apache.dubbo.common.lang.ShutdownHookCallbacks.lambda$callback$0(ShutdownHookCallbacks.java:70) at java.base/java.lang.Iterable.forEach(Iterable.java:75) at org.apache.dubbo.common.lang.ShutdownHookCallbacks.callback(ShutdownHookCallbacks.java:70) at org.apache.dubbo.config.DubboShutdownHook.callback(DubboShutdownHook.java:85) at org.apache.dubbo.config.DubboShutdownHook.run(DubboShutdownHook.java:73) Caused by: java.util.ConcurrentModificationException at java.base/java.util.HashMap$HashIterator.nextNode(HashMap.java:1493) at java.base/java.util.HashMap$ValueIterator.next(HashMap.java:1521) at java.base/java.util.Collections$UnmodifiableCollection$1.next(Collections.java:1047) at org.apache.dubbo.registry.support.AbstractRegistryFactory.destroyAll(AbstractRegistryFactory.java:85) at org.apache.dubbo.config.DubboShutdownHook.destroyAll(DubboShutdownHook.java:128) at org.apache.dubbo.config.bootstrap.DubboBootstrap.destroy(DubboBootstrap.java:1039) at org.apache.dubbo.config.bootstrap.DubboBootstrap$1.callback(DubboBootstrap.java:191) at org.apache.dubbo.common.function.ThrowableAction.execute(ThrowableAction.java:46) ... 5 more ^C2020-04-17 17:53:02.036 INFO 41463 SpringContextShutdownHook c.a.c.n.r.NacosServiceRegistry : De-registering from Nacos Server now... 2020-04-17 17:53:02.041 INFO 41463 SpringContextShutdownHook c.a.c.n.r.NacosServiceRegistry : De-registration finished. "><pre class="notranslate"><code class="notranslate">2020-04-17 17:53:01.735 INFO 41463 DubboShutdownHook o.a.d.r.n.NacosRegistry : [DUBBO] Destroy unsubscribe url consumer://169.254.202.113/org.apache.dubbo.rpc.service.GenericService?application=dubbo-admin-gateway&amp;category=providers,configurators,routers&amp;check=false&amp;connections=0&amp;dubbo=2.0.2&amp;generic=true&amp;interface=com.bw.api.UiPageTableService&amp;pid=41463&amp;qos.enable=false&amp;qos.port=22222&amp;release=2.7.6&amp;retries=0&amp;side=consumer&amp;sticky=false&amp;timeout=32000&amp;timestamp=1587116295070&amp;version=1.0.0, dubbo version: 2.7.6, current host: 169.254.202.113 Exception in thread "DubboShutdownHook" java.lang.RuntimeException: java.util.ConcurrentModificationException at org.apache.dubbo.common.function.ThrowableAction.execute(ThrowableAction.java:48) at org.apache.dubbo.common.lang.ShutdownHookCallbacks.lambda$callback$0(ShutdownHookCallbacks.java:70) at java.base/java.lang.Iterable.forEach(Iterable.java:75) at org.apache.dubbo.common.lang.ShutdownHookCallbacks.callback(ShutdownHookCallbacks.java:70) at org.apache.dubbo.config.DubboShutdownHook.callback(DubboShutdownHook.java:85) at org.apache.dubbo.config.DubboShutdownHook.run(DubboShutdownHook.java:73) Caused by: java.util.ConcurrentModificationException at java.base/java.util.HashMap$HashIterator.nextNode(HashMap.java:1493) at java.base/java.util.HashMap$ValueIterator.next(HashMap.java:1521) at java.base/java.util.Collections$UnmodifiableCollection$1.next(Collections.java:1047) at org.apache.dubbo.registry.support.AbstractRegistryFactory.destroyAll(AbstractRegistryFactory.java:85) at org.apache.dubbo.config.DubboShutdownHook.destroyAll(DubboShutdownHook.java:128) at org.apache.dubbo.config.bootstrap.DubboBootstrap.destroy(DubboBootstrap.java:1039) at org.apache.dubbo.config.bootstrap.DubboBootstrap$1.callback(DubboBootstrap.java:191) at org.apache.dubbo.common.function.ThrowableAction.execute(ThrowableAction.java:46) ... 5 more ^C2020-04-17 17:53:02.036 INFO 41463 SpringContextShutdownHook c.a.c.n.r.NacosServiceRegistry : De-registering from Nacos Server now... 2020-04-17 17:53:02.041 INFO 41463 SpringContextShutdownHook c.a.c.n.r.NacosServiceRegistry : De-registration finished. </code></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/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" checked=""> 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> </ul> <h3 dir="auto">Steps to reproduce this issue</h3> <ol dir="auto"> <li>Interface without package.</li> </ol> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1424920/53320488-ca6e5880-3910-11e9-9493-e074ff1f91a7.png"><img src="https://user-images.githubusercontent.com/1424920/53320488-ca6e5880-3910-11e9-9493-e074ff1f91a7.png" alt="image" style="max-width: 100%;"></a></p> <ol start="2" dir="auto"> <li>Export service.</li> </ol> <div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="serviceConfig.setInterface(HelloService.class.getName()); serviceConfig.setRef(new HelloServiceImpl());"><pre class="notranslate"><span class="pl-s1">serviceConfig</span>.<span class="pl-en">setInterface</span>(<span class="pl-smi">HelloService</span>.<span class="pl-k">class</span>.<span class="pl-en">getName</span>()); <span class="pl-s1">serviceConfig</span>.<span class="pl-en">setRef</span>(<span class="pl-k">new</span> <span class="pl-smi">HelloServiceImpl</span>());</pre></div> <h3 dir="auto">Expected Result</h3> <p dir="auto">Export service.</p> <h3 dir="auto">Actual Result</h3> <p dir="auto">Catch NPE when export service.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="java.lang.NullPointerException at com.alibaba.dubbo.common.Version.getVersion(Version.java:127) at com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:440) at com.alibaba.dubbo.config.ServiceConfig.doExportUrls(ServiceConfig.java:358) at com.alibaba.dubbo.config.ServiceConfig.doExport(ServiceConfig.java:317)"><pre class="notranslate"><code class="notranslate">java.lang.NullPointerException at com.alibaba.dubbo.common.Version.getVersion(Version.java:127) at com.alibaba.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:440) at com.alibaba.dubbo.config.ServiceConfig.doExportUrls(ServiceConfig.java:358) at com.alibaba.dubbo.config.ServiceConfig.doExport(ServiceConfig.java:317) </code></pre></div>
0
<p dir="auto">To completely fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="53324949" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript/issues/1587" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/1587/hovercard" href="https://github.com/microsoft/TypeScript/issues/1587">#1587</a> TypeScript should also support:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function repro(message: Object | Object[]) { if (message instanceof Array) { message = message.filter; // error } }"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">repro</span><span class="pl-kos">(</span><span class="pl-s1">message</span>: <span class="pl-smi">Object</span> <span class="pl-c1">|</span> <span class="pl-smi">Object</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">if</span> <span class="pl-kos">(</span><span class="pl-s1">message</span> <span class="pl-k">instanceof</span> <span class="pl-smi">Array</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-s1">message</span> <span class="pl-c1">=</span> <span class="pl-s1">message</span><span class="pl-kos">.</span><span class="pl-c1">filter</span><span class="pl-kos">;</span> <span class="pl-c">// error</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">Currently it results in <code class="notranslate">Property 'entries' does not exist on type 'Object | Object[]'</code>. It seems <code class="notranslate">message</code> on the RHS switches from <code class="notranslate">Array</code> back to <code class="notranslate">Object | Object[]</code> prematurely.</p> <p dir="auto">Workaround:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function workaround(message: Object | Object[]) { var theMessage = message; if (theMessage instanceof Array) { message = theMessage.filter; } }"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">workaround</span><span class="pl-kos">(</span><span class="pl-s1">message</span>: <span class="pl-smi">Object</span> <span class="pl-c1">|</span> <span class="pl-smi">Object</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">var</span> <span class="pl-s1">theMessage</span> <span class="pl-c1">=</span> <span class="pl-s1">message</span><span class="pl-kos">;</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">theMessage</span> <span class="pl-k">instanceof</span> <span class="pl-smi">Array</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-s1">message</span> <span class="pl-c1">=</span> <span class="pl-s1">theMessage</span><span class="pl-kos">.</span><span class="pl-c1">filter</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span></pre></div>
<p dir="auto"><strong>TS 1.4</strong></p> <p dir="auto">Type guard fails to narrow the union type when returning early.</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function foo(x: number | string) { if (typeof x === 'string') { return; } // x should now be a number if (2 % x !== 0) { // do something } }"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-s1">x</span>: <span class="pl-smi">number</span> <span class="pl-c1">|</span> <span class="pl-smi">string</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-k">typeof</span> <span class="pl-s1">x</span> <span class="pl-c1">===</span> <span class="pl-s">'string'</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-c">// x should now be a number</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-c1">2</span> <span class="pl-c1">%</span> <span class="pl-s1">x</span> <span class="pl-c1">!==</span> <span class="pl-c1">0</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-c">// do something</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">Unfortunately, I get the following compiler error:</p> <blockquote> <p dir="auto">The right-hand side of an arithmetic operation must be of type 'any', 'number' or an enum type.</p> </blockquote> <p dir="auto">Clearly, the compiler should know at this point that it can't possibly be dealing with a <code class="notranslate">string</code>, as that scenario has already been returned.</p>
1
<h3 dir="auto">Vue.js version</h3> <p dir="auto">2.0.3</p> <h3 dir="auto">Reproduction Link</h3> <p dir="auto"><a href="https://jsbin.com/lurayuxofo/edit?html,js,console,output" rel="nofollow">https://jsbin.com/lurayuxofo/edit?html,js,console,output</a></p> <h3 dir="auto">Steps to reproduce</h3> <ol dir="auto"> <li>Include inline SVG with some styles within a Vue instance</li> <li>Init vue instance</li> </ol> <h3 dir="auto">What is Expected?</h3> <ol dir="auto"> <li>SVG to be styled according to the style element</li> </ol> <h3 dir="auto">What is actually happening?</h3> <ol dir="auto"> <li>Vue is giving a warning "[Vue warn]: Templates should only be responsible for mapping the state to the UI. Avoid placing tags with side-effects in your templates, such as &lt;style&gt;. " and also stripping the style element so the SVG is appearing with no style.</li> </ol>
<h3 dir="auto">What problem does this feature solve?</h3> <p dir="auto">From compiling template error message:<br> <code class="notranslate">Component template should contain exactly one root element. If you are using v-if on multiple elements, use v-else-if to chain them instead.</code><br> But <code class="notranslate">Cannot use </code><code class="notranslate"> as component root element because it may contain multiple nodes.</code></p><p dir="auto"></p> <p dir="auto">So I can't use <code class="notranslate">&lt;template&gt;</code> as component root element even if it contains only one node.</p> <h3 dir="auto">What does the proposed API look like?</h3> <p dir="auto"><strong>Allow the following code as component root.</strong></p> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;template v-if=&quot;conditionA&quot;&gt; &lt;div v-if=&quot;conditionC&quot;&gt;&lt;/div&gt; &lt;div v-else-if=&quot;conditionD&quot;&gt;&lt;/div&gt; &lt;div v-else&gt;&lt;/div&gt; &lt;/template&gt; &lt;template v-else&gt; &lt;div&gt;&lt;/div&gt; &lt;/template&gt;"><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">template</span> <span class="pl-c1">v-if</span>="<span class="pl-s">conditionA</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">v-if</span>="<span class="pl-s">conditionC</span>"<span class="pl-kos">&gt;</span><span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">v-else-if</span>="<span class="pl-s">conditionD</span>"<span class="pl-kos">&gt;</span><span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">v-else</span><span class="pl-kos">&gt;</span><span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">template</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">template</span> <span class="pl-c1">v-else</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span><span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">template</span><span class="pl-kos">&gt;</span></pre></div> <p dir="auto"><strong>Do not allow the following code as component root.</strong></p> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;template&gt; &lt;div v-if=&quot;conditionA&quot;&gt;&lt;/div&gt; &lt;div v-if=&quot;conditionB&quot;&gt;&lt;/div&gt; &lt;/template&gt;"><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">template</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">v-if</span>="<span class="pl-s">conditionA</span>"<span class="pl-kos">&gt;</span><span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">v-if</span>="<span class="pl-s">conditionB</span>"<span class="pl-kos">&gt;</span><span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">template</span><span class="pl-kos">&gt;</span></pre></div> <p></p>
0
<h2 dir="auto">Expected Result</h2> <p dir="auto">Displays the proxy IP address</p> <h2 dir="auto">Actual Result</h2> <p dir="auto">Traceback (most recent call last):<br> File "/Users/cheney/code/python/tools/venv/lib/python3.8/site-packages/urllib3/connectionpool.py", line 696, in urlopen<br> self._prepare_proxy(conn)<br> File "/Users/cheney/code/python/tools/venv/lib/python3.8/site-packages/urllib3/connectionpool.py", line 964, in _prepare_proxy<br> conn.connect()<br> File "/Users/cheney/code/python/tools/venv/lib/python3.8/site-packages/urllib3/connection.py", line 371, in connect<br> self._tunnel()<br> File "/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/http/client.py", line 902, in _tunnel<br> raise OSError("Tunnel connection failed: %d %s" % (code,<br> OSError: Tunnel connection failed: 407 Proxy Authentication Required</p> <p dir="auto">During handling of the above exception, another exception occurred:</p> <p dir="auto">Traceback (most recent call last):<br> File "/Users/cheney/code/python/tools/venv/lib/python3.8/site-packages/requests/adapters.py", line 440, in send<br> resp = conn.urlopen(<br> File "/Users/cheney/code/python/tools/venv/lib/python3.8/site-packages/urllib3/connectionpool.py", line 755, in urlopen<br> retries = retries.increment(<br> File "/Users/cheney/code/python/tools/venv/lib/python3.8/site-packages/urllib3/util/retry.py", line 574, in increment<br> raise MaxRetryError(_pool, url, error or ResponseError(cause))<br> urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='ifconfig.me', port=443): Max retries exceeded with url: / (Caused by ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 407 Proxy Authentication Required')))</p> <p dir="auto">During handling of the above exception, another exception occurred:</p> <p dir="auto">Traceback (most recent call last):<br> File "/Users/cheney/code/python/tools/test.py", line 17, in <br> res = requests.get("<a href="https://ifconfig.me" rel="nofollow">https://ifconfig.me</a>", proxies=proxies)<br> File "/Users/cheney/code/python/tools/venv/lib/python3.8/site-packages/requests/api.py", line 75, in get<br> return request('get', url, params=params, **kwargs)<br> File "/Users/cheney/code/python/tools/venv/lib/python3.8/site-packages/requests/api.py", line 61, in request<br> return session.request(method=method, url=url, **kwargs)<br> File "/Users/cheney/code/python/tools/venv/lib/python3.8/site-packages/requests/sessions.py", line 529, in request<br> resp = self.send(prep, **send_kwargs)<br> File "/Users/cheney/code/python/tools/venv/lib/python3.8/site-packages/requests/sessions.py", line 645, in send<br> r = adapter.send(request, **kwargs)<br> File "/Users/cheney/code/python/tools/venv/lib/python3.8/site-packages/requests/adapters.py", line 513, in send<br> raise ProxyError(e, request=request)<br> requests.exceptions.ProxyError: HTTPSConnectionPool(host='ifconfig.me', port=443): Max retries exceeded with url: / (Caused by ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 407 Proxy Authentication Required')))</p> <h2 dir="auto">Reproduction Steps</h2> <p dir="auto">When using a proxy that requires basic authentication to access an HTTPS (not HTTP) address, the system gives an error. The code is as follows:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import requests proxy_string = 'http://{}:{}@{}:{}'.format(username, password, proxyHost, proxyPort) proxies = {&quot;http&quot;: proxy_string, &quot;https&quot;: proxy_string} res = requests.get(&quot;https://ifconfig.me&quot;, proxies=proxies) print(res.text) "><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">requests</span> <span class="pl-s1">proxy_string</span> <span class="pl-c1">=</span> <span class="pl-s">'http://{}:{}@{}:{}'</span>.<span class="pl-en">format</span>(<span class="pl-s1">username</span>, <span class="pl-s1">password</span>, <span class="pl-s1">proxyHost</span>, <span class="pl-s1">proxyPort</span>) <span class="pl-s1">proxies</span> <span class="pl-c1">=</span> {<span class="pl-s">"http"</span>: <span class="pl-s1">proxy_string</span>, <span class="pl-s">"https"</span>: <span class="pl-s1">proxy_string</span>} <span class="pl-s1">res</span> <span class="pl-c1">=</span> <span class="pl-s1">requests</span>.<span class="pl-en">get</span>(<span class="pl-s">"https://ifconfig.me"</span>, <span class="pl-s1">proxies</span><span class="pl-c1">=</span><span class="pl-s1">proxies</span>) <span class="pl-en">print</span>(<span class="pl-s1">res</span>.<span class="pl-s1">text</span>)</pre></div> <p dir="auto">It should be noted that the same code can run normally in Windows system, but there are problems with MacOS</p> <h2 dir="auto">System Information</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python -m requests.help"><pre class="notranslate"><code class="notranslate">$ python -m requests.help </code></pre></div> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ &quot;chardet&quot;: { &quot;version&quot;: null }, &quot;charset_normalizer&quot;: { &quot;version&quot;: &quot;2.0.10&quot; }, &quot;cryptography&quot;: { &quot;version&quot;: &quot;&quot; }, &quot;idna&quot;: { &quot;version&quot;: &quot;3.3&quot; }, &quot;implementation&quot;: { &quot;name&quot;: &quot;CPython&quot;, &quot;version&quot;: &quot;3.8.2&quot; }, &quot;platform&quot;: { &quot;release&quot;: &quot;21.1.0&quot;, &quot;system&quot;: &quot;Darwin&quot; }, &quot;pyOpenSSL&quot;: { &quot;openssl_version&quot;: &quot;&quot;, &quot;version&quot;: null }, &quot;requests&quot;: { &quot;version&quot;: &quot;2.27.0&quot; }, &quot;system_ssl&quot;: { &quot;version&quot;: &quot;20000000&quot; }, &quot;urllib3&quot;: { &quot;version&quot;: &quot;1.26.7&quot; }, &quot;using_charset_normalizer&quot;: true, &quot;using_pyopenssl&quot;: false }"><pre class="notranslate">{ <span class="pl-ent">"chardet"</span>: { <span class="pl-ent">"version"</span>: <span class="pl-c1">null</span> }, <span class="pl-ent">"charset_normalizer"</span>: { <span class="pl-ent">"version"</span>: <span class="pl-s"><span class="pl-pds">"</span>2.0.10<span class="pl-pds">"</span></span> }, <span class="pl-ent">"cryptography"</span>: { <span class="pl-ent">"version"</span>: <span class="pl-s"><span class="pl-pds">"</span><span class="pl-pds">"</span></span> }, <span class="pl-ent">"idna"</span>: { <span class="pl-ent">"version"</span>: <span class="pl-s"><span class="pl-pds">"</span>3.3<span class="pl-pds">"</span></span> }, <span class="pl-ent">"implementation"</span>: { <span class="pl-ent">"name"</span>: <span class="pl-s"><span class="pl-pds">"</span>CPython<span class="pl-pds">"</span></span>, <span class="pl-ent">"version"</span>: <span class="pl-s"><span class="pl-pds">"</span>3.8.2<span class="pl-pds">"</span></span> }, <span class="pl-ent">"platform"</span>: { <span class="pl-ent">"release"</span>: <span class="pl-s"><span class="pl-pds">"</span>21.1.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"system"</span>: <span class="pl-s"><span class="pl-pds">"</span>Darwin<span class="pl-pds">"</span></span> }, <span class="pl-ent">"pyOpenSSL"</span>: { <span class="pl-ent">"openssl_version"</span>: <span class="pl-s"><span class="pl-pds">"</span><span class="pl-pds">"</span></span>, <span class="pl-ent">"version"</span>: <span class="pl-c1">null</span> }, <span class="pl-ent">"requests"</span>: { <span class="pl-ent">"version"</span>: <span class="pl-s"><span class="pl-pds">"</span>2.27.0<span class="pl-pds">"</span></span> }, <span class="pl-ent">"system_ssl"</span>: { <span class="pl-ent">"version"</span>: <span class="pl-s"><span class="pl-pds">"</span>20000000<span class="pl-pds">"</span></span> }, <span class="pl-ent">"urllib3"</span>: { <span class="pl-ent">"version"</span>: <span class="pl-s"><span class="pl-pds">"</span>1.26.7<span class="pl-pds">"</span></span> }, <span class="pl-ent">"using_charset_normalizer"</span>: <span class="pl-c1">true</span>, <span class="pl-ent">"using_pyopenssl"</span>: <span class="pl-c1">false</span> }</pre></div>
<p dir="auto">When using proxies in python 3.8.12, I get an error 407. Using any other version of python works fine. I am assuming it could be to do with this <a href="https://docs.python.org/3/whatsnew/3.8.html#notable-changes-in-python-3-8-12" rel="nofollow">https://docs.python.org/3/whatsnew/3.8.html#notable-changes-in-python-3-8-12</a>.</p> <p dir="auto">I should get a status of 200.</p> <p dir="auto">I get a status code of 407.</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import requests r = requests.get('https://example.org/', proxies=proxies) # You will need a proxy to test with, I am using a paid service. print(r.status_code) "><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">requests</span> <span class="pl-s1">r</span> <span class="pl-c1">=</span> <span class="pl-s1">requests</span>.<span class="pl-en">get</span>(<span class="pl-s">'https://example.org/'</span>, <span class="pl-s1">proxies</span><span class="pl-c1">=</span><span class="pl-s1">proxies</span>) <span class="pl-c"># You will need a proxy to test with, I am using a paid service.</span> <span class="pl-en">print</span>(<span class="pl-s1">r</span>.<span class="pl-s1">status_code</span>)</pre></div> <h2 dir="auto">System Information</h2> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ &quot;chardet&quot;: { &quot;version&quot;: null }, &quot;charset_normalizer&quot;: { &quot;version&quot;: &quot;2.0.9&quot; }, &quot;cryptography&quot;: { &quot;version&quot;: &quot;&quot; }, &quot;idna&quot;: { &quot;version&quot;: &quot;3.3&quot; }, &quot;implementation&quot;: { &quot;name&quot;: &quot;CPython&quot;, &quot;version&quot;: &quot;3.8.12&quot; }, &quot;platform&quot;: { &quot;release&quot;: &quot;5.13.0-7620-generic&quot;, &quot;system&quot;: &quot;Linux&quot; }, &quot;pyOpenSSL&quot;: { &quot;openssl_version&quot;: &quot;&quot;, &quot;version&quot;: null }, &quot;requests&quot;: { &quot;version&quot;: &quot;2.27.0&quot; }, &quot;system_ssl&quot;: { &quot;version&quot;: &quot;101010cf&quot; }, &quot;urllib3&quot;: { &quot;version&quot;: &quot;1.26.7&quot; }, &quot;using_charset_normalizer&quot;: true, &quot;using_pyopenssl&quot;: false }"><pre class="notranslate">{ <span class="pl-ent">"chardet"</span>: { <span class="pl-ent">"version"</span>: <span class="pl-c1">null</span> }, <span class="pl-ent">"charset_normalizer"</span>: { <span class="pl-ent">"version"</span>: <span class="pl-s"><span class="pl-pds">"</span>2.0.9<span class="pl-pds">"</span></span> }, <span class="pl-ent">"cryptography"</span>: { <span class="pl-ent">"version"</span>: <span class="pl-s"><span class="pl-pds">"</span><span class="pl-pds">"</span></span> }, <span class="pl-ent">"idna"</span>: { <span class="pl-ent">"version"</span>: <span class="pl-s"><span class="pl-pds">"</span>3.3<span class="pl-pds">"</span></span> }, <span class="pl-ent">"implementation"</span>: { <span class="pl-ent">"name"</span>: <span class="pl-s"><span class="pl-pds">"</span>CPython<span class="pl-pds">"</span></span>, <span class="pl-ent">"version"</span>: <span class="pl-s"><span class="pl-pds">"</span>3.8.12<span class="pl-pds">"</span></span> }, <span class="pl-ent">"platform"</span>: { <span class="pl-ent">"release"</span>: <span class="pl-s"><span class="pl-pds">"</span>5.13.0-7620-generic<span class="pl-pds">"</span></span>, <span class="pl-ent">"system"</span>: <span class="pl-s"><span class="pl-pds">"</span>Linux<span class="pl-pds">"</span></span> }, <span class="pl-ent">"pyOpenSSL"</span>: { <span class="pl-ent">"openssl_version"</span>: <span class="pl-s"><span class="pl-pds">"</span><span class="pl-pds">"</span></span>, <span class="pl-ent">"version"</span>: <span class="pl-c1">null</span> }, <span class="pl-ent">"requests"</span>: { <span class="pl-ent">"version"</span>: <span class="pl-s"><span class="pl-pds">"</span>2.27.0<span class="pl-pds">"</span></span> }, <span class="pl-ent">"system_ssl"</span>: { <span class="pl-ent">"version"</span>: <span class="pl-s"><span class="pl-pds">"</span>101010cf<span class="pl-pds">"</span></span> }, <span class="pl-ent">"urllib3"</span>: { <span class="pl-ent">"version"</span>: <span class="pl-s"><span class="pl-pds">"</span>1.26.7<span class="pl-pds">"</span></span> }, <span class="pl-ent">"using_charset_normalizer"</span>: <span class="pl-c1">true</span>, <span class="pl-ent">"using_pyopenssl"</span>: <span class="pl-c1">false</span> }</pre></div>
1
<p dir="auto"><strong>Migrated issue, originally created by Elliot Cameron (<a href="https://github.com/3noch">@3noch</a>)</strong></p> <p dir="auto">I'm using PostgreSQL and trying to build an array aggregate of tuples by selecting a column like this:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="sa.func.array_agg(sa.func.row(User.id, User.name))"><pre class="notranslate"><code class="notranslate">sa.func.array_agg(sa.func.row(User.id, User.name)) </code></pre></div> <p dir="auto">This parses as an ugly list of characters.</p> <p dir="auto">Putting the "row" on the outside works.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="sa.func.row(sa.func.array_agg(User.id), sa.func.array_agg(User.name))"><pre class="notranslate"><code class="notranslate">sa.func.row(sa.func.array_agg(User.id), sa.func.array_agg(User.name)) </code></pre></div> <p dir="auto">Maybe I'm missing something.</p>
<p dir="auto"><strong>Migrated issue, originally created by Michael Bayer (<a href="https://github.com/zzzeek">@zzzeek</a>)</strong></p> <p dir="auto">that is, all the functions in <a href="http://www.postgresql.org/docs/9.4/static/functions-json.html" rel="nofollow">http://www.postgresql.org/docs/9.4/static/functions-json.html</a> need to be possible without building subclasses of functions.</p>
1
<p dir="auto">This doesn't work:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="a = pd.DataFrame(data=np.random.rand(3)) time = pd.date_range('2000-01-01', tz='UTC', periods=3, freq='10ms', name='time') a['time'] = time b = pd.DataFrame(data=np.random.rand(3)) c = pd.concat([a, b])"><pre class="notranslate"><span class="pl-s1">a</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>(<span class="pl-s1">data</span><span class="pl-c1">=</span><span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">rand</span>(<span class="pl-c1">3</span>)) <span class="pl-s1">time</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">date_range</span>(<span class="pl-s">'2000-01-01'</span>, <span class="pl-s1">tz</span><span class="pl-c1">=</span><span class="pl-s">'UTC'</span>, <span class="pl-s1">periods</span><span class="pl-c1">=</span><span class="pl-c1">3</span>, <span class="pl-s1">freq</span><span class="pl-c1">=</span><span class="pl-s">'10ms'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'time'</span>) <span class="pl-s1">a</span>[<span class="pl-s">'time'</span>] <span class="pl-c1">=</span> <span class="pl-s1">time</span> <span class="pl-s1">b</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>(<span class="pl-s1">data</span><span class="pl-c1">=</span><span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">rand</span>(<span class="pl-c1">3</span>)) <span class="pl-s1">c</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">concat</span>([<span class="pl-s1">a</span>, <span class="pl-s1">b</span>])</pre></div> <p dir="auto">It produces a type error:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="/usr/lib/python3.6/site-packages/pandas/core/indexes/api.py:87: RuntimeWarning: '&lt;' not supported between instances of 'str' and 'int', sort order is undefined for incomparable objects result = result.union(other) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) &lt;ipython-input-22-f0e01a86e895&gt; in &lt;module&gt;() ----&gt; 1 c = pd.concat([a, b]) /usr/lib/python3.6/site-packages/pandas/core/reshape/concat.py in concat(objs, axis, join, join_axes, ignore_index, keys, levels, names, verify_integrity, copy) 211 verify_integrity=verify_integrity, 212 copy=copy) --&gt; 213 return op.get_result() 214 215 /usr/lib/python3.6/site-packages/pandas/core/reshape/concat.py in get_result(self) 406 new_data = concatenate_block_managers( 407 mgrs_indexers, self.new_axes, concat_axis=self.axis, --&gt; 408 copy=self.copy) 409 if not self.copy: 410 new_data._consolidate_inplace() /usr/lib/python3.6/site-packages/pandas/core/internals.py in concatenate_block_managers(mgrs_indexers, axes, concat_axis, copy) 5196 else: 5197 b = make_block( -&gt; 5198 concatenate_join_units(join_units, concat_axis, copy=copy), 5199 placement=placement) 5200 blocks.append(b) /usr/lib/python3.6/site-packages/pandas/core/internals.py in concatenate_join_units(join_units, concat_axis, copy) 5325 to_concat = [ju.get_reindexed_values(empty_dtype=empty_dtype, 5326 upcasted_na=upcasted_na) -&gt; 5327 for ju in join_units] 5328 5329 if len(to_concat) == 1: /usr/lib/python3.6/site-packages/pandas/core/internals.py in &lt;listcomp&gt;(.0) 5325 to_concat = [ju.get_reindexed_values(empty_dtype=empty_dtype, 5326 upcasted_na=upcasted_na) -&gt; 5327 for ju in join_units] 5328 5329 if len(to_concat) == 1: /usr/lib/python3.6/site-packages/pandas/core/internals.py in get_reindexed_values(self, empty_dtype, upcasted_na) 5596 pass 5597 else: -&gt; 5598 missing_arr = np.empty(self.shape, dtype=empty_dtype) 5599 missing_arr.fill(fill_value) 5600 return missing_arr TypeError: data type not understood &gt; /usr/lib/python3.6/site-packages/pandas/core/internals.py(5598)get_reindexed_values() 5596 pass 5597 else: -&gt; 5598 missing_arr = np.empty(self.shape, dtype=empty_dtype) 5599 missing_arr.fill(fill_value) 5600 return missing_arr"><pre class="notranslate"><span class="pl-c1">/</span><span class="pl-s1">usr</span><span class="pl-c1">/</span><span class="pl-s1">lib</span><span class="pl-c1">/</span><span class="pl-s1">python3</span>.<span class="pl-c1">6</span><span class="pl-c1">/</span><span class="pl-s1">site</span><span class="pl-c1">-</span><span class="pl-s1">packages</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">core</span><span class="pl-c1">/</span><span class="pl-s1">indexes</span><span class="pl-c1">/</span><span class="pl-s1">api</span>.<span class="pl-s1">py</span>:<span class="pl-c1">87</span>: <span class="pl-v">RuntimeWarning</span>: <span class="pl-s">'&lt;'</span> <span class="pl-c1">not</span> <span class="pl-s1">supported</span> <span class="pl-s1">between</span> <span class="pl-s1">instances</span> <span class="pl-s1">of</span> <span class="pl-s">'str'</span> <span class="pl-c1">and</span> <span class="pl-s">'int'</span>, <span class="pl-s1">sort</span> <span class="pl-s1">order</span> <span class="pl-c1">is</span> <span class="pl-s1">undefined</span> <span class="pl-k">for</span> <span class="pl-s1">incomparable</span> <span class="pl-s1">objects</span> <span class="pl-s1">result</span> <span class="pl-c1">=</span> <span class="pl-s1">result</span>.<span class="pl-en">union</span>(<span class="pl-s1">other</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">22</span><span class="pl-c1">-</span><span class="pl-en">f0e01a86e895</span><span class="pl-c1">&gt;</span> <span class="pl-c1">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">c</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">concat</span>([<span class="pl-s1">a</span>, <span class="pl-s1">b</span>]) <span class="pl-c1">/</span><span class="pl-s1">usr</span><span class="pl-c1">/</span><span class="pl-s1">lib</span><span class="pl-c1">/</span><span class="pl-s1">python3</span>.<span class="pl-c1">6</span><span class="pl-c1">/</span><span class="pl-s1">site</span><span class="pl-c1">-</span><span class="pl-s1">packages</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">core</span><span class="pl-c1">/</span><span class="pl-s1">reshape</span><span class="pl-c1">/</span><span class="pl-s1">concat</span>.<span class="pl-en">py</span> <span class="pl-c1">in</span> <span class="pl-s1">concat</span>(<span class="pl-s1">objs</span>, <span class="pl-s1">axis</span>, <span class="pl-s1">join</span>, <span class="pl-s1">join_axes</span>, <span class="pl-s1">ignore_index</span>, <span class="pl-s1">keys</span>, <span class="pl-s1">levels</span>, <span class="pl-s1">names</span>, <span class="pl-s1">verify_integrity</span>, <span class="pl-s1">copy</span>) <span class="pl-c1">211</span> <span class="pl-s1">verify_integrity</span><span class="pl-c1">=</span><span class="pl-s1">verify_integrity</span>, <span class="pl-c1">212</span> <span class="pl-s1">copy</span><span class="pl-c1">=</span><span class="pl-s1">copy</span>) <span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">&gt;</span> <span class="pl-c1">213</span> <span class="pl-s1">return</span> <span class="pl-s1">op</span>.<span class="pl-en">get_result</span>() <span class="pl-c1">214</span> <span class="pl-c1">215</span> <span class="pl-c1">/</span><span class="pl-s1">usr</span><span class="pl-c1">/</span><span class="pl-s1">lib</span><span class="pl-c1">/</span><span class="pl-s1">python3</span>.<span class="pl-c1">6</span><span class="pl-c1">/</span><span class="pl-s1">site</span><span class="pl-c1">-</span><span class="pl-s1">packages</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">core</span><span class="pl-c1">/</span><span class="pl-s1">reshape</span><span class="pl-c1">/</span><span class="pl-s1">concat</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-en">get_result</span>(<span class="pl-s1">self</span>) <span class="pl-c1">406</span> <span class="pl-s1">new_data</span> <span class="pl-c1">=</span> <span class="pl-en">concatenate_block_managers</span>( <span class="pl-c1">407</span> <span class="pl-s1">mgrs_indexers</span>, <span class="pl-s1">self</span>.<span class="pl-s1">new_axes</span>, <span class="pl-s1">concat_axis</span><span class="pl-c1">=</span><span class="pl-s1">self</span>.<span class="pl-s1">axis</span>, <span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">&gt;</span> <span class="pl-c1">408</span> <span class="pl-s1">copy</span><span class="pl-c1">=</span><span class="pl-s1">self</span>.<span class="pl-s1">copy</span>) <span class="pl-c1">409</span> <span class="pl-k">if</span> <span class="pl-c1">not</span> <span class="pl-s1">self</span>.<span class="pl-s1">copy</span>: <span class="pl-c1">410</span> <span class="pl-s1">new_data</span>.<span class="pl-en">_consolidate_inplace</span>() <span class="pl-c1">/</span><span class="pl-s1">usr</span><span class="pl-c1">/</span><span class="pl-s1">lib</span><span class="pl-c1">/</span><span class="pl-s1">python3</span>.<span class="pl-c1">6</span><span class="pl-c1">/</span><span class="pl-s1">site</span><span class="pl-c1">-</span><span class="pl-s1">packages</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">core</span><span class="pl-c1">/</span><span class="pl-s1">internals</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-en">concatenate_block_managers</span>(<span class="pl-s1">mgrs_indexers</span>, <span class="pl-s1">axes</span>, <span class="pl-s1">concat_axis</span>, <span class="pl-s1">copy</span>) <span class="pl-c1">5196</span> <span class="pl-s1">else</span>: <span class="pl-c1">5197</span> <span class="pl-s1">b</span> <span class="pl-c1">=</span> <span class="pl-en">make_block</span>( <span class="pl-c1">-</span><span class="pl-c1">&gt;</span> <span class="pl-c1">5198</span> <span class="pl-en">concatenate_join_units</span>(<span class="pl-s1">join_units</span>, <span class="pl-s1">concat_axis</span>, <span class="pl-s1">copy</span><span class="pl-c1">=</span><span class="pl-s1">copy</span>), <span class="pl-c1">5199</span> <span class="pl-s1">placement</span><span class="pl-c1">=</span><span class="pl-s1">placement</span>) <span class="pl-c1">5200</span> <span class="pl-s1">blocks</span>.<span class="pl-en">append</span>(<span class="pl-s1">b</span>) <span class="pl-c1">/</span><span class="pl-s1">usr</span><span class="pl-c1">/</span><span class="pl-s1">lib</span><span class="pl-c1">/</span><span class="pl-s1">python3</span>.<span class="pl-c1">6</span><span class="pl-c1">/</span><span class="pl-s1">site</span><span class="pl-c1">-</span><span class="pl-s1">packages</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">core</span><span class="pl-c1">/</span><span class="pl-s1">internals</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-en">concatenate_join_units</span>(<span class="pl-s1">join_units</span>, <span class="pl-s1">concat_axis</span>, <span class="pl-s1">copy</span>) <span class="pl-c1">5325</span> <span class="pl-s1">to_concat</span> <span class="pl-c1">=</span> [<span class="pl-s1">ju</span>.<span class="pl-en">get_reindexed_values</span>(<span class="pl-s1">empty_dtype</span><span class="pl-c1">=</span><span class="pl-s1">empty_dtype</span>, <span class="pl-c1">5326</span> <span class="pl-s1">upcasted_na</span><span class="pl-c1">=</span><span class="pl-s1">upcasted_na</span>) <span class="pl-c1">-</span><span class="pl-c1">&gt;</span> <span class="pl-c1">5327</span> <span class="pl-s1">for</span> <span class="pl-s1">ju</span> <span class="pl-c1">in</span> <span class="pl-s1">join_units</span>] <span class="pl-c1">5328</span> <span class="pl-c1">5329</span> <span class="pl-k">if</span> <span class="pl-en">len</span>(<span class="pl-s1">to_concat</span>) <span class="pl-c1">==</span> <span class="pl-c1">1</span>: <span class="pl-c1">/</span><span class="pl-s1">usr</span><span class="pl-c1">/</span><span class="pl-s1">lib</span><span class="pl-c1">/</span><span class="pl-s1">python3</span>.<span class="pl-c1">6</span><span class="pl-c1">/</span><span class="pl-s1">site</span><span class="pl-c1">-</span><span class="pl-s1">packages</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">core</span><span class="pl-c1">/</span><span class="pl-s1">internals</span>.<span class="pl-en">py</span> <span class="pl-c1">in</span> <span class="pl-c1">&lt;</span><span class="pl-s1">listcomp</span><span class="pl-c1">&gt;</span>(<span class="pl-c1">.0</span>) <span class="pl-c1">5325</span> <span class="pl-s1">to_concat</span> <span class="pl-c1">=</span> [<span class="pl-s1">ju</span>.<span class="pl-en">get_reindexed_values</span>(<span class="pl-s1">empty_dtype</span><span class="pl-c1">=</span><span class="pl-s1">empty_dtype</span>, <span class="pl-c1">5326</span> <span class="pl-s1">upcasted_na</span><span class="pl-c1">=</span><span class="pl-s1">upcasted_na</span>) <span class="pl-c1">-</span><span class="pl-c1">&gt;</span> <span class="pl-c1">5327</span> <span class="pl-s1">for</span> <span class="pl-s1">ju</span> <span class="pl-c1">in</span> <span class="pl-s1">join_units</span>] <span class="pl-c1">5328</span> <span class="pl-c1">5329</span> <span class="pl-k">if</span> <span class="pl-en">len</span>(<span class="pl-s1">to_concat</span>) <span class="pl-c1">==</span> <span class="pl-c1">1</span>: <span class="pl-c1">/</span><span class="pl-s1">usr</span><span class="pl-c1">/</span><span class="pl-s1">lib</span><span class="pl-c1">/</span><span class="pl-s1">python3</span>.<span class="pl-c1">6</span><span class="pl-c1">/</span><span class="pl-s1">site</span><span class="pl-c1">-</span><span class="pl-s1">packages</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">core</span><span class="pl-c1">/</span><span class="pl-s1">internals</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-en">get_reindexed_values</span>(<span class="pl-s1">self</span>, <span class="pl-s1">empty_dtype</span>, <span class="pl-s1">upcasted_na</span>) <span class="pl-c1">5596</span> <span class="pl-s1">pass</span> <span class="pl-c1">5597</span> <span class="pl-s1">else</span>: <span class="pl-c1">-&gt;</span> <span class="pl-c1">5598</span> <span class="pl-s1">missing_arr</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">empty</span>(<span class="pl-s1">self</span>.<span class="pl-s1">shape</span>, <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">empty_dtype</span>) <span class="pl-c1">5599</span> <span class="pl-s1">missing_arr</span>.<span class="pl-en">fill</span>(<span class="pl-s1">fill_value</span>) <span class="pl-c1">5600</span> <span class="pl-k">return</span> <span class="pl-s1">missing_arr</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> <span class="pl-c1">&gt;</span> <span class="pl-c1">/</span><span class="pl-s1">usr</span><span class="pl-c1">/</span><span class="pl-s1">lib</span><span class="pl-c1">/</span><span class="pl-s1">python3</span>.<span class="pl-c1">6</span><span class="pl-c1">/</span><span class="pl-s1">site</span><span class="pl-c1">-</span><span class="pl-s1">packages</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">core</span><span class="pl-c1">/</span><span class="pl-s1">internals</span>.<span class="pl-en">py</span>(<span class="pl-c1">5598</span>)<span class="pl-en">get_reindexed_values</span>() <span class="pl-c1">5596</span> <span class="pl-k">pass</span> <span class="pl-c1">5597</span> <span class="pl-s1">else</span>: <span class="pl-c1">-&gt;</span> <span class="pl-c1">5598</span> <span class="pl-s1">missing_arr</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">empty</span>(<span class="pl-s1">self</span>.<span class="pl-s1">shape</span>, <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">empty_dtype</span>) <span class="pl-c1">5599</span> <span class="pl-s1">missing_arr</span>.<span class="pl-en">fill</span>(<span class="pl-s1">fill_value</span>) <span class="pl-c1">5600</span> <span class="pl-k">return</span> <span class="pl-s1">missing_arr</span></pre></div> <h4 dir="auto">Problem description</h4> <p dir="auto">When concatenating dataframes, of which one contains a column with <code class="notranslate">datetime64[ns, UTC]</code>, the process fails. This currently breaks my workflow, and I'd like to stick with timezone aware times...</p> <p dir="auto">It works with plain <code class="notranslate">datetime64[ns]</code>.:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="a['time'] = pd.date_range('2000-01-01', tz=None, periods=3, freq='10ms', name='time' pd.concat([a, b])"><pre class="notranslate"><span class="pl-s1">a</span>[<span class="pl-s">'time'</span>] <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-s1">date_range</span>(<span class="pl-s">'2000-01-01'</span>, <span class="pl-s1">tz</span><span class="pl-c1">=</span><span class="pl-c1">None</span>, <span class="pl-s1">periods</span><span class="pl-c1">=</span><span class="pl-c1">3</span>, <span class="pl-s1">freq</span><span class="pl-c1">=</span><span class="pl-s">'10ms'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'time'</span> <span class="pl-s1">pd</span>.<span class="pl-en">concat</span>([<span class="pl-s1">a</span>, <span class="pl-s1">b</span>])</pre></div> <p dir="auto">and produces the expected output:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="/usr/lib/python3.6/site-packages/pandas/core/indexes/api.py:87: RuntimeWarning: '&lt;' not supported between instances of 'str' and 'int', sort order is undefined for incomparable objects result = result.union(other) Out[35]: 0 time 0 0.071325 2000-01-01 00:00:00.000 1 0.485844 2000-01-01 00:00:00.010 2 0.247131 2000-01-01 00:00:00.020 0 0.595540 NaT 1 0.609389 NaT 2 0.850834 NaT"><pre class="notranslate"><span class="pl-c1">/</span><span class="pl-s1">usr</span><span class="pl-c1">/</span><span class="pl-s1">lib</span><span class="pl-c1">/</span><span class="pl-s1">python3</span>.<span class="pl-c1">6</span><span class="pl-c1">/</span><span class="pl-s1">site</span><span class="pl-c1">-</span><span class="pl-s1">packages</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">core</span><span class="pl-c1">/</span><span class="pl-s1">indexes</span><span class="pl-c1">/</span><span class="pl-s1">api</span>.<span class="pl-s1">py</span>:<span class="pl-c1">87</span>: <span class="pl-v">RuntimeWarning</span>: <span class="pl-s">'&lt;'</span> <span class="pl-c1">not</span> <span class="pl-s1">supported</span> <span class="pl-s1">between</span> <span class="pl-s1">instances</span> <span class="pl-s1">of</span> <span class="pl-s">'str'</span> <span class="pl-c1">and</span> <span class="pl-s">'int'</span>, <span class="pl-s1">sort</span> <span class="pl-s1">order</span> <span class="pl-c1">is</span> <span class="pl-s1">undefined</span> <span class="pl-k">for</span> <span class="pl-s1">incomparable</span> <span class="pl-s1">objects</span> <span class="pl-s1">result</span> <span class="pl-c1">=</span> <span class="pl-s1">result</span>.<span class="pl-en">union</span>(<span class="pl-s1">other</span>) <span class="pl-v">Out</span>[<span class="pl-c1">35</span>]: <span class="pl-c1">0</span> <span class="pl-s1">time</span> <span class="pl-c1">0</span> <span class="pl-c1">0.071325</span> <span class="pl-c1">2000</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">01</span> <span class="pl-c1">00</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00.000</span> <span class="pl-c1">1</span> <span class="pl-c1">0.485844</span> <span class="pl-c1">2000</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">01</span> <span class="pl-c1">00</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00.010</span> <span class="pl-c1">2</span> <span class="pl-c1">0.247131</span> <span class="pl-c1">2000</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">01</span> <span class="pl-c1">00</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00.020</span> <span class="pl-c1">0</span> <span class="pl-c1">0.595540</span> <span class="pl-v">NaT</span> <span class="pl-c1">1</span> <span class="pl-c1">0.609389</span> <span class="pl-v">NaT</span> <span class="pl-c1">2</span> <span class="pl-c1">0.850834</span> <span class="pl-v">NaT</span></pre></div> <h4 dir="auto">Expected Output</h4> <p dir="auto">Similar to the result with plain numpy <code class="notranslate">datetime64</code>, <code class="notranslate">pd.concat()</code> should simply fill in the missing time values with <code class="notranslate">NaT</code>.</p> <p dir="auto">Thanks and regards</p> <h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4> <details> INSTALLED VERSIONS ------------------ commit: None python: 3.6.3.final.0 python-bits: 64 OS: Linux OS-release: 4.13.12-1-ARCH machine: x86_64 processor: byteorder: little LC_ALL: None LANG: de_DE.utf8 LOCALE: de_DE.UTF-8 <p dir="auto">pandas: 0.21.0<br> pytest: 3.3.0<br> pip: 9.0.1<br> setuptools: 38.2.3<br> Cython: 0.27.3<br> numpy: 1.13.3<br> scipy: 1.0.0<br> pyarrow: None<br> xarray: 0.10.0<br> IPython: 6.2.1<br> sphinx: 1.6.5<br> patsy: None<br> dateutil: 2.6.1<br> pytz: 2017.3<br> blosc: None<br> bottleneck: 1.2.1<br> tables: 3.4.2<br> numexpr: 2.6.4<br> feather: None<br> matplotlib: 2.1.0<br> openpyxl: None<br> xlrd: None<br> xlwt: None<br> xlsxwriter: None<br> lxml: None<br> bs4: None<br> html5lib: 0.999999999<br> sqlalchemy: 1.1.15<br> pymysql: None<br> psycopg2: None<br> jinja2: 2.10<br> s3fs: 0.0.9<br> fastparquet: None<br> pandas_gbq: None<br> pandas_datareader: 0.5.0</p> </details>
<p dir="auto">Concatenating DFs that have columns with all NaTs and TZ-aware ones breaks as of 0.17.1:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [1]: import pandas as pd In [2]: df1 = pd.DataFrame([[pd.NaT], [pd.NaT]]) In [3]: df1 Out[2]: 0 0 NaT 1 NaT In [4]: df2 = pd.DataFrame([[pd.Timestamp('2015/01/01', tz='UTC')], [pd.Timestamp('2016/01/01', tz='UTC')]]) In [5]: df2 Out[4]: 0 0 2015-01-01 00:00:00+00:00 1 2016-01-01 00:00:00+00:00 In [6]: pd.concat([df1, df2]) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) &lt;ipython-input-6-f61a1ab4009e&gt; in &lt;module&gt;() ----&gt; 1 pd.concat([df1, df2]) /.../env/local/lib/python2.7/site-packages/pandas/tools/merge.py in concat(objs, axis, join, join_axes, ignore_index, keys, levels, names, verify_integrity, copy) 811 verify_integrity=verify_integrity, 812 copy=copy) --&gt; 813 return op.get_result() 814 815 /.../env/local/lib/python2.7/site-packages/pandas/tools/merge.py in get_result(self) 993 994 new_data = concatenate_block_managers( --&gt; 995 mgrs_indexers, self.new_axes, concat_axis=self.axis, copy=self.copy) 996 if not self.copy: 997 new_data._consolidate_inplace() /.../env/local/lib/python2.7/site-packages/pandas/core/internals.py in concatenate_block_managers(mgrs_indexers, axes, concat_axis, copy) 4454 copy=copy), 4455 placement=placement) -&gt; 4456 for placement, join_units in concat_plan] 4457 4458 return BlockManager(blocks, axes) /.../env/local/lib/python2.7/site-packages/pandas/core/internals.py in concatenate_join_units(join_units, concat_axis, copy) 4551 to_concat = [ju.get_reindexed_values(empty_dtype=empty_dtype, 4552 upcasted_na=upcasted_na) -&gt; 4553 for ju in join_units] 4554 4555 if len(to_concat) == 1: /.../env/local/lib/python2.7/site-packages/pandas/core/internals.py in get_reindexed_values(self, empty_dtype, upcasted_na) 4799 4800 if self.is_null and not getattr(self.block,'is_categorical',None): -&gt; 4801 missing_arr = np.empty(self.shape, dtype=empty_dtype) 4802 if np.prod(self.shape): 4803 # NumPy 1.6 workaround: this statement gets strange if all TypeError: data type not understood"><pre class="notranslate"><code class="notranslate">In [1]: import pandas as pd In [2]: df1 = pd.DataFrame([[pd.NaT], [pd.NaT]]) In [3]: df1 Out[2]: 0 0 NaT 1 NaT In [4]: df2 = pd.DataFrame([[pd.Timestamp('2015/01/01', tz='UTC')], [pd.Timestamp('2016/01/01', tz='UTC')]]) In [5]: df2 Out[4]: 0 0 2015-01-01 00:00:00+00:00 1 2016-01-01 00:00:00+00:00 In [6]: pd.concat([df1, df2]) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) &lt;ipython-input-6-f61a1ab4009e&gt; in &lt;module&gt;() ----&gt; 1 pd.concat([df1, df2]) /.../env/local/lib/python2.7/site-packages/pandas/tools/merge.py in concat(objs, axis, join, join_axes, ignore_index, keys, levels, names, verify_integrity, copy) 811 verify_integrity=verify_integrity, 812 copy=copy) --&gt; 813 return op.get_result() 814 815 /.../env/local/lib/python2.7/site-packages/pandas/tools/merge.py in get_result(self) 993 994 new_data = concatenate_block_managers( --&gt; 995 mgrs_indexers, self.new_axes, concat_axis=self.axis, copy=self.copy) 996 if not self.copy: 997 new_data._consolidate_inplace() /.../env/local/lib/python2.7/site-packages/pandas/core/internals.py in concatenate_block_managers(mgrs_indexers, axes, concat_axis, copy) 4454 copy=copy), 4455 placement=placement) -&gt; 4456 for placement, join_units in concat_plan] 4457 4458 return BlockManager(blocks, axes) /.../env/local/lib/python2.7/site-packages/pandas/core/internals.py in concatenate_join_units(join_units, concat_axis, copy) 4551 to_concat = [ju.get_reindexed_values(empty_dtype=empty_dtype, 4552 upcasted_na=upcasted_na) -&gt; 4553 for ju in join_units] 4554 4555 if len(to_concat) == 1: /.../env/local/lib/python2.7/site-packages/pandas/core/internals.py in get_reindexed_values(self, empty_dtype, upcasted_na) 4799 4800 if self.is_null and not getattr(self.block,'is_categorical',None): -&gt; 4801 missing_arr = np.empty(self.shape, dtype=empty_dtype) 4802 if np.prod(self.shape): 4803 # NumPy 1.6 workaround: this statement gets strange if all TypeError: data type not understood </code></pre></div> <p dir="auto">Possibly related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="118654562" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/11693" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/11693/hovercard" href="https://github.com/pandas-dev/pandas/issues/11693">#11693</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="118959525" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/11705" data-hovercard-type="pull_request" data-hovercard-url="/pandas-dev/pandas/pull/11705/hovercard" href="https://github.com/pandas-dev/pandas/pull/11705">#11705</a> and the <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="113815177" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/11456" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/11456/hovercard" href="https://github.com/pandas-dev/pandas/issues/11456">#11456</a> family. However, this doesn't appear to be caused by the TZ-aware vs. non-TZ aware problems referenced there.<br> Versions:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [4]: pd.show_versions() INSTALLED VERSIONS ------------------ commit: None python: 2.7.6.final.0 python-bits: 64 OS: Linux OS-release: 3.13.0-77-generic machine: x86_64 processor: x86_64 byteorder: little LC_ALL: None LANG: en_US.UTF-8 pandas: 0.17.1 nose: 1.3.6 pip: 6.0.8 setuptools: 12.0.5 Cython: 0.22 numpy: 1.9.2 scipy: 0.15.1 statsmodels: 0.6.1.post1 IPython: 3.1.0 sphinx: 1.3.1 patsy: 0.2.1 dateutil: 2.4.2 pytz: 2015.4 blosc: 1.2.8 bottleneck: 1.0.0 tables: 3.2.0 numexpr: 2.4.3 matplotlib: None openpyxl: None xlrd: 0.9.3 xlwt: 0.7.5 xlsxwriter: None lxml: None bs4: None html5lib: None httplib2: None apiclient: None sqlalchemy: None pymysql: None psycopg2: None Jinja2: None"><pre class="notranslate"><code class="notranslate">In [4]: pd.show_versions() INSTALLED VERSIONS ------------------ commit: None python: 2.7.6.final.0 python-bits: 64 OS: Linux OS-release: 3.13.0-77-generic machine: x86_64 processor: x86_64 byteorder: little LC_ALL: None LANG: en_US.UTF-8 pandas: 0.17.1 nose: 1.3.6 pip: 6.0.8 setuptools: 12.0.5 Cython: 0.22 numpy: 1.9.2 scipy: 0.15.1 statsmodels: 0.6.1.post1 IPython: 3.1.0 sphinx: 1.3.1 patsy: 0.2.1 dateutil: 2.4.2 pytz: 2015.4 blosc: 1.2.8 bottleneck: 1.0.0 tables: 3.2.0 numexpr: 2.4.3 matplotlib: None openpyxl: None xlrd: 0.9.3 xlwt: 0.7.5 xlsxwriter: None lxml: None bs4: None html5lib: None httplib2: None apiclient: None sqlalchemy: None pymysql: None psycopg2: None Jinja2: None </code></pre></div>
1
<p dir="auto">All transitions (hide/show modals, navbar, tooltip, tabs…) are ended by emulateTransitionEnd and the maximum duration of each transition is hard-coded that way (350ms, 150ms). That makes it impossible to customize css-transitions to take longer. Please enable us to set our own transition durations.</p>
<p dir="auto"><code class="notranslate">emulateTransitionEnd</code> should call constants on a plugin's constructor.</p>
1
<p dir="auto">Example <code class="notranslate">.gitignore</code>:</p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="/components/ !/components/foo/ !/components/bar/"><pre class="notranslate">/components/ <span class="pl-k">!</span>/components/foo/ <span class="pl-k">!</span>/components/bar/</pre></div> <p dir="auto">Ideally, only <code class="notranslate">components/foo</code> and <code class="notranslate">components/bar</code> would be visible in tree view when "Exclude VCS Ignored Paths" is enabled</p>
<p dir="auto">Let's say I add the following rules to my <code class="notranslate">.gitignore</code> to ignore everything in the root except the <code class="notranslate">wp-content</code> directory:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/* !.gitignore !wp-content/"><pre class="notranslate"><code class="notranslate">/* !.gitignore !wp-content/ </code></pre></div> <p dir="auto">So far this works correctly (only <code class="notranslate">.gitignore</code> and <code class="notranslate">wp-content/</code> are shown in the tree view). Now I add the following rules to ignore everything in the <code class="notranslate">wp-content</code> directory, except the <code class="notranslate">plugins</code> and <code class="notranslate">themes</code> directories</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="wp-content/* !wp-content/plugins/ !wp-content/themes/"><pre class="notranslate"><code class="notranslate">wp-content/* !wp-content/plugins/ !wp-content/themes/ </code></pre></div> <p dir="auto">Before Atom 0.116.0, the plugins and themes directories were shown correctly in the tree view, but now the <code class="notranslate">wp-content</code> directory disappears completely. My machine's git (v2.0.0) parses the .gitignore correctly and sees changes in <code class="notranslate">plugins</code> and <code class="notranslate">themes</code>.</p> <p dir="auto">I see that 0.116.0 moved to libgit2 0.21.0. If this is what's causing this behavior I'll open an issue with them.</p>
1
<p dir="auto">Hi all,</p> <p dir="auto">I tried to install scikit-learn on my Mac with Lion 10.7.2 (Python 2.7, numpy 1.6.1). At first I tried easy_install and got scikit-0.9 but cannot import due to some 'Don't forget to 'make' first' error and then I searched online, finding that this issue should be fixed in the newer version in github. So I checked out the code and build from source using the following two commands:</p> <p dir="auto">python setup.py build<br> sudo python setup.py install</p> <p dir="auto">Now I've got scikit-0.10 in /Library/Python/2.7/site-packages. However, when I tried to run the tests, similar error shows up:</p> <p dir="auto">Traceback (most recent call last):<br> File "", line 1, in <br> File "sklearn/<strong>init</strong>.py", line 30, in <br> """ % e)<br> ImportError: No module named _check_build</p> <hr> <p dir="auto">It seems that the scikit-learn has not been built correctly.</p> <p dir="auto">If you have installed the scikit-learn from source, please do not forget<br> to build the package before using it: run <code class="notranslate">python setup.py install</code> or<br> <code class="notranslate">make</code> in the source directory.</p> <p dir="auto">If you have used an installer, please check that it is suited for your<br> Python version, your operating system and your platform.</p> <p dir="auto">I didn't see errors in my build and build is finished with 'running scons'. I don't know where I am doing wrong. If you need to know more, please let me know. Any help would be very appreciated. Thanks!</p>
<p dir="auto">Hi all,</p> <p dir="auto">I tried to install scikit-learn on my Mac with Lion 10.7.2 (Python 2.7, numpy 1.6.1). At first I tried easy_install and got scikit-0.9 but cannot import due to some 'Don't forget to 'make' first' error and then I searched online, finding that this issue should be fixed in the newer version in github. So I checked out the code and build from source using the following two commands:</p> <p dir="auto">python setup.py build<br> sudo python setup.py install</p> <p dir="auto">Now I've got scikit-0.10 in /Library/Python/2.7/site-packages. However, when I tried to run the tests, similar error shows up:</p> <p dir="auto">Traceback (most recent call last):<br> File "", line 1, in <br> File "sklearn/<strong>init</strong>.py", line 30, in <br> """ % e)<br> ImportError: No module named _check_build</p> <hr> <p dir="auto">It seems that the scikit-learn has not been built correctly.</p> <p dir="auto">If you have installed the scikit-learn from source, please do not forget<br> to build the package before using it: run <code class="notranslate">python setup.py install</code> or<br> <code class="notranslate">make</code> in the source directory.</p> <p dir="auto">If you have used an installer, please check that it is suited for your<br> Python version, your operating system and your platform.</p> <p dir="auto">I didn't see errors in my build and build is finished with 'running scons'. I don't know where I am doing wrong. If you need to know more, please let me know. Any help would be very appreciated. Thanks!</p>
1
<p dir="auto">Hi, community:</p> <p dir="auto">This issue is to add more unit tests for the MetaDataRefresher class. Welcome to claim them.</p> <p dir="auto">The specific subtasks are as follows:</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Add unit test for AlterIndexStatementSchemaRefresher#refresh</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Add unit test for AlterTableStatementSchemaRefresher#refresh</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Add unit test for CreateIndexStatementSchemaRefresher#refresh</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Add unit test for CreateTableStatementSchemaRefresher#refresh</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Add unit test for CreateViewStatementSchemaRefresher#refresh</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Add unit test for DropIndexStatementSchemaRefresher#refresh</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Add unit test for DropTableStatementSchemaRefresher#refresh</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Add unit test for DropViewStatementSchemaRefresher#refresh</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Add unit test for RenameTableStatementSchemaRefresher#refresh</li> </ul> <p dir="auto">Through this issue, you can understand the process of participating in Apache ShardingSphere, and be familiar with sharding meta data.</p>
<h2 dir="auto">Bug Report</h2> <h3 dir="auto">Which version of ShardingSphere did you use?</h3> <p dir="auto">5.1.1</p> <h3 dir="auto">Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy?</h3> <p dir="auto">ShardingSphere-Proxy</p> <h3 dir="auto">Expected behavior</h3> <p dir="auto">The following INSERT statement can run normally when calling MySQL directly, but an exception is thrown after using Sharding-Proxy.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="@Insert(value = {&quot;&lt;script&gt;insert into ${tableName} (shapeid, userid, groupid, create_userid, name, type, name_alias, &quot; + &quot;stringvalue, doublevalue, intvalue, blobvalue, version, datasize, createtime, modifytime, deleted) values&quot; + &quot;&lt;foreach item='item' index='index' collection='propertyExList' separator=','&gt;&quot; + &quot;(#{item.builder.serverPID}, #{item.userID}, #{item.groupID}, #{item.userID}, &quot; + &quot;#{item.builder.fieldName}, #{item.builder.type}, #{item.builder.fieldName2}, &quot; + &quot;#{item.builder.stringValue}, #{item.builder.doubleValue}, #{item.builder.intValue}, &quot; + &quot;#{item.blobValue}, #{item.builder.version}, #{item.dataSize}, &quot; + &quot;#{item.builder.createTime}, #{item.builder.modifyTime}, #{item.builder.deleted})&quot; + &quot;&lt;/foreach&gt;&lt;/script&gt;&quot;}) @Options(useGeneratedKeys=true, keyProperty=&quot;propertyExList.builder.serverID&quot;, keyColumn=&quot;id&quot;) boolean insertBatchProperty(@Param(&quot;tableName&quot;) String tableName, @Param(&quot;propertyExList&quot;) List&lt;PropertyEx&gt; propertyExList);"><pre class="notranslate"><code class="notranslate">@Insert(value = {"&lt;script&gt;insert into ${tableName} (shapeid, userid, groupid, create_userid, name, type, name_alias, " + "stringvalue, doublevalue, intvalue, blobvalue, version, datasize, createtime, modifytime, deleted) values" + "&lt;foreach item='item' index='index' collection='propertyExList' separator=','&gt;" + "(#{item.builder.serverPID}, #{item.userID}, #{item.groupID}, #{item.userID}, " + "#{item.builder.fieldName}, #{item.builder.type}, #{item.builder.fieldName2}, " + "#{item.builder.stringValue}, #{item.builder.doubleValue}, #{item.builder.intValue}, " + "#{item.blobValue}, #{item.builder.version}, #{item.dataSize}, " + "#{item.builder.createTime}, #{item.builder.modifyTime}, #{item.builder.deleted})" + "&lt;/foreach&gt;&lt;/script&gt;"}) @Options(useGeneratedKeys=true, keyProperty="propertyExList.builder.serverID", keyColumn="id") boolean insertBatchProperty(@Param("tableName") String tableName, @Param("propertyExList") List&lt;PropertyEx&gt; propertyExList); </code></pre></div> <h3 dir="auto">Actual behavior</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="### Error updating database. Cause: java.sql.SQLSyntaxErrorException: This version of ShardingSphere-Proxy doesn't yet support this SQL. 'You have an error in your SQL syntax' ### The error may exist in xxx/cn/syncserver/dao/UploadShapeDao.java (best guess) ### The error may involve xxx.cn.syncserver.dao.UploadShapeDao.insertBatchProperty-Inline ### The error occurred while setting parameters ### SQL: insert into shape_property_simple (shapeid, userid, groupid, create_userid, name, type, name_alias, stringvalue, doublevalue, intvalue, blobvalue, version, datasize, createtime, modifytime, deleted) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) , (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ### Cause: java.sql.SQLSyntaxErrorException: This version of ShardingSphere-Proxy doesn't yet support this SQL. 'You have an error in your SQL syntax' ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: This version of ShardingSphere-Proxy doesn't yet support this SQL. 'You have an error in your SQL syntax'"><pre class="notranslate"><code class="notranslate">### Error updating database. Cause: java.sql.SQLSyntaxErrorException: This version of ShardingSphere-Proxy doesn't yet support this SQL. 'You have an error in your SQL syntax' ### The error may exist in xxx/cn/syncserver/dao/UploadShapeDao.java (best guess) ### The error may involve xxx.cn.syncserver.dao.UploadShapeDao.insertBatchProperty-Inline ### The error occurred while setting parameters ### SQL: insert into shape_property_simple (shapeid, userid, groupid, create_userid, name, type, name_alias, stringvalue, doublevalue, intvalue, blobvalue, version, datasize, createtime, modifytime, deleted) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) , (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ### Cause: java.sql.SQLSyntaxErrorException: This version of ShardingSphere-Proxy doesn't yet support this SQL. 'You have an error in your SQL syntax' ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: This version of ShardingSphere-Proxy doesn't yet support this SQL. 'You have an error in your SQL syntax' </code></pre></div> <h3 dir="auto">Reason analyze (If you can)</h3> <p dir="auto">I found that the following insert statement can be executed. The only difference between it and the previous statements with errors is that it does not contain <code class="notranslate"> (?,?,...)</code>.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[INFO ] 2022-05-23 15:20:37.162 [ShardingSphere-Command-0] ShardingSphere-SQL - Actual SQL: syncdb1 ::: insert into shape_simple (layerid, userid, create_userid, groupid, type, data, minlevel, maxlevel, version, datasize, legend, createtime, modifytime, deleted, create_version) values (0, 10232, 10232, -1, 1, x'0a1b09c240214c1bc45c4011ee44a401170b4440190000000000000000', 0, 0, 15, 120.0, '', '2022-05-23 15:18:54', '2022-05-23 15:18:54', 0, 15)"><pre class="notranslate"><code class="notranslate">[INFO ] 2022-05-23 15:20:37.162 [ShardingSphere-Command-0] ShardingSphere-SQL - Actual SQL: syncdb1 ::: insert into shape_simple (layerid, userid, create_userid, groupid, type, data, minlevel, maxlevel, version, datasize, legend, createtime, modifytime, deleted, create_version) values (0, 10232, 10232, -1, 1, x'0a1b09c240214c1bc45c4011ee44a401170b4440190000000000000000', 0, 0, 15, 120.0, '', '2022-05-23 15:18:54', '2022-05-23 15:18:54', 0, 15) </code></pre></div>
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/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <p dir="auto">Normal inputs have 32px in height. <code class="notranslate">disableUnderline</code> removes the 2 px at the bottom, resulting in a component of 30px height. This has a few issues:</p> <ul dir="auto"> <li>A <code class="notranslate">disableUnderline</code> component doesn't align well alongside a row of underlined components</li> <li>30px breaks vertical rhythm, as it's not a multiple of the theme unit.</li> </ul> <p dir="auto">I'm willing to submit a PR to add the missing 2px if this change is ok.</p> <h2 dir="auto">Expected Behavior</h2> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/428060/30748543-4b0783d8-9fb9-11e7-9adf-91643d64dc16.png"><img src="https://user-images.githubusercontent.com/428060/30748543-4b0783d8-9fb9-11e7-9adf-91643d64dc16.png" alt="screen shot 2017-09-22 at 17 12 25" style="max-width: 100%;"></a></p> <h2 dir="auto">Current Behavior</h2> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/428060/30748555-571a1104-9fb9-11e7-82e6-ee82a63484fd.png"><img src="https://user-images.githubusercontent.com/428060/30748555-571a1104-9fb9-11e7-82e6-ee82a63484fd.png" alt="screen shot 2017-09-22 at 17 12 36" style="max-width: 100%;"></a></p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <p dir="auto">Just use <code class="notranslate">disableUnderline</code> components alongside normal underlined components.</p> <p dir="auto"><a href="https://codesandbox.io/s/l9xryo62x7" rel="nofollow">https://codesandbox.io/s/l9xryo62x7</a></p> <h2 dir="auto">Context</h2> <p dir="auto">I'm trying to use a <code class="notranslate">&lt;Select disableUnderline&gt;</code> alongside a list of underlined components and they don't align.</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>v1-beta11</td> </tr> <tr> <td>React</td> <td>15</td> </tr> <tr> <td>browser</td> <td>Chrome latest</td> </tr> <tr> <td>etc</td> <td></td> </tr> </tbody> </table>
<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">Use a label tag to check a Checkbox using a htmlFor prop.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">Id isn't rendered in Checkbox, so when I click in a label the checkbox don't get marked.</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <p dir="auto"><a href="https://codesandbox.io/s/v1m6jxwmo7" rel="nofollow">https://codesandbox.io/s/v1m6jxwmo7</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>1.0.0-beta.29</td> </tr> <tr> <td>React</td> <td>16</td> </tr> <tr> <td>browser</td> <td>Chrome 16</td> </tr> </tbody> </table>
0
<p dir="auto"><em>From <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/prencher/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/prencher">@prencher</a> on December 3, 2015 20:0</em></p> <p dir="auto">When formatting the following snippet:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ReactDOM.render( &lt;Router history={createHistory() }&gt; &lt;Route path='/' component={App}&gt; &lt;IndexRoute component={SplashView} /&gt; &lt;Route path='home' component={HomeView} /&gt; &lt;Route path='chat' component={ChatView} /&gt; &lt;Route path='/chat/:contact' component={ChatView} /&gt; &lt;/Route&gt; &lt;/Router&gt;, document.getElementById('app') );"><pre class="notranslate"><code class="notranslate">ReactDOM.render( &lt;Router history={createHistory() }&gt; &lt;Route path='/' component={App}&gt; &lt;IndexRoute component={SplashView} /&gt; &lt;Route path='home' component={HomeView} /&gt; &lt;Route path='chat' component={ChatView} /&gt; &lt;Route path='/chat/:contact' component={ChatView} /&gt; &lt;/Route&gt; &lt;/Router&gt;, document.getElementById('app') ); </code></pre></div> <p dir="auto">The closing tags are not properly unindented, and outputs the following:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ReactDOM.render( &lt;Router history={createHistory() }&gt; &lt;Route path='/' component={App}&gt; &lt;IndexRoute component={SplashView} /&gt; &lt;Route path='home' component={HomeView} /&gt; &lt;Route path='chat' component={ChatView} /&gt; &lt;Route path='/chat/:contact' component={ChatView} /&gt; &lt;/Route&gt; &lt;/Router&gt;, document.getElementById('app') );"><pre class="notranslate"><code class="notranslate">ReactDOM.render( &lt;Router history={createHistory() }&gt; &lt;Route path='/' component={App}&gt; &lt;IndexRoute component={SplashView} /&gt; &lt;Route path='home' component={HomeView} /&gt; &lt;Route path='chat' component={ChatView} /&gt; &lt;Route path='/chat/:contact' component={ChatView} /&gt; &lt;/Route&gt; &lt;/Router&gt;, document.getElementById('app') ); </code></pre></div> <p dir="auto"><em>Copied from original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="120257039" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/985" data-hovercard-type="issue" data-hovercard-url="/microsoft/vscode/issues/985/hovercard" href="https://github.com/microsoft/vscode/issues/985">microsoft/vscode#985</a></em></p>
<p dir="auto">Right now formatting is supported or not right.</p> <p dir="auto">As you see below it just removes all indentation from JSX, i would prefer that we leave jsx code out of formatting if can't be supported right now, this makes formatting completely useless in TSX files.</p> <p dir="auto">If i understand this correctly then typescript has formatting capability and which is being used by atom-typescript in the sample below.</p> <p dir="auto">Original Code<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/249478/8654236/22de6136-2957-11e5-9fb9-5b7c6f7c4f4c.png"><img src="https://cloud.githubusercontent.com/assets/249478/8654236/22de6136-2957-11e5-9fb9-5b7c6f7c4f4c.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">Formatted Code<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/249478/8654255/3a4026c0-2957-11e5-8129-ee7b64856fc3.png"><img src="https://cloud.githubusercontent.com/assets/249478/8654255/3a4026c0-2957-11e5-8129-ee7b64856fc3.png" alt="image" style="max-width: 100%;"></a></p>
1
<h2 dir="auto">I submitted a 4-node task with 1GPU for each node.<br> But it exit with exception.<br> Some of the log information is as follows:<br> NCCL WARN Connect to 10.38.10.112&lt;21724&gt; failed : Connection refused<br> The strange thing is that none of the 4 nodes's ip is 10.38.10.112&lt;21724&gt;. I don't know why it will try to connect the ip and the port .<br> Besides,<br> I have set the NCCL_SOCKET_IFNAME to "^lo,docker", I used ifconfig to check network config of all the nodes. And I am sure that configs are 'eth0, eth1, and lo".<br> One of the node info is given as below:<br> self.dist_backend: nccl<br> self.dist_init_method: file:///home/storage15/huangying/tools/espnet/egs2/voxforge/asr1/vox.init<br> self.dist_world_size: 4<br> self.dist_rank: 1<br> auto allocate gpu device: 0<br> devices ids is 0</h2> <p dir="auto">tj1-asr-train-v100-13:941227:943077 [0] NCCL INFO Call to connect returned Connection refused, retrying<br> tj1-asr-train-v100-13:941227:943077 [0] NCCL INFO Call to connect returned Connection refused, retrying<br> tj1-asr-train-v100-13:941227:943077 [0] NCCL INFO Call to connect returned Connection refused, retrying</p> <p dir="auto">tj1-asr-train-v100-13:941227:943077 [0] include/socket.h:390 NCCL WARN Connect to 10.38.10.112&lt;21724&gt; failed : Connection refused<br> tj1-asr-train-v100-13:941227:943077 [0] NCCL INFO bootstrap.cc:100 -&gt; 2<br> tj1-asr-train-v100-13:941227:943077 [0] NCCL INFO bootstrap.cc:326 -&gt; 2<br> tj1-asr-train-v100-13:941227:943077 [0] NCCL INFO init.cc:695 -&gt; 2<br> tj1-asr-train-v100-13:941227:943077 [0] NCCL INFO init.cc:951 -&gt; 2<br> tj1-asr-train-v100-13:941227:943077 [0] NCCL INFO misc/group.cc:69 -&gt; 2 [Async thread]<br> /home/storage15/huangying/tools/anaconda3/envs/py36/lib/python3.6/site-packages/librosa/util/decorators.py:9: NumbaDeprecationWarning: An import was requested from a module that has moved location.<br> Import of 'jit' requested from: 'numba.decorators', please update to use 'numba.core.decorators' or pin to Numba version 0.48.0. This alias will not be present in Numba version 0.50.0.<br> from numba.decorators import jit as optional_jit<br> /home/storage15/huangying/tools/anaconda3/envs/py36/bin/python3 /home/storage15/huangying/tools/espnet/espnet2/bin/asr_train.py --use_preprocessor true --bpemodel none --token_type char --token_list data/token_list/char/tokens.txt --non_linguistic_symbols none --train_data_path_and_name_and_type dump/fbank_pitch/tr_en/feats.scp,speech,kaldi_ark --train_data_path_and_name_and_type dump/fbank_pitch/tr_en/text,text,text --valid_data_path_and_name_and_type dump/fbank_pitch/dt_en/feats.scp,speech,kaldi_ark --valid_data_path_and_name_and_type dump/fbank_pitch/dt_en/text,text,text --train_shape_file exp/asr_stats/train/speech_shape --train_shape_file exp/asr_stats/train/text_shape.char --valid_shape_file exp/asr_stats/valid/speech_shape --valid_shape_file exp/asr_stats/valid/text_shape.char --resume true --fold_length 800 --fold_length 150 --output_dir exp/asr_train_asr_transformer_fbank_pitch_char_normalize_confnorm_varsFalse --ngpu 1 --dist_init_method file:///home/storage15/huangying/tools/espnet/egs2/voxforge/asr1/vox.init --multiprocessing_distributed false --dist_launcher queue.pl --dist_world_size 4 --config conf/train_asr_transformer.yaml --input_size=83 --normalize=global_mvn --normalize_conf stats_file=exp/asr_stats/train/feats_stats.npz --normalize_conf norm_vars=False<br> Traceback (most recent call last):<br> File "/home/storage15/huangying/tools/anaconda3/envs/py36/lib/python3.6/runpy.py", line 193, in _run_module_as_main<br> "<strong>main</strong>", mod_spec)<br> File "/home/storage15/huangying/tools/anaconda3/envs/py36/lib/python3.6/runpy.py", line 85, in _run_code<br> exec(code, run_globals)<br> File "/home/storage15/huangying/tools/espnet/espnet2/bin/asr_train.py", line 23, in <br> main()<br> File "/home/storage15/huangying/tools/espnet/espnet2/bin/asr_train.py", line 19, in main<br> ASRTask.main(cmd=cmd)<br> File "/home/storage15/huangying/tools/espnet/espnet2/tasks/abs_task.py", line 842, in main<br> cls.main_worker(args)<br> File "/home/storage15/huangying/tools/espnet/espnet2/tasks/abs_task.py", line 1174, in main_worker<br> distributed_option=distributed_option,<br> File "/home/storage15/huangying/tools/espnet/espnet2/train/trainer.py", line 163, in run<br> else None<br> File "/home/storage15/huangying/tools/anaconda3/envs/py36/lib/python3.6/site-packages/torch/nn/parallel/distributed.py", line 303, in <strong>init</strong><br> self.broadcast_bucket_size)<br> File "/home/storage15/huangying/tools/anaconda3/envs/py36/lib/python3.6/site-packages/torch/nn/parallel/distributed.py", line 485, in _distributed_broadcast_coalesced<br> dist._broadcast_coalesced(self.process_group, tensors, buffer_size)<br> RuntimeError: NCCL error in: /pytorch/torch/lib/c10d/ProcessGroupNCCL.cpp:410, unhandled system error, NCCL version 2.4.8<br> Setting NCCL_SOCKET_IFNAME<br> Finished NCCL_SOCKET_IFNAME<br> ^lo,docker<br> self.dist_backend: nccl<br> self.dist_init_method: file:///home/storage15/huangying/tools/espnet/egs2/voxforge/asr1/vox.init<br> self.dist_world_size: 4<br> self.dist_rank: 1<br> auto allocate gpu device: 0<br> devices ids is 0</p> <h1 dir="auto">Accounting: time=107 threads=1</h1> <h1 dir="auto">Finished at Mon May 18 14:45:28 CST 2020 with status 1</h1> <p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pietern/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pietern">@pietern</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mrshenli/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mrshenli">@mrshenli</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pritamdamania87/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pritamdamania87">@pritamdamania87</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/zhaojuanmao/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/zhaojuanmao">@zhaojuanmao</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/satgera/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/satgera">@satgera</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/rohan-varma/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/rohan-varma">@rohan-varma</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gqchen/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gqchen">@gqchen</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aazzolini/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aazzolini">@aazzolini</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/xush6528/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/xush6528">@xush6528</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/osalpekar/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/osalpekar">@osalpekar</a></p>
<h2 dir="auto"><g-emoji class="g-emoji" alias="bug" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f41b.png">🐛</g-emoji> Bug</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" for j in range(seqlen): Traceback (most recent call last): File &quot;onnx_full_export.py&quot;, line 74, in &lt;module&gt; main() File &quot;onnx_full_export.py&quot;, line 70, in main beam_search.save_to_db(args.output_file) File &quot;/home/raden/translate/pytorch_translate/ensemble_export.py&quot;, line 1170, in save_to_db self.onnx_export(tmp_file) File &quot;/home/raden/translate/pytorch_translate/ensemble_export.py&quot;, line 1130, in onnx_export export_type=ExportTypes.ZIP_ARCHIVE, File &quot;/home/raden/anaconda3/lib/python3.7/site-packages/torch/onnx/__init__.py&quot;, line 19, in _export result = utils._export(*args, **kwargs) File &quot;/home/raden/anaconda3/lib/python3.7/site-packages/torch/onnx/utils.py&quot;, line 363, in _export _retain_param_name, do_constant_folding) File &quot;/home/raden/anaconda3/lib/python3.7/site-packages/torch/onnx/utils.py&quot;, line 256, in _model_to_graph method.graph, tuple(args) + tuple(params), example_outputs, False, propagate) RuntimeError: retval-&gt;inputs().size() == inputs.size() ASSERT FAILED at /pytorch/torch/csrc/jit/script/init.cpp:744, please report a bug to PyTorch. (_propagate_and_assign_input_and_output_shapes at /pytorch/torch/csrc/jit/script/init.cpp:744) frame #0: std::function&lt;std::string ()&gt;::operator()() const + 0x11 (0x7f6b9c93b441 in /home/raden/anaconda3/lib/python3.7/site-packages/torch/lib/libc10.so) frame #1: c10::Error::Error(c10::SourceLocation, std::string const&amp;) + 0x2a (0x7f6b9c93ad7a in /home/raden/anaconda3/lib/python3.7/site-packages/torch/lib/libc10.so) frame #2: &lt;unknown function&gt; + 0x452376 (0x7f6bdbf5c376 in /home/raden/anaconda3/lib/python3.7/site-packages/torch/lib/libtorch_python.so) frame #3: &lt;unknown function&gt; + 0x4793af (0x7f6bdbf833af in /home/raden/anaconda3/lib/python3.7/site-packages/torch/lib/libtorch_python.so) frame #4: &lt;unknown function&gt; + 0x130fac (0x7f6bdbc3afac in /home/raden/anaconda3/lib/python3.7/site-packages/torch/lib/libtorch_python.so) &lt;omitting python frames&gt; frame #31: __libc_start_main + 0xf0 (0x7f6beb660830 in /lib/x86_64-linux-gnu/libc.so.6) "><pre class="notranslate"><code class="notranslate"> for j in range(seqlen): Traceback (most recent call last): File "onnx_full_export.py", line 74, in &lt;module&gt; main() File "onnx_full_export.py", line 70, in main beam_search.save_to_db(args.output_file) File "/home/raden/translate/pytorch_translate/ensemble_export.py", line 1170, in save_to_db self.onnx_export(tmp_file) File "/home/raden/translate/pytorch_translate/ensemble_export.py", line 1130, in onnx_export export_type=ExportTypes.ZIP_ARCHIVE, File "/home/raden/anaconda3/lib/python3.7/site-packages/torch/onnx/__init__.py", line 19, in _export result = utils._export(*args, **kwargs) File "/home/raden/anaconda3/lib/python3.7/site-packages/torch/onnx/utils.py", line 363, in _export _retain_param_name, do_constant_folding) File "/home/raden/anaconda3/lib/python3.7/site-packages/torch/onnx/utils.py", line 256, in _model_to_graph method.graph, tuple(args) + tuple(params), example_outputs, False, propagate) RuntimeError: retval-&gt;inputs().size() == inputs.size() ASSERT FAILED at /pytorch/torch/csrc/jit/script/init.cpp:744, please report a bug to PyTorch. (_propagate_and_assign_input_and_output_shapes at /pytorch/torch/csrc/jit/script/init.cpp:744) frame #0: std::function&lt;std::string ()&gt;::operator()() const + 0x11 (0x7f6b9c93b441 in /home/raden/anaconda3/lib/python3.7/site-packages/torch/lib/libc10.so) frame #1: c10::Error::Error(c10::SourceLocation, std::string const&amp;) + 0x2a (0x7f6b9c93ad7a in /home/raden/anaconda3/lib/python3.7/site-packages/torch/lib/libc10.so) frame #2: &lt;unknown function&gt; + 0x452376 (0x7f6bdbf5c376 in /home/raden/anaconda3/lib/python3.7/site-packages/torch/lib/libtorch_python.so) frame #3: &lt;unknown function&gt; + 0x4793af (0x7f6bdbf833af in /home/raden/anaconda3/lib/python3.7/site-packages/torch/lib/libtorch_python.so) frame #4: &lt;unknown function&gt; + 0x130fac (0x7f6bdbc3afac in /home/raden/anaconda3/lib/python3.7/site-packages/torch/lib/libtorch_python.so) &lt;omitting python frames&gt; frame #31: __libc_start_main + 0xf0 (0x7f6beb660830 in /lib/x86_64-linux-gnu/libc.so.6) </code></pre></div> <h2 dir="auto">To Reproduce</h2> <p dir="auto">Steps to reproduce the behavior:</p> <p dir="auto">Run onnx_full_export.py from <a href="https://github.com/pytorch/translate">https://github.com/pytorch/translate</a></p> <h2 dir="auto">Expected behavior</h2> <h2 dir="auto">Environment</h2> <p dir="auto">Pytorch 1.1 stable</p> <h2 dir="auto">Additional context</h2>
0
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/bonfire-drop-it?solution=function%20drop%28arr%2C%20func%29%20%7B%0A%20%20%2F%2F%20Drop%20them%20elements.%0A%20arr%20%3D%20arr.filter%28func%29%3B%0A%0A%20%20return%20arr%3B%7D%0A%0Adrop%28%5B1%2C%202%2C%203%5D%2C%20function%28n%29%20%7Breturn%20n%20%3C%203%3B%20%7D%29%3B%0A" rel="nofollow">Bonfire: Drop it</a> has an issue.<br> User Agent is: <code class="notranslate">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36</code>.<br> Please describe how to reproduce this issue, and include links to screenshots if possible.</p> <p dir="auto">My code:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function drop(arr, func) { // Drop them elements. arr = arr.filter(func); return arr;} drop([1, 2, 3], function(n) {return n &lt; 3; }); "><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">drop</span><span class="pl-kos">(</span><span class="pl-s1">arr</span><span class="pl-kos">,</span> <span class="pl-s1">func</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-c">// Drop them elements.</span> <span class="pl-s1">arr</span> <span class="pl-c1">=</span> <span class="pl-s1">arr</span><span class="pl-kos">.</span><span class="pl-en">filter</span><span class="pl-kos">(</span><span class="pl-s1">func</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">return</span> <span class="pl-s1">arr</span><span class="pl-kos">;</span><span class="pl-kos">}</span> <span class="pl-en">drop</span><span class="pl-kos">(</span><span class="pl-kos">[</span><span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-c1">2</span><span class="pl-kos">,</span> <span class="pl-c1">3</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">n</span><span class="pl-kos">)</span> <span class="pl-kos">{</span><span class="pl-k">return</span> <span class="pl-s1">n</span> <span class="pl-c1">&lt;</span> <span class="pl-c1">3</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">The last test case has a function showing n&gt;2, however, the result set has a 2 in it.</p>
<p dir="auto">Link: <a href="http://www.freecodecamp.com/challenges/bonfire-drop-it" rel="nofollow">http://www.freecodecamp.com/challenges/bonfire-drop-it</a></p> <p dir="auto">Here is the 5th test case:<br> drop([1, 2, 3, 9, 2], function(n) {return n &gt; 2}) should return [3, 9, 2].</p> <p dir="auto">From the description alone you can see what is wrong. It should return [3, 9], it cannot include "2" in the result array if the function is n &gt; 2.</p> <p dir="auto">If code you write is correct and actually returns [3, 9], you will still not pass the test.<br> If code you write has hardcoded the wrong answer returned quoted in the test case, then the test will pass. So it is expecting the wrong answer.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/9951362/11050934/6684f32c-86ff-11e5-9735-60e98da02f56.png"><img src="https://cloud.githubusercontent.com/assets/9951362/11050934/6684f32c-86ff-11e5-9735-60e98da02f56.png" alt="image" style="max-width: 100%;"></a></p>
1
<p dir="auto">If you have a dataframe with a multiindex, and use groupby and then shift, using the frequency argument, the shifting fails, resulting in an empty result. For example:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np import pandas as pd dates1 = pd.date_range('2015-10-01', '2015-10-03') df1 = pd.DataFrame(dict(grp='A', blah=[1,2,3]), index=dates1) .set_index('grp', append=True) dates2 = pd.date_range('2015-10-02', '2015-10-04') df2 = pd.DataFrame(dict(grp='B', blah=[10,np.nan,30]), index=dates2) .set_index('grp', append=True) df = pd.concat([df1, df2]) In [ ]: df Out[ ]: blah grp 2015-10-01 A 1 2015-10-02 A 2 2015-10-03 A 3 2015-10-02 B 10 2015-10-03 B NaN 2015-10-04 B 30 # This works: In [ ]: df.groupby(level='grp').shift(1) Out[ ]: blah grp 2015-10-01 A NaN 2015-10-02 A 1 2015-10-03 A 2 2015-10-02 B NaN 2015-10-03 B 10 2015-10-04 B NaN # This fails: In [ ]: df.groupby(level='grp').shift(1, freq='D') Out[ ]: Empty DataFrame Columns: [] Index: []"><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-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span> <span class="pl-s1">dates1</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">date_range</span>(<span class="pl-s">'2015-10-01'</span>, <span class="pl-s">'2015-10-03'</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-en">dict</span>(<span class="pl-s1">grp</span><span class="pl-c1">=</span><span class="pl-s">'A'</span>, <span class="pl-s1">blah</span><span class="pl-c1">=</span>[<span class="pl-c1">1</span>,<span class="pl-c1">2</span>,<span class="pl-c1">3</span>]), <span class="pl-s1">index</span><span class="pl-c1">=</span><span class="pl-s1">dates1</span>) .<span class="pl-en">set_index</span>(<span class="pl-s">'grp'</span>, <span class="pl-s1">append</span><span class="pl-c1">=</span><span class="pl-c1">True</span>) <span class="pl-s1">dates2</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">date_range</span>(<span class="pl-s">'2015-10-02'</span>, <span class="pl-s">'2015-10-04'</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-en">dict</span>(<span class="pl-s1">grp</span><span class="pl-c1">=</span><span class="pl-s">'B'</span>, <span class="pl-s1">blah</span><span class="pl-c1">=</span>[<span class="pl-c1">10</span>,<span class="pl-s1">np</span>.<span class="pl-s1">nan</span>,<span class="pl-c1">30</span>]), <span class="pl-s1">index</span><span class="pl-c1">=</span><span class="pl-s1">dates2</span>) .<span class="pl-en">set_index</span>(<span class="pl-s">'grp'</span>, <span class="pl-s1">append</span><span class="pl-c1">=</span><span class="pl-c1">True</span>) <span class="pl-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">concat</span>([<span class="pl-s1">df1</span>, <span class="pl-s1">df2</span>]) <span class="pl-v">In</span> [<span class="pl-s1"></span> ]: <span class="pl-s1">df</span> <span class="pl-v">Out</span>[<span class="pl-s1"></span> ]: <span class="pl-s1">blah</span> <span class="pl-s1">grp</span> <span class="pl-c1">2015</span><span class="pl-c1">-</span><span class="pl-c1">10</span><span class="pl-c1">-</span><span class="pl-c1">01</span> <span class="pl-v">A</span> <span class="pl-c1">1</span> <span class="pl-c1">2015</span><span class="pl-c1">-</span><span class="pl-c1">10</span><span class="pl-c1">-</span><span class="pl-c1">02</span> <span class="pl-v">A</span> <span class="pl-c1">2</span> <span class="pl-c1">2015</span><span class="pl-c1">-</span><span class="pl-c1">10</span><span class="pl-c1">-</span><span class="pl-c1">03</span> <span class="pl-v">A</span> <span class="pl-c1">3</span> <span class="pl-c1">2015</span><span class="pl-c1">-</span><span class="pl-c1">10</span><span class="pl-c1">-</span><span class="pl-c1">02</span> <span class="pl-v">B</span> <span class="pl-c1">10</span> <span class="pl-c1">2015</span><span class="pl-c1">-</span><span class="pl-c1">10</span><span class="pl-c1">-</span><span class="pl-c1">03</span> <span class="pl-v">B</span> <span class="pl-v">NaN</span> <span class="pl-c1">2015</span><span class="pl-c1">-</span><span class="pl-c1">10</span><span class="pl-c1">-</span><span class="pl-c1">04</span> <span class="pl-v">B</span> <span class="pl-c1">30</span> <span class="pl-c"># This works:</span> <span class="pl-v">In</span> [<span class="pl-s1"></span> ]: <span class="pl-s1">df</span>.<span class="pl-en">groupby</span>(<span class="pl-s1">level</span><span class="pl-c1">=</span><span class="pl-s">'grp'</span>).<span class="pl-en">shift</span>(<span class="pl-c1">1</span>) <span class="pl-v">Out</span>[<span class="pl-s1"></span> ]: <span class="pl-s1">blah</span> <span class="pl-s1">grp</span> <span class="pl-c1">2015</span><span class="pl-c1">-</span><span class="pl-c1">10</span><span class="pl-c1">-</span><span class="pl-c1">01</span> <span class="pl-v">A</span> <span class="pl-v">NaN</span> <span class="pl-c1">2015</span><span class="pl-c1">-</span><span class="pl-c1">10</span><span class="pl-c1">-</span><span class="pl-c1">02</span> <span class="pl-v">A</span> <span class="pl-c1">1</span> <span class="pl-c1">2015</span><span class="pl-c1">-</span><span class="pl-c1">10</span><span class="pl-c1">-</span><span class="pl-c1">03</span> <span class="pl-v">A</span> <span class="pl-c1">2</span> <span class="pl-c1">2015</span><span class="pl-c1">-</span><span class="pl-c1">10</span><span class="pl-c1">-</span><span class="pl-c1">02</span> <span class="pl-v">B</span> <span class="pl-v">NaN</span> <span class="pl-c1">2015</span><span class="pl-c1">-</span><span class="pl-c1">10</span><span class="pl-c1">-</span><span class="pl-c1">03</span> <span class="pl-v">B</span> <span class="pl-c1">10</span> <span class="pl-c1">2015</span><span class="pl-c1">-</span><span class="pl-c1">10</span><span class="pl-c1">-</span><span class="pl-c1">04</span> <span class="pl-v">B</span> <span class="pl-v">NaN</span> <span class="pl-c"># This fails:</span> <span class="pl-v">In</span> [<span class="pl-s1"></span> ]: <span class="pl-s1">df</span>.<span class="pl-en">groupby</span>(<span class="pl-s1">level</span><span class="pl-c1">=</span><span class="pl-s">'grp'</span>).<span class="pl-en">shift</span>(<span class="pl-c1">1</span>, <span class="pl-s1">freq</span><span class="pl-c1">=</span><span class="pl-s">'D'</span>) <span class="pl-v">Out</span>[ ]: <span class="pl-v">Empty</span> <span class="pl-v">DataFrame</span> <span class="pl-v">Columns</span>: [] <span class="pl-v">Index</span>: []</pre></div> <p dir="auto">I'm not sure why, however using 'grp' as a column, it works fine:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [ ]: df.reset_index('grp').groupby('grp').shift(1, freq='D') Out[ ]: blah grp A 2015-10-02 1 2015-10-03 2 2015-10-04 3 B 2015-10-03 10 2015-10-04 NaN 2015-10-05 30"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-s1"></span> ]: <span class="pl-s1">df</span>.<span class="pl-en">reset_index</span>(<span class="pl-s">'grp'</span>).<span class="pl-en">groupby</span>(<span class="pl-s">'grp'</span>).<span class="pl-en">shift</span>(<span class="pl-c1">1</span>, <span class="pl-s1">freq</span><span class="pl-c1">=</span><span class="pl-s">'D'</span>) <span class="pl-v">Out</span>[<span class="pl-s1"></span> ]: <span class="pl-s1">blah</span> <span class="pl-s1">grp</span> <span class="pl-v">A</span> <span class="pl-c1">2015</span><span class="pl-c1">-</span><span class="pl-c1">10</span><span class="pl-c1">-</span><span class="pl-c1">02</span> <span class="pl-c1">1</span> <span class="pl-c1">2015</span><span class="pl-c1">-</span><span class="pl-c1">10</span><span class="pl-c1">-</span><span class="pl-c1">03</span> <span class="pl-c1">2</span> <span class="pl-c1">2015</span><span class="pl-c1">-</span><span class="pl-c1">10</span><span class="pl-c1">-</span><span class="pl-c1">04</span> <span class="pl-c1">3</span> <span class="pl-v">B</span> <span class="pl-c1">2015</span><span class="pl-c1">-</span><span class="pl-c1">10</span><span class="pl-c1">-</span><span class="pl-c1">03</span> <span class="pl-c1">10</span> <span class="pl-c1">2015</span><span class="pl-c1">-</span><span class="pl-c1">10</span><span class="pl-c1">-</span><span class="pl-c1">04</span> <span class="pl-v">NaN</span> <span class="pl-c1">2015</span><span class="pl-c1">-</span><span class="pl-c1">10</span><span class="pl-c1">-</span><span class="pl-c1">05</span> <span class="pl-c1">30</span></pre></div>
<p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="73313216" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/10063" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/10063/hovercard" href="https://github.com/pandas-dev/pandas/issues/10063">#10063</a> doesn't appear to have been completely fixed. While the exact example I gave now works (the resample), what if instead of a resample I had wanted to do a tshift? I would have wanted to be able to do <code class="notranslate">df.groupby(level='symbol').tshift(1, 'D')</code>, which still returns an empty DataFrame. Here, there's no aggregating in the time dimension so the TimeGrouper syntax that was the proposed solution wouldn't make sense.</p> <p dir="auto">I also don't understand why the <code class="notranslate">df.groupby([pd.Grouper(level='symbol'), pd.Grouper(level='dt', freq='M')]).mean()</code> syntax is necessary instead of simply being able to do <code class="notranslate">df.groupby(level='symbol').resample('M', how='mean')</code>? The latter seems like much better design.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="df = DataFrame({'A' : 1 },index=pd.MultiIndex.from_product([list('ab'),date_range('20130101',periods=80)],names=['one','two'])) df.groupby([pd.Grouper(level='one'),pd.Grouper(level='two',freq='M')]).tshift(-1,'M')"><pre class="notranslate"><code class="notranslate">df = DataFrame({'A' : 1 },index=pd.MultiIndex.from_product([list('ab'),date_range('20130101',periods=80)],names=['one','two'])) df.groupby([pd.Grouper(level='one'),pd.Grouper(level='two',freq='M')]).tshift(-1,'M') </code></pre></div>
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" checked=""> 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" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li> </ul> <h3 dir="auto">Issue Details</h3> <ul dir="auto"> <li><strong>Electron Version:</strong> <ul dir="auto"> <li> </li> </ul> </li> </ul> <p dir="auto">"electron": "^4.2.12",</p> <ul dir="auto"> <li><strong>Operating System:</strong><br> Windows 10 home Chinese <ul dir="auto"> <li> </li> </ul> </li> <li><strong>Last Known Working Electron version:</strong><br> 6.0.0 + <ul dir="auto"> <li> </li> </ul> </li> </ul> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">Reduce the window to the minimum and click to maximize. In the Restore window, the size of the window is the same as the original size, and the window cannot be reduced</p> <h3 dir="auto">Actual Behavior</h3> <p dir="auto">Reduce the window to the minimum, and click to maximize it. In the Restore window, the window size is larger than the original size, and the window can be reduced</p> <h3 dir="auto">To Reproduce</h3> <p dir="auto">Reduce the vscode editor to the smallest window, click to maximize and restore the window. The size of the window is larger than the original size, and the window can be reduced</p> <h3 dir="auto">Screenshots</h3> <h3 dir="auto">Additional Information</h3> <p dir="auto">In the borderless windows of windows computers, the minimum window width is 800. Drag it to the place where the minimum window cannot be dragged, that is, the window width is 800. Click our customized maximize button. Does the maximize button change the restore button? Click the restore button. It is found that the window has not been restored. The window width may be 814 instead of 800. You can still drag it to the left. Wechat pin can do it, vscode can't.</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/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" checked=""> 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" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li> </ul> <h3 dir="auto">Issue Details</h3> <ul dir="auto"> <li><strong>Electron Version:</strong> <ul dir="auto"> <li>7.1.2 - 9.0.0-beta.3 (and presumably later versions until this bug is fixed)</li> </ul> </li> <li><strong>Operating System:</strong> <ul dir="auto"> <li>Windows 10 pro (1909)</li> </ul> </li> <li><strong>Last Known Working Electron version:</strong> <ul dir="auto"> <li>7.1.1</li> </ul> </li> </ul> <h3 dir="auto">Preconditions</h3> <ul dir="auto"> <li>Window is frameless</li> <li>Window has minimum size</li> <li>Window size is minimum size</li> </ul> <h3 dir="auto">Expected behavior</h3> <ul dir="auto"> <li>Window is maximized</li> <li>Window is unmaximized</li> <li>Window has the same size as before the maximization</li> </ul> <h3 dir="auto">Actual Behavior</h3> <ul dir="auto"> <li>Window is maximized</li> <li>Window is unmaximized</li> <li>Window is slightly higher and wider than before the maximization</li> </ul> <h3 dir="auto">To Reproduce</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="git clone -b frameless-minsize-maximize-unmaximize-bug https://github.com/christian-judt/electron-quick-start.git cd electron-quick-start npm install npm start"><pre class="notranslate"><code class="notranslate">git clone -b frameless-minsize-maximize-unmaximize-bug https://github.com/christian-judt/electron-quick-start.git cd electron-quick-start npm install npm start </code></pre></div> <h3 dir="auto">Additional Information</h3> <ul dir="auto"> <li>This seems to be a reappearing problem. (for the last occurence see <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="337487042" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/13533" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/13533/hovercard" href="https://github.com/electron/electron/issues/13533">#13533</a>)</li> <li>A similar problem with "minimize-restore" instead of "maximize-unmaximize" has appeared in Electron Version 7.1.10. (see <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="571258121" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/22393" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/22393/hovercard" href="https://github.com/electron/electron/issues/22393">#22393</a>)</li> </ul> <h3 dir="auto">Other maybe related issues</h3> <ul dir="auto"> <li>[Windows] Frameless window size increase on a maximize, unmaximize sequence <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="100851037" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/2498" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/2498/hovercard" href="https://github.com/electron/electron/issues/2498">#2498</a></li> <li>Windows: Restore (after minimize) to wrong window size <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="188899049" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/7951" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/7951/hovercard" href="https://github.com/electron/electron/issues/7951">#7951</a></li> <li>maximize, minimize, restore incorrect size <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="380469913" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/15702" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/15702/hovercard" href="https://github.com/electron/electron/issues/15702">#15702</a></li> <li>Electron 6 - restore after minimize has wrong window size <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="482047660" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/19816" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/19816/hovercard" href="https://github.com/electron/electron/issues/19816">#19816</a></li> </ul>
1
<p dir="auto">For <a href="https://doc.rust-lang.org/nightly/std/collections/struct.HashMap.html" rel="nofollow">https://doc.rust-lang.org/nightly/std/collections/struct.HashMap.html</a> :</p> <table role="table"> <thead> <tr> <th>Anchor</th> <th>Lines</th> </tr> </thead> <tbody> <tr> <td>method.extend</td> <td>740, 741</td> </tr> <tr> <td>assoc_type.IntoIter</td> <td>731, 734, 737</td> </tr> <tr> <td>assoc_type.Item</td> <td>730, 733, 736</td> </tr> <tr> <td>method.into_iter</td> <td>732, 735, 738</td> </tr> <tr> <td>examples</td> <td>85, 218, 229, 243, 273, 296, 315, 330, 354, 382, 410, 439, 476, 509, 528, 549, 585, 608, 631, 654, 678, 708</td> </tr> </tbody> </table>
<p dir="auto">When two items in the same documentation page have the same name, rustdoc generates duplicate HTML <code class="notranslate">id</code> attributes for them. This makes the HTML invalid, but more importantly, it makes it impossible to link to anything but the one that shows up first in the source.</p> <p dir="auto">For example, <a href="http://doc.rust-lang.org/nightly/std/vec/struct.Vec.html" rel="nofollow"><code class="notranslate">Vec</code>'s page</a> contains multiple impls of <code class="notranslate">IntoIterator</code>, and therefore multiple HTML elements that have an <code class="notranslate">id</code> attribute of <code class="notranslate">assoc_type.Item</code>, <code class="notranslate">assoc_type.IntoIter</code>, and <code class="notranslate">method.into_iter</code>.</p> <p dir="auto">This is not limited to impls of the same trait, as different traits (and inherent impls) could define methods or associated types with the same name.</p>
1
<h4 dir="auto">Code Sample, a copy-pastable example if possible</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 s = pd.Series([1, 2, 3, np.nan, 5], index=pd.date_range('2017-01-01', '2017-01-05')) print(s.rolling('3d', min_periods=1).apply(lambda x: 42)) "><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">s</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">Series</span>([<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">3</span>, <span class="pl-s1">np</span>.<span class="pl-s1">nan</span>, <span class="pl-c1">5</span>], <span class="pl-s1">index</span><span class="pl-c1">=</span><span class="pl-s1">pd</span>.<span class="pl-en">date_range</span>(<span class="pl-s">'2017-01-01'</span>, <span class="pl-s">'2017-01-05'</span>)) <span class="pl-en">print</span>(<span class="pl-s1">s</span>.<span class="pl-en">rolling</span>(<span class="pl-s">'3d'</span>, <span class="pl-s1">min_periods</span><span class="pl-c1">=</span><span class="pl-c1">1</span>).<span class="pl-en">apply</span>(<span class="pl-k">lambda</span> <span class="pl-s1">x</span>: <span class="pl-c1">42</span>))</pre></div> <h4 dir="auto">Problem description</h4> <p dir="auto">Output of the above code sample:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2017-01-01 42.0 2017-01-02 42.0 2017-01-03 42.0 2017-01-04 NaN 2017-01-05 42.0"><pre class="notranslate"><code class="notranslate">2017-01-01 42.0 2017-01-02 42.0 2017-01-03 42.0 2017-01-04 NaN 2017-01-05 42.0 </code></pre></div> <p dir="auto">It seems that the user function did not get applied to the window corresponding to the original NaN row, resulting in NaN as the result for that row. Why is that? The more reasonable output would be all 42 because by the <code class="notranslate">min_periods</code> constraint, all of the windows are valid.</p> <p dir="auto">Compare this to the equivalent fixed window version:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="s = pd.Series([1, 2, 3, np.nan, 5]) print(s.rolling(3, min_periods=1).apply(lambda x: 42))"><pre class="notranslate"><span class="pl-s1">s</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">Series</span>([<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">3</span>, <span class="pl-s1">np</span>.<span class="pl-s1">nan</span>, <span class="pl-c1">5</span>]) <span class="pl-en">print</span>(<span class="pl-s1">s</span>.<span class="pl-en">rolling</span>(<span class="pl-c1">3</span>, <span class="pl-s1">min_periods</span><span class="pl-c1">=</span><span class="pl-c1">1</span>).<span class="pl-en">apply</span>(<span class="pl-k">lambda</span> <span class="pl-s1">x</span>: <span class="pl-c1">42</span>))</pre></div> <p dir="auto">which gives the following output:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="0 42.0 1 42.0 2 42.0 3 42.0 4 42.0"><pre class="notranslate"><code class="notranslate">0 42.0 1 42.0 2 42.0 3 42.0 4 42.0 </code></pre></div> <p dir="auto">Is this inconsistency between fixed and variable size window a desired behavior?</p> <h4 dir="auto">Expected Output</h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2017-01-01 42.0 2017-01-02 42.0 2017-01-03 42.0 2017-01-04 42.0 2017-01-05 42.0"><pre class="notranslate"><code class="notranslate">2017-01-01 42.0 2017-01-02 42.0 2017-01-03 42.0 2017-01-04 42.0 2017-01-05 42.0 </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.13.final.0<br> python-bits: 64<br> OS: Linux<br> OS-release: 4.11.9-1-ARCH<br> machine: x86_64<br> processor:<br> byteorder: little<br> LC_ALL: None<br> LANG: en_US.UTF-8<br> LOCALE: None.None</p> <p dir="auto">pandas: 0.21.0.dev+316.gf2b0bdc9b<br> pytest: None<br> pip: 9.0.1<br> setuptools: 36.2.5<br> Cython: 0.26<br> numpy: 1.13.1<br> scipy: None<br> pyarrow: None<br> xarray: None<br> IPython: 5.4.1<br> sphinx: None<br> patsy: None<br> dateutil: 2.6.1<br> pytz: 2017.2<br> blosc: None<br> bottleneck: None<br> tables: None<br> numexpr: None<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: None<br> sqlalchemy: None<br> pymysql: None<br> psycopg2: None<br> jinja2: None<br> s3fs: None<br> pandas_gbq: None<br> pandas_datareader: None</p> </details>
<h4 dir="auto">Code Sample, a copy-pastable example if possible</h4> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import pandas as pd df = pd.DataFrame({'A': [0, 1, 2, 3, 4]}, index=[pd.Timestamp('20130101 09:00:00'), pd.Timestamp('20130101 09:00:01'), pd.Timestamp('20130101 09:00:02'), pd.Timestamp('20130101 09:00:03'), pd.Timestamp('20130101 09:00:04')]) rolled = df.rolling('3s', 3) print rolled.sum() print rolled.apply(sum)"><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-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>({<span class="pl-s">'A'</span>: [<span class="pl-c1">0</span>, <span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">3</span>, <span class="pl-c1">4</span>]}, <span class="pl-s1">index</span><span class="pl-c1">=</span>[<span class="pl-s1">pd</span>.<span class="pl-v">Timestamp</span>(<span class="pl-s">'20130101 09:00:00'</span>), <span class="pl-s1">pd</span>.<span class="pl-v">Timestamp</span>(<span class="pl-s">'20130101 09:00:01'</span>), <span class="pl-s1">pd</span>.<span class="pl-v">Timestamp</span>(<span class="pl-s">'20130101 09:00:02'</span>), <span class="pl-s1">pd</span>.<span class="pl-v">Timestamp</span>(<span class="pl-s">'20130101 09:00:03'</span>), <span class="pl-s1">pd</span>.<span class="pl-v">Timestamp</span>(<span class="pl-s">'20130101 09:00:04'</span>)]) <span class="pl-s1">rolled</span> <span class="pl-c1">=</span> <span class="pl-s1">df</span>.<span class="pl-en">rolling</span>(<span class="pl-s">'3s'</span>, <span class="pl-c1">3</span>) <span class="pl-k">print</span> <span class="pl-s1">rolled</span>.<span class="pl-en">sum</span>() <span class="pl-k">print</span> <span class="pl-s1">rolled</span>.<span class="pl-en">apply</span>(<span class="pl-s1">sum</span>)</pre></div> <p dir="auto">outputs</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" A 2013-01-01 09:00:00 NaN 2013-01-01 09:00:01 NaN 2013-01-01 09:00:02 3.0 2013-01-01 09:00:03 6.0 2013-01-01 09:00:04 9.0 A 2013-01-01 09:00:00 NaN 2013-01-01 09:00:01 NaN 2013-01-01 09:00:02 NaN 2013-01-01 09:00:03 NaN 2013-01-01 09:00:04 NaN"><pre class="notranslate"><code class="notranslate"> A 2013-01-01 09:00:00 NaN 2013-01-01 09:00:01 NaN 2013-01-01 09:00:02 3.0 2013-01-01 09:00:03 6.0 2013-01-01 09:00:04 9.0 A 2013-01-01 09:00:00 NaN 2013-01-01 09:00:01 NaN 2013-01-01 09:00:02 NaN 2013-01-01 09:00:03 NaN 2013-01-01 09:00:04 NaN </code></pre></div> <h4 dir="auto">Problem description</h4> <p dir="auto">rolled.apply.sum() should give the same output as rolled.apply(sum) but instead only returns nan.</p> <h4 dir="auto">Expected Output</h4> <p dir="auto">same as rolled.sum()</p> <h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4> <details> INSTALLED VERSIONS ------------------ commit: None python: 2.7.12.final.0 python-bits: 64 OS: Linux OS-release: 4.4.0-59-generic machine: x86_64 processor: x86_64 byteorder: little LC_ALL: None LANG: en_US.UTF-8 LOCALE: None.None <p dir="auto">pandas: 0.19.2<br> nose: None<br> pip: 9.0.1<br> setuptools: 20.7.0<br> Cython: None<br> numpy: 1.12.0<br> scipy: 0.18.1<br> statsmodels: 0.6.1<br> xarray: None<br> IPython: 5.1.0<br> sphinx: None<br> patsy: 0.4.1<br> dateutil: 2.6.0<br> pytz: 2016.10<br> blosc: None<br> bottleneck: None<br> tables: None<br> numexpr: None<br> matplotlib: 1.5.3<br> openpyxl: None<br> xlrd: None<br> xlwt: None<br> xlsxwriter: None<br> lxml: None<br> bs4: None<br> html5lib: None<br> httplib2: None<br> apiclient: None<br> sqlalchemy: None<br> pymysql: None<br> psycopg2: None<br> jinja2: None<br> boto: 2.38.0<br> pandas_datareader: None</p> </details>
1
<p dir="auto">as per a FIXME (formerly an XXX)</p>
<p dir="auto">The builders are running rustdoc on Linux, so <code class="notranslate">#[cfg(windows)]</code> is false.</p> <p dir="auto">Maybe the platform rustdoc in running on should not be relevant for generating documentation. Could rustdoc be run with both <code class="notranslate">--cfg unix</code> and <code class="notranslate">--cfg windows</code>?</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: Microsoft Windows NT 10.0.18362.0 Windows Terminal version (if applicable): 0.4.2382.0 Any other software? Powershell 6.2.1 or Powershell 5.1 R 3.6.1"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: Microsoft Windows NT 10.0.18362.0 Windows Terminal version (if applicable): 0.4.2382.0 Any other software? Powershell 6.2.1 or Powershell 5.1 R 3.6.1 </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <p dir="auto">Open a <a href="https://cran.r-project.org/index.html" rel="nofollow">R</a> session then type any expression and evaluate it. Then the up arrow should retrieve older commands in the history.</p> <h1 dir="auto">Expected behavior</h1> <p dir="auto">The up arrow should retrieve older commands in the history.</p> <h1 dir="auto">Actual behavior</h1> <p dir="auto">The up arrow does nothing, even if the R history is in an expected state as showed by the <code class="notranslate">history()</code> function.</p> <p dir="auto">This bug occurs only in "Windows based" terminal, such as powershell and cmd, executed by Windows Terminal. This bug does not exist if R is run inside the <em>old</em> terminal. This bug does not exist either if R is running inside a ssh session inside powershell.</p> <p dir="auto">Windows Terminal -&gt; Powershell -&gt; R -&gt; Bug<br> Windows Terminal -&gt; CMD-&gt; R -&gt; Bug<br> Windows Terminal -&gt; WSL Ubuntu 18.04 -&gt; R -&gt; Bug<br> Old terminal -&gt; Powershell -&gt; R -&gt; No bug<br> Old terminal -&gt; CMD -&gt; R -&gt; No bug<br> Windows Terminal -&gt; Powershell -&gt; SSH into a linux host -&gt; R -&gt; No bug</p>
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number:[Version 10.0.18362.295] Windows Terminal version (if applicable): 0.4.2382.0 PowerToys: 0.11.0"><pre class="notranslate"><code class="notranslate">Windows build number:[Version 10.0.18362.295] Windows Terminal version (if applicable): 0.4.2382.0 PowerToys: 0.11.0 </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <p dir="auto">Hold down the SHIFT key and drag the Windows Terminal window.</p> <h1 dir="auto">Expected behavior</h1> <p dir="auto">The FancyZone function in PowerToys should react and resize&amp;put the window to where I want it to be, just like other windows like explorer.exe and firefox.exe.</p> <h1 dir="auto">Actual behavior</h1> <p dir="auto">The FancyZone does not react. It just seems to be that I am dragging the window without holding down SHIFT key.</p>
0
<p dir="auto">by <strong><a href="mailto:kwalsh@holycross.edu">kwalsh@holycross.edu</a></strong>:</p> <pre class="notranslate">What does 'go version' print? go version go1.3 linux/amd64 What steps reproduce the problem? If possible, include a link to a program on play.golang.org. Example: <a href="http://play.golang.org/p/RoYiOHlHCQ" rel="nofollow">http://play.golang.org/p/RoYiOHlHCQ</a> Try any of these examples with var x, y int 1. n, err = fmt.Sscanf("7 8", "%d %d", &amp;x, &amp;y) 2. n, err = fmt.Sscanf("7\n8", "%d %d", &amp;x, &amp;y) 3. n, err = fmt.Sscanf("7 8", "%d%d", &amp;x, &amp;y) 4. n, err = fmt.Sscanf("7\n8", "%d%d", &amp;x, &amp;y) 5. n, err = fmt.Sscanf("7\n\n8", "%d\n\n%d", &amp;x, &amp;y) What happened? The results are, respectively: 1. n=2 2. n=2 3. n=2 4. n=1 5. n=1 What should have happened instead? If I am to believe the documentation for fmt, something like: 1. n=2 2. n=1 3. n=1 4. n=1 5. n=2 Please provide any additional information below. See also <a href="https://golang.org/issue/8236" rel="nofollow">issue #8236</a> for a related error. Case (1) is as expected. All the other examples give surprising results, either contradicting other examples or directly contradicting the docs. The docs says "Scanf, Fscanf and Sscanf require newlines in the input to match newlines in the format". Case (2) contradicts that, since apparently newlines in the input can instead match a variety of kinds of space in the format. The docs says "When scanning with a format, all non-empty runs of space characters (except newline) are equivalent to a single space in both the format and the input. With that proviso, text in the format string must match the input text;" Case (3) contradicts that, since apparently certain spaces in the input don't have to match anything in the format. Case (4) is similar to case (3), but gives different results (arguably following the docs this time). Case (5) is just crazy talk, since the format matches the input perfectly. Some of the problem seems to stem from fmt/scan.go:1075 func (s *ss) advance(format string) (i int) which seems to treaty *any* sequence of spaces (including newlines) in the format string as being equivalent to a single space, directly contradicting the docs for Sscanf and friends. It also mishandles the case of "\r\n" in the input because, around line 1096 it directly checks for '\n' without bothering to check for '\r' too. And all of that code completely ignores ss.nlIsSpace, but then after the first input space it invokes skipSpace which has yet different behavior. Compounding those problems, in fmt/scan.go:651 func (s *ss) scanInt(verb rune, bitSize int) int64 and many similar functions, skipSpace() is called, though the docs mention nothing about skipping leading spaces. I think this one is just a documentation bug: classic C scanf ignores leading spaces for most verbs, and apparently fmt/scan does too but does not document that behavior and actually repeatedly implies the opposite.</pre>
<p dir="auto">by <strong>amirtaghavi2020</strong>:</p> <pre class="notranslate">The code : package main import ( "fmt" ) var( i int first [2]int second [2]int result [2]int ) func main(){ fmt.Println("Enter first array:\r\n") for i=0;i&lt;2;i++{ _,err:=fmt.Scanf("%d",&amp;first[i]) if err!=nil{ fmt.Println(err) } } fmt.Println("First[0]=",first[0],"First[1]=",first[1]) fmt.Println("Enter second array:") for i=0;i&lt;2;i++{ _,err:=fmt.Scanf("%d",&amp;second[i]) if err!=nil{ fmt.Println(err) } } fmt.Println("Second[0]=",second[0],"Second[1]=",second[1]) //this is problem for i=0;i&lt;2;i++{ result[i] = first[i] + second[i] } } when run it it asked Enter first array: next i type 10SPACE20NEWLINE next it asked Enter second array: then i type 20SPACE30NEWLINE Enter first array: 10 20 First[0]=10 First[1]=20 Enter second array: 30 40 Second[0]=0 Second[1]=30 // this is problem - i type 30 but second[0] give 0 value but on linux , the same code result is correct; my operating system is windows my go version is : go1.3 windows/amd64</pre>
1
<p dir="auto">I am trying to use Atom to edit contents in Polish language. The default and preferred keyboard bindings, so called "programmers keyboard", uses AltGr (right Alt) to enter Polish letters: ą, ć, ę, ł, ń, ó, ś, ż, ź.</p> <p dir="auto">The problem is that the Atom editor (or perhaps MS Windows 7 Home Pro) represents AltGr-o, which is used to enter 'ó' character, as Ctrl-Alt-o... which keybinding is taken by Atom as application:add-project-folder. This makes it hard to use Atom for content in Polish language...</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">Compiling a program with:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="material-ui@1.0.0-beta.21 (.20 compiles ok) ts 2.6.1 - strict: true (with strictFunctionTypes set to false it compiles ok)"><pre class="notranslate"><code class="notranslate">material-ui@1.0.0-beta.21 (.20 compiles ok) ts 2.6.1 - strict: true (with strictFunctionTypes set to false it compiles ok) </code></pre></div> <p dir="auto">gives</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="build-lint/0 build-lint/0 node_modules/material-ui/Button/Button.d.ts(5,18): error TS2430: Interface 'ButtonProps' incorrectly extends interface 'Pick&lt;ButtonBaseProps &amp; { classes: any; }, &quot;media&quot; | &quot;hidden&quot; | &quot;dir&quot; | &quot;form&quot; | &quot;style&quot; | &quot;title&quot;...'. build-lint/0 Type 'ButtonProps' is not assignable to type 'Pick&lt;ButtonBaseProps &amp; { classes: any; }, &quot;media&quot; | &quot;hidden&quot; | &quot;dir&quot; | &quot;form&quot; | &quot;style&quot; | &quot;title&quot;...'. build-lint/0 Types of property 'component' are incompatible. build-lint/0 Type 'string | ComponentClass&lt;ButtonProps&gt; | StatelessComponent&lt;ButtonProps&gt; | undefined' is not assignable to type 'string | ComponentClass&lt;ButtonBaseProps&gt; | StatelessComponent&lt;ButtonBaseProps&gt; | undefined'. build-lint/0 Type 'ComponentClass&lt;ButtonProps&gt;' is not assignable to type 'string | ComponentClass&lt;ButtonBaseProps&gt; | StatelessComponent&lt;ButtonBaseProps&gt; | undefined'. build-lint/0 Type 'ComponentClass&lt;ButtonProps&gt;' is not assignable to type 'StatelessComponent&lt;ButtonBaseProps&gt;'. build-lint/0 Types of property 'propTypes' are incompatible. build-lint/0 Type 'ValidationMap&lt;ButtonProps&gt; | undefined' is not assignable to type 'ValidationMap&lt;ButtonBaseProps&gt; | undefined'. build-lint/0 Type 'ValidationMap&lt;ButtonProps&gt;' is not assignable to type 'ValidationMap&lt;ButtonBaseProps&gt; | undefined'. build-lint/0 Type 'ValidationMap&lt;ButtonProps&gt;' is not assignable to type 'ValidationMap&lt;ButtonBaseProps&gt;'. build-lint/0 Types of property 'centerRipple' are incompatible. build-lint/0 Type '((object: ButtonProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null) | und...' is not assignable to type '((object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null) |...'. build-lint/0 Type '(object: ButtonProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null' is not assignable to type '((object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null) |...'. build-lint/0 Type '(object: ButtonProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null' is not assignable to type '(object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null'. build-lint/0 Types of parameters 'object' and 'object' are incompatible. build-lint/0 Type 'ButtonBaseProps' is not assignable to type 'ButtonProps'. build-lint/0 Types of property 'color' are incompatible. build-lint/0 Type 'string | undefined' is not assignable to type '&quot;default&quot; | &quot;inherit&quot; | &quot;primary&quot; | &quot;accent&quot; | &quot;contrast&quot; | undefined'. build-lint/0 Type 'string' is not assignable to type '&quot;default&quot; | &quot;inherit&quot; | &quot;primary&quot; | &quot;accent&quot; | &quot;contrast&quot; | undefined'. build-lint/0 build-lint/0 5 export interface ButtonProps extends StandardProps&lt; build-lint/0 ~~~~~~~~~~~ build-lint/0 build-lint/0 build-lint/0 node_modules/material-ui/List/ListItem.d.ts(5,18): error TS2430: Interface 'ListItemProps' incorrectly extends interface 'Pick&lt;ButtonBaseProps &amp; LiHTMLAttributes&lt;HTMLLIElement&gt; &amp; { classes: any; }, &quot;media&quot; | &quot;hidden&quot; | ...'. build-lint/0 Type 'ListItemProps' is not assignable to type 'Pick&lt;ButtonBaseProps &amp; LiHTMLAttributes&lt;HTMLLIElement&gt; &amp; { classes: any; }, &quot;media&quot; | &quot;hidden&quot; | ...'. build-lint/0 Types of property 'component' are incompatible. build-lint/0 Type 'string | ComponentClass&lt;ListItemProps&gt; | StatelessComponent&lt;ListItemProps&gt; | undefined' is not assignable to type 'string | ComponentClass&lt;ButtonBaseProps&gt; | StatelessComponent&lt;ButtonBaseProps&gt; | undefined'. build-lint/0 Type 'ComponentClass&lt;ListItemProps&gt;' is not assignable to type 'string | ComponentClass&lt;ButtonBaseProps&gt; | StatelessComponent&lt;ButtonBaseProps&gt; | undefined'. build-lint/0 Type 'ComponentClass&lt;ListItemProps&gt;' is not assignable to type 'StatelessComponent&lt;ButtonBaseProps&gt;'. build-lint/0 Types of property 'propTypes' are incompatible. build-lint/0 Type 'ValidationMap&lt;ListItemProps&gt; | undefined' is not assignable to type 'ValidationMap&lt;ButtonBaseProps&gt; | undefined'. build-lint/0 Type 'ValidationMap&lt;ListItemProps&gt;' is not assignable to type 'ValidationMap&lt;ButtonBaseProps&gt; | undefined'. build-lint/0 Type 'ValidationMap&lt;ListItemProps&gt;' is not assignable to type 'ValidationMap&lt;ButtonBaseProps&gt;'. build-lint/0 Types of property 'centerRipple' are incompatible. build-lint/0 Type '((object: ListItemProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null) | u...' is not assignable to type '((object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null) |...'. build-lint/0 Type '(object: ListItemProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null' is not assignable to type '((object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null) |...'. build-lint/0 Type '(object: ListItemProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null' is not assignable to type '(object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null'. build-lint/0 Types of parameters 'object' and 'object' are incompatible. build-lint/0 Type 'ButtonBaseProps' is not assignable to type 'ListItemProps'. build-lint/0 Types of property 'component' are incompatible. build-lint/0 Type 'string | ComponentClass&lt;ButtonBaseProps&gt; | StatelessComponent&lt;ButtonBaseProps&gt; | undefined' is not assignable to type 'string | ComponentClass&lt;ListItemProps&gt; | StatelessComponent&lt;ListItemProps&gt; | undefined'. build-lint/0 Type 'ComponentClass&lt;ButtonBaseProps&gt;' is not assignable to type 'string | ComponentClass&lt;ListItemProps&gt; | StatelessComponent&lt;ListItemProps&gt; | undefined'. build-lint/0 Type 'ComponentClass&lt;ButtonBaseProps&gt;' is not assignable to type 'StatelessComponent&lt;ListItemProps&gt;'. build-lint/0 Types of property 'propTypes' are incompatible. build-lint/0 Type 'ValidationMap&lt;ButtonBaseProps&gt; | undefined' is not assignable to type 'ValidationMap&lt;ListItemProps&gt; | undefined'. build-lint/0 Type 'ValidationMap&lt;ButtonBaseProps&gt;' is not assignable to type 'ValidationMap&lt;ListItemProps&gt; | undefined'. build-lint/0 Type 'ValidationMap&lt;ButtonBaseProps&gt;' is not assignable to type 'ValidationMap&lt;ListItemProps&gt;'. build-lint/0 Types of property 'component' are incompatible. build-lint/0 Type '((object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null) |...' is not assignable to type '((object: ListItemProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null) | u...'. build-lint/0 Type '(object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null' is not assignable to type '((object: ListItemProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null) | u...'. build-lint/0 Type '(object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null' is not assignable to type '(object: ListItemProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null'. build-lint/0 Types of parameters 'object' and 'object' are incompatible. build-lint/0 Type 'ListItemProps' is not assignable to type 'ButtonBaseProps'. build-lint/0 Types of property 'component' are incompatible. build-lint/0 Type 'string | ComponentClass&lt;ListItemProps&gt; | StatelessComponent&lt;ListItemProps&gt; | undefined' is not assignable to type 'string | ComponentClass&lt;ButtonBaseProps&gt; | StatelessComponent&lt;ButtonBaseProps&gt; | undefined'. build-lint/0 Type 'ComponentClass&lt;ListItemProps&gt;' is not assignable to type 'string | ComponentClass&lt;ButtonBaseProps&gt; | StatelessComponent&lt;ButtonBaseProps&gt; | undefined'. build-lint/0 Type 'ComponentClass&lt;ListItemProps&gt;' is not assignable to type 'StatelessComponent&lt;ButtonBaseProps&gt;'. build-lint/0 build-lint/0 5 export interface ListItemProps extends StandardProps&lt; build-lint/0 ~~~~~~~~~~~~~"><pre class="notranslate"><code class="notranslate">build-lint/0 build-lint/0 node_modules/material-ui/Button/Button.d.ts(5,18): error TS2430: Interface 'ButtonProps' incorrectly extends interface 'Pick&lt;ButtonBaseProps &amp; { classes: any; }, "media" | "hidden" | "dir" | "form" | "style" | "title"...'. build-lint/0 Type 'ButtonProps' is not assignable to type 'Pick&lt;ButtonBaseProps &amp; { classes: any; }, "media" | "hidden" | "dir" | "form" | "style" | "title"...'. build-lint/0 Types of property 'component' are incompatible. build-lint/0 Type 'string | ComponentClass&lt;ButtonProps&gt; | StatelessComponent&lt;ButtonProps&gt; | undefined' is not assignable to type 'string | ComponentClass&lt;ButtonBaseProps&gt; | StatelessComponent&lt;ButtonBaseProps&gt; | undefined'. build-lint/0 Type 'ComponentClass&lt;ButtonProps&gt;' is not assignable to type 'string | ComponentClass&lt;ButtonBaseProps&gt; | StatelessComponent&lt;ButtonBaseProps&gt; | undefined'. build-lint/0 Type 'ComponentClass&lt;ButtonProps&gt;' is not assignable to type 'StatelessComponent&lt;ButtonBaseProps&gt;'. build-lint/0 Types of property 'propTypes' are incompatible. build-lint/0 Type 'ValidationMap&lt;ButtonProps&gt; | undefined' is not assignable to type 'ValidationMap&lt;ButtonBaseProps&gt; | undefined'. build-lint/0 Type 'ValidationMap&lt;ButtonProps&gt;' is not assignable to type 'ValidationMap&lt;ButtonBaseProps&gt; | undefined'. build-lint/0 Type 'ValidationMap&lt;ButtonProps&gt;' is not assignable to type 'ValidationMap&lt;ButtonBaseProps&gt;'. build-lint/0 Types of property 'centerRipple' are incompatible. build-lint/0 Type '((object: ButtonProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null) | und...' is not assignable to type '((object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null) |...'. build-lint/0 Type '(object: ButtonProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null' is not assignable to type '((object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null) |...'. build-lint/0 Type '(object: ButtonProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null' is not assignable to type '(object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null'. build-lint/0 Types of parameters 'object' and 'object' are incompatible. build-lint/0 Type 'ButtonBaseProps' is not assignable to type 'ButtonProps'. build-lint/0 Types of property 'color' are incompatible. build-lint/0 Type 'string | undefined' is not assignable to type '"default" | "inherit" | "primary" | "accent" | "contrast" | undefined'. build-lint/0 Type 'string' is not assignable to type '"default" | "inherit" | "primary" | "accent" | "contrast" | undefined'. build-lint/0 build-lint/0 5 export interface ButtonProps extends StandardProps&lt; build-lint/0 ~~~~~~~~~~~ build-lint/0 build-lint/0 build-lint/0 node_modules/material-ui/List/ListItem.d.ts(5,18): error TS2430: Interface 'ListItemProps' incorrectly extends interface 'Pick&lt;ButtonBaseProps &amp; LiHTMLAttributes&lt;HTMLLIElement&gt; &amp; { classes: any; }, "media" | "hidden" | ...'. build-lint/0 Type 'ListItemProps' is not assignable to type 'Pick&lt;ButtonBaseProps &amp; LiHTMLAttributes&lt;HTMLLIElement&gt; &amp; { classes: any; }, "media" | "hidden" | ...'. build-lint/0 Types of property 'component' are incompatible. build-lint/0 Type 'string | ComponentClass&lt;ListItemProps&gt; | StatelessComponent&lt;ListItemProps&gt; | undefined' is not assignable to type 'string | ComponentClass&lt;ButtonBaseProps&gt; | StatelessComponent&lt;ButtonBaseProps&gt; | undefined'. build-lint/0 Type 'ComponentClass&lt;ListItemProps&gt;' is not assignable to type 'string | ComponentClass&lt;ButtonBaseProps&gt; | StatelessComponent&lt;ButtonBaseProps&gt; | undefined'. build-lint/0 Type 'ComponentClass&lt;ListItemProps&gt;' is not assignable to type 'StatelessComponent&lt;ButtonBaseProps&gt;'. build-lint/0 Types of property 'propTypes' are incompatible. build-lint/0 Type 'ValidationMap&lt;ListItemProps&gt; | undefined' is not assignable to type 'ValidationMap&lt;ButtonBaseProps&gt; | undefined'. build-lint/0 Type 'ValidationMap&lt;ListItemProps&gt;' is not assignable to type 'ValidationMap&lt;ButtonBaseProps&gt; | undefined'. build-lint/0 Type 'ValidationMap&lt;ListItemProps&gt;' is not assignable to type 'ValidationMap&lt;ButtonBaseProps&gt;'. build-lint/0 Types of property 'centerRipple' are incompatible. build-lint/0 Type '((object: ListItemProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null) | u...' is not assignable to type '((object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null) |...'. build-lint/0 Type '(object: ListItemProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null' is not assignable to type '((object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null) |...'. build-lint/0 Type '(object: ListItemProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null' is not assignable to type '(object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null'. build-lint/0 Types of parameters 'object' and 'object' are incompatible. build-lint/0 Type 'ButtonBaseProps' is not assignable to type 'ListItemProps'. build-lint/0 Types of property 'component' are incompatible. build-lint/0 Type 'string | ComponentClass&lt;ButtonBaseProps&gt; | StatelessComponent&lt;ButtonBaseProps&gt; | undefined' is not assignable to type 'string | ComponentClass&lt;ListItemProps&gt; | StatelessComponent&lt;ListItemProps&gt; | undefined'. build-lint/0 Type 'ComponentClass&lt;ButtonBaseProps&gt;' is not assignable to type 'string | ComponentClass&lt;ListItemProps&gt; | StatelessComponent&lt;ListItemProps&gt; | undefined'. build-lint/0 Type 'ComponentClass&lt;ButtonBaseProps&gt;' is not assignable to type 'StatelessComponent&lt;ListItemProps&gt;'. build-lint/0 Types of property 'propTypes' are incompatible. build-lint/0 Type 'ValidationMap&lt;ButtonBaseProps&gt; | undefined' is not assignable to type 'ValidationMap&lt;ListItemProps&gt; | undefined'. build-lint/0 Type 'ValidationMap&lt;ButtonBaseProps&gt;' is not assignable to type 'ValidationMap&lt;ListItemProps&gt; | undefined'. build-lint/0 Type 'ValidationMap&lt;ButtonBaseProps&gt;' is not assignable to type 'ValidationMap&lt;ListItemProps&gt;'. build-lint/0 Types of property 'component' are incompatible. build-lint/0 Type '((object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null) |...' is not assignable to type '((object: ListItemProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null) | u...'. build-lint/0 Type '(object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null' is not assignable to type '((object: ListItemProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null) | u...'. build-lint/0 Type '(object: ButtonBaseProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null' is not assignable to type '(object: ListItemProps, key: string, componentName: string, ...rest: any[]) =&gt; Error | null'. build-lint/0 Types of parameters 'object' and 'object' are incompatible. build-lint/0 Type 'ListItemProps' is not assignable to type 'ButtonBaseProps'. build-lint/0 Types of property 'component' are incompatible. build-lint/0 Type 'string | ComponentClass&lt;ListItemProps&gt; | StatelessComponent&lt;ListItemProps&gt; | undefined' is not assignable to type 'string | ComponentClass&lt;ButtonBaseProps&gt; | StatelessComponent&lt;ButtonBaseProps&gt; | undefined'. build-lint/0 Type 'ComponentClass&lt;ListItemProps&gt;' is not assignable to type 'string | ComponentClass&lt;ButtonBaseProps&gt; | StatelessComponent&lt;ButtonBaseProps&gt; | undefined'. build-lint/0 Type 'ComponentClass&lt;ListItemProps&gt;' is not assignable to type 'StatelessComponent&lt;ButtonBaseProps&gt;'. build-lint/0 build-lint/0 5 export interface ListItemProps extends StandardProps&lt; build-lint/0 ~~~~~~~~~~~~~ </code></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">It should compile without errors.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">It doesn't compile due to errors.</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <ol dir="auto"> <li>Compile anything with the list of dependencies as seen above</li> </ol>
<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">Text should render in a Chip</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">Nothing is rendered in Chip</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <p dir="auto"><a href="https://codesandbox.io/s/m3qqp31x78" rel="nofollow">https://codesandbox.io/s/m3qqp31x78</a></p> <h2 dir="auto">Context</h2> <p dir="auto">Trying to use Chip in project and everything is coming back empty. The content of "other" in Chip.js has the value {children: "Text to display"}, which I don't think is supported.</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.27"</td> </tr> <tr> <td>React</td> <td>^16.0.0</td> </tr> <tr> <td>browser</td> <td>Chrome</td> </tr> </tbody> </table>
0
<h3 dir="auto">Description</h3> <p dir="auto">One of the main things we want to know is task durations.</p> <p dir="auto">The main way I know how to get this is to hover over the <code class="notranslate">Gannt</code> chart or use the <code class="notranslate">Task Duration</code> chart.</p> <p dir="auto">It would be nice to have the data that is in the <code class="notranslate">Gannt</code> chart or the <code class="notranslate">Task Duration</code> chat in a table view.</p> <h3 dir="auto">Use case/motivation</h3> <p dir="auto">That plots are making the data harder to find than a table alone.</p> <h3 dir="auto">Related issues</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Are you willing to submit a PR?</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> 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">Describe the issue with documentation</h3> <p dir="auto">In response to the contents of <a href="https://airflow.apache.org/docs/apache-airflow/stable/tutorial.html#testing" rel="nofollow">https://airflow.apache.org/docs/apache-airflow/stable/tutorial.html#testing</a> as of 2021-10-13</p> <p dir="auto">There are several broken things in the tutorial as given, and a few pieces of missing context. (I can help PR this once I go through the contributor guidelines; just recording them for now).</p> <p dir="auto">In order:</p> <h2 dir="auto">Table Definitions</h2> <p dir="auto">In <a href="https://airflow.apache.org/docs/apache-airflow/stable/tutorial.html#initial-setup" rel="nofollow">initial setup</a>, there is a name collision in the <code class="notranslate">employees_temp</code>: both tables use a constraint named <code class="notranslate">employees_pk</code>. The latter (<code class="notranslate">_temp</code>) should probably use <code class="notranslate">employees_temp_pk</code>.</p> <p dir="auto">(As a nit-pick, it feels odd to capitalize the table names, requires quoting the names when using <code class="notranslate">psql</code>'s <code class="notranslate">\d</code>.)</p> <h2 dir="auto">Python Code</h2> <h3 dir="auto">Imports</h3> <p dir="auto">Firstly, it's missing necessary imports. Perhaps they're obvious if you're experienced with airflow, but for those coming into fresh it's not clear what's missing. It appears to be:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from airflow.decorators import dag, task from airflow.hooks.postgres_hook import PostgresHook from datetime import datetime, timedelta import requests"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">airflow</span>.<span class="pl-s1">decorators</span> <span class="pl-k">import</span> <span class="pl-s1">dag</span>, <span class="pl-s1">task</span> <span class="pl-k">from</span> <span class="pl-s1">airflow</span>.<span class="pl-s1">hooks</span>.<span class="pl-s1">postgres_hook</span> <span class="pl-k">import</span> <span class="pl-v">PostgresHook</span> <span class="pl-k">from</span> <span class="pl-s1">datetime</span> <span class="pl-k">import</span> <span class="pl-s1">datetime</span>, <span class="pl-s1">timedelta</span> <span class="pl-k">import</span> <span class="pl-s1">requests</span></pre></div> <h3 dir="auto">Connections</h3> <p dir="auto">There's no mention of 'connections' (or the concept) in the documentation leading up to this tutorial. The code as written relies on an airflow <code class="notranslate">Connection</code> named <code class="notranslate">LOCAL</code> being defined.</p> <h3 dir="auto">Paths and Duplicated Code</h3> <p dir="auto">The path where the file is downloaded is hard-coded to <code class="notranslate">/usr/local/airflow/...</code>. For those following <a href="https://airflow.apache.org/docs/apache-airflow/stable/start/docker.html" rel="nofollow">https://airflow.apache.org/docs/apache-airflow/stable/start/docker.html</a> this would likely need to be <code class="notranslate">/opt/airflow/dags/files</code>, and require the <code class="notranslate">files</code> subdirectory to be created first.<br> Regardless, it would be nice if this path were defined once at the top of the script or as a parameter or other config option rather than copy-pasted.</p> <h3 dir="auto">Bugs</h3> <p dir="auto"><code class="notranslate">cur.copy_from</code> references file handle with variable <code class="notranslate">f</code> but the handle's name is <code class="notranslate">file</code>.</p> <p dir="auto"><code class="notranslate">copy_from</code> does not handle a CSV header row. We either need to skip the first line, or use <code class="notranslate">copy_expert</code> or similar:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="cur.copy_expert(&quot;COPY \&quot;Employees_temp\&quot; FROM stdin WITH CSV HEADER DELIMITER AS ','&quot;, file)"><pre class="notranslate"><span class="pl-s1">cur</span>.<span class="pl-en">copy_expert</span>(<span class="pl-s">"COPY <span class="pl-cce">\"</span>Employees_temp<span class="pl-cce">\"</span> FROM stdin WITH CSV HEADER DELIMITER AS ','"</span>, <span class="pl-s1">file</span>)</pre></div> <h3 dir="auto">Location</h3> <p dir="auto">It says 'save the file' but doesn't specify whether there's any naming convention or somesuch. I might suggest providing an example name like <code class="notranslate">etl.py</code>.</p> <h2 dir="auto">Data</h2> <p dir="auto">The data this script relies on comes from <a href="https://raw.githubusercontent.com/apache/airflow/main/docs/apache-airflow/pipeline_example.csv" rel="nofollow">https://raw.githubusercontent.com/apache/airflow/main/docs/apache-airflow/pipeline_example.csv</a> .</p> <p dir="auto">It appears this file is a spreadsheet export; the 'Serial Number<code class="notranslate">column's data is in scientific notation format. This is resulting in some truncation and duplicate keys (e.g.</code>9.78938E+12` appears 25 times).</p> <p dir="auto">Secondly, the data at this URL appears to use linefeed (LF,<code class="notranslate">\n</code>) for newlines. The postgres 'copy' documentation says this should work fine.<br> The python code itself <em>before</em> attempting the <code class="notranslate">copy_from</code> splits the input on newline; effectively <em>removing</em> all newlines from the file. Seems we should remove the 'split' and just write the contents directly, or have it <code class="notranslate">file.write(row+'\n')</code></p> <p dir="auto">Lastly, there's a blank newline at the end of the written file; this doesn't work for postgres <code class="notranslate">copy from</code></p> <h3 dir="auto">How to solve the problem</h3> <p dir="auto">Just to re-itemize from the above:</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> include all necessary imports in the example</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> move the saved file path to a variable or config with notes to modify it to meet the current system's requirements</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> include a note on <code class="notranslate">Connections</code> and note that one needs to be set up as appropriate (either one named <code class="notranslate">LOCAL</code> or the user should create one and modify the code here to use it). This may be a bigger concern for those following the [docker start](<a href="https://airflow.apache.org/docs/apache-airflow/stable/start/docker.html" rel="nofollow">https://airflow.apache.org/docs/apache-airflow/stable/start/docker.html</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> avoid duplicate primary key constraint names in the table definitions</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> retain newlines when writing CSV file and remove blank lines</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> correct variable names (<code class="notranslate">file</code> instead of <code class="notranslate">f</code>)</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> properly handle CSV header row</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> use <code class="notranslate">long</code> number format rather than scientific notation</li> </ul> <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" checked=""> 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">Certain svg attributes are camelcased, such as <code class="notranslate">viewBox</code>. However, <code class="notranslate">[viewBox]</code> would be recognized by browsers as <code class="notranslate">[viewbox]</code> since it is not a standard SVG attribute, and so the important camelcasing information is lost.</p> <p dir="auto">There should be a convention in Angular 2 for supporting bindings to SVG attributes.</p>
<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"><em>Note: Related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="196970379" data-permission-text="Title is private" data-url="https://github.com/angular/angular/issues/13614" data-hovercard-type="issue" data-hovercard-url="/angular/angular/issues/13614/hovercard" href="https://github.com/angular/angular/issues/13614">#13614</a> and <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="199742976" data-permission-text="Title is private" data-url="https://github.com/angular/angular/issues/13853" data-hovercard-type="issue" data-hovercard-url="/angular/angular/issues/13853/hovercard" href="https://github.com/angular/angular/issues/13853">#13853</a></em><br> Although arguably a duplicate, I filed this separate because it could be easily fixed by changing the signature to unblock unit tests separate from the underlying issue. Also, I believe this shows that the unifying issue is ES6 implementation.</p> <p dir="auto"><strong>Current behavior</strong><br> ES6 distributions will result in certain syntax of anonymous functions to not have a prototype. The JIT compiler <a href="https://github.com/angular/angular/blob/126fda2613b1ad87ff62591bb1d3a23cd8f369a1/modules/%40angular/compiler/src/jit/compiler.ts#L125">here</a> uses a signature for useFactory that fails all unit tests <a href="https://github.com/angular/angular/blob/8b81bb1eb6b57afce4c384f7db2e734cab06421e/modules/%40angular/core/src/reflection/reflection_capabilities.ts#L249">here</a>.</p> <p dir="auto"><strong>Expected behavior</strong><br> First, to unblock ES6 unit tests. Second, to handle factories without prototypes.</p> <p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong><br> Plunk <a href="https://plnkr.co/edit/R78PQPY5MMMSUv5hWYPM?p=preview" rel="nofollow">here</a><br> Shows failure in es6. Change everything to es5 distributions and it works.</p> <ul dir="auto"> <li> <p dir="auto"><strong>Angular version:</strong> 4.0.0-rc.1</p> </li> <li> <p dir="auto"><strong>Browser:</strong> [Chrome@latest, edge]</p> </li> <li> <p dir="auto"><strong>Language:</strong> [ES6]</p> </li> </ul>
0
<p dir="auto">I think it would be helpful UX wise to see an incremental hot-reload build version bottom right of the app when you are hot-reloading.</p> <p dir="auto">Many times you are hot-reloading non-ui stuff and looking at your device and you dont quite sure if the app hot-reloaded and have to look back at the IDE to see if the hot-reload message is updated in the console</p>
<p dir="auto">Hello there</p> <p dir="auto">I wanted to know if you're interested into a barcode scanner plugin for flutter. I'm working on one and as it will use most of the camera plugin will be nice to be able either to merge it a make it an official plugin or have a way to extends the camera plugin from an external plugin instead of duplicate everything ^^</p> <p dir="auto">What do you think ?</p>
0
<p dir="auto"><strong>Problem Description</strong><br> I faced an issue when upgrading my elasticsearch 2.3.3 to elasticsearch 5.1.1 by upgrading from apt repository. When elasticsearch 5.1.1 was upgraded and I tried to start it, Elasticsearch did not start but in the STDOUT it never gave a failure. Instead, in STDOUT it gave an OK message wwhich signifies that elasticsearch has started succesfully.</p> <p dir="auto"><strong>Problem Issue Identification</strong><br> After debugging it, I found the issue causing it by traversing through the /var/log/elasticsearch/elasticsearch.log file. The issue was caused by using elasticsearch-head plugin which was installed in ES-2.3.3 but as it is not supported in ES-5.1.1, elasticsearch failed to start.</p> <p dir="auto"><strong>Actual Behaviour</strong><br> As an end-user I think we should not get an OK message if elasticsearch fails to start and it should be mentioned in the Installation of Elasticsearch documentation (<a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/deb.html" rel="nofollow">https://www.elastic.co/guide/en/elasticsearch/reference/current/deb.html</a>).</p> <p dir="auto"><strong>Note: This issue will occur for every plugins which were earlier supported prior to ES-5.0.x version.</strong></p> <p dir="auto">Steps To Reproduce:</p> <ol dir="auto"> <li>Install any ES version prior to ES-5.x.x</li> <li>Install Elasticsearch-head in previous ES version (Validate its installation as it will be listed under $ES_HOME/plugins directory)</li> <li>Upgrade ES to ES-5.1.1</li> <li>Add ES as a service</li> <li>Run ES as a service. You will get following STDOUT console on command line:-</li> </ol> <p dir="auto">root@ubuntu:/home/yuvraj# sudo service elasticsearch start<br> Starting Elasticsearch Server [2016-12-11T12:07:50,609][WARN ][o.e.c.l.LogConfigurator ] ignoring unsupported logging configuration file [/etc/elasticsearch/logging.yml], logging is configured via [/etc/elasticsearch/log4j2.properties]<br> [ OK ]</p> <p dir="auto">Please find required details as mentioned below -</p> <p dir="auto"><strong>Elasticsearch version</strong>: Elasticsearch-5.1.1</p> <p dir="auto"><strong>Plugins installed</strong>: elasticsearch-head</p> <p dir="auto"><strong>JVM version</strong>: Oracle java version "1.8.0_91"</p> <p dir="auto"><strong>OS version</strong>: Ubuntu 14.04</p> <p dir="auto"><strong>Provide logs (if relevant)</strong>: <a href="https://github.com/elastic/elasticsearch/files/644320/elasticsearch-error-captured.txt">elasticsearch-error-captured.txt</a></p>
<p dir="auto">In the current implementation of zen discovery the cluster state broadcasting by the master does not scale too well as every change in the cluster state results in the cluster state being sent to every single node by the master.</p> <p dir="auto">This can lead to quite some traffic, in an cluster with 500 nodes and 15000 shards, even when the cluster state by itself has only 1MB, the master node will sent a total of 500MB per cluster state update.</p> <p dir="auto">So it should be possible to only send a diff of the changes to the nodes instead of the full cluster state. In case the nodes recognize that they missed an update, they could query the master node to resend the full cluster state to them.</p> <p dir="auto">Another possibility would be a tiered distribution of the state, where the master node does not directly send the updates to every single node, but through other nodes which forward the state to the other nodes in the cluster. A gossipping protocol could here be used.</p> <p dir="auto">If the clusterstate does not need to be distributed in realtime, one could also throttle the propagation of the state, so that when changes come in rapid succession, the changes can be merged before the state has been sent out to every node.</p> <p dir="auto">Any ideas?</p>
0
<p dir="auto"><a href="http://flask.pocoo.org/docs/flask-docs.pdf" rel="nofollow">http://flask.pocoo.org/docs/flask-docs.pdf</a> and <a href="http://flask.pocoo.org/docs/flask-docs.zip" rel="nofollow">http://flask.pocoo.org/docs/flask-docs.zip</a> return 404 errors.</p>
<p dir="auto">Hi, I was following the tutorial on Flask at <a href="http://flask.pocoo.org/docs/0.10/tutorial/" rel="nofollow">this</a>.<br> And I tried to return json data so I use <code class="notranslate">jsonify</code></p> <p dir="auto">I found out that jsonify use <code class="notranslate">dict()</code> to convert params into a dict. But this will remove items with duplicate key.</p> <p dir="auto">In my case, I querried the data using this query</p> <p dir="auto"><code class="notranslate">cur = g.db.execute('SELECT title, text from entries order by id desc')</code></p> <p dir="auto">The data was:</p> <p dir="auto"><code class="notranslate">[(u'Nope', u'hi, this is anoooother things'), (u'Nope', u'This is another'), (u'Hi', u'This is a sample entry')]</code></p> <p dir="auto">So the jsonify just return:</p> <p dir="auto"><code class="notranslate">{ "Hi": "This is a sample entry", "Nope": "This is another" }</code></p> <p dir="auto">The code work correctly, but I don't know if this is intended or not?</p>
0
<p dir="auto">Date.toLocaleString always returns in the same format, no matter what options are given to it. I'm sure this isn't intentional, but it bugs me a bit, and i couldn't find another issue on the subject</p>
<p dir="auto">As seen in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="422116599" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/1952" data-hovercard-type="issue" data-hovercard-url="/denoland/deno/issues/1952/hovercard" href="https://github.com/denoland/deno/issues/1952">#1952</a> / <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="405562913" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/1636" data-hovercard-type="issue" data-hovercard-url="/denoland/deno/issues/1636/hovercard" href="https://github.com/denoland/deno/issues/1636">#1636</a> ICU needs to be added in Deno build.</p> <p dir="auto">Switching this flag to true maybe: <a href="https://github.com/denoland/deno/blob/master/.gn#L50">https://github.com/denoland/deno/blob/master/.gn#L50</a> ?</p> <p dir="auto">ref: <a href="https://v8.dev/docs/i18n" rel="nofollow">https://v8.dev/docs/i18n</a></p>
1
<p dir="auto">Hi, I am trying to install packages for Atom but almost every single time NPM throws an error. Look below. Thank you very much.</p> <p dir="auto">Installing “autocomplete-clang@0.6.0” failed.Hide output…</p> <p dir="auto">npm http GET <a href="https://registry.npmjs.org/atom-space-pen-views" rel="nofollow">https://registry.npmjs.org/atom-space-pen-views</a><br> npm http GET <a href="https://registry.npmjs.org/underscore-plus" rel="nofollow">https://registry.npmjs.org/underscore-plus</a><br> npm ERR! not found: git<br> npm ERR!<br> npm ERR! Failed using git.<br> npm ERR! This is most likely not a problem with npm itself.<br> npm ERR! Please check if you have git installed and in your PATH.</p> <p dir="auto">npm ERR! System Windows_NT 6.2.9200<br> npm ERR! command "c:\Users\Rafi\AppData\Local\atom\app-0.174.0\resources\app\apm\node_modules\atom-package-manager\bin\node.exe" "c:\Users\Rafi\AppData\Local\atom\app-0.174.0\resources\app\apm\node_modules\atom-package-manager\node_modules\npm\bin\npm-cli.js" "--globalconfig" "c:\Users\Rafi\AppData\Local\atom\app-0.174.0\resources\app\apm\node_modules\atom-package-manager.apmrc" "--userconfig" "c:\Users\Rafi.atom.apmrc" "install" "C:\Users\Rafi\AppData\Local\Temp\d-115015-992-1xp8dy5\package.tgz" "--target=0.20.0" "--arch=ia32" "--msvs_version=2013"<br> npm ERR! cwd C:\Users\Rafi\AppData\Local\Temp\apm-install-dir-115015-992-16a707u<br> npm ERR! node -v v0.10.35<br> npm ERR! npm -v 1.4.4<br> npm ERR! code ENOGIT<br> npm http 304 <a href="https://registry.npmjs.org/atom-space-pen-views" rel="nofollow">https://registry.npmjs.org/atom-space-pen-views</a><br> npm http 304 <a href="https://registry.npmjs.org/underscore-plus" rel="nofollow">https://registry.npmjs.org/underscore-plus</a><br> npm</p>
<p dir="auto">Many beginners to apm are flummoxed when they get errors because git is not available. See <a href="https://discuss.atom.io/t/sync-settings-wont-install/13701" rel="nofollow">https://discuss.atom.io/t/sync-settings-wont-install/13701</a> as one example.</p> <p dir="auto">APM should check and see if git works and install git if it doesn't. Git is a real dependency and should be treated as such.</p>
1
<p dir="auto"><code class="notranslate">/_cat/indices</code> currently allows returning an explicit set of headers in its output, such as health, status, index name, shard counts, etc. I'd love to see this endpoint support an additional header parameter: <code class="notranslate">?h=creation_date</code>.</p> <p dir="auto">This would be useful for enumerating indices by age.</p>
<p dir="auto">Would be nice to provide an additional option for admins to return index.creation_date (from the index metadata) for the indices that are returned from the _cat/indices api.</p>
1
<p dir="auto">Please:</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Check for duplicate issues.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Provide a complete example of how to reproduce the bug, wrapped in triple backticks like this:</li> </ul> <p dir="auto">The following <a href="https://github.com/ska-sa/codex-africanus/blob/master/africanus/rime/jax/tests/test_jax_phase_delay.py">test case</a> has worked for a while, but has recently started failing. It seems that there isn't a constant handler for <code class="notranslate">complex64</code> anymore? The following reproducer demonstrates the issue, but replacing <code class="notranslate">out_dtype.type(1j)</code> with <code class="notranslate">1j</code> fixes the problem.</p> <p dir="auto">This works on jax 0.2.26 and jaxlib 0.1.75, but fails on jax 0.2.27 and 0.1.76.</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np import jax import jax.numpy as jnp @jax.jit def phase_delay(lm, uvw, frequency): out_dtype = jnp.result_type(lm, uvw, frequency, np.complex64) one = lm.dtype.type(1.0) neg_two_pi_over_c = lm.dtype.type(-2*np.pi/3e8) l = lm[:, 0, None, None] # noqa m = lm[:, 1, None, None] u = uvw[None, :, 0, None] v = uvw[None, :, 1, None] w = uvw[None, :, 2, None] n = jnp.sqrt(one - l**2 - m**2) - one real_phase = (neg_two_pi_over_c * (l * u + m * v + n * w) * frequency[None, None, :]) # replacing out_dtype.type(1j) with 1j fixes this problem return jnp.exp(out_dtype.type(1j)*real_phase) if __name__ == &quot;__main__&quot;: uvw = np.random.random(size=(100, 3)).astype(np.float32) lm = np.random.random(size=(10, 2)).astype(np.float32)*0.001 frequency = np.linspace(.856e9, .856e9*2, 64).astype(np.float32) complex_phase = phase_delay(lm, uvw, frequency)"><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-k">import</span> <span class="pl-s1">jax</span> <span class="pl-k">import</span> <span class="pl-s1">jax</span>.<span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">jnp</span> <span class="pl-en">@<span class="pl-s1">jax</span>.<span class="pl-s1">jit</span></span> <span class="pl-k">def</span> <span class="pl-en">phase_delay</span>(<span class="pl-s1">lm</span>, <span class="pl-s1">uvw</span>, <span class="pl-s1">frequency</span>): <span class="pl-s1">out_dtype</span> <span class="pl-c1">=</span> <span class="pl-s1">jnp</span>.<span class="pl-en">result_type</span>(<span class="pl-s1">lm</span>, <span class="pl-s1">uvw</span>, <span class="pl-s1">frequency</span>, <span class="pl-s1">np</span>.<span class="pl-s1">complex64</span>) <span class="pl-s1">one</span> <span class="pl-c1">=</span> <span class="pl-s1">lm</span>.<span class="pl-s1">dtype</span>.<span class="pl-en">type</span>(<span class="pl-c1">1.0</span>) <span class="pl-s1">neg_two_pi_over_c</span> <span class="pl-c1">=</span> <span class="pl-s1">lm</span>.<span class="pl-s1">dtype</span>.<span class="pl-en">type</span>(<span class="pl-c1">-</span><span class="pl-c1">2</span><span class="pl-c1">*</span><span class="pl-s1">np</span>.<span class="pl-s1">pi</span><span class="pl-c1">/</span><span class="pl-c1">3e8</span>) <span class="pl-s1">l</span> <span class="pl-c1">=</span> <span class="pl-s1">lm</span>[:, <span class="pl-c1">0</span>, <span class="pl-c1">None</span>, <span class="pl-c1">None</span>] <span class="pl-c"># noqa</span> <span class="pl-s1">m</span> <span class="pl-c1">=</span> <span class="pl-s1">lm</span>[:, <span class="pl-c1">1</span>, <span class="pl-c1">None</span>, <span class="pl-c1">None</span>] <span class="pl-s1">u</span> <span class="pl-c1">=</span> <span class="pl-s1">uvw</span>[<span class="pl-c1">None</span>, :, <span class="pl-c1">0</span>, <span class="pl-c1">None</span>] <span class="pl-s1">v</span> <span class="pl-c1">=</span> <span class="pl-s1">uvw</span>[<span class="pl-c1">None</span>, :, <span class="pl-c1">1</span>, <span class="pl-c1">None</span>] <span class="pl-s1">w</span> <span class="pl-c1">=</span> <span class="pl-s1">uvw</span>[<span class="pl-c1">None</span>, :, <span class="pl-c1">2</span>, <span class="pl-c1">None</span>] <span class="pl-s1">n</span> <span class="pl-c1">=</span> <span class="pl-s1">jnp</span>.<span class="pl-en">sqrt</span>(<span class="pl-s1">one</span> <span class="pl-c1">-</span> <span class="pl-s1">l</span><span class="pl-c1">**</span><span class="pl-c1">2</span> <span class="pl-c1">-</span> <span class="pl-s1">m</span><span class="pl-c1">**</span><span class="pl-c1">2</span>) <span class="pl-c1">-</span> <span class="pl-s1">one</span> <span class="pl-s1">real_phase</span> <span class="pl-c1">=</span> (<span class="pl-s1">neg_two_pi_over_c</span> <span class="pl-c1">*</span> (<span class="pl-s1">l</span> <span class="pl-c1">*</span> <span class="pl-s1">u</span> <span class="pl-c1">+</span> <span class="pl-s1">m</span> <span class="pl-c1">*</span> <span class="pl-s1">v</span> <span class="pl-c1">+</span> <span class="pl-s1">n</span> <span class="pl-c1">*</span> <span class="pl-s1">w</span>) <span class="pl-c1">*</span> <span class="pl-s1">frequency</span>[<span class="pl-c1">None</span>, <span class="pl-c1">None</span>, :]) <span class="pl-c"># replacing out_dtype.type(1j) with 1j fixes this problem</span> <span class="pl-k">return</span> <span class="pl-s1">jnp</span>.<span class="pl-en">exp</span>(<span class="pl-s1">out_dtype</span>.<span class="pl-en">type</span>(<span class="pl-c1">1j</span>)<span class="pl-c1">*</span><span class="pl-s1">real_phase</span>) <span class="pl-k">if</span> <span class="pl-s1">__name__</span> <span class="pl-c1">==</span> <span class="pl-s">"__main__"</span>: <span class="pl-s1">uvw</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">random</span>(<span class="pl-s1">size</span><span class="pl-c1">=</span>(<span class="pl-c1">100</span>, <span class="pl-c1">3</span>)).<span class="pl-en">astype</span>(<span class="pl-s1">np</span>.<span class="pl-s1">float32</span>) <span class="pl-s1">lm</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">random</span>(<span class="pl-s1">size</span><span class="pl-c1">=</span>(<span class="pl-c1">10</span>, <span class="pl-c1">2</span>)).<span class="pl-en">astype</span>(<span class="pl-s1">np</span>.<span class="pl-s1">float32</span>)<span class="pl-c1">*</span><span class="pl-c1">0.001</span> <span class="pl-s1">frequency</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">linspace</span>(<span class="pl-c1">.856e9</span>, <span class="pl-c1">.856e9</span><span class="pl-c1">*</span><span class="pl-c1">2</span>, <span class="pl-c1">64</span>).<span class="pl-en">astype</span>(<span class="pl-s1">np</span>.<span class="pl-s1">float32</span>) <span class="pl-s1">complex_phase</span> <span class="pl-c1">=</span> <span class="pl-en">phase_delay</span>(<span class="pl-s1">lm</span>, <span class="pl-s1">uvw</span>, <span class="pl-s1">frequency</span>)</pre></div> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1119800143" data-permission-text="Title is private" data-url="https://github.com/google/jax/issues/9390" data-hovercard-type="issue" data-hovercard-url="/google/jax/issues/9390/hovercard" href="https://github.com/google/jax/issues/9390">#9390</a></li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python test_complex_constant_fail.py WARNING:absl:No GPU/TPU found, falling back to CPU. (Set TF_CPP_MIN_LOG_LEVEL=0 and rerun for more info.) Traceback (most recent call last): File &quot;test_complex_constant_fail.py&quot;, line 32, in &lt;module&gt; complex_phase = phase_delay(lm, uvw, frequency) File &quot;/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/_src/traceback_util.py&quot;, line 165, in reraise_with_filtered_traceback return fun(*args, **kwargs) File &quot;/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/_src/api.py&quot;, line 429, in cache_miss donated_invars=donated_invars, inline=inline) File &quot;/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/core.py&quot;, line 1671, in bind return call_bind(self, fun, *args, **params) File &quot;/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/core.py&quot;, line 1683, in call_bind outs = top_trace.process_call(primitive, fun, tracers, params) File &quot;/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/core.py&quot;, line 596, in process_call return primitive.impl(f, *tracers, **params) File &quot;/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/_src/dispatch.py&quot;, line 143, in _xla_call_impl *unsafe_map(arg_spec, args)) File &quot;/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/linear_util.py&quot;, line 272, in memoized_fun ans = call(fun, *args) File &quot;/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/_src/dispatch.py&quot;, line 170, in _xla_callable_uncached *arg_specs).compile().unsafe_call File &quot;/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/_src/profiler.py&quot;, line 206, in wrapper return func(*args, **kwargs) File &quot;/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/_src/dispatch.py&quot;, line 260, in lower_xla_callable donated_invars) File &quot;/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/interpreters/mlir.py&quot;, line 403, in lower_jaxpr_to_module input_output_aliases=input_output_aliases) File &quot;/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/interpreters/mlir.py&quot;, line 541, in lower_jaxpr_to_fun *args) File &quot;/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/interpreters/mlir.py&quot;, line 606, in jaxpr_subcomp in_nodes = map(read, eqn.invars) File &quot;/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/_src/util.py&quot;, line 44, in safe_map return list(map(f, *args)) File &quot;/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/interpreters/mlir.py&quot;, line 583, in read return ir_constants(v.val, canonicalize_types=True) File &quot;/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/interpreters/mlir.py&quot;, line 171, in ir_constants raise TypeError(&quot;No constant handler for type: {}&quot;.format(type(val))) jax._src.traceback_util.UnfilteredStackTrace: TypeError: No constant handler for type: &lt;class 'numpy.complex64'&gt; The stack trace below excludes JAX-internal frames. The preceding is the original exception that occurred, unmodified. -------------------- The above exception was the direct cause of the following exception: Traceback (most recent call last): File &quot;test_complex_constant_fail.py&quot;, line 32, in &lt;module&gt; complex_phase = phase_delay(lm, uvw, frequency) File &quot;/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/interpreters/mlir.py&quot;, line 171, in ir_constants raise TypeError(&quot;No constant handler for type: {}&quot;.format(type(val))) TypeError: No constant handler for type: &lt;class 'numpy.complex64'&gt;"><pre class="notranslate"><code class="notranslate">$ python test_complex_constant_fail.py WARNING:absl:No GPU/TPU found, falling back to CPU. (Set TF_CPP_MIN_LOG_LEVEL=0 and rerun for more info.) Traceback (most recent call last): File "test_complex_constant_fail.py", line 32, in &lt;module&gt; complex_phase = phase_delay(lm, uvw, frequency) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/_src/traceback_util.py", line 165, in reraise_with_filtered_traceback return fun(*args, **kwargs) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/_src/api.py", line 429, in cache_miss donated_invars=donated_invars, inline=inline) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/core.py", line 1671, in bind return call_bind(self, fun, *args, **params) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/core.py", line 1683, in call_bind outs = top_trace.process_call(primitive, fun, tracers, params) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/core.py", line 596, in process_call return primitive.impl(f, *tracers, **params) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/_src/dispatch.py", line 143, in _xla_call_impl *unsafe_map(arg_spec, args)) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/linear_util.py", line 272, in memoized_fun ans = call(fun, *args) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/_src/dispatch.py", line 170, in _xla_callable_uncached *arg_specs).compile().unsafe_call File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/_src/profiler.py", line 206, in wrapper return func(*args, **kwargs) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/_src/dispatch.py", line 260, in lower_xla_callable donated_invars) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/interpreters/mlir.py", line 403, in lower_jaxpr_to_module input_output_aliases=input_output_aliases) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/interpreters/mlir.py", line 541, in lower_jaxpr_to_fun *args) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/interpreters/mlir.py", line 606, in jaxpr_subcomp in_nodes = map(read, eqn.invars) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/_src/util.py", line 44, in safe_map return list(map(f, *args)) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/interpreters/mlir.py", line 583, in read return ir_constants(v.val, canonicalize_types=True) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/interpreters/mlir.py", line 171, in ir_constants raise TypeError("No constant handler for type: {}".format(type(val))) jax._src.traceback_util.UnfilteredStackTrace: TypeError: No constant handler for type: &lt;class 'numpy.complex64'&gt; The stack trace below excludes JAX-internal frames. The preceding is the original exception that occurred, unmodified. -------------------- The above exception was the direct cause of the following exception: Traceback (most recent call last): File "test_complex_constant_fail.py", line 32, in &lt;module&gt; complex_phase = phase_delay(lm, uvw, frequency) File "/home/sperkins/venv/afr/lib/python3.7/site-packages/jax/interpreters/mlir.py", line 171, in ir_constants raise TypeError("No constant handler for type: {}".format(type(val))) TypeError: No constant handler for type: &lt;class 'numpy.complex64'&gt; </code></pre></div>
<p dir="auto">Please:</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Check for duplicate issues.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Provide a complete example of how to reproduce the bug, wrapped in triple backticks like this:</li> </ul> <ol dir="auto"> <li>Install jax v0.3.5 and CUDA-enabled jaxlib v0.3.0.</li> <li>Run the test suite.</li> <li>Observe the <code class="notranslate">cuSparseTest.test_coo_sorted_indices_gpu_lowerings</code> test to fail:</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="=================================== FAILURES =================================== ______________ cuSparseTest.test_coo_sorted_indices_gpu_lowerings ______________ [gw0] linux -- Python 3.9.11 /nix/store/bvzpppawf2naqv3qhxqv66jxaq3iaxyj-python3-3.9.11/bin/python3.9 self = &lt;sparse_test.cuSparseTest testMethod=test_coo_sorted_indices_gpu_lowerings&gt; @unittest.skipIf(not GPU_LOWERING_ENABLED, &quot;test requires cusparse/hipsparse&quot;) @jtu.skip_on_devices(&quot;rocm&quot;) # TODO(rocm): see SWDEV-328107 def test_coo_sorted_indices_gpu_lowerings(self): dtype = jnp.float32 mat = jnp.arange(12, dtype=dtype).reshape(4, 3) mat_rows_sorted = sparse.COO.fromdense(mat) self.assertTrue(mat_rows_sorted._rows_sorted) self.assertFalse(mat_rows_sorted._cols_sorted) mat_cols_sorted = sparse.COO.fromdense(mat.T).T self.assertFalse(mat_cols_sorted._rows_sorted) self.assertTrue(mat_cols_sorted._cols_sorted) mat_unsorted = sparse.COO(mat_rows_sorted._bufs, shape=mat_rows_sorted.shape) self.assertFalse(mat_unsorted._rows_sorted) self.assertFalse(mat_unsorted._cols_sorted) self.assertArraysEqual(mat, mat_rows_sorted._sort_rows().todense()) self.assertArraysEqual(mat, mat_cols_sorted._sort_rows().todense()) self.assertArraysEqual(mat, mat_unsorted._sort_rows().todense()) todense = jit(sparse.coo_todense) with self.assertNoWarnings(): dense_rows_sorted = todense(mat_rows_sorted) dense_cols_sorted = todense(mat_cols_sorted) dense_unsorted = todense(mat_unsorted._sort_rows()) with self.assertWarnsRegex(sparse.CuSparseEfficiencyWarning, &quot;coo_todense GPU lowering requires matrices with sorted rows.*&quot;): &gt; dense_unsorted_fallback = todense(mat_unsorted) E AssertionError: CuSparseEfficiencyWarning not triggered tests/sparse_test.py:473: AssertionError =========================== short test summary info ============================ FAILED tests/sparse_test.py::cuSparseTest::test_coo_sorted_indices_gpu_lowerings ========== 1 failed, 14145 passed, 1487 skipped in 165.49s (0:02:45) =========== error: builder for '/nix/store/bk64c49429aj73wkz4dijlf15h0l2v9r-python3.9-jax-0.3.5.drv' failed with exit code 1; last 10 log lines: &gt; dense_cols_sorted = todense(mat_cols_sorted) &gt; dense_unsorted = todense(mat_unsorted._sort_rows()) &gt; with self.assertWarnsRegex(sparse.CuSparseEfficiencyWarning, &quot;coo_todense GPU lowering requires matrices with sorted rows.*&quot;): &gt; &gt; dense_unsorted_fallback = todense(mat_unsorted) &gt; E AssertionError: CuSparseEfficiencyWarning not triggered &gt; &gt; tests/sparse_test.py:473: AssertionError &gt; =========================== short test summary info ============================ &gt; FAILED tests/sparse_test.py::cuSparseTest::test_coo_sorted_indices_gpu_lowerings &gt; ========== 1 failed, 14145 passed, 1487 skipped in 165.49s (0:02:45) ==========="><pre class="notranslate"><code class="notranslate">=================================== FAILURES =================================== ______________ cuSparseTest.test_coo_sorted_indices_gpu_lowerings ______________ [gw0] linux -- Python 3.9.11 /nix/store/bvzpppawf2naqv3qhxqv66jxaq3iaxyj-python3-3.9.11/bin/python3.9 self = &lt;sparse_test.cuSparseTest testMethod=test_coo_sorted_indices_gpu_lowerings&gt; @unittest.skipIf(not GPU_LOWERING_ENABLED, "test requires cusparse/hipsparse") @jtu.skip_on_devices("rocm") # TODO(rocm): see SWDEV-328107 def test_coo_sorted_indices_gpu_lowerings(self): dtype = jnp.float32 mat = jnp.arange(12, dtype=dtype).reshape(4, 3) mat_rows_sorted = sparse.COO.fromdense(mat) self.assertTrue(mat_rows_sorted._rows_sorted) self.assertFalse(mat_rows_sorted._cols_sorted) mat_cols_sorted = sparse.COO.fromdense(mat.T).T self.assertFalse(mat_cols_sorted._rows_sorted) self.assertTrue(mat_cols_sorted._cols_sorted) mat_unsorted = sparse.COO(mat_rows_sorted._bufs, shape=mat_rows_sorted.shape) self.assertFalse(mat_unsorted._rows_sorted) self.assertFalse(mat_unsorted._cols_sorted) self.assertArraysEqual(mat, mat_rows_sorted._sort_rows().todense()) self.assertArraysEqual(mat, mat_cols_sorted._sort_rows().todense()) self.assertArraysEqual(mat, mat_unsorted._sort_rows().todense()) todense = jit(sparse.coo_todense) with self.assertNoWarnings(): dense_rows_sorted = todense(mat_rows_sorted) dense_cols_sorted = todense(mat_cols_sorted) dense_unsorted = todense(mat_unsorted._sort_rows()) with self.assertWarnsRegex(sparse.CuSparseEfficiencyWarning, "coo_todense GPU lowering requires matrices with sorted rows.*"): &gt; dense_unsorted_fallback = todense(mat_unsorted) E AssertionError: CuSparseEfficiencyWarning not triggered tests/sparse_test.py:473: AssertionError =========================== short test summary info ============================ FAILED tests/sparse_test.py::cuSparseTest::test_coo_sorted_indices_gpu_lowerings ========== 1 failed, 14145 passed, 1487 skipped in 165.49s (0:02:45) =========== error: builder for '/nix/store/bk64c49429aj73wkz4dijlf15h0l2v9r-python3.9-jax-0.3.5.drv' failed with exit code 1; last 10 log lines: &gt; dense_cols_sorted = todense(mat_cols_sorted) &gt; dense_unsorted = todense(mat_unsorted._sort_rows()) &gt; with self.assertWarnsRegex(sparse.CuSparseEfficiencyWarning, "coo_todense GPU lowering requires matrices with sorted rows.*"): &gt; &gt; dense_unsorted_fallback = todense(mat_unsorted) &gt; E AssertionError: CuSparseEfficiencyWarning not triggered &gt; &gt; tests/sparse_test.py:473: AssertionError &gt; =========================== short test summary info ============================ &gt; FAILED tests/sparse_test.py::cuSparseTest::test_coo_sorted_indices_gpu_lowerings &gt; ========== 1 failed, 14145 passed, 1487 skipped in 165.49s (0:02:45) =========== </code></pre></div> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> If applicable, include full error messages/tracebacks.</li> </ul> <p dir="auto">Why isn't this test skipped when running on a machine without access to a GPU?</p>
0
<p dir="auto"><em>Please make sure that this is a documentation issue. As per our <a href="https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md">GitHub Policy</a>, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:doc_template</em></p> <p dir="auto"><strong>System information</strong></p> <ul dir="auto"> <li>TensorFlow version: TensorFlow Core 1.13</li> <li>Doc Link: <a href="https://www.tensorflow.org/api_docs/python/tf/test" rel="nofollow">https://www.tensorflow.org/api_docs/python/tf/test</a></li> </ul> <p dir="auto"><strong>Describe the documentation issue</strong><br> The link pointing to the testing guide is broken.<br> broken link - <a href="https://tensorflow.org/api_guides/python/test" rel="nofollow">https://tensorflow.org/api_guides/python/test</a></p> <p dir="auto"><a href="https://web.archive.org/web/20190222060703/https://tensorflow.org/api_guides/python/test" rel="nofollow">A snapshot of the broken link, working as of 22nd Feb 2019</a></p> <p dir="auto"><strong>We welcome contributions by users. Will you be able to update submit a PR (use the <a href="https://www.tensorflow.org/community/documentation" rel="nofollow">doc style guide</a>) to fix the doc Issue?</strong></p>
<p dir="auto">This is a feature request. As far as I know, all three of them currently do not have GPU ops.</p> <p dir="auto">It seems that if we can at least get a GPU implementation of <code class="notranslate">tf.unique</code> for integers, then the user can make <code class="notranslate">tf.where</code> and <code class="notranslate">tf.dynamic_partition</code> manually. For those of us who are trying to build models that want to mess around with indices rather frequently, this would be incredibly helpful.</p>
0
<p dir="auto">I have a Rails project hosted on a local "server" in my office. The "server" happens to be a laptop, so if/when it goes to sleep, the file share disappears from my development machine. When I remount the share, the tree-view sidebar in Atom shows only the top project folder, but not the sub files/folders. When I click the disclosure button to collapse the tree, and then click it again to expand, the file structure reappears for a split second, then the main Atom window turns blank white and I get this error panel:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/747085/8395008/0cab4b74-1d1b-11e5-8c1b-6171f8faed0a.png"><img src="https://cloud.githubusercontent.com/assets/747085/8395008/0cab4b74-1d1b-11e5-8c1b-6171f8faed0a.png" alt="screen shot 2015-06-27 at 10 21 23 pm" style="max-width: 100%;"></a></p> <p dir="auto">Clicking on <code class="notranslate">Reload</code>, or <code class="notranslate">Keep It Open</code> usually results in the editor being unstable, or crashing completely.</p> <p dir="auto">The following log is generated in <code class="notranslate">~/Library/Logs/DiagnosticReports/Atom Helper...</code></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Process: Atom Helper [48309] Path: /Applications/Atom.app/Contents/Frameworks/Atom Helper.app/Contents/MacOS/Atom Helper Identifier: com.github.atom.helper Version: 1.0.0 (1.0.0) Code Type: X86-64 (Native) Parent Process: Atom [47533] Responsible: Atom [47533] User ID: 501 Date/Time: 2015-06-27 22:20:44.207 -0500 OS Version: Mac OS X 10.10.3 (14D136) Report Version: 11 Anonymous UUID: DFB824F2-E26D-0DB0-1AF9-AF40A4FB7491 Sleep/Wake UUID: F38D8DE6-103F-48E6-8BC4-101FD490D457 Time Awake Since Boot: 670000 seconds Time Since Wake: 460000 seconds Crashed Thread: 0 CrRendererMain Dispatch queue: com.apple.main-thread Exception Type: EXC_BAD_ACCESS (SIGBUS) Exception Codes: 0x000000000000000a, 0x00000001117f1340 VM Regions Near 0x1117f1340: mapped file 00000001117ef000-00000001117f1000 [ 8K] r--/r-x SM=ALI Object_id=c8eebe09 --&gt; mapped file 00000001117f1000-00000001117f8000 [ 28K] r--/r-x SM=ALI Object_id=c96f5949 mapped file 00000001117f8000-0000000111820000 [ 160K] r--/r-x SM=ALI Object_id=a9855a39 Thread 0 Crashed:: CrRendererMain Dispatch queue: com.apple.main-thread 0 git.node 0x0000000111359957 pack_entry_find_offset + 126 1 git.node 0x000000011135a426 git_pack_entry_find + 135 2 git.node 0x0000000111354bcf pack_entry_find + 54 3 git.node 0x0000000111354e30 pack_backend__read_internal + 54 4 git.node 0x0000000111354570 pack_backend__read + 34 5 git.node 0x0000000111351d52 git_odb_read + 169 6 git.node 0x0000000111350393 git_object_lookup_prefix + 326 7 git.node 0x000000011131b757 Repository::GetBlob(v8::FunctionCallbackInfo&lt;v8::Value&gt; const&amp;, git_repository*, git_blob*&amp;) + 419 8 git.node 0x000000011131a492 Repository::GetLineDiffs(v8::FunctionCallbackInfo&lt;v8::Value&gt; const&amp;) + 142 9 ??? 0x0000048f4bbb4c02 0 + 5013497400322 10 ??? 0x0000048f4c0ca426 0 + 5013502731302 11 ??? 0x0000048f4ca4e1ec 0 + 5013512708588 12 ??? 0x0000048f4b23a806 0 + 5013487462406 13 ??? 0x0000048f4b66acd9 0 + 5013491854553 14 ??? 0x0000048f4c7f927a 0 + 5013510263418 15 ??? 0x0000048f4b2377c0 0 + 5013487450048 16 ??? 0x0000048f4b232271 0 + 5013487428209 17 libchromiumcontent.dylib 0x0000000104f85c51 v8::Testing::DeoptimizeAll() + 1177505 18 libchromiumcontent.dylib 0x0000000104e5e701 v8::Function::Call(v8::Handle&lt;v8::Value&gt;, int, v8::Handle&lt;v8::Value&gt;*) + 193 19 com.github.AtomFramework 0x0000000103080019 node::MakeCallback(node::Environment*, v8::Handle&lt;v8::Value&gt;, v8::Handle&lt;v8::Function&gt;, int, v8::Handle&lt;v8::Value&gt;*) + 639 20 com.github.AtomFramework 0x0000000103086d79 node::CheckImmediate(uv_check_s*) + 98 21 com.github.AtomFramework 0x00000001031bb719 uv__run_check + 33 22 com.github.AtomFramework 0x00000001031b7895 uv_run + 293 23 com.github.AtomFramework 0x000000010304c7a7 atom::NodeBindings::UvRunOnce() + 87 24 libchromiumcontent.dylib 0x00000001038aa7f8 base::debug::TaskAnnotator::RunTask(char const*, char const*, base::PendingTask const&amp;) + 248 25 libchromiumcontent.dylib 0x00000001038e80f8 base::MessageLoop::RunTask(base::PendingTask const&amp;) + 552 26 libchromiumcontent.dylib 0x00000001038e866c base::MessageLoop::DoWork() + 668 27 libchromiumcontent.dylib 0x0000000103894501 base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2881 28 com.apple.CoreFoundation 0x00007fff915a6a01 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 29 com.apple.CoreFoundation 0x00007fff91598b8d __CFRunLoopDoSources0 + 269 30 com.apple.CoreFoundation 0x00007fff915981bf __CFRunLoopRun + 927 31 com.apple.CoreFoundation 0x00007fff91597bd8 CFRunLoopRunSpecific + 296 32 com.apple.Foundation 0x00007fff9053ea59 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278 33 libchromiumcontent.dylib 0x0000000103894a14 base::MessagePumpNSRunLoop::DoRun(base::MessagePump::Delegate*) + 100 34 libchromiumcontent.dylib 0x000000010389436c base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2476 35 libchromiumcontent.dylib 0x00000001038fe103 base::RunLoop::Run() + 99 36 libchromiumcontent.dylib 0x00000001038e78dd base::MessageLoop::Run() + 29 37 libchromiumcontent.dylib 0x0000000106277937 content::RendererBlinkPlatformImpl::MockBatteryStatusChangedForTesting(blink::WebBatteryStatus const&amp;) + 6183 38 libchromiumcontent.dylib 0x0000000103889779 content::ContentMainRunner::Create() + 1849 39 libchromiumcontent.dylib 0x0000000103888d56 content::ContentMain(content::ContentMainParams const&amp;) + 54 40 com.github.AtomFramework 0x0000000102ffe792 AtomMain + 82 41 libdyld.dylib 0x00007fff863f65c9 start + 1 Thread 1:: Dispatch queue: com.apple.libdispatch-manager 0 libsystem_kernel.dylib 0x00007fff8c611232 kevent64 + 10 1 libdispatch.dylib 0x00007fff8c263a6a _dispatch_mgr_thread + 52 Thread 2:: Chrome_ChildIOThread 0 libsystem_kernel.dylib 0x00007fff8c61121a kevent + 10 1 libchromiumcontent.dylib 0x000000010392fdbd logging::VlogInfo::GetMaxVlogLevel() const + 6109 2 libchromiumcontent.dylib 0x00000001038938d0 base::MessagePumpLibevent::Run(base::MessagePump::Delegate*) + 432 3 libchromiumcontent.dylib 0x00000001038fe103 base::RunLoop::Run() + 99 4 libchromiumcontent.dylib 0x00000001038e78dd base::MessageLoop::Run() + 29 5 libchromiumcontent.dylib 0x000000010392132f base::Thread::ThreadMain() + 223 6 libchromiumcontent.dylib 0x000000010391b19b base::PlatformThread::Join(base::PlatformThreadHandle) + 283 7 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 8 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 9 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 3:: OptimizingCompi 0 libsystem_kernel.dylib 0x00007fff8c60b51a semaphore_wait_trap + 10 1 libchromiumcontent.dylib 0x0000000105280a37 v8::Unlocker::~Unlocker() + 542167 2 libchromiumcontent.dylib 0x000000010514a555 v8::Testing::DeoptimizeAll() + 3031205 3 libchromiumcontent.dylib 0x0000000105282037 v8::Unlocker::~Unlocker() + 547799 4 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 5 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 6 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 4:: Compositor 0 libsystem_kernel.dylib 0x00007fff8c60b4de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8c60a64f mach_msg + 55 2 com.apple.CoreFoundation 0x00007fff91598eb4 __CFRunLoopServiceMachPort + 212 3 com.apple.CoreFoundation 0x00007fff9159837b __CFRunLoopRun + 1371 4 com.apple.CoreFoundation 0x00007fff91597bd8 CFRunLoopRunSpecific + 296 5 libchromiumcontent.dylib 0x000000010389478f base::MessagePumpCFRunLoop::DoRun(base::MessagePump::Delegate*) + 79 6 libchromiumcontent.dylib 0x000000010389436c base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2476 7 libchromiumcontent.dylib 0x00000001038fe103 base::RunLoop::Run() + 99 8 libchromiumcontent.dylib 0x00000001038e78dd base::MessageLoop::Run() + 29 9 libchromiumcontent.dylib 0x000000010392132f base::Thread::ThreadMain() + 223 10 libchromiumcontent.dylib 0x000000010391b19b base::PlatformThread::Join(base::PlatformThreadHandle) + 283 11 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 12 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 13 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 5: 0 libsystem_kernel.dylib 0x00007fff8c60b51a semaphore_wait_trap + 10 1 com.github.AtomFramework 0x00000001031c0076 uv_sem_wait + 16 2 com.github.AtomFramework 0x000000010304c715 atom::NodeBindings::EmbedThreadRunner(void*) + 35 3 com.github.AtomFramework 0x00000001031bfe65 uv__thread_start + 25 4 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 5 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 6 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 6:: handle-watcher-thread 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 libchromiumcontent.dylib 0x0000000104b31368 mojo::system::Waiter::Wait(unsigned long long, unsigned int*) + 216 2 libchromiumcontent.dylib 0x0000000104b212eb mojo::system::Core::WaitManyInternal(unsigned int const*, unsigned int const*, unsigned int, unsigned long long, unsigned int*, mojo::system::HandleSignalsState*) + 491 3 libchromiumcontent.dylib 0x0000000104b215d6 mojo::system::Core::WaitMany(mojo::system::UserPointer&lt;unsigned int const&gt;, mojo::system::UserPointer&lt;unsigned int const&gt;, unsigned int, unsigned long long, mojo::system::UserPointer&lt;unsigned int&gt;, mojo::system::UserPointer&lt;MojoHandleSignalsState&gt;) + 358 4 libchromiumcontent.dylib 0x0000000104b185f2 MojoWaitMany + 82 5 libchromiumcontent.dylib 0x0000000104b15986 mojo::common::MessagePumpMojo::DoInternalWork(mojo::common::MessagePumpMojo::RunState const&amp;, bool) + 262 6 libchromiumcontent.dylib 0x0000000104b156f3 mojo::common::MessagePumpMojo::DoRunLoop(mojo::common::MessagePumpMojo::RunState*, base::MessagePump::Delegate*) + 51 7 libchromiumcontent.dylib 0x0000000104b1567a mojo::common::MessagePumpMojo::Run(base::MessagePump::Delegate*) + 266 8 libchromiumcontent.dylib 0x00000001038fe103 base::RunLoop::Run() + 99 9 libchromiumcontent.dylib 0x00000001038e78dd base::MessageLoop::Run() + 29 10 libchromiumcontent.dylib 0x000000010392132f base::Thread::ThreadMain() + 223 11 libchromiumcontent.dylib 0x000000010391b19b base::PlatformThread::Join(base::PlatformThreadHandle) + 283 12 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 13 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 14 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 7:: HTMLParserThread 0 libsystem_kernel.dylib 0x00007fff8c60b4de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8c60a64f mach_msg + 55 2 com.apple.CoreFoundation 0x00007fff91598eb4 __CFRunLoopServiceMachPort + 212 3 com.apple.CoreFoundation 0x00007fff9159837b __CFRunLoopRun + 1371 4 com.apple.CoreFoundation 0x00007fff91597bd8 CFRunLoopRunSpecific + 296 5 libchromiumcontent.dylib 0x000000010389478f base::MessagePumpCFRunLoop::DoRun(base::MessagePump::Delegate*) + 79 6 libchromiumcontent.dylib 0x000000010389436c base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2476 7 libchromiumcontent.dylib 0x00000001038fe103 base::RunLoop::Run() + 99 8 libchromiumcontent.dylib 0x00000001038e78dd base::MessageLoop::Run() + 29 9 libchromiumcontent.dylib 0x000000010392132f base::Thread::ThreadMain() + 223 10 libchromiumcontent.dylib 0x000000010391b19b base::PlatformThread::Join(base::PlatformThreadHandle) + 283 11 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 12 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 13 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 8:: CompositorTileWorker1/25091 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 libchromiumcontent.dylib 0x000000010468fd69 cc::TaskGraphRunner::Run() + 73 2 libchromiumcontent.dylib 0x000000010391f913 base::DelegateSimpleThread::Run() + 19 3 libchromiumcontent.dylib 0x000000010391f608 base::SimpleThread::ThreadMain() + 136 4 libchromiumcontent.dylib 0x000000010391b19b base::PlatformThread::Join(base::PlatformThreadHandle) + 283 5 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 6 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 7 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 9: 0 libsystem_kernel.dylib 0x00007fff8c60b4de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8c60a64f mach_msg + 55 2 com.github.AtomFramework 0x00000001031c556f google_breakpad::ExceptionHandler::WaitForMessage(void*) + 165 3 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 4 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 5 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 10: 0 libsystem_kernel.dylib 0x00007fff8c61121a kevent + 10 1 com.github.AtomFramework 0x00000001031bfe65 uv__thread_start + 25 2 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 3 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 4 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 11: 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 com.github.AtomFramework 0x00000001031c010c uv_cond_wait + 9 2 com.github.AtomFramework 0x00000001031b5eea worker + 206 3 com.github.AtomFramework 0x00000001031bfe65 uv__thread_start + 25 4 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 5 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 6 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 12: 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 com.github.AtomFramework 0x00000001031c010c uv_cond_wait + 9 2 com.github.AtomFramework 0x00000001031b5eea worker + 206 3 com.github.AtomFramework 0x00000001031bfe65 uv__thread_start + 25 4 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 5 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 6 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 13: 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 com.github.AtomFramework 0x00000001031c010c uv_cond_wait + 9 2 com.github.AtomFramework 0x00000001031b5eea worker + 206 3 com.github.AtomFramework 0x00000001031bfe65 uv__thread_start + 25 4 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 5 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 6 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 14: 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 com.github.AtomFramework 0x00000001031c010c uv_cond_wait + 9 2 com.github.AtomFramework 0x00000001031b5eea worker + 206 3 com.github.AtomFramework 0x00000001031bfe65 uv__thread_start + 25 4 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 5 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 6 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 15:: WorkerPool/6415 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 libchromiumcontent.dylib 0x000000010391517b base::ConditionVariable::TimedWait(base::TimeDelta const&amp;) + 91 2 libchromiumcontent.dylib 0x0000000103923b5c base::PosixDynamicThreadPool::WaitForTask() + 188 3 libchromiumcontent.dylib 0x00000001039240c6 base::PosixDynamicThreadPool::WaitForTask() + 1574 4 libchromiumcontent.dylib 0x000000010391b19b base::PlatformThread::Join(base::PlatformThreadHandle) + 283 5 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 6 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 7 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 16:: WorkerPool/30479 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 libchromiumcontent.dylib 0x000000010391517b base::ConditionVariable::TimedWait(base::TimeDelta const&amp;) + 91 2 libchromiumcontent.dylib 0x0000000103923b5c base::PosixDynamicThreadPool::WaitForTask() + 188 3 libchromiumcontent.dylib 0x00000001039240c6 base::PosixDynamicThreadPool::WaitForTask() + 1574 4 libchromiumcontent.dylib 0x000000010391b19b base::PlatformThread::Join(base::PlatformThreadHandle) + 283 5 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 6 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 7 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x00000001117f1000 rbx: 0x00000001117f1008 rcx: 0x0000000000000002 rdx: 0x0000000000000000 rdi: 0x00000001117f1408 rsi: 0x00000000000000ce rbp: 0x00007fff5cc07950 rsp: 0x00007fff5cc07900 r8: 0x0000000000000028 r9: 0x0000000000000000 r10: 0x0000000000000028 r11: 0x00007fe06ac00000 r12: 0x00007fe06ae69fb0 r13: 0x00007fe06fdaf314 r14: 0x00007fff5cc07970 r15: 0x00007fff72d59070 rip: 0x0000000111359957 rfl: 0x0000000000010202 cr2: 0x00000001117f1340 Logical CPU: 2 Error Code: 0x00000004 Trap Number: 14 Binary Images: 0x102ff6000 - 0x102ff6fff +com.github.atom.helper (1.0.0 - 1.0.0) &lt;01640C31-CD77-3CDE-A785-A8A2F391F75E&gt; /Applications/Atom.app/Contents/Frameworks/Atom Helper.app/Contents/MacOS/Atom Helper 0x102ffd000 - 0x10338dfff +com.github.AtomFramework (0) &lt;D4490C5B-0890-3CB3-AB4D-24F22D866D92&gt; /Applications/Atom.app/Contents/Frameworks/Atom Framework.framework/Versions/A/Atom Framework 0x103738000 - 0x10374dff7 +com.github.Squirrel (1.0 - 1) &lt;85C10AB5-0538-3E6C-A73B-9D4E55378A5B&gt; /Applications/Atom.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel 0x10376c000 - 0x1037cfff7 +org.reactivecocoa.ReactiveCocoa (1.0 - 1) &lt;701B20DE-3ADD-3643-B52A-E05744C30DB3&gt; /Applications/Atom.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa 0x10384a000 - 0x10385efff +org.mantle.Mantle (1.0 - ???) &lt;31915DD6-48E6-3706-A076-C9D4CE17F4F6&gt; /Applications/Atom.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle 0x10387a000 - 0x107322fbf +libchromiumcontent.dylib (0) &lt;D7BF0690-764D-3C55-AC00-9F57EA593B7A&gt; /Applications/Atom.app/Contents/Frameworks/Atom Framework.framework/Versions/A/Libraries/libchromiumcontent.dylib 0x107fb7000 - 0x107feefff com.apple.audio.midi.CoreMIDI (1.10 - 88) &lt;4BBCD304-C28F-3C03-AEB8-5E3D5D030602&gt; /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI 0x10c5a1000 - 0x10c7b4fff +ffmpegsumo.so (0) &lt;F3883E27-9E50-3415-8006-2F69FE96C369&gt; /Applications/Atom.app/Contents/Frameworks/Atom Framework.framework/Libraries/ffmpegsumo.so 0x10e865000 - 0x10e868ff7 +pathwatcher.node (???) &lt;17CE802B-A0D9-3CB8-B03F-5B7B6F5DEF27&gt; /Applications/Atom.app/Contents/Resources/app.asar.unpacked/node_modules/pathwatcher/build/Release/pathwatcher.node 0x10e86f000 - 0x10e870fff +keyboard-layout-observer.node (???) &lt;E704D6F9-ADC9-32EB-8464-C2A809060BC4&gt; /Applications/Atom.app/Contents/Resources/app.asar.unpacked/node_modules/atom-keymap/node_modules/keyboard-layout/build/Release/keyboard-layout-observer.node 0x10fb22000 - 0x10fb23fff ATSHI.dylib (375.2) &lt;A3AAB235-5FAB-3204-B1B2-7E9E56C92B37&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/ATSHI.dylib 0x1101c2000 - 0x110216fff +onig_scanner.node (???) &lt;17D0BC35-EFF9-3933-BBFB-D0ADFDCD7675&gt; /Applications/Atom.app/Contents/Resources/app.asar.unpacked/node_modules/oniguruma/build/Release/onig_scanner.node 0x111317000 - 0x1113baff7 +git.node (???) &lt;A2BF3FFC-078C-3732-89CF-9A4EC2CF9386&gt; /Applications/Atom.app/Contents/Resources/app.asar.unpacked/node_modules/git-utils/build/Release/git.node 0x111853000 - 0x111854ff7 +scrollbar-style-observer.node (???) &lt;18A1590B-F31F-371D-9F41-DCA7575463AC&gt; /Applications/Atom.app/Contents/Resources/app.asar.unpacked/node_modules/scrollbar-style/build/Release/scrollbar-style-observer.node 0x7fff60f33000 - 0x7fff60f69837 dyld (353.2.1) &lt;65DCCB06-339C-3E25-9702-600A28291D0E&gt; /usr/lib/dyld 0x7fff81e3b000 - 0x7fff820b9fff com.apple.RawCamera.bundle (6.04 - 791) &lt;B6139D16-972F-3BC4-A61B-2F226F7666DB&gt; /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 0x7fff820ba000 - 0x7fff8210bfff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) &lt;450293F7-DAE7-3DD0-8F7C-71FC2FD72627&gt; /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff8214d000 - 0x7fff82172fff libPng.dylib (1237) &lt;F5652650-87ED-3D53-9E59-A897DFA41DD0&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff82173000 - 0x7fff82177fff libpam.2.dylib (20) &lt;E805398D-9A92-31F8-8005-8DC188BD8B6E&gt; /usr/lib/libpam.2.dylib 0x7fff821dc000 - 0x7fff823e9ff3 com.apple.CFNetwork (720.3.13 - 720.3.13) &lt;69E15385-5784-3912-88F6-03B16F1C1A5C&gt; /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff824df000 - 0x7fff824e8fff libsystem_pthread.dylib (105.10.1) &lt;3103AA7F-3BAE-3673-9649-47FFD7E15C97&gt; /usr/lib/system/libsystem_pthread.dylib 0x7fff825ce000 - 0x7fff825e4ff7 libsystem_asl.dylib (267) &lt;F153AC5B-0542-356E-88C8-20A62CA704E2&gt; /usr/lib/system/libsystem_asl.dylib 0x7fff82bd6000 - 0x7fff82c06fff libsystem_m.dylib (3086.1) &lt;1E12AB45-6D96-36D0-A226-F24D9FB0D9D6&gt; /usr/lib/system/libsystem_m.dylib 0x7fff82c96000 - 0x7fff82c9dfff com.apple.network.statistics.framework (1.2 - 1) &lt;61B311D1-7F15-35B3-80D4-99B8BE90ACD9&gt; /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics 0x7fff83527000 - 0x7fff8352bfff libcache.dylib (69) &lt;45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1&gt; /usr/lib/system/libcache.dylib 0x7fff836bc000 - 0x7fff836c0fff libCoreVMClient.dylib (79.1) &lt;201EF6DF-5074-3CB7-A361-398CF957A264&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff836c1000 - 0x7fff836c6ffb libheimdal-asn1.dylib (398.10.1) &lt;A7B6447A-6680-3625-83C3-993B58D5C43F&gt; /usr/lib/libheimdal-asn1.dylib 0x7fff836c7000 - 0x7fff83713ff7 libcups.2.dylib (408.2) &lt;E8AD18F9-61E4-3791-B840-504468C25556&gt; /usr/lib/libcups.2.dylib 0x7fff83714000 - 0x7fff83738ff7 com.apple.Sharing (328.16 - 328.16) &lt;F96C7040-5FAF-3BC6-AE1E-5BF9CBE786C4&gt; /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff8379f000 - 0x7fff8379ffff com.apple.Cocoa (6.8 - 21) &lt;EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8&gt; /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff8380e000 - 0x7fff8380efff com.apple.Accelerate (1.10 - Accelerate 1.10) &lt;2C8AF258-4F11-3BEC-A826-22D7199B3975&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff8384e000 - 0x7fff838c2ffb com.apple.securityfoundation (6.0 - 55126) &lt;42589E18-D38C-3E25-B638-6E29740C224C&gt; /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff838cf000 - 0x7fff83941fff com.apple.framework.IOKit (2.0.2 - 1050.20.2) &lt;09C0518C-90DF-3FC3-96D6-34D35F72C8EF&gt; /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff8398a000 - 0x7fff8398bff7 com.apple.print.framework.Print (10.0 - 265) &lt;3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff8398c000 - 0x7fff8398dff7 libsystem_blocks.dylib (65) &lt;9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1&gt; /usr/lib/system/libsystem_blocks.dylib 0x7fff83a34000 - 0x7fff83a4bff7 libLinearAlgebra.dylib (1128) &lt;E78CCBAA-A999-3B65-8EC9-06DB15E67C37&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff83a4c000 - 0x7fff83a87fff com.apple.QD (301 - 301) &lt;C4D2AD03-B839-350A-AAF0-B4A08F8BED77&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff83a8a000 - 0x7fff83b7cfff libxml2.2.dylib (26) &lt;B834E7C8-EC3E-3382-BC5A-DA38DC4D720C&gt; /usr/lib/libxml2.2.dylib 0x7fff83b7d000 - 0x7fff83b8eff7 libz.1.dylib (55) &lt;88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1&gt; /usr/lib/libz.1.dylib 0x7fff83bf6000 - 0x7fff83c13fff com.apple.MultitouchSupport.framework (263.9.1 - 263.9.1) &lt;6ABD3AE2-DF6A-3AB2-994B-9C0FB42CE2B7&gt; /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff83c14000 - 0x7fff83c1cff7 com.apple.AppleSRP (5.0 - 1) &lt;01EC5144-D09A-3D6A-AE35-F6D48585F154&gt; /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP 0x7fff83c53000 - 0x7fff83d65ff7 libvDSP.dylib (516) &lt;151B3CCB-77D3-3715-A3D0-7C74CD5C7FFC&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff83d66000 - 0x7fff83f6046f libobjc.A.dylib (647) &lt;759E155D-BC42-3D4E-869B-6F57D477177C&gt; /usr/lib/libobjc.A.dylib 0x7fff83f61000 - 0x7fff83f69fff libsystem_platform.dylib (63) &lt;64E34079-D712-3D66-9CE2-418624A5C040&gt; /usr/lib/system/libsystem_platform.dylib 0x7fff83f6a000 - 0x7fff83f6afff com.apple.audio.units.AudioUnit (1.12 - 1.12) &lt;E5335492-7EFE-31EA-BE72-4A9CEE68D58E&gt; /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff83f9e000 - 0x7fff83faffff libcmph.dylib (1) &lt;46EC3997-DB5E-38AE-BBBB-A035A54AD3C0&gt; /usr/lib/libcmph.dylib 0x7fff84044000 - 0x7fff841d2fff libBLAS.dylib (1128) &lt;497912C1-A98E-3281-BED7-E9C751552F61&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff84383000 - 0x7fff844c7ff7 com.apple.QTKit (7.7.3 - 2890) &lt;EA6DCA1E-CBAB-328F-B230-1F9B9104E110&gt; /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit 0x7fff845b5000 - 0x7fff845e4ff7 com.apple.CoreServicesInternal (221.7.2 - 221.7.2) &lt;B93D4775-149C-3698-B38C-9C50673D455C&gt; /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff845ee000 - 0x7fff84655ff7 com.apple.framework.CoreWiFi (3.0 - 300.4) &lt;19269C1D-EB29-384A-83F3-7DDDEB7D9DAD&gt; /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi 0x7fff84681000 - 0x7fff84741ff7 com.apple.backup.framework (1.6.4 - 1.6.4) &lt;A67CE7D7-AAE4-3AC0-86B7-EAF403853D09&gt; /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff84742000 - 0x7fff84744fff libquarantine.dylib (76.20.1) &lt;7AF90041-2768-378A-925A-D83161863642&gt; /usr/lib/system/libquarantine.dylib 0x7fff84758000 - 0x7fff847e1ff7 com.apple.CoreSymbolication (3.1 - 57020.1) &lt;85707039-0C8A-3409-B0B5-153431CC1841&gt; /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x7fff847e2000 - 0x7fff847e8fff libsystem_trace.dylib (72.20.1) &lt;840F5301-B55A-3078-90B9-FEFFD6CD741A&gt; /usr/lib/system/libsystem_trace.dylib 0x7fff847e9000 - 0x7fff84814fff com.apple.DictionaryServices (1.2 - 229) &lt;F03DFAC6-6285-3176-9C6D-7CC50F8CD52A&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff84815000 - 0x7fff8481bfff com.apple.speech.recognition.framework (5.0.9 - 5.0.9) &lt;BB2D573F-0A01-379F-A2BA-3C454EDCB111&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff84a7b000 - 0x7fff84a7dfff com.apple.loginsupport (1.0 - 1) &lt;DAAD7013-A19D-3858-BFF7-DE1DAF664401&gt; /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff84a7e000 - 0x7fff84a8bff7 com.apple.SpeechRecognitionCore (2.1.2 - 2.1.2) &lt;551322E2-C1E4-3378-A218-F362985E3E3C&gt; /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff84a8c000 - 0x7fff84b23fff com.apple.CoreMedia (1.0 - 1562.235) &lt;21EB4AB6-2DBC-326B-B17E-E88BAA9E9200&gt; /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x7fff84b24000 - 0x7fff84b37ff7 com.apple.CoreBluetooth (1.0 - 1) &lt;8D7BA9BA-EB36-307A-9119-0B3D9732C953&gt; /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff84b84000 - 0x7fff84c22fff com.apple.Metadata (10.7.0 - 917.35) &lt;8CBD1D32-4F4B-3F9A-AC65-76F2B5376FBF&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff84cca000 - 0x7fff84d38ffb com.apple.Heimdal (4.0 - 2.0) &lt;7697A837-98B8-3BDB-A7D2-8ED4C9ABC510&gt; /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff84db4000 - 0x7fff84e05ff7 com.apple.AppleVAFramework (5.0.31 - 5.0.31) &lt;FED294D2-13CB-381D-98D0-BDA909AACA32&gt; /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 0x7fff84e06000 - 0x7fff84e6dffb com.apple.datadetectorscore (6.0 - 396.1.1) &lt;9B0B3198-DDBE-36C0-8BA9-3EC89C725282&gt; /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff84e6e000 - 0x7fff84f9efff com.apple.UIFoundation (1.0 - 1) &lt;466BDFA8-0B9F-3AB0-989D-F9779422926A&gt; /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation 0x7fff84fc6000 - 0x7fff84fc9fff com.apple.xpc.ServiceManagement (1.0 - 1) &lt;9E025823-660A-30C5-A568-223BD595B6F7&gt; /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff84fca000 - 0x7fff84fcdfff com.apple.help (1.3.3 - 46) &lt;CA4541F4-CEF5-355C-8F1F-EA65DC1B400F&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff84fce000 - 0x7fff85018ff7 com.apple.HIServices (1.22 - 522.1) &lt;E8BD41E4-7747-3CAF-807A-5CA9AD16B525&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff850f7000 - 0x7fff850f7ff7 libkeymgr.dylib (28) &lt;77845842-DE70-3CC5-BD01-C3D14227CED5&gt; /usr/lib/system/libkeymgr.dylib 0x7fff851b4000 - 0x7fff852a4fef libJP2.dylib (1237) &lt;A24C99BF-2360-343F-BCA1-F044E78EA0DE&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff852a5000 - 0x7fff852aaff7 libmacho.dylib (862) &lt;126CA2ED-DE91-308F-8881-B9DAEC3C63B6&gt; /usr/lib/system/libmacho.dylib 0x7fff852df000 - 0x7fff852e4fff libsystem_stats.dylib (163.20.16) &lt;FBC3F80F-A0FB-3BD6-9A7E-800DE45F092E&gt; /usr/lib/system/libsystem_stats.dylib 0x7fff85530000 - 0x7fff85835ff3 com.apple.HIToolbox (2.1.1 - 758.7) &lt;6711FAA9-904A-3B49-9665-FC8D13B93C42&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff85f25000 - 0x7fff85f31ff7 com.apple.OpenDirectory (10.10 - 187) &lt;1E07769D-68DE-3BF2-8E9E-A1E98BF70D1B&gt; /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff85f45000 - 0x7fff85ff4fe7 libvMisc.dylib (516) &lt;6739E390-46E7-3BFA-9B69-B278562326E6&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff85ff5000 - 0x7fff863ccfe7 com.apple.CoreAUC (211.1.0 - 211.1.0) &lt;12645629-E065-388E-A6B5-094A240578CE&gt; /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 0x7fff863e7000 - 0x7fff863f2ff7 com.apple.CrashReporterSupport (10.10 - 631) &lt;D87A64FA-64B1-3B23-BB43-ADE173C108C6&gt; /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff863f3000 - 0x7fff863f6ff7 libdyld.dylib (353.2.1) &lt;9EACCA38-291D-38CC-811F-7E9D1451E2D3&gt; /usr/lib/system/libdyld.dylib 0x7fff86427000 - 0x7fff8646dff7 libFontRegistry.dylib (134.1) &lt;CE41D8C2-BEED-345C-BC4F-3775CC06C672&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff8646e000 - 0x7fff86476fff libsystem_dnssd.dylib (561.1.1) &lt;62B70ECA-E40D-3C63-896E-7F00EC386DDB&gt; /usr/lib/system/libsystem_dnssd.dylib 0x7fff86477000 - 0x7fff86ff8ff7 com.apple.AppKit (6.9 - 1347.57) &lt;B214D528-7D1C-39B2-BE36-821D417A0297&gt; /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff8701d000 - 0x7fff87028ff7 libkxld.dylib (2782.20.48) &lt;28EF8328-E3E2-336A-974B-FB1BF119D55A&gt; /usr/lib/system/libkxld.dylib 0x7fff8704d000 - 0x7fff8704dfff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) &lt;9D749502-A228-3BF1-B52F-A182DEEB2C4D&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff871d1000 - 0x7fff8720cfff com.apple.Symbolication (1.4 - 56045) &lt;D64571B1-4483-3FE2-BD67-A91360F79727&gt; /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication 0x7fff872c5000 - 0x7fff872e5fff com.apple.IconServices (47.1 - 47.1) &lt;E83DFE3B-6541-3736-96BB-26DC5D0100F1&gt; /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff87683000 - 0x7fff879b6ff7 libmecabra.dylib (666.7) &lt;0ED8AE5E-7A5B-34A6-A2EE-2B852E60E1E2&gt; /usr/lib/libmecabra.dylib 0x7fff879fc000 - 0x7fff87c66ff7 com.apple.security (7.0 - 57031.20.26) &lt;6568520A-587D-3167-BB79-60CE6FEADC64&gt; /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff87c67000 - 0x7fff87cf3ff7 libsystem_c.dylib (1044.10.1) &lt;86FBED7A-F2C8-3591-AD6F-486DD57E6B6A&gt; /usr/lib/system/libsystem_c.dylib 0x7fff88653000 - 0x7fff88658ff7 libunwind.dylib (35.3) &lt;BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6&gt; /usr/lib/system/libunwind.dylib 0x7fff88659000 - 0x7fff88689fff com.apple.GSS (4.0 - 2.0) &lt;A37BAF76-C262-3292-B82D-F004CAC5F333&gt; /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff8868a000 - 0x7fff8883aff3 com.apple.QuartzCore (1.10 - 361.18) &lt;ACA61D8F-9535-3141-8FDD-AC3EF6BF0806&gt; /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff8883b000 - 0x7fff88888ff3 com.apple.CoreMediaIO (601.0 - 4760) &lt;B2B71300-A863-30F8-8F00-B852CF843264&gt; /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO 0x7fff88889000 - 0x7fff88998ff3 com.apple.desktopservices (1.9.3 - 1.9.3) &lt;FEE11342-5BC4-37A7-8169-DA48BE17B9C9&gt; /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff889d1000 - 0x7fff88a24ffb libAVFAudio.dylib (118.6) &lt;2441D4C1-D8FB-3DA9-9DD7-914E03413882&gt; /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib 0x7fff88a25000 - 0x7fff88b86fff com.apple.avfoundation (2.0 - 889.210) &lt;0CFF0D47-7C6B-388E-87BD-404F43A6B1E0&gt; /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation 0x7fff88b87000 - 0x7fff88b8bfff com.apple.TCC (1.0 - 1) &lt;CCA42EE2-3400-3444-9486-BC454E60D944&gt; /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff88b8c000 - 0x7fff88b99fff libxar.1.dylib (255) &lt;7CD69BB5-97BA-3858-8A8B-2F33F129E6E7&gt; /usr/lib/libxar.1.dylib 0x7fff88c2c000 - 0x7fff88c32ff7 libsystem_networkextension.dylib (167.1.10) &lt;29AB225B-D7FB-30ED-9600-65D44B9A9442&gt; /usr/lib/system/libsystem_networkextension.dylib 0x7fff88c91000 - 0x7fff88c92ff3 libSystem.B.dylib (1213) &lt;CCEC13A5-D0D9-31C5-B0B0-1C564B4A20A6&gt; /usr/lib/libSystem.B.dylib 0x7fff88c93000 - 0x7fff88c93fff libOpenScriptingUtil.dylib (162.1) &lt;E0605012-0DDB-3150-8FD0-699376FA3CD0&gt; /usr/lib/libOpenScriptingUtil.dylib 0x7fff88cc4000 - 0x7fff88dfefff com.apple.ImageIO.framework (3.3.0 - 1237) &lt;3C06213D-847A-3C7B-843E-6EC37113965D&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff88e7d000 - 0x7fff88efeff7 com.apple.CoreUtils (1.1 - 110.1) &lt;C98E1441-3FCB-3BC6-BB51-5380BD39EA88&gt; /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils 0x7fff88eff000 - 0x7fff88f19ff7 liblzma.5.dylib (7) &lt;1D03E875-A7C0-3028-814C-3C27F7B7C079&gt; /usr/lib/liblzma.5.dylib 0x7fff88f1a000 - 0x7fff88f1aff7 libunc.dylib (29) &lt;5676F7EA-C1DF-329F-B006-D2C3022B7D70&gt; /usr/lib/system/libunc.dylib 0x7fff8906e000 - 0x7fff89097ffb libxslt.1.dylib (13) &lt;AED1143F-B848-3E73-81ED-71356F25F084&gt; /usr/lib/libxslt.1.dylib 0x7fff89098000 - 0x7fff890a7fff com.apple.LangAnalysis (1.7.0 - 1.7.0) &lt;D1E527E4-C561-352F-9457-E8C50232793C&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff891b0000 - 0x7fff895bdff7 libLAPACK.dylib (1128) &lt;F9201AE7-B031-36DB-BCF8-971E994EF7C1&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff895be000 - 0x7fff895c2fff com.apple.CommonPanels (1.2.6 - 96) &lt;F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff895e2000 - 0x7fff89631ff7 com.apple.opencl (2.4.2 - 2.4.2) &lt;4A9574ED-15CF-3EBB-B4C0-D30F644D6C74&gt; /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff89632000 - 0x7fff8975aff7 com.apple.coreui (2.1 - 308.6) &lt;DEA5D3E1-D333-302B-A6CF-7643BFDFAED0&gt; /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff8975b000 - 0x7fff897a1ff7 libauto.dylib (186) &lt;A260789B-D4D8-316A-9490-254767B8A5F1&gt; /usr/lib/libauto.dylib 0x7fff8988a000 - 0x7fff89929e27 com.apple.AppleJPEG (1.0 - 1) &lt;6627DDD9-A8FE-3968-B23A-B6A29AA3919A&gt; /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff8992a000 - 0x7fff8994bfff com.apple.framework.Apple80211 (10.3 - 1030.71.6) &lt;D3862426-2586-3DF7-BA75-9A184FCD74C4&gt; /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff8994c000 - 0x7fff89a92fef libsqlite3.dylib (168) &lt;8B78BED1-7B9B-3943-80DC-0871015AEAC4&gt; /usr/lib/libsqlite3.dylib 0x7fff89a93000 - 0x7fff89abffff libsandbox.1.dylib (358.20.5) &lt;C84D0EA1-CE60-3328-A196-D55874BE83D1&gt; /usr/lib/libsandbox.1.dylib 0x7fff89be8000 - 0x7fff89c15fff com.apple.CoreVideo (1.8 - 145.1) &lt;18DB07E0-B927-3260-A234-636F298D1917&gt; /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff89c91000 - 0x7fff89daaffb com.apple.CoreText (352.0 - 454.6) &lt;D45790B0-E1A3-3C7D-8BA2-AB71D2CFA7FB&gt; /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff89dab000 - 0x7fff89db4ff3 com.apple.CommonAuth (4.0 - 2.0) &lt;BA9F5A09-D200-3D18-9F4A-20C789291A30&gt; /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff89db5000 - 0x7fff8a084ff3 com.apple.CoreImage (10.3.4) &lt;C1AE8252-A95D-3BF4-83B8-BE85E979F2CB&gt; /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff8a085000 - 0x7fff8a3a0fcf com.apple.vImage (8.0 - 8.0) &lt;1183FE6A-FDB6-3B3B-928D-50C7909F2308&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff8a3a1000 - 0x7fff8a3bcff7 libCRFSuite.dylib (34) &lt;D64842BE-7BD4-3D0C-9842-1D202F7C2A51&gt; /usr/lib/libCRFSuite.dylib 0x7fff8a563000 - 0x7fff8a579ff7 com.apple.CoreMediaAuthoring (2.2 - 951) &lt;C3E7D4C1-400D-34FA-9FE1-8C68C03CE969&gt; /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring 0x7fff8a57a000 - 0x7fff8a57afff com.apple.Carbon (154 - 157) &lt;9BF51672-1684-3FDE-A561-FC59A2864EF8&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff8a57e000 - 0x7fff8a5b6fff libsystem_network.dylib (412.20.3) &lt;589A5F67-BE2A-3245-A181-0ECC9B53EB00&gt; /usr/lib/system/libsystem_network.dylib 0x7fff8a5b7000 - 0x7fff8a5e7ff3 com.apple.CoreAVCHD (5.7.5 - 5750.4.1) &lt;3E51287C-E97D-3886-BE88-8F6872400876&gt; /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD 0x7fff8a65c000 - 0x7fff8a8dbff7 com.apple.CoreData (111 - 526.3) &lt;5A27E0D8-5E5A-335B-B3F6-2601C7B976FA&gt; /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff8a8dc000 - 0x7fff8a914fff com.apple.RemoteViewServices (2.0 - 99) &lt;C9A62691-B0D9-34B7-B71C-A48B5F4DC553&gt; /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff8a9d0000 - 0x7fff8aaf4ff7 com.apple.LaunchServices (644.56 - 644.56) &lt;20AABB1C-9319-3E4D-A024-51B0DD5FCD3B&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff8aaf5000 - 0x7fff8acdaff7 libicucore.A.dylib (531.48) &lt;3CD34752-B1F9-31D2-865D-B5B0F0BE3111&gt; /usr/lib/libicucore.A.dylib 0x7fff8acdb000 - 0x7fff8ae0dff7 com.apple.MediaControlSender (2.0 - 215.18) &lt;86E901A7-64C3-3D2C-BBD4-E385405831D3&gt; /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender 0x7fff8ae0e000 - 0x7fff8ae10fff com.apple.SecCodeWrapper (4.0 - 238.20.2) &lt;C6C126F0-6BF4-3E29-A9B7-7BAD8D17EE4F&gt; /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper 0x7fff8ae4b000 - 0x7fff8ae4dff7 com.apple.securityhi (9.0 - 55006) &lt;5DB5773C-FC07-302C-98FE-4B80D88D481A&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff8b794000 - 0x7fff8bbc4fff com.apple.vision.FaceCore (3.1.6 - 3.1.6) &lt;C3B823AA-C261-37D3-B4AC-C59CE91C8241&gt; /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff8bcee000 - 0x7fff8bd49fe7 libTIFF.dylib (1237) &lt;6C8BBCA3-C233-3941-ACF9-F06C5E6EE2E6&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff8be7f000 - 0x7fff8be80fff libsystem_secinit.dylib (18) &lt;581DAD0F-6B63-3A48-B63B-917AF799ABAA&gt; /usr/lib/system/libsystem_secinit.dylib 0x7fff8be81000 - 0x7fff8be84fff com.apple.IOSurface (97.4 - 97.4) &lt;AE11CFBC-4D46-30F3-BEEC-4C8131079391&gt; /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff8be85000 - 0x7fff8bf79fff libFontParser.dylib (134.2) &lt;9F57B025-AB9C-31DD-9D54-2D7AB1298885&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x7fff8bfb0000 - 0x7fff8bfc9ff7 com.apple.CFOpenDirectory (10.10 - 187) &lt;790ED527-EFD2-3EA6-8C97-A8C04E96EBA7&gt; /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff8c072000 - 0x7fff8c1d9ffb com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) &lt;5678FC94-456A-3F5F-BA9A-10EB6E462997&gt; /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff8c1da000 - 0x7fff8c202fff libsystem_info.dylib (459.20.1) &lt;AEB3FE62-4763-3050-8352-D6F9AF961AE6&gt; /usr/lib/system/libsystem_info.dylib 0x7fff8c203000 - 0x7fff8c205fff libsystem_sandbox.dylib (358.20.5) &lt;4CF77128-6BE0-3958-B646-707FA9CE61B2&gt; /usr/lib/system/libsystem_sandbox.dylib 0x7fff8c213000 - 0x7fff8c254fff libGLU.dylib (11.1.2) &lt;4C54F0D1-2ADC-38A0-92D1-F479E9B99355&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff8c25f000 - 0x7fff8c289ff7 libdispatch.dylib (442.1.4) &lt;502CF32B-669B-3709-8862-08188225E4F0&gt; /usr/lib/system/libdispatch.dylib 0x7fff8c28a000 - 0x7fff8c2caff7 libGLImage.dylib (11.1.2) &lt;260A4BF3-DC45-369C-A0CD-B667F9D17179&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff8c2f2000 - 0x7fff8c387ff7 com.apple.ColorSync (4.9.0 - 4.9.0) &lt;9150C2B7-2E6E-3509-96EA-7B3F959F049E&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff8c3b5000 - 0x7fff8c3cfff7 libextension.dylib (55.2) &lt;3BB019CA-199A-36AC-AA22-14B562138545&gt; /usr/lib/libextension.dylib 0x7fff8c561000 - 0x7fff8c568ff7 libCGCMS.A.dylib (779.11) &lt;5D33FF8C-AC74-3B7B-A602-4AA470FEAF79&gt; /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib 0x7fff8c575000 - 0x7fff8c5f9fff com.apple.PerformanceAnalysis (1.0 - 1) &lt;599AED3E-B689-3C40-8B91-93AD36C97658&gt; /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff8c5fa000 - 0x7fff8c617fff libsystem_kernel.dylib (2782.20.48) &lt;EAFD7BD0-0C30-3E7D-9528-F9916BA0167C&gt; /usr/lib/system/libsystem_kernel.dylib 0x7fff8c760000 - 0x7fff8c761fff libDiagnosticMessagesClient.dylib (100) &lt;2EE8E436-5CDC-34C5-9959-5BA218D507FB&gt; /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff8c762000 - 0x7fff8c769ff7 libcompiler_rt.dylib (35) &lt;BF8FC133-EE10-3DA6-9B90-92039E28678F&gt; /usr/lib/system/libcompiler_rt.dylib 0x7fff8ca02000 - 0x7fff8ca04ff7 libsystem_coreservices.dylib (9) &lt;41B7C578-5A53-31C8-A96F-C73E030B0938&gt; /usr/lib/system/libsystem_coreservices.dylib 0x7fff8ca05000 - 0x7fff8ca1aff7 com.apple.AppContainer (4.0 - 238.20.2) &lt;2AA2EF49-9F38-31F6-8B08-8CC7C26F57F3&gt; /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer 0x7fff8ca35000 - 0x7fff8ca43ff7 com.apple.opengl (11.1.2 - 11.1.2) &lt;864B35BF-1E76-382B-8D5F-38C7282621E6&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff8ca76000 - 0x7fff8cb18fff com.apple.Bluetooth (4.3.4 - 4.3.4f4) &lt;A1120885-F31B-3C13-9B0D-2589F391CC7A&gt; /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff8cb2b000 - 0x7fff8cb45ff3 com.apple.Ubiquity (1.3 - 313) &lt;DF56A657-CC6E-3BE2-86A0-71F07127724C&gt; /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity 0x7fff8cb46000 - 0x7fff8cb63ffb libresolv.9.dylib (57) &lt;26B38E61-298A-3C3A-82C1-3B5E98AD5E29&gt; /usr/lib/libresolv.9.dylib 0x7fff8cb64000 - 0x7fff8cb7cff7 libexpat.1.dylib (12) &lt;C5FE8836-E277-3162-9D15-6735321CB2C6&gt; /usr/lib/libexpat.1.dylib 0x7fff8cb7d000 - 0x7fff8cbdcfff com.apple.AE (681.2 - 681.2) &lt;181B3B06-2DC6-3E4D-B44A-2551C5E9CF6F&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff8cbfa000 - 0x7fff8cc34ffb com.apple.DebugSymbols (115 - 115) &lt;6F03761D-7C3A-3C80-8031-AA1C1AD7C706&gt; /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x7fff8cc35000 - 0x7fff8ccb3fff com.apple.CoreServices.OSServices (640.4 - 640.4) &lt;20121A5E-7AB5-3624-8CF0-3562F97C8A95&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff8dcbb000 - 0x7fff8dcbbfff com.apple.CoreServices (62 - 62) &lt;C69DA8A7-B536-34BF-A93F-1C170E2C6D58&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff8dcc8000 - 0x7fff8dcf3ff3 libarchive.2.dylib (30) &lt;8CBB4416-EBE9-3574-8ADC-44655D245F39&gt; /usr/lib/libarchive.2.dylib 0x7fff8dcf4000 - 0x7fff8dd43ff7 libstdc++.6.dylib (104.1) &lt;803F6AC8-87DC-3E24-9E80-729B551F6FFF&gt; /usr/lib/libstdc++.6.dylib 0x7fff8e25a000 - 0x7fff8e262ffb libcopyfile.dylib (118.1.2) &lt;0C68D3A6-ACDD-3EF3-991A-CC82C32AB836&gt; /usr/lib/system/libcopyfile.dylib 0x7fff8e263000 - 0x7fff8e28bfff libxpc.dylib (559.20.9) &lt;D35D0DB2-D7BD-3BE4-8378-062BFE545E1D&gt; /usr/lib/system/libxpc.dylib 0x7fff8e2b5000 - 0x7fff8e2b8ff7 com.apple.Mangrove (1.0 - 1) &lt;6326024D-5C8D-3F59-9468-ACA1E01BC70C&gt; /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove 0x7fff8e335000 - 0x7fff8e351ff7 libsystem_malloc.dylib (53.1.1) &lt;19BCC257-5717-3502-A71F-95D65AFA861B&gt; /usr/lib/system/libsystem_malloc.dylib 0x7fff8e45f000 - 0x7fff8e461ffb libCGXType.A.dylib (779.11) &lt;51607E77-F183-3CC2-A78C-238AFBDF6262&gt; /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib 0x7fff8e462000 - 0x7fff8e554ff7 libiconv.2.dylib (42) &lt;2A06D02F-8B76-3864-8D96-64EF5B40BC6C&gt; /usr/lib/libiconv.2.dylib 0x7fff8e583000 - 0x7fff8e5bcfff com.apple.AirPlaySupport (2.0 - 215.18) &lt;6AF8E973-3643-3FEE-AA8F-541B9F093EEE&gt; /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySupport 0x7fff8e5dc000 - 0x7fff8e5ddffb libremovefile.dylib (35) &lt;3485B5F4-6CE8-3C62-8DFD-8736ED6E8531&gt; /usr/lib/system/libremovefile.dylib 0x7fff8e5de000 - 0x7fff8e64fffb com.apple.ApplicationServices.ATS (360 - 375.2) &lt;2338AF23-528F-359A-847F-8B04E49E2B84&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff8e7b8000 - 0x7fff8e80cfff libc++.1.dylib (120) &lt;1B9530FD-989B-3174-BB1C-BDC159501710&gt; /usr/lib/libc++.1.dylib 0x7fff8e80d000 - 0x7fff8e883fe7 libcorecrypto.dylib (233.1.2) &lt;E1789801-3985-3949-B736-6B3378873301&gt; /usr/lib/system/libcorecrypto.dylib 0x7fff8e886000 - 0x7fff8e8b8ff7 libTrueTypeScaler.dylib (134.2) &lt;8F72EF2F-0BC8-3BEC-8E1C-17F2C4480AE2&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib 0x7fff8e8b9000 - 0x7fff8e94dfff com.apple.ink.framework (10.9 - 213) &lt;8E029630-1530-3734-A446-13353F0E7AC5&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff8e99b000 - 0x7fff8e9bffef libJPEG.dylib (1237) &lt;6DB10054-5C64-32FB-83FD-E102A8F73258&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff8e9c0000 - 0x7fff8e9c9ff7 libsystem_notify.dylib (133.1.1) &lt;61147800-F320-3DAA-850C-BADF33855F29&gt; /usr/lib/system/libsystem_notify.dylib 0x7fff8ea1a000 - 0x7fff8ea20ff7 com.apple.XPCService (2.0 - 1) &lt;AA4A5393-1F5D-3465-A417-0414B95DC052&gt; /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService 0x7fff8eb25000 - 0x7fff8eb3effb com.apple.openscripting (1.4 - 162.1) &lt;E6B42781-A556-355A-8A49-82A8D2B347FF&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff8eb3f000 - 0x7fff8eb4fff7 libbsm.0.dylib (34) &lt;A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB&gt; /usr/lib/libbsm.0.dylib 0x7fff8eb59000 - 0x7fff8ebb3ff7 com.apple.LanguageModeling (1.0 - 1) &lt;ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F&gt; /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff8ebb4000 - 0x7fff8ebbffff libGL.dylib (11.1.2) &lt;BF99CC65-215A-3C7D-87D7-3F7EE6E9B3DD&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff8ec72000 - 0x7fff8ec73fff liblangid.dylib (117) &lt;B54A4AA0-2E53-3671-90F5-AFF711C0EB9E&gt; /usr/lib/liblangid.dylib 0x7fff8ec74000 - 0x7fff8ef5bffb com.apple.CoreServices.CarbonCore (1108.6 - 1108.6) &lt;8953580E-7857-33B2-AA64-98296830D3A8&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff8ef5f000 - 0x7fff8ef79ff7 com.apple.Kerberos (3.0 - 1) &lt;7760E0C2-A222-3709-B2A6-B692D900CEB1&gt; /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff8ef7a000 - 0x7fff8efa2fff libRIP.A.dylib (779.11) &lt;88434DA0-B6B8-304A-9DC0-41D3947E8734&gt; /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib 0x7fff8efa3000 - 0x7fff8f01bff7 com.apple.SystemConfiguration (1.14 - 1.14) &lt;06A8405D-53BA-30A9-BA8A-222099176091&gt; /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff8f01c000 - 0x7fff8f042fff com.apple.ChunkingLibrary (2.1 - 163.6) &lt;29D4CB95-42EF-34C6-8182-BDB6F7BB1E79&gt; /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x7fff8f043000 - 0x7fff8f06efff libc++abi.dylib (125) &lt;88A22A0F-87C6-3002-BFBA-AC0F2808B8B9&gt; /usr/lib/libc++abi.dylib 0x7fff8f06f000 - 0x7fff8f55ffff com.apple.MediaToolbox (1.0 - 1562.235) &lt;9813E9A6-5BD6-3E56-9D20-0023703D5096&gt; /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 0x7fff8f560000 - 0x7fff8f56bfff libcommonCrypto.dylib (60061) &lt;D381EBC6-69D8-31D3-8084-5A80A32CB748&gt; /usr/lib/system/libcommonCrypto.dylib 0x7fff8f603000 - 0x7fff8f60afff com.apple.NetFS (6.0 - 4.0) &lt;1581D25F-CC07-39B0-90E8-5D4F3CF84EBA&gt; /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff8f60b000 - 0x7fff8f60bfff com.apple.ApplicationServices (48 - 48) &lt;5BF7910B-C328-3BF8-BA4F-CE52B574CE01&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff8f61b000 - 0x7fff8f637fff com.apple.GenerationalStorage (2.0 - 209.11) &lt;9FF8DD11-25FB-3047-A5BF-9415339B3EEC&gt; /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x7fff8f638000 - 0x7fff8f63afff libsystem_configuration.dylib (699.1.5) &lt;20F3B077-179D-3CB0-A3C1-C8602D53B4DB&gt; /usr/lib/system/libsystem_configuration.dylib 0x7fff8f63b000 - 0x7fff8f63fff7 libGIF.dylib (1237) &lt;8A40FED5-FA90-3E76-A359-CD974C43A962&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff8f65a000 - 0x7fff8f665ff7 com.apple.speech.synthesis.framework (5.3.3 - 5.3.3) &lt;A5640275-E2A6-3856-95EF-5F0DC440B10C&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff8f6e2000 - 0x7fff8f6f4ff7 com.apple.ImageCapture (9.0 - 9.0) &lt;7FB65DD4-56B5-35C4-862C-7A2DED991D1F&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff8f6f5000 - 0x7fff8f706fff libsystem_coretls.dylib (35.20.2) &lt;6084A531-2523-39F8-B030-811FA1A32FB5&gt; /usr/lib/system/libsystem_coretls.dylib 0x7fff8f707000 - 0x7fff8f709fff libRadiance.dylib (1237) &lt;9B048776-53BB-3947-8ECE-9DDA804C86B2&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff8fc89000 - 0x7fff8fc94fff com.apple.AppSandbox (4.0 - 238.20.2) &lt;BEFAB7F2-B189-391B-9B2D-FFF3EE2B77B6&gt; /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox 0x7fff8fc95000 - 0x7fff8fc9dff3 com.apple.CoreServices.FSEvents (1210.20.1 - 1210.20.1) &lt;84F79D3E-7B5E-3C93-8479-35794A3F125E&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff8fd49000 - 0x7fff8fd4efff com.apple.DiskArbitration (2.6 - 2.6) &lt;0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9&gt; /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff8fd4f000 - 0x7fff8fd58fff libGFXShared.dylib (11.1.2) &lt;0BAF2EA8-3BC4-3BF4-ABB6-A6E0A1F3F6A5&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff8fd59000 - 0x7fff900c4fff com.apple.VideoToolbox (1.0 - 1562.235) &lt;0E996B8C-BE1C-3749-ACCA-DACBC89AFABB&gt; /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 0x7fff904a3000 - 0x7fff904adff7 com.apple.NetAuth (5.2 - 5.2) &lt;2BBD749A-8E18-35B8-8E48-A90347C1CCA7&gt; /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff904ae000 - 0x7fff907dffff com.apple.Foundation (6.9 - 1153.20) &lt;F0FF3A5D-C5B7-34A1-9319-DE1EF928E58E&gt; /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff907e9000 - 0x7fff90803fff com.apple.AppleVPAFramework (1.4.4 - 1.4.4) &lt;5C37DBD3-EB91-3A58-BD2F-E0CD533DE467&gt; /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA 0x7fff90b23000 - 0x7fff9135ffe3 com.apple.CoreGraphics (1.600.0 - 779.11) &lt;DC15AADD-387C-348E-84F0-1C8BAAB1B567&gt; /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff91360000 - 0x7fff9136dff7 libbz2.1.0.dylib (36) &lt;2DF83FBC-5C08-39E1-94F5-C28653791B5F&gt; /usr/lib/libbz2.1.0.dylib 0x7fff9136e000 - 0x7fff91370fff libCVMSPluginSupport.dylib (11.1.2) &lt;6EFEC4A6-2EAC-3C27-820E-C28BE71B9FCB&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff91374000 - 0x7fff91374ff7 liblaunch.dylib (559.20.9) &lt;FA89A113-696E-3271-8FE1-A0D7324E8481&gt; /usr/lib/system/liblaunch.dylib 0x7fff91375000 - 0x7fff9137dfff libMatch.1.dylib (24) &lt;C917279D-33C2-38A8-9BDD-18F3B24E6FBD&gt; /usr/lib/libMatch.1.dylib 0x7fff9137e000 - 0x7fff913eafff com.apple.framework.CoreWLAN (5.0 - 500.35.2) &lt;5E228544-77A9-3AA5-8355-E8F6626F50E7&gt; /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff913eb000 - 0x7fff9145afff com.apple.SearchKit (1.4.0 - 1.4.0) &lt;80883BD1-C9BA-3794-A20E-476F94DD89A9&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff9145b000 - 0x7fff91460ff7 com.apple.MediaAccessibility (1.0 - 61) &lt;00A3E0B6-79AC-387E-B282-AADFBD5722F6&gt; /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility 0x7fff9149e000 - 0x7fff914ebff7 com.apple.print.framework.PrintCore (10.3 - 451.1) &lt;DE992474-0841-38A1-B4F6-46D653E454D5&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff91526000 - 0x7fff918beff7 com.apple.CoreFoundation (6.9 - 1153.18) &lt;5C0892B8-9691-341F-9279-CA3A74D59AA0&gt; /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 79 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 2256209 thread_create: 0 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=275.0M resident=170.9M(62%) swapped_out_or_unallocated=104.1M(38%) Writable regions: Total=482.3M written=228.5M(47%) resident=289.3M(60%) swapped_out=24K(0%) unallocated=193.1M(40%) REGION TYPE VIRTUAL =========== ======= ATS (font support) 32.0M ATS (font support) (reserved) 4K reserved VM address space (unallocated) Activity Tracing 2048K CG shared images 144K CoreServices 64K CoreUI image data 28K Dispatch continuations 16.0M Kernel Alloc Once 8K MALLOC 133.3M MALLOC (admin) 32K Mach message 4K Memory Tag 252 30.4M Memory Tag 255 641.7M Memory Tag 255 (reserved) 256K reserved VM address space (unallocated) STACK GUARD 56.1M Stack 52.4M VM_ALLOCATE 70.1M __DATA 20.5M __IMAGE 528K __LINKEDIT 85.4M __TEXT 189.6M __UNICODE 552K mapped file 434.7M shared memory 4K =========== ======= TOTAL 1.7G TOTAL, minus reserved VM space 1.7G"><pre class="notranslate"><code class="notranslate">Process: Atom Helper [48309] Path: /Applications/Atom.app/Contents/Frameworks/Atom Helper.app/Contents/MacOS/Atom Helper Identifier: com.github.atom.helper Version: 1.0.0 (1.0.0) Code Type: X86-64 (Native) Parent Process: Atom [47533] Responsible: Atom [47533] User ID: 501 Date/Time: 2015-06-27 22:20:44.207 -0500 OS Version: Mac OS X 10.10.3 (14D136) Report Version: 11 Anonymous UUID: DFB824F2-E26D-0DB0-1AF9-AF40A4FB7491 Sleep/Wake UUID: F38D8DE6-103F-48E6-8BC4-101FD490D457 Time Awake Since Boot: 670000 seconds Time Since Wake: 460000 seconds Crashed Thread: 0 CrRendererMain Dispatch queue: com.apple.main-thread Exception Type: EXC_BAD_ACCESS (SIGBUS) Exception Codes: 0x000000000000000a, 0x00000001117f1340 VM Regions Near 0x1117f1340: mapped file 00000001117ef000-00000001117f1000 [ 8K] r--/r-x SM=ALI Object_id=c8eebe09 --&gt; mapped file 00000001117f1000-00000001117f8000 [ 28K] r--/r-x SM=ALI Object_id=c96f5949 mapped file 00000001117f8000-0000000111820000 [ 160K] r--/r-x SM=ALI Object_id=a9855a39 Thread 0 Crashed:: CrRendererMain Dispatch queue: com.apple.main-thread 0 git.node 0x0000000111359957 pack_entry_find_offset + 126 1 git.node 0x000000011135a426 git_pack_entry_find + 135 2 git.node 0x0000000111354bcf pack_entry_find + 54 3 git.node 0x0000000111354e30 pack_backend__read_internal + 54 4 git.node 0x0000000111354570 pack_backend__read + 34 5 git.node 0x0000000111351d52 git_odb_read + 169 6 git.node 0x0000000111350393 git_object_lookup_prefix + 326 7 git.node 0x000000011131b757 Repository::GetBlob(v8::FunctionCallbackInfo&lt;v8::Value&gt; const&amp;, git_repository*, git_blob*&amp;) + 419 8 git.node 0x000000011131a492 Repository::GetLineDiffs(v8::FunctionCallbackInfo&lt;v8::Value&gt; const&amp;) + 142 9 ??? 0x0000048f4bbb4c02 0 + 5013497400322 10 ??? 0x0000048f4c0ca426 0 + 5013502731302 11 ??? 0x0000048f4ca4e1ec 0 + 5013512708588 12 ??? 0x0000048f4b23a806 0 + 5013487462406 13 ??? 0x0000048f4b66acd9 0 + 5013491854553 14 ??? 0x0000048f4c7f927a 0 + 5013510263418 15 ??? 0x0000048f4b2377c0 0 + 5013487450048 16 ??? 0x0000048f4b232271 0 + 5013487428209 17 libchromiumcontent.dylib 0x0000000104f85c51 v8::Testing::DeoptimizeAll() + 1177505 18 libchromiumcontent.dylib 0x0000000104e5e701 v8::Function::Call(v8::Handle&lt;v8::Value&gt;, int, v8::Handle&lt;v8::Value&gt;*) + 193 19 com.github.AtomFramework 0x0000000103080019 node::MakeCallback(node::Environment*, v8::Handle&lt;v8::Value&gt;, v8::Handle&lt;v8::Function&gt;, int, v8::Handle&lt;v8::Value&gt;*) + 639 20 com.github.AtomFramework 0x0000000103086d79 node::CheckImmediate(uv_check_s*) + 98 21 com.github.AtomFramework 0x00000001031bb719 uv__run_check + 33 22 com.github.AtomFramework 0x00000001031b7895 uv_run + 293 23 com.github.AtomFramework 0x000000010304c7a7 atom::NodeBindings::UvRunOnce() + 87 24 libchromiumcontent.dylib 0x00000001038aa7f8 base::debug::TaskAnnotator::RunTask(char const*, char const*, base::PendingTask const&amp;) + 248 25 libchromiumcontent.dylib 0x00000001038e80f8 base::MessageLoop::RunTask(base::PendingTask const&amp;) + 552 26 libchromiumcontent.dylib 0x00000001038e866c base::MessageLoop::DoWork() + 668 27 libchromiumcontent.dylib 0x0000000103894501 base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2881 28 com.apple.CoreFoundation 0x00007fff915a6a01 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 29 com.apple.CoreFoundation 0x00007fff91598b8d __CFRunLoopDoSources0 + 269 30 com.apple.CoreFoundation 0x00007fff915981bf __CFRunLoopRun + 927 31 com.apple.CoreFoundation 0x00007fff91597bd8 CFRunLoopRunSpecific + 296 32 com.apple.Foundation 0x00007fff9053ea59 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278 33 libchromiumcontent.dylib 0x0000000103894a14 base::MessagePumpNSRunLoop::DoRun(base::MessagePump::Delegate*) + 100 34 libchromiumcontent.dylib 0x000000010389436c base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2476 35 libchromiumcontent.dylib 0x00000001038fe103 base::RunLoop::Run() + 99 36 libchromiumcontent.dylib 0x00000001038e78dd base::MessageLoop::Run() + 29 37 libchromiumcontent.dylib 0x0000000106277937 content::RendererBlinkPlatformImpl::MockBatteryStatusChangedForTesting(blink::WebBatteryStatus const&amp;) + 6183 38 libchromiumcontent.dylib 0x0000000103889779 content::ContentMainRunner::Create() + 1849 39 libchromiumcontent.dylib 0x0000000103888d56 content::ContentMain(content::ContentMainParams const&amp;) + 54 40 com.github.AtomFramework 0x0000000102ffe792 AtomMain + 82 41 libdyld.dylib 0x00007fff863f65c9 start + 1 Thread 1:: Dispatch queue: com.apple.libdispatch-manager 0 libsystem_kernel.dylib 0x00007fff8c611232 kevent64 + 10 1 libdispatch.dylib 0x00007fff8c263a6a _dispatch_mgr_thread + 52 Thread 2:: Chrome_ChildIOThread 0 libsystem_kernel.dylib 0x00007fff8c61121a kevent + 10 1 libchromiumcontent.dylib 0x000000010392fdbd logging::VlogInfo::GetMaxVlogLevel() const + 6109 2 libchromiumcontent.dylib 0x00000001038938d0 base::MessagePumpLibevent::Run(base::MessagePump::Delegate*) + 432 3 libchromiumcontent.dylib 0x00000001038fe103 base::RunLoop::Run() + 99 4 libchromiumcontent.dylib 0x00000001038e78dd base::MessageLoop::Run() + 29 5 libchromiumcontent.dylib 0x000000010392132f base::Thread::ThreadMain() + 223 6 libchromiumcontent.dylib 0x000000010391b19b base::PlatformThread::Join(base::PlatformThreadHandle) + 283 7 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 8 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 9 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 3:: OptimizingCompi 0 libsystem_kernel.dylib 0x00007fff8c60b51a semaphore_wait_trap + 10 1 libchromiumcontent.dylib 0x0000000105280a37 v8::Unlocker::~Unlocker() + 542167 2 libchromiumcontent.dylib 0x000000010514a555 v8::Testing::DeoptimizeAll() + 3031205 3 libchromiumcontent.dylib 0x0000000105282037 v8::Unlocker::~Unlocker() + 547799 4 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 5 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 6 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 4:: Compositor 0 libsystem_kernel.dylib 0x00007fff8c60b4de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8c60a64f mach_msg + 55 2 com.apple.CoreFoundation 0x00007fff91598eb4 __CFRunLoopServiceMachPort + 212 3 com.apple.CoreFoundation 0x00007fff9159837b __CFRunLoopRun + 1371 4 com.apple.CoreFoundation 0x00007fff91597bd8 CFRunLoopRunSpecific + 296 5 libchromiumcontent.dylib 0x000000010389478f base::MessagePumpCFRunLoop::DoRun(base::MessagePump::Delegate*) + 79 6 libchromiumcontent.dylib 0x000000010389436c base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2476 7 libchromiumcontent.dylib 0x00000001038fe103 base::RunLoop::Run() + 99 8 libchromiumcontent.dylib 0x00000001038e78dd base::MessageLoop::Run() + 29 9 libchromiumcontent.dylib 0x000000010392132f base::Thread::ThreadMain() + 223 10 libchromiumcontent.dylib 0x000000010391b19b base::PlatformThread::Join(base::PlatformThreadHandle) + 283 11 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 12 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 13 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 5: 0 libsystem_kernel.dylib 0x00007fff8c60b51a semaphore_wait_trap + 10 1 com.github.AtomFramework 0x00000001031c0076 uv_sem_wait + 16 2 com.github.AtomFramework 0x000000010304c715 atom::NodeBindings::EmbedThreadRunner(void*) + 35 3 com.github.AtomFramework 0x00000001031bfe65 uv__thread_start + 25 4 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 5 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 6 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 6:: handle-watcher-thread 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 libchromiumcontent.dylib 0x0000000104b31368 mojo::system::Waiter::Wait(unsigned long long, unsigned int*) + 216 2 libchromiumcontent.dylib 0x0000000104b212eb mojo::system::Core::WaitManyInternal(unsigned int const*, unsigned int const*, unsigned int, unsigned long long, unsigned int*, mojo::system::HandleSignalsState*) + 491 3 libchromiumcontent.dylib 0x0000000104b215d6 mojo::system::Core::WaitMany(mojo::system::UserPointer&lt;unsigned int const&gt;, mojo::system::UserPointer&lt;unsigned int const&gt;, unsigned int, unsigned long long, mojo::system::UserPointer&lt;unsigned int&gt;, mojo::system::UserPointer&lt;MojoHandleSignalsState&gt;) + 358 4 libchromiumcontent.dylib 0x0000000104b185f2 MojoWaitMany + 82 5 libchromiumcontent.dylib 0x0000000104b15986 mojo::common::MessagePumpMojo::DoInternalWork(mojo::common::MessagePumpMojo::RunState const&amp;, bool) + 262 6 libchromiumcontent.dylib 0x0000000104b156f3 mojo::common::MessagePumpMojo::DoRunLoop(mojo::common::MessagePumpMojo::RunState*, base::MessagePump::Delegate*) + 51 7 libchromiumcontent.dylib 0x0000000104b1567a mojo::common::MessagePumpMojo::Run(base::MessagePump::Delegate*) + 266 8 libchromiumcontent.dylib 0x00000001038fe103 base::RunLoop::Run() + 99 9 libchromiumcontent.dylib 0x00000001038e78dd base::MessageLoop::Run() + 29 10 libchromiumcontent.dylib 0x000000010392132f base::Thread::ThreadMain() + 223 11 libchromiumcontent.dylib 0x000000010391b19b base::PlatformThread::Join(base::PlatformThreadHandle) + 283 12 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 13 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 14 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 7:: HTMLParserThread 0 libsystem_kernel.dylib 0x00007fff8c60b4de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8c60a64f mach_msg + 55 2 com.apple.CoreFoundation 0x00007fff91598eb4 __CFRunLoopServiceMachPort + 212 3 com.apple.CoreFoundation 0x00007fff9159837b __CFRunLoopRun + 1371 4 com.apple.CoreFoundation 0x00007fff91597bd8 CFRunLoopRunSpecific + 296 5 libchromiumcontent.dylib 0x000000010389478f base::MessagePumpCFRunLoop::DoRun(base::MessagePump::Delegate*) + 79 6 libchromiumcontent.dylib 0x000000010389436c base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2476 7 libchromiumcontent.dylib 0x00000001038fe103 base::RunLoop::Run() + 99 8 libchromiumcontent.dylib 0x00000001038e78dd base::MessageLoop::Run() + 29 9 libchromiumcontent.dylib 0x000000010392132f base::Thread::ThreadMain() + 223 10 libchromiumcontent.dylib 0x000000010391b19b base::PlatformThread::Join(base::PlatformThreadHandle) + 283 11 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 12 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 13 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 8:: CompositorTileWorker1/25091 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 libchromiumcontent.dylib 0x000000010468fd69 cc::TaskGraphRunner::Run() + 73 2 libchromiumcontent.dylib 0x000000010391f913 base::DelegateSimpleThread::Run() + 19 3 libchromiumcontent.dylib 0x000000010391f608 base::SimpleThread::ThreadMain() + 136 4 libchromiumcontent.dylib 0x000000010391b19b base::PlatformThread::Join(base::PlatformThreadHandle) + 283 5 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 6 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 7 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 9: 0 libsystem_kernel.dylib 0x00007fff8c60b4de mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff8c60a64f mach_msg + 55 2 com.github.AtomFramework 0x00000001031c556f google_breakpad::ExceptionHandler::WaitForMessage(void*) + 165 3 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 4 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 5 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 10: 0 libsystem_kernel.dylib 0x00007fff8c61121a kevent + 10 1 com.github.AtomFramework 0x00000001031bfe65 uv__thread_start + 25 2 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 3 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 4 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 11: 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 com.github.AtomFramework 0x00000001031c010c uv_cond_wait + 9 2 com.github.AtomFramework 0x00000001031b5eea worker + 206 3 com.github.AtomFramework 0x00000001031bfe65 uv__thread_start + 25 4 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 5 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 6 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 12: 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 com.github.AtomFramework 0x00000001031c010c uv_cond_wait + 9 2 com.github.AtomFramework 0x00000001031b5eea worker + 206 3 com.github.AtomFramework 0x00000001031bfe65 uv__thread_start + 25 4 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 5 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 6 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 13: 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 com.github.AtomFramework 0x00000001031c010c uv_cond_wait + 9 2 com.github.AtomFramework 0x00000001031b5eea worker + 206 3 com.github.AtomFramework 0x00000001031bfe65 uv__thread_start + 25 4 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 5 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 6 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 14: 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 com.github.AtomFramework 0x00000001031c010c uv_cond_wait + 9 2 com.github.AtomFramework 0x00000001031b5eea worker + 206 3 com.github.AtomFramework 0x00000001031bfe65 uv__thread_start + 25 4 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 5 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 6 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 15:: WorkerPool/6415 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 libchromiumcontent.dylib 0x000000010391517b base::ConditionVariable::TimedWait(base::TimeDelta const&amp;) + 91 2 libchromiumcontent.dylib 0x0000000103923b5c base::PosixDynamicThreadPool::WaitForTask() + 188 3 libchromiumcontent.dylib 0x00000001039240c6 base::PosixDynamicThreadPool::WaitForTask() + 1574 4 libchromiumcontent.dylib 0x000000010391b19b base::PlatformThread::Join(base::PlatformThreadHandle) + 283 5 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 6 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 7 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 16:: WorkerPool/30479 0 libsystem_kernel.dylib 0x00007fff8c610136 __psynch_cvwait + 10 1 libchromiumcontent.dylib 0x000000010391517b base::ConditionVariable::TimedWait(base::TimeDelta const&amp;) + 91 2 libchromiumcontent.dylib 0x0000000103923b5c base::PosixDynamicThreadPool::WaitForTask() + 188 3 libchromiumcontent.dylib 0x00000001039240c6 base::PosixDynamicThreadPool::WaitForTask() + 1574 4 libchromiumcontent.dylib 0x000000010391b19b base::PlatformThread::Join(base::PlatformThreadHandle) + 283 5 libsystem_pthread.dylib 0x00007fff824e2268 _pthread_body + 131 6 libsystem_pthread.dylib 0x00007fff824e21e5 _pthread_start + 176 7 libsystem_pthread.dylib 0x00007fff824e041d thread_start + 13 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x00000001117f1000 rbx: 0x00000001117f1008 rcx: 0x0000000000000002 rdx: 0x0000000000000000 rdi: 0x00000001117f1408 rsi: 0x00000000000000ce rbp: 0x00007fff5cc07950 rsp: 0x00007fff5cc07900 r8: 0x0000000000000028 r9: 0x0000000000000000 r10: 0x0000000000000028 r11: 0x00007fe06ac00000 r12: 0x00007fe06ae69fb0 r13: 0x00007fe06fdaf314 r14: 0x00007fff5cc07970 r15: 0x00007fff72d59070 rip: 0x0000000111359957 rfl: 0x0000000000010202 cr2: 0x00000001117f1340 Logical CPU: 2 Error Code: 0x00000004 Trap Number: 14 Binary Images: 0x102ff6000 - 0x102ff6fff +com.github.atom.helper (1.0.0 - 1.0.0) &lt;01640C31-CD77-3CDE-A785-A8A2F391F75E&gt; /Applications/Atom.app/Contents/Frameworks/Atom Helper.app/Contents/MacOS/Atom Helper 0x102ffd000 - 0x10338dfff +com.github.AtomFramework (0) &lt;D4490C5B-0890-3CB3-AB4D-24F22D866D92&gt; /Applications/Atom.app/Contents/Frameworks/Atom Framework.framework/Versions/A/Atom Framework 0x103738000 - 0x10374dff7 +com.github.Squirrel (1.0 - 1) &lt;85C10AB5-0538-3E6C-A73B-9D4E55378A5B&gt; /Applications/Atom.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel 0x10376c000 - 0x1037cfff7 +org.reactivecocoa.ReactiveCocoa (1.0 - 1) &lt;701B20DE-3ADD-3643-B52A-E05744C30DB3&gt; /Applications/Atom.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa 0x10384a000 - 0x10385efff +org.mantle.Mantle (1.0 - ???) &lt;31915DD6-48E6-3706-A076-C9D4CE17F4F6&gt; /Applications/Atom.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle 0x10387a000 - 0x107322fbf +libchromiumcontent.dylib (0) &lt;D7BF0690-764D-3C55-AC00-9F57EA593B7A&gt; /Applications/Atom.app/Contents/Frameworks/Atom Framework.framework/Versions/A/Libraries/libchromiumcontent.dylib 0x107fb7000 - 0x107feefff com.apple.audio.midi.CoreMIDI (1.10 - 88) &lt;4BBCD304-C28F-3C03-AEB8-5E3D5D030602&gt; /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI 0x10c5a1000 - 0x10c7b4fff +ffmpegsumo.so (0) &lt;F3883E27-9E50-3415-8006-2F69FE96C369&gt; /Applications/Atom.app/Contents/Frameworks/Atom Framework.framework/Libraries/ffmpegsumo.so 0x10e865000 - 0x10e868ff7 +pathwatcher.node (???) &lt;17CE802B-A0D9-3CB8-B03F-5B7B6F5DEF27&gt; /Applications/Atom.app/Contents/Resources/app.asar.unpacked/node_modules/pathwatcher/build/Release/pathwatcher.node 0x10e86f000 - 0x10e870fff +keyboard-layout-observer.node (???) &lt;E704D6F9-ADC9-32EB-8464-C2A809060BC4&gt; /Applications/Atom.app/Contents/Resources/app.asar.unpacked/node_modules/atom-keymap/node_modules/keyboard-layout/build/Release/keyboard-layout-observer.node 0x10fb22000 - 0x10fb23fff ATSHI.dylib (375.2) &lt;A3AAB235-5FAB-3204-B1B2-7E9E56C92B37&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/ATSHI.dylib 0x1101c2000 - 0x110216fff +onig_scanner.node (???) &lt;17D0BC35-EFF9-3933-BBFB-D0ADFDCD7675&gt; /Applications/Atom.app/Contents/Resources/app.asar.unpacked/node_modules/oniguruma/build/Release/onig_scanner.node 0x111317000 - 0x1113baff7 +git.node (???) &lt;A2BF3FFC-078C-3732-89CF-9A4EC2CF9386&gt; /Applications/Atom.app/Contents/Resources/app.asar.unpacked/node_modules/git-utils/build/Release/git.node 0x111853000 - 0x111854ff7 +scrollbar-style-observer.node (???) &lt;18A1590B-F31F-371D-9F41-DCA7575463AC&gt; /Applications/Atom.app/Contents/Resources/app.asar.unpacked/node_modules/scrollbar-style/build/Release/scrollbar-style-observer.node 0x7fff60f33000 - 0x7fff60f69837 dyld (353.2.1) &lt;65DCCB06-339C-3E25-9702-600A28291D0E&gt; /usr/lib/dyld 0x7fff81e3b000 - 0x7fff820b9fff com.apple.RawCamera.bundle (6.04 - 791) &lt;B6139D16-972F-3BC4-A61B-2F226F7666DB&gt; /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 0x7fff820ba000 - 0x7fff8210bfff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) &lt;450293F7-DAE7-3DD0-8F7C-71FC2FD72627&gt; /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff8214d000 - 0x7fff82172fff libPng.dylib (1237) &lt;F5652650-87ED-3D53-9E59-A897DFA41DD0&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff82173000 - 0x7fff82177fff libpam.2.dylib (20) &lt;E805398D-9A92-31F8-8005-8DC188BD8B6E&gt; /usr/lib/libpam.2.dylib 0x7fff821dc000 - 0x7fff823e9ff3 com.apple.CFNetwork (720.3.13 - 720.3.13) &lt;69E15385-5784-3912-88F6-03B16F1C1A5C&gt; /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff824df000 - 0x7fff824e8fff libsystem_pthread.dylib (105.10.1) &lt;3103AA7F-3BAE-3673-9649-47FFD7E15C97&gt; /usr/lib/system/libsystem_pthread.dylib 0x7fff825ce000 - 0x7fff825e4ff7 libsystem_asl.dylib (267) &lt;F153AC5B-0542-356E-88C8-20A62CA704E2&gt; /usr/lib/system/libsystem_asl.dylib 0x7fff82bd6000 - 0x7fff82c06fff libsystem_m.dylib (3086.1) &lt;1E12AB45-6D96-36D0-A226-F24D9FB0D9D6&gt; /usr/lib/system/libsystem_m.dylib 0x7fff82c96000 - 0x7fff82c9dfff com.apple.network.statistics.framework (1.2 - 1) &lt;61B311D1-7F15-35B3-80D4-99B8BE90ACD9&gt; /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics 0x7fff83527000 - 0x7fff8352bfff libcache.dylib (69) &lt;45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1&gt; /usr/lib/system/libcache.dylib 0x7fff836bc000 - 0x7fff836c0fff libCoreVMClient.dylib (79.1) &lt;201EF6DF-5074-3CB7-A361-398CF957A264&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff836c1000 - 0x7fff836c6ffb libheimdal-asn1.dylib (398.10.1) &lt;A7B6447A-6680-3625-83C3-993B58D5C43F&gt; /usr/lib/libheimdal-asn1.dylib 0x7fff836c7000 - 0x7fff83713ff7 libcups.2.dylib (408.2) &lt;E8AD18F9-61E4-3791-B840-504468C25556&gt; /usr/lib/libcups.2.dylib 0x7fff83714000 - 0x7fff83738ff7 com.apple.Sharing (328.16 - 328.16) &lt;F96C7040-5FAF-3BC6-AE1E-5BF9CBE786C4&gt; /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff8379f000 - 0x7fff8379ffff com.apple.Cocoa (6.8 - 21) &lt;EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8&gt; /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff8380e000 - 0x7fff8380efff com.apple.Accelerate (1.10 - Accelerate 1.10) &lt;2C8AF258-4F11-3BEC-A826-22D7199B3975&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff8384e000 - 0x7fff838c2ffb com.apple.securityfoundation (6.0 - 55126) &lt;42589E18-D38C-3E25-B638-6E29740C224C&gt; /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff838cf000 - 0x7fff83941fff com.apple.framework.IOKit (2.0.2 - 1050.20.2) &lt;09C0518C-90DF-3FC3-96D6-34D35F72C8EF&gt; /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff8398a000 - 0x7fff8398bff7 com.apple.print.framework.Print (10.0 - 265) &lt;3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff8398c000 - 0x7fff8398dff7 libsystem_blocks.dylib (65) &lt;9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1&gt; /usr/lib/system/libsystem_blocks.dylib 0x7fff83a34000 - 0x7fff83a4bff7 libLinearAlgebra.dylib (1128) &lt;E78CCBAA-A999-3B65-8EC9-06DB15E67C37&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff83a4c000 - 0x7fff83a87fff com.apple.QD (301 - 301) &lt;C4D2AD03-B839-350A-AAF0-B4A08F8BED77&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff83a8a000 - 0x7fff83b7cfff libxml2.2.dylib (26) &lt;B834E7C8-EC3E-3382-BC5A-DA38DC4D720C&gt; /usr/lib/libxml2.2.dylib 0x7fff83b7d000 - 0x7fff83b8eff7 libz.1.dylib (55) &lt;88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1&gt; /usr/lib/libz.1.dylib 0x7fff83bf6000 - 0x7fff83c13fff com.apple.MultitouchSupport.framework (263.9.1 - 263.9.1) &lt;6ABD3AE2-DF6A-3AB2-994B-9C0FB42CE2B7&gt; /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff83c14000 - 0x7fff83c1cff7 com.apple.AppleSRP (5.0 - 1) &lt;01EC5144-D09A-3D6A-AE35-F6D48585F154&gt; /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP 0x7fff83c53000 - 0x7fff83d65ff7 libvDSP.dylib (516) &lt;151B3CCB-77D3-3715-A3D0-7C74CD5C7FFC&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff83d66000 - 0x7fff83f6046f libobjc.A.dylib (647) &lt;759E155D-BC42-3D4E-869B-6F57D477177C&gt; /usr/lib/libobjc.A.dylib 0x7fff83f61000 - 0x7fff83f69fff libsystem_platform.dylib (63) &lt;64E34079-D712-3D66-9CE2-418624A5C040&gt; /usr/lib/system/libsystem_platform.dylib 0x7fff83f6a000 - 0x7fff83f6afff com.apple.audio.units.AudioUnit (1.12 - 1.12) &lt;E5335492-7EFE-31EA-BE72-4A9CEE68D58E&gt; /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff83f9e000 - 0x7fff83faffff libcmph.dylib (1) &lt;46EC3997-DB5E-38AE-BBBB-A035A54AD3C0&gt; /usr/lib/libcmph.dylib 0x7fff84044000 - 0x7fff841d2fff libBLAS.dylib (1128) &lt;497912C1-A98E-3281-BED7-E9C751552F61&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff84383000 - 0x7fff844c7ff7 com.apple.QTKit (7.7.3 - 2890) &lt;EA6DCA1E-CBAB-328F-B230-1F9B9104E110&gt; /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit 0x7fff845b5000 - 0x7fff845e4ff7 com.apple.CoreServicesInternal (221.7.2 - 221.7.2) &lt;B93D4775-149C-3698-B38C-9C50673D455C&gt; /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff845ee000 - 0x7fff84655ff7 com.apple.framework.CoreWiFi (3.0 - 300.4) &lt;19269C1D-EB29-384A-83F3-7DDDEB7D9DAD&gt; /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi 0x7fff84681000 - 0x7fff84741ff7 com.apple.backup.framework (1.6.4 - 1.6.4) &lt;A67CE7D7-AAE4-3AC0-86B7-EAF403853D09&gt; /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff84742000 - 0x7fff84744fff libquarantine.dylib (76.20.1) &lt;7AF90041-2768-378A-925A-D83161863642&gt; /usr/lib/system/libquarantine.dylib 0x7fff84758000 - 0x7fff847e1ff7 com.apple.CoreSymbolication (3.1 - 57020.1) &lt;85707039-0C8A-3409-B0B5-153431CC1841&gt; /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x7fff847e2000 - 0x7fff847e8fff libsystem_trace.dylib (72.20.1) &lt;840F5301-B55A-3078-90B9-FEFFD6CD741A&gt; /usr/lib/system/libsystem_trace.dylib 0x7fff847e9000 - 0x7fff84814fff com.apple.DictionaryServices (1.2 - 229) &lt;F03DFAC6-6285-3176-9C6D-7CC50F8CD52A&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff84815000 - 0x7fff8481bfff com.apple.speech.recognition.framework (5.0.9 - 5.0.9) &lt;BB2D573F-0A01-379F-A2BA-3C454EDCB111&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff84a7b000 - 0x7fff84a7dfff com.apple.loginsupport (1.0 - 1) &lt;DAAD7013-A19D-3858-BFF7-DE1DAF664401&gt; /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff84a7e000 - 0x7fff84a8bff7 com.apple.SpeechRecognitionCore (2.1.2 - 2.1.2) &lt;551322E2-C1E4-3378-A218-F362985E3E3C&gt; /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff84a8c000 - 0x7fff84b23fff com.apple.CoreMedia (1.0 - 1562.235) &lt;21EB4AB6-2DBC-326B-B17E-E88BAA9E9200&gt; /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x7fff84b24000 - 0x7fff84b37ff7 com.apple.CoreBluetooth (1.0 - 1) &lt;8D7BA9BA-EB36-307A-9119-0B3D9732C953&gt; /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff84b84000 - 0x7fff84c22fff com.apple.Metadata (10.7.0 - 917.35) &lt;8CBD1D32-4F4B-3F9A-AC65-76F2B5376FBF&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff84cca000 - 0x7fff84d38ffb com.apple.Heimdal (4.0 - 2.0) &lt;7697A837-98B8-3BDB-A7D2-8ED4C9ABC510&gt; /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff84db4000 - 0x7fff84e05ff7 com.apple.AppleVAFramework (5.0.31 - 5.0.31) &lt;FED294D2-13CB-381D-98D0-BDA909AACA32&gt; /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 0x7fff84e06000 - 0x7fff84e6dffb com.apple.datadetectorscore (6.0 - 396.1.1) &lt;9B0B3198-DDBE-36C0-8BA9-3EC89C725282&gt; /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff84e6e000 - 0x7fff84f9efff com.apple.UIFoundation (1.0 - 1) &lt;466BDFA8-0B9F-3AB0-989D-F9779422926A&gt; /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation 0x7fff84fc6000 - 0x7fff84fc9fff com.apple.xpc.ServiceManagement (1.0 - 1) &lt;9E025823-660A-30C5-A568-223BD595B6F7&gt; /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff84fca000 - 0x7fff84fcdfff com.apple.help (1.3.3 - 46) &lt;CA4541F4-CEF5-355C-8F1F-EA65DC1B400F&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff84fce000 - 0x7fff85018ff7 com.apple.HIServices (1.22 - 522.1) &lt;E8BD41E4-7747-3CAF-807A-5CA9AD16B525&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff850f7000 - 0x7fff850f7ff7 libkeymgr.dylib (28) &lt;77845842-DE70-3CC5-BD01-C3D14227CED5&gt; /usr/lib/system/libkeymgr.dylib 0x7fff851b4000 - 0x7fff852a4fef libJP2.dylib (1237) &lt;A24C99BF-2360-343F-BCA1-F044E78EA0DE&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff852a5000 - 0x7fff852aaff7 libmacho.dylib (862) &lt;126CA2ED-DE91-308F-8881-B9DAEC3C63B6&gt; /usr/lib/system/libmacho.dylib 0x7fff852df000 - 0x7fff852e4fff libsystem_stats.dylib (163.20.16) &lt;FBC3F80F-A0FB-3BD6-9A7E-800DE45F092E&gt; /usr/lib/system/libsystem_stats.dylib 0x7fff85530000 - 0x7fff85835ff3 com.apple.HIToolbox (2.1.1 - 758.7) &lt;6711FAA9-904A-3B49-9665-FC8D13B93C42&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff85f25000 - 0x7fff85f31ff7 com.apple.OpenDirectory (10.10 - 187) &lt;1E07769D-68DE-3BF2-8E9E-A1E98BF70D1B&gt; /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff85f45000 - 0x7fff85ff4fe7 libvMisc.dylib (516) &lt;6739E390-46E7-3BFA-9B69-B278562326E6&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff85ff5000 - 0x7fff863ccfe7 com.apple.CoreAUC (211.1.0 - 211.1.0) &lt;12645629-E065-388E-A6B5-094A240578CE&gt; /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 0x7fff863e7000 - 0x7fff863f2ff7 com.apple.CrashReporterSupport (10.10 - 631) &lt;D87A64FA-64B1-3B23-BB43-ADE173C108C6&gt; /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff863f3000 - 0x7fff863f6ff7 libdyld.dylib (353.2.1) &lt;9EACCA38-291D-38CC-811F-7E9D1451E2D3&gt; /usr/lib/system/libdyld.dylib 0x7fff86427000 - 0x7fff8646dff7 libFontRegistry.dylib (134.1) &lt;CE41D8C2-BEED-345C-BC4F-3775CC06C672&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff8646e000 - 0x7fff86476fff libsystem_dnssd.dylib (561.1.1) &lt;62B70ECA-E40D-3C63-896E-7F00EC386DDB&gt; /usr/lib/system/libsystem_dnssd.dylib 0x7fff86477000 - 0x7fff86ff8ff7 com.apple.AppKit (6.9 - 1347.57) &lt;B214D528-7D1C-39B2-BE36-821D417A0297&gt; /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff8701d000 - 0x7fff87028ff7 libkxld.dylib (2782.20.48) &lt;28EF8328-E3E2-336A-974B-FB1BF119D55A&gt; /usr/lib/system/libkxld.dylib 0x7fff8704d000 - 0x7fff8704dfff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) &lt;9D749502-A228-3BF1-B52F-A182DEEB2C4D&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff871d1000 - 0x7fff8720cfff com.apple.Symbolication (1.4 - 56045) &lt;D64571B1-4483-3FE2-BD67-A91360F79727&gt; /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication 0x7fff872c5000 - 0x7fff872e5fff com.apple.IconServices (47.1 - 47.1) &lt;E83DFE3B-6541-3736-96BB-26DC5D0100F1&gt; /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff87683000 - 0x7fff879b6ff7 libmecabra.dylib (666.7) &lt;0ED8AE5E-7A5B-34A6-A2EE-2B852E60E1E2&gt; /usr/lib/libmecabra.dylib 0x7fff879fc000 - 0x7fff87c66ff7 com.apple.security (7.0 - 57031.20.26) &lt;6568520A-587D-3167-BB79-60CE6FEADC64&gt; /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff87c67000 - 0x7fff87cf3ff7 libsystem_c.dylib (1044.10.1) &lt;86FBED7A-F2C8-3591-AD6F-486DD57E6B6A&gt; /usr/lib/system/libsystem_c.dylib 0x7fff88653000 - 0x7fff88658ff7 libunwind.dylib (35.3) &lt;BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6&gt; /usr/lib/system/libunwind.dylib 0x7fff88659000 - 0x7fff88689fff com.apple.GSS (4.0 - 2.0) &lt;A37BAF76-C262-3292-B82D-F004CAC5F333&gt; /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff8868a000 - 0x7fff8883aff3 com.apple.QuartzCore (1.10 - 361.18) &lt;ACA61D8F-9535-3141-8FDD-AC3EF6BF0806&gt; /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff8883b000 - 0x7fff88888ff3 com.apple.CoreMediaIO (601.0 - 4760) &lt;B2B71300-A863-30F8-8F00-B852CF843264&gt; /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO 0x7fff88889000 - 0x7fff88998ff3 com.apple.desktopservices (1.9.3 - 1.9.3) &lt;FEE11342-5BC4-37A7-8169-DA48BE17B9C9&gt; /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff889d1000 - 0x7fff88a24ffb libAVFAudio.dylib (118.6) &lt;2441D4C1-D8FB-3DA9-9DD7-914E03413882&gt; /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib 0x7fff88a25000 - 0x7fff88b86fff com.apple.avfoundation (2.0 - 889.210) &lt;0CFF0D47-7C6B-388E-87BD-404F43A6B1E0&gt; /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation 0x7fff88b87000 - 0x7fff88b8bfff com.apple.TCC (1.0 - 1) &lt;CCA42EE2-3400-3444-9486-BC454E60D944&gt; /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff88b8c000 - 0x7fff88b99fff libxar.1.dylib (255) &lt;7CD69BB5-97BA-3858-8A8B-2F33F129E6E7&gt; /usr/lib/libxar.1.dylib 0x7fff88c2c000 - 0x7fff88c32ff7 libsystem_networkextension.dylib (167.1.10) &lt;29AB225B-D7FB-30ED-9600-65D44B9A9442&gt; /usr/lib/system/libsystem_networkextension.dylib 0x7fff88c91000 - 0x7fff88c92ff3 libSystem.B.dylib (1213) &lt;CCEC13A5-D0D9-31C5-B0B0-1C564B4A20A6&gt; /usr/lib/libSystem.B.dylib 0x7fff88c93000 - 0x7fff88c93fff libOpenScriptingUtil.dylib (162.1) &lt;E0605012-0DDB-3150-8FD0-699376FA3CD0&gt; /usr/lib/libOpenScriptingUtil.dylib 0x7fff88cc4000 - 0x7fff88dfefff com.apple.ImageIO.framework (3.3.0 - 1237) &lt;3C06213D-847A-3C7B-843E-6EC37113965D&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff88e7d000 - 0x7fff88efeff7 com.apple.CoreUtils (1.1 - 110.1) &lt;C98E1441-3FCB-3BC6-BB51-5380BD39EA88&gt; /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils 0x7fff88eff000 - 0x7fff88f19ff7 liblzma.5.dylib (7) &lt;1D03E875-A7C0-3028-814C-3C27F7B7C079&gt; /usr/lib/liblzma.5.dylib 0x7fff88f1a000 - 0x7fff88f1aff7 libunc.dylib (29) &lt;5676F7EA-C1DF-329F-B006-D2C3022B7D70&gt; /usr/lib/system/libunc.dylib 0x7fff8906e000 - 0x7fff89097ffb libxslt.1.dylib (13) &lt;AED1143F-B848-3E73-81ED-71356F25F084&gt; /usr/lib/libxslt.1.dylib 0x7fff89098000 - 0x7fff890a7fff com.apple.LangAnalysis (1.7.0 - 1.7.0) &lt;D1E527E4-C561-352F-9457-E8C50232793C&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff891b0000 - 0x7fff895bdff7 libLAPACK.dylib (1128) &lt;F9201AE7-B031-36DB-BCF8-971E994EF7C1&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff895be000 - 0x7fff895c2fff com.apple.CommonPanels (1.2.6 - 96) &lt;F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff895e2000 - 0x7fff89631ff7 com.apple.opencl (2.4.2 - 2.4.2) &lt;4A9574ED-15CF-3EBB-B4C0-D30F644D6C74&gt; /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff89632000 - 0x7fff8975aff7 com.apple.coreui (2.1 - 308.6) &lt;DEA5D3E1-D333-302B-A6CF-7643BFDFAED0&gt; /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff8975b000 - 0x7fff897a1ff7 libauto.dylib (186) &lt;A260789B-D4D8-316A-9490-254767B8A5F1&gt; /usr/lib/libauto.dylib 0x7fff8988a000 - 0x7fff89929e27 com.apple.AppleJPEG (1.0 - 1) &lt;6627DDD9-A8FE-3968-B23A-B6A29AA3919A&gt; /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff8992a000 - 0x7fff8994bfff com.apple.framework.Apple80211 (10.3 - 1030.71.6) &lt;D3862426-2586-3DF7-BA75-9A184FCD74C4&gt; /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff8994c000 - 0x7fff89a92fef libsqlite3.dylib (168) &lt;8B78BED1-7B9B-3943-80DC-0871015AEAC4&gt; /usr/lib/libsqlite3.dylib 0x7fff89a93000 - 0x7fff89abffff libsandbox.1.dylib (358.20.5) &lt;C84D0EA1-CE60-3328-A196-D55874BE83D1&gt; /usr/lib/libsandbox.1.dylib 0x7fff89be8000 - 0x7fff89c15fff com.apple.CoreVideo (1.8 - 145.1) &lt;18DB07E0-B927-3260-A234-636F298D1917&gt; /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff89c91000 - 0x7fff89daaffb com.apple.CoreText (352.0 - 454.6) &lt;D45790B0-E1A3-3C7D-8BA2-AB71D2CFA7FB&gt; /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff89dab000 - 0x7fff89db4ff3 com.apple.CommonAuth (4.0 - 2.0) &lt;BA9F5A09-D200-3D18-9F4A-20C789291A30&gt; /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff89db5000 - 0x7fff8a084ff3 com.apple.CoreImage (10.3.4) &lt;C1AE8252-A95D-3BF4-83B8-BE85E979F2CB&gt; /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff8a085000 - 0x7fff8a3a0fcf com.apple.vImage (8.0 - 8.0) &lt;1183FE6A-FDB6-3B3B-928D-50C7909F2308&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff8a3a1000 - 0x7fff8a3bcff7 libCRFSuite.dylib (34) &lt;D64842BE-7BD4-3D0C-9842-1D202F7C2A51&gt; /usr/lib/libCRFSuite.dylib 0x7fff8a563000 - 0x7fff8a579ff7 com.apple.CoreMediaAuthoring (2.2 - 951) &lt;C3E7D4C1-400D-34FA-9FE1-8C68C03CE969&gt; /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring 0x7fff8a57a000 - 0x7fff8a57afff com.apple.Carbon (154 - 157) &lt;9BF51672-1684-3FDE-A561-FC59A2864EF8&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff8a57e000 - 0x7fff8a5b6fff libsystem_network.dylib (412.20.3) &lt;589A5F67-BE2A-3245-A181-0ECC9B53EB00&gt; /usr/lib/system/libsystem_network.dylib 0x7fff8a5b7000 - 0x7fff8a5e7ff3 com.apple.CoreAVCHD (5.7.5 - 5750.4.1) &lt;3E51287C-E97D-3886-BE88-8F6872400876&gt; /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD 0x7fff8a65c000 - 0x7fff8a8dbff7 com.apple.CoreData (111 - 526.3) &lt;5A27E0D8-5E5A-335B-B3F6-2601C7B976FA&gt; /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff8a8dc000 - 0x7fff8a914fff com.apple.RemoteViewServices (2.0 - 99) &lt;C9A62691-B0D9-34B7-B71C-A48B5F4DC553&gt; /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff8a9d0000 - 0x7fff8aaf4ff7 com.apple.LaunchServices (644.56 - 644.56) &lt;20AABB1C-9319-3E4D-A024-51B0DD5FCD3B&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff8aaf5000 - 0x7fff8acdaff7 libicucore.A.dylib (531.48) &lt;3CD34752-B1F9-31D2-865D-B5B0F0BE3111&gt; /usr/lib/libicucore.A.dylib 0x7fff8acdb000 - 0x7fff8ae0dff7 com.apple.MediaControlSender (2.0 - 215.18) &lt;86E901A7-64C3-3D2C-BBD4-E385405831D3&gt; /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender 0x7fff8ae0e000 - 0x7fff8ae10fff com.apple.SecCodeWrapper (4.0 - 238.20.2) &lt;C6C126F0-6BF4-3E29-A9B7-7BAD8D17EE4F&gt; /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper 0x7fff8ae4b000 - 0x7fff8ae4dff7 com.apple.securityhi (9.0 - 55006) &lt;5DB5773C-FC07-302C-98FE-4B80D88D481A&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff8b794000 - 0x7fff8bbc4fff com.apple.vision.FaceCore (3.1.6 - 3.1.6) &lt;C3B823AA-C261-37D3-B4AC-C59CE91C8241&gt; /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff8bcee000 - 0x7fff8bd49fe7 libTIFF.dylib (1237) &lt;6C8BBCA3-C233-3941-ACF9-F06C5E6EE2E6&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff8be7f000 - 0x7fff8be80fff libsystem_secinit.dylib (18) &lt;581DAD0F-6B63-3A48-B63B-917AF799ABAA&gt; /usr/lib/system/libsystem_secinit.dylib 0x7fff8be81000 - 0x7fff8be84fff com.apple.IOSurface (97.4 - 97.4) &lt;AE11CFBC-4D46-30F3-BEEC-4C8131079391&gt; /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff8be85000 - 0x7fff8bf79fff libFontParser.dylib (134.2) &lt;9F57B025-AB9C-31DD-9D54-2D7AB1298885&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x7fff8bfb0000 - 0x7fff8bfc9ff7 com.apple.CFOpenDirectory (10.10 - 187) &lt;790ED527-EFD2-3EA6-8C97-A8C04E96EBA7&gt; /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff8c072000 - 0x7fff8c1d9ffb com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) &lt;5678FC94-456A-3F5F-BA9A-10EB6E462997&gt; /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff8c1da000 - 0x7fff8c202fff libsystem_info.dylib (459.20.1) &lt;AEB3FE62-4763-3050-8352-D6F9AF961AE6&gt; /usr/lib/system/libsystem_info.dylib 0x7fff8c203000 - 0x7fff8c205fff libsystem_sandbox.dylib (358.20.5) &lt;4CF77128-6BE0-3958-B646-707FA9CE61B2&gt; /usr/lib/system/libsystem_sandbox.dylib 0x7fff8c213000 - 0x7fff8c254fff libGLU.dylib (11.1.2) &lt;4C54F0D1-2ADC-38A0-92D1-F479E9B99355&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff8c25f000 - 0x7fff8c289ff7 libdispatch.dylib (442.1.4) &lt;502CF32B-669B-3709-8862-08188225E4F0&gt; /usr/lib/system/libdispatch.dylib 0x7fff8c28a000 - 0x7fff8c2caff7 libGLImage.dylib (11.1.2) &lt;260A4BF3-DC45-369C-A0CD-B667F9D17179&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff8c2f2000 - 0x7fff8c387ff7 com.apple.ColorSync (4.9.0 - 4.9.0) &lt;9150C2B7-2E6E-3509-96EA-7B3F959F049E&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff8c3b5000 - 0x7fff8c3cfff7 libextension.dylib (55.2) &lt;3BB019CA-199A-36AC-AA22-14B562138545&gt; /usr/lib/libextension.dylib 0x7fff8c561000 - 0x7fff8c568ff7 libCGCMS.A.dylib (779.11) &lt;5D33FF8C-AC74-3B7B-A602-4AA470FEAF79&gt; /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib 0x7fff8c575000 - 0x7fff8c5f9fff com.apple.PerformanceAnalysis (1.0 - 1) &lt;599AED3E-B689-3C40-8B91-93AD36C97658&gt; /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff8c5fa000 - 0x7fff8c617fff libsystem_kernel.dylib (2782.20.48) &lt;EAFD7BD0-0C30-3E7D-9528-F9916BA0167C&gt; /usr/lib/system/libsystem_kernel.dylib 0x7fff8c760000 - 0x7fff8c761fff libDiagnosticMessagesClient.dylib (100) &lt;2EE8E436-5CDC-34C5-9959-5BA218D507FB&gt; /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff8c762000 - 0x7fff8c769ff7 libcompiler_rt.dylib (35) &lt;BF8FC133-EE10-3DA6-9B90-92039E28678F&gt; /usr/lib/system/libcompiler_rt.dylib 0x7fff8ca02000 - 0x7fff8ca04ff7 libsystem_coreservices.dylib (9) &lt;41B7C578-5A53-31C8-A96F-C73E030B0938&gt; /usr/lib/system/libsystem_coreservices.dylib 0x7fff8ca05000 - 0x7fff8ca1aff7 com.apple.AppContainer (4.0 - 238.20.2) &lt;2AA2EF49-9F38-31F6-8B08-8CC7C26F57F3&gt; /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer 0x7fff8ca35000 - 0x7fff8ca43ff7 com.apple.opengl (11.1.2 - 11.1.2) &lt;864B35BF-1E76-382B-8D5F-38C7282621E6&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff8ca76000 - 0x7fff8cb18fff com.apple.Bluetooth (4.3.4 - 4.3.4f4) &lt;A1120885-F31B-3C13-9B0D-2589F391CC7A&gt; /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff8cb2b000 - 0x7fff8cb45ff3 com.apple.Ubiquity (1.3 - 313) &lt;DF56A657-CC6E-3BE2-86A0-71F07127724C&gt; /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity 0x7fff8cb46000 - 0x7fff8cb63ffb libresolv.9.dylib (57) &lt;26B38E61-298A-3C3A-82C1-3B5E98AD5E29&gt; /usr/lib/libresolv.9.dylib 0x7fff8cb64000 - 0x7fff8cb7cff7 libexpat.1.dylib (12) &lt;C5FE8836-E277-3162-9D15-6735321CB2C6&gt; /usr/lib/libexpat.1.dylib 0x7fff8cb7d000 - 0x7fff8cbdcfff com.apple.AE (681.2 - 681.2) &lt;181B3B06-2DC6-3E4D-B44A-2551C5E9CF6F&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff8cbfa000 - 0x7fff8cc34ffb com.apple.DebugSymbols (115 - 115) &lt;6F03761D-7C3A-3C80-8031-AA1C1AD7C706&gt; /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x7fff8cc35000 - 0x7fff8ccb3fff com.apple.CoreServices.OSServices (640.4 - 640.4) &lt;20121A5E-7AB5-3624-8CF0-3562F97C8A95&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff8dcbb000 - 0x7fff8dcbbfff com.apple.CoreServices (62 - 62) &lt;C69DA8A7-B536-34BF-A93F-1C170E2C6D58&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff8dcc8000 - 0x7fff8dcf3ff3 libarchive.2.dylib (30) &lt;8CBB4416-EBE9-3574-8ADC-44655D245F39&gt; /usr/lib/libarchive.2.dylib 0x7fff8dcf4000 - 0x7fff8dd43ff7 libstdc++.6.dylib (104.1) &lt;803F6AC8-87DC-3E24-9E80-729B551F6FFF&gt; /usr/lib/libstdc++.6.dylib 0x7fff8e25a000 - 0x7fff8e262ffb libcopyfile.dylib (118.1.2) &lt;0C68D3A6-ACDD-3EF3-991A-CC82C32AB836&gt; /usr/lib/system/libcopyfile.dylib 0x7fff8e263000 - 0x7fff8e28bfff libxpc.dylib (559.20.9) &lt;D35D0DB2-D7BD-3BE4-8378-062BFE545E1D&gt; /usr/lib/system/libxpc.dylib 0x7fff8e2b5000 - 0x7fff8e2b8ff7 com.apple.Mangrove (1.0 - 1) &lt;6326024D-5C8D-3F59-9468-ACA1E01BC70C&gt; /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove 0x7fff8e335000 - 0x7fff8e351ff7 libsystem_malloc.dylib (53.1.1) &lt;19BCC257-5717-3502-A71F-95D65AFA861B&gt; /usr/lib/system/libsystem_malloc.dylib 0x7fff8e45f000 - 0x7fff8e461ffb libCGXType.A.dylib (779.11) &lt;51607E77-F183-3CC2-A78C-238AFBDF6262&gt; /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib 0x7fff8e462000 - 0x7fff8e554ff7 libiconv.2.dylib (42) &lt;2A06D02F-8B76-3864-8D96-64EF5B40BC6C&gt; /usr/lib/libiconv.2.dylib 0x7fff8e583000 - 0x7fff8e5bcfff com.apple.AirPlaySupport (2.0 - 215.18) &lt;6AF8E973-3643-3FEE-AA8F-541B9F093EEE&gt; /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySupport 0x7fff8e5dc000 - 0x7fff8e5ddffb libremovefile.dylib (35) &lt;3485B5F4-6CE8-3C62-8DFD-8736ED6E8531&gt; /usr/lib/system/libremovefile.dylib 0x7fff8e5de000 - 0x7fff8e64fffb com.apple.ApplicationServices.ATS (360 - 375.2) &lt;2338AF23-528F-359A-847F-8B04E49E2B84&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff8e7b8000 - 0x7fff8e80cfff libc++.1.dylib (120) &lt;1B9530FD-989B-3174-BB1C-BDC159501710&gt; /usr/lib/libc++.1.dylib 0x7fff8e80d000 - 0x7fff8e883fe7 libcorecrypto.dylib (233.1.2) &lt;E1789801-3985-3949-B736-6B3378873301&gt; /usr/lib/system/libcorecrypto.dylib 0x7fff8e886000 - 0x7fff8e8b8ff7 libTrueTypeScaler.dylib (134.2) &lt;8F72EF2F-0BC8-3BEC-8E1C-17F2C4480AE2&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib 0x7fff8e8b9000 - 0x7fff8e94dfff com.apple.ink.framework (10.9 - 213) &lt;8E029630-1530-3734-A446-13353F0E7AC5&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff8e99b000 - 0x7fff8e9bffef libJPEG.dylib (1237) &lt;6DB10054-5C64-32FB-83FD-E102A8F73258&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff8e9c0000 - 0x7fff8e9c9ff7 libsystem_notify.dylib (133.1.1) &lt;61147800-F320-3DAA-850C-BADF33855F29&gt; /usr/lib/system/libsystem_notify.dylib 0x7fff8ea1a000 - 0x7fff8ea20ff7 com.apple.XPCService (2.0 - 1) &lt;AA4A5393-1F5D-3465-A417-0414B95DC052&gt; /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService 0x7fff8eb25000 - 0x7fff8eb3effb com.apple.openscripting (1.4 - 162.1) &lt;E6B42781-A556-355A-8A49-82A8D2B347FF&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff8eb3f000 - 0x7fff8eb4fff7 libbsm.0.dylib (34) &lt;A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB&gt; /usr/lib/libbsm.0.dylib 0x7fff8eb59000 - 0x7fff8ebb3ff7 com.apple.LanguageModeling (1.0 - 1) &lt;ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F&gt; /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff8ebb4000 - 0x7fff8ebbffff libGL.dylib (11.1.2) &lt;BF99CC65-215A-3C7D-87D7-3F7EE6E9B3DD&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff8ec72000 - 0x7fff8ec73fff liblangid.dylib (117) &lt;B54A4AA0-2E53-3671-90F5-AFF711C0EB9E&gt; /usr/lib/liblangid.dylib 0x7fff8ec74000 - 0x7fff8ef5bffb com.apple.CoreServices.CarbonCore (1108.6 - 1108.6) &lt;8953580E-7857-33B2-AA64-98296830D3A8&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff8ef5f000 - 0x7fff8ef79ff7 com.apple.Kerberos (3.0 - 1) &lt;7760E0C2-A222-3709-B2A6-B692D900CEB1&gt; /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff8ef7a000 - 0x7fff8efa2fff libRIP.A.dylib (779.11) &lt;88434DA0-B6B8-304A-9DC0-41D3947E8734&gt; /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib 0x7fff8efa3000 - 0x7fff8f01bff7 com.apple.SystemConfiguration (1.14 - 1.14) &lt;06A8405D-53BA-30A9-BA8A-222099176091&gt; /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff8f01c000 - 0x7fff8f042fff com.apple.ChunkingLibrary (2.1 - 163.6) &lt;29D4CB95-42EF-34C6-8182-BDB6F7BB1E79&gt; /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x7fff8f043000 - 0x7fff8f06efff libc++abi.dylib (125) &lt;88A22A0F-87C6-3002-BFBA-AC0F2808B8B9&gt; /usr/lib/libc++abi.dylib 0x7fff8f06f000 - 0x7fff8f55ffff com.apple.MediaToolbox (1.0 - 1562.235) &lt;9813E9A6-5BD6-3E56-9D20-0023703D5096&gt; /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 0x7fff8f560000 - 0x7fff8f56bfff libcommonCrypto.dylib (60061) &lt;D381EBC6-69D8-31D3-8084-5A80A32CB748&gt; /usr/lib/system/libcommonCrypto.dylib 0x7fff8f603000 - 0x7fff8f60afff com.apple.NetFS (6.0 - 4.0) &lt;1581D25F-CC07-39B0-90E8-5D4F3CF84EBA&gt; /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff8f60b000 - 0x7fff8f60bfff com.apple.ApplicationServices (48 - 48) &lt;5BF7910B-C328-3BF8-BA4F-CE52B574CE01&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff8f61b000 - 0x7fff8f637fff com.apple.GenerationalStorage (2.0 - 209.11) &lt;9FF8DD11-25FB-3047-A5BF-9415339B3EEC&gt; /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x7fff8f638000 - 0x7fff8f63afff libsystem_configuration.dylib (699.1.5) &lt;20F3B077-179D-3CB0-A3C1-C8602D53B4DB&gt; /usr/lib/system/libsystem_configuration.dylib 0x7fff8f63b000 - 0x7fff8f63fff7 libGIF.dylib (1237) &lt;8A40FED5-FA90-3E76-A359-CD974C43A962&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff8f65a000 - 0x7fff8f665ff7 com.apple.speech.synthesis.framework (5.3.3 - 5.3.3) &lt;A5640275-E2A6-3856-95EF-5F0DC440B10C&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff8f6e2000 - 0x7fff8f6f4ff7 com.apple.ImageCapture (9.0 - 9.0) &lt;7FB65DD4-56B5-35C4-862C-7A2DED991D1F&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff8f6f5000 - 0x7fff8f706fff libsystem_coretls.dylib (35.20.2) &lt;6084A531-2523-39F8-B030-811FA1A32FB5&gt; /usr/lib/system/libsystem_coretls.dylib 0x7fff8f707000 - 0x7fff8f709fff libRadiance.dylib (1237) &lt;9B048776-53BB-3947-8ECE-9DDA804C86B2&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff8fc89000 - 0x7fff8fc94fff com.apple.AppSandbox (4.0 - 238.20.2) &lt;BEFAB7F2-B189-391B-9B2D-FFF3EE2B77B6&gt; /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox 0x7fff8fc95000 - 0x7fff8fc9dff3 com.apple.CoreServices.FSEvents (1210.20.1 - 1210.20.1) &lt;84F79D3E-7B5E-3C93-8479-35794A3F125E&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff8fd49000 - 0x7fff8fd4efff com.apple.DiskArbitration (2.6 - 2.6) &lt;0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9&gt; /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff8fd4f000 - 0x7fff8fd58fff libGFXShared.dylib (11.1.2) &lt;0BAF2EA8-3BC4-3BF4-ABB6-A6E0A1F3F6A5&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff8fd59000 - 0x7fff900c4fff com.apple.VideoToolbox (1.0 - 1562.235) &lt;0E996B8C-BE1C-3749-ACCA-DACBC89AFABB&gt; /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 0x7fff904a3000 - 0x7fff904adff7 com.apple.NetAuth (5.2 - 5.2) &lt;2BBD749A-8E18-35B8-8E48-A90347C1CCA7&gt; /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff904ae000 - 0x7fff907dffff com.apple.Foundation (6.9 - 1153.20) &lt;F0FF3A5D-C5B7-34A1-9319-DE1EF928E58E&gt; /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff907e9000 - 0x7fff90803fff com.apple.AppleVPAFramework (1.4.4 - 1.4.4) &lt;5C37DBD3-EB91-3A58-BD2F-E0CD533DE467&gt; /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA 0x7fff90b23000 - 0x7fff9135ffe3 com.apple.CoreGraphics (1.600.0 - 779.11) &lt;DC15AADD-387C-348E-84F0-1C8BAAB1B567&gt; /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff91360000 - 0x7fff9136dff7 libbz2.1.0.dylib (36) &lt;2DF83FBC-5C08-39E1-94F5-C28653791B5F&gt; /usr/lib/libbz2.1.0.dylib 0x7fff9136e000 - 0x7fff91370fff libCVMSPluginSupport.dylib (11.1.2) &lt;6EFEC4A6-2EAC-3C27-820E-C28BE71B9FCB&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff91374000 - 0x7fff91374ff7 liblaunch.dylib (559.20.9) &lt;FA89A113-696E-3271-8FE1-A0D7324E8481&gt; /usr/lib/system/liblaunch.dylib 0x7fff91375000 - 0x7fff9137dfff libMatch.1.dylib (24) &lt;C917279D-33C2-38A8-9BDD-18F3B24E6FBD&gt; /usr/lib/libMatch.1.dylib 0x7fff9137e000 - 0x7fff913eafff com.apple.framework.CoreWLAN (5.0 - 500.35.2) &lt;5E228544-77A9-3AA5-8355-E8F6626F50E7&gt; /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff913eb000 - 0x7fff9145afff com.apple.SearchKit (1.4.0 - 1.4.0) &lt;80883BD1-C9BA-3794-A20E-476F94DD89A9&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff9145b000 - 0x7fff91460ff7 com.apple.MediaAccessibility (1.0 - 61) &lt;00A3E0B6-79AC-387E-B282-AADFBD5722F6&gt; /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility 0x7fff9149e000 - 0x7fff914ebff7 com.apple.print.framework.PrintCore (10.3 - 451.1) &lt;DE992474-0841-38A1-B4F6-46D653E454D5&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff91526000 - 0x7fff918beff7 com.apple.CoreFoundation (6.9 - 1153.18) &lt;5C0892B8-9691-341F-9279-CA3A74D59AA0&gt; /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 79 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 2256209 thread_create: 0 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=275.0M resident=170.9M(62%) swapped_out_or_unallocated=104.1M(38%) Writable regions: Total=482.3M written=228.5M(47%) resident=289.3M(60%) swapped_out=24K(0%) unallocated=193.1M(40%) REGION TYPE VIRTUAL =========== ======= ATS (font support) 32.0M ATS (font support) (reserved) 4K reserved VM address space (unallocated) Activity Tracing 2048K CG shared images 144K CoreServices 64K CoreUI image data 28K Dispatch continuations 16.0M Kernel Alloc Once 8K MALLOC 133.3M MALLOC (admin) 32K Mach message 4K Memory Tag 252 30.4M Memory Tag 255 641.7M Memory Tag 255 (reserved) 256K reserved VM address space (unallocated) STACK GUARD 56.1M Stack 52.4M VM_ALLOCATE 70.1M __DATA 20.5M __IMAGE 528K __LINKEDIT 85.4M __TEXT 189.6M __UNICODE 552K mapped file 434.7M shared memory 4K =========== ======= TOTAL 1.7G TOTAL, minus reserved VM space 1.7G </code></pre></div>
<p dir="auto">I have selected jquery.min.js (84Kb) in Tree View and Atom is hangs. But jquery.mobile.min.css (1 line 200Kb) does not cause hangs.<br> Version: 0.188.0</p>
0
<h3 dir="auto">Expected results</h3> <p dir="auto">I want create a role only the given dashboard can be shown to him, but I can only limit his access on datasource. In another word, I want to create 2 or more different dashboards based on the same datasource, and a specified user can only see one of them. But I can't do that based on the existing security model. Is there any suggestions?</p>
<p dir="auto">Make sure these boxes are checked before submitting your issue - thank you!</p> <ul dir="auto"> <li>[ ok] I have checked the superset logs for python stacktraces and included it here as text if any</li> <li>[ ok] I have reproduced the issue with at least the latest released version of superset</li> <li>[ ok] I have checked the issue tracker for the same issue and I haven't found one similar</li> </ul> <p dir="auto">Now dashboard permissions are based on database and datasource to control, I would like to control the permissions on the dashboard alone,like that:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/19641641/20999713/9099ebac-bd51-11e6-811c-a0c1a71ed213.png"><img src="https://cloud.githubusercontent.com/assets/19641641/20999713/9099ebac-bd51-11e6-811c-a0c1a71ed213.png" alt="a" style="max-width: 100%;"></a><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/19641641/20999716/922704f0-bd51-11e6-97a1-7505e523bf34.png"><img src="https://cloud.githubusercontent.com/assets/19641641/20999716/922704f0-bd51-11e6-97a1-7505e523bf34.png" alt="b" style="max-width: 100%;"></a></p> <h3 dir="auto">Superset version</h3> <p dir="auto">14.1</p> <h3 dir="auto">Expected results</h3> <p dir="auto">succeed</p> <h3 dir="auto">Actual results</h3> <p dir="auto">succeed</p> <h3 dir="auto">Steps to reproduce</h3> <p dir="auto">New feature.</p>
1
<p dir="auto">Hello team</p> <p dir="auto">I have created a Mac app using electron framework (electron-packager) and embedded it within my another Mac app (non-electron).</p> <p dir="auto">I have already added sandbox entitlement in my electron mac app.</p> <p dir="auto">I'm trying to get our non-AppStore version of my main app through Apples notarization.</p> <p dir="auto">It fails for the notarization process (<a href="https://help.apple.com/xcode/mac/current/#/dev88332a81e" rel="nofollow">https://help.apple.com/xcode/mac/current/#/dev88332a81e</a>)<br> because it missed the 'runtime' flag during codesign for the Helper App.</p> <p dir="auto">Therefore I need to create a Mac app which :</p> <ol dir="auto"> <li>is compatible with app store submission</li> <li>can be signed as runtime (seems to be equal to hardened runtime : <a href="https://help.apple.com/xcode/mac/current/#/devf87a2ac8f" rel="nofollow">https://help.apple.com/xcode/mac/current/#/devf87a2ac8f</a>) for non-AppStore submission and notarization.</li> </ol> <p dir="auto">Help would be appreciated.</p> <p dir="auto">Thanka<br> Pooja</p>
<p dir="auto">I have a question<br> I want my application support mac os native share extension .<br> how to do it</p>
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>: no</li> <li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04)</strong>: Mac 10.13.4</li> <li><strong>TensorFlow installed from (source or binary)</strong>: binary (tensorflow-1.8.0-cp36-cp36m-macosx_10_11_x86_64.whl)</li> <li><strong>TensorFlow version (use command below)</strong>: 1.8.0</li> <li><strong>Python version</strong>: 3.6.4</li> <li><strong>Bazel version (if compiling from source)</strong>: NA</li> <li><strong>GCC/Compiler version (if compiling from source)</strong>: NA</li> <li><strong>CUDA/cuDNN version</strong>: NA</li> <li><strong>GPU model and memory</strong>: NA</li> <li><strong>Exact command to reproduce</strong>: pip3 install tensorflow &amp;&amp; python -c "import tensorflow as tf; print(tf.GIT_VERSION, tf.VERSION)"</li> </ul> <h3 dir="auto">Describe the problem</h3> <p dir="auto">I tried to install tensorflow and the module does not load. Same problem for all version up to 1.5.0 which then works fine.<br> (with version 1.5.0)</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" python -c &quot;import tensorflow as tf; print(tf.GIT_VERSION, tf.VERSION)&quot; /Users/marco/coding/crypto/_python_env/_mac/nn/lib/python3.6/site-packages/h5py/__init__.py:36: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated. In future, it will be treated as `np.float64 == np.dtype(float).type`. from ._conv import register_converters as _register_converters v1.5.0-0-g37aa430d84 1.5.0"><pre class="notranslate"><code class="notranslate"> python -c "import tensorflow as tf; print(tf.GIT_VERSION, tf.VERSION)" /Users/marco/coding/crypto/_python_env/_mac/nn/lib/python3.6/site-packages/h5py/__init__.py:36: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated. In future, it will be treated as `np.float64 == np.dtype(float).type`. from ._conv import register_converters as _register_converters v1.5.0-0-g37aa430d84 1.5.0 </code></pre></div> <h3 dir="auto">Source code / logs</h3> <p dir="auto">I run a verbose import as attached for the latest version (<code class="notranslate">python3 -v -m tensorflow 2&amp;&gt; verbose_import.txt</code>).<br> <a href="https://github.com/tensorflow/tensorflow/files/1976200/verbose_import.txt">verbose_import.txt</a></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
<p dir="auto">Hi!</p> <p dir="auto">I'm getting an initial blink while using ReactCSSTransitionGroup because the added element does not get the -enter class applied when it's attached to the DOM, even if it gets it immediately after.</p> <p dir="auto">For what I can see, the ReactCSSTransitionGroupChild.componentWillEnter is queued and dispatched after the action that adds the element to the DOM, which causes this behavior.</p> <p dir="auto">Is this a know issue? Wouldn't it make sense for the element to be added with the -enter class at the moment it's inserted?</p> <p dir="auto">Thanks!</p>
<p dir="auto">Hello there,</p> <p dir="auto">I am playing with React transition</p> <p dir="auto">I noticed that the <strong>-enter</strong> classe is added only after the element has been inserted into the dom.</p> <p dir="auto"><a href="https://github.com/facebook/react/blob/master/src/addons/transitions/ReactTransitionableChild.js#L147-L150">https://github.com/facebook/react/blob/master/src/addons/transitions/ReactTransitionableChild.js#L147-L150</a></p> <p dir="auto">I thought the active class was applied when the component was mounted into the dom.</p> <p dir="auto">Here is a small demo: <a href="http://jsfiddle.net/437Us/1/" rel="nofollow">http://jsfiddle.net/437Us/1/</a><br> I am using componentWillUpdate to make sure the class is applied directly. If you remove it, and use the same<br> transition mechanism on a more complex layout sometime you will see the page flashing into the screen before the transition starts</p>
1
<p dir="auto">Would be nice to be able to open recent projects or window configurations instead of having to digging and adding a dir to a window every time I decide to close it and re open it later.</p>
<p dir="auto">I would like to be able to find files or folders that I have recently opened in previous editing sessions. On Windows this is usually done under the File menu. For example: File &gt; Recent Files &gt; (displays a sub menu of top 10 most recently used files in descending order).</p> <p dir="auto">File</p> <blockquote> <p dir="auto">Recent Files<br> &gt; (top 10 most recent files)<br> Recent Folders<br> &gt; (top 10 most recent folders)</p> </blockquote>
1
<p dir="auto"><a href="https://s3.amazonaws.com/archive.travis-ci.org/jobs/35977365/log.txt" rel="nofollow">https://s3.amazonaws.com/archive.travis-ci.org/jobs/35977365/log.txt</a></p>
<p dir="auto">Configurable, using labels to route traffic.</p> <p dir="auto">From discussion: <a href="https://groups.google.com/d/msg/google-containers/frOLMyNl5U4/W5_DQUL933IJ" rel="nofollow">https://groups.google.com/d/msg/google-containers/frOLMyNl5U4/W5_DQUL933IJ</a></p> <blockquote> <blockquote> <p dir="auto">I suppose, if we had some sort of dynamic router based on label queries, you could make that work for your needs with a bit of configuration. I'm not sure if there's really a need for that once DNS naming is set up, though.</p> </blockquote> <p dir="auto">I think you're going to want to incorporate some sort of http/s router or at least have a suggested means of configuring one. It seems to be one of the most obvious use cases for Kubernetes.</p> </blockquote> <p dir="auto">Like I said, I'm not sure this is needed if there's a good load balancer and DNS name resolution, but filing this for tracking the discussion.</p>
0
<p dir="auto"><strong>Migrated issue, originally created by Michael Bayer (<a href="https://github.com/zzzeek">@zzzeek</a>)</strong></p> <p dir="auto">right now functions like startswith() and endswith() rely upon an in-python string concatenation of "%" with the given value. this prevents the usage of bind parameters and other non-literal expressions. a better approach would be to move the string concatenation into the database layer, so that instead of producing:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="where somecol LIKE &quot;%foo&quot;"><pre class="notranslate"><code class="notranslate">where somecol LIKE "%foo" </code></pre></div> <p dir="auto">we instead produce:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="where somecol LIKE '%' + 'foo'"><pre class="notranslate"><code class="notranslate">where somecol LIKE '%' + 'foo' </code></pre></div> <p dir="auto">but not every database supports "+" as a concatenation operator. so a <code class="notranslate">ConcatenationClause</code> would be needed which each dialect can produce as it likes, such as oracle which would produce <code class="notranslate">CONCAT(x, y)</code> for example.</p> <hr> <p dir="auto">Attachments: <a href="../wiki/imported_issue_attachments/475/py">py</a></p>
<p dir="auto"><strong>Migrated issue, originally created by Anonymous</strong></p> <p dir="auto">Trying out <code class="notranslate">sqlalchemy</code> for the first time, I notice that autoloading the schema from my PostgresQL 8.1 database takes forever: loading a single table takes more than a minute!</p> <p dir="auto">With a little investigation, I found that the query executed is</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="SELECT table_constraints.constraint_name AS table_constraints_constraint_name, table_constraints.constraint_type AS table_constraints_constraint_type, table_constraints.table_name AS table_constraints_table_name, key_column_usage.table_schema AS key_column_usage_table_schema, key_column_usage.table_name AS key_column_usage_table_name, key_column_usage.column_name AS key_column_usage_column_name, key_column_usage.constraint_name AS key_column_usage_constraint_name, constraint_column_usage.table_schema AS constraint_column_usage_table_schema, constraint_column_usage.table_name AS constraint_column_usage_table_name, constraint_column_usage.column_name AS constraint_column_usage_column_name, constraint_column_usage.constraint_name AS constraint_column_usage_constraint_name FROM information_schema.table_constraints, information_schema.key_column_usage, information_schema.constraint_column_usage WHERE ((key_column_usage.constraint_name = constraint_column_usage.constraint_name AND constraint_column_usage.constraint_name = table_constraints.constraint_name) AND table_constraints.table_name = %(table_constraints_table_name)s) AND table_constraints.table_schema = %(table_constraints_table_schema)s"><pre class="notranslate"><code class="notranslate">SELECT table_constraints.constraint_name AS table_constraints_constraint_name, table_constraints.constraint_type AS table_constraints_constraint_type, table_constraints.table_name AS table_constraints_table_name, key_column_usage.table_schema AS key_column_usage_table_schema, key_column_usage.table_name AS key_column_usage_table_name, key_column_usage.column_name AS key_column_usage_column_name, key_column_usage.constraint_name AS key_column_usage_constraint_name, constraint_column_usage.table_schema AS constraint_column_usage_table_schema, constraint_column_usage.table_name AS constraint_column_usage_table_name, constraint_column_usage.column_name AS constraint_column_usage_column_name, constraint_column_usage.constraint_name AS constraint_column_usage_constraint_name FROM information_schema.table_constraints, information_schema.key_column_usage, information_schema.constraint_column_usage WHERE ((key_column_usage.constraint_name = constraint_column_usage.constraint_name AND constraint_column_usage.constraint_name = table_constraints.constraint_name) AND table_constraints.table_name = %(table_constraints_table_name)s) AND table_constraints.table_schema = %(table_constraints_table_schema)s </code></pre></div> <p dir="auto">Effectively, this query takes lot of time to execute (<code class="notranslate">PgAdmin3</code> says 85803 ms, and the server is a dual amd64), and the engine is not even able to "explain" it, giving the error</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ERROR: record type has not been registered"><pre class="notranslate"><code class="notranslate">ERROR: record type has not been registered </code></pre></div> <p dir="auto">So, I managed to produce an equivalent query using JOINs instead, like the following:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="SELECT table_constraints.constraint_name AS table_constraints_constraint_name, ... FROM information_schema.table_constraints JOIN information_schema.constraint_column_usage ON constraint_column_usage.constraint_name = table_constraints.constraint_name JOIN information_schema.key_column_usage ON key_column_usage.constraint_name = constraint_column_usage.constraint_name WHERE table_constraints.table_name = %(table_constraints_table_name)s AND table_constraints.table_schema = %(table_constraints_table_schema)s"><pre class="notranslate"><code class="notranslate">SELECT table_constraints.constraint_name AS table_constraints_constraint_name, ... FROM information_schema.table_constraints JOIN information_schema.constraint_column_usage ON constraint_column_usage.constraint_name = table_constraints.constraint_name JOIN information_schema.key_column_usage ON key_column_usage.constraint_name = constraint_column_usage.constraint_name WHERE table_constraints.table_name = %(table_constraints_table_name)s AND table_constraints.table_schema = %(table_constraints_table_schema)s </code></pre></div> <p dir="auto">And this is <strong>fast</strong>: 356 ms!</p> <hr> <p dir="auto">Attachments: <a href="../wiki/imported_issue_attachments/60/test_alchemy.dump.bz2">test_alchemy.dump.bz2</a> | <a href="../wiki/imported_issue_attachments/60/queries.sql">queries.sql</a> | <a href="../wiki/imported_issue_attachments/60/sqla.diff">sqla.diff</a> | <a href="../wiki/imported_issue_attachments/60/constraints_by_table.diff">constraints_by_table.diff</a></p>
0
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=idcmp" rel="nofollow">JAmes Atwill</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-8927?redirect=false" rel="nofollow">SPR-8927</a></strong> and commented</p> <p dir="auto">Hello, we're working on some tooling to ensure none of our dependencies are GPL. To do this, we have a maven plugin that walks through projects and looks at the &lt;license/&gt; block of the projects to ensure they're whitelisted.</p> <p dir="auto">Many projects don't have &lt;license/&gt; blocks, but they're super quick to add.</p> <p dir="auto">Estimate assumes doing all poms in bulk manually and waiting for a CI to push out a new snapshot.</p> <hr> <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/87a021d5c9b25d2e7785bbecbd4e668b2091d4c3/hovercard" href="https://github.com/spring-projects/spring-framework/commit/87a021d5c9b25d2e7785bbecbd4e668b2091d4c3"><tt>87a021d</tt></a></p> <p dir="auto">1 votes, 1 watchers</p>
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=sslavic" rel="nofollow">Stevo Slavić</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-5848?redirect=false" rel="nofollow">SPR-5848</a></strong> and commented</p> <p dir="auto">Please include license info in the project maven artifacts pom. Since project is licensed under Apache License 2.0 adding following to the pom should do:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;licenses&gt; &lt;license&gt; &lt;name&gt;The Apache Software License, Version 2.0&lt;/name&gt; &lt;url&gt;http://www.apache.org/licenses/LICENSE-2.0.txt&lt;/url&gt; &lt;distribution&gt;repo&lt;/distribution&gt; &lt;/license&gt; &lt;/licenses&gt;"><pre class="notranslate"><code class="notranslate">&lt;licenses&gt; &lt;license&gt; &lt;name&gt;The Apache Software License, Version 2.0&lt;/name&gt; &lt;url&gt;http://www.apache.org/licenses/LICENSE-2.0.txt&lt;/url&gt; &lt;distribution&gt;repo&lt;/distribution&gt; &lt;/license&gt; &lt;/licenses&gt; </code></pre></div> <p dir="auto">All this will improve how dependency to this project artifacts is treated by all sorts of maven plug-ins and tools, like project info dependency report plugin, maven jboss license plugin, etc.</p> <p dir="auto">This should be applied to all sub-frameworks of spring framework as well. Maybe a spring parent module could be created for reuse, or org.apache:apache could be set as parent.</p> <hr> <p dir="auto"><strong>Affects:</strong> 3.0 M3</p>
1
<h4 dir="auto">Challenge Name</h4> <p dir="auto">All challenges</p> <h4 dir="auto">Issue Description</h4> <p dir="auto">I go to a challenge. Try to add code to the last couple of lines. The cursor will not go any farther until I hit return and go back up a few lines. The cursor skips over a whole line when pressing return.</p> <h4 dir="auto">Browser Information</h4> <p dir="auto">Chrome Version 51.0.2704.103 (64-bit)<br> Mac OS X 10.11.5<br> Desktop</p> <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">No screenshot available. Would need a gif</p>
<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">I am having an issue with some unexpected behaviour with the <code class="notranslate">scipy.interpolate.interp1d</code> method for the following kinds:</p> <ul dir="auto"> <li><code class="notranslate">kind= ['nearest','linear', 'previous' and 'next']</code> (i.e. kinds not involving spline interpolation according to the doc)</li> </ul> <p dir="auto">When providing non-strictly monotonic <code class="notranslate">x</code> values, unexpected results are returned rather than the method failing:</p> <h3 dir="auto">Reproducing code example:</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import numpy as np from scipy.interpolate import interp1d x = np.array([0, 1, 1]) y = np.array([0, 1, 0]) for kind in ['nearest', 'linear', 'previous', 'next']: f = interp1d(x,y,kind=kind) print(&quot;{k}: &quot;.format(k=kind), f(x))"><pre class="notranslate"><code class="notranslate">import numpy as np from scipy.interpolate import interp1d x = np.array([0, 1, 1]) y = np.array([0, 1, 0]) for kind in ['nearest', 'linear', 'previous', 'next']: f = interp1d(x,y,kind=kind) print("{k}: ".format(k=kind), f(x)) </code></pre></div> <h3 dir="auto">Output</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="nearest: [0. 1. 1.] linear: [0. 1. 1.] previous: [0. 0. 0.] next: [0. 1. 1.]"><pre class="notranslate"><code class="notranslate">nearest: [0. 1. 1.] linear: [0. 1. 1.] previous: [0. 0. 0.] next: [0. 1. 1.] </code></pre></div> <h3 dir="auto">Error message:</h3> <p dir="auto">For <code class="notranslate">kind='cubic'</code> it fails in a similar matter as I would expect it to for the others:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="--------------------------------------------------------------------------- ValueError Traceback (most recent call last) &lt;ipython-input-30-064ad468e798&gt; in &lt;module&gt; ----&gt; 1 f = interp1d(x,y,kind='cubic') 2 f(x) C:\anaconda\envs\atlite\lib\site-packages\scipy\interpolate\interpolate.py in __init__(***failed resolving arguments***) 533 534 self._spline = make_interp_spline(xx, yy, k=order, --&gt; 535 check_finite=False) 536 if rewrite_nan: 537 self._call = self.__class__._call_nan_spline C:\anaconda\envs\atlite\lib\site-packages\scipy\interpolate\_bsplines.py in make_interp_spline(x, y, k, t, bc_type, axis, check_finite) 797 798 if x.ndim != 1 or np.any(x[1:] &lt;= x[:-1]): --&gt; 799 raise ValueError(&quot;Expect x to be a 1-D sorted array_like.&quot;) 800 if k &lt; 0: 801 raise ValueError(&quot;Expect non-negative k.&quot;) ValueError: Expect x to be a 1-D sorted array_like."><pre class="notranslate"><code class="notranslate">--------------------------------------------------------------------------- ValueError Traceback (most recent call last) &lt;ipython-input-30-064ad468e798&gt; in &lt;module&gt; ----&gt; 1 f = interp1d(x,y,kind='cubic') 2 f(x) C:\anaconda\envs\atlite\lib\site-packages\scipy\interpolate\interpolate.py in __init__(***failed resolving arguments***) 533 534 self._spline = make_interp_spline(xx, yy, k=order, --&gt; 535 check_finite=False) 536 if rewrite_nan: 537 self._call = self.__class__._call_nan_spline C:\anaconda\envs\atlite\lib\site-packages\scipy\interpolate\_bsplines.py in make_interp_spline(x, y, k, t, bc_type, axis, check_finite) 797 798 if x.ndim != 1 or np.any(x[1:] &lt;= x[:-1]): --&gt; 799 raise ValueError("Expect x to be a 1-D sorted array_like.") 800 if k &lt; 0: 801 raise ValueError("Expect non-negative k.") ValueError: Expect x to be a 1-D sorted array_like. </code></pre></div> <h3 dir="auto">Scipy/Numpy/Python version information:</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[1]: import sys, scipy, numpy; print(scipy.__version__, numpy.__version__, sys.version_info) 1.2.1 1.15.4 sys.version_info(major=3, minor=6, micro=6, releaselevel='final', serial=0) "><pre class="notranslate"><code class="notranslate">[1]: import sys, scipy, numpy; print(scipy.__version__, numpy.__version__, sys.version_info) 1.2.1 1.15.4 sys.version_info(major=3, minor=6, micro=6, releaselevel='final', serial=0) </code></pre></div>
<p dir="auto">Code: see the post <a href="https://stackoverflow.com/questions/46983476/" rel="nofollow">https://stackoverflow.com/questions/46983476/</a></p> <p dir="auto">Got error message:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/57449793/100565882-7f605100-32ff-11eb-9656-48c0232feb2a.png"><img src="https://user-images.githubusercontent.com/57449793/100565882-7f605100-32ff-11eb-9656-48c0232feb2a.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">The error message <code class="notranslate">Invalid input data</code> is uninformative.<br> Is it possible to provide the reason or solution of the error in the error message?</p>
0
<p dir="auto">If you know how to fix the issue, make a pull request instead.</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I tried using the <code class="notranslate">@types/xxxx</code> package and had problems.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I tried using the latest stable version of tsc. <a href="https://www.npmjs.com/package/typescript" rel="nofollow">https://www.npmjs.com/package/typescript</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have a question that is inappropriate for <a href="https://stackoverflow.com/" rel="nofollow">StackOverflow</a>. (Please ask any appropriate questions there).</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/blog/821-mention-somebody-they-re-notified">Mention</a> the authors (see <code class="notranslate">Definitions by:</code> in <code class="notranslate">index.d.ts</code>) so they can respond. <ul dir="auto"> <li>Authors: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/borisyankov/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/borisyankov">@borisyankov</a>.</li> </ul> </li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="app.use((req: express.Request, res: express.Response) =&gt; { res.status(404).end(); });"><pre class="notranslate"><code class="notranslate">app.use((req: express.Request, res: express.Response) =&gt; { res.status(404).end(); }); </code></pre></div> <p dir="auto">error TS2551: Property 'end' does not exist on type 'Response'. Did you mean 'send'?</p>
<p dir="auto">If you know how to fix the issue, make a pull request instead.</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I tried using the <code class="notranslate">@types/express</code> package and had problems.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I tried using the latest stable version of tsc. <a href="https://www.npmjs.com/package/typescript" rel="nofollow">https://www.npmjs.com/package/typescript</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have a question that is inappropriate for <a href="https://stackoverflow.com/" rel="nofollow">StackOverflow</a>. (Please ask any appropriate questions there).</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/blog/821-mention-somebody-they-re-notified">Mention</a> the authors (see <code class="notranslate">Definitions by:</code> in <code class="notranslate">index.d.ts</code>) so they can respond. <ul dir="auto"> <li>Authors: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/borisyankov/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/borisyankov">@borisyankov</a>, <a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/CMUH/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/CMUH">@CMUH</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/rockwyc992/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/rockwyc992">@rockwyc992</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/OliverJAsh/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/OliverJAsh">@OliverJAsh</a></li> </ul> </li> </ul> <p dir="auto">My builds are throwing the following errors after upgrades to latest version of the @types/express package:</p> <p dir="auto"><code class="notranslate">Property 'headers' does not exist on type 'Request&lt;any&gt;'</code></p> <p dir="auto"><code class="notranslate">Property 'query' does not exist on type 'Request&lt;any&gt;'</code></p> <p dir="auto"><code class="notranslate">Property 'body' does not exist on type 'Request&lt;any&gt;'</code></p> <p dir="auto">We have changed nothing on our end. I also noticed that my TS environment, when I open up the index.d.ts of @types/express shows the following errors:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="`express-serve-static-core` has no exported member 'ParamsDictionary' `express-serve-static-core` has no exported member 'Params' `express-serve-static-core` has no exported member 'Params'"><pre class="notranslate"><code class="notranslate">`express-serve-static-core` has no exported member 'ParamsDictionary' `express-serve-static-core` has no exported member 'Params' `express-serve-static-core` has no exported member 'Params' </code></pre></div> <p dir="auto">Some kind of breaking change seems to have been introduced, and I cannot seem to find any guidelines on how to address.</p>
1
<p dir="auto">Not sure if this is a bug report or a feature request, since I'm not sure what you guys had in mind for this method in the first place. However, the <a href="https://angular.io/docs/ts/latest/api/http/index/RequestOptions-class.html#!#merge-anchor" rel="nofollow">documentation</a> states that it creates a copy of RequestOptions instance, and does not change the values of the instance on which it is called.</p> <p dir="auto"><strong>Current behavior</strong><br> As per <a href="https://github.com/angular/angular/blob/2.1.0-beta.0/modules/%40angular/http/src/base_request_options.ts#L91-L133">source</a>, the method returns <code class="notranslate">headers</code> from one or the other object (<code class="notranslate">this</code> or <code class="notranslate">options</code>). That means that <code class="notranslate">copy</code> will have access to the same list as <code class="notranslate">this</code> or <code class="notranslate">options</code>. So, if the <code class="notranslate">append</code> method is called on <code class="notranslate">copy.headers</code>, the original instance it was copied from will also have the new version of headers, since they are using the same list.</p> <p dir="auto"><strong>Expected behavior</strong><br> <code class="notranslate">copy.headers</code> is returned as a deep copy, so appending to <code class="notranslate">copy.headers</code> doesn't affect <code class="notranslate">this.headers</code> or <code class="notranslate">options.headers</code>. So, instead of returning <code class="notranslate">this.headers</code>, merge should return <code class="notranslate">new Headers(this.headers)</code> (same goes for <code class="notranslate">options</code>, if present).</p> <p dir="auto"><strong>Reproduction of the problem</strong><br> EDIT: <a href="http://plnkr.co/edit/amSzQ5B8nACveEA1Q9Rm?p=preview" rel="nofollow">plunker here</a><br> Let's say we have custom BaseRequestOptions object globally available, that appends a custom <code class="notranslate">base-custom</code>header, and are provided through DI as Request options. Let's say we also have a CustomHttp service, that needs to append another custom header when its methods are called.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="export class CustomHttp extends Http { constructor(protected _backend: XHRBackend, protected _defaultOptions: RequestOptions, private _customService: CustomService) { super(_backend, _defaultOptions); } get(url: string, options?: RequestOptionsArgs): Observable&lt;Response&gt; { return customLogicBeforeReq.call(this, super.get, url, options); } // code... } function customLogicBeforeReq(func, url, options?){ let reqOpts = this._defaultOptions.merge(options); reqOpts.headers.append(&quot;x-custom&quot;, &quot;from custom service&quot;); // code... return func.call(this, url, reqOpts); }"><pre class="notranslate"><code class="notranslate">export class CustomHttp extends Http { constructor(protected _backend: XHRBackend, protected _defaultOptions: RequestOptions, private _customService: CustomService) { super(_backend, _defaultOptions); } get(url: string, options?: RequestOptionsArgs): Observable&lt;Response&gt; { return customLogicBeforeReq.call(this, super.get, url, options); } // code... } function customLogicBeforeReq(func, url, options?){ let reqOpts = this._defaultOptions.merge(options); reqOpts.headers.append("x-custom", "from custom service"); // code... return func.call(this, url, reqOpts); } </code></pre></div> <p dir="auto">After appending to <code class="notranslate">reqOpts</code>, <code class="notranslate">this._defaultOptions</code> will also have that header appended (or <code class="notranslate">options</code>, if available). That means that for each request made with this service (without providing the <code class="notranslate">options</code> object), a new <code class="notranslate">x-custom</code> header will be appended. So, after 5 requests, <code class="notranslate">this._defaultOptions</code> will have an <code class="notranslate">x-custom</code> entry which is an array of 5 "from custom service" values. The expected behaviour would be that it only has one <code class="notranslate">base-custom</code> header, and none of <code class="notranslate">x-custom</code>.</p> <ul dir="auto"> <li><strong>Angular version:</strong> 2.0.0</li> </ul>
<p dir="auto">When headers or search is present on both the base options and the to be merged options, the to be merged options overwrite, rather than combine with the base options.</p> <p dir="auto">This makes things like setting a default Content-Type while providing headers for other purposes impossible.</p> <p dir="auto"><a href="https://github.com/angular/angular/blob/master/modules/angular2/src/http/base_request_options.ts#L94-L97">https://github.com/angular/angular/blob/master/modules/angular2/src/http/base_request_options.ts#L94-L97</a></p> <p dir="auto">Headers should be able to merge with each other, overwriting on a per header basis.</p> <p dir="auto">The same problem applies to search params. I suppose it could apply to other things, but method, body and url are all strings at this time.</p>
1
<p dir="auto">I'm sorry if this is a stupid question but I'm stuck. I need to respond to a click on a line-number inside the <code class="notranslate">atom-text-editor</code> and I can't figure out how to do it. The dom shadow gets in my way for everything I try.</p> <p dir="auto">A simple <code class="notranslate">$('.line-number')</code> gets zero matches when the dom shadow is enabled. I can match on the <code class="notranslate">atom-text-editor</code> element but nothing inside. I read the package update doc and it just refers to <code class="notranslate">$(window)</code> which doesn't help.</p> <p dir="auto">This is a bit of a duplicate from .<a href="https://discuss.atom.io/t/events-from-elements-inside-shadow-dom/14119" rel="nofollow">https://discuss.atom.io/t/events-from-elements-inside-shadow-dom/14119</a>.</p>
<p dir="auto">If you open PHP files that start with <code class="notranslate">&lt;!DOCTYPE html&gt;</code>, atom selects HTML as language. It should be PHP.</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/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" checked=""> 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.1</li> <li>Operating System version: Win10</li> <li>Java version: 1.8</li> </ul> <h3 dir="auto">Steps to reproduce this issue</h3> <ol dir="auto"> <li>maven project dependency include artifactId(dubbo-filter-cache)</li> <li>Start a Provider service</li> </ol> <h3 dir="auto">Expected Result</h3> <p dir="auto">The program start without errors</p> <h3 dir="auto">Actual Result</h3> <p dir="auto">适配CacheFactory代码编译失败:<br> Adaptive code is generate by class "org.apache.dubbo.common.extension.AdaptiveClassCodeGenerator", that it make an error method adaptive code.</p> <p dir="auto">If there is an exception, please attach the exception trace:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2019-04-22 17:54:24.754 [main] ERROR org.apache.dubbo.common.extension.ExtensionLoader - [DUBBO] Failed to inject via method setCacheFactory of interface org.apache.dubbo.rpc.Filter: Failed to create adaptive instance: java.lang.IllegalStateException: Can't create adaptive extension interface org.apache.dubbo.cache.CacheFactory, cause: Failed to compile class, cause: [source error] no such field: invocation, class: org.apache.dubbo.cache.CacheFactory$Adaptive, code: package org.apache.dubbo.cache; import org.apache.dubbo.common.extension.ExtensionLoader; public class CacheFactory$Adaptive implements org.apache.dubbo.cache.CacheFactory { public org.apache.dubbo.cache.Cache getCache(org.apache.dubbo.common.URL arg0, org.apache.dubbo.rpc.Invocation arg1) { if (arg0 == null) throw new IllegalArgumentException(&quot;url == null&quot;); org.apache.dubbo.common.URL url = arg0; if (arg1 == null) throw new IllegalArgumentException(&quot;invocation == null&quot;); String methodName = arg1.getMethodName(); String extName = url.getMethodParameter(methodName, &quot;cache&quot;, &quot;lru&quot;); if(extName == null) throw new IllegalStateException(&quot;Failed to get extension (org.apache.dubbo.cache.CacheFactory) name from url (&quot; + url.toString() + &quot;) use keys([cache])&quot;); org.apache.dubbo.cache.CacheFactory extension = (org.apache.dubbo.cache.CacheFactory)ExtensionLoader.getExtensionLoader(org.apache.dubbo.cache.CacheFactory.class).getExtension(extName); return extension.getCache(url, invocation); } } , stack: javassist.CannotCompileException: [source error] no such field: invocation javassist.CannotCompileException: [source error] no such field: invocation at javassist.CtNewMethod.make(CtNewMethod.java:79) at javassist.CtNewMethod.make(CtNewMethod.java:45) at org.apache.dubbo.common.compiler.support.CtClassBuilder.build(CtClassBuilder.java:168) at org.apache.dubbo.common.compiler.support.JavassistCompiler.doCompile(JavassistCompiler.java:82) at org.apache.dubbo.common.compiler.support.AbstractCompiler.compile(AbstractCompiler.java:59) at org.apache.dubbo.common.compiler.support.AdaptiveCompiler.compile(AdaptiveCompiler.java:45) at org.apache.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClass(ExtensionLoader.java:859) at org.apache.dubbo.common.extension.ExtensionLoader.getAdaptiveExtensionClass(ExtensionLoader.java:852) at org.apache.dubbo.common.extension.ExtensionLoader.createAdaptiveExtension(ExtensionLoader.java:841) at org.apache.dubbo.common.extension.ExtensionLoader.getAdaptiveExtension(ExtensionLoader.java:478) at org.apache.dubbo.common.extension.factory.SpiExtensionFactory.getExtension(SpiExtensionFactory.java:33) at org.apache.dubbo.common.extension.factory.AdaptiveExtensionFactory.getExtension(AdaptiveExtensionFactory.java:47) at org.apache.dubbo.common.extension.ExtensionLoader.injectExtension(ExtensionLoader.java:562) at org.apache.dubbo.common.extension.ExtensionLoader.createExtension(ExtensionLoader.java:531) at org.apache.dubbo.common.extension.ExtensionLoader.getExtension(ExtensionLoader.java:347) at org.apache.dubbo.common.extension.ExtensionLoader.getActivateExtension(ExtensionLoader.java:225) at org.apache.dubbo.common.extension.ExtensionLoader.getActivateExtension(ExtensionLoader.java:192) at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper.buildInvokerChain(ProtocolFilterWrapper.java:49) at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper.export(ProtocolFilterWrapper.java:108) at org.apache.dubbo.rpc.Protocol$Adaptive.export(Protocol$Adaptive.java) at org.apache.dubbo.registry.integration.RegistryProtocol.lambda$2(RegistryProtocol.java:220) at java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1660) at org.apache.dubbo.registry.integration.RegistryProtocol.doLocalExport(RegistryProtocol.java:218) at org.apache.dubbo.registry.integration.RegistryProtocol.export(RegistryProtocol.java:184) at org.apache.dubbo.rpc.protocol.ProtocolListenerWrapper.export(ProtocolListenerWrapper.java:55) at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper.export(ProtocolFilterWrapper.java:106) at org.apache.dubbo.rpc.Protocol$Adaptive.export(Protocol$Adaptive.java) at org.apache.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:559) at org.apache.dubbo.config.ServiceConfig.doExportUrls(ServiceConfig.java:417) at org.apache.dubbo.config.ServiceConfig.doExport(ServiceConfig.java:375) at org.apache.dubbo.config.ServiceConfig.export(ServiceConfig.java:337) at org.apache.dubbo.config.spring.ServiceBean.export(ServiceBean.java:319) at org.apache.dubbo.config.spring.ServiceBean.onApplicationEvent(ServiceBean.java:113) at org.apache.dubbo.config.spring.ServiceBean.onApplicationEvent(ServiceBean.java:1) at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:172) at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:165) at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:139) at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:402) at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:359) at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:896) at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:552) at org.springframework.context.support.ClassPathXmlApplicationContext.&lt;init&gt;(ClassPathXmlApplicationContext.java:144) at org.springframework.context.support.ClassPathXmlApplicationContext.&lt;init&gt;(ClassPathXmlApplicationContext.java:85) at com.ccesun.rhpf.regi.provider.RmiEnvInitServiceTest.testServiceStart(RmiEnvInitServiceTest.java:28) at com.ccesun.rhpf.regi.provider.RmiEnvInitServiceTest.main(RmiEnvInitServiceTest.java:41) Caused by: compile error: no such field: invocation at javassist.compiler.TypeChecker.fieldAccess(TypeChecker.java:845) at javassist.compiler.TypeChecker.atFieldRead(TypeChecker.java:803) at javassist.compiler.TypeChecker.atMember(TypeChecker.java:988) at javassist.compiler.JvstTypeChecker.atMember(JvstTypeChecker.java:66) at javassist.compiler.ast.Member.accept(Member.java:39) at javassist.compiler.JvstTypeChecker.atMethodArgs(JvstTypeChecker.java:221) at javassist.compiler.TypeChecker.atMethodCallCore(TypeChecker.java:735) at javassist.compiler.TypeChecker.atCallExpr(TypeChecker.java:695) at javassist.compiler.JvstTypeChecker.atCallExpr(JvstTypeChecker.java:157) at javassist.compiler.ast.CallExpr.accept(CallExpr.java:46) at javassist.compiler.CodeGen.doTypeCheck(CodeGen.java:242) at javassist.compiler.CodeGen.compileExpr(CodeGen.java:229) at javassist.compiler.CodeGen.atReturnStmnt2(CodeGen.java:615) at javassist.compiler.JvstCodeGen.atReturnStmnt(JvstCodeGen.java:425) at javassist.compiler.CodeGen.atStmnt(CodeGen.java:363) at javassist.compiler.ast.Stmnt.accept(Stmnt.java:50) at javassist.compiler.CodeGen.atStmnt(CodeGen.java:351) at javassist.compiler.ast.Stmnt.accept(Stmnt.java:50) at javassist.compiler.CodeGen.atMethodBody(CodeGen.java:292) at javassist.compiler.CodeGen.atMethodDecl(CodeGen.java:274) at javassist.compiler.ast.MethodDecl.accept(MethodDecl.java:44) at javassist.compiler.Javac.compileMethod(Javac.java:169) at javassist.compiler.Javac.compile(Javac.java:95) at javassist.CtNewMethod.make(CtNewMethod.java:74) ... 44 more"><pre class="notranslate"><code class="notranslate">2019-04-22 17:54:24.754 [main] ERROR org.apache.dubbo.common.extension.ExtensionLoader - [DUBBO] Failed to inject via method setCacheFactory of interface org.apache.dubbo.rpc.Filter: Failed to create adaptive instance: java.lang.IllegalStateException: Can't create adaptive extension interface org.apache.dubbo.cache.CacheFactory, cause: Failed to compile class, cause: [source error] no such field: invocation, class: org.apache.dubbo.cache.CacheFactory$Adaptive, code: package org.apache.dubbo.cache; import org.apache.dubbo.common.extension.ExtensionLoader; public class CacheFactory$Adaptive implements org.apache.dubbo.cache.CacheFactory { public org.apache.dubbo.cache.Cache getCache(org.apache.dubbo.common.URL arg0, org.apache.dubbo.rpc.Invocation arg1) { if (arg0 == null) throw new IllegalArgumentException("url == null"); org.apache.dubbo.common.URL url = arg0; if (arg1 == null) throw new IllegalArgumentException("invocation == null"); String methodName = arg1.getMethodName(); String extName = url.getMethodParameter(methodName, "cache", "lru"); if(extName == null) throw new IllegalStateException("Failed to get extension (org.apache.dubbo.cache.CacheFactory) name from url (" + url.toString() + ") use keys([cache])"); org.apache.dubbo.cache.CacheFactory extension = (org.apache.dubbo.cache.CacheFactory)ExtensionLoader.getExtensionLoader(org.apache.dubbo.cache.CacheFactory.class).getExtension(extName); return extension.getCache(url, invocation); } } , stack: javassist.CannotCompileException: [source error] no such field: invocation javassist.CannotCompileException: [source error] no such field: invocation at javassist.CtNewMethod.make(CtNewMethod.java:79) at javassist.CtNewMethod.make(CtNewMethod.java:45) at org.apache.dubbo.common.compiler.support.CtClassBuilder.build(CtClassBuilder.java:168) at org.apache.dubbo.common.compiler.support.JavassistCompiler.doCompile(JavassistCompiler.java:82) at org.apache.dubbo.common.compiler.support.AbstractCompiler.compile(AbstractCompiler.java:59) at org.apache.dubbo.common.compiler.support.AdaptiveCompiler.compile(AdaptiveCompiler.java:45) at org.apache.dubbo.common.extension.ExtensionLoader.createAdaptiveExtensionClass(ExtensionLoader.java:859) at org.apache.dubbo.common.extension.ExtensionLoader.getAdaptiveExtensionClass(ExtensionLoader.java:852) at org.apache.dubbo.common.extension.ExtensionLoader.createAdaptiveExtension(ExtensionLoader.java:841) at org.apache.dubbo.common.extension.ExtensionLoader.getAdaptiveExtension(ExtensionLoader.java:478) at org.apache.dubbo.common.extension.factory.SpiExtensionFactory.getExtension(SpiExtensionFactory.java:33) at org.apache.dubbo.common.extension.factory.AdaptiveExtensionFactory.getExtension(AdaptiveExtensionFactory.java:47) at org.apache.dubbo.common.extension.ExtensionLoader.injectExtension(ExtensionLoader.java:562) at org.apache.dubbo.common.extension.ExtensionLoader.createExtension(ExtensionLoader.java:531) at org.apache.dubbo.common.extension.ExtensionLoader.getExtension(ExtensionLoader.java:347) at org.apache.dubbo.common.extension.ExtensionLoader.getActivateExtension(ExtensionLoader.java:225) at org.apache.dubbo.common.extension.ExtensionLoader.getActivateExtension(ExtensionLoader.java:192) at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper.buildInvokerChain(ProtocolFilterWrapper.java:49) at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper.export(ProtocolFilterWrapper.java:108) at org.apache.dubbo.rpc.Protocol$Adaptive.export(Protocol$Adaptive.java) at org.apache.dubbo.registry.integration.RegistryProtocol.lambda$2(RegistryProtocol.java:220) at java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1660) at org.apache.dubbo.registry.integration.RegistryProtocol.doLocalExport(RegistryProtocol.java:218) at org.apache.dubbo.registry.integration.RegistryProtocol.export(RegistryProtocol.java:184) at org.apache.dubbo.rpc.protocol.ProtocolListenerWrapper.export(ProtocolListenerWrapper.java:55) at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper.export(ProtocolFilterWrapper.java:106) at org.apache.dubbo.rpc.Protocol$Adaptive.export(Protocol$Adaptive.java) at org.apache.dubbo.config.ServiceConfig.doExportUrlsFor1Protocol(ServiceConfig.java:559) at org.apache.dubbo.config.ServiceConfig.doExportUrls(ServiceConfig.java:417) at org.apache.dubbo.config.ServiceConfig.doExport(ServiceConfig.java:375) at org.apache.dubbo.config.ServiceConfig.export(ServiceConfig.java:337) at org.apache.dubbo.config.spring.ServiceBean.export(ServiceBean.java:319) at org.apache.dubbo.config.spring.ServiceBean.onApplicationEvent(ServiceBean.java:113) at org.apache.dubbo.config.spring.ServiceBean.onApplicationEvent(ServiceBean.java:1) at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:172) at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:165) at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:139) at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:402) at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:359) at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:896) at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:552) at org.springframework.context.support.ClassPathXmlApplicationContext.&lt;init&gt;(ClassPathXmlApplicationContext.java:144) at org.springframework.context.support.ClassPathXmlApplicationContext.&lt;init&gt;(ClassPathXmlApplicationContext.java:85) at com.ccesun.rhpf.regi.provider.RmiEnvInitServiceTest.testServiceStart(RmiEnvInitServiceTest.java:28) at com.ccesun.rhpf.regi.provider.RmiEnvInitServiceTest.main(RmiEnvInitServiceTest.java:41) Caused by: compile error: no such field: invocation at javassist.compiler.TypeChecker.fieldAccess(TypeChecker.java:845) at javassist.compiler.TypeChecker.atFieldRead(TypeChecker.java:803) at javassist.compiler.TypeChecker.atMember(TypeChecker.java:988) at javassist.compiler.JvstTypeChecker.atMember(JvstTypeChecker.java:66) at javassist.compiler.ast.Member.accept(Member.java:39) at javassist.compiler.JvstTypeChecker.atMethodArgs(JvstTypeChecker.java:221) at javassist.compiler.TypeChecker.atMethodCallCore(TypeChecker.java:735) at javassist.compiler.TypeChecker.atCallExpr(TypeChecker.java:695) at javassist.compiler.JvstTypeChecker.atCallExpr(JvstTypeChecker.java:157) at javassist.compiler.ast.CallExpr.accept(CallExpr.java:46) at javassist.compiler.CodeGen.doTypeCheck(CodeGen.java:242) at javassist.compiler.CodeGen.compileExpr(CodeGen.java:229) at javassist.compiler.CodeGen.atReturnStmnt2(CodeGen.java:615) at javassist.compiler.JvstCodeGen.atReturnStmnt(JvstCodeGen.java:425) at javassist.compiler.CodeGen.atStmnt(CodeGen.java:363) at javassist.compiler.ast.Stmnt.accept(Stmnt.java:50) at javassist.compiler.CodeGen.atStmnt(CodeGen.java:351) at javassist.compiler.ast.Stmnt.accept(Stmnt.java:50) at javassist.compiler.CodeGen.atMethodBody(CodeGen.java:292) at javassist.compiler.CodeGen.atMethodDecl(CodeGen.java:274) at javassist.compiler.ast.MethodDecl.accept(MethodDecl.java:44) at javassist.compiler.Javac.compileMethod(Javac.java:169) at javassist.compiler.Javac.compile(Javac.java:95) at javassist.CtNewMethod.make(CtNewMethod.java:74) ... 44 more </code></pre></div>
<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.5.3</li> <li>Operating System version: Linux version 2.6.32-573.22.1.el6.x86_64 (<a href="mailto:mockbuild@c6b8.bsys.dev.centos.org">mockbuild@c6b8.bsys.dev.centos.org</a>) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-16) (GCC) ) <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="5423124" data-permission-text="Title is private" data-url="https://github.com/apache/dubbo/issues/1" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/1/hovercard" href="https://github.com/apache/dubbo/pull/1">#1</a> SMP Wed Mar 23 03:35:39 UTC 2016</li> <li>Java version: java version "1.8.0_162"</li> </ul> <h3 dir="auto">Steps to reproduce this issue</h3> <ol dir="auto"> <li>call api throw null exception</li> </ol> <p dir="auto">What actually happens?</p> <p dir="auto">If there is an exception, please attach the exception trace:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="java.lang.NullPointerExceptionat 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:271)at com.alibaba.com.caucho.hessian.io.JavaDeserializer.readObject(JavaDeserializer.java:155)at com.alibaba.com.caucho.hessian.io.SerializerFactory.readObject(SerializerFactory.java:397)at com.alibaba.com.caucho.hessian.io.Hessian2Input.readObjectInstance(Hessian2Input.java:2070)at com.alibaba.com.caucho.hessian.io.Hessian2Input.readObject(Hessian2Input.java:2005)at com.alibaba.com.caucho.hessian.io.Hessian2Input.readObject(Hessian2Input.java:1990)at com.alibaba.dubbo.common.serialize.support.hessian.Hessian2ObjectInput.readObject(Hessian2ObjectInput.java:88)at com.alibaba.dubbo.rpc.protocol.dubbo.DecodeableRpcResult.decode(DecodeableRpcResult.java:92)at com.alibaba.dubbo.rpc.protocol.dubbo.DecodeableRpcResult.decode(DecodeableRpcResult.java:109)at com.alibaba.dubbo.rpc.protocol.dubbo.DubboCodec.decodeBody(DubboCodec.java:97)at com.alibaba.dubbo.remoting.exchange.codec.ExchangeCodec.decode(ExchangeCodec.java:126)at com.alibaba.dubbo.remoting.exchange.codec.ExchangeCodec.decode(ExchangeCodec.java:87)at com.alibaba.dubbo.rpc.protocol.dubbo.DubboCountCodec.decode(DubboCountCodec.java:46)at com.alibaba.dubbo.remoting.transport.netty.NettyCodecAdapter$InternalDecoder.messageReceived(NettyCodecAdapter.java:134)at org.jboss.netty.channel.SimpleChannelUpstreamHandler.handleUpstream(SimpleChannelUpstreamHandler.java:80)at org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream(DefaultChannelPipeline.java:564)at org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream(DefaultChannelPipeline.java:559)at org.jboss.netty.channel.Channels.fireMessageReceived(Channels.java:274)at org.jboss.netty.channel.Channels.fireMessageReceived(Channels.java:261)at org.jboss.netty.channel.socket.nio.NioWorker.read(NioWorker.java:349)at org.jboss.netty.channel.socket.nio.NioWorker.processSelectedKeys(NioWorker.java:280)at org.jboss.netty.channel.socket.nio.NioWorker.run(NioWorker.java:200)at org.jboss.netty.util.ThreadRenamingRunnable.run(ThreadRenamingRunnable.java:108)at org.jboss.netty.util.internal.DeadLockProofWorker$1.run(DeadLockProofWorker.java:44)at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)at java.lang.Thread.run(Thread.java:748)"><pre class="notranslate"><code class="notranslate">java.lang.NullPointerExceptionat 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:271)at com.alibaba.com.caucho.hessian.io.JavaDeserializer.readObject(JavaDeserializer.java:155)at com.alibaba.com.caucho.hessian.io.SerializerFactory.readObject(SerializerFactory.java:397)at com.alibaba.com.caucho.hessian.io.Hessian2Input.readObjectInstance(Hessian2Input.java:2070)at com.alibaba.com.caucho.hessian.io.Hessian2Input.readObject(Hessian2Input.java:2005)at com.alibaba.com.caucho.hessian.io.Hessian2Input.readObject(Hessian2Input.java:1990)at com.alibaba.dubbo.common.serialize.support.hessian.Hessian2ObjectInput.readObject(Hessian2ObjectInput.java:88)at com.alibaba.dubbo.rpc.protocol.dubbo.DecodeableRpcResult.decode(DecodeableRpcResult.java:92)at com.alibaba.dubbo.rpc.protocol.dubbo.DecodeableRpcResult.decode(DecodeableRpcResult.java:109)at com.alibaba.dubbo.rpc.protocol.dubbo.DubboCodec.decodeBody(DubboCodec.java:97)at com.alibaba.dubbo.remoting.exchange.codec.ExchangeCodec.decode(ExchangeCodec.java:126)at com.alibaba.dubbo.remoting.exchange.codec.ExchangeCodec.decode(ExchangeCodec.java:87)at com.alibaba.dubbo.rpc.protocol.dubbo.DubboCountCodec.decode(DubboCountCodec.java:46)at com.alibaba.dubbo.remoting.transport.netty.NettyCodecAdapter$InternalDecoder.messageReceived(NettyCodecAdapter.java:134)at org.jboss.netty.channel.SimpleChannelUpstreamHandler.handleUpstream(SimpleChannelUpstreamHandler.java:80)at org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream(DefaultChannelPipeline.java:564)at org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream(DefaultChannelPipeline.java:559)at org.jboss.netty.channel.Channels.fireMessageReceived(Channels.java:274)at org.jboss.netty.channel.Channels.fireMessageReceived(Channels.java:261)at org.jboss.netty.channel.socket.nio.NioWorker.read(NioWorker.java:349)at org.jboss.netty.channel.socket.nio.NioWorker.processSelectedKeys(NioWorker.java:280)at org.jboss.netty.channel.socket.nio.NioWorker.run(NioWorker.java:200)at org.jboss.netty.util.ThreadRenamingRunnable.run(ThreadRenamingRunnable.java:108)at org.jboss.netty.util.internal.DeadLockProofWorker$1.run(DeadLockProofWorker.java:44)at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)at java.lang.Thread.run(Thread.java:748) </code></pre></div>
0
<h1 dir="auto">Bug report</h1> <p dir="auto"><strong>What is the current behavior?</strong></p> <p dir="auto">Webpack build fails with <code class="notranslate">RuntimeTemplate.moduleId() ... has no id. This should not happen</code> error.</p> <p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong></p> <p dir="auto">Checkout master branch<br> <a href="https://github.com/kompot/treat-no-module-id-2">https://github.com/kompot/treat-no-module-id-2</a><br> it's basically a barebones React app but using <a href="https://github.com/seek-oss/treat">treat</a> for styling.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="yarn install yarn run build"><pre class="notranslate"><code class="notranslate">yarn install yarn run build </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ERROR in chunk 1 1.output.bundle.js /Users/kompot/projects/treat-no-module-id-2/node_modules/babel-loader/lib/index.js??ref--5!/Users/kompot/projects/treat-no-module-id-2/src/components/module/Component2.jsx RuntimeTemplate.moduleId(): Module /Users/kompot/projects/treat-no-module-id-2/node_modules/treat/webpack-plugin/loader.js??ref--4-0!/Users/kompot/projects/treat-no-module-id-2/node_modules/babel-loader/lib/index.js??ref--5!/Users/kompot/projects/treat-no-module-id-2/src/components/module/Component2.treat.js has no id. This should not happen. ERROR in chunk 2 2.output.bundle.js /Users/kompot/projects/treat-no-module-id-2/node_modules/babel-loader/lib/index.js??ref--5!/Users/kompot/projects/treat-no-module-id-2/src/components/module/Component2.jsx RuntimeTemplate.moduleId(): Module /Users/kompot/projects/treat-no-module-id-2/node_modules/treat/webpack-plugin/loader.js??ref--4-0!/Users/kompot/projects/treat-no-module-id-2/node_modules/babel-loader/lib/index.js??ref--5!/Users/kompot/projects/treat-no-module-id-2/src/components/module/Component2.treat.js has no id. This should not happen."><pre class="notranslate"><code class="notranslate">ERROR in chunk 1 1.output.bundle.js /Users/kompot/projects/treat-no-module-id-2/node_modules/babel-loader/lib/index.js??ref--5!/Users/kompot/projects/treat-no-module-id-2/src/components/module/Component2.jsx RuntimeTemplate.moduleId(): Module /Users/kompot/projects/treat-no-module-id-2/node_modules/treat/webpack-plugin/loader.js??ref--4-0!/Users/kompot/projects/treat-no-module-id-2/node_modules/babel-loader/lib/index.js??ref--5!/Users/kompot/projects/treat-no-module-id-2/src/components/module/Component2.treat.js has no id. This should not happen. ERROR in chunk 2 2.output.bundle.js /Users/kompot/projects/treat-no-module-id-2/node_modules/babel-loader/lib/index.js??ref--5!/Users/kompot/projects/treat-no-module-id-2/src/components/module/Component2.jsx RuntimeTemplate.moduleId(): Module /Users/kompot/projects/treat-no-module-id-2/node_modules/treat/webpack-plugin/loader.js??ref--4-0!/Users/kompot/projects/treat-no-module-id-2/node_modules/babel-loader/lib/index.js??ref--5!/Users/kompot/projects/treat-no-module-id-2/src/components/module/Component2.treat.js has no id. This should not happen. </code></pre></div> <p dir="auto"><strong>What is the expected behavior?</strong></p> <p dir="auto">Build should succeed. There are 4 "fixes" that make the build pass.<br> <a href="https://github.com/kompot/treat-no-module-id-2/pull/1/files">https://github.com/kompot/treat-no-module-id-2/pull/1/files</a><br> <a href="https://github.com/kompot/treat-no-module-id-2/pull/2/files">https://github.com/kompot/treat-no-module-id-2/pull/2/files</a><br> <a href="https://github.com/kompot/treat-no-module-id-2/pull/3/files">https://github.com/kompot/treat-no-module-id-2/pull/3/files</a><br> <a href="https://github.com/kompot/treat-no-module-id-2/pull/4/files">https://github.com/kompot/treat-no-module-id-2/pull/4/files</a></p> <p dir="auto">The last one is probably the most interesting one — turning off</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="optimization: { concatenateModules: false }"><pre class="notranslate"><code class="notranslate">optimization: { concatenateModules: false } </code></pre></div> <p dir="auto">Others are changing dependency tree and it somehow affects the build.</p> <p dir="auto"><strong>Other relevant information:</strong><br> webpack version: 4.42.1<br> Node.js version: 12.16.0<br> Operating System: macOS 10.15.4</p> <p dir="auto">I understand that this might be at least partially related to a 3rd party project (see the <a href="https://github.com/seek-oss/treat/issues/91" data-hovercard-type="issue" data-hovercard-url="/seek-oss/treat/issues/91/hovercard">initial issue</a> in treat repo) but any help in debugging this issue would be greatly appreciated.</p> <p dir="auto">Looks like it might be the duplicate of<br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="566897362" data-permission-text="Title is private" data-url="https://github.com/webpack/webpack/issues/10409" data-hovercard-type="issue" data-hovercard-url="/webpack/webpack/issues/10409/hovercard" href="https://github.com/webpack/webpack/issues/10409">#10409</a><br> if that so then should the fix be expected for webpack 4?</p> <p dir="auto">Thanks!</p>
<p dir="auto">** I want report a some like <em>bug</em> **</p> <p dir="auto">Probably incrorrect letter case in filenames make bundlers duplicating modules and work all library is failed.</p> <p dir="auto">I faced with problem, when webpack and rollup duplicates modules.</p> <p dir="auto">I am working on Windows. She is not make it differece between low and up case letters in filenames. For she 'File.js' and 'file.js' are one entity. But Unix-like systems recognize they as two diffirent entities. And bundlers (webpack, rollup) also do. Let you are working on Windows, and you make two 'import' operations, in the one you write from 'File.js', in the second you write 'file.js'. Both are reffered to same file. However bunlers make two copy of this module.</p> <p dir="auto">I made all filenames and statement 'import from' to low case, and problem vanished. It is truth for Webpack. I don't try with rollup yet.</p> <p dir="auto">Probably could make some sort of option for show warning about possibily making duplicate modules or option for ignore case in filenames, i don't know.</p> <p dir="auto">Sorry for bothering you, if my issue happen usesless.</p>
0
<p dir="auto">Consider the <a href="http://is.gd/TOrGVM" rel="nofollow">following example</a>:</p> <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="trait Foo { fn foo(&amp;self); fn bar(&amp;self) where Self: Bar; } trait Bar { } struct Baz; impl Foo for Baz { fn foo(&amp;self) {} }"><pre class="notranslate"><span class="pl-k">trait</span> <span class="pl-smi">Foo</span> <span class="pl-kos">{</span> <span class="pl-k">fn</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-c1">&amp;</span><span class="pl-smi">self</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">fn</span> <span class="pl-en">bar</span><span class="pl-kos">(</span><span class="pl-c1">&amp;</span><span class="pl-smi">self</span><span class="pl-kos">)</span> <span class="pl-k">where</span> <span class="pl-smi">Self</span><span class="pl-kos">:</span> <span class="pl-smi">Bar</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">trait</span> <span class="pl-smi">Bar</span> <span class="pl-kos">{</span> <span class="pl-kos">}</span> <span class="pl-k">struct</span> <span class="pl-smi">Baz</span><span class="pl-kos">;</span> <span class="pl-k">impl</span> <span class="pl-smi">Foo</span> <span class="pl-k">for</span> <span class="pl-smi">Baz</span> <span class="pl-kos">{</span> <span class="pl-k">fn</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-c1">&amp;</span><span class="pl-smi">self</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">The example produces the following error:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;anon&gt;:11:1: 13:2 error: not all trait items implemented, missing: `bar` [E0046] &lt;anon&gt;:11 impl Foo for Baz { &lt;anon&gt;:12 fn foo(&amp;self) {} &lt;anon&gt;:13 }"><pre class="notranslate"><code class="notranslate">&lt;anon&gt;:11:1: 13:2 error: not all trait items implemented, missing: `bar` [E0046] &lt;anon&gt;:11 impl Foo for Baz { &lt;anon&gt;:12 fn foo(&amp;self) {} &lt;anon&gt;:13 } </code></pre></div> <p dir="auto">However, <code class="notranslate">Baz</code> doesn’t implement <code class="notranslate">Bar</code>, and presumably it shouldn’t be required to implement <code class="notranslate">bar</code> when implementing <code class="notranslate">Foo</code>.</p> <p dir="auto">Regards,<br> Ivan</p>
<p dir="auto">There is a curious case with where clauses where sometimes we can show that a method in an impl could not possibly be called. This is because the impl has more precise information than the trait. Here is an example:</p> <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" trait MyTrait&lt;T&gt; { fn method(&amp;self, t: &amp;T) where T : Eq; } struct Foo; struct Bar; // note that `Bar` does not derive `Eq` impl MyTrait&lt;Bar&gt; for Foo { fn method(&amp;self, t: &amp;T) where Bar : Eq { // &lt;-- `Bar : Eq` cannot be satisfied! } }"><pre class="notranslate"> <span class="pl-k">trait</span> <span class="pl-smi">MyTrait</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-k">fn</span> <span class="pl-en">method</span><span class="pl-kos">(</span><span class="pl-c1">&amp;</span><span class="pl-smi">self</span><span class="pl-kos">,</span> <span class="pl-s1">t</span><span class="pl-kos">:</span> <span class="pl-c1">&amp;</span><span class="pl-smi">T</span><span class="pl-kos">)</span> <span class="pl-k">where</span> <span class="pl-smi">T</span> <span class="pl-kos">:</span> <span class="pl-smi">Eq</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">struct</span> <span class="pl-smi">Foo</span><span class="pl-kos">;</span> <span class="pl-k">struct</span> <span class="pl-smi">Bar</span><span class="pl-kos">;</span> <span class="pl-c">// note that `Bar` does not derive `Eq`</span> <span class="pl-k">impl</span> <span class="pl-smi">MyTrait</span><span class="pl-kos">&lt;</span><span class="pl-smi">Bar</span><span class="pl-kos">&gt;</span> <span class="pl-k">for</span> <span class="pl-smi">Foo</span> <span class="pl-kos">{</span> <span class="pl-k">fn</span> <span class="pl-en">method</span><span class="pl-kos">(</span><span class="pl-c1">&amp;</span><span class="pl-smi">self</span><span class="pl-kos">,</span> <span class="pl-s1">t</span><span class="pl-kos">:</span> <span class="pl-c1">&amp;</span><span class="pl-smi">T</span><span class="pl-kos">)</span> <span class="pl-k">where</span> <span class="pl-smi">Bar</span> <span class="pl-kos">:</span> <span class="pl-smi">Eq</span> <span class="pl-kos">{</span> <span class="pl-c">// &lt;-- `Bar : Eq` cannot be satisfied!</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">We should permit the method body to be omitted in such a case. As a workaround, once <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="52468766" data-permission-text="Title is private" data-url="https://github.com/rust-lang/rust/issues/20020" data-hovercard-type="issue" data-hovercard-url="/rust-lang/rust/issues/20020/hovercard" href="https://github.com/rust-lang/rust/issues/20020">#20020</a> is fixed, I imagine it would be possible to write an impl like this:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="impl MyTrait&lt;Bar&gt; for Foo { fn method(&amp;self, t: &amp;T) { // no where clause at all panic!(&quot;Bar : Eq could not be satisfied&quot;); } }"><pre class="notranslate"><code class="notranslate">impl MyTrait&lt;Bar&gt; for Foo { fn method(&amp;self, t: &amp;T) { // no where clause at all panic!("Bar : Eq could not be satisfied"); } } </code></pre></div> <p dir="auto">However, it is unfortunate to require that of the user. For one thing, perhaps it happens later that an impl of <code class="notranslate">Eq</code> is added for <code class="notranslate">Bar</code> -- now we have this method hanging around that will panic. It'd be nice to detect that statically.</p> <p dir="auto">The plan then would be to permit:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="impl MyTrait&lt;Bar&gt; for Foo { fn method(&amp;self, t: &amp;T); // &lt;-- no body or where clauses needed }"><pre class="notranslate"><code class="notranslate">impl MyTrait&lt;Bar&gt; for Foo { fn method(&amp;self, t: &amp;T); // &lt;-- no body or where clauses needed } </code></pre></div> <p dir="auto">This serves as a declaration that you believe this method could never be called. At trans time, we will generate a body that simply does the equivalent of <code class="notranslate">panic!("unsatisfiable method</code>method<code class="notranslate">invoked")</code>.</p> <p dir="auto">I plan to open an amendment to the where clause RFC describing this particular case.</p>
1
<p dir="auto">Just updated my Visual Studio Code to 0.10.10. It not longer highlights JavaScript keywords like function, let, const, yield, etc.</p> <p dir="auto">Details:<br> OS: Linux Mint 17.3 64 bit<br> Code: 0.10.10 64 bit</p>
<p dir="auto">0.10.10 (Feburary build) has a regression is that the following JavaScript keywords are no longer highlighted in the Dark Visual Studio &amp; Light Visual Studio themes:<br> <code class="notranslate">var</code> <code class="notranslate">let</code> <code class="notranslate">const</code> <code class="notranslate">function</code> <code class="notranslate">get</code> <code class="notranslate">set</code> <code class="notranslate">class</code> <code class="notranslate">interface</code> <code class="notranslate">module</code> <code class="notranslate">namespace</code></p> <p dir="auto">This only affects JavaScript (not TypeScript).<br> The workaround if to switch to the Dark+ Default and Light+ theme.</p> <p dir="auto">Note that there are other colorizing issues open, not caused by this regression: e.g. 'import' and 'from'. See <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="125145725" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript-TmLanguage/issues/37" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript-TmLanguage/issues/37/hovercard" href="https://github.com/microsoft/TypeScript-TmLanguage/issues/37">microsoft/TypeScript-TmLanguage#37</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/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.3</li> <li>Operating System version: macOs</li> <li>Java version: JDK 1.8</li> </ul> <h3 dir="auto">Steps to reproduce this issue</h3> <p dir="auto">We are going to serialize direct to Hessian OutputStream for protobuf extension, and read directly from InputStream. The change is going to export the Hessian InputStream &amp; OutputStream for direct write.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="private final Hessian2ObjectOutput delegate; protected ProtobufObjectOutput(OutputStream os) { this.delegate = new Hessian2ObjectOutput(os); } void writeBytesForPBObject(Object obj, Class clazz) throws IOException { try (OutputStream os = delegate.getOutputStream()) { if (obj instanceof MessageLite) { try { ((MessageLite) obj).writeTo(os); } catch (IOException e) { throw new RuntimeException(&quot;Google PB序列化失败,序列化对象的类型为&quot; + obj.getClass().getName(), e); } } } }"><pre class="notranslate"><code class="notranslate">private final Hessian2ObjectOutput delegate; protected ProtobufObjectOutput(OutputStream os) { this.delegate = new Hessian2ObjectOutput(os); } void writeBytesForPBObject(Object obj, Class clazz) throws IOException { try (OutputStream os = delegate.getOutputStream()) { if (obj instanceof MessageLite) { try { ((MessageLite) obj).writeTo(os); } catch (IOException e) { throw new RuntimeException("Google PB序列化失败,序列化对象的类型为" + obj.getClass().getName(), e); } } } } </code></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/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.5</li> <li>Operating System version: Windows 10 1903</li> <li>Java version: 1.8.0_221</li> </ul> <h3 dir="auto">Steps to reproduce this issue</h3> <ol dir="auto"> <li>in root folder execute "mvn clean test"</li> </ol> <h3 dir="auto">Expected Result</h3> <p dir="auto">pass unit test</p> <h3 dir="auto">Actual Result</h3> <p dir="auto">org.opentest4j.AssertionFailedError: expected: but was: <br> at org.apache.dubbo.common.extension.AdaptiveClassCodeGeneratorTest.testGenerate(AdaptiveClassCodeGeneratorTest.java:45)</p> <h3 dir="auto">Any try</h3> <p dir="auto">the souce of is AdaptiveClassCodeGeneratorTest</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="public class AdaptiveClassCodeGeneratorTest { @Test public void testGenerate() throws IOException { AdaptiveClassCodeGenerator generator = new AdaptiveClassCodeGenerator(HasAdaptiveExt.class, &quot;adaptive&quot;); String value = generator.generate(); URL url = getClass().getResource(&quot;/org/apache/dubbo/common/extension/adaptive/HasAdaptiveExt$Adaptive&quot;); try (InputStream inputStream = url.openStream()) { String content = IOUtils.read(new InputStreamReader(inputStream, &quot;UTF-8&quot;)); assertTrue(content.contains(value)); } } }"><pre class="notranslate"><code class="notranslate">public class AdaptiveClassCodeGeneratorTest { @Test public void testGenerate() throws IOException { AdaptiveClassCodeGenerator generator = new AdaptiveClassCodeGenerator(HasAdaptiveExt.class, "adaptive"); String value = generator.generate(); URL url = getClass().getResource("/org/apache/dubbo/common/extension/adaptive/HasAdaptiveExt$Adaptive"); try (InputStream inputStream = url.openStream()) { String content = IOUtils.read(new InputStreamReader(inputStream, "UTF-8")); assertTrue(content.contains(value)); } } } </code></pre></div> <p dir="auto">When I add the following code to it, the unit pass.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" value = value.replace(&quot;\r&quot;,&quot;&quot;); value = value.replace(&quot;\n&quot;,&quot;&quot;); content = content.replace(&quot;\r&quot;,&quot;&quot;); content = content.replace(&quot;\n&quot;,&quot;&quot;);"><pre class="notranslate"><code class="notranslate"> value = value.replace("\r",""); value = value.replace("\n",""); content = content.replace("\r",""); content = content.replace("\n",""); </code></pre></div>
0
<p dir="auto">In <code class="notranslate">onResponse</code> callback, we cannot change the value in AppResponse if the value is a primitive type.</p>
<p dir="auto">The following code doesn't work on 2.7.2.</p> <div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@Activate(group = {&quot;provider&quot;}) public class TraceFilter implements Filter { @Override public Result invoke(Invoker&lt;?&gt; invoker, Invocation invocation) throws RpcException { Result result = invoker.invoke(invocation); Object o = result.getValue(); if (o instanceof String) { String s = (String) o; s += &quot;filtered: &quot;; result.setValue(s); } return result; } }"><pre class="notranslate"><span class="pl-c1">@</span><span class="pl-c1">Activate</span>(<span class="pl-s1">group</span> = {<span class="pl-s">"provider"</span>}) <span class="pl-k">public</span> <span class="pl-k">class</span> <span class="pl-smi">TraceFilter</span> <span class="pl-k">implements</span> <span class="pl-smi">Filter</span> { <span class="pl-c1">@</span><span class="pl-c1">Override</span> <span class="pl-k">public</span> <span class="pl-smi">Result</span> <span class="pl-en">invoke</span>(<span class="pl-smi">Invoker</span>&lt;?&gt; <span class="pl-s1">invoker</span>, <span class="pl-smi">Invocation</span> <span class="pl-s1">invocation</span>) <span class="pl-k">throws</span> <span class="pl-smi">RpcException</span> { <span class="pl-smi">Result</span> <span class="pl-s1">result</span> = <span class="pl-s1">invoker</span>.<span class="pl-en">invoke</span>(<span class="pl-s1">invocation</span>); <span class="pl-smi">Object</span> <span class="pl-s1">o</span> = <span class="pl-s1">result</span>.<span class="pl-en">getValue</span>(); <span class="pl-k">if</span> (<span class="pl-s1">o</span> <span class="pl-k">instanceof</span> <span class="pl-smi">String</span>) { <span class="pl-smi">String</span> <span class="pl-s1">s</span> = (<span class="pl-smi">String</span>) <span class="pl-s1">o</span>; <span class="pl-s1">s</span> += <span class="pl-s">"filtered: "</span>; <span class="pl-s1">result</span>.<span class="pl-en">setValue</span>(<span class="pl-s1">s</span>); } <span class="pl-k">return</span> <span class="pl-s1">result</span>; } }</pre></div>
1
<p dir="auto">One of the reasons for keeping dead containers around in kubelet today is to get access to logs from previous instances. Dead container instances can take up disk space via their root filesystem and result in disk pressure on the nodes. To alleviate disk pressure and improve the logging experience in kubernetes, kubelet can retrieve logs from dead containers and GC them right away once kubelet doesn't depend on metadata associated with old containers.<br> Specifically,</p> <ul dir="auto"> <li>Kubelet can retrieve logs from the runtime and store in a per-pod, per-container directory inside of <code class="notranslate">/var/log/</code> directory. For the docker runtime, this can be a simple move operation. For rkt, we will have to retrieve the logs remotely.</li> <li>The directory structure can be <code class="notranslate">/var/log/&lt;podUID&gt;/&lt;ContainerName&gt;/&lt;InstanceNumber&gt;_stdout.log</code></li> <li>Update <code class="notranslate">kubectl logs -p</code> to return logs from the files instead of relying on the runtime for previous logs.</li> <li>These logs will be kept around on a best-effort basis and will be deleted whenever there is disk pressure.</li> <li>Kubelet can prefer keeping the first and most recent instances of a container around and aggressively delete other log files.</li> <li>All these logs will be accessible initially via the <code class="notranslate">/logs</code> REST endpoint. In the future, we can consider expanding <code class="notranslate">kubectl logs</code> interface to support an instance number or add support for the first attempt specifically.</li> </ul>
<p dir="auto">Monitoring/logging agents running on a node needs to know which pod a given container belongs to. Currently there is a lot of hacks around this:</p> <ul dir="auto"> <li>filepath for logging</li> <li>labels on docker</li> <li>reverse lookup from api server</li> </ul> <p dir="auto">Each of them has obvious drawbacks. We need a consistent solution for this problem.</p> <p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dchen1107/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dchen1107">@dchen1107</a> @kubernetes/sig-instrumentation @kubernetes/sig-node</p>
0
<h3 dir="auto">Affected Version</h3> <p dir="auto">Current master</p> <h3 dir="auto">Description</h3> <p dir="auto">Here is the error on start up. Maybe it only happens with coordinator + overlord mode.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="1) A binding to org.apache.druid.discovery.NodeRole annotated with interface org.apache.druid.guice.annotations.Self was already configured at org.apache.druid.cli.CliCoordinator$1.configure(CliCoordinator.java:242) (via modules: com.google.inject.util.Modules$Override Module -&gt; com.google.inject.util.Modules$OverrideModule -&gt; org.apache.druid.cli.CliCoordinator$1). at org.apache.druid.cli.CliOverlord$1.configure(CliOverlord.java:251) (via modules: com.google.inject.util.Modules$OverrideModule -&gt; com.google.inject.util.Modules$OverrideModule -&gt; org.apache.druid.cli.CliOverlord$1) 1 error at org.apache.druid.cli.GuiceRunnable.makeInjector(GuiceRunnable.java:72) at org.apache.druid.cli.ServerRunnable.run(ServerRunnable.java:56) at org.apache.druid.cli.Main.main(Main.java:113) Caused by: com.google.inject.CreationException: Unable to create injector, see the following errors: 1) A binding to org.apache.druid.discovery.NodeRole annotated with interface org.apache.druid.guice.annotations.Self was already configured at org.apache.druid.cli.CliCoordinator$1.configure(CliCoordinator.java:242) (via modules: com.google.inject.util.Modules$Override Module -&gt; com.google.inject.util.Modules$OverrideModule -&gt; org.apache.druid.cli.CliCoordinator$1). at org.apache.druid.cli.CliOverlord$1.configure(CliOverlord.java:251) (via modules: com.google.inject.util.Modules$OverrideModule -&gt; com.google.inject.util.Modules$OverrideModule -&gt; org.apache.druid.cli.CliOverlord$1) 1 error at com.google.inject.internal.Errors.throwCreationExceptionIfErrorsExist(Errors.java:470) at com.google.inject.internal.InternalInjectorCreator.initializeStatically(InternalInjectorCreator.java:155) at com.google.inject.internal.InternalInjectorCreator.build(InternalInjectorCreator.java:107) at com.google.inject.Guice.createInjector(Guice.java:99) at com.google.inject.Guice.createInjector(Guice.java:73) at com.google.inject.Guice.createInjector(Guice.java:62) at org.apache.druid.initialization.Initialization.makeInjectorWithModules(Initialization.java:431) at org.apache.druid.cli.GuiceRunnable.makeInjector(GuiceRunnable.java:69) ... 2 more"><pre class="notranslate"><code class="notranslate">1) A binding to org.apache.druid.discovery.NodeRole annotated with interface org.apache.druid.guice.annotations.Self was already configured at org.apache.druid.cli.CliCoordinator$1.configure(CliCoordinator.java:242) (via modules: com.google.inject.util.Modules$Override Module -&gt; com.google.inject.util.Modules$OverrideModule -&gt; org.apache.druid.cli.CliCoordinator$1). at org.apache.druid.cli.CliOverlord$1.configure(CliOverlord.java:251) (via modules: com.google.inject.util.Modules$OverrideModule -&gt; com.google.inject.util.Modules$OverrideModule -&gt; org.apache.druid.cli.CliOverlord$1) 1 error at org.apache.druid.cli.GuiceRunnable.makeInjector(GuiceRunnable.java:72) at org.apache.druid.cli.ServerRunnable.run(ServerRunnable.java:56) at org.apache.druid.cli.Main.main(Main.java:113) Caused by: com.google.inject.CreationException: Unable to create injector, see the following errors: 1) A binding to org.apache.druid.discovery.NodeRole annotated with interface org.apache.druid.guice.annotations.Self was already configured at org.apache.druid.cli.CliCoordinator$1.configure(CliCoordinator.java:242) (via modules: com.google.inject.util.Modules$Override Module -&gt; com.google.inject.util.Modules$OverrideModule -&gt; org.apache.druid.cli.CliCoordinator$1). at org.apache.druid.cli.CliOverlord$1.configure(CliOverlord.java:251) (via modules: com.google.inject.util.Modules$OverrideModule -&gt; com.google.inject.util.Modules$OverrideModule -&gt; org.apache.druid.cli.CliOverlord$1) 1 error at com.google.inject.internal.Errors.throwCreationExceptionIfErrorsExist(Errors.java:470) at com.google.inject.internal.InternalInjectorCreator.initializeStatically(InternalInjectorCreator.java:155) at com.google.inject.internal.InternalInjectorCreator.build(InternalInjectorCreator.java:107) at com.google.inject.Guice.createInjector(Guice.java:99) at com.google.inject.Guice.createInjector(Guice.java:73) at com.google.inject.Guice.createInjector(Guice.java:62) at org.apache.druid.initialization.Initialization.makeInjectorWithModules(Initialization.java:431) at org.apache.druid.cli.GuiceRunnable.makeInjector(GuiceRunnable.java:69) ... 2 more </code></pre></div>
<p dir="auto">Sometimes we add aggregations to a query just because they are needed in a post-aggregation. On getting the response, we completely disregard the those aggregations and only use post-aggregations.</p> <p dir="auto">Currently, Is there any way to tell druid broker not to include some aggregations in the response?</p> <p dir="auto">Basically, I am looking for a feature where we could specify something at per aggregation basis like following...</p> <p dir="auto">"aggregations": [<br> { "type": "longSum", "name": "sample_name1", "fieldName": "sample_fieldName1" , "includeInResponse":"false"},<br> { "type": "doubleSum", "name": "sample_name2", "fieldName": "sample_fieldName2" }<br> ],</p> <p dir="auto">and the aggregation "sample_name1" is not included in the response.</p>
0
<p dir="auto">I know we're not talking release quality code, that this is still beta...but I do wonder if <code class="notranslate">Insiders.app/Contents/Resources/app/extensions/jrieken.vscode-omnisharp/bin/omnisharp' with process id 47120...</code> should be there. The error is that Omnisharp is not starting "[ERROR:OmniSharp.Dnx.DesignTimeHostManager] Failed to launch DesignTimeHost in a timely fashion."<br> But the main question is if code should include developers' names or be more generically named.</p>
<p dir="auto">Current, my publisher name (jrieken) is used for this extension. We should use a proper publisher like <em>microsoft</em> or <em>dotnet</em></p>
1
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-increment-a-number-with-javascript#?solution=var%20myVar%20%3D%2087%3B%0A%0A%2F%2F%20Only%20change%20code%20below%20this%20line%0AmyVar%20%3D%20myVar%2B%2B%3B%0A%0A" rel="nofollow">Waypoint: Increment a Number with Javascript</a> has an issue.<br> User Agent is: <code class="notranslate">Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36</code>.<br> Please describe how to reproduce this issue, and include links to screenshots if possible.</p> <p dir="auto">My code:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var myVar = 87; // Only change code below this line myVar = myVar++; "><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">myVar</span> <span class="pl-c1">=</span> <span class="pl-c1">87</span><span class="pl-kos">;</span> <span class="pl-c">// Only change code below this line</span> <span class="pl-s1">myVar</span> <span class="pl-c1">=</span> <span class="pl-s1">myVar</span><span class="pl-c1">++</span><span class="pl-kos">;</span> </pre></div> <p dir="auto">This code returns <code class="notranslate">87</code>, but in test is number <code class="notranslate">88</code>, for which works <code class="notranslate">myVar = ++myVar;</code>, but that does not pass "Use the ++ operator".</p>
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-decrement-a-number-with-javascript#?solution=var%20myVar%20%3D%2011%3B%0A%0A%2F%2F%20Only%20change%20code%20below%20this%20line%0AmyVar%20%3D%20myVar--%3B%0A%0A" rel="nofollow">Waypoint: Decrement a Number with Javascript</a> has an issue.<br> User Agent is: <code class="notranslate">Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36</code>.<br> Please describe how to reproduce this issue, and include links to screenshots if possible.</p> <p dir="auto">My code:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var myVar = 11; // Only change code below this line myVar = myVar--;"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">myVar</span> <span class="pl-c1">=</span> <span class="pl-c1">11</span><span class="pl-kos">;</span> <span class="pl-c">// Only change code below this line</span> <span class="pl-s1">myVar</span> <span class="pl-c1">=</span> <span class="pl-s1">myVar</span><span class="pl-c1">--</span><span class="pl-kos">;</span></pre></div> <p dir="auto">This code returns <code class="notranslate">11</code>, but in test is number <code class="notranslate">10</code>, for which works <code class="notranslate">myVar = --myVar;</code>, but that does not pass "Use the -- operator on myVar".</p>
1
<p dir="auto">In pandas, unlike SQL, the rows seemed to be joining on null values. Is this a bug?<br> related SO: <a href="http://stackoverflow.com/questions/23940181/pandas-merging-with-missing-values/23940686#23940686" rel="nofollow">http://stackoverflow.com/questions/23940181/pandas-merging-with-missing-values/23940686#23940686</a></p> <p dir="auto">Code snippet</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 df1 = pd.DataFrame( [[1, None], [2, 'y']], columns = ['A', 'B'] ) print df1 df2 = pd.DataFrame( [['y', 'Y'], [None, 'None1'], [None, 'None2']], columns = ['B', 'C'] ) print df2 print df1.merge(df2, on='B', how='outer')"><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">df1</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>( [[<span class="pl-c1">1</span>, <span class="pl-c1">None</span>], [<span class="pl-c1">2</span>, <span class="pl-s">'y'</span>]], <span class="pl-s1">columns</span> <span class="pl-c1">=</span> [<span class="pl-s">'A'</span>, <span class="pl-s">'B'</span>] ) <span class="pl-k">print</span> <span class="pl-s1">df1</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-s">'y'</span>, <span class="pl-s">'Y'</span>], [<span class="pl-c1">None</span>, <span class="pl-s">'None1'</span>], [<span class="pl-c1">None</span>, <span class="pl-s">'None2'</span>]], <span class="pl-s1">columns</span> <span class="pl-c1">=</span> [<span class="pl-s">'B'</span>, <span class="pl-s">'C'</span>] ) <span class="pl-k">print</span> <span class="pl-s1">df2</span> <span class="pl-k">print</span> <span class="pl-s1">df1</span>.<span class="pl-en">merge</span>(<span class="pl-s1">df2</span>, <span class="pl-s1">on</span><span class="pl-c1">=</span><span class="pl-s">'B'</span>, <span class="pl-s1">how</span><span class="pl-c1">=</span><span class="pl-s">'outer'</span>)</pre></div> <p dir="auto">Output</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" A B 0 1 None 1 2 y B C 0 y Y 1 None None1 2 None None2 A B C 0 1 None None1 1 1 None None2 2 2 y Y"><pre class="notranslate"><code class="notranslate"> A B 0 1 None 1 2 y B C 0 y Y 1 None None1 2 None None2 A B C 0 1 None None1 1 1 None None2 2 2 y Y </code></pre></div> <p dir="auto">You can see row 0 in df1 unexpectedly joins to both rows in df2.</p> <p dir="auto">I would expect the correct answer to be</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" A B C 0 1 None None 1 2 y Y 2 None None None1 3 None None None2"><pre class="notranslate"><code class="notranslate"> A B C 0 1 None None 1 2 y Y 2 None None None1 3 None None None2 </code></pre></div>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import pandas as pd left = pd.DataFrame({&quot;a&quot;: [1, 2, pd.NA]}, dtype=&quot;Int64&quot;) right = pd.DataFrame({&quot;b&quot;: [1, 2, pd.NA]}, dtype=&quot;Int64&quot;) pd.merge(left, right, how=&quot;inner&quot;, left_on=&quot;a&quot;, right_on=&quot;b&quot;) # a b # 0 1 1 # 1 2 2 # 2 &lt;NA&gt; &lt;NA&gt;"><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-s1">left</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>({<span class="pl-s">"a"</span>: [<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-s1">pd</span>.<span class="pl-v">NA</span>]}, <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s">"Int64"</span>) <span class="pl-s1">right</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>({<span class="pl-s">"b"</span>: [<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-s1">pd</span>.<span class="pl-v">NA</span>]}, <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s">"Int64"</span>) <span class="pl-s1">pd</span>.<span class="pl-en">merge</span>(<span class="pl-s1">left</span>, <span class="pl-s1">right</span>, <span class="pl-s1">how</span><span class="pl-c1">=</span><span class="pl-s">"inner"</span>, <span class="pl-s1">left_on</span><span class="pl-c1">=</span><span class="pl-s">"a"</span>, <span class="pl-s1">right_on</span><span class="pl-c1">=</span><span class="pl-s">"b"</span>) <span class="pl-c"># a b</span> <span class="pl-c"># 0 1 1</span> <span class="pl-c"># 1 2 2</span> <span class="pl-c"># 2 &lt;NA&gt; &lt;NA&gt;</span></pre></div> <p dir="auto">(Above is from 1.0.1 and master)</p> <p dir="auto">I think when joining on a nullable column we should not be matching <code class="notranslate">NA</code> with <code class="notranslate">NA</code> and should only be joining where we have unambiguous equality (as in SQL). Also worth noting that this is the same as what happens when we have <code class="notranslate">NaN</code> which also seems incorrect, so could be an opportunity to fix this behavior?</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="pd.merge(left.astype(float), right.astype(float), how=&quot;inner&quot;, left_on=&quot;a&quot;, right_on=&quot;b&quot;) # a b # 0 1.0 1.0 # 1 2.0 2.0 # 2 NaN NaN"><pre class="notranslate"><span class="pl-s1">pd</span>.<span class="pl-en">merge</span>(<span class="pl-s1">left</span>.<span class="pl-en">astype</span>(<span class="pl-s1">float</span>), <span class="pl-s1">right</span>.<span class="pl-en">astype</span>(<span class="pl-s1">float</span>), <span class="pl-s1">how</span><span class="pl-c1">=</span><span class="pl-s">"inner"</span>, <span class="pl-s1">left_on</span><span class="pl-c1">=</span><span class="pl-s">"a"</span>, <span class="pl-s1">right_on</span><span class="pl-c1">=</span><span class="pl-s">"b"</span>) <span class="pl-c"># a b</span> <span class="pl-c"># 0 1.0 1.0</span> <span class="pl-c"># 1 2.0 2.0</span> <span class="pl-c"># 2 NaN NaN</span></pre></div> <h4 dir="auto">Expected Output</h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" a b 0 1 1 1 2 2"><pre class="notranslate"><code class="notranslate"> a b 0 1 1 1 2 2 </code></pre></div> <p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jorisvandenbossche/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jorisvandenbossche">@jorisvandenbossche</a></p>
1
<p dir="auto">This may well be related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="66095631" data-permission-text="Title is private" data-url="https://github.com/atom/atom/issues/6234" data-hovercard-type="issue" data-hovercard-url="/atom/atom/issues/6234/hovercard" href="https://github.com/atom/atom/issues/6234">#6234</a> but I am experiencing a crash in the other direction.</p> <p dir="auto">I am on Arch Linux. When I seek to copy into a markdown file (a pandoc reference of format [xyz2000]) I get a white screen and a notification that the window has crashed.</p>
<p dir="auto">I'm using Atom ver. 0.189.0 on Ubuntu 14.04.2 LTS. When I copy a piece of text in atom and I try to paste it the right-click menu either won't show up or will show up without giving me option to paste. The paste shortcut doesn't work either and it creates issues even if I try to copy and paste text from other programs (after I have coping something from atom). I have disable all the extra plugins, so it isn't a plugin issue. I didn't had this issue with the previous version (I am using webupd8 ppa). If I do a right click on a place where there isn't a text entry (meaning a place where it doesn't support paste anyway) the right click menu appears fine.</p>
1
<p dir="auto">After upgrading to styled-components 5.0.1 from 4.1.9, we're getting these errors.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TS2589: Type instantiation is excessively deep and possibly infinite."><pre class="notranslate"><code class="notranslate">TS2589: Type instantiation is excessively deep and possibly infinite. </code></pre></div> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I tried using the <code class="notranslate">@types/styled-components</code> package and had problems.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I tried using the latest stable version of tsc. <a href="https://www.npmjs.com/package/typescript" rel="nofollow">https://www.npmjs.com/package/typescript</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have a question that is inappropriate for <a href="https://stackoverflow.com/" rel="nofollow">StackOverflow</a>. (Please ask any appropriate questions there).</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/blog/821-mention-somebody-they-re-notified">Mention</a> the authors (see <code class="notranslate">Definitions by:</code> in <code class="notranslate">index.d.ts</code>) so they can respond. <ul dir="auto"> <li>Authors: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Igorbek/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Igorbek">@Igorbek</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Igmat/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Igmat">@Igmat</a> @Lavoaster <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Jessidhia/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Jessidhia">@Jessidhia</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jkillian/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jkillian">@jkillian</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/eps1lon/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/eps1lon">@eps1lon</a> @flavordaaave <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/wagerfield/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/wagerfield">@wagerfield</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Lazyuki/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Lazyuki">@Lazyuki</a> @mgoszcz2</li> </ul> </li> </ul> <p dir="auto">Here's a <a href="http://www.typescriptlang.org/play/index.html?downlevelIteration=true&amp;noUnusedLocals=true&amp;noUnusedParameters=true&amp;jsx=2#code/JYWwDg9gTgLgBAKjgQwM5wEoFNkGN4BmUEIcA5FDvmQNwCwAUKJLHKjAJ4A2WAJnERLl23PgFpcJSADss0mKlqNGAegQJGiOABEsqXFGAAjPXBgALLGawAPQtBRxJ4CLPkA6TQhWNg8rFAEeFYAktrAAG7AvAFwAN6aKKgA-ABccADWWBwQBHAAUgDKABruIfKG0qjAuACiPCByCvQMcNZ2aWwwlQDmLQC+ygxqGq1IAEJoVlgNTXAA7sAWXdx+PShgYFzAfJ5jPgySVfCTqFYAvCs8vO68kQA8YZHRAQB8AAaJd6hbyBzpBB4NhabWQ2x60jESywIFQ6SMU22shaiQAZKlUiYCNAsAAaNEY5AEGCxBKtNpOVwk+TpMhKcltb6-f5wIxcCC4DIgimQaowYCudKULjIfkRLDctowCBgdJidwAVlskrglmAPXMMHSAEYwMDEm1FrwLDqAAymgCkKoRnJ6xAArtJeOlcPaoJR5ABhCDsqDcwbk9GYrDYyjxA1wEDIKA9PxiQwarVwAAcev9BNSRJJUHDDMj0djkJ4xPSqf15ID7xRh1c7DgABVbPBLiJru4fshpJ9yYDbDq4KaUPbpS0q0MRl4dM8YjnnDI5hZRXAPTP0J24DMYXNFss7lEZ1c1hstjsbl4Dkc6+F9wF0tg8DB3AAxT2Pa8vKCvOCXAAUcXaMC4nA7ggZQdb9AAlN+X4-ok9ynFYJJ2OccRITA-TxCB7hgehy4+lg5wAERnGA0aitAhGvBG9yNnYryoU2-T3CotEwFR5LMQh7EQdWtgsPAMRBPaXDwO+M4tEAA" rel="nofollow">playground link</a> that <strong><em>DOESN'T</em></strong> show the error, but this error in an actual project will definitely show. In our case, in many multiple files. Everything was fine before the update.</p> <p dir="auto">The error shows on <code class="notranslate">text={text} {...rest} role="separator"</code> and disappears when removing <code class="notranslate">{...rest}</code>.</p> <p dir="auto">All is well if I don't upgrade this package, even when I <em>do</em> upgrade styled-components itself.</p> <p dir="auto">It might help to know as well that we're on Typescript 3.8.3. Perhaps a newer typescript is stricter in some magical way, although I seriously doubt they'd introduce such impressively strange breaking changes.</p>
<p dir="auto"><strong>TypeScript Version:</strong> 3.7.2, 3.8.0-dev.20191102 (worked in 3.6)</p> <p dir="auto"><strong>Search Terms:</strong></p> <ul dir="auto"> <li>Type instantiation is excessively deep and possibly infinite.ts(2589)</li> <li>Mapped types</li> <li>Generics</li> <li>Conditional types</li> </ul> <p dir="auto"><strong>Code</strong></p> <p dir="auto">Note: <strong>this issue manifests itself only in our codebase</strong>. When you run the same code in TypeScript Playground, it seems to be working fine.</p> <p dir="auto">The snippet is hardly minimal, but I reduced it as much as I could. I recorded <a href="https://streamable.com/pjkrk" rel="nofollow">a video</a> where exactly the same code yields an error different than the one in TypeScript Playground. I tried with two versions of TypeScript: <code class="notranslate">3.7.2</code> and <code class="notranslate">3.8.0-dev.20191102</code>. It worked correctly with <code class="notranslate">3.6</code>.</p> <p dir="auto">Since <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/sheetalkamat/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/sheetalkamat">@sheetalkamat</a> and <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/DanielRosenwasser/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/DanielRosenwasser">@DanielRosenwasser</a> have access to our repository, you're welcome to have a look at <a href="https://github.com/unsplash/unsplash-web/pull/4243">this PR</a>. Copy-paste the code below anywhere in the project to see the error.</p> <p dir="auto">The versions of types used:</p> <ul dir="auto"> <li><code class="notranslate">@types/history@4.7.3</code></li> <li><code class="notranslate">@types/react@16.9.11</code></li> <li><code class="notranslate">@types/react-router-dom@5.1.0</code></li> <li><code class="notranslate">@types/recompose@0.30.7</code></li> </ul> <p dir="auto"><strong>Note</strong>: Interestingly enough, if you change:</p> <div class="highlight highlight-source-diff notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="- declare const Button: React.FunctionComponent&lt;Omit&lt;Props, never&gt;&gt;; + declare const Button: React.FunctionComponent&lt;Props&gt;;"><pre class="notranslate"><span class="pl-md"><span class="pl-md">-</span> declare const Button: React.FunctionComponent&lt;Omit&lt;Props, never&gt;&gt;;</span> <span class="pl-mi1"><span class="pl-mi1">+</span> declare const Button: React.FunctionComponent&lt;Props&gt;;</span></pre></div> <p dir="auto">it works again despite the fact <code class="notranslate">Omit&lt;Props, never&gt;</code> should be the same as just <code class="notranslate">Props</code>.</p> <details> <summary>Source code</summary> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { History } from 'history'; // &quot;4.7.3&quot; import * as React from 'react'; // &quot;16.9.11&quot; import { LinkProps, RouteComponentProps, withRouter } from 'react-router-dom'; // &quot;5.1.0&quot; import { getDisplayName } from 'recompose'; // &quot;0.30.7&quot; declare function isDefined&lt;T&gt;(candidate: T | null | undefined): candidate is T; declare function isString(value?: any): value is string; type ObjectOmit&lt;T extends K, K&gt; = Omit&lt;T, keyof K&gt;; type OnClick = NonNullable&lt;React.ComponentProps&lt;'button'&gt;['onClick']&gt;; type OnClickProp = { /** If there is a custom click handler, we must preserve it. */ onClick?: OnClick; }; type ProvidedProps = OnClickProp; type InputProps = OnClickProp &amp; { /** Note: we want this helper to work with all sorts of modals, not just those backed by query * parameters (e.g. `/photo/:id/info`), which is why this must accept a full location instead of a * `Modal` type. * */ to: Exclude&lt;LinkProps['to'], Function&gt;; }; const buildClickHandler = ({ to, onClick, history, }: InputProps &amp; { history: History; }): OnClick =&gt; { const navigate = () =&gt; { // https://github.com/Microsoft/TypeScript/issues/14107 isString(to) ? history.push(to) : history.push(to); }; return event =&gt; { [onClick, navigate].filter(isDefined).forEach(callback =&gt; callback(event)); }; }; /** See the test for an example of usage. */ export const enhance = &lt;ComposedProps extends ProvidedProps&gt;( ComposedComponent: React.ComponentType&lt;ComposedProps&gt;, ) =&gt; { type PassThroughComposedProps = ObjectOmit&lt;ComposedProps, ProvidedProps&gt;; type OwnProps = InputProps &amp; RouteComponentProps&lt;never&gt; &amp; PassThroughComposedProps; type Props = OwnProps; const displayName = `CreateModalLink(${getDisplayName(ComposedComponent)})`; const ModalLink: React.FunctionComponent&lt;Props&gt; = ({ to, onClick, history, // We specify these just to omit them from rest props below location, match, staticContext, ...passThroughComposedProps }) =&gt; { const clickHandler = buildClickHandler({ to, onClick, history }); const composedProps: ComposedProps = { // Note: this is technically unsafe, since the composed component may have props // with names matching the ones we're omitting. // https://github.com/microsoft/TypeScript/issues/28884#issuecomment-503540848 ...((passThroughComposedProps as unknown) as PassThroughComposedProps), onClick: clickHandler, } as ComposedProps; return &lt;ComposedComponent {...composedProps} /&gt;; }; ModalLink.displayName = displayName; return withRouter(ModalLink); }; type Props = React.ComponentPropsWithoutRef&lt;'button'&gt; &amp; Required&lt;Pick&lt;React.ComponentPropsWithoutRef&lt;'button'&gt;, 'type'&gt;&gt;; /** * This one errors. */ declare const Button: React.FunctionComponent&lt;Omit&lt;Props, never&gt;&gt;; /** * This one works. */ // declare const Button: React.FunctionComponent&lt;Props&gt;; const EnhancedButton = enhance(Button); /** * Type instantiation is excessively deep and possibly infinite.ts(2589). */ () =&gt; &lt;EnhancedButton&gt;&lt;/EnhancedButton&gt;; "><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-smi">History</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'history'</span><span class="pl-kos">;</span> <span class="pl-c">// "4.7.3"</span> <span class="pl-k">import</span> <span class="pl-c1">*</span> <span class="pl-k">as</span> <span class="pl-smi">React</span> <span class="pl-k">from</span> <span class="pl-s">'react'</span><span class="pl-kos">;</span> <span class="pl-c">// "16.9.11"</span> <span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-smi">LinkProps</span><span class="pl-kos">,</span> <span class="pl-smi">RouteComponentProps</span><span class="pl-kos">,</span> <span class="pl-s1">withRouter</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'react-router-dom'</span><span class="pl-kos">;</span> <span class="pl-c">// "5.1.0"</span> <span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">getDisplayName</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'recompose'</span><span class="pl-kos">;</span> <span class="pl-c">// "0.30.7"</span> <span class="pl-k">declare</span> <span class="pl-k">function</span> <span class="pl-s1">isDefined</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">candidate</span>: <span class="pl-smi">T</span> <span class="pl-c1">|</span> <span class="pl-c1">null</span> <span class="pl-c1">|</span> <span class="pl-c1">undefined</span><span class="pl-kos">)</span>: <span class="pl-s1">candidate</span> is <span class="pl-smi">T</span><span class="pl-kos">;</span> <span class="pl-k">declare</span> <span class="pl-k">function</span> <span class="pl-s1">isString</span><span class="pl-kos">(</span><span class="pl-s1">value</span>?: <span class="pl-smi">any</span><span class="pl-kos">)</span>: <span class="pl-s1">value</span> is <span class="pl-smi">string</span><span class="pl-kos">;</span> <span class="pl-k">type</span> <span class="pl-smi">ObjectOmit</span><span class="pl-c1">&lt;</span><span class="pl-smi">T</span> <span class="pl-k">extends</span> <span class="pl-smi">K</span><span class="pl-kos">,</span> <span class="pl-smi">K</span><span class="pl-c1">&gt;</span> <span class="pl-c1">=</span> <span class="pl-smi">Omit</span><span class="pl-kos">&lt;</span><span class="pl-smi">T</span><span class="pl-kos">,</span> <span class="pl-k">keyof</span> <span class="pl-smi">K</span><span class="pl-kos">&gt;</span><span class="pl-kos">;</span> <span class="pl-k">type</span> <span class="pl-smi">OnClick</span> <span class="pl-c1">=</span> <span class="pl-smi">NonNullable</span><span class="pl-kos">&lt;</span><span class="pl-smi">React</span><span class="pl-kos">.</span><span class="pl-smi">ComponentProps</span><span class="pl-kos">&lt;</span><span class="pl-s">'button'</span><span class="pl-kos">&gt;</span><span class="pl-kos">[</span><span class="pl-s">'onClick'</span><span class="pl-kos">]</span><span class="pl-kos">&gt;</span><span class="pl-kos">;</span> <span class="pl-k">type</span> <span class="pl-smi">OnClickProp</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span> <span class="pl-c">/** If there is a custom click handler, we must preserve it. */</span> <span class="pl-c1">onClick</span>?: <span class="pl-smi">OnClick</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-k">type</span> <span class="pl-smi">ProvidedProps</span> <span class="pl-c1">=</span> <span class="pl-smi">OnClickProp</span><span class="pl-kos">;</span> <span class="pl-k">type</span> <span class="pl-smi">InputProps</span> <span class="pl-c1">=</span> <span class="pl-smi">OnClickProp</span> <span class="pl-c1">&amp;</span> <span class="pl-kos">{</span> <span class="pl-c">/** Note: we want this helper to work with all sorts of modals, not just those backed by query</span> <span class="pl-c"> * parameters (e.g. `/photo/:id/info`), which is why this must accept a full location instead of a</span> <span class="pl-c"> * `Modal` type.</span> <span class="pl-c"> * */</span> <span class="pl-c1">to</span>: <span class="pl-smi">Exclude</span><span class="pl-kos">&lt;</span><span class="pl-smi">LinkProps</span><span class="pl-kos">[</span><span class="pl-s">'to'</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-smi">Function</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">const</span> <span class="pl-en">buildClickHandler</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-kos">{</span> to<span class="pl-kos">,</span> onClick<span class="pl-kos">,</span> history<span class="pl-kos">,</span> <span class="pl-kos">}</span>: <span class="pl-smi">InputProps</span> <span class="pl-c1">&amp;</span> <span class="pl-kos">{</span> <span class="pl-c1">history</span>: <span class="pl-smi">History</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span>: <span class="pl-smi">OnClick</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">const</span> <span class="pl-en">navigate</span> <span class="pl-c1">=</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-c">// https://github.com/Microsoft/TypeScript/issues/14107</span> <span class="pl-en">isString</span><span class="pl-kos">(</span><span class="pl-s1">to</span><span class="pl-kos">)</span> ? <span class="pl-s1">history</span><span class="pl-kos">.</span><span class="pl-en">push</span><span class="pl-kos">(</span><span class="pl-s1">to</span><span class="pl-kos">)</span> : <span class="pl-s1">history</span><span class="pl-kos">.</span><span class="pl-en">push</span><span class="pl-kos">(</span><span class="pl-s1">to</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">event</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-kos">[</span><span class="pl-s1">onClick</span><span class="pl-kos">,</span> <span class="pl-s1">navigate</span><span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-en">filter</span><span class="pl-kos">(</span><span class="pl-s1">isDefined</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">forEach</span><span class="pl-kos">(</span><span class="pl-s1">callback</span> <span class="pl-c1">=&gt;</span> <span class="pl-en">callback</span><span class="pl-kos">(</span><span class="pl-s1">event</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-c">/** See the test for an example of usage. */</span> <span class="pl-k">export</span> <span class="pl-k">const</span> <span class="pl-en">enhance</span> <span class="pl-c1">=</span> <span class="pl-c1">&lt;</span><span class="pl-smi">ComposedProps</span> <span class="pl-k">extends</span> <span class="pl-smi">ProvidedProps</span><span class="pl-c1">&gt;</span><span class="pl-kos">(</span> <span class="pl-smi">ComposedComponent</span>: <span class="pl-smi">React</span><span class="pl-kos">.</span><span class="pl-smi">ComponentType</span><span class="pl-kos">&lt;</span><span class="pl-smi">ComposedProps</span><span class="pl-kos">&gt;</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">type</span> <span class="pl-smi">PassThroughComposedProps</span> <span class="pl-c1">=</span> <span class="pl-smi">ObjectOmit</span><span class="pl-kos">&lt;</span><span class="pl-smi">ComposedProps</span><span class="pl-kos">,</span> <span class="pl-smi">ProvidedProps</span><span class="pl-kos">&gt;</span><span class="pl-kos">;</span> <span class="pl-k">type</span> <span class="pl-smi">OwnProps</span> <span class="pl-c1">=</span> <span class="pl-smi">InputProps</span> <span class="pl-c1">&amp;</span> <span class="pl-smi">RouteComponentProps</span><span class="pl-kos">&lt;</span><span class="pl-smi">never</span><span class="pl-kos">&gt;</span> <span class="pl-c1">&amp;</span> <span class="pl-smi">PassThroughComposedProps</span><span class="pl-kos">;</span> <span class="pl-k">type</span> <span class="pl-smi">Props</span> <span class="pl-c1">=</span> <span class="pl-smi">OwnProps</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">displayName</span> <span class="pl-c1">=</span> <span class="pl-s">`CreateModalLink(<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-en">getDisplayName</span><span class="pl-kos">(</span><span class="pl-smi">ComposedComponent</span><span class="pl-kos">)</span><span class="pl-kos">}</span></span>)`</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-smi">ModalLink</span>: <span class="pl-smi">React</span><span class="pl-kos">.</span><span class="pl-smi">FunctionComponent</span><span class="pl-kos">&lt;</span><span class="pl-smi">Props</span><span class="pl-kos">&gt;</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-kos">{</span> to<span class="pl-kos">,</span> onClick<span class="pl-kos">,</span> history<span class="pl-kos">,</span> <span class="pl-c">// We specify these just to omit them from rest props below</span> location<span class="pl-kos">,</span> match<span class="pl-kos">,</span> staticContext<span class="pl-kos">,</span> ...<span class="pl-s1">passThroughComposedProps</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">clickHandler</span> <span class="pl-c1">=</span> <span class="pl-en">buildClickHandler</span><span class="pl-kos">(</span><span class="pl-kos">{</span> to<span class="pl-kos">,</span> onClick<span class="pl-kos">,</span> history <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">composedProps</span>: <span class="pl-smi">ComposedProps</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span> <span class="pl-c">// Note: this is technically unsafe, since the composed component may have props</span> <span class="pl-c">// with names matching the ones we're omitting.</span> <span class="pl-c">// https://github.com/microsoft/TypeScript/issues/28884#issuecomment-503540848</span> ...<span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">passThroughComposedProps</span> <span class="pl-k">as</span> <span class="pl-smi">unknown</span><span class="pl-kos">)</span> <span class="pl-k">as</span> <span class="pl-smi">PassThroughComposedProps</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-c1">onClick</span>: <span class="pl-s1">clickHandler</span><span class="pl-kos">,</span> <span class="pl-kos">}</span> <span class="pl-k">as</span> <span class="pl-smi">ComposedProps</span><span class="pl-kos">;</span> <span class="pl-k">return</span> <span class="pl-kos">&lt;</span><span class="pl-smi">ComposedComponent</span><span class="pl-kos"></span> <span class="pl-kos">{</span>...<span class="pl-s1">composedProps</span><span class="pl-kos">}</span> <span class="pl-c1">/</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-smi">ModalLink</span><span class="pl-kos">.</span><span class="pl-c1">displayName</span> <span class="pl-c1">=</span> <span class="pl-s1">displayName</span><span class="pl-kos">;</span> <span class="pl-k">return</span> <span class="pl-en">withRouter</span><span class="pl-kos">(</span><span class="pl-smi">ModalLink</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">type</span> <span class="pl-smi">Props</span> <span class="pl-c1">=</span> <span class="pl-smi">React</span><span class="pl-kos">.</span><span class="pl-smi">ComponentPropsWithoutRef</span><span class="pl-kos">&lt;</span><span class="pl-s">'button'</span><span class="pl-kos">&gt;</span> <span class="pl-c1">&amp;</span> <span class="pl-smi">Required</span><span class="pl-kos">&lt;</span><span class="pl-smi">Pick</span><span class="pl-kos">&lt;</span><span class="pl-smi">React</span><span class="pl-kos">.</span><span class="pl-smi">ComponentPropsWithoutRef</span><span class="pl-kos">&lt;</span><span class="pl-s">'button'</span><span class="pl-kos">&gt;</span><span class="pl-kos">,</span> <span class="pl-s">'type'</span><span class="pl-kos">&gt;</span><span class="pl-kos">&gt;</span><span class="pl-kos">;</span> <span class="pl-c">/**</span> <span class="pl-c"> * This one errors.</span> <span class="pl-c"> */</span> <span class="pl-k">declare</span> <span class="pl-k">const</span> <span class="pl-smi">Button</span>: <span class="pl-smi">React</span><span class="pl-kos">.</span><span class="pl-smi">FunctionComponent</span><span class="pl-kos">&lt;</span><span class="pl-smi">Omit</span><span class="pl-kos">&lt;</span><span class="pl-smi">Props</span><span class="pl-kos">,</span> <span class="pl-smi">never</span><span class="pl-kos">&gt;</span><span class="pl-kos">&gt;</span><span class="pl-kos">;</span> <span class="pl-c">/**</span> <span class="pl-c"> * This one works.</span> <span class="pl-c"> */</span> <span class="pl-c">// declare const Button: React.FunctionComponent&lt;Props&gt;;</span> <span class="pl-k">const</span> <span class="pl-smi">EnhancedButton</span> <span class="pl-c1">=</span> <span class="pl-en">enhance</span><span class="pl-kos">(</span><span class="pl-smi">Button</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">/**</span> <span class="pl-c"> * Type instantiation is excessively deep and possibly infinite.ts(2589).</span> <span class="pl-c"> */</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-smi">EnhancedButton</span><span class="pl-kos">&gt;</span><span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-smi">EnhancedButton</span><span class="pl-c1">&gt;</span><span class="pl-kos">;</span> </pre></div> </details> <p dir="auto"><strong>Expected behavior:</strong></p> <p dir="auto">I should get a proper error about missing properties (not the one about type instantiation):</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Type '{}' is missing the following properties from type 'Readonly&lt;Pick&lt;OwnProps, &quot;form&quot; | &quot;style&quot; | &quot;title&quot; | &quot;onClick&quot; | &quot;to&quot; | &quot;key&quot; | &quot;autoFocus&quot; | &quot;disabled&quot; | &quot;formAction&quot; | &quot;formEncType&quot; | &quot;formMethod&quot; | &quot;formNoValidate&quot; | &quot;formTarget&quot; | ... 252 more ... | &quot;onTransitionEndCapture&quot;&gt;&gt;': to, type(2739)"><pre class="notranslate"><code class="notranslate">Type '{}' is missing the following properties from type 'Readonly&lt;Pick&lt;OwnProps, "form" | "style" | "title" | "onClick" | "to" | "key" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | ... 252 more ... | "onTransitionEndCapture"&gt;&gt;': to, type(2739) </code></pre></div> <p dir="auto"><strong>Actual behavior:</strong></p> <p dir="auto">I'm getting this:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Type instantiation is excessively deep and possibly infinite.ts(2589)."><pre class="notranslate"><code class="notranslate">Type instantiation is excessively deep and possibly infinite.ts(2589). </code></pre></div> <p dir="auto"><strong>Playground Link:</strong> </p> <p dir="auto"><a href="https://www.typescriptlang.org/play/?jsx=2#code/JYWwDg9gTgLgBAbzgCWAZxtAnnAvnAMyghDgHIALdTKLMgbgChRJY4AqOAQzTgCUAplwDG8IiXJQhohs3DR4SADLAAdgGsACsTBoANPwgBXGAIDCJSKoGqY2iLoMB3YDAp9jpqHkLFSZKREYAFpiEwEoYIATElkWBUQ4AHMBGAARdDAAGy4sADkuEAEfcX8pYUsINAFZRiiBYRypQiNVUWAIVTh0NIECNQEogB4AFQA+AAphLlUo4CiuUwAuOBG4AB84VSMsrI24Vvr+6yiAShXp2fnF4vRVpnrGrmaCVvbO7rQAZRgoNSSJgA3LhZIwCAD8KxmWHOcGBoNuvAwf1USSYjBgWDAxQA8gAjABWDRgOJArlGcAEAA9TLNeABpAz0sZwAC8cFJ5JGBnUAiwEAIcGZ6Mx2I5qjMWWAwnUbLgeU6eR2OTxWQEQ0EQQAdBZ5NZbPZdEMyHiTJhVGQxgBtMidSXS9RkAC6YxFWNxEqlMsNcoQjDgcAA9OxOABJQVuCKI7hwYRGDASRoOuAUGZRNVQZzFEDx+BgKTVKCA24wLUcQP+uB2r3qSHi+0ypi4N1i+yA+aDQ28dk4z0Ow0t4qh1RgExduW9htaHRwABkiErwc4CuWcCcxScM3gbjuFAEWWx3kwa+gspcbm4uzgaAUvAFcBAEAWWX0Wwg8AJubgbiqxTxIl5KI4DxHAAEcwVoSsODgMBnkKVIIl4CYBC1JIywAA0DMAKHfCBAyWeZAzUAgIHQ05nCoYQKE+NcKBwHdeBzDBuGEYQBDAeAuBaK8sggaYYA6Lo1AwIQgPvLgoM4dCAFknxBdDv3dLVJPLStMBWABRKlGiMeohhUDQuxtTBnQMAAxN4BM6V1GGbRhGAqVRmNNYAsiiKdkDTDM5QmP0A0wPRK2rB1AoDKgE1oQLcBWYdRzsHReHnPyU2obAVlQCKsCbWFJxrNkWWSxzmNULh2ySG4fNOfKFwDANA0DFMYBgXQlnqpJXAoIw8S1CoQEDaTpWIG8CBgQMRndL5hD+DiiLQNAwTQQMAEYABYloABgAdigz4fhRAFMCq8EUsyrVRzQCgJkOuAVnCmgsDO+NLsOpgAzsyspBgIwoC6ARi1sarkoDK1gplAwSrKm4nS1fosi8CYej6AYzhh6ANJES7pl2f8ZWqrGshx9RkP+mBTlOV68CbdElzgL4BGKSNvwEZiSO8GZKSpQpsmKe94y4FIy3YCtqVYeAivgGxUzaYp2SGXVIGqKJx2pWkol4NsOyVhLJkreXf3cyp9RgFZNVEHVDZsGBxuxOXKkVrsxkCqrWQKtT3TgTQeDQEYKDCJIKD1+2EonQliU5GBbfkIOHFfDX6i1mObP892cScVRx3ZWKx2D+cPHCPWja7IZrGLKAWXnT25p9v2A7tzsEop0Vigzjk067dEA3FuA5jQbJcgKIo5XQsxAlMWTnwMomABIEBSdJMhyfJ4ImQPBgLy3TlwU50I72NOmY8eQUnk3pFLCy2isiULdsIYHZ8oHvwgULatB9RAp2u7sGfuqGoAdWKXuDRgAEHonuaocBPzMWPCQVw349ykFKHAAseZg54n3BAJwO1eL8UEt-B8iwqJ4IwIsaUFhbAq3frVOAWoaGwSrr7Yw-tV4J10JWLegMdpdyTDKTysxvLshcm5DyXkIi+UfgYV+BhP60DwOTeyVCuF1xYWgFYzCW4Px-vKd8AgVgMRoqYKiqhpQgiyDgVoaAuAEAEAYNAag2JwOKL1BWgw956ktvgnAqZiwwQSjtTR55qIlSKIxAhVBUQOKrNYXg64Ag8zJE1f4ykqGaIoE1FqbUOpdR6iQQMZIppVAFKNa2AhJrTVGugeazNAwACYAAc9SVoAGIKlgl6kUWwwQACs60ADMnSVrrVqStWpfjqE0ImBMOh3sGFGCYUo8cPADgaFUBg1QVVFmV2mTXNRCVyKjNfhcGsvD0wRDwfgRZOyY67wDJ9b6XRI7OINm4gGCAaHZKjvXGO+BAxJ0pvIuAh8siTy1D3PuS9B7slBYvAeAhd63J+muDqed4aAsnnI96TcPbB3ZKbUs68DQJV-h1TwggCDGlNE1Tolo5yVkEOBYAUhhiaAdBqU+5tnnxRjkSn8JhSXkrNFSx25Am6WhsowJc-pOA+zuJ0YoERiBQDQEkoWdQGhNEcfveAAAhAVqgT7anPu8K+HKhjh1vglcGf0IhjDFRK6C0q7zWBPFAdQSrJUVnqt3NVzwNVOW1bq-VZtDWX3xRHB26Iu4aVUFLNiUQdWUq6OySWMw2ITHjeaOR4qQyStWO7YSMAtzABIR8O41I2JzWAMWUxXr2LcFmDBKotjVQ4GImoVwKEYBoAmNUzptSACcpxlUVgmM7FkQwo0xsGOm6yQxAwTpTVO3VYqgA" rel="nofollow">Playground Link</a></p> <p dir="auto"><strong>Related Issues:</strong> </p> <ul dir="auto"> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="477467243" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript/issues/32735" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/32735/hovercard" href="https://github.com/microsoft/TypeScript/issues/32735">#32735</a></li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="515650563" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript/issues/34850" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/34850/hovercard" href="https://github.com/microsoft/TypeScript/issues/34850">#34850</a></li> </ul>
1
<h3 dir="auto">Feature request</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Page.PdfOptions pdfOptions = new Page.PdfOptions() .setMargin(new Margin().setTop(&quot;0.25in&quot;).setBottom(&quot;0.25in&quot;).setLeft(&quot;0.25in&quot;).setRight(&quot;0.25in&quot;))"><pre class="notranslate"><code class="notranslate">Page.PdfOptions pdfOptions = new Page.PdfOptions() .setMargin(new Margin().setTop("0.25in").setBottom("0.25in").setLeft("0.25in").setRight("0.25in")) </code></pre></div> <p dir="auto">works, but</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Page.PdfOptions pdfOptions = new Page.PdfOptions() .setMargin(new Margin().setTop(&quot;1em&quot;).setBottom(&quot;1em&quot;).setLeft(&quot;1em&quot;).setRight(&quot;1em&quot;))"><pre class="notranslate"><code class="notranslate">Page.PdfOptions pdfOptions = new Page.PdfOptions() .setMargin(new Margin().setTop("1em").setBottom("1em").setLeft("1em").setRight("1em")) </code></pre></div> <p dir="auto">causes the error <code class="notranslate">Failed to parse parameter value: 1em</code></p>
<h3 dir="auto">Feature request</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Page.PdfOptions pdfOptions = new Page.PdfOptions() .setMargin(new Margin().setTop(&quot;0.25in&quot;).setBottom(&quot;0.25in&quot;).setLeft(&quot;0.25in&quot;).setRight(&quot;0.25in&quot;))"><pre class="notranslate"><code class="notranslate">Page.PdfOptions pdfOptions = new Page.PdfOptions() .setMargin(new Margin().setTop("0.25in").setBottom("0.25in").setLeft("0.25in").setRight("0.25in")) </code></pre></div> <p dir="auto">works, but</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Page.PdfOptions pdfOptions = new Page.PdfOptions() .setMargin(new Margin().setTop(&quot;1em&quot;).setBottom(&quot;1em&quot;).setLeft(&quot;1em&quot;).setRight(&quot;1em&quot;))"><pre class="notranslate"><code class="notranslate">Page.PdfOptions pdfOptions = new Page.PdfOptions() .setMargin(new Margin().setTop("1em").setBottom("1em").setLeft("1em").setRight("1em")) </code></pre></div> <p dir="auto">causes the error <code class="notranslate">Failed to parse parameter value: 1em</code></p>
1
<p dir="auto">The current Java API's <code class="notranslate">Tensor.create(Object)</code> is really slow - for a batch of 128 images of size 224x224x3 it's taking around 1.5seconds. To put this into perspective <code class="notranslate">runner.run()</code> with that data and an InceptionV3 graph took below 1second so data prep is x1.5 of the runtime here (for a batch of 32 images it's around 0.35-0.45sec).</p> <p dir="auto">Is this working as intended? When running the Python code (using simple <code class="notranslate">sess.run(fetches, feed_dict=feed_dict)</code>) with which the graph meta file was generated (TF 1.0.1) and feeding a Python array I don't see such hiccups, the speed is the same as the Java <code class="notranslate">runner.run()</code>.</p> <p dir="auto">Might it be because of build flags used, maybe I'm missing some optimizations?</p> <p dir="auto">For now this small part is killing the whole performance, bringing it down from 130obs/sec (<code class="notranslate">runner.run()</code> time) to about ~45obs/sec (Tensor.create+run()).</p> <p dir="auto">A bit of a sidenote, the performance page states:</p> <blockquote> <p dir="auto">This will result in poor performance.<br> sess.run(train_step, feed_dict={x: batch_xs, y_: batch_ys})</p> </blockquote> <p dir="auto">But currently there's no other way to feed data from the Java API, right? A queue (able to read from a file and from memory, i.e. from a Java structure) would be amazing.</p> <h3 dir="auto">Jar build command</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="export CC=&quot;/usr/bin/gcc&quot; export CXX=&quot;/usr/bin/g++&quot; export TF_NEED_CUDA=1 export GCC_HOST_COMPILER_PATH=$CC export BUILDFLAGS=&quot;--config=cuda --copt=-m64 --linkopt=-m64 --copt=-march=native&quot; bazel build -c opt \ //tensorflow/java:tensorflow \ //tensorflow/java:libtensorflow_jni \ $BUILDFLAGS --spawn_strategy=standalone --genrule_strategy=standalone"><pre class="notranslate"><code class="notranslate">export CC="/usr/bin/gcc" export CXX="/usr/bin/g++" export TF_NEED_CUDA=1 export GCC_HOST_COMPILER_PATH=$CC export BUILDFLAGS="--config=cuda --copt=-m64 --linkopt=-m64 --copt=-march=native" bazel build -c opt \ //tensorflow/java:tensorflow \ //tensorflow/java:libtensorflow_jni \ $BUILDFLAGS --spawn_strategy=standalone --genrule_strategy=standalone </code></pre></div> <h3 dir="auto">Environment info</h3> <p dir="auto"><strong>OS:</strong> Ubuntu 16.04<br> <strong>GPU:</strong> GPU TITAN X (Pascal) 12GB<br> <strong>CPU:</strong> Intel® Xeon® Processor E5-2630 v4 10core<br> <strong>GPU Drivers:</strong><br> NVidia CUDA Driver Version: 375.39<br> CUDNN 5.1.5<br> CUDA 8<br> <strong>Tensorflow version:</strong> JAR file built from current master (<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/tensorflow/tensorflow/commit/c25ecb53ae0a8b3ebe4b30238433a7588dbe8537/hovercard" href="https://github.com/tensorflow/tensorflow/commit/c25ecb53ae0a8b3ebe4b30238433a7588dbe8537"><tt>c25ecb5</tt></a>)</p> <h3 dir="auto">Example</h3> <div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="public void test() { Random r = new Random(); int imageSize = 224 * 224 * 3; int batch = 128; float[][] input = new float[batch][imageSize]; for(int i = 0; i &lt; batch; i++) { for(int j = 0; j &lt; imageSize; j++) { input[i][j] = r.nextFloat(); } } long start = System.nanoTime(); Tensor.create(input); long end = System.nanoTime(); // Around 1.5sec System.out.println(&quot;Took: &quot; + (end - start)); }"><pre class="notranslate"><span class="pl-k">public</span> <span class="pl-smi">void</span> <span class="pl-s1">test</span>() { <span class="pl-smi">Random</span> <span class="pl-s1">r</span> = <span class="pl-k">new</span> <span class="pl-smi">Random</span>(); <span class="pl-smi">int</span> <span class="pl-s1">imageSize</span> = <span class="pl-c1">224</span> * <span class="pl-c1">224</span> * <span class="pl-c1">3</span>; <span class="pl-smi">int</span> <span class="pl-s1">batch</span> = <span class="pl-c1">128</span>; <span class="pl-smi">float</span>[][] <span class="pl-s1">input</span> = <span class="pl-k">new</span> <span class="pl-smi">float</span>[<span class="pl-s1">batch</span>][<span class="pl-s1">imageSize</span>]; <span class="pl-k">for</span>(<span class="pl-smi">int</span> <span class="pl-s1">i</span> = <span class="pl-c1">0</span>; <span class="pl-s1">i</span> &lt; <span class="pl-s1">batch</span>; <span class="pl-s1">i</span>++) { <span class="pl-k">for</span>(<span class="pl-smi">int</span> <span class="pl-s1">j</span> = <span class="pl-c1">0</span>; <span class="pl-s1">j</span> &lt; <span class="pl-s1">imageSize</span>; <span class="pl-s1">j</span>++) { <span class="pl-s1">input</span>[<span class="pl-s1">i</span>][<span class="pl-s1">j</span>] = <span class="pl-s1">r</span>.<span class="pl-en">nextFloat</span>(); } } <span class="pl-smi">long</span> <span class="pl-s1">start</span> = <span class="pl-smi">System</span>.<span class="pl-en">nanoTime</span>(); <span class="pl-smi">Tensor</span>.<span class="pl-en">create</span>(<span class="pl-s1">input</span>); <span class="pl-smi">long</span> <span class="pl-s1">end</span> = <span class="pl-smi">System</span>.<span class="pl-en">nanoTime</span>(); <span class="pl-c">// Around 1.5sec</span> <span class="pl-smi">System</span>.<span class="pl-s1">out</span>.<span class="pl-en">println</span>(<span class="pl-s">"Took: "</span> + (<span class="pl-s1">end</span> - <span class="pl-s1">start</span>)); }</pre></div>
<p dir="auto"><strong>System information</strong></p> <ul dir="auto"> <li>Have I written custom code (as opposed to using a stock example script provided in TensorFlow): <strong>yes</strong></li> <li>OS Platform and Distribution (e.g., Linux Ubuntu 16.04): <strong>OS X El Capitan 10.11.6 (15G22010)</strong></li> <li>Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: <strong>N/A</strong></li> <li>TensorFlow installed from (source or binary): <strong>binary (anaconda)</strong><br> output from <code class="notranslate">conda list tensorflow</code>:</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="tensorflow 1.12.0 mkl_py36h2b2bbaf_0 tensorflow-base 1.12.0 mkl_py36h70e0e9a_0 "><pre class="notranslate"><code class="notranslate">tensorflow 1.12.0 mkl_py36h2b2bbaf_0 tensorflow-base 1.12.0 mkl_py36h70e0e9a_0 </code></pre></div> <ul dir="auto"> <li>TensorFlow version (use command below): <strong>b'unknown' 1.12.0</strong></li> <li>Python version:<br> <strong>Python 3.6.6 |Anaconda custom (64-bit)| (default, Jun 28 2018, 11:07:29) **<br> [GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)] on darwin</strong></li> <li>Bazel version (if compiling from source): <strong>N/A</strong></li> <li>GCC/Compiler version (if compiling from source): <strong>N/A</strong></li> <li>CUDA/cuDNN version: <strong>N/A</strong></li> <li>GPU model and memory: <strong>N/A</strong></li> </ul> <p dir="auto"><strong>Describe the current behavior</strong><br> I get the following error message only under <strong>specific circumstances</strong> (see code below):</p> <blockquote> <p dir="auto">OMP: Error <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="115922135" data-permission-text="Title is private" data-url="https://github.com/tensorflow/tensorflow/issues/15" data-hovercard-type="issue" data-hovercard-url="/tensorflow/tensorflow/issues/15/hovercard" href="https://github.com/tensorflow/tensorflow/issues/15">#15</a>: Initializing libiomp5.dylib, but found libiomp5.dylib already initialized.<br> OMP: Hint: This means that multiple copies of the OpenMP runtime have been linked into the program. That is dangerous, since it candegrade performance or cause incorrect results. The best thing to do is to ensure that only a single OpenMP runtime is linked into the process, e.g. by avoiding static linking of the OpenMP runtime in any library. As an unsafe, unsupported, undocumented workaround you can set the environment variable KMP_DUPLICATE_LIB_OK=TRUE to allow the program to continue to execute, but that may cause crashes or silently produce incorrect results. For more information, please see <a href="http://www.intel.com/software/products/support/" rel="nofollow">http://www.intel.com/software/products/support/</a>.<br> Abort trap: 6</p> </blockquote> <p dir="auto"><strong>Describe the expected behavior</strong><br> No error message</p> <p dir="auto"><strong>Code to reproduce the issue</strong></p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import tensorflow as tf import numpy as np def get_dense(input, widths, activations): assert len(widths) == len(activations) output = input for i, (w, a) in enumerate(zip(widths, activations)): output = tf.layers.dense(output, units=w, activation=a) return output nn = lambda input, depth, width: get_dense( input, [width for _ in range(depth - 1)] + [3 ], [tf.nn.relu for _ in range(depth - 1)] + [None] ) tf.reset_default_graph() # Works fine when N = 8192, # but breaks with N = 8193: N = 8193 n = 100 X = np.random.normal(loc=0.0, scale=1., size=(N, 1)).astype(np.float32) nx = X.shape[1] Y = X**2 XY = np.concatenate([X, Y], axis=1) ds = tf.data.Dataset.from_tensor_slices(XY).batch(n).make_one_shot_iterator().get_next() pred = nn(ds[:,:nx], 2, 10) loss = tf.reduce_mean((pred - ds[:,nx:])**2) op = tf.train.RMSPropOptimizer(0.0005).minimize(loss) with tf.Session() as sess: sess.run(tf.global_variables_initializer()) try: for i in range(20): print(i) _, l1 = sess.run([op, loss]) print(l1) except tf.errors.OutOfRangeError: pass print(&quot;Done&quot;)"><pre class="notranslate"><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">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span> <span class="pl-k">def</span> <span class="pl-en">get_dense</span>(<span class="pl-s1">input</span>, <span class="pl-s1">widths</span>, <span class="pl-s1">activations</span>): <span class="pl-k">assert</span> <span class="pl-en">len</span>(<span class="pl-s1">widths</span>) <span class="pl-c1">==</span> <span class="pl-en">len</span>(<span class="pl-s1">activations</span>) <span class="pl-s1">output</span> <span class="pl-c1">=</span> <span class="pl-s1">input</span> <span class="pl-k">for</span> <span class="pl-s1">i</span>, (<span class="pl-s1">w</span>, <span class="pl-s1">a</span>) <span class="pl-c1">in</span> <span class="pl-en">enumerate</span>(<span class="pl-en">zip</span>(<span class="pl-s1">widths</span>, <span class="pl-s1">activations</span>)): <span class="pl-s1">output</span> <span class="pl-c1">=</span> <span class="pl-s1">tf</span>.<span class="pl-s1">layers</span>.<span class="pl-en">dense</span>(<span class="pl-s1">output</span>, <span class="pl-s1">units</span><span class="pl-c1">=</span><span class="pl-s1">w</span>, <span class="pl-s1">activation</span><span class="pl-c1">=</span><span class="pl-s1">a</span>) <span class="pl-k">return</span> <span class="pl-s1">output</span> <span class="pl-s1">nn</span> <span class="pl-c1">=</span> <span class="pl-k">lambda</span> <span class="pl-s1">input</span>, <span class="pl-s1">depth</span>, <span class="pl-s1">width</span>: <span class="pl-en">get_dense</span>( <span class="pl-s1">input</span>, [<span class="pl-s1">width</span> <span class="pl-k">for</span> <span class="pl-s1">_</span> <span class="pl-c1">in</span> <span class="pl-en">range</span>(<span class="pl-s1">depth</span> <span class="pl-c1">-</span> <span class="pl-c1">1</span>)] <span class="pl-c1">+</span> [<span class="pl-c1">3</span> ], [<span class="pl-s1">tf</span>.<span class="pl-s1">nn</span>.<span class="pl-s1">relu</span> <span class="pl-k">for</span> <span class="pl-s1">_</span> <span class="pl-c1">in</span> <span class="pl-en">range</span>(<span class="pl-s1">depth</span> <span class="pl-c1">-</span> <span class="pl-c1">1</span>)] <span class="pl-c1">+</span> [<span class="pl-c1">None</span>] ) <span class="pl-s1">tf</span>.<span class="pl-en">reset_default_graph</span>() <span class="pl-c"># Works fine when N = 8192,</span> <span class="pl-c"># but breaks with N = 8193:</span> <span class="pl-v">N</span> <span class="pl-c1">=</span> <span class="pl-c1">8193</span> <span class="pl-s1">n</span> <span class="pl-c1">=</span> <span class="pl-c1">100</span> <span class="pl-v">X</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">normal</span>(<span class="pl-s1">loc</span><span class="pl-c1">=</span><span class="pl-c1">0.0</span>, <span class="pl-s1">scale</span><span class="pl-c1">=</span><span class="pl-c1">1.</span>, <span class="pl-s1">size</span><span class="pl-c1">=</span>(<span class="pl-v">N</span>, <span class="pl-c1">1</span>)).<span class="pl-en">astype</span>(<span class="pl-s1">np</span>.<span class="pl-s1">float32</span>) <span class="pl-s1">nx</span> <span class="pl-c1">=</span> <span class="pl-v">X</span>.<span class="pl-s1">shape</span>[<span class="pl-c1">1</span>] <span class="pl-v">Y</span> <span class="pl-c1">=</span> <span class="pl-v">X</span><span class="pl-c1">**</span><span class="pl-c1">2</span> <span class="pl-v">XY</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">concatenate</span>([<span class="pl-v">X</span>, <span class="pl-v">Y</span>], <span class="pl-s1">axis</span><span class="pl-c1">=</span><span class="pl-c1">1</span>) <span class="pl-s1">ds</span> <span class="pl-c1">=</span> <span class="pl-s1">tf</span>.<span class="pl-s1">data</span>.<span class="pl-v">Dataset</span>.<span class="pl-en">from_tensor_slices</span>(<span class="pl-v">XY</span>).<span class="pl-en">batch</span>(<span class="pl-s1">n</span>).<span class="pl-en">make_one_shot_iterator</span>().<span class="pl-en">get_next</span>() <span class="pl-s1">pred</span> <span class="pl-c1">=</span> <span class="pl-en">nn</span>(<span class="pl-s1">ds</span>[:,:<span class="pl-s1">nx</span>], <span class="pl-c1">2</span>, <span class="pl-c1">10</span>) <span class="pl-s1">loss</span> <span class="pl-c1">=</span> <span class="pl-s1">tf</span>.<span class="pl-en">reduce_mean</span>((<span class="pl-s1">pred</span> <span class="pl-c1">-</span> <span class="pl-s1">ds</span>[:,<span class="pl-s1">nx</span>:])<span class="pl-c1">**</span><span class="pl-c1">2</span>) <span class="pl-s1">op</span> <span class="pl-c1">=</span> <span class="pl-s1">tf</span>.<span class="pl-s1">train</span>.<span class="pl-v">RMSPropOptimizer</span>(<span class="pl-c1">0.0005</span>).<span class="pl-en">minimize</span>(<span class="pl-s1">loss</span>) <span class="pl-k">with</span> <span class="pl-s1">tf</span>.<span class="pl-v">Session</span>() <span class="pl-k">as</span> <span class="pl-s1">sess</span>: <span class="pl-s1">sess</span>.<span class="pl-en">run</span>(<span class="pl-s1">tf</span>.<span class="pl-en">global_variables_initializer</span>()) <span class="pl-k">try</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">20</span>): <span class="pl-en">print</span>(<span class="pl-s1">i</span>) <span class="pl-s1">_</span>, <span class="pl-s1">l1</span> <span class="pl-c1">=</span> <span class="pl-s1">sess</span>.<span class="pl-en">run</span>([<span class="pl-s1">op</span>, <span class="pl-s1">loss</span>]) <span class="pl-en">print</span>(<span class="pl-s1">l1</span>) <span class="pl-k">except</span> <span class="pl-s1">tf</span>.<span class="pl-s1">errors</span>.<span class="pl-v">OutOfRangeError</span>: <span class="pl-k">pass</span> <span class="pl-en">print</span>(<span class="pl-s">"Done"</span>)</pre></div> <p dir="auto"><strong>Other info / logs</strong><br> I would consider this an anaconda problem if only it happened at all times. However, what I find weird, and why I suspect it might be a tensorflow issue, is that it only occurs when input dataset size is large enough. In this example the error pops up when N is 8193 or higher, no error when N is 8192 or lower. This "threshold" value is different in my original project where I first faced the problem - there it happened when dataset array length was 100001 (100k+1) or higher, while working fine with 100000 (100k) long dataset. Apologies if this is irrelevant to tensorflow and indeed an anaconda issue.</p> <p dir="auto">P.S.<br> Adding KMP_DUPLICATE_LIB_OK=TRUE does silence the error.</p>
0
<p dir="auto">I am using the Terminal 2.4 in Mac OS X 10.9, Julia Version 0.3.4-pre+47</p> <p dir="auto">I don't know how it happened, but I got a <code class="notranslate">\0</code> in my REPL, which got stored in my <code class="notranslate">.julia_history</code> file. Whenever I try to up-arrow to the line and edit it, the cursor marker doesn't move, but internally the cursor does seem to move because I can insert characters in different positions.</p> <p dir="auto">I don't know how to type a <code class="notranslate">\0</code> character, but you can reproduce the behavior by manually inserting a <code class="notranslate">0x00</code> byte into the beginning of some line in <code class="notranslate">.julia_history</code>.</p> <p dir="auto">It's not a big deal, because I don't often inadvertently type that character, but maybe it could be ignored or something.</p>
<p dir="auto">I'm finding that when I type a ctrl-space, it is being inserted into my repl input, causing the parser to get confused:</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia&gt; x = &lt;ctrl-space&gt;1&lt;return&gt; &lt;return&gt; &lt;return&gt; ERROR: syntax: incomplete: premature end of input"><pre class="notranslate">julia<span class="pl-k">&gt;</span> x <span class="pl-k">=</span> <span class="pl-k">&lt;</span>ctrl<span class="pl-k">-</span>space<span class="pl-k">&gt;</span><span class="pl-c1">1</span><span class="pl-k">&lt;</span><span class="pl-k">return</span><span class="pl-k">&gt;</span> <span class="pl-k">&lt;</span><span class="pl-k">return</span><span class="pl-k">&gt;</span> <span class="pl-k">&lt;</span><span class="pl-k">return</span><span class="pl-k">&gt;</span> ERROR<span class="pl-k">:</span> syntax<span class="pl-k">:</span> incomplete<span class="pl-k">:</span> premature <span class="pl-k">end</span> of input</pre></div> <p dir="auto">This is on a day-old julia:</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia&gt; versioninfo() Julia Version 0.3.0-prerelease+3217 Commit 5fcfb13* (2014-05-26 13:43 UTC) Platform Info: System: Linux (x86_64-linux-gnu) CPU: Intel(R) Core(TM) i7-4500U CPU @ 1.80GHz WORD_SIZE: 64 BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY) LAPACK: libopenblas LIBM: libopenlibm"><pre class="notranslate">julia<span class="pl-k">&gt;</span> <span class="pl-c1">versioninfo</span>() Julia Version <span class="pl-c1">0.3</span>.<span class="pl-c1">0</span><span class="pl-k">-</span>prerelease<span class="pl-k">+</span><span class="pl-c1">3217</span> Commit <span class="pl-c1">5</span>fcfb13<span class="pl-k">*</span> (<span class="pl-c1">2014</span><span class="pl-k">-</span><span class="pl-c1">05</span><span class="pl-k">-</span><span class="pl-c1">26</span> <span class="pl-c1">13</span><span class="pl-k">:</span><span class="pl-c1">43</span> UTC) Platform Info<span class="pl-k">:</span> System<span class="pl-k">:</span> Linux (x86_64<span class="pl-k">-</span>linux<span class="pl-k">-</span>gnu) CPU<span class="pl-k">:</span> <span class="pl-c1">Intel</span>(R) <span class="pl-c1">Core</span>(TM) i7<span class="pl-k">-</span><span class="pl-c1">4500</span>U CPU @ <span class="pl-c1">1.80</span>GHz WORD_SIZE<span class="pl-k">:</span> <span class="pl-c1">64</span> BLAS<span class="pl-k">:</span> libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY) LAPACK<span class="pl-k">:</span> libopenblas LIBM<span class="pl-k">:</span> libopenlibm</pre></div>
1
<h3 dir="auto">Issue Details</h3> <ul dir="auto"> <li><strong>Electron Version:</strong> 5.0.0</li> <li><strong>Operating System:</strong> LTS version of Ubuntu (18.04) (and other various versions)</li> <li><strong>Last Known Working Electron version:</strong>: none</li> </ul> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">I just released a Linux version of my app and several users have reported that on launch it fails with the error <code class="notranslate">GLIBC_2.29' not found</code>.</p> <h3 dir="auto">Actual Behavior</h3> <p dir="auto">App should launch</p> <h3 dir="auto">To Reproduce</h3> <p dir="auto">You can probably package up Electron 5.0.0 and try to run an AppImage on linux and you'll see it. I gave out a linux build at 4.* before and I think it also had the same issue?</p> <p dir="auto">I feel like this might be a simple issue: the latest electron versions require glibc 2.29 and many linux distros aren't up-to-date with that yet. If so, I would have expected to see many other issues reported, because I've had many users complain about this (see <a href="https://www.reddit.com/r/actualbudget/comments/bghvfg/any_plans_for_a_linux_client_in_the_future/" rel="nofollow">https://www.reddit.com/r/actualbudget/comments/bghvfg/any_plans_for_a_linux_client_in_the_future/</a>). Am I doing something wrong?</p>
<ul dir="auto"> <li> <p dir="auto">Output of <code class="notranslate">node_modules/.bin/electron --version</code>:<br> v4.0.0</p> </li> <li> <p dir="auto">Operating System (Platform and Version):<br> Raspbian 2.6 (latest raspbian at the time of filling the issue).</p> </li> <li> <p dir="auto">Output of <code class="notranslate">node_modules/.bin/electron --version</code> on last known working Electron version (if applicable):<br> V3.0.10</p> </li> </ul> <p dir="auto"><strong>Expected Behavior</strong><br> Electron 4 should work on RPI as Electron 3 does.</p> <p dir="auto"><strong>Actual behavior</strong><br> Starting an electron 4 app results in this error:<br> <code class="notranslate">/lib/arm-linux-gnueabihf/libc.so.6: version `GLIBC_2.27' not found</code><br> Latest Rapsbian includes GLIBC 2.23.</p> <p dir="auto"><strong>To Reproduce</strong><br> Just build an electron 4.0.0 app for RPI and run it on latest raspbian.</p>
1
<p dir="auto">Feedback Hub link: <a href="https://aka.ms/AA5svj0" rel="nofollow">https://aka.ms/AA5svj0</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.239] Windows Terminal version (if applicable): 0.3.2171.0 Any other software? * Powershell 5.1.18362.145"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: [10.0.18362.239] Windows Terminal version (if applicable): 0.3.2171.0 Any other software? * Powershell 5.1.18362.145 </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <ol dir="auto"> <li>Create a new cmd.exe tab.</li> <li>Use command 'powershell'.</li> <li>Close the tab.</li> </ol> <h1 dir="auto">Expected behavior</h1> <p dir="auto">The tab should close with no problems.</p> <h1 dir="auto">Actual behavior</h1> <p dir="auto">Terminal crashes, bringing all other tabs with it.</p>
<p dir="auto">NOTE: This is different from, but may be related to, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="476508524" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/2230" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/2230/hovercard" href="https://github.com/microsoft/terminal/issues/2230">#2230</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: Microsoft Windows [Version 10.0.18362.175] Windows Terminal version: 0.3.2142.0"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: Microsoft Windows [Version 10.0.18362.175] Windows Terminal version: 0.3.2142.0 </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <ol dir="auto"> <li>Open a new Windows Terminal instance</li> <li>Open a second tab using either the "+" button</li> <li>Close the new tab using CTRL+W, middle clicking the tab, or clicking the tab's "x"</li> </ol> <p dir="auto">Repeat steps 2-3 as fast as possible.</p> <h1 dir="auto">Expected behavior</h1> <p dir="auto">Tabs continue to open and close.</p> <h1 dir="auto">Actual behavior</h1> <p dir="auto"><strong>PowerShell</strong> - Most of the time, WT stops responding and interacting with it shows the "WindowsTerminal.exe is not responding" modal</p> <p dir="auto"><strong>CMD / WSL</strong> - WT stops responding for about 1 second and then exits (also happens for PowerShell sometimes)</p>
1
<p dir="auto">The following program fails to compile:</p> <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="trait Foo { fn foo(&amp;self, x: &amp;Self); } trait Bar&lt;A: Foo&gt; { fn bar(&amp;self) -&gt; A; } struct Wrap&lt;T&gt;(T); impl&lt;A, B: Bar&lt;A&gt;&gt; Wrap&lt;B&gt; { fn test(&amp;self, x: &amp;A) { (*self).bar().foo(x); } } fn main() {}"><pre class="notranslate"><span class="pl-k">trait</span> <span class="pl-smi">Foo</span> <span class="pl-kos">{</span> <span class="pl-k">fn</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-c1">&amp;</span><span class="pl-smi">self</span><span class="pl-kos">,</span> <span class="pl-s1">x</span><span class="pl-kos">:</span> <span class="pl-c1">&amp;</span><span class="pl-smi">Self</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">trait</span> <span class="pl-smi">Bar</span><span class="pl-kos">&lt;</span><span class="pl-smi">A</span><span class="pl-kos">:</span> <span class="pl-smi">Foo</span><span class="pl-kos">&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">fn</span> <span class="pl-en">bar</span><span class="pl-kos">(</span><span class="pl-c1">&amp;</span><span class="pl-smi">self</span><span class="pl-kos">)</span> -&gt; <span class="pl-smi">A</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">struct</span> <span class="pl-smi">Wrap</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-smi">T</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">impl</span><span class="pl-kos">&lt;</span><span class="pl-smi">A</span><span class="pl-kos">,</span> <span class="pl-smi">B</span><span class="pl-kos">:</span> <span class="pl-smi">Bar</span><span class="pl-kos">&lt;</span><span class="pl-smi">A</span><span class="pl-kos">&gt;</span><span class="pl-kos">&gt;</span> <span class="pl-smi">Wrap</span><span class="pl-kos">&lt;</span><span class="pl-smi">B</span><span class="pl-kos">&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">fn</span> <span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-c1">&amp;</span><span class="pl-smi">self</span><span class="pl-kos">,</span> <span class="pl-s1">x</span><span class="pl-kos">:</span> <span class="pl-c1">&amp;</span><span class="pl-smi">A</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-kos">(</span><span class="pl-c1">*</span><span class="pl-smi">self</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">bar</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">foo</span><span class="pl-kos">(</span>x<span class="pl-kos">)</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-kos">}</span></pre></div> <p dir="auto">With the following error:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="implsearch.rs:8:8: 8:22 error: failed to find an implementation of trait Foo for A implsearch.rs:8 (*self).bar().foo(x); ^~~~~~~~~~~~~~"><pre class="notranslate"><code class="notranslate">implsearch.rs:8:8: 8:22 error: failed to find an implementation of trait Foo for A implsearch.rs:8 (*self).bar().foo(x); ^~~~~~~~~~~~~~ </code></pre></div> <p dir="auto">Given that <code class="notranslate">B: Bar&lt;A&gt;</code>, we know <code class="notranslate">A: Foo</code> because of the definition of the trait Bar. This can be seen as a generalized case of trait inheritance (trait B inheriting from A lets us know that if <code class="notranslate">X:B</code>, then <code class="notranslate">X:A</code>, because <code class="notranslate">X:B</code> requires <code class="notranslate">X:A</code>; similarly, <code class="notranslate">B:Bar&lt;A&gt;</code> requires <code class="notranslate">A:Foo</code>, so we know <code class="notranslate">A:Foo</code>). Indeed, in Haskell there is no distinction between the two forms of inheritance:</p> <div class="highlight highlight-source-haskell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{-# LANGUAGE MultiParamTypeClasses #-} class Foo b where foo :: b -&gt; b -&gt; () class Foo b =&gt; Bar a b where bar :: a -&gt; b test :: Bar a b =&gt; a -&gt; b -&gt; () test x y = foo (bar x) y"><pre class="notranslate">{-# <span class="pl-k">LANGUAGE</span> MultiParamTypeClasses #-} <span class="pl-k">class</span> <span class="pl-en">Foo</span> <span class="pl-smi">b</span> <span class="pl-k">where</span> foo <span class="pl-k">::</span> <span class="pl-smi">b</span> <span class="pl-k">-&gt;</span> <span class="pl-smi">b</span> <span class="pl-k">-&gt;</span> <span class="pl-c1">()</span> <span class="pl-k">class</span> <span class="pl-en">Foo</span> <span class="pl-smi">b</span> <span class="pl-k">=&gt;</span> <span class="pl-en">Bar</span> <span class="pl-smi">a</span> <span class="pl-smi">b</span> <span class="pl-k">where</span> bar <span class="pl-k">::</span> <span class="pl-smi">a</span> <span class="pl-k">-&gt;</span> <span class="pl-smi">b</span> <span class="pl-en">test</span> <span class="pl-k">::</span> <span class="pl-en">Bar</span> <span class="pl-smi">a</span> <span class="pl-smi">b</span> <span class="pl-k">=&gt;</span> <span class="pl-smi">a</span> <span class="pl-k">-&gt;</span> <span class="pl-smi">b</span> <span class="pl-k">-&gt;</span> <span class="pl-c1">()</span> test x y <span class="pl-k">=</span> foo (bar x) y</pre></div> <p dir="auto">The order of arguments to Bar could be switched and the program above would still be valid.</p>
<p dir="auto">The following example:</p> <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="trait Foo&lt;T&gt; { fn foo(&amp;self) -&gt; &amp;T; } trait Bar&lt;A&gt; where A: Foo&lt;Self&gt; {} fn foobar&lt;A, B: Bar&lt;A&gt;&gt;(a: &amp;A) -&gt; &amp;B { a.foo() }"><pre class="notranslate"><span class="pl-k">trait</span> <span class="pl-smi">Foo</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-k">fn</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-c1">&amp;</span><span class="pl-smi">self</span><span class="pl-kos">)</span> -&gt; <span class="pl-c1">&amp;</span><span class="pl-smi">T</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">trait</span> <span class="pl-smi">Bar</span><span class="pl-kos">&lt;</span><span class="pl-smi">A</span><span class="pl-kos">&gt;</span> <span class="pl-k">where</span> <span class="pl-smi">A</span><span class="pl-kos">:</span> <span class="pl-smi">Foo</span><span class="pl-kos">&lt;</span><span class="pl-smi">Self</span><span class="pl-kos">&gt;</span> <span class="pl-kos">{</span><span class="pl-kos">}</span> <span class="pl-k">fn</span> <span class="pl-en">foobar</span><span class="pl-kos">&lt;</span><span class="pl-smi">A</span><span class="pl-kos">,</span> <span class="pl-smi">B</span><span class="pl-kos">:</span> <span class="pl-smi">Bar</span><span class="pl-kos">&lt;</span><span class="pl-smi">A</span><span class="pl-kos">&gt;</span><span class="pl-kos">&gt;</span><span class="pl-kos">(</span><span class="pl-s1">a</span><span class="pl-kos">:</span> <span class="pl-c1">&amp;</span><span class="pl-smi">A</span><span class="pl-kos">)</span> -&gt; <span class="pl-c1">&amp;</span><span class="pl-smi">B</span> <span class="pl-kos">{</span> a<span class="pl-kos">.</span><span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">fails with "error: type <code class="notranslate">&amp;A</code> does not implement any method in scope named <code class="notranslate">foo</code>".</p> <p dir="auto">This UFCS variant</p> <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="trait Foo&lt;T&gt; { fn foo(&amp;self) -&gt; &amp;T; } trait Bar&lt;A&gt; where A: Foo&lt;Self&gt; {} fn foobar&lt;A, B: Bar&lt;A&gt;&gt;(a: &amp;A) -&gt; &amp;B { Foo::foo(a) }"><pre class="notranslate"><span class="pl-k">trait</span> <span class="pl-smi">Foo</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-k">fn</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-c1">&amp;</span><span class="pl-smi">self</span><span class="pl-kos">)</span> -&gt; <span class="pl-c1">&amp;</span><span class="pl-smi">T</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">trait</span> <span class="pl-smi">Bar</span><span class="pl-kos">&lt;</span><span class="pl-smi">A</span><span class="pl-kos">&gt;</span> <span class="pl-k">where</span> <span class="pl-smi">A</span><span class="pl-kos">:</span> <span class="pl-smi">Foo</span><span class="pl-kos">&lt;</span><span class="pl-smi">Self</span><span class="pl-kos">&gt;</span> <span class="pl-kos">{</span><span class="pl-kos">}</span> <span class="pl-k">fn</span> <span class="pl-en">foobar</span><span class="pl-kos">&lt;</span><span class="pl-smi">A</span><span class="pl-kos">,</span> <span class="pl-smi">B</span><span class="pl-kos">:</span> <span class="pl-smi">Bar</span><span class="pl-kos">&lt;</span><span class="pl-smi">A</span><span class="pl-kos">&gt;</span><span class="pl-kos">&gt;</span><span class="pl-kos">(</span><span class="pl-s1">a</span><span class="pl-kos">:</span> <span class="pl-c1">&amp;</span><span class="pl-smi">A</span><span class="pl-kos">)</span> -&gt; <span class="pl-c1">&amp;</span><span class="pl-smi">B</span> <span class="pl-kos">{</span> <span class="pl-smi">Foo</span><span class="pl-kos">::</span><span class="pl-en">foo</span><span class="pl-kos">(</span>a<span class="pl-kos">)</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">fails with "error: the trait <code class="notranslate">Foo&lt;_&gt;</code> is not implemented for the type <code class="notranslate">A</code>".</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/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" checked=""> 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: master branch</li> <li>Operating System version: macos</li> <li>Java version: 1.8</li> </ul> <h3 dir="auto">Steps to reproduce this issue</h3> <ol dir="auto"> <li><code class="notranslate">./mvnw test -pl dubbo-cluster -Dtest=org.apache.dubbo.rpc.cluster.loadbalance.RoundRobinLoadBalanceTest</code></li> </ol> <h3 dir="auto">Expected Result</h3> <p dir="auto">What do you expected from the above steps?</p> <p dir="auto">UT passed</p> <h3 dir="auto">Actual Result</h3> <p dir="auto">What actually happens?</p> <p dir="auto">OOME thrown</p> <p dir="auto">If there is an exception, please attach the exception trace:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Running org.apache.dubbo.rpc.cluster.loadbalance.RoundRobinLoadBalanceTest [29/11/18 12:24:27:027 CST] main INFO logger.LoggerFactory: using logger: org.apache.dubbo.common.logger.log4j.Log4jLoggerAdapter Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread &quot;Thread-6&quot; Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread &quot;surefire-forkedjvm-command-thread&quot; Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread &quot;last-ditch-daemon-shutdown-thread-30sec&quot; Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread &quot;Thread-5&quot; Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread &quot;Thread-1&quot; Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread &quot;Thread-10&quot; Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread &quot;Thread-7&quot; Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread &quot;Thread-9&quot; Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread &quot;Thread-2&quot; Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread &quot;Thread-3&quot; Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread &quot;Thread-8&quot; Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread &quot;Thread-4&quot; Tests run: 3, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 158.071 sec &lt;&lt;&lt; FAILURE! - in org.apache.dubbo.rpc.cluster.loadbalance.RoundRobinLoadBalanceTest org.apache.dubbo.rpc.cluster.loadbalance.RoundRobinLoadBalanceTest Time elapsed: 145.903 sec &lt;&lt;&lt; ERROR! java.lang.OutOfMemoryError: Java heap space Results : Tests in error: RoundRobinLoadBalanceTest.org.apache.dubbo.rpc.cluster.loadbalance.RoundRobinLoadBalanceTest » OutOfMemory "><pre class="notranslate"><code class="notranslate">Running org.apache.dubbo.rpc.cluster.loadbalance.RoundRobinLoadBalanceTest [29/11/18 12:24:27:027 CST] main INFO logger.LoggerFactory: using logger: org.apache.dubbo.common.logger.log4j.Log4jLoggerAdapter Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "Thread-6" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "surefire-forkedjvm-command-thread" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "last-ditch-daemon-shutdown-thread-30sec" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "Thread-5" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "Thread-1" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "Thread-10" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "Thread-7" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "Thread-9" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "Thread-2" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "Thread-3" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "Thread-8" Exception: java.lang.OutOfMemoryError thrown from the UncaughtExceptionHandler in thread "Thread-4" Tests run: 3, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 158.071 sec &lt;&lt;&lt; FAILURE! - in org.apache.dubbo.rpc.cluster.loadbalance.RoundRobinLoadBalanceTest org.apache.dubbo.rpc.cluster.loadbalance.RoundRobinLoadBalanceTest Time elapsed: 145.903 sec &lt;&lt;&lt; ERROR! java.lang.OutOfMemoryError: Java heap space Results : Tests in error: RoundRobinLoadBalanceTest.org.apache.dubbo.rpc.cluster.loadbalance.RoundRobinLoadBalanceTest » OutOfMemory </code></pre></div> <h3 dir="auto">Root cause analysis</h3> <p dir="auto">Our mocked weightInvoker is recoding details of every single invocation which will consuming a lot of memory. please ref <a href="https://stackoverflow.com/questions/17437660/mockito-throws-an-outofmemoryerror-on-a-simple-test/28833727#28833727" rel="nofollow">Mockito throws an OutOfMemoryError on a simple test</a><br> The maximum heap size of our test process specified in pom.xml is <strong>512MB</strong> which is not enough for this test case (<strong>RoundRobinLoadBalanceTest#testSelectByWeight</strong>)</p> <h3 dir="auto">Solutions</h3> <ul dir="auto"> <li>Option A, simply increase <code class="notranslate">-Xmx</code> in <code class="notranslate">argline</code></li> <li>Option B, mock weightInvoker$ with MockSettings <code class="notranslate">stubOnly </code></li> </ul> <p dir="auto">In my view, if the invoking details is not that necessary we can choose Option B.<br> And I will send a PR later.</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/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" checked=""> 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: xxx</li> <li>Operating System version: xxx</li> <li>Java version: xxx</li> </ul> <h3 dir="auto">Steps to reproduce this issue</h3> <p dir="auto"><code class="notranslate">org.apache.dubbo.remoting.etcd.jetcd.JEtcdClientWrapper#doClose</code>:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="if (globalLeaseId &gt; 0) { revokeLease(this.globalLeaseId); }"><pre class="notranslate"><code class="notranslate">if (globalLeaseId &gt; 0) { revokeLease(this.globalLeaseId); } </code></pre></div> <p dir="auto">should be change to :</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="if (globalLeaseId != 0) { revokeLease(this.globalLeaseId); }"><pre class="notranslate"><code class="notranslate">if (globalLeaseId != 0) { revokeLease(this.globalLeaseId); } </code></pre></div> <p dir="auto">Pls. provide [GitHub address] to reproduce this issue.</p> <h3 dir="auto">Expected Result</h3> <p dir="auto">What do you expected from the above steps?</p> <h3 dir="auto">Actual Result</h3> <p dir="auto">What actually happens?</p> <p dir="auto">If there is an exception, please attach the exception trace:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Just put your stack trace here!"><pre class="notranslate"><code class="notranslate">Just put your stack trace here! </code></pre></div>
0
<h1 dir="auto">Bug report</h1> <p dir="auto"><strong>What is the current behavior?</strong></p> <p dir="auto">When using dynamic imports with expressions together with <code class="notranslate">ContextReplacementPlugin</code> in order to limit the possible file matches, some module ids which should deterministic, are actually dependent on the project's location.<br> Meaning two identical projects (code, dependencies, configuration etc..) built on the same machine have different build outputs based on their location on the filesystem.</p> <p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong></p> <ul dir="auto"> <li>use dynamic imports with expessions <ul dir="auto"> <li>ie: <strong>import(<code class="notranslate">../i18n/${locale}.json</code>)</strong>)</li> </ul> </li> <li>configure Webpack to use <code class="notranslate">ContextReplacementPlugin</code> to limit which JSON files should be bundled <ul dir="auto"> <li>ie: <code class="notranslate">new webpack.ContextReplacementPlugin(/i18n/, regExpForLocales)</code></li> </ul> </li> <li>build the project for production</li> <li>duplicate the project at another location on the filesystem at a different path root level <ul dir="auto"> <li>ie: <code class="notranslate">/home/project</code> vs <code class="notranslate">/home/work/projects</code></li> </ul> </li> <li>build the project for production at the new location</li> <li>diff both output bundles, observe that both bundles are different, invalidating the project build's reproducibility</li> </ul> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ diff -u context-a/dist/main.js folder-b/context-b/dist/main.js"><pre class="notranslate">$ diff -u context-a/dist/main.js folder-b/context-b/dist/main.js</pre></div> <div class="highlight highlight-source-diff notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="--- context-a/dist/main.js 2022-01-10 14:52:49.395750091 +0100 +++ folder-b/context-b/dist/main.js 2022-01-10 14:52:52.143773687 +0100 @@ -4,7 +4,7 @@ t, o, n = { - 595: (e, r, t) =&gt; { + 174: (e, r, t) =&gt; { var o = { &quot;./a.json&quot;: [359, 359], &quot;./b.json&quot;: [376, 376] }; function n(e) { if (!t.o(o, e)) @@ -16,7 +16,7 @@ n = r[0]; return t.e(r[1]).then(() =&gt; t.t(n, 19)); } - (n.keys = () =&gt; Object.keys(o)), (n.id = 595), (e.exports = n); + (n.keys = () =&gt; Object.keys(o)), (n.id = 174), (e.exports = n); }, }, i = {}; "><pre class="notranslate"><span class="pl-md">--- context-a/dist/main.js 2022-01-10 14:52:49.395750091 +0100</span> <span class="pl-mi1">+++ folder-b/context-b/dist/main.js 2022-01-10 14:52:52.143773687 +0100</span> <span class="pl-mdr">@@ -4,7 +4,7 @@</span> t, o, n = { <span class="pl-md"><span class="pl-md">-</span> 595: (e, r, t) =&gt; {</span> <span class="pl-mi1"><span class="pl-mi1">+</span> 174: (e, r, t) =&gt; {</span> var o = { "./a.json": [359, 359], "./b.json": [376, 376] }; function n(e) { if (!t.o(o, e)) <span class="pl-mdr">@@ -16,7 +16,7 @@</span> n = r[0]; return t.e(r[1]).then(() =&gt; t.t(n, 19)); } <span class="pl-md"><span class="pl-md">-</span> (n.keys = () =&gt; Object.keys(o)), (n.id = 595), (e.exports = n);</span> <span class="pl-mi1"><span class="pl-mi1">+</span> (n.keys = () =&gt; Object.keys(o)), (n.id = 174), (e.exports = n);</span> }, }, i = {}; </pre></div> <p dir="auto"><a href="https://github.com/ziir/webpack-repro-dynamic-import-context-replacement-deterministic-module-id">Minimal reproduction repository</a></p> <p dir="auto"><strong>What is the expected behavior?</strong></p> <ul dir="auto"> <li>both bundles should be identical irrelevant of their location on the filesystem</li> </ul> <p dir="auto"><strong>Other relevant information:</strong><br> webpack version: <em>5.65.0</em><br> Node.js version: <em>14.18.1</em><br> Operating System: <em>Linux Ubuntu 20.04.3 LTS</em><br> Additional tools: <em>N/A</em></p>
<h1 dir="auto">Bug report</h1> <p dir="auto"><strong>What is the current behavior?</strong><br> In my project, import jspdf.<br> The origin source<br> var f=[1,1.387039845,1.306562965,1.175875602,1,.785694958,.5411961,.275899379]<br> After bundle,<br> var f=[1,1.387039845,1.306562965,1.175875602,1,.7d0ffc958,.5411961,.275899379]</p> <p dir="auto">7<strong>85694</strong>958 was changed to 7<strong>d0ffc</strong>958</p> <p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong></p> <p dir="auto">In RealContentHashPlugin source code</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const newContent = asset.content.replace(hashRegExp, hash =&gt; hashToNewHash.get(hash) ); return new RawSource(newContent);"><pre class="notranslate"><code class="notranslate">const newContent = asset.content.replace(hashRegExp, hash =&gt; hashToNewHash.get(hash) ); return new RawSource(newContent); </code></pre></div> <p dir="auto">When there is a bundle unfortunately with hash 85694</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="assets/xxx/css/XXXX.85694.css { immutable: true, contenthash: '85694' }"><pre class="notranslate"><code class="notranslate">assets/xxx/css/XXXX.85694.css { immutable: true, contenthash: '85694' } </code></pre></div> <p dir="auto">Then<br> hashRegExp has value contains 85694<br> /---|85694|dcf17|----/g<br> It cause<br> .785694958 to be replaced to .7d0ffc958. Javascript load error</p> <p dir="auto"><strong>What is the expected behavior?</strong><br> Don't change original source behavior</p> <p dir="auto"><strong>Other relevant information:</strong><br> webpack version: 5.36.1<br> Node.js version: v14.17.6<br> Operating System: MacOS 11.4<br> Additional tools:</p>
0
<p dir="auto">Since upgrading to React 15.0.1, when rendering <code class="notranslate">&lt;select&gt;</code> with optgroups, the value is not set on the DOM correctly. The first option will always get picked.</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// Renders with &quot;Yes&quot; selected, I expect &quot;Maybe&quot; &lt;select value={3}&gt; &lt;optgroup label=&quot;One&quot;&gt; &lt;option value={1}&gt;Yes&lt;/option&gt; &lt;/optgroup&gt; &lt;optgroup label=&quot;Two&quot;&gt; &lt;option value={2}&gt;No&lt;/option&gt; &lt;/optgroup&gt; &lt;optgroup label=&quot;Three&quot;&gt; &lt;option value={3}&gt;Maybe&lt;/option&gt; &lt;/optgroup&gt; &lt;/select&gt;"><pre class="notranslate"><span class="pl-c">// Renders with "Yes" selected, I expect "Maybe"</span> <span class="pl-c1">&lt;</span><span class="pl-ent">select</span> <span class="pl-c1">value</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-c1">3</span><span class="pl-kos">}</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">optgroup</span> <span class="pl-c1">label</span><span class="pl-c1">=</span><span class="pl-s">"One"</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">option</span> <span class="pl-c1">value</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-c1">1</span><span class="pl-kos">}</span><span class="pl-c1">&gt;</span>Yes<span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">option</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">optgroup</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">optgroup</span> <span class="pl-c1">label</span><span class="pl-c1">=</span><span class="pl-s">"Two"</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">option</span> <span class="pl-c1">value</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-c1">2</span><span class="pl-kos">}</span><span class="pl-c1">&gt;</span>No<span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">option</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">optgroup</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">optgroup</span> <span class="pl-c1">label</span><span class="pl-c1">=</span><span class="pl-s">"Three"</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">option</span> <span class="pl-c1">value</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-c1">3</span><span class="pl-kos">}</span><span class="pl-c1">&gt;</span>Maybe<span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">option</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">optgroup</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">select</span><span class="pl-c1">&gt;</span></pre></div> <h2 dir="auto">Examples</h2> <p dir="auto"><a href="http://jsbin.com/madesikinu/3/edit?html,js,output" rel="nofollow">React 15.0.1 Fiddle (broken)</a><br> <a href="http://jsbin.com/zofayocijo/1/edit?html,js,output" rel="nofollow">React 0.14.7 Fiddle (works)</a><br> <a href="http://jsbin.com/madesikinu/5/edit?html,js,output" rel="nofollow">React 15.0.1 without optgroup Fiddle (works)</a></p> <h2 dir="auto">Environment</h2> <p dir="auto">OS X 10.11.4<br> Safari Version 9.1 (11601.5.17.1)<br> Chrome Version 49.0.2623.110 (64-bit)<br> Firefox 45.0.1</p> <p dir="auto"><em>Edit: I also noticed that the same behavior occurs when using <code class="notranslate">defaultValue</code>.</em></p>
<p dir="auto">Using React 15.0.1, controlled select elements with optgroup elements are not displaying (selecting) the value provided on initial render. See the following jsfiddle for a simple test case:</p> <p dir="auto"><a href="https://jsfiddle.net/Artconnoisseur/eg3j7fam/1/" rel="nofollow">https://jsfiddle.net/Artconnoisseur/eg3j7fam/1/</a></p> <p dir="auto">Here is another fiddle where it is working using React 0.14.8:</p> <p dir="auto"><a href="https://jsfiddle.net/Artconnoisseur/hfp8rf1j/1/" rel="nofollow">https://jsfiddle.net/Artconnoisseur/hfp8rf1j/1/</a></p>
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" checked=""> 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" 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">13.1.8</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">10.0.19042 Pro N</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"><em>No response</em></p> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">When the following code is exectuted:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="appWindow.on(&quot;restore&quot;, (event: any) =&gt; { console.log(&quot;AppWindow.restore&quot;); });"><pre class="notranslate"><span class="pl-s1">appWindow</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">"restore"</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-s1">event</span>: <span class="pl-smi">any</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-s">"AppWindow.restore"</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">This should output AppWindow.restore in the editor terminal after running the main file.</p> <h3 dir="auto">Actual Behavior</h3> <p dir="auto">When the following code is exectuted:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="appWindow.on(&quot;restore&quot;, (event: any) =&gt; { console.log(&quot;AppWindow.restore&quot;); });"><pre class="notranslate"><span class="pl-s1">appWindow</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">"restore"</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-s1">event</span>: <span class="pl-smi">any</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-s">"AppWindow.restore"</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">Failed to do what is expected, but the same code and swapping restore for maximized seems to work, and all the other events</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>
<h3 dir="auto">Preflight Checklist</h3> <p dir="auto">I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.<br> 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.<br> 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.</p> <h3 dir="auto">Electron Version</h3> <p dir="auto">12.0.2</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">Windows 10; 20H2</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"><em>No response</em></p> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">I expect that the restore event fires when restoring a previously maximized window</p> <h3 dir="auto">Actual Behavior</h3> <p dir="auto">restore event doesn't fire. It only fires for normal state windows</p> <h3 dir="auto">Testcase Gist URL</h3> <p dir="auto"><em>No response</em></p> <ol dir="auto"> <li>start app</li> <li>maximize window</li> <li>minimize window</li> <li>restore window</li> <li>see that "restored" isn't logged to the console, but is if you skipped step 2</li> </ol> <p dir="auto">main.js:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const {app, BrowserWindow } = require('electron') function createWindow () { const mainWindow = new BrowserWindow(); mainWindow.on(&quot;restore&quot;, () =&gt; { console.log(&quot;restored&quot;); }); } app.whenReady().then(() =&gt; { createWindow() app.on('activate', function () { if (BrowserWindow.getAllWindows().length === 0) createWindow() }) }) app.on('window-all-closed', function () { if (process.platform !== 'darwin') app.quit() })"><pre class="notranslate"><code class="notranslate">const {app, BrowserWindow } = require('electron') function createWindow () { const mainWindow = new BrowserWindow(); mainWindow.on("restore", () =&gt; { console.log("restored"); }); } app.whenReady().then(() =&gt; { createWindow() app.on('activate', function () { if (BrowserWindow.getAllWindows().length === 0) createWindow() }) }) app.on('window-all-closed', function () { if (process.platform !== 'darwin') app.quit() }) </code></pre></div>
1
<p dir="auto">I'm new to git. So writting here.</p> <p dir="auto">In reset.less we have following lines</p> <div class="highlight highlight-source-css-less notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// Prevent max-width from affecting Google Maps #map_canvas img { max-width: none; }"><pre class="notranslate"><span class="pl-c"><span class="pl-c">//</span> Prevent max-width from affecting Google Maps</span> <span class="pl-e">#map_canvas</span> <span class="pl-ent">img</span> { <span class="pl-c1">max-width</span>: <span class="pl-c1">none</span>; }</pre></div> <p dir="auto">we should add same for VE/Bing maps as follows</p> <div class="highlight highlight-source-css-less notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// Prevent max-width from affecting Google Maps .MSVE_Map img { max-width: none; }"><pre class="notranslate"><span class="pl-c"><span class="pl-c">//</span> Prevent max-width from affecting Google Maps</span> <span class="pl-e">.MSVE_Map</span> <span class="pl-ent">img</span> { <span class="pl-c1">max-width</span>: <span class="pl-c1">none</span>; }</pre></div>
<p dir="auto">First of all thanks for your fantastic work. It does SAVE me a lot of time.</p> <p dir="auto">When I put Google Maps into Bootstrap layout, img tag in Google Maps breaks because Bootstrap set <strong>img max-width to 100%</strong>. When I comment max-width, it's working find but I'm not sure whether it'll break something else in Bootstrap or not.</p> <p dir="auto">Bootstrap and Google Maps<br> <a href="http://jsfiddle.net/jhnRD/1/" rel="nofollow">http://jsfiddle.net/jhnRD/1/</a></p> <p dir="auto">Google Maps without Bootstrap<br> <a href="http://jsfiddle.net/aVx8L/" rel="nofollow">http://jsfiddle.net/aVx8L/</a></p> <p dir="auto">Cheers,</p>
1
<h2 dir="auto">Steps to Reproduce</h2> <p dir="auto">When I load a new video after capturing it with the camera, sometimes it will play the file audio and not video and sometimes will play the video but the previous capture. I think it has something to do with the initialization but not sure.</p> <h3 dir="auto">Example</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import 'dart:async'; import 'dart:io'; import 'package:flutter/material.dart'; import 'package:media_picker/media_picker.dart'; import 'package:path_provider/path_provider.dart'; import 'package:video_player/video_player.dart'; void main() { runApp(new MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return new MaterialApp( title: 'Image Picker Demo', home: new MyHomePage(title: 'Image Picker Example'), ); } } class MyHomePage extends StatefulWidget { MyHomePage({Key key, this.title}) : super(key: key); final String title; @override _MyHomePageState createState() =&gt; new _MyHomePageState(); } class _MyHomePageState extends State&lt;MyHomePage&gt; { Future&lt;File&gt; _mediaFile; bool isVideo = false; VideoPlayerController _controller; VoidCallback listener; void _onImageButtonPressed(ImageSource source) { setState(() { if (isVideo) { _mediaFile = MediaPicker.pickVideo(source: source).then((onValue){ _controller = VideoPlayerController.file(onValue) ..addListener(listener) ..setVolume(1.0) ..initialize() ..setLooping(true) ..play(); }); } else { _mediaFile = MediaPicker.pickImage(source: source); } }); } @override void deactivate() { _controller.setVolume(0.0); _controller.removeListener(listener); super.deactivate(); } @override void dispose() { _controller.dispose(); super.dispose(); } @override void initState() { super.initState(); _controller = VideoPlayerController.network( 'http://www.sample-videos.com/video/mp4/720/big_buck_bunny_720p_20mb.mp4', ) ..addListener(listener) ..setVolume(1.0) ..initialize() ..setLooping(true) ..play(); } @override Widget build(BuildContext context) { Widget _previewImage = new FutureBuilder&lt;File&gt;( future: _mediaFile, builder: (BuildContext context, AsyncSnapshot&lt;File&gt; snapshot) { if (snapshot.connectionState == ConnectionState.done &amp;&amp; snapshot.data != null) { return new Image.file(snapshot.data); } else if (snapshot.error != null) { return const Text('Error picking image.'); } else { return const Text('You have not yet picked an image.'); } }, ); return new Scaffold( appBar: new AppBar( title: const Text('Media Picker Example'), ), body: new Center( child: isVideo ? new Padding( padding: const EdgeInsets.all(10.0), child: new AspectRatio( aspectRatio: 1280 / 720, child: new VideoPlayer(_controller), ), ) : _previewImage, ), floatingActionButton: new Column( mainAxisAlignment: MainAxisAlignment.end, children: &lt;Widget&gt;[ new FloatingActionButton( onPressed: () { isVideo = false; _onImageButtonPressed(ImageSource.gallery); }, tooltip: 'Pick Image from gallery', child: const Icon(Icons.photo_library), ), new Padding( padding: const EdgeInsets.only(top: 16.0), child: new FloatingActionButton( onPressed: () { isVideo = false; _onImageButtonPressed(ImageSource.camera); }, tooltip: 'Take a Photo', child: const Icon(Icons.camera_alt), ), ), new Padding( padding: const EdgeInsets.only(top: 16.0), child: new FloatingActionButton( backgroundColor: Colors.red, onPressed: () { isVideo = true; _onImageButtonPressed(ImageSource.gallery); }, tooltip: 'Pick Video from gallery', child: const Icon(Icons.video_library), ), ), new Padding( padding: const EdgeInsets.only(top: 16.0), child: new FloatingActionButton( backgroundColor: Colors.red, onPressed: () { isVideo = true; _onImageButtonPressed(ImageSource.camera); }, tooltip: 'Take a Video', child: const Icon(Icons.videocam), ), ), ], ), ); } } "><pre class="notranslate"><code class="notranslate">import 'dart:async'; import 'dart:io'; import 'package:flutter/material.dart'; import 'package:media_picker/media_picker.dart'; import 'package:path_provider/path_provider.dart'; import 'package:video_player/video_player.dart'; void main() { runApp(new MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return new MaterialApp( title: 'Image Picker Demo', home: new MyHomePage(title: 'Image Picker Example'), ); } } class MyHomePage extends StatefulWidget { MyHomePage({Key key, this.title}) : super(key: key); final String title; @override _MyHomePageState createState() =&gt; new _MyHomePageState(); } class _MyHomePageState extends State&lt;MyHomePage&gt; { Future&lt;File&gt; _mediaFile; bool isVideo = false; VideoPlayerController _controller; VoidCallback listener; void _onImageButtonPressed(ImageSource source) { setState(() { if (isVideo) { _mediaFile = MediaPicker.pickVideo(source: source).then((onValue){ _controller = VideoPlayerController.file(onValue) ..addListener(listener) ..setVolume(1.0) ..initialize() ..setLooping(true) ..play(); }); } else { _mediaFile = MediaPicker.pickImage(source: source); } }); } @override void deactivate() { _controller.setVolume(0.0); _controller.removeListener(listener); super.deactivate(); } @override void dispose() { _controller.dispose(); super.dispose(); } @override void initState() { super.initState(); _controller = VideoPlayerController.network( 'http://www.sample-videos.com/video/mp4/720/big_buck_bunny_720p_20mb.mp4', ) ..addListener(listener) ..setVolume(1.0) ..initialize() ..setLooping(true) ..play(); } @override Widget build(BuildContext context) { Widget _previewImage = new FutureBuilder&lt;File&gt;( future: _mediaFile, builder: (BuildContext context, AsyncSnapshot&lt;File&gt; snapshot) { if (snapshot.connectionState == ConnectionState.done &amp;&amp; snapshot.data != null) { return new Image.file(snapshot.data); } else if (snapshot.error != null) { return const Text('Error picking image.'); } else { return const Text('You have not yet picked an image.'); } }, ); return new Scaffold( appBar: new AppBar( title: const Text('Media Picker Example'), ), body: new Center( child: isVideo ? new Padding( padding: const EdgeInsets.all(10.0), child: new AspectRatio( aspectRatio: 1280 / 720, child: new VideoPlayer(_controller), ), ) : _previewImage, ), floatingActionButton: new Column( mainAxisAlignment: MainAxisAlignment.end, children: &lt;Widget&gt;[ new FloatingActionButton( onPressed: () { isVideo = false; _onImageButtonPressed(ImageSource.gallery); }, tooltip: 'Pick Image from gallery', child: const Icon(Icons.photo_library), ), new Padding( padding: const EdgeInsets.only(top: 16.0), child: new FloatingActionButton( onPressed: () { isVideo = false; _onImageButtonPressed(ImageSource.camera); }, tooltip: 'Take a Photo', child: const Icon(Icons.camera_alt), ), ), new Padding( padding: const EdgeInsets.only(top: 16.0), child: new FloatingActionButton( backgroundColor: Colors.red, onPressed: () { isVideo = true; _onImageButtonPressed(ImageSource.gallery); }, tooltip: 'Pick Video from gallery', child: const Icon(Icons.video_library), ), ), new Padding( padding: const EdgeInsets.only(top: 16.0), child: new FloatingActionButton( backgroundColor: Colors.red, onPressed: () { isVideo = true; _onImageButtonPressed(ImageSource.camera); }, tooltip: 'Take a Video', child: const Icon(Icons.videocam), ), ), ], ), ); } } </code></pre></div> <h2 dir="auto">Logs</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" export REZ_COLLECTOR_DIR=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources export REZ_OBJECTS_DIR=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources/Objects export REZ_SEARCH_PATHS=&quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos &quot; export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO export SCRIPTS_FOLDER_PATH=Runner.app/Scripts export SCRIPT_INPUT_FILE_COUNT=0 export SCRIPT_OUTPUT_FILE_COUNT=0 export SCRIPT_OUTPUT_STREAM_FILE=/var/folders/8v/39qx36ss40s_c18typ5773m40000gn/T/flutter_build_log_pipejVwrA6/pipe_to_stdout export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk export SDK_DIR_iphoneos11_3=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk export SDK_NAME=iphoneos11.3 export SDK_NAMES=iphoneos11.3 export SDK_PRODUCT_BUILD_VERSION=15E217 export SDK_VERSION=11.3 export SDK_VERSION_ACTUAL=110300 export SDK_VERSION_MAJOR=110000 export SDK_VERSION_MINOR=300 export SED=/usr/bin/sed export SEPARATE_STRIP=NO export SEPARATE_SYMBOL_EDIT=NO export SET_DIR_MODE_OWNER_GROUP=YES export SET_FILE_MODE_OWNER_GROUP=NO export SHALLOW_BUNDLE=YES export SHARED_DERIVED_FILE_DIR=/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/DerivedSources export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks export SHARED_PRECOMPS_DIR=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/PrecompiledHeaders export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport export SKIP_INSTALL=NO export SOURCE_ROOT=/Users/rodydavis/Documents/Github/media_picker/example/ios export SRCROOT=/Users/rodydavis/Documents/Github/media_picker/example/ios export STRINGS_FILE_OUTPUT_ENCODING=binary export STRIP_BITCODE_FROM_COPIED_FILES=YES export STRIP_INSTALLED_PRODUCT=YES export STRIP_STYLE=all export STRIP_SWIFT_SYMBOLS=YES export SUPPORTED_DEVICE_FAMILIES=1,2 export SUPPORTED_PLATFORMS=&quot;iphonesimulator iphoneos&quot; export SUPPORTS_TEXT_BASED_API=NO export SWIFT_COMPILATION_MODE=singlefile export SWIFT_OBJC_BRIDGING_HEADER=Runner/Runner-Bridging-Header.h export SWIFT_OPTIMIZATION_LEVEL=-Onone export SWIFT_PLATFORM_TARGET_PREFIX=ios export SWIFT_SWIFT3_OBJC_INFERENCE=On export SWIFT_VERSION=4.0 export SYMROOT=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Products export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities export SYSTEM_APPS_DIR=/Applications export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices export SYSTEM_DEMOS_DIR=/Applications/Extras export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin export SYSTEM_DEVELOPER_DEMOS_DIR=&quot;/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples&quot; export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer export SYSTEM_DEVELOPER_DOC_DIR=&quot;/Applications/Xcode.app/Contents/Developer/ADC Reference Library&quot; export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR=&quot;/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools&quot; export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR=&quot;/Applications/Xcode.app/Contents/Developer/Applications/Java Tools&quot; export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR=&quot;/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools&quot; export SYSTEM_DEVELOPER_RELEASENOTES_DIR=&quot;/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes&quot; export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools export SYSTEM_DEVELOPER_TOOLS_DOC_DIR=&quot;/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools&quot; export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR=&quot;/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools&quot; export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions export SYSTEM_LIBRARY_DIR=/System/Library export TAPI_VERIFY_MODE=ErrorsOnly export TARGETED_DEVICE_FAMILY=1,2 export TARGETNAME=Runner export TARGET_BUILD_DIR=/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos export TARGET_NAME=Runner export TARGET_TEMP_DIR=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build export TEMP_DIR=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build export TEMP_FILES_DIR=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build export TEMP_FILE_DIR=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build export TEMP_ROOT=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO export UID=501 export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app export UNSTRIPPED_PRODUCT=NO export USER=rodydavis export USER_APPS_DIR=/Users/rodydavis/Applications export USER_LIBRARY_DIR=/Users/rodydavis/Library export USE_DYNAMIC_NO_PIC=YES export USE_HEADERMAP=YES export USE_HEADER_SYMLINKS=NO export VALIDATE_PRODUCT=NO export VALID_ARCHS=&quot;arm64 armv7 armv7s&quot; export VERBOSE_PBXCP=NO export VERBOSE_SCRIPT_LOGGING=YES export VERSIONING_SYSTEM=apple-generic export VERSIONPLIST_PATH=Runner.app/version.plist export VERSION_INFO_BUILDER=rodydavis export VERSION_INFO_FILE=Runner_vers.c export VERSION_INFO_STRING=&quot;\&quot;@(#)PROGRAM:Runner PROJECT:Runner-1\&quot;&quot; export WRAPPER_EXTENSION=app export WRAPPER_NAME=Runner.app export WRAPPER_SUFFIX=.app export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode export XCODE_PRODUCT_BUILD_VERSION=9E145 export XCODE_VERSION_ACTUAL=0930 export XCODE_VERSION_MAJOR=0900 export XCODE_VERSION_MINOR=0930 export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices export YACC=yacc export arch=arm64 export variant=normal /bin/sh -c /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh PhaseScriptExecution [CP]\ Embed\ Pods\ Frameworks /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-56B930161B2121076676E4A0.sh cd /Users/rodydavis/Documents/Github/media_picker/example/ios /bin/sh -c /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-56B930161B2121076676E4A0.sh mkdir -p /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks rsync --delete -av --filter P .*.?????? --filter &quot;- CVS/&quot; --filter &quot;- .svn/&quot; --filter &quot;- .git/&quot; --filter &quot;- .hg/&quot; --filter &quot;- Headers&quot; --filter &quot;- PrivateHeaders&quot; --filter &quot;- Modules&quot; &quot;/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/.symlinks/flutter/ios/Flutter.framework&quot; &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks&quot; building file list ... done Flutter.framework/ Flutter.framework/Flutter Flutter.framework/Info.plist Flutter.framework/icudtl.dat sent 77396672 bytes received 92 bytes 51597842.67 bytes/sec total size is 77386919 speedup is 1.00 Stripped /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter of architectures: x86_64 armv7 Code Signing /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework with Identity iPhone Developer: Rody Davis (NYE93D98B6) /usr/bin/codesign --force --sign 22111C6EF2707D5CD17191CC741FFB45C40DDEA7 --preserve-metadata=identifier,entitlements '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework' rsync --delete -av --filter P .*.?????? --filter &quot;- CVS/&quot; --filter &quot;- .svn/&quot; --filter &quot;- .git/&quot; --filter &quot;- .hg/&quot; --filter &quot;- Headers&quot; --filter &quot;- PrivateHeaders&quot; --filter &quot;- Modules&quot; &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/media_picker/media_picker.framework&quot; &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks&quot; building file list ... done media_picker.framework/ media_picker.framework/Info.plist media_picker.framework/media_picker sent 99613 bytes received 70 bytes 199366.00 bytes/sec total size is 99357 speedup is 1.00 Code Signing /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/media_picker.framework with Identity iPhone Developer: Rody Davis (NYE93D98B6) /usr/bin/codesign --force --sign 22111C6EF2707D5CD17191CC741FFB45C40DDEA7 --preserve-metadata=identifier,entitlements '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/media_picker.framework' rsync --delete -av --filter P .*.?????? --filter &quot;- CVS/&quot; --filter &quot;- .svn/&quot; --filter &quot;- .git/&quot; --filter &quot;- .hg/&quot; --filter &quot;- Headers&quot; --filter &quot;- PrivateHeaders&quot; --filter &quot;- Modules&quot; &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/path_provider/path_provider.framework&quot; &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks&quot; building file list ... done path_provider.framework/ path_provider.framework/Info.plist path_provider.framework/path_provider sent 68877 bytes received 70 bytes 137894.00 bytes/sec total size is 68627 speedup is 1.00 Code Signing /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/path_provider.framework with Identity iPhone Developer: Rody Davis (NYE93D98B6) /usr/bin/codesign --force --sign 22111C6EF2707D5CD17191CC741FFB45C40DDEA7 --preserve-metadata=identifier,entitlements '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/path_provider.framework' rsync --delete -av --filter P .*.?????? --filter &quot;- CVS/&quot; --filter &quot;- .svn/&quot; --filter &quot;- .git/&quot; --filter &quot;- .hg/&quot; --filter &quot;- Headers&quot; --filter &quot;- PrivateHeaders&quot; --filter &quot;- Modules&quot; &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/video_player/video_player.framework&quot; &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks&quot; building file list ... done video_player.framework/ video_player.framework/Info.plist video_player.framework/video_player sent 97949 bytes received 70 bytes 196038.00 bytes/sec total size is 97701 speedup is 1.00 Code Signing /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/video_player.framework with Identity iPhone Developer: Rody Davis (NYE93D98B6) /usr/bin/codesign --force --sign 22111C6EF2707D5CD17191CC741FFB45C40DDEA7 --preserve-metadata=identifier,entitlements '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/video_player.framework' CodeSign /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework cd /Users/rodydavis/Documents/Github/media_picker/example/ios export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate export PATH=&quot;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin&quot; Signing Identity: &quot;iPhone Developer: Rody Davis (NYE93D98B6)&quot; /usr/bin/codesign --force --sign 22111C6EF2707D5CD17191CC741FFB45C40DDEA7 --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework: replacing existing signature PhaseScriptExecution [CP]\ Copy\ Pods\ Resources /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-1A1B3FEFF2333A27233BD9E1.sh cd /Users/rodydavis/Documents/Github/media_picker/example/ios /bin/sh -c /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-1A1B3FEFF2333A27233BD9E1.sh building file list ... done sent 29 bytes received 20 bytes 98.00 bytes/sec total size is 0 speedup is 0.00 Touch /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app cd /Users/rodydavis/Documents/Github/media_picker/example/ios export PATH=&quot;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin&quot; /usr/bin/touch -c /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app ProcessProductPackaging /Users/rodydavis/Library/MobileDevice/Provisioning\ Profiles/ea734a63-3e75-4db0-b5ae-10c115f786b7.mobileprovision /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/embedded.mobileprovision cd /Users/rodydavis/Documents/Github/media_picker/example/ios export PATH=&quot;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin&quot; builtin-productPackagingUtility /Users/rodydavis/Library/MobileDevice/Provisioning\ Profiles/ea734a63-3e75-4db0-b5ae-10c115f786b7.mobileprovision -o /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/embedded.mobileprovision CopySwiftLibs /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app cd /Users/rodydavis/Documents/Github/media_picker/example/ios export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer export PATH=&quot;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin&quot; export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk builtin-swiftStdLibTool --copy --verbose --sign 22111C6EF2707D5CD17191CC741FFB45C40DDEA7 --scan-executable /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Runner --scan-folder /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks --scan-folder /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/PlugIns --scan-folder /Users/rodydavis/Documents/Github/media_picker/example/ios/Flutter/Flutter.framework --scan-folder /Users/rodydavis/Documents/Github/media_picker/example/ios/Flutter/App.framework --scan-folder /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Pods_Runner.framework --platform iphoneos --toolchain /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks --strip-bitcode --resource-destination /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app --resource-library libswiftRemoteMirror.dylib Requested Swift ABI version based on scanned binaries: 6 Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCore.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCore.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreAudio.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreAudio.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreFoundation.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreFoundation.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreGraphics.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreGraphics.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreImage.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreImage.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreMedia.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreMedia.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftDarwin.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftDarwin.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftDispatch.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftDispatch.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftFoundation.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftFoundation.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftMetal.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftMetal.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftObjectiveC.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftObjectiveC.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftQuartzCore.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftQuartzCore.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftUIKit.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftUIKit.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftos.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftos.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftRemoteMirror.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/libswiftRemoteMirror.dylib Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib' Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib' /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib' /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib' /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib' /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib' /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib' /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib' Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib: code object is not signed at all /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib' Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib: code object is not signed at all /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib' /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib: code object is not signed at all /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib' /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib' Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib' Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib' Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib' Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib: code object is not signed at all /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib' /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib' /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib' Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib' ProcessProductPackaging &quot;&quot; /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent cd /Users/rodydavis/Documents/Github/media_picker/example/ios export PATH=&quot;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin&quot; Entitlements: { &quot;application-identifier&quot; = &quot;9FK3425VTA.com.appleeducate.mediaPickerExample&quot;; &quot;com.apple.developer.team-identifier&quot; = 9FK3425VTA; &quot;get-task-allow&quot; = 1; &quot;keychain-access-groups&quot; = ( &quot;9FK3425VTA.com.appleeducate.mediaPickerExample&quot; ); } builtin-productPackagingUtility -entitlements -format xml -o /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent CodeSign /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app cd /Users/rodydavis/Documents/Github/media_picker/example/ios export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate export PATH=&quot;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin&quot; Signing Identity: &quot;iPhone Developer: Rody Davis (NYE93D98B6)&quot; Provisioning Profile: &quot;iOS Team Provisioning Profile: *&quot; (ea734a63-3e75-4db0-b5ae-10c115f786b7) /usr/bin/codesign --force --sign 22111C6EF2707D5CD17191CC741FFB45C40DDEA7 --entitlements /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent --timestamp=none /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app Validate /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app cd /Users/rodydavis/Documents/Github/media_picker/example/ios export PATH=&quot;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin&quot; export PRODUCT_TYPE=com.apple.product-type.application builtin-validationUtility /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app ** BUILD SUCCEEDED ** [ +33 ms] Xcode build done. [ ] [ios/] /usr/bin/env xcrun xcodebuild build -configuration Debug ONLY_ACTIVE_ARCH=YES VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/rodydavis/Documents/Github/media_picker/example/build/ios -sdk iphoneos -arch arm64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/8v/39qx36ss40s_c18typ5773m40000gn/T/flutter_build_log_pipejVwrA6/pipe_to_stdout -showBuildSettings [+1684 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild build -configuration Debug ONLY_ACTIVE_ARCH=YES VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/rodydavis/Documents/Github/media_picker/example/build/ios -sdk iphoneos -arch arm64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/8v/39qx36ss40s_c18typ5773m40000gn/T/flutter_build_log_pipejVwrA6/pipe_to_stdout -showBuildSettings [ ] Build settings from command line: ARCHS = arm64 BUILD_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios ONLY_ACTIVE_ARCH = YES SCRIPT_OUTPUT_STREAM_FILE = /var/folders/8v/39qx36ss40s_c18typ5773m40000gn/T/flutter_build_log_pipejVwrA6/pipe_to_stdout SDKROOT = iphoneos11.3 VERBOSE_SCRIPT_LOGGING = YES Build settings for action build and target Runner: ACTION = build AD_HOC_CODE_SIGNING_ALLOWED = NO ALTERNATE_GROUP = staff ALTERNATE_MODE = u+w,go-w,a+rX ALTERNATE_OWNER = rodydavis ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES ALWAYS_SEARCH_USER_PATHS = NO ALWAYS_USE_SEPARATE_HEADERMAPS = NO APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer APPLE_INTERNAL_DIR = /AppleInternal APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools APPLICATION_EXTENSION_API_ONLY = NO APPLY_RULES_IN_COPY_FILES = NO ARCHS = arm64 ARCHS_STANDARD = armv7 arm64 ARCHS_STANDARD_32_64_BIT = armv7 arm64 ARCHS_STANDARD_32_BIT = armv7 ARCHS_STANDARD_64_BIT = arm64 ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64 ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator BITCODE_GENERATION_MODE = marker BUILD_ACTIVE_RESOURCES_ONLY = NO BUILD_COMPONENTS = headers build BUILD_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios BUILD_ROOT = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Products BUILD_STYLE = BUILD_VARIANTS = normal BUILT_PRODUCTS_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos CACHE_ROOT = /var/folders/8v/39qx36ss40s_c18typ5773m40000gn/C/com.apple.DeveloperTools/9.3-9E145/Xcode CCHROOT = /var/folders/8v/39qx36ss40s_c18typ5773m40000gn/C/com.apple.DeveloperTools/9.3-9E145/Xcode CHMOD = /bin/chmod CHOWN = /usr/sbin/chown CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES CLANG_ANALYZER_NONNULL = YES CLANG_CXX_LANGUAGE_STANDARD = gnu++0x CLANG_CXX_LIBRARY = libc++ CLANG_ENABLE_MODULES = YES CLANG_ENABLE_OBJC_ARC = YES CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES CLANG_WARN_BOOL_CONVERSION = YES CLANG_WARN_COMMA = YES CLANG_WARN_CONSTANT_CONVERSION = YES CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR CLANG_WARN_EMPTY_BODY = YES CLANG_WARN_ENUM_CONVERSION = YES CLANG_WARN_INFINITE_RECURSION = YES CLANG_WARN_INT_CONVERSION = YES CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES CLANG_WARN_OBJC_LITERAL_CONVERSION = YES CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR CLANG_WARN_RANGE_LOOP_ANALYSIS = YES CLANG_WARN_STRICT_PROTOTYPES = YES CLANG_WARN_SUSPICIOUS_MOVE = YES CLANG_WARN_UNREACHABLE_CODE = YES CLANG_WARN__DUPLICATE_METHOD_MATCH = YES CLASS_FILE_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/JavaClasses CLEAN_PRECOMPS = YES CLONE_HEADERS = NO CODESIGNING_FOLDER_PATH = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app CODE_SIGNING_ALLOWED = YES CODE_SIGNING_REQUIRED = YES CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext CODE_SIGN_IDENTITY = iPhone Developer CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES COLOR_DIAGNOSTICS = NO COMBINE_HIDPI_IMAGES = NO COMPILER_INDEX_STORE_ENABLE = Default COMPOSITE_SDK_DIRS = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/CompositeSDKs COMPRESS_PNG_FILES = YES CONFIGURATION = Debug CONFIGURATION_BUILD_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos CONFIGURATION_TEMP_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos CONTENTS_FOLDER_PATH = Runner.app COPYING_PRESERVES_HFS_DATA = NO COPY_HEADERS_RUN_UNIFDEF = NO COPY_PHASE_STRIP = NO COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator11.3 CP = /bin/cp CREATE_INFOPLIST_SECTION_IN_BINARY = NO CURRENT_ARCH = arm64 CURRENT_PROJECT_VERSION = 1 CURRENT_VARIANT = normal DEAD_CODE_STRIPPING = YES DEBUGGING_SYMBOLS = YES DEBUG_INFORMATION_FORMAT = dwarf DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0 DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions DEFINES_MODULE = NO DEPLOYMENT_LOCATION = NO DEPLOYMENT_POSTPROCESSING = NO DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min= DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.3 DERIVED_FILES_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources DERIVED_FILE_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources DERIVED_SOURCES_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr DEVELOPMENT_LANGUAGE = English DEVELOPMENT_TEAM = 9FK3425VTA DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation DO_HEADER_SCANNING_IN_JAM = NO DSTROOT = /tmp/Runner.dst DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain DWARF_DSYM_FILE_NAME = Runner.app.dSYM DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO DWARF_DSYM_FOLDER_PATH = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos EFFECTIVE_PLATFORM_NAME = -iphoneos EMBEDDED_CONTENT_CONTAINS_SWIFT = NO EMBEDDED_PROFILE_NAME = embedded.mobileprovision EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO ENABLE_BITCODE = NO ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES ENABLE_HEADER_DEPENDENCIES = YES ENABLE_ON_DEMAND_RESOURCES = YES ENABLE_STRICT_OBJC_MSGSEND = YES ENABLE_TESTABILITY = YES ENTITLEMENTS_ALLOWED = YES ENTITLEMENTS_REQUIRED = YES EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj EXECUTABLES_FOLDER_PATH = Runner.app/Executables EXECUTABLE_FOLDER_PATH = Runner.app EXECUTABLE_NAME = Runner EXECUTABLE_PATH = Runner.app/Runner EXPANDED_CODE_SIGN_IDENTITY = EXPANDED_CODE_SIGN_IDENTITY_NAME = EXPANDED_PROVISIONING_PROFILE = FILE_LIST = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects/LinkFileList FIXED_FILES_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/FixedFiles FLUTTER_APPLICATION_PATH = /Users/rodydavis/Documents/Github/media_picker/example FLUTTER_BUILD_DIR = build FLUTTER_BUILD_MODE = debug FLUTTER_FRAMEWORK_DIR = /Users/rodydavis/Android/flutter/flutter/bin/cache/artifacts/engine/ios FLUTTER_ROOT = /Users/rodydavis/Android/flutter/flutter FLUTTER_TARGET = /Users/rodydavis/Documents/Github/media_picker/example/lib/main.dart FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks FRAMEWORK_FLAG_PREFIX = -framework FRAMEWORK_SEARCH_PATHS = &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/media_picker&quot; &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/path_provider&quot; &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/video_player&quot; &quot;/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/.symlinks/flutter/ios&quot; &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/media_picker&quot; &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/path_provider&quot; &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/video_player&quot; &quot;/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/.symlinks/flutter/ios&quot; /Users/rodydavis/Documents/Github/media_picker/example/ios/Flutter FRAMEWORK_VERSION = A FULL_PRODUCT_NAME = Runner.app GCC3_VERSION = 3.3 GCC_C_LANGUAGE_STANDARD = gnu99 GCC_DYNAMIC_NO_PIC = NO GCC_INLINES_ARE_PRIVATE_EXTERN = YES GCC_NO_COMMON_BLOCKS = YES GCC_OPTIMIZATION_LEVEL = 0 GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++ GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1 COCOAPODS=1 COCOAPODS=1 GCC_SYMBOLS_PRIVATE_EXTERN = NO GCC_THUMB_SUPPORT = YES GCC_TREAT_WARNINGS_AS_ERRORS = NO GCC_VERSION = com.apple.compilers.llvm.clang.1_0 GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0 GCC_WARN_64_TO_32_BIT_CONVERSION = YES GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR GCC_WARN_UNDECLARED_SELECTOR = YES GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE GCC_WARN_UNUSED_FUNCTION = YES GCC_WARN_UNUSED_VARIABLE = YES GENERATE_MASTER_OBJECT_FILE = NO GENERATE_PKGINFO_FILE = YES GENERATE_PROFILING_CODE = NO GENERATE_TEXT_BASED_STUBS = NO GID = 20 GROUP = staff HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES HEADERMAP_INCLUDES_PROJECT_HEADERS = YES HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES HEADERMAP_USES_VFS = NO HEADER_SEARCH_PATHS = &quot;/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public&quot; &quot;/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public/Flutter&quot; &quot;/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public&quot; &quot;/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public/Flutter&quot; HIDE_BITCODE_SYMBOLS = YES HOME = /Users/rodydavis ICONV = /usr/bin/iconv INFOPLIST_EXPAND_BUILD_SETTINGS = YES INFOPLIST_FILE = Runner/Info.plist INFOPLIST_OUTPUT_FORMAT = binary INFOPLIST_PATH = Runner.app/Info.plist INFOPLIST_PREPROCESS = NO INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings INLINE_PRIVATE_FRAMEWORKS = NO INSTALLHDRS_COPY_PHASE = NO INSTALLHDRS_SCRIPT_PHASE = NO INSTALL_DIR = /tmp/Runner.dst/Applications INSTALL_GROUP = staff INSTALL_MODE_FLAG = u+w,go-w,a+rX INSTALL_OWNER = rodydavis INSTALL_PATH = /Applications INSTALL_ROOT = /tmp/Runner.dst IPHONEOS_DEPLOYMENT_TARGET = 8.0 JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8 JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub JAVA_ARCHIVE_CLASSES = YES JAVA_ARCHIVE_TYPE = JAR JAVA_COMPILER = /usr/bin/javac JAVA_FOLDER_PATH = Runner.app/Java JAVA_FRAMEWORK_RESOURCES_DIRS = Resources JAVA_JAR_FLAGS = cv JAVA_SOURCE_SUBDIR = . JAVA_USE_DEPENDENCIES = YES JAVA_ZIP_FLAGS = -urg JIKES_DEFAULT_FLAGS = +E +OLDCSO KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow KEEP_PRIVATE_EXTERNS = NO LD_DEPENDENCY_INFO_FILE = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat LD_GENERATE_MAP_FILE = NO LD_MAP_FILE_PATH = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt LD_NO_PIE = NO LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer LEX = lex LIBRARY_FLAG_NOSPACE = YES LIBRARY_FLAG_PREFIX = -l LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions LIBRARY_SEARCH_PATHS = /Users/rodydavis/Documents/Github/media_picker/example/ios/Flutter LINKER_DISPLAYS_MANGLED_NAMES = NO LINK_FILE_LIST_normal_arm64 = LINK_WITH_STANDARD_LIBRARIES = YES LOCALIZABLE_CONTENT_DIR = LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString LOCAL_ADMIN_APPS_DIR = /Applications/Utilities LOCAL_APPS_DIR = /Applications LOCAL_DEVELOPER_DIR = /Library/Developer LOCAL_LIBRARY_DIR = /Library LOCROOT = LOCSYMROOT = MACH_O_TYPE = mh_execute MAC_OS_X_PRODUCT_BUILD_VERSION = 17E199 MAC_OS_X_VERSION_ACTUAL = 101304 MAC_OS_X_VERSION_MAJOR = 101300 MAC_OS_X_VERSION_MINOR = 1304 METAL_LIBRARY_FILE_BASE = default METAL_LIBRARY_OUTPUT_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app MODULE_CACHE_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/ModuleCache.noindex MTL_ENABLE_DEBUG_INFO = YES NATIVE_ARCH = armv7 NATIVE_ARCH_32_BIT = i386 NATIVE_ARCH_64_BIT = x86_64 NATIVE_ARCH_ACTUAL = x86_64 NO_COMMON = YES OBJECT_FILE_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects OBJECT_FILE_DIR_normal = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal OBJROOT = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex ONLY_ACTIVE_ARCH = YES OS = MACOS OSAC = /usr/bin/osacompile OTHER_CFLAGS = -iquote &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/media_picker/media_picker.framework/Headers&quot; -iquote &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/path_provider/path_provider.framework/Headers&quot; -iquote &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/video_player/video_player.framework/Headers&quot; -isystem &quot;/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public&quot; -isystem &quot;/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public/Flutter&quot; -iquote &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/media_picker/media_picker.framework/Headers&quot; -iquote &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/path_provider/path_provider.framework/Headers&quot; -iquote &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/video_player/video_player.framework/Headers&quot; -isystem &quot;/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public&quot; -isystem &quot;/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public/Flutter&quot; OTHER_CPLUSPLUSFLAGS = -iquote &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/media_picker/media_picker.framework/Headers&quot; -iquote &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/path_provider/path_provider.framework/Headers&quot; -iquote &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/video_player/video_player.framework/Headers&quot; -isystem &quot;/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public&quot; -isystem &quot;/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public/Flutter&quot; -iquote &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/media_picker/media_picker.framework/Headers&quot; -iquote &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/path_provider/path_provider.framework/Headers&quot; -iquote &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/video_player/video_player.framework/Headers&quot; -isystem &quot;/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public&quot; -isystem &quot;/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public/Flutter&quot; OTHER_LDFLAGS = -framework &quot;Flutter&quot; -framework &quot;media_picker&quot; -framework &quot;path_provider&quot; -framework &quot;video_player&quot; -framework &quot;Flutter&quot; -framework &quot;media_picker&quot; -framework &quot;path_provider&quot; -framework &quot;video_player&quot; OTHER_SWIFT_FLAGS = &quot;-D&quot; &quot;COCOAPODS&quot; &quot;-D&quot; &quot;COCOAPODS&quot; PACKAGE_TYPE = com.apple.package-type.wrapper.application PASCAL_STRINGS = YES PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist PFE_FILE_C_DIALECTS = objective-c PKGINFO_FILE_PATH = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/PkgInfo PKGINFO_PATH = Runner.app/PkgInfo PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform PLATFORM_DISPLAY_NAME = iOS PLATFORM_NAME = iphoneos PLATFORM_PREFERRED_ARCH = arm64 PLATFORM_PRODUCT_BUILD_VERSION = 15E217 PLIST_FILE_OUTPUT_FORMAT = binary PLUGINS_FOLDER_PATH = Runner.app/PlugIns PODS_BUILD_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios PODS_CONFIGURATION_BUILD_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos PODS_PODFILE_DIR_PATH = /Users/rodydavis/Documents/Github/media_picker/example/ios/. PODS_ROOT = /Users/rodydavis/Documents/Github/media_picker/example/ios/Pods PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES PRECOMP_DESTINATION_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/PrefixHeaders PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO PREVIEW_DART_2 = true PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders PRODUCT_BUNDLE_IDENTIFIER = com.appleeducate.mediaPickerExample PRODUCT_MODULE_NAME = Runner PRODUCT_NAME = Runner PRODUCT_SETTINGS_PATH = /Users/rodydavis/Documents/Github/media_picker/example/ios/Runner/Info.plist PRODUCT_TYPE = com.apple.product-type.application PROFILING_CODE = NO PROJECT = Runner PROJECT_DERIVED_FILE_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/DerivedSources PROJECT_DIR = /Users/rodydavis/Documents/Github/media_picker/example/ios PROJECT_FILE_PATH = /Users/rodydavis/Documents/Github/media_picker/example/ios/Runner.xcodeproj PROJECT_NAME = Runner PROJECT_TEMP_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build PROJECT_TEMP_ROOT = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex PROVISIONING_PROFILE_REQUIRED = YES PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES REMOVE_CVS_FROM_RESOURCES = YES REMOVE_GIT_FROM_RESOURCES = YES REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES REMOVE_HG_FROM_RESOURCES = YES REMOVE_SVN_FROM_RESOURCES = YES RESOURCE_RULES_REQUIRED = YES REZ_COLLECTOR_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources REZ_OBJECTS_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources/Objects SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO SCRIPTS_FOLDER_PATH = Runner.app/Scripts SCRIPT_OUTPUT_STREAM_FILE = /var/folders/8v/39qx36ss40s_c18typ5773m40000gn/T/flutter_build_log_pipejVwrA6/pipe_to_stdout SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk SDK_DIR_iphoneos11_3 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk SDK_NAME = iphoneos11.3 SDK_NAMES = iphoneos11.3 SDK_PRODUCT_BUILD_VERSION = 15E217 SDK_VERSION = 11.3 SDK_VERSION_ACTUAL = 110300 SDK_VERSION_MAJOR = 110000 SDK_VERSION_MINOR = 300 SED = /usr/bin/sed SEPARATE_STRIP = NO SEPARATE_SYMBOL_EDIT = NO SET_DIR_MODE_OWNER_GROUP = YES SET_FILE_MODE_OWNER_GROUP = NO SHALLOW_BUNDLE = YES SHARED_DERIVED_FILE_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/DerivedSources SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks SHARED_PRECOMPS_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/PrecompiledHeaders SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport SKIP_INSTALL = NO SOURCE_ROOT = /Users/rodydavis/Documents/Github/media_picker/example/ios SRCROOT = /Users/rodydavis/Documents/Github/media_picker/example/ios STRINGS_FILE_OUTPUT_ENCODING = binary STRIP_BITCODE_FROM_COPIED_FILES = YES STRIP_INSTALLED_PRODUCT = YES STRIP_STYLE = all STRIP_SWIFT_SYMBOLS = YES SUPPORTED_DEVICE_FAMILIES = 1,2 SUPPORTED_PLATFORMS = iphonesimulator iphoneos SUPPORTS_TEXT_BASED_API = NO SWIFT_COMPILATION_MODE = singlefile SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h SWIFT_OPTIMIZATION_LEVEL = -Onone SWIFT_PLATFORM_TARGET_PREFIX = ios SWIFT_SWIFT3_OBJC_INFERENCE = On SWIFT_VERSION = 4.0 SYMROOT = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Products SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities SYSTEM_APPS_DIR = /Applications SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices SYSTEM_DEMOS_DIR = /Applications/Extras SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities SYSTEM_DOCUMENTATION_DIR = /Library/Documentation SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions SYSTEM_LIBRARY_DIR = /System/Library TAPI_VERIFY_MODE = ErrorsOnly TARGETED_DEVICE_FAMILY = 1,2 TARGETNAME = Runner TARGET_BUILD_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos TARGET_NAME = Runner TARGET_TEMP_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build TEMP_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build TEMP_FILES_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build TEMP_FILE_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build TEMP_ROOT = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO UID = 501 UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app UNSTRIPPED_PRODUCT = NO USER = rodydavis USER_APPS_DIR = /Users/rodydavis/Applications USER_LIBRARY_DIR = /Users/rodydavis/Library USE_DYNAMIC_NO_PIC = YES USE_HEADERMAP = YES USE_HEADER_SYMLINKS = NO VALIDATE_PRODUCT = NO VALID_ARCHS = arm64 armv7 armv7s VERBOSE_PBXCP = NO VERBOSE_SCRIPT_LOGGING = YES VERSIONING_SYSTEM = apple-generic VERSIONPLIST_PATH = Runner.app/version.plist VERSION_INFO_BUILDER = rodydavis VERSION_INFO_FILE = Runner_vers.c VERSION_INFO_STRING = &quot;@(#)PROGRAM:Runner PROJECT:Runner-1&quot; WRAPPER_EXTENSION = app WRAPPER_NAME = Runner.app WRAPPER_SUFFIX = .app WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode XCODE_PRODUCT_BUILD_VERSION = 9E145 XCODE_VERSION_ACTUAL = 0930 XCODE_VERSION_MAJOR = 0900 XCODE_VERSION_MINOR = 0930 XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices YACC = yacc arch = arm64 variant = normal [ +163 ms] Installing and launching... [ ] Debugging is enabled, connecting to observatory [ +3 ms] /usr/bin/env ios-deploy --id a75015aff2fbecb29dcc8e459b14cba86c08f7fe --bundle build/ios/iphoneos/Runner.app --no-wifi --justlaunch --args --enable-dart-profiling --enable-checked-mode [ +21 ms] [....] Waiting for iOS device to be connected [ +13 ms] [....] Using a75015aff2fbecb29dcc8e459b14cba86c08f7fe (N71mAP, iPhone 6s, iphoneos, arm64) a.k.a. 'Dev-iPhone-6s'. [ ] ------ Install phase ------ [ ] [ 0%] Found a75015aff2fbecb29dcc8e459b14cba86c08f7fe (N71mAP, iPhone 6s, iphoneos, arm64) a.k.a. 'Dev-iPhone-6s' connected through USB, beginning install [ +211 ms] [ 5%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/META-INF/ to device [ ] [ 5%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/META-INF/com.apple.ZipMetadata.plist to device [ ] [ 5%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/_CodeSignature/ to device [ ] [ 5%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/_CodeSignature/CodeResources to device [ ] [ 5%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon20x20@2x.png to device [ ] [ 6%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon20x20@3x.png to device [ ] [ 6%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon29x29.png to device [ ] [ 6%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon60x60@2x.png to device [ ] [ 6%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Runner to device [ ] [ 7%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon29x29@2x.png to device [ ] [ 7%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon40x40@3x.png to device [ ] [ 7%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/libswiftRemoteMirror.dylib to device [ +88 ms] [ 8%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Debug.xcconfig to device [ ] [ 8%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon29x29~ipad.png to device [ ] [ 8%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon40x40@2x.png to device [ ] [ 8%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon29x29@3x.png to device [ ] [ 9%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon60x60@3x.png to device [ ] [ 9%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/ to device [ ] [ 9%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/ to device [ ] [ 9%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib to device [ ] [ 10%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib to device [ ] [ 10%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/Info.plist to device [ ] [ 10%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/ to device [ ] [ 10%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib to device [ ] [ 11%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib to device [ ] [ 11%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/Info.plist to device [ ] [ 11%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/ to device [ ] [ 11%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/platform.dill to device [ +151 ms] [ 13%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/LICENSE to device [ +52 ms] [ 14%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/AssetManifest.json to device [ ] [ 14%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/kernel_blob.bin to device [ +337 ms] [ 18%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/FontManifest.json to device [ ] [ 18%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/packages/ to device [ ] [ 18%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/packages/cupertino_icons/ to device [ ] [ 18%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/packages/cupertino_icons/assets/ to device [ ] [ 19%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf to device [ ] [ 19%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/fonts/ to device [ ] [ 19%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/fonts/MaterialIcons-Regular.ttf to device [ +3 ms] [ 19%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Assets.car to device [ +2 ms] [ 20%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppFrameworkInfo.plist to device [ ] [ 20%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon40x40@2x~ipad.png to device [ ] [ 20%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon76x76@2x~ipad.png to device [ ] [ 20%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon83.5x83.5@2x~ipad.png to device [ ] [ 21%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Generated.xcconfig to device [ ] [ 21%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon29x29@2x~ipad.png to device [ ] [ 21%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon40x40~ipad.png to device [ ] [ 21%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/ to device [ ] [ 22%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/media_picker.framework/ to device [ ] [ 22%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/media_picker.framework/_CodeSignature/ to device [ ] [ 22%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/media_picker.framework/_CodeSignature/CodeResources to device [ ] [ 22%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/media_picker.framework/media_picker to device [ +2 ms] [ 23%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/media_picker.framework/Info.plist to device [ ] [ 23%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib to device [ +4 ms] [ 23%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib to device [ +7 ms] [ 24%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftCore.dylib to device [ +535 ms] [ 28%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib to device [ +14 ms] [ 29%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib to device [ +12 ms] [ 29%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftMetal.dylib to device [ +6 ms] [ 30%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib to device [ +24 ms] [ 30%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftos.dylib to device [ +5 ms] [ 30%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/video_player.framework/ to device [ ] [ 31%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/video_player.framework/_CodeSignature/ to device [ ] [ 31%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/video_player.framework/_CodeSignature/CodeResources to device [ ] [ 31%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/video_player.framework/video_player to device [ +1 ms] [ 31%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/video_player.framework/Info.plist to device [ ] [ 32%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib to device [ +5 ms] [ 32%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/ to device [ ] [ 32%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature/ to device [ ] [ 32%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature/CodeResources to device [ ] [ 33%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/icudtl.dat to device [ +172 ms] [ 35%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter to device [ +625 ms] [ 41%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Info.plist to device [ ] [ 41%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/ to device [ ] [ 42%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature/ to device [ ] [ 42%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature/CodeResources to device [ ] [ 42%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/App to device [ +35 ms] [ 43%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/Info.plist to device [ ] [ 43%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib to device [ +10 ms] [ 43%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib to device [ +4 ms] [ 44%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib to device [ +8 ms] [ 44%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib to device [ +216 ms] [ 47%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib to device [ +5 ms] [ 47%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/path_provider.framework/ to device [ ] [ 47%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/path_provider.framework/_CodeSignature/ to device [ ] [ 47%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/path_provider.framework/_CodeSignature/CodeResources to device [ ] [ 48%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/path_provider.framework/path_provider to device [ +1 ms] [ 48%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/path_provider.framework/Info.plist to device [ ] [ 48%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon20x20~ipad.png to device [ ] [ 48%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/embedded.mobileprovision to device [ ] [ 49%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon20x20@2x~ipad.png to device [ ] [ 49%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Info.plist to device [ ] [ 49%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/PkgInfo to device [ ] [ 49%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon76x76~ipad.png to device [ +283 ms] [ 52%] CreatingStagingDirectory [ ] [ 57%] ExtractingPackage [ ] [ 60%] InspectingPackage [ +21 ms] [ 60%] TakingInstallLock [ +31 ms] [ 65%] PreflightingApplication [ +23 ms] [ 65%] InstallingEmbeddedProfile [ +3 ms] [ 70%] VerifyingApplication [ +93 ms] [ 75%] CreatingContainer [ +5 ms] [ 80%] InstallingApplication [ +8 ms] [ 85%] PostflightingApplication [ +1 ms] [ 90%] SandboxingApplication [ +9 ms] [ 95%] GeneratingApplicationMap [ +68 ms] [100%] Installed package build/ios/iphoneos/Runner.app [ +234 ms] ------ Debug phase ------ [ ] Starting debug of a75015aff2fbecb29dcc8e459b14cba86c08f7fe (N71mAP, iPhone 6s, iphoneos, arm64) a.k.a. 'Dev-iPhone-6s' connected through USB... [ +492 ms] [ 0%] Looking up developer disk image [ +15 ms] [ 95%] Developer disk image mounted successfully [ +227 ms] [100%] Connecting to remote debug server [ ] ------------------------- [ +34 ms] (lldb) command source -s 0 '/tmp/C22674D7-F9F0-45BB-BF37-0CEAF99E6640/fruitstrap-lldb-prep-cmds-a75015aff2fbecb29dcc8e459b14cba86c08f7fe' [ ] Executing commands in '/tmp/C22674D7-F9F0-45BB-BF37-0CEAF99E6640/fruitstrap-lldb-prep-cmds-a75015aff2fbecb29dcc8e459b14cba86c08f7fe'. [ ] (lldb) platform select remote-ios --sysroot '/Users/rodydavis/Library/Developer/Xcode/iOS DeviceSupport/11.3.1 (15E302)/Symbols' [ ] Platform: remote-ios [ ] Connected: no [ ] SDK Path: &quot;/Users/rodydavis/Library/Developer/Xcode/iOS DeviceSupport/11.3.1 (15E302)/Symbols&quot; [ ] (lldb) target create &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app&quot; [ +161 ms] Traceback (most recent call last): [ ] File &quot;&lt;input&gt;&quot;, line 1, in &lt;module&gt; [ ] File &quot;/usr/local/Cellar/python@2/2.7.15/Frameworks/Python.framework/Versions/2.7/lib/python2.7/copy.py&quot;, line 52, in &lt;module&gt; [ ] import weakref [ ] File &quot;/usr/local/Cellar/python@2/2.7.15/Frameworks/Python.framework/Versions/2.7/lib/python2.7/weakref.py&quot;, line 14, in &lt;module&gt; [ ] from _weakref import ( [ ] ImportError: cannot import name _remove_dead_weakref [+3255 ms] Current executable set to '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app' (arm64). [ ] (lldb) script fruitstrap_device_app=&quot;/private/var/containers/Bundle/Application/8C55045E-AA32-4F9C-B94D-C08508F235D1/Runner.app&quot; [ ] (lldb) script fruitstrap_connect_url=&quot;connect://127.0.0.1:59614&quot; [ ] (lldb) target modules search-paths add /usr &quot;/Users/rodydavis/Library/Developer/Xcode/iOS DeviceSupport/11.3.1 (15E302)/Symbols/usr&quot; /System &quot;/Users/rodydavis/Library/Developer/Xcode/iOS DeviceSupport/11.3.1 (15E302)/Symbols/System&quot; &quot;/private/var/containers/Bundle/Application/8C55045E-AA32-4F9C-B94D-C08508F235D1&quot; &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos&quot; &quot;/var/containers/Bundle/Application/8C55045E-AA32-4F9C-B94D-C08508F235D1&quot; &quot;/Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos&quot; /Developer &quot;/Users/rodydavis/Library/Developer/Xcode/iOS DeviceSupport/11.3.1 (15E302)/Symbols/Developer&quot; [ +60 ms] (lldb) command script import &quot;/tmp/C22674D7-F9F0-45BB-BF37-0CEAF99E6640/fruitstrap_a75015aff2fbecb29dcc8e459b14cba86c08f7fe.py&quot; [ +9 ms] (lldb) command script add -f fruitstrap_a75015aff2fbecb29dcc8e459b14cba86c08f7fe.connect_command connect [ ] (lldb) command script add -s asynchronous -f fruitstrap_a75015aff2fbecb29dcc8e459b14cba86c08f7fe.run_command run [ ] (lldb) command script add -s asynchronous -f fruitstrap_a75015aff2fbecb29dcc8e459b14cba86c08f7fe.autoexit_command autoexit [ ] (lldb) command script add -s asynchronous -f fruitstrap_a75015aff2fbecb29dcc8e459b14cba86c08f7fe.safequit_command safequit [ ] (lldb) connect [ +27 ms] (lldb) run [ +342 ms] success [ ] (lldb) safequit [ +146 ms] Application launched on the device. Waiting for observatory port."><pre class="notranslate"><code class="notranslate"> export REZ_COLLECTOR_DIR=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources export REZ_OBJECTS_DIR=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources/Objects export REZ_SEARCH_PATHS="/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos " export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO export SCRIPTS_FOLDER_PATH=Runner.app/Scripts export SCRIPT_INPUT_FILE_COUNT=0 export SCRIPT_OUTPUT_FILE_COUNT=0 export SCRIPT_OUTPUT_STREAM_FILE=/var/folders/8v/39qx36ss40s_c18typ5773m40000gn/T/flutter_build_log_pipejVwrA6/pipe_to_stdout export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk export SDK_DIR_iphoneos11_3=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk export SDK_NAME=iphoneos11.3 export SDK_NAMES=iphoneos11.3 export SDK_PRODUCT_BUILD_VERSION=15E217 export SDK_VERSION=11.3 export SDK_VERSION_ACTUAL=110300 export SDK_VERSION_MAJOR=110000 export SDK_VERSION_MINOR=300 export SED=/usr/bin/sed export SEPARATE_STRIP=NO export SEPARATE_SYMBOL_EDIT=NO export SET_DIR_MODE_OWNER_GROUP=YES export SET_FILE_MODE_OWNER_GROUP=NO export SHALLOW_BUNDLE=YES export SHARED_DERIVED_FILE_DIR=/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/DerivedSources export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks export SHARED_PRECOMPS_DIR=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/PrecompiledHeaders export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport export SKIP_INSTALL=NO export SOURCE_ROOT=/Users/rodydavis/Documents/Github/media_picker/example/ios export SRCROOT=/Users/rodydavis/Documents/Github/media_picker/example/ios export STRINGS_FILE_OUTPUT_ENCODING=binary export STRIP_BITCODE_FROM_COPIED_FILES=YES export STRIP_INSTALLED_PRODUCT=YES export STRIP_STYLE=all export STRIP_SWIFT_SYMBOLS=YES export SUPPORTED_DEVICE_FAMILIES=1,2 export SUPPORTED_PLATFORMS="iphonesimulator iphoneos" export SUPPORTS_TEXT_BASED_API=NO export SWIFT_COMPILATION_MODE=singlefile export SWIFT_OBJC_BRIDGING_HEADER=Runner/Runner-Bridging-Header.h export SWIFT_OPTIMIZATION_LEVEL=-Onone export SWIFT_PLATFORM_TARGET_PREFIX=ios export SWIFT_SWIFT3_OBJC_INFERENCE=On export SWIFT_VERSION=4.0 export SYMROOT=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Products export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities export SYSTEM_APPS_DIR=/Applications export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices export SYSTEM_DEMOS_DIR=/Applications/Extras export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples" export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library" export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools" export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools" export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools" export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes" export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools" export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools" export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions export SYSTEM_LIBRARY_DIR=/System/Library export TAPI_VERIFY_MODE=ErrorsOnly export TARGETED_DEVICE_FAMILY=1,2 export TARGETNAME=Runner export TARGET_BUILD_DIR=/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos export TARGET_NAME=Runner export TARGET_TEMP_DIR=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build export TEMP_DIR=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build export TEMP_FILES_DIR=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build export TEMP_FILE_DIR=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build export TEMP_ROOT=/Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO export UID=501 export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app export UNSTRIPPED_PRODUCT=NO export USER=rodydavis export USER_APPS_DIR=/Users/rodydavis/Applications export USER_LIBRARY_DIR=/Users/rodydavis/Library export USE_DYNAMIC_NO_PIC=YES export USE_HEADERMAP=YES export USE_HEADER_SYMLINKS=NO export VALIDATE_PRODUCT=NO export VALID_ARCHS="arm64 armv7 armv7s" export VERBOSE_PBXCP=NO export VERBOSE_SCRIPT_LOGGING=YES export VERSIONING_SYSTEM=apple-generic export VERSIONPLIST_PATH=Runner.app/version.plist export VERSION_INFO_BUILDER=rodydavis export VERSION_INFO_FILE=Runner_vers.c export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner PROJECT:Runner-1\"" export WRAPPER_EXTENSION=app export WRAPPER_NAME=Runner.app export WRAPPER_SUFFIX=.app export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode export XCODE_PRODUCT_BUILD_VERSION=9E145 export XCODE_VERSION_ACTUAL=0930 export XCODE_VERSION_MAJOR=0900 export XCODE_VERSION_MINOR=0930 export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices export YACC=yacc export arch=arm64 export variant=normal /bin/sh -c /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh PhaseScriptExecution [CP]\ Embed\ Pods\ Frameworks /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-56B930161B2121076676E4A0.sh cd /Users/rodydavis/Documents/Github/media_picker/example/ios /bin/sh -c /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-56B930161B2121076676E4A0.sh mkdir -p /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks rsync --delete -av --filter P .*.?????? --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/.symlinks/flutter/ios/Flutter.framework" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks" building file list ... done Flutter.framework/ Flutter.framework/Flutter Flutter.framework/Info.plist Flutter.framework/icudtl.dat sent 77396672 bytes received 92 bytes 51597842.67 bytes/sec total size is 77386919 speedup is 1.00 Stripped /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter of architectures: x86_64 armv7 Code Signing /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework with Identity iPhone Developer: Rody Davis (NYE93D98B6) /usr/bin/codesign --force --sign 22111C6EF2707D5CD17191CC741FFB45C40DDEA7 --preserve-metadata=identifier,entitlements '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework' rsync --delete -av --filter P .*.?????? --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/media_picker/media_picker.framework" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks" building file list ... done media_picker.framework/ media_picker.framework/Info.plist media_picker.framework/media_picker sent 99613 bytes received 70 bytes 199366.00 bytes/sec total size is 99357 speedup is 1.00 Code Signing /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/media_picker.framework with Identity iPhone Developer: Rody Davis (NYE93D98B6) /usr/bin/codesign --force --sign 22111C6EF2707D5CD17191CC741FFB45C40DDEA7 --preserve-metadata=identifier,entitlements '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/media_picker.framework' rsync --delete -av --filter P .*.?????? --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/path_provider/path_provider.framework" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks" building file list ... done path_provider.framework/ path_provider.framework/Info.plist path_provider.framework/path_provider sent 68877 bytes received 70 bytes 137894.00 bytes/sec total size is 68627 speedup is 1.00 Code Signing /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/path_provider.framework with Identity iPhone Developer: Rody Davis (NYE93D98B6) /usr/bin/codesign --force --sign 22111C6EF2707D5CD17191CC741FFB45C40DDEA7 --preserve-metadata=identifier,entitlements '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/path_provider.framework' rsync --delete -av --filter P .*.?????? --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/video_player/video_player.framework" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks" building file list ... done video_player.framework/ video_player.framework/Info.plist video_player.framework/video_player sent 97949 bytes received 70 bytes 196038.00 bytes/sec total size is 97701 speedup is 1.00 Code Signing /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/video_player.framework with Identity iPhone Developer: Rody Davis (NYE93D98B6) /usr/bin/codesign --force --sign 22111C6EF2707D5CD17191CC741FFB45C40DDEA7 --preserve-metadata=identifier,entitlements '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/video_player.framework' CodeSign /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework cd /Users/rodydavis/Documents/Github/media_picker/example/ios export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin" Signing Identity: "iPhone Developer: Rody Davis (NYE93D98B6)" /usr/bin/codesign --force --sign 22111C6EF2707D5CD17191CC741FFB45C40DDEA7 --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework: replacing existing signature PhaseScriptExecution [CP]\ Copy\ Pods\ Resources /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-1A1B3FEFF2333A27233BD9E1.sh cd /Users/rodydavis/Documents/Github/media_picker/example/ios /bin/sh -c /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-1A1B3FEFF2333A27233BD9E1.sh building file list ... done sent 29 bytes received 20 bytes 98.00 bytes/sec total size is 0 speedup is 0.00 Touch /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app cd /Users/rodydavis/Documents/Github/media_picker/example/ios export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin" /usr/bin/touch -c /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app ProcessProductPackaging /Users/rodydavis/Library/MobileDevice/Provisioning\ Profiles/ea734a63-3e75-4db0-b5ae-10c115f786b7.mobileprovision /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/embedded.mobileprovision cd /Users/rodydavis/Documents/Github/media_picker/example/ios export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin" builtin-productPackagingUtility /Users/rodydavis/Library/MobileDevice/Provisioning\ Profiles/ea734a63-3e75-4db0-b5ae-10c115f786b7.mobileprovision -o /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/embedded.mobileprovision CopySwiftLibs /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app cd /Users/rodydavis/Documents/Github/media_picker/example/ios export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin" export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk builtin-swiftStdLibTool --copy --verbose --sign 22111C6EF2707D5CD17191CC741FFB45C40DDEA7 --scan-executable /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Runner --scan-folder /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks --scan-folder /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/PlugIns --scan-folder /Users/rodydavis/Documents/Github/media_picker/example/ios/Flutter/Flutter.framework --scan-folder /Users/rodydavis/Documents/Github/media_picker/example/ios/Flutter/App.framework --scan-folder /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Pods_Runner.framework --platform iphoneos --toolchain /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks --strip-bitcode --resource-destination /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app --resource-library libswiftRemoteMirror.dylib Requested Swift ABI version based on scanned binaries: 6 Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCore.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCore.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreAudio.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreAudio.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreFoundation.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreFoundation.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreGraphics.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreGraphics.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreImage.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreImage.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreMedia.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCoreMedia.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftDarwin.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftDarwin.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftDispatch.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftDispatch.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftFoundation.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftFoundation.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftMetal.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftMetal.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftObjectiveC.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftObjectiveC.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftQuartzCore.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftQuartzCore.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftUIKit.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftUIKit.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftos.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftos.dylib' '-r' '-o' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib' Copying /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftRemoteMirror.dylib to /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/libswiftRemoteMirror.dylib Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCore.dylib' Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib' /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib' /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib' /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib' /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib' /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib' /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib' Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib: code object is not signed at all /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib' Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib: code object is not signed at all /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib' /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftMetal.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib: code object is not signed at all /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib' /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftos.dylib' Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib' Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib' Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib' Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib: code object is not signed at all /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib' /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib' /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib' Probing signature of /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib /usr/bin/codesign '-r-' '--display' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib' /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib: code object is not signed at all Codesigning /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib /usr/bin/codesign '--force' '--sign' '22111C6EF2707D5CD17191CC741FFB45C40DDEA7' '--verbose' '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib' ProcessProductPackaging "" /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent cd /Users/rodydavis/Documents/Github/media_picker/example/ios export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin" Entitlements: { "application-identifier" = "9FK3425VTA.com.appleeducate.mediaPickerExample"; "com.apple.developer.team-identifier" = 9FK3425VTA; "get-task-allow" = 1; "keychain-access-groups" = ( "9FK3425VTA.com.appleeducate.mediaPickerExample" ); } builtin-productPackagingUtility -entitlements -format xml -o /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent CodeSign /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app cd /Users/rodydavis/Documents/Github/media_picker/example/ios export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin" Signing Identity: "iPhone Developer: Rody Davis (NYE93D98B6)" Provisioning Profile: "iOS Team Provisioning Profile: *" (ea734a63-3e75-4db0-b5ae-10c115f786b7) /usr/bin/codesign --force --sign 22111C6EF2707D5CD17191CC741FFB45C40DDEA7 --entitlements /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner.app.xcent --timestamp=none /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app Validate /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app cd /Users/rodydavis/Documents/Github/media_picker/example/ios export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin" export PRODUCT_TYPE=com.apple.product-type.application builtin-validationUtility /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app ** BUILD SUCCEEDED ** [ +33 ms] Xcode build done. [ ] [ios/] /usr/bin/env xcrun xcodebuild build -configuration Debug ONLY_ACTIVE_ARCH=YES VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/rodydavis/Documents/Github/media_picker/example/build/ios -sdk iphoneos -arch arm64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/8v/39qx36ss40s_c18typ5773m40000gn/T/flutter_build_log_pipejVwrA6/pipe_to_stdout -showBuildSettings [+1684 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild build -configuration Debug ONLY_ACTIVE_ARCH=YES VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/rodydavis/Documents/Github/media_picker/example/build/ios -sdk iphoneos -arch arm64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/8v/39qx36ss40s_c18typ5773m40000gn/T/flutter_build_log_pipejVwrA6/pipe_to_stdout -showBuildSettings [ ] Build settings from command line: ARCHS = arm64 BUILD_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios ONLY_ACTIVE_ARCH = YES SCRIPT_OUTPUT_STREAM_FILE = /var/folders/8v/39qx36ss40s_c18typ5773m40000gn/T/flutter_build_log_pipejVwrA6/pipe_to_stdout SDKROOT = iphoneos11.3 VERBOSE_SCRIPT_LOGGING = YES Build settings for action build and target Runner: ACTION = build AD_HOC_CODE_SIGNING_ALLOWED = NO ALTERNATE_GROUP = staff ALTERNATE_MODE = u+w,go-w,a+rX ALTERNATE_OWNER = rodydavis ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES ALWAYS_SEARCH_USER_PATHS = NO ALWAYS_USE_SEPARATE_HEADERMAPS = NO APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer APPLE_INTERNAL_DIR = /AppleInternal APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools APPLICATION_EXTENSION_API_ONLY = NO APPLY_RULES_IN_COPY_FILES = NO ARCHS = arm64 ARCHS_STANDARD = armv7 arm64 ARCHS_STANDARD_32_64_BIT = armv7 arm64 ARCHS_STANDARD_32_BIT = armv7 ARCHS_STANDARD_64_BIT = arm64 ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64 ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator BITCODE_GENERATION_MODE = marker BUILD_ACTIVE_RESOURCES_ONLY = NO BUILD_COMPONENTS = headers build BUILD_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios BUILD_ROOT = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Products BUILD_STYLE = BUILD_VARIANTS = normal BUILT_PRODUCTS_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos CACHE_ROOT = /var/folders/8v/39qx36ss40s_c18typ5773m40000gn/C/com.apple.DeveloperTools/9.3-9E145/Xcode CCHROOT = /var/folders/8v/39qx36ss40s_c18typ5773m40000gn/C/com.apple.DeveloperTools/9.3-9E145/Xcode CHMOD = /bin/chmod CHOWN = /usr/sbin/chown CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES CLANG_ANALYZER_NONNULL = YES CLANG_CXX_LANGUAGE_STANDARD = gnu++0x CLANG_CXX_LIBRARY = libc++ CLANG_ENABLE_MODULES = YES CLANG_ENABLE_OBJC_ARC = YES CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES CLANG_WARN_BOOL_CONVERSION = YES CLANG_WARN_COMMA = YES CLANG_WARN_CONSTANT_CONVERSION = YES CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR CLANG_WARN_EMPTY_BODY = YES CLANG_WARN_ENUM_CONVERSION = YES CLANG_WARN_INFINITE_RECURSION = YES CLANG_WARN_INT_CONVERSION = YES CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES CLANG_WARN_OBJC_LITERAL_CONVERSION = YES CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR CLANG_WARN_RANGE_LOOP_ANALYSIS = YES CLANG_WARN_STRICT_PROTOTYPES = YES CLANG_WARN_SUSPICIOUS_MOVE = YES CLANG_WARN_UNREACHABLE_CODE = YES CLANG_WARN__DUPLICATE_METHOD_MATCH = YES CLASS_FILE_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/JavaClasses CLEAN_PRECOMPS = YES CLONE_HEADERS = NO CODESIGNING_FOLDER_PATH = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app CODE_SIGNING_ALLOWED = YES CODE_SIGNING_REQUIRED = YES CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext CODE_SIGN_IDENTITY = iPhone Developer CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES COLOR_DIAGNOSTICS = NO COMBINE_HIDPI_IMAGES = NO COMPILER_INDEX_STORE_ENABLE = Default COMPOSITE_SDK_DIRS = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/CompositeSDKs COMPRESS_PNG_FILES = YES CONFIGURATION = Debug CONFIGURATION_BUILD_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos CONFIGURATION_TEMP_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos CONTENTS_FOLDER_PATH = Runner.app COPYING_PRESERVES_HFS_DATA = NO COPY_HEADERS_RUN_UNIFDEF = NO COPY_PHASE_STRIP = NO COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator11.3 CP = /bin/cp CREATE_INFOPLIST_SECTION_IN_BINARY = NO CURRENT_ARCH = arm64 CURRENT_PROJECT_VERSION = 1 CURRENT_VARIANT = normal DEAD_CODE_STRIPPING = YES DEBUGGING_SYMBOLS = YES DEBUG_INFORMATION_FORMAT = dwarf DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0 DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions DEFINES_MODULE = NO DEPLOYMENT_LOCATION = NO DEPLOYMENT_POSTPROCESSING = NO DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min= DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.3 DERIVED_FILES_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources DERIVED_FILE_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources DERIVED_SOURCES_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr DEVELOPMENT_LANGUAGE = English DEVELOPMENT_TEAM = 9FK3425VTA DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation DO_HEADER_SCANNING_IN_JAM = NO DSTROOT = /tmp/Runner.dst DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain DWARF_DSYM_FILE_NAME = Runner.app.dSYM DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO DWARF_DSYM_FOLDER_PATH = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos EFFECTIVE_PLATFORM_NAME = -iphoneos EMBEDDED_CONTENT_CONTAINS_SWIFT = NO EMBEDDED_PROFILE_NAME = embedded.mobileprovision EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO ENABLE_BITCODE = NO ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES ENABLE_HEADER_DEPENDENCIES = YES ENABLE_ON_DEMAND_RESOURCES = YES ENABLE_STRICT_OBJC_MSGSEND = YES ENABLE_TESTABILITY = YES ENTITLEMENTS_ALLOWED = YES ENTITLEMENTS_REQUIRED = YES EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj EXECUTABLES_FOLDER_PATH = Runner.app/Executables EXECUTABLE_FOLDER_PATH = Runner.app EXECUTABLE_NAME = Runner EXECUTABLE_PATH = Runner.app/Runner EXPANDED_CODE_SIGN_IDENTITY = EXPANDED_CODE_SIGN_IDENTITY_NAME = EXPANDED_PROVISIONING_PROFILE = FILE_LIST = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects/LinkFileList FIXED_FILES_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/FixedFiles FLUTTER_APPLICATION_PATH = /Users/rodydavis/Documents/Github/media_picker/example FLUTTER_BUILD_DIR = build FLUTTER_BUILD_MODE = debug FLUTTER_FRAMEWORK_DIR = /Users/rodydavis/Android/flutter/flutter/bin/cache/artifacts/engine/ios FLUTTER_ROOT = /Users/rodydavis/Android/flutter/flutter FLUTTER_TARGET = /Users/rodydavis/Documents/Github/media_picker/example/lib/main.dart FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks FRAMEWORK_FLAG_PREFIX = -framework FRAMEWORK_SEARCH_PATHS = "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/media_picker" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/path_provider" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/video_player" "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/.symlinks/flutter/ios" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/media_picker" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/path_provider" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/video_player" "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/.symlinks/flutter/ios" /Users/rodydavis/Documents/Github/media_picker/example/ios/Flutter FRAMEWORK_VERSION = A FULL_PRODUCT_NAME = Runner.app GCC3_VERSION = 3.3 GCC_C_LANGUAGE_STANDARD = gnu99 GCC_DYNAMIC_NO_PIC = NO GCC_INLINES_ARE_PRIVATE_EXTERN = YES GCC_NO_COMMON_BLOCKS = YES GCC_OPTIMIZATION_LEVEL = 0 GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++ GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1 COCOAPODS=1 COCOAPODS=1 GCC_SYMBOLS_PRIVATE_EXTERN = NO GCC_THUMB_SUPPORT = YES GCC_TREAT_WARNINGS_AS_ERRORS = NO GCC_VERSION = com.apple.compilers.llvm.clang.1_0 GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0 GCC_WARN_64_TO_32_BIT_CONVERSION = YES GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR GCC_WARN_UNDECLARED_SELECTOR = YES GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE GCC_WARN_UNUSED_FUNCTION = YES GCC_WARN_UNUSED_VARIABLE = YES GENERATE_MASTER_OBJECT_FILE = NO GENERATE_PKGINFO_FILE = YES GENERATE_PROFILING_CODE = NO GENERATE_TEXT_BASED_STUBS = NO GID = 20 GROUP = staff HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES HEADERMAP_INCLUDES_PROJECT_HEADERS = YES HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES HEADERMAP_USES_VFS = NO HEADER_SEARCH_PATHS = "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public" "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public/Flutter" "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public" "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public/Flutter" HIDE_BITCODE_SYMBOLS = YES HOME = /Users/rodydavis ICONV = /usr/bin/iconv INFOPLIST_EXPAND_BUILD_SETTINGS = YES INFOPLIST_FILE = Runner/Info.plist INFOPLIST_OUTPUT_FORMAT = binary INFOPLIST_PATH = Runner.app/Info.plist INFOPLIST_PREPROCESS = NO INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings INLINE_PRIVATE_FRAMEWORKS = NO INSTALLHDRS_COPY_PHASE = NO INSTALLHDRS_SCRIPT_PHASE = NO INSTALL_DIR = /tmp/Runner.dst/Applications INSTALL_GROUP = staff INSTALL_MODE_FLAG = u+w,go-w,a+rX INSTALL_OWNER = rodydavis INSTALL_PATH = /Applications INSTALL_ROOT = /tmp/Runner.dst IPHONEOS_DEPLOYMENT_TARGET = 8.0 JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8 JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub JAVA_ARCHIVE_CLASSES = YES JAVA_ARCHIVE_TYPE = JAR JAVA_COMPILER = /usr/bin/javac JAVA_FOLDER_PATH = Runner.app/Java JAVA_FRAMEWORK_RESOURCES_DIRS = Resources JAVA_JAR_FLAGS = cv JAVA_SOURCE_SUBDIR = . JAVA_USE_DEPENDENCIES = YES JAVA_ZIP_FLAGS = -urg JIKES_DEFAULT_FLAGS = +E +OLDCSO KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow KEEP_PRIVATE_EXTERNS = NO LD_DEPENDENCY_INFO_FILE = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat LD_GENERATE_MAP_FILE = NO LD_MAP_FILE_PATH = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt LD_NO_PIE = NO LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer LEX = lex LIBRARY_FLAG_NOSPACE = YES LIBRARY_FLAG_PREFIX = -l LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions LIBRARY_SEARCH_PATHS = /Users/rodydavis/Documents/Github/media_picker/example/ios/Flutter LINKER_DISPLAYS_MANGLED_NAMES = NO LINK_FILE_LIST_normal_arm64 = LINK_WITH_STANDARD_LIBRARIES = YES LOCALIZABLE_CONTENT_DIR = LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString LOCAL_ADMIN_APPS_DIR = /Applications/Utilities LOCAL_APPS_DIR = /Applications LOCAL_DEVELOPER_DIR = /Library/Developer LOCAL_LIBRARY_DIR = /Library LOCROOT = LOCSYMROOT = MACH_O_TYPE = mh_execute MAC_OS_X_PRODUCT_BUILD_VERSION = 17E199 MAC_OS_X_VERSION_ACTUAL = 101304 MAC_OS_X_VERSION_MAJOR = 101300 MAC_OS_X_VERSION_MINOR = 1304 METAL_LIBRARY_FILE_BASE = default METAL_LIBRARY_OUTPUT_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/Runner.app MODULE_CACHE_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/ModuleCache.noindex MTL_ENABLE_DEBUG_INFO = YES NATIVE_ARCH = armv7 NATIVE_ARCH_32_BIT = i386 NATIVE_ARCH_64_BIT = x86_64 NATIVE_ARCH_ACTUAL = x86_64 NO_COMMON = YES OBJECT_FILE_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects OBJECT_FILE_DIR_normal = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal OBJROOT = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex ONLY_ACTIVE_ARCH = YES OS = MACOS OSAC = /usr/bin/osacompile OTHER_CFLAGS = -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/media_picker/media_picker.framework/Headers" -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/path_provider/path_provider.framework/Headers" -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/video_player/video_player.framework/Headers" -isystem "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public" -isystem "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public/Flutter" -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/media_picker/media_picker.framework/Headers" -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/path_provider/path_provider.framework/Headers" -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/video_player/video_player.framework/Headers" -isystem "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public" -isystem "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public/Flutter" OTHER_CPLUSPLUSFLAGS = -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/media_picker/media_picker.framework/Headers" -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/path_provider/path_provider.framework/Headers" -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/video_player/video_player.framework/Headers" -isystem "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public" -isystem "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public/Flutter" -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/media_picker/media_picker.framework/Headers" -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/path_provider/path_provider.framework/Headers" -iquote "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/video_player/video_player.framework/Headers" -isystem "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public" -isystem "/Users/rodydavis/Documents/Github/media_picker/example/ios/Pods/Headers/Public/Flutter" OTHER_LDFLAGS = -framework "Flutter" -framework "media_picker" -framework "path_provider" -framework "video_player" -framework "Flutter" -framework "media_picker" -framework "path_provider" -framework "video_player" OTHER_SWIFT_FLAGS = "-D" "COCOAPODS" "-D" "COCOAPODS" PACKAGE_TYPE = com.apple.package-type.wrapper.application PASCAL_STRINGS = YES PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/Applications/Xamarin Workbooks.app/Contents/SharedSupport/path-bin:/Users/rodydavis/Android/flutter/flutter/bin:/Users/rodydavis/.fastlane/bin PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist PFE_FILE_C_DIALECTS = objective-c PKGINFO_FILE_PATH = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/PkgInfo PKGINFO_PATH = Runner.app/PkgInfo PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform PLATFORM_DISPLAY_NAME = iOS PLATFORM_NAME = iphoneos PLATFORM_PREFERRED_ARCH = arm64 PLATFORM_PRODUCT_BUILD_VERSION = 15E217 PLIST_FILE_OUTPUT_FORMAT = binary PLUGINS_FOLDER_PATH = Runner.app/PlugIns PODS_BUILD_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios PODS_CONFIGURATION_BUILD_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos PODS_PODFILE_DIR_PATH = /Users/rodydavis/Documents/Github/media_picker/example/ios/. PODS_ROOT = /Users/rodydavis/Documents/Github/media_picker/example/ios/Pods PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES PRECOMP_DESTINATION_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/PrefixHeaders PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO PREVIEW_DART_2 = true PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders PRODUCT_BUNDLE_IDENTIFIER = com.appleeducate.mediaPickerExample PRODUCT_MODULE_NAME = Runner PRODUCT_NAME = Runner PRODUCT_SETTINGS_PATH = /Users/rodydavis/Documents/Github/media_picker/example/ios/Runner/Info.plist PRODUCT_TYPE = com.apple.product-type.application PROFILING_CODE = NO PROJECT = Runner PROJECT_DERIVED_FILE_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/DerivedSources PROJECT_DIR = /Users/rodydavis/Documents/Github/media_picker/example/ios PROJECT_FILE_PATH = /Users/rodydavis/Documents/Github/media_picker/example/ios/Runner.xcodeproj PROJECT_NAME = Runner PROJECT_TEMP_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build PROJECT_TEMP_ROOT = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex PROVISIONING_PROFILE_REQUIRED = YES PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES REMOVE_CVS_FROM_RESOURCES = YES REMOVE_GIT_FROM_RESOURCES = YES REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES REMOVE_HG_FROM_RESOURCES = YES REMOVE_SVN_FROM_RESOURCES = YES RESOURCE_RULES_REQUIRED = YES REZ_COLLECTOR_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources REZ_OBJECTS_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources/Objects SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO SCRIPTS_FOLDER_PATH = Runner.app/Scripts SCRIPT_OUTPUT_STREAM_FILE = /var/folders/8v/39qx36ss40s_c18typ5773m40000gn/T/flutter_build_log_pipejVwrA6/pipe_to_stdout SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk SDK_DIR_iphoneos11_3 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk SDK_NAME = iphoneos11.3 SDK_NAMES = iphoneos11.3 SDK_PRODUCT_BUILD_VERSION = 15E217 SDK_VERSION = 11.3 SDK_VERSION_ACTUAL = 110300 SDK_VERSION_MAJOR = 110000 SDK_VERSION_MINOR = 300 SED = /usr/bin/sed SEPARATE_STRIP = NO SEPARATE_SYMBOL_EDIT = NO SET_DIR_MODE_OWNER_GROUP = YES SET_FILE_MODE_OWNER_GROUP = NO SHALLOW_BUNDLE = YES SHARED_DERIVED_FILE_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos/DerivedSources SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks SHARED_PRECOMPS_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/PrecompiledHeaders SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport SKIP_INSTALL = NO SOURCE_ROOT = /Users/rodydavis/Documents/Github/media_picker/example/ios SRCROOT = /Users/rodydavis/Documents/Github/media_picker/example/ios STRINGS_FILE_OUTPUT_ENCODING = binary STRIP_BITCODE_FROM_COPIED_FILES = YES STRIP_INSTALLED_PRODUCT = YES STRIP_STYLE = all STRIP_SWIFT_SYMBOLS = YES SUPPORTED_DEVICE_FAMILIES = 1,2 SUPPORTED_PLATFORMS = iphonesimulator iphoneos SUPPORTS_TEXT_BASED_API = NO SWIFT_COMPILATION_MODE = singlefile SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h SWIFT_OPTIMIZATION_LEVEL = -Onone SWIFT_PLATFORM_TARGET_PREFIX = ios SWIFT_SWIFT3_OBJC_INFERENCE = On SWIFT_VERSION = 4.0 SYMROOT = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Products SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities SYSTEM_APPS_DIR = /Applications SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices SYSTEM_DEMOS_DIR = /Applications/Extras SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities SYSTEM_DOCUMENTATION_DIR = /Library/Documentation SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions SYSTEM_LIBRARY_DIR = /System/Library TAPI_VERIFY_MODE = ErrorsOnly TARGETED_DEVICE_FAMILY = 1,2 TARGETNAME = Runner TARGET_BUILD_DIR = /Users/rodydavis/Documents/Github/media_picker/example/build/ios/Debug-iphoneos TARGET_NAME = Runner TARGET_TEMP_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build TEMP_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build TEMP_FILES_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build TEMP_FILE_DIR = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build TEMP_ROOT = /Users/rodydavis/Library/Developer/Xcode/DerivedData/Runner-dmgdsjvzsslacydrwtmcbfihyjke/Build/Intermediates.noindex TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO UID = 501 UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app UNSTRIPPED_PRODUCT = NO USER = rodydavis USER_APPS_DIR = /Users/rodydavis/Applications USER_LIBRARY_DIR = /Users/rodydavis/Library USE_DYNAMIC_NO_PIC = YES USE_HEADERMAP = YES USE_HEADER_SYMLINKS = NO VALIDATE_PRODUCT = NO VALID_ARCHS = arm64 armv7 armv7s VERBOSE_PBXCP = NO VERBOSE_SCRIPT_LOGGING = YES VERSIONING_SYSTEM = apple-generic VERSIONPLIST_PATH = Runner.app/version.plist VERSION_INFO_BUILDER = rodydavis VERSION_INFO_FILE = Runner_vers.c VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1" WRAPPER_EXTENSION = app WRAPPER_NAME = Runner.app WRAPPER_SUFFIX = .app WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode XCODE_PRODUCT_BUILD_VERSION = 9E145 XCODE_VERSION_ACTUAL = 0930 XCODE_VERSION_MAJOR = 0900 XCODE_VERSION_MINOR = 0930 XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices YACC = yacc arch = arm64 variant = normal [ +163 ms] Installing and launching... [ ] Debugging is enabled, connecting to observatory [ +3 ms] /usr/bin/env ios-deploy --id a75015aff2fbecb29dcc8e459b14cba86c08f7fe --bundle build/ios/iphoneos/Runner.app --no-wifi --justlaunch --args --enable-dart-profiling --enable-checked-mode [ +21 ms] [....] Waiting for iOS device to be connected [ +13 ms] [....] Using a75015aff2fbecb29dcc8e459b14cba86c08f7fe (N71mAP, iPhone 6s, iphoneos, arm64) a.k.a. 'Dev-iPhone-6s'. [ ] ------ Install phase ------ [ ] [ 0%] Found a75015aff2fbecb29dcc8e459b14cba86c08f7fe (N71mAP, iPhone 6s, iphoneos, arm64) a.k.a. 'Dev-iPhone-6s' connected through USB, beginning install [ +211 ms] [ 5%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/META-INF/ to device [ ] [ 5%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/META-INF/com.apple.ZipMetadata.plist to device [ ] [ 5%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/_CodeSignature/ to device [ ] [ 5%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/_CodeSignature/CodeResources to device [ ] [ 5%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon20x20@2x.png to device [ ] [ 6%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon20x20@3x.png to device [ ] [ 6%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon29x29.png to device [ ] [ 6%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon60x60@2x.png to device [ ] [ 6%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Runner to device [ ] [ 7%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon29x29@2x.png to device [ ] [ 7%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon40x40@3x.png to device [ ] [ 7%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/libswiftRemoteMirror.dylib to device [ +88 ms] [ 8%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Debug.xcconfig to device [ ] [ 8%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon29x29~ipad.png to device [ ] [ 8%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon40x40@2x.png to device [ ] [ 8%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon29x29@3x.png to device [ ] [ 9%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon60x60@3x.png to device [ ] [ 9%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/ to device [ ] [ 9%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/ to device [ ] [ 9%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib to device [ ] [ 10%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib to device [ ] [ 10%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/Info.plist to device [ ] [ 10%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/ to device [ ] [ 10%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib to device [ ] [ 11%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib to device [ ] [ 11%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/Info.plist to device [ ] [ 11%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/ to device [ ] [ 11%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/platform.dill to device [ +151 ms] [ 13%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/LICENSE to device [ +52 ms] [ 14%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/AssetManifest.json to device [ ] [ 14%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/kernel_blob.bin to device [ +337 ms] [ 18%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/FontManifest.json to device [ ] [ 18%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/packages/ to device [ ] [ 18%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/packages/cupertino_icons/ to device [ ] [ 18%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/packages/cupertino_icons/assets/ to device [ ] [ 19%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf to device [ ] [ 19%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/fonts/ to device [ ] [ 19%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/flutter_assets/fonts/MaterialIcons-Regular.ttf to device [ +3 ms] [ 19%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Assets.car to device [ +2 ms] [ 20%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppFrameworkInfo.plist to device [ ] [ 20%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon40x40@2x~ipad.png to device [ ] [ 20%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon76x76@2x~ipad.png to device [ ] [ 20%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon83.5x83.5@2x~ipad.png to device [ ] [ 21%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Generated.xcconfig to device [ ] [ 21%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon29x29@2x~ipad.png to device [ ] [ 21%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon40x40~ipad.png to device [ ] [ 21%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/ to device [ ] [ 22%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/media_picker.framework/ to device [ ] [ 22%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/media_picker.framework/_CodeSignature/ to device [ ] [ 22%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/media_picker.framework/_CodeSignature/CodeResources to device [ ] [ 22%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/media_picker.framework/media_picker to device [ +2 ms] [ 23%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/media_picker.framework/Info.plist to device [ ] [ 23%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreImage.dylib to device [ +4 ms] [ 23%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib to device [ +7 ms] [ 24%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftCore.dylib to device [ +535 ms] [ 28%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib to device [ +14 ms] [ 29%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftUIKit.dylib to device [ +12 ms] [ 29%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftMetal.dylib to device [ +6 ms] [ 30%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib to device [ +24 ms] [ 30%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftos.dylib to device [ +5 ms] [ 30%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/video_player.framework/ to device [ ] [ 31%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/video_player.framework/_CodeSignature/ to device [ ] [ 31%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/video_player.framework/_CodeSignature/CodeResources to device [ ] [ 31%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/video_player.framework/video_player to device [ +1 ms] [ 31%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/video_player.framework/Info.plist to device [ ] [ 32%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib to device [ +5 ms] [ 32%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/ to device [ ] [ 32%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature/ to device [ ] [ 32%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature/CodeResources to device [ ] [ 33%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/icudtl.dat to device [ +172 ms] [ 35%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter to device [ +625 ms] [ 41%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Info.plist to device [ ] [ 41%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/ to device [ ] [ 42%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature/ to device [ ] [ 42%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature/CodeResources to device [ ] [ 42%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/App to device [ +35 ms] [ 43%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/App.framework/Info.plist to device [ ] [ 43%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib to device [ +10 ms] [ 43%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftQuartzCore.dylib to device [ +4 ms] [ 44%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreAudio.dylib to device [ +8 ms] [ 44%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib to device [ +216 ms] [ 47%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreMedia.dylib to device [ +5 ms] [ 47%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/path_provider.framework/ to device [ ] [ 47%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/path_provider.framework/_CodeSignature/ to device [ ] [ 47%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/path_provider.framework/_CodeSignature/CodeResources to device [ ] [ 48%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/path_provider.framework/path_provider to device [ +1 ms] [ 48%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Frameworks/path_provider.framework/Info.plist to device [ ] [ 48%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon20x20~ipad.png to device [ ] [ 48%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/embedded.mobileprovision to device [ ] [ 49%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon20x20@2x~ipad.png to device [ ] [ 49%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/Info.plist to device [ ] [ 49%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/PkgInfo to device [ ] [ 49%] Copying /Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app/AppIcon76x76~ipad.png to device [ +283 ms] [ 52%] CreatingStagingDirectory [ ] [ 57%] ExtractingPackage [ ] [ 60%] InspectingPackage [ +21 ms] [ 60%] TakingInstallLock [ +31 ms] [ 65%] PreflightingApplication [ +23 ms] [ 65%] InstallingEmbeddedProfile [ +3 ms] [ 70%] VerifyingApplication [ +93 ms] [ 75%] CreatingContainer [ +5 ms] [ 80%] InstallingApplication [ +8 ms] [ 85%] PostflightingApplication [ +1 ms] [ 90%] SandboxingApplication [ +9 ms] [ 95%] GeneratingApplicationMap [ +68 ms] [100%] Installed package build/ios/iphoneos/Runner.app [ +234 ms] ------ Debug phase ------ [ ] Starting debug of a75015aff2fbecb29dcc8e459b14cba86c08f7fe (N71mAP, iPhone 6s, iphoneos, arm64) a.k.a. 'Dev-iPhone-6s' connected through USB... [ +492 ms] [ 0%] Looking up developer disk image [ +15 ms] [ 95%] Developer disk image mounted successfully [ +227 ms] [100%] Connecting to remote debug server [ ] ------------------------- [ +34 ms] (lldb) command source -s 0 '/tmp/C22674D7-F9F0-45BB-BF37-0CEAF99E6640/fruitstrap-lldb-prep-cmds-a75015aff2fbecb29dcc8e459b14cba86c08f7fe' [ ] Executing commands in '/tmp/C22674D7-F9F0-45BB-BF37-0CEAF99E6640/fruitstrap-lldb-prep-cmds-a75015aff2fbecb29dcc8e459b14cba86c08f7fe'. [ ] (lldb) platform select remote-ios --sysroot '/Users/rodydavis/Library/Developer/Xcode/iOS DeviceSupport/11.3.1 (15E302)/Symbols' [ ] Platform: remote-ios [ ] Connected: no [ ] SDK Path: "/Users/rodydavis/Library/Developer/Xcode/iOS DeviceSupport/11.3.1 (15E302)/Symbols" [ ] (lldb) target create "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app" [ +161 ms] Traceback (most recent call last): [ ] File "&lt;input&gt;", line 1, in &lt;module&gt; [ ] File "/usr/local/Cellar/python@2/2.7.15/Frameworks/Python.framework/Versions/2.7/lib/python2.7/copy.py", line 52, in &lt;module&gt; [ ] import weakref [ ] File "/usr/local/Cellar/python@2/2.7.15/Frameworks/Python.framework/Versions/2.7/lib/python2.7/weakref.py", line 14, in &lt;module&gt; [ ] from _weakref import ( [ ] ImportError: cannot import name _remove_dead_weakref [+3255 ms] Current executable set to '/Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos/Runner.app' (arm64). [ ] (lldb) script fruitstrap_device_app="/private/var/containers/Bundle/Application/8C55045E-AA32-4F9C-B94D-C08508F235D1/Runner.app" [ ] (lldb) script fruitstrap_connect_url="connect://127.0.0.1:59614" [ ] (lldb) target modules search-paths add /usr "/Users/rodydavis/Library/Developer/Xcode/iOS DeviceSupport/11.3.1 (15E302)/Symbols/usr" /System "/Users/rodydavis/Library/Developer/Xcode/iOS DeviceSupport/11.3.1 (15E302)/Symbols/System" "/private/var/containers/Bundle/Application/8C55045E-AA32-4F9C-B94D-C08508F235D1" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos" "/var/containers/Bundle/Application/8C55045E-AA32-4F9C-B94D-C08508F235D1" "/Users/rodydavis/Documents/Github/media_picker/example/build/ios/iphoneos" /Developer "/Users/rodydavis/Library/Developer/Xcode/iOS DeviceSupport/11.3.1 (15E302)/Symbols/Developer" [ +60 ms] (lldb) command script import "/tmp/C22674D7-F9F0-45BB-BF37-0CEAF99E6640/fruitstrap_a75015aff2fbecb29dcc8e459b14cba86c08f7fe.py" [ +9 ms] (lldb) command script add -f fruitstrap_a75015aff2fbecb29dcc8e459b14cba86c08f7fe.connect_command connect [ ] (lldb) command script add -s asynchronous -f fruitstrap_a75015aff2fbecb29dcc8e459b14cba86c08f7fe.run_command run [ ] (lldb) command script add -s asynchronous -f fruitstrap_a75015aff2fbecb29dcc8e459b14cba86c08f7fe.autoexit_command autoexit [ ] (lldb) command script add -s asynchronous -f fruitstrap_a75015aff2fbecb29dcc8e459b14cba86c08f7fe.safequit_command safequit [ ] (lldb) connect [ +27 ms] (lldb) run [ +342 ms] success [ ] (lldb) safequit [ +146 ms] Application launched on the device. Waiting for observatory port. </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Rodys-MBP:media_picker rodydavis$ flutter analyze Analyzing /Users/rodydavis/Documents/Github/media_picker... error • Target of URI doesn't exist: 'package:video_player/video_player.dart' at example/lib/main.dart:11:8 • uri_does_not_exist error • Undefined class 'VideoPlayerController' at example/lib/main.dart:39:3 • undefined_class error • Undefined name 'VideoPlayerController' at example/lib/main.dart:46:26 • undefined_identifier error • Undefined name 'VideoPlayerController' at example/lib/main.dart:75:19 • undefined_identifier error • The constructor returns type 'dynamic' that isn't of expected type 'Widget' at example/lib/main.dart:110:22 • strong_mode_invalid_cast_new_expr error • Undefined class 'VideoPlayer' at example/lib/main.dart:110:26 • undefined_class error • Target of URI doesn't exist: 'package:flutter_test/flutter_test.dart' at example/test/widget_test.dart:8:8 • uri_does_not_exist error • Target of URI doesn't exist: 'package:media_picker_example/main.dart' at example/test/widget_test.dart:10:8 • uri_does_not_exist error • The function 'testWidgets' isn't defined at example/test/widget_test.dart:13:3 • undefined_function error • Undefined class 'WidgetTester' at example/test/widget_test.dart:13:43 • undefined_class error • Undefined class 'MyApp' at example/test/widget_test.dart:15:33 • undefined_class error • The function 'expect' isn't defined at example/test/widget_test.dart:18:5 • undefined_function error • Undefined name 'find' at example/test/widget_test.dart:19:9 • undefined_identifier error • Undefined name 'findsOneWidget' at example/test/widget_test.dart:23:9 • undefined_identifier hint • Unused import: 'package:path_provider/path_provider.dart' at example/lib/main.dart:10:8 • unused_import hint • Unused import: 'package:path_provider/path_provider.dart' at lib/media_picker.dart:10:8 • unused_import 16 issues found. (Ran in 4.8s)"><pre class="notranslate"><code class="notranslate">Rodys-MBP:media_picker rodydavis$ flutter analyze Analyzing /Users/rodydavis/Documents/Github/media_picker... error • Target of URI doesn't exist: 'package:video_player/video_player.dart' at example/lib/main.dart:11:8 • uri_does_not_exist error • Undefined class 'VideoPlayerController' at example/lib/main.dart:39:3 • undefined_class error • Undefined name 'VideoPlayerController' at example/lib/main.dart:46:26 • undefined_identifier error • Undefined name 'VideoPlayerController' at example/lib/main.dart:75:19 • undefined_identifier error • The constructor returns type 'dynamic' that isn't of expected type 'Widget' at example/lib/main.dart:110:22 • strong_mode_invalid_cast_new_expr error • Undefined class 'VideoPlayer' at example/lib/main.dart:110:26 • undefined_class error • Target of URI doesn't exist: 'package:flutter_test/flutter_test.dart' at example/test/widget_test.dart:8:8 • uri_does_not_exist error • Target of URI doesn't exist: 'package:media_picker_example/main.dart' at example/test/widget_test.dart:10:8 • uri_does_not_exist error • The function 'testWidgets' isn't defined at example/test/widget_test.dart:13:3 • undefined_function error • Undefined class 'WidgetTester' at example/test/widget_test.dart:13:43 • undefined_class error • Undefined class 'MyApp' at example/test/widget_test.dart:15:33 • undefined_class error • The function 'expect' isn't defined at example/test/widget_test.dart:18:5 • undefined_function error • Undefined name 'find' at example/test/widget_test.dart:19:9 • undefined_identifier error • Undefined name 'findsOneWidget' at example/test/widget_test.dart:23:9 • undefined_identifier hint • Unused import: 'package:path_provider/path_provider.dart' at example/lib/main.dart:10:8 • unused_import hint • Unused import: 'package:path_provider/path_provider.dart' at lib/media_picker.dart:10:8 • unused_import 16 issues found. (Ran in 4.8s) </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Rodys-MBP:media_picker rodydavis$ flutter doctor Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel beta, v0.3.2, on Mac OS X 10.13.4 17E199, locale en-US) [✓] Android toolchain - develop for Android devices (Android SDK 27.0.3) [✓] iOS toolchain - develop for iOS devices (Xcode 9.3) [✓] Android Studio (version 3.1) [✓] VS Code (version 1.23.0) [✓] Connected devices (4 available) • No issues found!"><pre class="notranslate"><code class="notranslate">Rodys-MBP:media_picker rodydavis$ flutter doctor Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel beta, v0.3.2, on Mac OS X 10.13.4 17E199, locale en-US) [✓] Android toolchain - develop for Android devices (Android SDK 27.0.3) [✓] iOS toolchain - develop for iOS devices (Xcode 9.3) [✓] Android Studio (version 3.1) [✓] VS Code (version 1.23.0) [✓] Connected devices (4 available) • No issues found! </code></pre></div>
<p dir="auto">From <a href="http://docs.flutter.io/flutter_driver/flutter_driver-library.html" rel="nofollow">http://docs.flutter.io/flutter_driver/flutter_driver-library.html</a></p> <p dir="auto">I see:</p> <p dir="auto">"""<br> This library provides API to test Flutter applications that run on real devices and emulators.</p> <p dir="auto">The application run in a separate process from the test itself. If you are familiar with Selenium (web), Espresso (Android) or UI Automation (iOS), this is Flutter's version of that.</p> <p dir="auto">This is Flutter's version of Selenium WebDriver (generic web), Protractor (Angular), Espresso (Android) or Earl Gray (iOS).<br> """</p> <p dir="auto">Notice how we mention Selenium, Espresso, etc twice.</p>
0
<h3 dir="auto">Vue.js version</h3> <p dir="auto">1.0.16</p> <h3 dir="auto">Reproduction Link</h3> <p dir="auto"><a href="https://jsfiddle.net/4eh989ee/2/" rel="nofollow">https://jsfiddle.net/4eh989ee/2/</a></p> <h3 dir="auto">Steps to reproduce</h3> <ol dir="auto"> <li>Focus on the only input available within the <code class="notranslate">output</code> window, type a single <code class="notranslate">k</code> letter and immediately hit enter.</li> <li>Clear the text in the output.</li> <li>Type a single <code class="notranslate">k</code> letter, wait a two (2) seconds or more, and hit enter</li> </ol> <h3 dir="auto">What is Expected?</h3> <ol dir="auto"> <li>Alert is show with the contents reading <code class="notranslate">name: ""</code></li> <li>N/A</li> <li>Alert is show with the contents reading <code class="notranslate">name: "k"</code></li> </ol> <h3 dir="auto">What is actually happening?</h3> <p dir="auto">The model does not get set when the form is submitted.</p> <h3 dir="auto">Note</h3> <p dir="auto">This is a duplicate of issue <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="122300383" data-permission-text="Title is private" data-url="https://github.com/vuejs/vue/issues/2028" data-hovercard-type="issue" data-hovercard-url="/vuejs/vue/issues/2028/hovercard" href="https://github.com/vuejs/vue/issues/2028">#2028</a>. I commented after it was closed but didn't get any feedback. I don't know if anyone is being notified of the comments following the close of the issue.</p>
<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/632dch1e/" rel="nofollow">https://jsfiddle.net/632dch1e/</a></p> <h3 dir="auto">Steps to reproduce</h3> <p dir="auto">open link to minimal reproduction</p> <h3 dir="auto">What is expected?</h3> <p dir="auto">Keep the type even if you set the class that extends Array to data.</p> <h3 dir="auto">What is actually happening?</h3> <p dir="auto">Methods defined in a class that extends Array can not be used.<br> Also, since the class of each object of Array remains as it is, the class structure is broken.</p>
0
<h5 dir="auto">Issue Type:</h5> <ul dir="auto"> <li><strong>Bug Report</strong></li> </ul> <h5 dir="auto">Ansible Version:</h5> <p dir="auto">Ansible version: <em>1.9.2</em><br> Jinja2 version: <em>2.8</em></p> <p dir="auto">Obtained from pip install on OS described hereafter</p> <h5 dir="auto">Ansible Configuration:</h5> <p dir="auto">No change.</p> <h5 dir="auto">Environment:</h5> <p dir="auto">Ubuntu 14.04.03 LTS, no virtualenv, pip installed</p> <h5 dir="auto">Summary:</h5> <p dir="auto">Jinja 2.1 added the possibility to use the variable yielded by a for loop into an included template.</p> <p dir="auto">From Jinja website (<a href="http://jinja.pocoo.org/docs/dev/templates/#include" rel="nofollow">http://jinja.pocoo.org/docs/dev/templates/#include</a>):</p> <blockquote> <p dir="auto">Note<br> In Jinja 2.0, the context that was passed to the included template did not include variables defined<br> in the template. As a matter of fact, this did not work:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{% for box in boxes %} {% include &quot;render_box.html&quot; %} {% endfor %}"><pre class="notranslate"><code class="notranslate">{% for box in boxes %} {% include "render_box.html" %} {% endfor %} </code></pre></div> <p dir="auto">The included template render_box.html is not able to access box in Jinja 2.0. As of Jinja 2.1,<br> render_box.html is able to do so.</p> </blockquote> <p dir="auto">Although I use Jinja 2.8 (along with Ansible 1.9), this feature is unavailable/broken by the Ansible template module. This report is not a "feature support" request but a "stop breaking a feature" request :)</p> <h5 dir="auto">Steps To Reproduce:</h5> <p dir="auto">To reproduce the bug, use the following playbook :</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" --- - hosts: desktop gather_facts: no vars: nom: &quot;Toto!&quot; some_list: - &quot;elmt 1&quot; - &quot;elmt 2&quot; tasks: - name: &quot;test&quot; template: src: /tmp/tmpl dest: /tmp/output"><pre class="notranslate"><code class="notranslate"> --- - hosts: desktop gather_facts: no vars: nom: "Toto!" some_list: - "elmt 1" - "elmt 2" tasks: - name: "test" template: src: /tmp/tmpl dest: /tmp/output </code></pre></div> <p dir="auto">/tmp/tmpl contains:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="hello {{ nom }} {% for elmt in some_list %} {% include 'do_smth_with_elmt' with context %} {% endfor %}"><pre class="notranslate"><code class="notranslate">hello {{ nom }} {% for elmt in some_list %} {% include 'do_smth_with_elmt' with context %} {% endfor %} </code></pre></div> <p dir="auto">/tmp/do_smth_with_elmt:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Print {{ elmt }}"><pre class="notranslate"><code class="notranslate">Print {{ elmt }} </code></pre></div> <h5 dir="auto">Expected Results:</h5> <p dir="auto">No error message from Ansible and rendering of the template</p> <h5 dir="auto">Actual Results:</h5> <p dir="auto">Output from Ansible is :</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="PLAY [desktop] **************************************************************** TASK: [test] ****************************************************************** fatal: [desktop.local] =&gt; {'msg': &quot;AnsibleUndefinedVariable: One or more undefined variables: 'elmt' is undefined&quot;, 'failed': True} fatal: [desktop.local] =&gt; {'msg': &quot;AnsibleUndefinedVariable: One or more undefined variables: 'elmt' is undefined&quot;, 'failed': True} FATAL: all hosts have already failed -- aborting PLAY RECAP ******************************************************************** to retry, use: --limit @/home/user/test.retry desktop.local : ok=0 changed=0 unreachable=1 failed=0 "><pre class="notranslate"><code class="notranslate">PLAY [desktop] **************************************************************** TASK: [test] ****************************************************************** fatal: [desktop.local] =&gt; {'msg': "AnsibleUndefinedVariable: One or more undefined variables: 'elmt' is undefined", 'failed': True} fatal: [desktop.local] =&gt; {'msg': "AnsibleUndefinedVariable: One or more undefined variables: 'elmt' is undefined", 'failed': True} FATAL: all hosts have already failed -- aborting PLAY RECAP ******************************************************************** to retry, use: --limit @/home/user/test.retry desktop.local : ok=0 changed=0 unreachable=1 failed=0 </code></pre></div> <p dir="auto"><strong>Comment</strong>:<br> If I had to do some fingerpointing, I would blame the <code class="notranslate">new_context</code> system of the <code class="notranslate">J2Template</code> class:<br> <a href="https://github.com/ansible/ansible/blob/stable-1.9/lib/ansible/utils/template.py#L212-L213">https://github.com/ansible/ansible/blob/stable-1.9/lib/ansible/utils/template.py#L212-L213</a></p> <p dir="auto">Since I am totally unfamiliar with Ansible source code, I might be wrong, though.</p> <p dir="auto">At any rate, the following python script runs flawlessly on my machine:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import jinja2 loader = jinja2.FileSystemLoader('/tmp') e = jinja2.Environment(loader=loader) t = e.get_template('tmpl') print t.render(nom='Toto!', some_list=['elmt1', 'elmt2'])"><pre class="notranslate"><code class="notranslate">import jinja2 loader = jinja2.FileSystemLoader('/tmp') e = jinja2.Environment(loader=loader) t = e.get_template('tmpl') print t.render(nom='Toto!', some_list=['elmt1', 'elmt2']) </code></pre></div> <p dir="auto">Thank you.</p>
<p dir="auto">Currently async operations in playbooks and /usr/bin/ansible are duplicating a lot of code. Using async through the API is also very ugly.</p> <p dir="auto">I've been thinking about this and would propose a method runAsync() on Runner that returns an object with a poll() method and does all the bookkeeping involved. Timing would be external?</p> <p dir="auto">Async is also not fully integrated in the callback system, this can also be fixed, along with cleaning up the files in ~/.ansible_async.</p> <p dir="auto">Any feedback? I could probably do this by the weekend.</p>
0
<p dir="auto">Ubuntu 14.04 64bit Firefox and Chromium<br> Built from source, master branch.<br> <strong>Edit: There appear to be no issues when building from the 0.10RC github release source.</strong></p> <p dir="auto">The GRAPHS tab displays all correctly, all the summary titles are displayed correctly, it even lets me download CSV/JSON in EVENTS but it doesn't actually display the visuals.</p> <p dir="auto">In HISTOGRAMS all I see are dots instead of the visuals, in EVENTS I see the "cost_function" and when I click on it I see it repeated but no accompanying visual.</p> <p dir="auto">All the visuals appear to have empty space allocated to them, nothing appears collapsed.</p> <p dir="auto">Screenshots:<br> <a href="http://i.imgur.com/i3B3Rdk.png" rel="nofollow">http://i.imgur.com/i3B3Rdk.png</a><br> <a href="http://i.imgur.com/NBhxoNR.png" rel="nofollow">http://i.imgur.com/NBhxoNR.png</a><br> Screenshot with the option to download CSV/JSON (they do contain valid data):<br> <a href="http://i.imgur.com/NaTMaTb.png" rel="nofollow">http://i.imgur.com/NaTMaTb.png</a></p> <p dir="auto">Terminal output:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET / HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/webcomponentsjs/webcomponents-lite.min.js HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /lib/css/global.css HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/lodash/lodash.min.js HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/d3/d3.min.js HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/plottable/plottable.css HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/plottable/plottable.min.js HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/graphlib/dist/graphlib.core.min.js HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/dagre/dist/dagre.core.min.js HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/polymer/polymer.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-ajax/iron-ajax.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-collapse/iron-collapse.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-list/iron-list.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-button/paper-button.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-checkbox/paper-checkbox.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-dialog/paper-dialog.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-dropdown-menu/paper-dropdown-menu.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-header-panel/paper-header-panel.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-icon-button/paper-icon-button.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-input/paper-input.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-item/paper-item.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-menu/paper-menu.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-progress/paper-progress.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-radio-button/paper-radio-button.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-radio-group/paper-radio-group.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-slider/paper-slider.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-styles/paper-styles.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-toggle-button/paper-toggle-button.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-toolbar/paper-toolbar.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-tabs/paper-tabs.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /dist/tf-tensorboard.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/polymer/polymer-mini.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-ajax/iron-request.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-resizable-behavior/iron-resizable-behavior.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-material/paper-material.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-ripple/paper-ripple.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-behaviors/paper-button-behavior.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-flex-layout/iron-flex-layout.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-styles/default-theme.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-behaviors/paper-checked-element-behavior.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/neon-animation/neon-animation-runner-behavior.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-dialog-behavior/paper-dialog-behavior.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-dialog-behavior/paper-dialog-shared-styles.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-a11y-keys-behavior/iron-a11y-keys-behavior.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-behaviors/iron-button-state.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-behaviors/iron-control-state.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-form-element-behavior/iron-form-element-behavior.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-icon/iron-icon.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-menu-button/paper-menu-button.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-validatable-behavior/iron-validatable-behavior.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-dropdown-menu/paper-dropdown-menu-icons.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-dropdown-menu/paper-dropdown-menu-shared-styles.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-behaviors/paper-inky-focus-behavior.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-input/iron-input.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-input/paper-input-char-counter.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-input/paper-input-behavior.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-input/paper-input-container.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-input/paper-input-error.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-item/paper-item-behavior.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-menu-behavior/iron-menu-behavior.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-item/paper-item-shared-styles.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-menu/paper-menu-shared-styles.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-styles/color.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-range-behavior/iron-range-behavior.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-selector/iron-selectable.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-flex-layout/classes/iron-flex-layout.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-styles/shadow.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-styles/typography.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-menu-behavior/iron-menubar-behavior.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-tabs/paper-tabs-icons.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-tabs/paper-tab.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/polymer/polymer-micro.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/promise-polyfill/promise-polyfill-lite.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-material/paper-material-shared-styles.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-behaviors/paper-ripple-behavior.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-checked-element-behavior/iron-checked-element-behavior.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-meta/iron-meta.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/neon-animation/neon-animatable-behavior.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/promise-polyfill/Promise.js HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-overlay-behavior/iron-overlay-behavior.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-iconset-svg/iron-iconset-svg.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-dropdown/iron-dropdown.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/neon-animation/animations/fade-in-animation.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/neon-animation/animations/fade-out-animation.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-menu-button/paper-menu-button-animations.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-a11y-announcer/iron-a11y-announcer.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/paper-input/paper-input-addon-behavior.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-selector/iron-multi-selectable.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-selector/iron-selection.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-flex-layout/classes/iron-shadow-flex-layout.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/font-roboto/roboto.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-fit-behavior/iron-fit-behavior.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/neon-animation/animations/opaque-animation.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-overlay-behavior/iron-overlay-manager.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-dropdown/iron-dropdown-scroll-manager.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/neon-animation/neon-animation-behavior.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/neon-animation/web-animations.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/iron-overlay-behavior/iron-overlay-backdrop.html HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] &quot;GET /external/web-animations-js/web-animations-next-lite.min.js HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:15] &quot;GET /data/runs HTTP/1.1&quot; 200 - 127.0.0.1 - - [14/Aug/2016 13:49:15] &quot;GET /data/runs HTTP/1.1&quot; 200 -"><pre class="notranslate"><code class="notranslate">127.0.0.1 - - [14/Aug/2016 13:49:14] "GET / HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/webcomponentsjs/webcomponents-lite.min.js HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /lib/css/global.css HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/lodash/lodash.min.js HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/d3/d3.min.js HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/plottable/plottable.css HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/plottable/plottable.min.js HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/graphlib/dist/graphlib.core.min.js HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/dagre/dist/dagre.core.min.js HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/polymer/polymer.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-ajax/iron-ajax.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-collapse/iron-collapse.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-list/iron-list.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-button/paper-button.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-checkbox/paper-checkbox.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-dialog/paper-dialog.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-dropdown-menu/paper-dropdown-menu.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-header-panel/paper-header-panel.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-icon-button/paper-icon-button.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-input/paper-input.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-item/paper-item.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-menu/paper-menu.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-progress/paper-progress.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-radio-button/paper-radio-button.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-radio-group/paper-radio-group.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-slider/paper-slider.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-styles/paper-styles.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-toggle-button/paper-toggle-button.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-toolbar/paper-toolbar.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-tabs/paper-tabs.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /dist/tf-tensorboard.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/polymer/polymer-mini.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-ajax/iron-request.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-resizable-behavior/iron-resizable-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-material/paper-material.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-ripple/paper-ripple.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-behaviors/paper-button-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-flex-layout/iron-flex-layout.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-styles/default-theme.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-behaviors/paper-checked-element-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/neon-animation/neon-animation-runner-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-dialog-behavior/paper-dialog-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-dialog-behavior/paper-dialog-shared-styles.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-a11y-keys-behavior/iron-a11y-keys-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-behaviors/iron-button-state.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-behaviors/iron-control-state.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-form-element-behavior/iron-form-element-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-icon/iron-icon.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-menu-button/paper-menu-button.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-validatable-behavior/iron-validatable-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-dropdown-menu/paper-dropdown-menu-icons.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-dropdown-menu/paper-dropdown-menu-shared-styles.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-behaviors/paper-inky-focus-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-input/iron-input.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-input/paper-input-char-counter.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-input/paper-input-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-input/paper-input-container.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-input/paper-input-error.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-item/paper-item-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-menu-behavior/iron-menu-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-item/paper-item-shared-styles.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-menu/paper-menu-shared-styles.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-styles/color.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-range-behavior/iron-range-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-selector/iron-selectable.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-flex-layout/classes/iron-flex-layout.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-styles/shadow.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-styles/typography.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-menu-behavior/iron-menubar-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-tabs/paper-tabs-icons.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-tabs/paper-tab.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/polymer/polymer-micro.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/promise-polyfill/promise-polyfill-lite.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-material/paper-material-shared-styles.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-behaviors/paper-ripple-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-checked-element-behavior/iron-checked-element-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-meta/iron-meta.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/neon-animation/neon-animatable-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/promise-polyfill/Promise.js HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-overlay-behavior/iron-overlay-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-iconset-svg/iron-iconset-svg.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-dropdown/iron-dropdown.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/neon-animation/animations/fade-in-animation.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/neon-animation/animations/fade-out-animation.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-menu-button/paper-menu-button-animations.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-a11y-announcer/iron-a11y-announcer.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/paper-input/paper-input-addon-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-selector/iron-multi-selectable.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-selector/iron-selection.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-flex-layout/classes/iron-shadow-flex-layout.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/font-roboto/roboto.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-fit-behavior/iron-fit-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/neon-animation/animations/opaque-animation.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-overlay-behavior/iron-overlay-manager.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-dropdown/iron-dropdown-scroll-manager.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/neon-animation/neon-animation-behavior.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/neon-animation/web-animations.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/iron-overlay-behavior/iron-overlay-backdrop.html HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:14] "GET /external/web-animations-js/web-animations-next-lite.min.js HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:15] "GET /data/runs HTTP/1.1" 200 - 127.0.0.1 - - [14/Aug/2016 13:49:15] "GET /data/runs HTTP/1.1" 200 - </code></pre></div>
<p dir="auto">After a clean install of TensorFlow v0.10 (from <code class="notranslate">master</code>) my TensorBoard is suddenly broken. The scalar event plots do not show upon clicking (see screenshow below). While the logs in the terminal do not show any errors, the Chrome Developer console shows the following error upon opening a figure:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="tf-tensorboard.html:1517 Uncaught Error: tf-chart-scaffold's content doesn't implement the required interfaceinsertBefore @ VM2478 polymer-mini.html:560"><pre class="notranslate"><code class="notranslate">tf-tensorboard.html:1517 Uncaught Error: tf-chart-scaffold's content doesn't implement the required interfaceinsertBefore @ VM2478 polymer-mini.html:560 </code></pre></div> <p dir="auto">I am running Chrome Version 52.0.2743.116 (64-bit) on Linux Mint 17.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/bedbaf7fd1ce31a10c862fe38488e3863d919e0c0446d7b8f3825d41bd5245bd/687474703a2f2f692e696d6775722e636f6d2f476e5234364e4c2e706e67"><img src="https://camo.githubusercontent.com/bedbaf7fd1ce31a10c862fe38488e3863d919e0c0446d7b8f3825d41bd5245bd/687474703a2f2f692e696d6775722e636f6d2f476e5234364e4c2e706e67" alt="TensorBoard" data-canonical-src="http://i.imgur.com/GnR46NL.png" style="max-width: 100%;"></a></p>
1
<p dir="auto">Hello, I'm working on the typescript definitions for createjs, you can see it here: <a href="https://bitbucket.org/drk4/createjs_ts_definitions" rel="nofollow">https://bitbucket.org/drk4/createjs_ts_definitions</a></p> <p dir="auto">I think its a good idea to have the definitions on a single place so, if you're interested you can add it. It still needs testing, so maybe have a message saying that I suppose.</p> <p dir="auto">Cheers</p>
<p dir="auto">I recently created bluebird definitions using <code class="notranslate">any</code> as data type.</p> <p dir="auto">But ideally it should use generics, like <code class="notranslate">Q</code>, <code class="notranslate">es6-promises</code> etc.</p> <p dir="auto">I'm not 100% clear what the correct pattern is. It looks like <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="25664213" data-permission-text="Title is private" data-url="https://github.com/DefinitelyTyped/DefinitelyTyped/issues/1550" data-hovercard-type="pull_request" data-hovercard-url="/DefinitelyTyped/DefinitelyTyped/pull/1550/hovercard" href="https://github.com/DefinitelyTyped/DefinitelyTyped/pull/1550">#1550</a> has the same basic Promise signature, maybe copy it from there once it settled.</p>
0
<p dir="auto">by <strong>kq1quick</strong>:</p> <pre class="notranslate">The language specification currently states: Tokens Tokens form the vocabulary of the Go language. There are four classes: identifiers, keywords, operators and delimiters, and literals. White space, formed from spaces (U+0020), horizontal tabs (U +0009), carriage returns (U+000D), and newlines (U+000A), is ignored except as it separates tokens that would otherwise combine into a single token. While breaking the input into tokens, the next token is the longest sequence of characters that form a valid token. The second sentence is wrong: it states that there are "four" classes and then proceeds to enumerate 5. The third sentence is no longer true with the Dec 22 release. At a minimum, the assertion above that carriage returns are whitespace must be removed because they now no longer server to separate tokens and are ignored otherwise: they significantly affect the parse. See issues 453 and 454 and <a href="http://groups.google.com/group/golang-nuts/t/9eb0c7c1f20db921" rel="nofollow">http://groups.google.com/group/golang-nuts/t/9eb0c7c1f20db921</a> (particularly my post). More explicitly, it should discuss the fact that newlines are sometimes just whitespace and sometimes parse elements and that there are special rules throughout the latter portions of the language specification detailing when they are not just whitespace. To this end, newlines may form the 6th class of tokens.</pre>
<pre class="notranslate">Go documentation is very good, but it doesn't clearly label which go version features are available in. For instance I was caught out by <a href="http://golang.org/pkg/time/#Timer.Reset" rel="nofollow">http://golang.org/pkg/time/#Timer.Reset</a> being a go 1.1 feature which meant my code would no longer compile with go 1.0. Other examples are * <a href="http://golang.org/pkg/net/http/#Transport.CancelRequest" rel="nofollow">http://golang.org/pkg/net/http/#Transport.CancelRequest</a> * ResponseHeaderTimeout in <a href="http://golang.org/pkg/net/http/#Transport" rel="nofollow">http://golang.org/pkg/net/http/#Transport</a></pre>
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/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/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.3</li> <li>Operating System version: xxx</li> <li>Java version: 1.8</li> <li>Springboot: 2.1.8</li> <li>nacos: 1.1.3</li> </ul> <h3 dir="auto">Steps to reproduce this issue</h3> <ol dir="auto"> <li>在<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/reference/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/reference">@reference</a>配置指定方法的超时时间2000,其他地方的超时配置全去掉</li> <li>测试</li> <li>dubbo使用了超时时间1000,即<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/reference/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/reference">@reference</a>的配置不生效</li> </ol> <p dir="auto">Pls. provide [GitHub address] to reproduce this issue.</p> <h3 dir="auto">Expected Result</h3> <ol dir="auto"> <li>关于超时时间的优先级,我的理解是<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/reference/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/reference">@reference</a>&gt;<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/service/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/service">@service</a>&gt;consumer的yml配置&gt;provider的yml配置</li> <li>在provider和consumer的bootstrap.yml里使用dubbo.consumer.timeout和dubbo.provider.timeout配置各自的全局超时时间</li> <li>在<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/reference/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/reference">@reference</a>和<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/service/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/service">@service</a>注解上配置指定方法或指定类的超时时间</li> <li>期望通过以上方式合理的控制超时时间</li> </ol> <h3 dir="auto">Actual Result</h3> <ol dir="auto"> <li>springboot+dubbo+nacos项目能够正常运行</li> <li>只在consumer的yml里使用dubbo.consumer.timeout配置超时时间,生效,符合预期</li> <li>注释掉2的配置,系统使用了dubbo的默认超时时间1000,符合预期</li> <li>只在 consumer使用<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/reference/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/reference">@reference</a>(version = "${this.version}", timeout = 6000) 不符合预期 ,期望使用6000,测试结果显示使用了默认的1000</li> <li>只在consumer使用<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/reference/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/reference">@reference</a>(version = "${this.version}" ,methods = {<br> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/method/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/method">@method</a>(name = "xxxMethod", timeout = 5000)<br> }) 不符合预期 期望使用配置的,测试结果显示使用了默认的1000</li> <li>只在provider配置<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/service/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/service">@service</a>(version = "${this.version}", methods = {<br> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/method/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/method">@method</a>(name = "xxxMethod", timeout = 21000)<br> }) 不符合预期 期望使用配置的,测试结果显示使用了默认的1000</li> <li>只在<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/service/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/service">@service</a>(version = "${this.version}", timeout = 4000)配置超时时间, 符合预期</li> <li>在provider的yml里配置dubbo.provider.timeout=5000,并在<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/service/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/service">@service</a>(version = "${this.version}", timeout = 4000), 不符合预期,测试结果是5000,期望是service上的能覆盖全局的</li> </ol> <p dir="auto">总结:</p> <ol dir="auto"> <li>请问是我优先级理解错误,还是<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/reference/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/reference">@reference</a>和<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/service/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/service">@service</a>注解配置不生效</li> <li>如何实现在一个地方可以配置整体的超时时间,又可以在特定的接口或者方法上配置特殊的超时时间</li> </ol> <p dir="auto">注:<br> 1.用的是org.apache.dubbo.config.annotation.Reference和org.apache.dubbo.config.annotation.Service<br> 2. consumer是一个springboot项目 , provider是另一个springboot项目,服务的注册发现,提供给别的项目使用,都没有问题.</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/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: CentOS x64</li> <li>Java version: 1.8</li> </ul> <h3 dir="auto">Steps to reproduce this issue</h3> <ol dir="auto"> <li>使用dubbo 2.6.2,搭建dubbo服务(技术栈:dubbo,spring boot 2.0.4.RELEASE,zookeeper)</li> <li>暴露dubbo任意dubbo服务,此服务的逻辑中调用别的服务</li> <li>运行一段时间后,发现控制台界面出现以下警告:<br> <code class="notranslate">WARN com.alibaba.dubbo.registry.integration.RegistryDirectory:200 notify [DUBBO] Unsupported category providers,configurators,routers in notified url: empty://。。。</code></li> </ol> <p dir="auto">从日志中查看到,警告为RegistryDirectory类第 200行打印出的警告,如下图:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/43158596/58146768-246d8880-7c8a-11e9-8946-2e7fb61ebab6.jpg"><img src="https://user-images.githubusercontent.com/43158596/58146768-246d8880-7c8a-11e9-8946-2e7fb61ebab6.jpg" alt="01" style="max-width: 100%;"></a><br> 通过断点,进一步追综代码运行堆栈,发现,问题可能在于 CuratorWatcherImpl (CuratorZookeeperClient类的一个内部类),process方法中,path为null引起,如下图:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/43158596/58146992-1f5d0900-7c8b-11e9-9e84-6fbaea8f1566.jpg"><img src="https://user-images.githubusercontent.com/43158596/58146992-1f5d0900-7c8b-11e9-9e84-6fbaea8f1566.jpg" alt="02" style="max-width: 100%;"></a><br> 因为当以上170行代码的 path为null 的时候,会被赋予一个空字符串"",这导致 171行代码调用childChanged时,传了空串参数进去。(请注意上图中第172处的 // if path is null, curator using watcher will throw NullPointerException. 之类的注释,可能有助于解决这个问题)<br> 因为为path赋值了空串参数,导致 ZookeeperRegistry类中的 179行代码进调用 notify 的时候,传了空字符串参数进去,如下图:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/43158596/58147289-6992ba00-7c8c-11e9-9005-c2a63c50db43.jpg"><img src="https://user-images.githubusercontent.com/43158596/58147289-6992ba00-7c8c-11e9-9005-c2a63c50db43.jpg" alt="03" style="max-width: 100%;"></a><br> (说明:以上代码块为 ZookeeperRegistry 中的 doSubscribe 方法,用于消费者订阅 ,该方法内部开启了一个监听节点变化的 listener),因为进传递进来的 parentPath 参数为空串,导致 179行代码在调用 toUrlsWithEmpty 方法的时候,得到的 url 中的 category 的值依旧为providers,configurators,routers ,重而导致上诉警告。<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/43158596/58147670-3b15de80-7c8e-11e9-8602-b4b8184b914b.jpg"><img src="https://user-images.githubusercontent.com/43158596/58147670-3b15de80-7c8e-11e9-8602-b4b8184b914b.jpg" alt="09" style="max-width: 100%;"></a></p> <p dir="auto">通过以上分析,问题原因,很可能就是 RegistryDirectory类第 170行处path为null引起,通过那段代码块的注释,我猜测,可能 是为了解决 空指针异常而产生的新的警告,相关issue如下:<br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="274455224" data-permission-text="Title is private" data-url="https://github.com/apache/dubbo/issues/870" data-hovercard-type="issue" data-hovercard-url="/apache/dubbo/issues/870/hovercard" href="https://github.com/apache/dubbo/issues/870">#870</a><br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="276755467" data-permission-text="Title is private" data-url="https://github.com/apache/dubbo/issues/928" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/928/hovercard" href="https://github.com/apache/dubbo/pull/928">#928</a></p>
0