text1
stringlengths 0
536k
| text2
stringlengths 0
536k
| label
int64 0
1
|
---|---|---|
<table role="table">
<thead>
<tr>
<th>Q</th>
<th>A</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bug report?</td>
<td>yes</td>
</tr>
<tr>
<td>Feature request?</td>
<td>no</td>
</tr>
<tr>
<td>BC Break report?</td>
<td>no</td>
</tr>
<tr>
<td>RFC?</td>
<td>no</td>
</tr>
<tr>
<td>Symfony version</td>
<td>3.3.6</td>
</tr>
</tbody>
</table>
<p dir="auto">I do not have symfony/templating installed.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1275206/29406077-424c3d96-8340-11e7-976c-565a946d3524.png"><img width="767" alt="screen shot 2017-08-17 at 11 35 58" src="https://user-images.githubusercontent.com/1275206/29406077-424c3d96-8340-11e7-976c-565a946d3524.png" style="max-width: 100%;"></a></p>
<p dir="auto">The first request is fine, but the second request causes an issue:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1275206/29406144-79a25c94-8340-11e7-9202-75558a8b21b0.png"><img width="1103" alt="screen shot 2017-08-17 at 11 37 13" src="https://user-images.githubusercontent.com/1275206/29406144-79a25c94-8340-11e7-9202-75558a8b21b0.png" style="max-width: 100%;"></a></p>
<p dir="auto">Possible solution: Make sure the</p> | <p dir="auto"><strong>Description</strong><br>
Unless I'm overlooking something, the internationalized routing as introduced in Symfony 4.1 has no fallback locale. We use 5 different locales within our application: nl_NL, nl_BE, en_GB, en_US and de_DE. We use a custom event listener to set the <code class="notranslate">_locale</code> value in the request. So we only use "full" locales, and not "nl", "en" etc.</p>
<p dir="auto">For the Translator component, nl_NL and nl_BE automatically fall back to <code class="notranslate">translations/messages.nl.yml</code> while en_GB and en_US fall back to <code class="notranslate">translations/messages.en.yml</code>. This allows us to avoid duplicate translations.</p>
<p dir="auto">The JMSI18nRoutingBundle has a similar approach as route translations are put in <code class="notranslate">translations/routes.en.yml</code> and <code class="notranslate">translations/routes.nl.yml</code>. As such we don't have to create duplicate translations files for en_GB and en_US.</p>
<p dir="auto">As we try to migrate JMSI18nRoutingBundle to Symfony internationalized routing, we would like to have a similar approach (i.e. avoid duplicate translations). Right now, we have to configure routes like this:</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="news:
controller: App\Controller\NewsController::item
path:
nl_BE: /nieuws
nl_NL: /nieuws
en_GB: /news
en_US: /news
de_DE: /nachrichten"><pre class="notranslate"><span class="pl-ent">news</span>:
<span class="pl-ent">controller</span>: <span class="pl-s">App\Controller\NewsController::item</span>
<span class="pl-ent">path</span>:
<span class="pl-ent">nl_BE</span>: <span class="pl-s">/nieuws</span>
<span class="pl-ent">nl_NL</span>: <span class="pl-s">/nieuws</span>
<span class="pl-ent">en_GB</span>: <span class="pl-s">/news</span>
<span class="pl-ent">en_US</span>: <span class="pl-s">/news</span>
<span class="pl-ent">de_DE</span>: <span class="pl-s">/nachrichten</span></pre></div>
<p dir="auto">As you can see, that's a lot of duplication. It would be nice if the Routing component could look for fallback locales, similar like the Translation component and JMSI18nRoutingBundle. In the example below, nl_NL and nl_BE would also match the nl path.</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="news:
controller: App\Controller\NewsController::item
path:
nl: /nieuws
en: /news
de: /nachrichten"><pre class="notranslate"><span class="pl-ent">news</span>:
<span class="pl-ent">controller</span>: <span class="pl-s">App\Controller\NewsController::item</span>
<span class="pl-ent">path</span>:
<span class="pl-ent">nl</span>: <span class="pl-s">/nieuws</span>
<span class="pl-ent">en</span>: <span class="pl-s">/news</span>
<span class="pl-ent">de</span>: <span class="pl-s">/nachrichten</span></pre></div> | 0 |
<p dir="auto">Deno doesn't seem to have a way to do a POST fetch that includes an openssl cert file and key? This is how it would be done in Python</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#!/usr/bin/env python
import requests
payload = 'username=myusername&password=password'
headers = {Content-Type': 'application/x-www-form-urlencoded'}
resp = requests.post('https://example.com', data=payload, cert=('client-2048.crt', 'client-2048.key'), headers=headers)"><pre class="notranslate"><code class="notranslate">#!/usr/bin/env python
import requests
payload = 'username=myusername&password=password'
headers = {Content-Type': 'application/x-www-form-urlencoded'}
resp = requests.post('https://example.com', data=payload, cert=('client-2048.crt', 'client-2048.key'), headers=headers)
</code></pre></div>
<p dir="auto">I imagined it working something like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" const response = await fetch(
url,
{
method: "POST",
headers: { "Content-Type": "application/x-www-form-urlencoded","X-Application": appkey},
cert:'client-2048.crt',
key:'client-2048.key',
body: form,
},
);
return response.json();"><pre class="notranslate"><code class="notranslate"> const response = await fetch(
url,
{
method: "POST",
headers: { "Content-Type": "application/x-www-form-urlencoded","X-Application": appkey},
cert:'client-2048.crt',
key:'client-2048.key',
body: form,
},
);
return response.json();
</code></pre></div>
<p dir="auto">However there is no cert or key for <code class="notranslate">RequestInit()</code></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="No overload matches this call.
Overload 1 of 2, '(input: string | Request | URL, init?: RequestInit | undefined): Promise<Response>', gave the following error.
Argument of type '{ method: string; headers: { "Content-Type": string; "X-Application": string; }; cert: string; key: string; body: FormData; }' is not assignable to parameter of type 'RequestInit'.
Object literal may only specify known properties, and 'cert' does not exist in type 'RequestInit'. Overload 2 of 2, '(input: string | Request | URL, init?: (RequestInit & { client: HttpClient; }) | undefined): Promise<Response>', gave the following error.
Argument of type '{ method: string; headers: { "Content-Type": string; "X-Application": string; }; cert: string; key: string; body: FormData; }' is not assignable to parameter of type 'RequestInit & { client: HttpClient; }'.
Object literal may only specify known properties, and 'cert' does not exist in type 'RequestInit & { client: HttpClient; }'.deno-ts(2769)"><pre class="notranslate"><code class="notranslate">No overload matches this call.
Overload 1 of 2, '(input: string | Request | URL, init?: RequestInit | undefined): Promise<Response>', gave the following error.
Argument of type '{ method: string; headers: { "Content-Type": string; "X-Application": string; }; cert: string; key: string; body: FormData; }' is not assignable to parameter of type 'RequestInit'.
Object literal may only specify known properties, and 'cert' does not exist in type 'RequestInit'. Overload 2 of 2, '(input: string | Request | URL, init?: (RequestInit & { client: HttpClient; }) | undefined): Promise<Response>', gave the following error.
Argument of type '{ method: string; headers: { "Content-Type": string; "X-Application": string; }; cert: string; key: string; body: FormData; }' is not assignable to parameter of type 'RequestInit & { client: HttpClient; }'.
Object literal may only specify known properties, and 'cert' does not exist in type 'RequestInit & { client: HttpClient; }'.deno-ts(2769)
</code></pre></div> | <p dir="auto">Just like <code class="notranslate">curl --cert <file.pem></code>.</p>
<p dir="auto">Now the way to solve this problem in deno is: curl. But this method is not cross-platform.</p> | 1 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=rkroll" rel="nofollow">Rich Kroll</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-6486?redirect=false" rel="nofollow">SPR-6486</a></strong> and commented</p>
<p dir="auto">I have a URI template in the form of "/hotels/{hotel}/bookings/{booking}", and can access the path variables in the controller via <code class="notranslate">@PathVariable</code>, but when building links in the view I need a reference to the different path variables.</p>
<p dir="auto">As an example, let's say the user requests "/hotels/Hotelier/bookings/booking-123", and as is a common use case in the view, there is a need to link back to the bookings listing "/hotels/Hotelier/bookings/". The only way currently to access the URI template variables is to manually inject them each time into the view. I suggest that a tag be created that is capable of building a link from the same URI template style that is used in the <code class="notranslate">@RequestMapping</code>, something like <spring:a link="/hotels/{hotel}">go</spring:a>.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.0 M1, 3.0 M2, 3.0 M3, 3.0 M4, 3.0 RC1, 3.0 RC2, 3.0 RC3</p>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398107398" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12200" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12200/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12200">#12200</a> Automatically expose <code class="notranslate">@PathVariables</code> in the Model (<em><strong>"is duplicated by"</strong></em>)</li>
</ul>
<p dir="auto">7 votes, 6 watchers</p> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=karldmoore" rel="nofollow">Karl Moore</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-2770?redirect=false" rel="nofollow">SPR-2770</a></strong> and commented</p>
<p dir="auto">The example code in the Lookup method injection section (3.3.8.1) doesn't compile. There are duplicate local variables, the abstract method returns the wrong type, its got the wrong method name and the class isn't abstract. I think the code should look something like below.</p>
<p dir="auto">public abstract class CommandManager<br>
{<br>
public Object process ( Object commandState )<br>
{<br>
// grab a new instance of the appropriate Command interface<br>
Command command = createCommand ();<br>
// set the state on the (hopefully brand new) Command instance<br>
command.setState ( commandState );<br>
return command.execute ();<br>
}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="// mmm, but where is the implementation of this method?
protected abstract Command createCommand ();"><pre class="notranslate"><code class="notranslate">// mmm, but where is the implementation of this method?
protected abstract Command createCommand ();
</code></pre></div>
<p dir="auto">}</p>
<p dir="auto">public interface Command<br>
{<br>
public void setState ( Object commandState );<br>
public boolean execute ();<br>
}</p>
<p dir="auto">public class AsyncCommand implements Command<br>
{<br>
private Object commandState;</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="public AsyncCommand ()
{
System.out.println ( "Created AsyncCommand" );
}
public void setState ( Object commandState )
{
this.commandState = commandState;
}
public boolean execute ()
{
System.out.println ( commandState );
return true;
}"><pre class="notranslate"><code class="notranslate">public AsyncCommand ()
{
System.out.println ( "Created AsyncCommand" );
}
public void setState ( Object commandState )
{
this.commandState = commandState;
}
public boolean execute ()
{
System.out.println ( commandState );
return true;
}
</code></pre></div>
<p dir="auto">}</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 2.0 final</p> | 0 |
<h3 dir="auto">Bug report</h3>
<p dir="auto">the program .py written in spyder3.3.3 can't run in spyder3.3.6. It seems that the command axes[].plot() from matplotlib has sth wrong in spyder3.3.6. The alarm messenge is : tuple index out of range<br>
I report the probelm to the admin of spyder. He reply me that it is the problem in matplotlib not in spyder, and I should update my code.<br>
What can I do about updating my code? my matplotlib in anaconda is 3.1.0<br>
<strong>Bug summary</strong><br>
It seems that the command axes[].plot() from matplotlib has sth wrong in spyder3.3.6. The alarm messenge is : tuple index out of range</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="# Paste your code here
#
#
for i in range(n):
irf_data = pd.DataFrame(
[irf_1[:,i], irf_2[:,i], irf_3[:,i]]).T
irf_data.columns = ['point', 'up', 'lower']
axes[i//2, i % 2].plot(irf_data.index, irf_data.1,
color = 'blue', linestyle = '-')"><pre class="notranslate"><span class="pl-c"># Paste your code here</span>
<span class="pl-c">#</span>
<span class="pl-c">#</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-s1">n</span>):
<span class="pl-s1">irf_data</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>(
[<span class="pl-s1">irf_1</span>[:,<span class="pl-s1">i</span>], <span class="pl-s1">irf_2</span>[:,<span class="pl-s1">i</span>], <span class="pl-s1">irf_3</span>[:,<span class="pl-s1">i</span>]]).<span class="pl-v">T</span>
<span class="pl-s1">irf_data</span>.<span class="pl-s1">columns</span> <span class="pl-c1">=</span> [<span class="pl-s">'point'</span>, <span class="pl-s">'up'</span>, <span class="pl-s">'lower'</span>]
<span class="pl-s1">axes</span>[<span class="pl-s1">i</span><span class="pl-c1">//</span><span class="pl-c1">2</span>, <span class="pl-s1">i</span> <span class="pl-c1">%</span> <span class="pl-c1">2</span>].<span class="pl-en">plot</span>(<span class="pl-s1">irf_data</span>.<span class="pl-s1">index</span>, <span class="pl-s1">irf_data</span>.<span class="pl-c1">1</span>,
<span class="pl-s1">color</span> <span class="pl-c1">=</span> <span class="pl-s">'blue'</span>, <span class="pl-s1">linestyle</span> <span class="pl-c1">=</span> <span class="pl-s">'-'</span>)</pre></div>
<p dir="auto"><strong>Actual outcome</strong><br>
tuple index out of range</p>
<p dir="auto"><strong>Expected outcome</strong></p>
<p dir="auto"><strong>Matplotlib version</strong></p>
<ul dir="auto">
<li>Operating system:</li>
<li>Matplotlib version:</li>
<li>Matplotlib backend (<code class="notranslate">print(matplotlib.get_backend())</code>):</li>
<li>Python version:</li>
<li>Jupyter version (if applicable):</li>
<li>Other libraries:</li>
</ul> | <h3 dir="auto">Bug report</h3>
<p dir="auto"><strong>Bug summary</strong></p>
<p dir="auto">I have reported the issue in details <a href="https://stackoverflow.com/questions/57372557/matplotlib-drops-indexerror-tuple-index-out-of-range-after-upgrade" rel="nofollow">here</a><br>
basically after an upgrade to <code class="notranslate">3.1.1</code> it drops the error:</p>
<blockquote>
<p dir="auto">IndexError: tuple index out of range</p>
</blockquote>
<p dir="auto">all other details inclduing the CSV file and code are in the above link.</p> | 1 |
<p dir="auto">Hi there</p>
<p dir="auto">Not sure if this would even be possible but I'm going to put it out there. Maybe there's a way of setting bootstrap up to do this.</p>
<p dir="auto">Lots of issues come up for me - eg I can't use background image 100% for IE8 and below even though this is useful for responsive websites. I notice someone else having issues with responsive tables and IE8</p>
<p dir="auto">I would like to fix the width for IE8. I guess the issue would be that if parts of bootstrap are in media queries by default then bootstrap won't see them. Perhaps there's some clever way to set a media query so it shows to < IE8</p>
<p dir="auto">Anyway - great job everyone!</p> | <p dir="auto">NOTE ( This is practically a duplicate of my response to someone elses pull made in the past few weeks regarding icons. I figured we should really get the discussion started. My opinions are my own and subject to change. )</p>
<p dir="auto">Color, visual size and other issues brought up by the community could be irrelevant if bootstrap used something like Raphaëljs for icons. MIT licensed, which is great, and a very nice starter set for the community to begin creating from. I'm sure the creator would be stoked if a prominent open source project such as Bootstrap were to bring it's community to contribute and further his work. It may be possible to set glyphicons as a fallback somehow if needed and js were disabled but of course, if js is disabled most sites these days wont work much anyhow so I'm not certain that is a relevant argument but I'm sure cases exist for it.</p>
<p dir="auto">The icon library included in bootstrap is wonderful work but feels like an advertisement of sorts and does not seem to fit with the principles of collaboration Bootstrap has grown to endow. Even if we move to Raphael I would love to see the Glyphicons ported and would gladly pay for them. Design is copyright-able even if it is a path declaration in js/svg/whatever! The icons are great and I'm personally waiting for the go ahead to purchase and integrate the full license for Glyphicons but why not do everyone a favor and create an icon set that's truly for the masses, scalable, usable, cross platform and could be tailored to exacting needs on a case by case basis. No derivatives for the icons of a web design toolkit is rather unnerving.</p>
<p dir="auto">Relevant link: <a href="http://raphaeljs.com/icons/" rel="nofollow">http://raphaeljs.com/icons/</a></p>
<p dir="auto">( From the website )<br>
"Raphaël currently supports Firefox 3.0+, Safari 3.0+, Chrome 5.0+, Opera 9.5+ and Internet Explorer 6.0+."</p>
<p dir="auto">I have not personally verified the browser compatibility stated on the site. Checking the icons at the site out on my Samsung Nexus Prime mobile phone with Android 4.0 Ice Cream Sandwich with both the stock browser and Chrome looks beautiful at any zoom level. Firefox 10+ and Chrome on Ubuntu (gnome) and Linux Mint are just fine. Firefox and Chrome on Windows 7 seem fine and as I recall IE 9 was peachy keen as well last I tested it a few weeks ago.</p>
<p dir="auto">Hopefully a good discussion of the merits can begin. I think this issue deserves some attention going forward and better sooner than later. If the stats are any indication, there is a huge opportunity here.</p>
<p dir="auto">+1 for an open, forward looking icon kit that's willing and able to be molded for any case.</p>
<p dir="auto">Cheers</p> | 0 |
<p dir="auto">I have the following options blacklisted</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" "blacklist": [
'regenerator',
'es6.constants',
'es6.forOf',
]"><pre class="notranslate"><code class="notranslate"> "blacklist": [
'regenerator',
'es6.constants',
'es6.forOf',
]
</code></pre></div>
<p dir="auto">Specifically - since I'm using chrome, no need to transform the supported const keyword.</p>
<p dir="auto">I wrote a function that looks like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const getValue = (model, propertyPath) => {
if(!propertyPath || propertyPath == '*')
return model
if(_.isUndefined(model) || model === null)
return model //No such model, should this be an error?
if(model.hasOwnProperty(propertyPath))
return model[propertyPath]
const [head, ...tail] = (propertyPath||'').split('.')
if(!head)
return undefined; //Property does not exist, Maybe should be an error?
return getValue(model[head], tail.join('.'))
}"><pre class="notranslate"><code class="notranslate">const getValue = (model, propertyPath) => {
if(!propertyPath || propertyPath == '*')
return model
if(_.isUndefined(model) || model === null)
return model //No such model, should this be an error?
if(model.hasOwnProperty(propertyPath))
return model[propertyPath]
const [head, ...tail] = (propertyPath||'').split('.')
if(!head)
return undefined; //Property does not exist, Maybe should be an error?
return getValue(model[head], tail.join('.'))
}
</code></pre></div>
<p dir="auto">which compiles into</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" const getValue = function getValue(_x8, _x9) {
var _again = true;
_function: while (_again) {
var model = _x8,
propertyPath = _x9;
_split = _split2 = head = tail = undefined;
_again = false;
if (!propertyPath || propertyPath == '*') return model;
if (_.isUndefined(model) || model === null) return model; //No such model, should this be an error?
if (model.hasOwnProperty(propertyPath)) return model[propertyPath];
var _split = (propertyPath || '').split('.');
var _split2 = _toArray(_split);
const head = _split2[0];
const tail = _split2.slice(1);
if (!head) return undefined; //Property does not exist, Maybe should be an error?
_x8 = model[head];
_x9 = tail.join('.');
_again = true;
continue _function;
}
};"><pre class="notranslate"><code class="notranslate"> const getValue = function getValue(_x8, _x9) {
var _again = true;
_function: while (_again) {
var model = _x8,
propertyPath = _x9;
_split = _split2 = head = tail = undefined;
_again = false;
if (!propertyPath || propertyPath == '*') return model;
if (_.isUndefined(model) || model === null) return model; //No such model, should this be an error?
if (model.hasOwnProperty(propertyPath)) return model[propertyPath];
var _split = (propertyPath || '').split('.');
var _split2 = _toArray(_split);
const head = _split2[0];
const tail = _split2.slice(1);
if (!head) return undefined; //Property does not exist, Maybe should be an error?
_x8 = model[head];
_x9 = tail.join('.');
_again = true;
continue _function;
}
};
</code></pre></div>
<p dir="auto">Note that at the top, we assign undefined to <code class="notranslate">tail</code> but it's only declared by <code class="notranslate">const</code> further down. Since <code class="notranslate">const</code> is block scoped this will break.</p> | <p dir="auto">Hi, I use <code class="notranslate">[email protected]</code>, so I add <code class="notranslate">es6.blockScoping</code> to babel blacklist, but an error occurred.</p>
<p dir="auto">The code:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function getFetchData(component = {}) {
if (component.WrappedComponent) {
return getFetchData(component.WrappedComponent);
}
return component.fetchData;
}"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">getFetchData</span><span class="pl-kos">(</span><span class="pl-s1">component</span> <span class="pl-c1">=</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">component</span><span class="pl-kos">.</span><span class="pl-c1">WrappedComponent</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-en">getFetchData</span><span class="pl-kos">(</span><span class="pl-s1">component</span><span class="pl-kos">.</span><span class="pl-c1">WrappedComponent</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">component</span><span class="pl-kos">.</span><span class="pl-c1">fetchData</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">Compile:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function getFetchData() {
var _arguments = arguments;
var _again = true;
_function: while (_again) {
component = undefined;
_again = false;
let component = _arguments.length <= 0 || _arguments[0] === undefined ? {} : _arguments[0];
if (component.WrappedComponent) {
_arguments = [component.WrappedComponent];
_again = true;
continue _function;
}
return component.fetchData;
}
}"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">getFetchData</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">_arguments</span> <span class="pl-c1">=</span> <span class="pl-smi">arguments</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">_again</span> <span class="pl-c1">=</span> <span class="pl-c1">true</span><span class="pl-kos">;</span>
_function: <span class="pl-k">while</span> <span class="pl-kos">(</span><span class="pl-s1">_again</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">component</span> <span class="pl-c1">=</span> <span class="pl-c1">undefined</span><span class="pl-kos">;</span>
<span class="pl-s1">_again</span> <span class="pl-c1">=</span> <span class="pl-c1">false</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> <span class="pl-s1">component</span> <span class="pl-c1">=</span> <span class="pl-s1">_arguments</span><span class="pl-kos">.</span><span class="pl-c1">length</span> <span class="pl-c1"><=</span> <span class="pl-c1">0</span> <span class="pl-c1">||</span> <span class="pl-s1">_arguments</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-kos">]</span> <span class="pl-c1">===</span> <span class="pl-c1">undefined</span> ? <span class="pl-kos">{</span><span class="pl-kos">}</span> : <span class="pl-s1">_arguments</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-kos">]</span><span class="pl-kos">;</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">component</span><span class="pl-kos">.</span><span class="pl-c1">WrappedComponent</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">_arguments</span> <span class="pl-c1">=</span> <span class="pl-kos">[</span><span class="pl-s1">component</span><span class="pl-kos">.</span><span class="pl-c1">WrappedComponent</span><span class="pl-kos">]</span><span class="pl-kos">;</span>
<span class="pl-s1">_again</span> <span class="pl-c1">=</span> <span class="pl-c1">true</span><span class="pl-kos">;</span>
<span class="pl-k">continue</span> _function<span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">return</span> <span class="pl-s1">component</span><span class="pl-kos">.</span><span class="pl-c1">fetchData</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">Error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ReferenceError: component is not defined"><pre class="notranslate"><code class="notranslate">ReferenceError: component is not defined
</code></pre></div>
<p dir="auto">Because <code class="notranslate">let component</code> only define once.</p>
<p dir="auto">I think ES6 Default value should be to <code class="notranslate">var</code> rather than <code class="notranslate">let</code>.</p> | 1 |
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// 1. input `w,`
w
window,
// 2. input `window`, move caret to line head by using arrow key, input `!`
window
window!window"><pre class="notranslate"><span class="pl-c">// 1. input `w,`</span>
<span class="pl-s1">w</span>
<span class="pl-smi">window</span><span class="pl-kos">,</span>
<span class="pl-c">// 2. input `window`, move caret to line head by using arrow key, input `!`</span>
<span class="pl-smi">window</span>
<span class="pl-smi">window</span><span class="pl-c1">!</span><span class="pl-kos"></span><span class="pl-smi">window</span></pre></div> | <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="interface I {
property1: number;
property2: string;
}
var x: I = {
/**/property1
}"><pre class="notranslate"><span class="pl-k">interface</span> <span class="pl-smi">I</span> <span class="pl-kos">{</span>
<span class="pl-c1">property1</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span>
<span class="pl-c1">property2</span>: <span class="pl-smi">string</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">var</span> <span class="pl-s1">x</span>: <span class="pl-smi">I</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-c">/**/</span>property1
<span class="pl-kos">}</span></pre></div>
<p dir="auto">Both <code class="notranslate">property1</code> and <code class="notranslate">property2</code> are suggested at that position even though it currently exists in the object literal. To make this worse, if you commit with `property1, you end up with the following:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="interface I {
property1: number;
property2: string;
}
var x: I = {
property1property1
}"><pre class="notranslate"><span class="pl-k">interface</span> <span class="pl-smi">I</span> <span class="pl-kos">{</span>
<span class="pl-c1">property1</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span>
<span class="pl-c1">property2</span>: <span class="pl-smi">string</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">var</span> <span class="pl-s1">x</span>: <span class="pl-smi">I</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
property1property1
<span class="pl-kos">}</span></pre></div> | 1 |
<p dir="auto">Upgrading from 1.20.2 to 1.20.3 results in McAfee flagging and deleting _common.cp37-win_amd64.pyd<br>
"The Trojan named Artemis!AA5930A5315E was detected and deleted."</p>
<h3 dir="auto">Reproducing code example:</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np"><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></pre></div>
<h3 dir="auto">Error message:</h3>
<p dir="auto">Traceback (most recent call last):<br>
File "", line 1, in <br>
File "...\Continuum\anaconda3\lib\site-packages\numpy_<em>init</em>_.py", line 156, in <br>
from . import random<br>
File "...\Continuum\anaconda3\lib\site-packages\numpy\random_<em>init</em>_.py", line 179, in <br>
from . import _pickle<br>
File "...\Continuum\anaconda3\lib\site-packages\numpy\random_pickle.py", line 1, in <br>
from .mtrand import RandomState<br>
File "mtrand.pyx", line 1, in init numpy.random.mtrand<br>
File "bit_generator.pyx", line 1, in init numpy.random.bit_generator<br>
ModuleNotFoundError: No module named 'numpy.random._common'</p>
<h3 dir="auto">NumPy/Python version information:</h3>
<p dir="auto">Numpy fails to load due to deleted file. Version reported by pip is 1.20.3.</p> | <h3 dir="auto">Steps to reproduce:</h3>
<p dir="auto">pip install numpy==1.20.3</p>
<h3 dir="auto">Not reproducible on :</h3>
<p dir="auto">pip install numpy==1.20.2</p>
<h3 dir="auto">Error message:</h3>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/22102283/118801799-b45a6300-b8a1-11eb-9fb0-6b194c07c338.png"><img src="https://user-images.githubusercontent.com/22102283/118801799-b45a6300-b8a1-11eb-9fb0-6b194c07c338.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">it states an issue with random_common.cp37-win_amd64.pyd</p> | 1 |
<p dir="auto"><em>To reproduce</em></p>
<ol dir="auto">
<li>Open file from tree</li>
<li>Delete via tree</li>
<li>Close file tab</li>
<li>Atom crashes</li>
</ol>
<p dir="auto"><em>Versions</em><br>
OS X 10.9.5<br>
Atom 0.144.0</p>
<p dir="auto"><em>See images below for reproduction-flow and error message.</em></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/122287/4998717/f9bc3850-69da-11e4-927e-2d855b4884b1.png"><img src="https://cloud.githubusercontent.com/assets/122287/4998717/f9bc3850-69da-11e4-927e-2d855b4884b1.png" alt="1" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/122287/4998716/f9ba054e-69da-11e4-8bd1-9146fe6d2489.png"><img src="https://cloud.githubusercontent.com/assets/122287/4998716/f9ba054e-69da-11e4-8bd1-9146fe6d2489.png" alt="2" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/122287/4998713/f9b7bf0a-69da-11e4-8d7a-a3198ab26596.png"><img src="https://cloud.githubusercontent.com/assets/122287/4998713/f9b7bf0a-69da-11e4-8d7a-a3198ab26596.png" alt="3" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/122287/4998715/f9b92110-69da-11e4-829c-5f3cdc9db7a2.png"><img src="https://cloud.githubusercontent.com/assets/122287/4998715/f9b92110-69da-11e4-829c-5f3cdc9db7a2.png" alt="4" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/122287/4998714/f9b81de2-69da-11e4-9ec4-350c4979e7fb.png"><img src="https://cloud.githubusercontent.com/assets/122287/4998714/f9b81de2-69da-11e4-9ec4-350c4979e7fb.png" alt="5" style="max-width: 100%;"></a></p> | <p dir="auto">I was deleting a file and selected "Move to Trash".</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Process: Atom Helper [18018]
Path: /Applications/Atom.app/Contents/Frameworks/Atom Helper.app/Contents/MacOS/Atom Helper
Identifier: com.github.atom.helper
Version: 0.144.0 (0.144.0)
Code Type: X86-64 (Native)
Parent Process: Atom [17105]
Responsible: Atom [17105]
User ID: 501
Date/Time: 2014-11-10 11:13:40.159 -0500
OS Version: Mac OS X 10.10 (14A388a)
Report Version: 11
Anonymous UUID: 0D99533C-FAE2-A277-F6A0-24E885FAEBD0
Sleep/Wake UUID: 1B46AED7-9249-4C7D-8C81-A39D43E7C69C
Time Awake Since Boot: 100000 seconds
Time Since Wake: 11000 seconds
Crashed Thread: 0 CrRendererMain Dispatch queue: com.apple.main-thread
Exception Type: EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000002, 0x0000000000000000
Thread 0 Crashed:: CrRendererMain Dispatch queue: com.apple.main-thread
0 libchromiumcontent.dylib 0x000000010847c6b5 base::debug::BreakDebugger() + 5
1 libchromiumcontent.dylib 0x00000001084a960f logging::LogMessage::~LogMessage() + 655
2 libchromiumcontent.dylib 0x000000010ad5f93b content::ResourceDispatcher::OnSetDataBuffer(int, base::FileDescriptor, int, int) + 523
3 libchromiumcontent.dylib 0x000000010ad5edda content::ResourceDispatcher::DispatchMessage(IPC::Message const&) + 1098
4 libchromiumcontent.dylib 0x000000010ad5e5a8 content::ResourceDispatcher::OnMessageReceived(IPC::Message const&) + 584
5 libchromiumcontent.dylib 0x000000010ad1d7fd content::ChildThread::OnMessageReceived(IPC::Message const&) + 61
6 libchromiumcontent.dylib 0x000000010897f4cb IPC::ChannelProxy::Context::OnDispatchMessage(IPC::Message const&) + 123
7 libchromiumcontent.dylib 0x000000010847dd5f base::debug::TaskAnnotator::RunTask(char const*, char const*, base::PendingTask const&) + 207
8 libchromiumcontent.dylib 0x00000001084b94b8 base::MessageLoop::RunTask(base::PendingTask const&) + 536
9 libchromiumcontent.dylib 0x00000001084b9a31 base::MessageLoop::DoWork() + 689
10 libchromiumcontent.dylib 0x0000000108465d61 base::MessagePumpLibevent::OnWakeup(int, short, void*) + 3137
11 com.apple.CoreFoundation 0x00007fff93eb0661 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
12 com.apple.CoreFoundation 0x00007fff93ea28bc __CFRunLoopDoSources0 + 476
13 com.apple.CoreFoundation 0x00007fff93ea1e1f __CFRunLoopRun + 927
14 com.apple.CoreFoundation 0x00007fff93ea1838 CFRunLoopRunSpecific + 296
15 com.apple.Foundation 0x00007fff8e459ab9 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
16 libchromiumcontent.dylib 0x0000000108466354 base::MessagePumpNSRunLoop::DoRun(base::MessagePump::Delegate*) + 100
17 libchromiumcontent.dylib 0x0000000108465bcc base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2732
18 libchromiumcontent.dylib 0x00000001084d2cb6 base::RunLoop::Run() + 70
19 libchromiumcontent.dylib 0x00000001084b8c1d base::MessageLoop::Run() + 29
20 libchromiumcontent.dylib 0x000000010ae57e72 content::RenderWidget::UnregisterRenderFrame(content::RenderFrameImpl*) + 10402
21 libchromiumcontent.dylib 0x0000000108459d44 content::ContentMainRunner::Create() + 2196
22 libchromiumcontent.dylib 0x0000000108459236 content::ContentMain(content::ContentMainParams const&) + 54
23 com.github.AtomFramework 0x0000000107bfa298 AtomMain + 72
24 libdyld.dylib 0x00007fff9cbd35c9 start + 1
Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0 libsystem_kernel.dylib 0x00007fff996e422e kevent64 + 10
1 libdispatch.dylib 0x00007fff96808a6a _dispatch_mgr_thread + 52
Thread 2:: Chrome_ChildIOThread
0 libsystem_kernel.dylib 0x00007fff996e4216 kevent + 10
1 libchromiumcontent.dylib 0x0000000108503150 logging::VlogInfo::GetMaxVlogLevel() const + 4336
2 libchromiumcontent.dylib 0x0000000108464f7c base::MessagePumpLibevent::Run(base::MessagePump::Delegate*) + 252
3 libchromiumcontent.dylib 0x00000001084d2cb6 base::RunLoop::Run() + 70
4 libchromiumcontent.dylib 0x00000001084b8c1d base::MessageLoop::Run() + 29
5 libchromiumcontent.dylib 0x00000001084f3759 base::Thread::ThreadMain() + 217
6 libchromiumcontent.dylib 0x00000001084ecf7b base::PlatformThread::Join(base::PlatformThreadHandle) + 283
7 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
9 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 3:: OptimizingCompi
0 libsystem_kernel.dylib 0x00007fff996de56a semaphore_wait_trap + 10
1 libchromiumcontent.dylib 0x0000000109d56ea7 v8::Unlocker::~Unlocker() + 477879
2 libchromiumcontent.dylib 0x0000000109c3fb75 v8::Testing::DeoptimizeAll() + 2490821
3 libchromiumcontent.dylib 0x0000000109d583d7 v8::Unlocker::~Unlocker() + 483303
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 4:: v8:SweeperThrea
0 libsystem_kernel.dylib 0x00007fff996de56a semaphore_wait_trap + 10
1 libchromiumcontent.dylib 0x0000000109d56ea7 v8::Unlocker::~Unlocker() + 477879
2 libchromiumcontent.dylib 0x0000000109b44b80 v8::Testing::DeoptimizeAll() + 1462736
3 libchromiumcontent.dylib 0x0000000109d583d7 v8::Unlocker::~Unlocker() + 483303
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 5:: v8:SweeperThrea
0 libsystem_kernel.dylib 0x00007fff996de56a semaphore_wait_trap + 10
1 libchromiumcontent.dylib 0x0000000109d56ea7 v8::Unlocker::~Unlocker() + 477879
2 libchromiumcontent.dylib 0x0000000109b44b80 v8::Testing::DeoptimizeAll() + 1462736
3 libchromiumcontent.dylib 0x0000000109d583d7 v8::Unlocker::~Unlocker() + 483303
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 6:: v8:SweeperThrea
0 libsystem_kernel.dylib 0x00007fff996de56a semaphore_wait_trap + 10
1 libchromiumcontent.dylib 0x0000000109d56ea7 v8::Unlocker::~Unlocker() + 477879
2 libchromiumcontent.dylib 0x0000000109b44b80 v8::Testing::DeoptimizeAll() + 1462736
3 libchromiumcontent.dylib 0x0000000109d583d7 v8::Unlocker::~Unlocker() + 483303
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 7:: Compositor
0 libsystem_kernel.dylib 0x00007fff996de52e mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff996dd69f mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff93ea2b14 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff93ea1fdb __CFRunLoopRun + 1371
4 com.apple.CoreFoundation 0x00007fff93ea1838 CFRunLoopRunSpecific + 296
5 libchromiumcontent.dylib 0x0000000108465f4f base::MessagePumpCFRunLoop::DoRun(base::MessagePump::Delegate*) + 79
6 libchromiumcontent.dylib 0x0000000108465bcc base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2732
7 libchromiumcontent.dylib 0x00000001084d2cb6 base::RunLoop::Run() + 70
8 libchromiumcontent.dylib 0x00000001084b8c1d base::MessageLoop::Run() + 29
9 libchromiumcontent.dylib 0x00000001084f3759 base::Thread::ThreadMain() + 217
10 libchromiumcontent.dylib 0x00000001084ecf7b base::PlatformThread::Join(base::PlatformThreadHandle) + 283
11 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
12 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
13 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 8:
0 libsystem_kernel.dylib 0x00007fff996de56a semaphore_wait_trap + 10
1 com.github.AtomFramework 0x0000000107db073b uv_sem_wait + 16
2 com.github.AtomFramework 0x0000000107c4213b atom::NodeBindings::EmbedThreadRunner(void*) + 35
3 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 9:: HTMLParserThread
0 libsystem_kernel.dylib 0x00007fff996de52e mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff996dd69f mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff93ea2b14 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff93ea1fdb __CFRunLoopRun + 1371
4 com.apple.CoreFoundation 0x00007fff93ea1838 CFRunLoopRunSpecific + 296
5 libchromiumcontent.dylib 0x0000000108465f4f base::MessagePumpCFRunLoop::DoRun(base::MessagePump::Delegate*) + 79
6 libchromiumcontent.dylib 0x0000000108465bcc base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2732
7 libchromiumcontent.dylib 0x00000001084d2cb6 base::RunLoop::Run() + 70
8 libchromiumcontent.dylib 0x00000001084b8c1d base::MessageLoop::Run() + 29
9 libchromiumcontent.dylib 0x00000001084f3759 base::Thread::ThreadMain() + 217
10 libchromiumcontent.dylib 0x00000001084ecf7b base::PlatformThread::Join(base::PlatformThreadHandle) + 283
11 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
12 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
13 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 10:
0 libsystem_kernel.dylib 0x00007fff996e4216 kevent + 10
1 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
2 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
3 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
4 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 11:
0 libsystem_kernel.dylib 0x00007fff996e3132 __psynch_cvwait + 10
1 com.github.AtomFramework 0x0000000107db07d1 uv_cond_wait + 9
2 com.github.AtomFramework 0x0000000107da6a06 worker + 206
3 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 12:
0 libsystem_kernel.dylib 0x00007fff996e3132 __psynch_cvwait + 10
1 com.github.AtomFramework 0x0000000107db07d1 uv_cond_wait + 9
2 com.github.AtomFramework 0x0000000107da6a06 worker + 206
3 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 13:
0 libsystem_kernel.dylib 0x00007fff996e3132 __psynch_cvwait + 10
1 com.github.AtomFramework 0x0000000107db07d1 uv_cond_wait + 9
2 com.github.AtomFramework 0x0000000107da6a06 worker + 206
3 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 14:
0 libsystem_kernel.dylib 0x00007fff996e3132 __psynch_cvwait + 10
1 com.github.AtomFramework 0x0000000107db07d1 uv_cond_wait + 9
2 com.github.AtomFramework 0x0000000107da6a06 worker + 206
3 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 15:
0 libsystem_kernel.dylib 0x00007fff996e3946 __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff9096e4a1 start_wqthread + 13
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x000000000000004b rbx: 0x0000000000000000 rcx: 0x0000000000000000 rdx: 0xfffffffffffffffb
rdi: 0x00007fff5800e0b0 rsi: 0x00007fbe9ac9a938 rbp: 0x00007fff5800e070 rsp: 0x00007fff5800e070
r8: 0x00007fff5800e030 r9: 0x00007fff7dfb5300 r10: 0x00000000000170d8 r11: 0x00000040bd3737b8
r12: 0x00007fff5800e6e8 r13: 0x00007fff7eaef070 r14: 0x00007fff5800e6f8 r15: 0x0000000000080000
rip: 0x000000010847c6b5 rfl: 0x0000000000000246 cr2: 0x000000010847c6b0
Logical CPU: 0
Error Code: 0x00000000
Trap Number: 3
Binary Images:
0x107bef000 - 0x107beffff +com.github.atom.helper (0.144.0 - 0.144.0) <A8A51FE1-F1BE-3CE1-92CC-E85D1817D694> /Applications/Atom.app/Contents/Frameworks/Atom Helper.app/Contents/MacOS/Atom Helper
0x107bf9000 - 0x107f70fff +com.github.AtomFramework (0) <B09F3577-C18F-37FC-A53B-99B43EBF1691> /Applications/Atom.app/Contents/Frameworks/Atom Framework.framework/Versions/A/Atom Framework
0x1082c0000 - 0x1082dffff +com.github.Squirrel (1.0 - 1) <8A2477CD-7A5C-3305-84F6-8EE9B2EF8478> /Applications/Atom.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel
0x108302000 - 0x108399ff7 +com.github.ReactiveCocoa (1.0 - 1) <054804D9-6597-3679-814F-441C4B01ADED> /Applications/Atom.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa
0x108413000 - 0x108430fff +com.github.Mantle (1.0 - 1) <C9D801BD-C96E-3266-9933-65220955C964> /Applications/Atom.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle
0x108448000 - 0x10beeefb7 +libchromiumcontent.dylib (0) <6B119240-C11D-3907-8152-A756C7E79C87> /Applications/Atom.app/Contents/Frameworks/Atom Framework.framework/Versions/A/Libraries/libchromiumcontent.dylib
0x10ca16000 - 0x10ca4dfff com.apple.audio.midi.CoreMIDI (1.10 - 88) <4DED30CF-CBA6-3223-9D3F-7D4D634656B8> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
0x10ca75000 - 0x10caaaff7 libssl.0.9.8.dylib (52) <70680606-475F-3C89-BB5F-E274253DC7C6> /usr/lib/libssl.0.9.8.dylib
0x111a9e000 - 0x111ca8fef +ffmpegsumo.so (???) <664D031F-7854-302A-BC46-9D5F398D12FB> /Applications/Atom.app/Contents/Frameworks/Atom Framework.framework/Libraries/ffmpegsumo.so
0x11353a000 - 0x11353dfff +pathwatcher.node (???) <AA772458-0AF8-3683-AC80-8210CE3791A1> /Applications/Atom.app/Contents/Resources/app/node_modules/pathwatcher/build/Release/pathwatcher.node
0x1135c7000 - 0x1135c9ff7 +keyboard-layout-observer.node (???) <81A3C7FC-72F8-3DAB-890B-BA9C033B4CCE> /Applications/Atom.app/Contents/Resources/app/node_modules/atom-keymap/node_modules/keyboard-layout/build/Release/keyboard-layout-observer.node
0x1135ce000 - 0x113621ff7 +onig_scanner.node (???) <D1971343-BCC1-3083-8F41-787D4B1F22B9> /Applications/Atom.app/Contents/Resources/app/node_modules/oniguruma/build/Release/onig_scanner.node
0x11478c000 - 0x11482dfff +git.node (???) <31F720E7-631E-3E59-9FC2-035EDA2BC8B8> /Applications/Atom.app/Contents/Resources/app/node_modules/git-utils/build/Release/git.node
0x114879000 - 0x11487afff +runas.node (???) <0265DDA1-229F-3D93-B105-C8DD82F2B679> /Applications/Atom.app/Contents/Resources/app/node_modules/runas/build/Release/runas.node
0x11742b000 - 0x11742dfff +scrollbar-style-observer.node (???) <0CD9C9A7-0F6B-39EB-BEC6-0E48C77DABF0> /Applications/Atom.app/Contents/Resources/app/node_modules/scrollbar-style/build/Release/scrollbar-style-observer.node
0x7fff63f35000 - 0x7fff63f6b837 dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
0x7fff8d767000 - 0x7fff8d87fffb com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff8d880000 - 0x7fff8d88dff7 libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
0x7fff8d890000 - 0x7fff8d8b6ff7 com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff8d8c6000 - 0x7fff8d8e5fff com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
0x7fff8d9dc000 - 0x7fff8d9e0ff7 libGIF.dylib (1231) <B3D2DF96-A67D-31EA-9A1B-E870B54855EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff8da4f000 - 0x7fff8da51ff7 com.apple.SecCodeWrapper (4.0 - 238) <F450AB10-B0A4-3B55-A1B9-563E55C99333> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
0x7fff8da67000 - 0x7fff8da67fff com.apple.Accelerate (1.10 - Accelerate 1.10) <C7278843-2462-32F6-B0E3-D33C681399A2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff8da68000 - 0x7fff8db4bfff libcrypto.0.9.8.dylib (52) <7208EEE2-C090-383E-AADD-7E1BD1321BEC> /usr/lib/libcrypto.0.9.8.dylib
0x7fff8db4c000 - 0x7fff8df23fe7 com.apple.CoreAUC (211.0.0 - 211.0.0) <C0DFCFBA-90E6-38F7-B858-E80A880514E6> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff8df24000 - 0x7fff8df64ff7 com.apple.CloudDocs (1.0 - 280.1) <21D7E10A-99EF-34BE-82D7-29A6F1761DE5> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
0x7fff8df65000 - 0x7fff8dfe2fff com.apple.CoreServices.OSServices (640.3 - 640.3) <EF21E94C-1B34-38F2-AD1E-5BF3AC8C8A23> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff8dfe3000 - 0x7fff8e000ffb libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
0x7fff8e09a000 - 0x7fff8e3b5fcf com.apple.vImage (8.0 - 8.0) <1183FE6A-FDB6-3B3B-928D-50C7909F2308> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff8e3b6000 - 0x7fff8e3b8fff com.apple.loginsupport (1.0 - 1) <35A2A071-606C-39A5-8C11-E4CAF98D934C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff8e3b9000 - 0x7fff8e3bbffb libCGXType.A.dylib (772) <7CB71BC6-D8EC-37BC-8243-41BAB086FAAA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x7fff8e3eb000 - 0x7fff8e3eeff7 com.apple.Mangrove (1.0 - 1) <2AF1CAE9-8BF9-33C4-9C1B-123DBAF1522B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff8e3ef000 - 0x7fff8e71dff7 com.apple.Foundation (6.9 - 1151.16) <18EDD673-A010-3E99-956E-DA594CE1FA80> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff8e71e000 - 0x7fff8e733ff7 com.apple.AppContainer (4.0 - 238) <9481F305-359A-33E6-93F1-89A25FA14E00> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
0x7fff8e750000 - 0x7fff8e79dff3 com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff8e79e000 - 0x7fff8e7c1fff com.apple.Sharing (328.3 - 328.3) <FDEE49AD-8804-3760-9C14-8D1D10BBEA37> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff8e826000 - 0x7fff8eaa0fff com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff8eaa1000 - 0x7fff8eaa7ff7 com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
0x7fff8eb51000 - 0x7fff8eb51ff7 libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
0x7fff8ecb1000 - 0x7fff8ecdefff com.apple.Accounts (113 - 113) <3145FCC2-D297-3DD1-B74B-9E7DBB0EE33C> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
0x7fff8ed09000 - 0x7fff8ed3bff3 com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x7fff8ed92000 - 0x7fff8edacff7 com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
0x7fff8edae000 - 0x7fff8edfdff7 com.apple.opencl (2.4.2 - 2.4.2) <6AE26E08-6EFC-3E1B-B202-EFA9C3E5B9D4> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff8edfe000 - 0x7fff8ee6cffb com.apple.Heimdal (4.0 - 2.0) <B852ACA1-4C64-3E2A-A9D3-6D4C80AD9429> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff8ee6d000 - 0x7fff8f070ff3 com.apple.CFNetwork (720.0.9 - 720.0.9) <78EE1B88-394F-3BB8-93A6-E068990559EC> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff8f071000 - 0x7fff8f1a1fff com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff8f1c4000 - 0x7fff8f4abffb com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff8f4ac000 - 0x7fff8f4aeff7 libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
0x7fff8f4db000 - 0x7fff8f4ecfff libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
0x7fff8f59d000 - 0x7fff8f5b9fff com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff8f5ba000 - 0x7fff8f5bdfff com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff8f605000 - 0x7fff8f606fff liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
0x7fff8f607000 - 0x7fff8f6c6fff com.apple.backup.framework (1.6 - 1.6) <373C7CF8-2A85-3B59-BFBC-FFA3FAE2293D> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff8f708000 - 0x7fff8f708fff libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
0x7fff8f709000 - 0x7fff8f752ff3 com.apple.HIServices (1.22 - 519) <59D78E07-C3F1-3272-88F1-876B836D5517> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff8f75c000 - 0x7fff8f75ffff com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff8f856000 - 0x7fff8f881fff com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff8f882000 - 0x7fff8f8faff7 com.apple.SystemConfiguration (1.14 - 1.14) <C269BCFD-ACAB-3331-BC7C-0430F0E84817> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff8f9d6000 - 0x7fff8fafdfff com.apple.coreui (2.1 - 305) <BB430677-D1F7-38DD-8F05-70E54352B8B5> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff8fafe000 - 0x7fff8fb44ff7 libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
0x7fff9006f000 - 0x7fff90070fff libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
0x7fff90071000 - 0x7fff90071fff com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff9012e000 - 0x7fff9016ffff libGLU.dylib (11.0.7) <8037342E-1ECD-385F-B4C3-545CE97B76AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff901be000 - 0x7fff901bfff7 libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
0x7fff901c0000 - 0x7fff901e0fff com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff9026a000 - 0x7fff9026ffff com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff90270000 - 0x7fff90278ff7 com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff90279000 - 0x7fff9027ffff libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
0x7fff90280000 - 0x7fff90286ff7 libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
0x7fff908eb000 - 0x7fff9096cff3 com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff9096d000 - 0x7fff90976fff libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
0x7fff90981000 - 0x7fff90a71fef libJP2.dylib (1231) <FEAF6F38-736E-35A8-A983-F4531C8A821C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff90a72000 - 0x7fff90a73ffb libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
0x7fff90a74000 - 0x7fff90a74ff7 liblaunch.dylib (559.1.22) <8A988924-8BE7-35FE-BF7D-322E90EFE49E> /usr/lib/system/liblaunch.dylib
0x7fff90a84000 - 0x7fff90a8bfff com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics
0x7fff90a8c000 - 0x7fff90aebff3 com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff90b00000 - 0x7fff90b02fff com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
0x7fff90b5e000 - 0x7fff90b8eff3 com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff90b8f000 - 0x7fff90b99ff7 com.apple.CrashReporterSupport (10.10 - 629) <EC97EA5E-3190-3717-A4A9-2F35A447E7A6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff90be0000 - 0x7fff90be5ffb libheimdal-asn1.dylib (398.1.2) <F9463B34-AAF5-3488-AD0C-85937C81FC5E> /usr/lib/libheimdal-asn1.dylib
0x7fff90e9b000 - 0x7fff90f07fff com.apple.framework.CoreWLAN (5.0 - 500.35.2) <ACBAAB0A-BCC7-37CF-AAFB-2DA1733F2682> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff90f08000 - 0x7fff90f22ff3 com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
0x7fff90fa6000 - 0x7fff910c7fff com.apple.LaunchServices (644.10 - 644.10) <0B1C68BC-0AEB-38E2-ABC8-E92728FEC475> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff910f0000 - 0x7fff91236fef libsqlite3.dylib (168) <8B78BED1-7B9B-3943-80DC-0871015AEAC4> /usr/lib/libsqlite3.dylib
0x7fff91237000 - 0x7fff91271ffb com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff91272000 - 0x7fff91288ff7 libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
0x7fff9128c000 - 0x7fff912c4ffb libsystem_network.dylib (411) <C0B2313D-47BE-38A9-BEE6-2634A4F5E14B> /usr/lib/system/libsystem_network.dylib
0x7fff912c5000 - 0x7fff912cdffb libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
0x7fff912ce000 - 0x7fff912effff com.apple.framework.Apple80211 (10.0 - 1000.57.3) <F64EB1A1-57F3-3ABA-97D0-DB7C926FD07F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff9131b000 - 0x7fff91326ff7 com.apple.speech.synthesis.framework (5.2.6 - 5.2.6) <9434AA45-B6BD-37F7-A866-172196A7F91B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff91327000 - 0x7fff91355fff com.apple.CoreServicesInternal (221.1 - 221.1) <51BAE6D2-84F3-392A-BFEC-A3B47B80A3D2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff91356000 - 0x7fff91356fff com.apple.Carbon (154 - 157) <6E3AEB9D-7643-36BE-A7E5-D08886649257> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff91357000 - 0x7fff913beff7 com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff913d6000 - 0x7fff913f0ff7 liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
0x7fff913f5000 - 0x7fff91493fff com.apple.Metadata (10.7.0 - 916) <DA8A1D18-19FE-37B3-BE12-85C5B0A00736> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff91494000 - 0x7fff914bcfff libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
0x7fff915fa000 - 0x7fff9168bfff com.apple.cloudkit.CloudKit (259.2.3 - 259.2.3) <6F955140-D522-32B3-B34B-BD94C5D94E7A> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
0x7fff9168c000 - 0x7fff916a7ff7 libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
0x7fff916a8000 - 0x7fff916adff7 libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
0x7fff916bd000 - 0x7fff916e9fff libsandbox.1.dylib (358.1.1) <C0B45487-F3CF-32CA-A875-CDCC48D2EA3E> /usr/lib/libsandbox.1.dylib
0x7fff91f73000 - 0x7fff9245ffff com.apple.MediaToolbox (1.0 - 1562.19) <E9F75769-1173-3EF6-8373-7673FA5B54F3> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff9247a000 - 0x7fff92487fff com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff92488000 - 0x7fff9248cfff libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
0x7fff9248d000 - 0x7fff92495fff libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
0x7fff92496000 - 0x7fff924c1ff3 libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
0x7fff924c2000 - 0x7fff924cbff3 com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff92f6a000 - 0x7fff92ffefff com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff92fff000 - 0x7fff93003fff libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
0x7fff93004000 - 0x7fff93011fff com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff93031000 - 0x7fff930b3fff com.apple.PerformanceAnalysis (1.0 - 1) <478055FE-1A94-31C7-A1A2-D67F19CA6A74> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff933bd000 - 0x7fff933d6ff7 com.apple.CFOpenDirectory (10.10 - 187) <0ECA5D80-A045-3A2C-A60C-E1605F3AB6BD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff933d7000 - 0x7fff936d9fff com.apple.HIToolbox (2.1.1 - 756) <07287312-97EC-3894-96F6-5CB6BA5E0081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff936dc000 - 0x7fff9377bdf7 com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff93780000 - 0x7fff93816ffb com.apple.CoreMedia (1.0 - 1562.19) <A754225C-2ED9-3220-A079-D50E695A1523> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff93817000 - 0x7fff93833ff7 libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
0x7fff93834000 - 0x7fff938d6fff com.apple.Bluetooth (4.3.0 - 4.3.0f10) <70922125-2A01-37AE-9CB8-D8A9578092E4> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff93928000 - 0x7fff9398fff7 com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff93abf000 - 0x7fff93aeafff libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
0x7fff93b94000 - 0x7fff93b9eff7 com.apple.NetAuth (5.0 - 5.0) <B9EC5425-D38D-308C-865F-207E0A98BAC7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff93b9f000 - 0x7fff93ba4ff7 com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff93ba5000 - 0x7fff93cb4ffb com.apple.desktopservices (1.9 - 1.9) <6EDAC73F-C42C-3FF7-B67D-FCCA1CFC5405> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff93cb5000 - 0x7fff93cc1ff7 com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff93cc2000 - 0x7fff93e2dff7 com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <E5A68E3A-79E7-36A3-9C6B-E1DF75ADDA95> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff93e2e000 - 0x7fff93e2fff7 com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff93e30000 - 0x7fff941c6fff com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff941c7000 - 0x7fff941c8fff libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff94200000 - 0x7fff94204ff7 com.apple.TCC (1.0 - 1) <AFC32F8F-BCD5-313C-B66E-5AB8591EC066> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff944b2000 - 0x7fff9472cff3 com.apple.RawCamera.bundle (6.00 - 761) <056E2E1D-6682-354E-9666-7E4935653D47> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x7fff947f1000 - 0x7fff94923ff7 com.apple.MediaControlSender (2.0 - 215.10) <8ECF208C-587A-325F-9866-09890D58F1B1> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender
0x7fff94924000 - 0x7fff9494cffb libRIP.A.dylib (772) <9262437A-710A-397D-8E34-1CBFEA1FC5E1> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x7fff94959000 - 0x7fff94959fff com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff94961000 - 0x7fff94970fff com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff94973000 - 0x7fff949cefef libTIFF.dylib (1231) <115791FB-8C49-3410-AC23-56F4B1CFF124> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff949cf000 - 0x7fff949dafff libGL.dylib (11.0.7) <C53344AD-8CE6-3111-AB94-BD4CA89ED84E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff949db000 - 0x7fff949ebff7 libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
0x7fff94a19000 - 0x7fff94b2bff7 libvDSP.dylib (512) <DD5517F5-F7F7-3AA1-B6FA-CD98DBC3C651> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff94b2c000 - 0x7fff94ba0fff com.apple.ApplicationServices.ATS (360 - 375) <62828B40-231D-3F81-8067-1903143DCB6B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff94baa000 - 0x7fff94bb1fff libCGCMS.A.dylib (772) <E64DC779-A6CF-3B1F-8E57-C09C0B10670F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
0x7fff94bb2000 - 0x7fff94bbdff7 com.apple.AppSandbox (4.0 - 238) <BC5EE1CA-764A-303D-9989-4041C1291026> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
0x7fff94bbe000 - 0x7fff94be2fef libJPEG.dylib (1231) <3F87A0CA-14FA-3034-A332-DD57A092B08F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff94c76000 - 0x7fff94dd4ff3 com.apple.avfoundation (2.0 - 889.10) <3CB185EA-C806-326E-B8DA-FDDCFA123509> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff94dd5000 - 0x7fff94ec9ff7 libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff95538000 - 0x7fff95589ff7 com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <CC57353D-8D25-3579-8A66-30A09F7BEED0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff9558a000 - 0x7fff95616fff libsystem_c.dylib (1044.1.2) <C185E862-7424-3210-B528-6B822577A4B8> /usr/lib/system/libsystem_c.dylib
0x7fff956af000 - 0x7fff956c2ff7 com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff956c3000 - 0x7fff957fdff7 com.apple.ImageIO.framework (3.3.0 - 1038) <AB3C40DB-FCBE-3315-B7B2-4E16522E20CB> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff967fe000 - 0x7fff96800ff7 libsystem_sandbox.dylib (358.1.1) <DB9962EF-8898-31CC-9B87-E01F8CE74C9D> /usr/lib/system/libsystem_sandbox.dylib
0x7fff96801000 - 0x7fff96803ff7 libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
0x7fff96804000 - 0x7fff9682eff7 libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
0x7fff96af9000 - 0x7fff96b3fffb libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff96b40000 - 0x7fff96b4bff7 libkxld.dylib (2782.1.97) <CB1A1B57-54BE-3573-AE0C-B90ED6BAEEE2> /usr/lib/system/libkxld.dylib
0x7fff96b4c000 - 0x7fff96e7ffff libmecabra.dylib (666) <2CE5540A-D412-3D53-9E11-86C24D61713B> /usr/lib/libmecabra.dylib
0x7fff96e80000 - 0x7fff96e88fff libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
0x7fff96f96000 - 0x7fff97088ff7 libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
0x7fff97089000 - 0x7fff97217fff libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff972f8000 - 0x7fff972f9fff com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff972fa000 - 0x7fff9730bff7 libsystem_coretls.dylib (35.1.2) <EBBF7EF6-80D8-3F8F-825C-B412BD6D22C0> /usr/lib/system/libsystem_coretls.dylib
0x7fff97318000 - 0x7fff97319fff libSystem.B.dylib (1213) <DA954461-EC6A-3DF0-8551-6FC810627627> /usr/lib/libSystem.B.dylib
0x7fff97434000 - 0x7fff97c6dffb com.apple.CoreGraphics (1.600.0 - 772) <D981E0F3-2FB7-38B7-A9FD-E991ADB06182> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff97c9d000 - 0x7fff97ca4fff com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff97ca5000 - 0x7fff97f0dffb com.apple.security (7.0 - 57031.1.35) <66CFAFF2-980E-3B99-B7E0-7D7751F6283C> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff97f0e000 - 0x7fff9833efff com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff98345000 - 0x7fff9835bff7 com.apple.CoreMediaAuthoring (2.2 - 951) <98CB5AB8-6BCA-3C45-98EC-67F39EEE56C5> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fff9835c000 - 0x7fff9850cff7 com.apple.QuartzCore (1.10 - 361.11) <7382E4A9-10B0-3877-B9D7-FA84DC71BA55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff9850d000 - 0x7fff98545fff com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff98546000 - 0x7fff98573fff com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff98574000 - 0x7fff98585ff7 libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
0x7fff98736000 - 0x7fff9874aff7 com.apple.MultitouchSupport.framework (260.30 - 260.30) <28728A7D-E048-3B14-9932-839A87D381FE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff9874b000 - 0x7fff98764fff com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff98765000 - 0x7fff98b72ff7 libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff98b73000 - 0x7fff98edefff com.apple.VideoToolbox (1.0 - 1562.19) <28668FCA-D122-30CC-92EE-5224A0767CBC> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff98edf000 - 0x7fff98ee7fff libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
0x7fff98efd000 - 0x7fff98f08fff libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
0x7fff98f09000 - 0x7fff98f55fff com.apple.corelocation (1486.17 - 1615.21) <DB68CEB9-0D51-3CB9-86A4-B0400CE6C515> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
0x7fff98f61000 - 0x7fff98f63fff libsystem_configuration.dylib (699.1.5) <9FBA1CE4-97D0-347E-A443-93ED94512E92> /usr/lib/system/libsystem_configuration.dylib
0x7fff98fcf000 - 0x7fff98fd2fff com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff990a9000 - 0x7fff990bbff7 com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol
0x7fff990ff000 - 0x7fff9912fffb com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff99445000 - 0x7fff99475fff libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
0x7fff99476000 - 0x7fff9947afff libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff9947b000 - 0x7fff994adfff libTrueTypeScaler.dylib (134) <6AA9A44F-EB8B-3B31-B1A3-915D03EEBA44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x7fff994ae000 - 0x7fff9955dfe7 libvMisc.dylib (512) <AFBA45DE-7F55-3E4E-B8DF-5E8E21C407AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff9955e000 - 0x7fff99576ff7 libexpat.1.dylib (12) <C5FE8836-E277-3162-9D15-6735321CB2C6> /usr/lib/libexpat.1.dylib
0x7fff99577000 - 0x7fff99584ff7 libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
0x7fff99679000 - 0x7fff996ccffb libAVFAudio.dylib (118.3) <371F1478-9AA3-312A-A93A-88E349000279> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib
0x7fff996cd000 - 0x7fff996eafff libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B> /usr/lib/system/libsystem_kernel.dylib
0x7fff99883000 - 0x7fff998d2ff7 libstdc++.6.dylib (104.1) <803F6AC8-87DC-3E24-9E80-729B551F6FFF> /usr/lib/libstdc++.6.dylib
0x7fff998d3000 - 0x7fff998edff7 com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff99a7b000 - 0x7fff99ab6fff com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff99ab7000 - 0x7fff99c9c267 libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
0x7fff99c9d000 - 0x7fff99c9dfff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <01E92F9F-EF29-3745-8631-AEA692F7F29C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff99d70000 - 0x7fff9a01aff7 com.apple.GeoServices (1.0 - 982.4.10) <B77D4082-4FBB-3F6E-AB9F-3BBBA34C0DC3> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
0x7fff9a52f000 - 0x7fff9a59efff com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff9a5d3000 - 0x7fff9a5d7fff libsystem_stats.dylib (163.1.4) <1DB04436-5974-3F16-86CC-5FF5F390339C> /usr/lib/system/libsystem_stats.dylib
0x7fff9a5d8000 - 0x7fff9a5ddff7 libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
0x7fff9a5de000 - 0x7fff9a667fff com.apple.CoreSymbolication (3.1 - 56072) <8CE81C95-49E8-389F-B989-67CC452C08D0> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff9a668000 - 0x7fff9a7acff7 com.apple.QTKit (7.7.3 - 2890) <6F6CD79F-CFBB-3FE4-82C6-47991346FB17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff9a7ad000 - 0x7fff9a7affff com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging
0x7fff9aa6a000 - 0x7fff9aabefff libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
0x7fff9ab34000 - 0x7fff9ab80ff7 libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
0x7fff9ab81000 - 0x7fff9ab81fff com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff9ab82000 - 0x7fff9abc2ff7 libGLImage.dylib (11.0.7) <7CBCEB4B-D22F-3116-8B28-D1C22D28C69D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff9abc3000 - 0x7fff9abc9fff com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff9ae35000 - 0x7fff9ae39fff com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff9ae3a000 - 0x7fff9ae94ff7 com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff9af27000 - 0x7fff9af27ff7 libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
0x7fff9af28000 - 0x7fff9b01afff libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
0x7fff9b023000 - 0x7fff9b02bffb com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff9b046000 - 0x7fff9b061ff7 com.apple.aps.framework (4.0 - 4.0) <9955CAFD-D56B-36E9-BB41-6F7F73317EB5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
0x7fff9b0c8000 - 0x7fff9b13efe7 libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
0x7fff9b13f000 - 0x7fff9b148fff libGFXShared.dylib (11.0.7) <EC449E3A-D9D2-3494-8B6C-DEB7B11EEDAB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff9b149000 - 0x7fff9b32eff3 libicucore.A.dylib (531.30) <EF0E7544-E317-3550-A962-6AE65E78AF17> /usr/lib/libicucore.A.dylib
0x7fff9b32f000 - 0x7fff9b32ffff com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff9b330000 - 0x7fff9b3c5ff7 com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff9b3c7000 - 0x7fff9b402fff com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff9b403000 - 0x7fff9b428fff libPng.dylib (1231) <759DF465-B08C-3E97-9A07-3CD447F84F78> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff9b429000 - 0x7fff9b47aff7 com.apple.AppleVAFramework (5.0.31 - 5.0.31) <762E9358-A69A-3D63-8282-3B77FBE0147E> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff9b47b000 - 0x7fff9bfbcfff com.apple.AppKit (6.9 - 1343.14) <7E32F178-C705-3E83-81C5-FB31D5507B3A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff9bfbd000 - 0x7fff9bfd7ff7 libextension.dylib (55) <17514AB2-C503-3D49-A725-EBC1140567A6> /usr/lib/libextension.dylib
0x7fff9bfd8000 - 0x7fff9bfeaff7 com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff9c039000 - 0x7fff9c047ff7 com.apple.opengl (11.0.7 - 11.0.7) <B5C4DF85-37BD-3984-98D1-90A5043DA984> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff9c0c9000 - 0x7fff9c13dff3 com.apple.securityfoundation (6.0 - 55126) <E7FB7A4E-CB0B-37BA-ADD5-373B2A20A783> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff9c13e000 - 0x7fff9c140fff libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff9c141000 - 0x7fff9c143fff libRadiance.dylib (1231) <BDD94A52-DE53-300C-9180-5D434272989F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff9c144000 - 0x7fff9c17dfff com.apple.AirPlaySupport (2.0 - 215.10) <E4159036-4C38-3F28-8AF3-4F074DAF01AC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySupport
0x7fff9c1e4000 - 0x7fff9c255ff7 com.apple.framework.IOKit (2.0.2 - 1050.1.21) <E4139120-1631-35D0-AA76-B1F4043844BE> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff9c256000 - 0x7fff9c258ff7 com.apple.securityhi (9.0 - 55006) <B1E09986-7AF0-3BD1-BAA1-B5514DFB7CD1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff9c259000 - 0x7fff9c260ff7 libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
0x7fff9c261000 - 0x7fff9c289fff libxpc.dylib (559.1.22) <9437C02E-A07B-38C8-91CB-299FAA63083D> /usr/lib/system/libxpc.dylib
0x7fff9cbd0000 - 0x7fff9cbd3ff7 libdyld.dylib (353.2.1) <19FAF435-C165-3374-9DEF-D7BBA7D61DB6> /usr/lib/system/libdyld.dylib
0x7fff9cbd4000 - 0x7fff9cea3ff3 com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff9cea4000 - 0x7fff9cecdffb libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
0x7fff9cece000 - 0x7fff9ced7ff7 libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
0x7fff9cf69000 - 0x7fff9cf80ff7 libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff9cf99000 - 0x7fff9cfe6ff3 com.apple.CoreMediaIO (601.0 - 4749) <0336FB6D-5A3D-3672-A002-B856BF569CD0> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 61
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: 64236
thread_create: 1
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=278.0M resident=202.6M(73%) swapped_out_or_unallocated=75.4M(27%)
Writable regions: Total=604.9M written=411.0M(68%) resident=421.6M(70%) swapped_out=13.2M(2%) unallocated=183.3M(30%)
REGION TYPE VIRTUAL
=========== =======
ATS (font support) 32.6M
ATS (font support) (reserved) 8K reserved VM address space (unallocated)
Activity Tracing 2048K
CG shared images 144K
CoreUI image data 28K
Dispatch continuations 16.0M
Kernel Alloc Once 8K
MALLOC 156.5M
MALLOC (admin) 32K
Memory Tag 252 20K
Memory Tag 255 772.0M
STACK GUARD 56.1M
Stack 36.4M
VM_ALLOCATE 73.1M
__DATA 21.5M
__IMAGE 528K
__LINKEDIT 83.1M
__TEXT 194.9M
__UNICODE 544K
mapped file 252.8M
shared memory 4K
=========== =======
TOTAL 1.7G
TOTAL, minus reserved VM space 1.7G
"><pre class="notranslate"><code class="notranslate">Process: Atom Helper [18018]
Path: /Applications/Atom.app/Contents/Frameworks/Atom Helper.app/Contents/MacOS/Atom Helper
Identifier: com.github.atom.helper
Version: 0.144.0 (0.144.0)
Code Type: X86-64 (Native)
Parent Process: Atom [17105]
Responsible: Atom [17105]
User ID: 501
Date/Time: 2014-11-10 11:13:40.159 -0500
OS Version: Mac OS X 10.10 (14A388a)
Report Version: 11
Anonymous UUID: 0D99533C-FAE2-A277-F6A0-24E885FAEBD0
Sleep/Wake UUID: 1B46AED7-9249-4C7D-8C81-A39D43E7C69C
Time Awake Since Boot: 100000 seconds
Time Since Wake: 11000 seconds
Crashed Thread: 0 CrRendererMain Dispatch queue: com.apple.main-thread
Exception Type: EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000002, 0x0000000000000000
Thread 0 Crashed:: CrRendererMain Dispatch queue: com.apple.main-thread
0 libchromiumcontent.dylib 0x000000010847c6b5 base::debug::BreakDebugger() + 5
1 libchromiumcontent.dylib 0x00000001084a960f logging::LogMessage::~LogMessage() + 655
2 libchromiumcontent.dylib 0x000000010ad5f93b content::ResourceDispatcher::OnSetDataBuffer(int, base::FileDescriptor, int, int) + 523
3 libchromiumcontent.dylib 0x000000010ad5edda content::ResourceDispatcher::DispatchMessage(IPC::Message const&) + 1098
4 libchromiumcontent.dylib 0x000000010ad5e5a8 content::ResourceDispatcher::OnMessageReceived(IPC::Message const&) + 584
5 libchromiumcontent.dylib 0x000000010ad1d7fd content::ChildThread::OnMessageReceived(IPC::Message const&) + 61
6 libchromiumcontent.dylib 0x000000010897f4cb IPC::ChannelProxy::Context::OnDispatchMessage(IPC::Message const&) + 123
7 libchromiumcontent.dylib 0x000000010847dd5f base::debug::TaskAnnotator::RunTask(char const*, char const*, base::PendingTask const&) + 207
8 libchromiumcontent.dylib 0x00000001084b94b8 base::MessageLoop::RunTask(base::PendingTask const&) + 536
9 libchromiumcontent.dylib 0x00000001084b9a31 base::MessageLoop::DoWork() + 689
10 libchromiumcontent.dylib 0x0000000108465d61 base::MessagePumpLibevent::OnWakeup(int, short, void*) + 3137
11 com.apple.CoreFoundation 0x00007fff93eb0661 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
12 com.apple.CoreFoundation 0x00007fff93ea28bc __CFRunLoopDoSources0 + 476
13 com.apple.CoreFoundation 0x00007fff93ea1e1f __CFRunLoopRun + 927
14 com.apple.CoreFoundation 0x00007fff93ea1838 CFRunLoopRunSpecific + 296
15 com.apple.Foundation 0x00007fff8e459ab9 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
16 libchromiumcontent.dylib 0x0000000108466354 base::MessagePumpNSRunLoop::DoRun(base::MessagePump::Delegate*) + 100
17 libchromiumcontent.dylib 0x0000000108465bcc base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2732
18 libchromiumcontent.dylib 0x00000001084d2cb6 base::RunLoop::Run() + 70
19 libchromiumcontent.dylib 0x00000001084b8c1d base::MessageLoop::Run() + 29
20 libchromiumcontent.dylib 0x000000010ae57e72 content::RenderWidget::UnregisterRenderFrame(content::RenderFrameImpl*) + 10402
21 libchromiumcontent.dylib 0x0000000108459d44 content::ContentMainRunner::Create() + 2196
22 libchromiumcontent.dylib 0x0000000108459236 content::ContentMain(content::ContentMainParams const&) + 54
23 com.github.AtomFramework 0x0000000107bfa298 AtomMain + 72
24 libdyld.dylib 0x00007fff9cbd35c9 start + 1
Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0 libsystem_kernel.dylib 0x00007fff996e422e kevent64 + 10
1 libdispatch.dylib 0x00007fff96808a6a _dispatch_mgr_thread + 52
Thread 2:: Chrome_ChildIOThread
0 libsystem_kernel.dylib 0x00007fff996e4216 kevent + 10
1 libchromiumcontent.dylib 0x0000000108503150 logging::VlogInfo::GetMaxVlogLevel() const + 4336
2 libchromiumcontent.dylib 0x0000000108464f7c base::MessagePumpLibevent::Run(base::MessagePump::Delegate*) + 252
3 libchromiumcontent.dylib 0x00000001084d2cb6 base::RunLoop::Run() + 70
4 libchromiumcontent.dylib 0x00000001084b8c1d base::MessageLoop::Run() + 29
5 libchromiumcontent.dylib 0x00000001084f3759 base::Thread::ThreadMain() + 217
6 libchromiumcontent.dylib 0x00000001084ecf7b base::PlatformThread::Join(base::PlatformThreadHandle) + 283
7 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
9 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 3:: OptimizingCompi
0 libsystem_kernel.dylib 0x00007fff996de56a semaphore_wait_trap + 10
1 libchromiumcontent.dylib 0x0000000109d56ea7 v8::Unlocker::~Unlocker() + 477879
2 libchromiumcontent.dylib 0x0000000109c3fb75 v8::Testing::DeoptimizeAll() + 2490821
3 libchromiumcontent.dylib 0x0000000109d583d7 v8::Unlocker::~Unlocker() + 483303
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 4:: v8:SweeperThrea
0 libsystem_kernel.dylib 0x00007fff996de56a semaphore_wait_trap + 10
1 libchromiumcontent.dylib 0x0000000109d56ea7 v8::Unlocker::~Unlocker() + 477879
2 libchromiumcontent.dylib 0x0000000109b44b80 v8::Testing::DeoptimizeAll() + 1462736
3 libchromiumcontent.dylib 0x0000000109d583d7 v8::Unlocker::~Unlocker() + 483303
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 5:: v8:SweeperThrea
0 libsystem_kernel.dylib 0x00007fff996de56a semaphore_wait_trap + 10
1 libchromiumcontent.dylib 0x0000000109d56ea7 v8::Unlocker::~Unlocker() + 477879
2 libchromiumcontent.dylib 0x0000000109b44b80 v8::Testing::DeoptimizeAll() + 1462736
3 libchromiumcontent.dylib 0x0000000109d583d7 v8::Unlocker::~Unlocker() + 483303
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 6:: v8:SweeperThrea
0 libsystem_kernel.dylib 0x00007fff996de56a semaphore_wait_trap + 10
1 libchromiumcontent.dylib 0x0000000109d56ea7 v8::Unlocker::~Unlocker() + 477879
2 libchromiumcontent.dylib 0x0000000109b44b80 v8::Testing::DeoptimizeAll() + 1462736
3 libchromiumcontent.dylib 0x0000000109d583d7 v8::Unlocker::~Unlocker() + 483303
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 7:: Compositor
0 libsystem_kernel.dylib 0x00007fff996de52e mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff996dd69f mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff93ea2b14 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff93ea1fdb __CFRunLoopRun + 1371
4 com.apple.CoreFoundation 0x00007fff93ea1838 CFRunLoopRunSpecific + 296
5 libchromiumcontent.dylib 0x0000000108465f4f base::MessagePumpCFRunLoop::DoRun(base::MessagePump::Delegate*) + 79
6 libchromiumcontent.dylib 0x0000000108465bcc base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2732
7 libchromiumcontent.dylib 0x00000001084d2cb6 base::RunLoop::Run() + 70
8 libchromiumcontent.dylib 0x00000001084b8c1d base::MessageLoop::Run() + 29
9 libchromiumcontent.dylib 0x00000001084f3759 base::Thread::ThreadMain() + 217
10 libchromiumcontent.dylib 0x00000001084ecf7b base::PlatformThread::Join(base::PlatformThreadHandle) + 283
11 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
12 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
13 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 8:
0 libsystem_kernel.dylib 0x00007fff996de56a semaphore_wait_trap + 10
1 com.github.AtomFramework 0x0000000107db073b uv_sem_wait + 16
2 com.github.AtomFramework 0x0000000107c4213b atom::NodeBindings::EmbedThreadRunner(void*) + 35
3 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 9:: HTMLParserThread
0 libsystem_kernel.dylib 0x00007fff996de52e mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff996dd69f mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff93ea2b14 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff93ea1fdb __CFRunLoopRun + 1371
4 com.apple.CoreFoundation 0x00007fff93ea1838 CFRunLoopRunSpecific + 296
5 libchromiumcontent.dylib 0x0000000108465f4f base::MessagePumpCFRunLoop::DoRun(base::MessagePump::Delegate*) + 79
6 libchromiumcontent.dylib 0x0000000108465bcc base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2732
7 libchromiumcontent.dylib 0x00000001084d2cb6 base::RunLoop::Run() + 70
8 libchromiumcontent.dylib 0x00000001084b8c1d base::MessageLoop::Run() + 29
9 libchromiumcontent.dylib 0x00000001084f3759 base::Thread::ThreadMain() + 217
10 libchromiumcontent.dylib 0x00000001084ecf7b base::PlatformThread::Join(base::PlatformThreadHandle) + 283
11 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
12 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
13 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 10:
0 libsystem_kernel.dylib 0x00007fff996e4216 kevent + 10
1 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
2 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
3 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
4 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 11:
0 libsystem_kernel.dylib 0x00007fff996e3132 __psynch_cvwait + 10
1 com.github.AtomFramework 0x0000000107db07d1 uv_cond_wait + 9
2 com.github.AtomFramework 0x0000000107da6a06 worker + 206
3 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 12:
0 libsystem_kernel.dylib 0x00007fff996e3132 __psynch_cvwait + 10
1 com.github.AtomFramework 0x0000000107db07d1 uv_cond_wait + 9
2 com.github.AtomFramework 0x0000000107da6a06 worker + 206
3 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 13:
0 libsystem_kernel.dylib 0x00007fff996e3132 __psynch_cvwait + 10
1 com.github.AtomFramework 0x0000000107db07d1 uv_cond_wait + 9
2 com.github.AtomFramework 0x0000000107da6a06 worker + 206
3 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 14:
0 libsystem_kernel.dylib 0x00007fff996e3132 __psynch_cvwait + 10
1 com.github.AtomFramework 0x0000000107db07d1 uv_cond_wait + 9
2 com.github.AtomFramework 0x0000000107da6a06 worker + 206
3 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 15:
0 libsystem_kernel.dylib 0x00007fff996e3946 __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff9096e4a1 start_wqthread + 13
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x000000000000004b rbx: 0x0000000000000000 rcx: 0x0000000000000000 rdx: 0xfffffffffffffffb
rdi: 0x00007fff5800e0b0 rsi: 0x00007fbe9ac9a938 rbp: 0x00007fff5800e070 rsp: 0x00007fff5800e070
r8: 0x00007fff5800e030 r9: 0x00007fff7dfb5300 r10: 0x00000000000170d8 r11: 0x00000040bd3737b8
r12: 0x00007fff5800e6e8 r13: 0x00007fff7eaef070 r14: 0x00007fff5800e6f8 r15: 0x0000000000080000
rip: 0x000000010847c6b5 rfl: 0x0000000000000246 cr2: 0x000000010847c6b0
Logical CPU: 0
Error Code: 0x00000000
Trap Number: 3
Binary Images:
0x107bef000 - 0x107beffff +com.github.atom.helper (0.144.0 - 0.144.0) <A8A51FE1-F1BE-3CE1-92CC-E85D1817D694> /Applications/Atom.app/Contents/Frameworks/Atom Helper.app/Contents/MacOS/Atom Helper
0x107bf9000 - 0x107f70fff +com.github.AtomFramework (0) <B09F3577-C18F-37FC-A53B-99B43EBF1691> /Applications/Atom.app/Contents/Frameworks/Atom Framework.framework/Versions/A/Atom Framework
0x1082c0000 - 0x1082dffff +com.github.Squirrel (1.0 - 1) <8A2477CD-7A5C-3305-84F6-8EE9B2EF8478> /Applications/Atom.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel
0x108302000 - 0x108399ff7 +com.github.ReactiveCocoa (1.0 - 1) <054804D9-6597-3679-814F-441C4B01ADED> /Applications/Atom.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa
0x108413000 - 0x108430fff +com.github.Mantle (1.0 - 1) <C9D801BD-C96E-3266-9933-65220955C964> /Applications/Atom.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle
0x108448000 - 0x10beeefb7 +libchromiumcontent.dylib (0) <6B119240-C11D-3907-8152-A756C7E79C87> /Applications/Atom.app/Contents/Frameworks/Atom Framework.framework/Versions/A/Libraries/libchromiumcontent.dylib
0x10ca16000 - 0x10ca4dfff com.apple.audio.midi.CoreMIDI (1.10 - 88) <4DED30CF-CBA6-3223-9D3F-7D4D634656B8> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
0x10ca75000 - 0x10caaaff7 libssl.0.9.8.dylib (52) <70680606-475F-3C89-BB5F-E274253DC7C6> /usr/lib/libssl.0.9.8.dylib
0x111a9e000 - 0x111ca8fef +ffmpegsumo.so (???) <664D031F-7854-302A-BC46-9D5F398D12FB> /Applications/Atom.app/Contents/Frameworks/Atom Framework.framework/Libraries/ffmpegsumo.so
0x11353a000 - 0x11353dfff +pathwatcher.node (???) <AA772458-0AF8-3683-AC80-8210CE3791A1> /Applications/Atom.app/Contents/Resources/app/node_modules/pathwatcher/build/Release/pathwatcher.node
0x1135c7000 - 0x1135c9ff7 +keyboard-layout-observer.node (???) <81A3C7FC-72F8-3DAB-890B-BA9C033B4CCE> /Applications/Atom.app/Contents/Resources/app/node_modules/atom-keymap/node_modules/keyboard-layout/build/Release/keyboard-layout-observer.node
0x1135ce000 - 0x113621ff7 +onig_scanner.node (???) <D1971343-BCC1-3083-8F41-787D4B1F22B9> /Applications/Atom.app/Contents/Resources/app/node_modules/oniguruma/build/Release/onig_scanner.node
0x11478c000 - 0x11482dfff +git.node (???) <31F720E7-631E-3E59-9FC2-035EDA2BC8B8> /Applications/Atom.app/Contents/Resources/app/node_modules/git-utils/build/Release/git.node
0x114879000 - 0x11487afff +runas.node (???) <0265DDA1-229F-3D93-B105-C8DD82F2B679> /Applications/Atom.app/Contents/Resources/app/node_modules/runas/build/Release/runas.node
0x11742b000 - 0x11742dfff +scrollbar-style-observer.node (???) <0CD9C9A7-0F6B-39EB-BEC6-0E48C77DABF0> /Applications/Atom.app/Contents/Resources/app/node_modules/scrollbar-style/build/Release/scrollbar-style-observer.node
0x7fff63f35000 - 0x7fff63f6b837 dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
0x7fff8d767000 - 0x7fff8d87fffb com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff8d880000 - 0x7fff8d88dff7 libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
0x7fff8d890000 - 0x7fff8d8b6ff7 com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff8d8c6000 - 0x7fff8d8e5fff com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
0x7fff8d9dc000 - 0x7fff8d9e0ff7 libGIF.dylib (1231) <B3D2DF96-A67D-31EA-9A1B-E870B54855EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff8da4f000 - 0x7fff8da51ff7 com.apple.SecCodeWrapper (4.0 - 238) <F450AB10-B0A4-3B55-A1B9-563E55C99333> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
0x7fff8da67000 - 0x7fff8da67fff com.apple.Accelerate (1.10 - Accelerate 1.10) <C7278843-2462-32F6-B0E3-D33C681399A2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff8da68000 - 0x7fff8db4bfff libcrypto.0.9.8.dylib (52) <7208EEE2-C090-383E-AADD-7E1BD1321BEC> /usr/lib/libcrypto.0.9.8.dylib
0x7fff8db4c000 - 0x7fff8df23fe7 com.apple.CoreAUC (211.0.0 - 211.0.0) <C0DFCFBA-90E6-38F7-B858-E80A880514E6> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff8df24000 - 0x7fff8df64ff7 com.apple.CloudDocs (1.0 - 280.1) <21D7E10A-99EF-34BE-82D7-29A6F1761DE5> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
0x7fff8df65000 - 0x7fff8dfe2fff com.apple.CoreServices.OSServices (640.3 - 640.3) <EF21E94C-1B34-38F2-AD1E-5BF3AC8C8A23> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff8dfe3000 - 0x7fff8e000ffb libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
0x7fff8e09a000 - 0x7fff8e3b5fcf com.apple.vImage (8.0 - 8.0) <1183FE6A-FDB6-3B3B-928D-50C7909F2308> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff8e3b6000 - 0x7fff8e3b8fff com.apple.loginsupport (1.0 - 1) <35A2A071-606C-39A5-8C11-E4CAF98D934C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff8e3b9000 - 0x7fff8e3bbffb libCGXType.A.dylib (772) <7CB71BC6-D8EC-37BC-8243-41BAB086FAAA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x7fff8e3eb000 - 0x7fff8e3eeff7 com.apple.Mangrove (1.0 - 1) <2AF1CAE9-8BF9-33C4-9C1B-123DBAF1522B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff8e3ef000 - 0x7fff8e71dff7 com.apple.Foundation (6.9 - 1151.16) <18EDD673-A010-3E99-956E-DA594CE1FA80> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff8e71e000 - 0x7fff8e733ff7 com.apple.AppContainer (4.0 - 238) <9481F305-359A-33E6-93F1-89A25FA14E00> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
0x7fff8e750000 - 0x7fff8e79dff3 com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff8e79e000 - 0x7fff8e7c1fff com.apple.Sharing (328.3 - 328.3) <FDEE49AD-8804-3760-9C14-8D1D10BBEA37> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff8e826000 - 0x7fff8eaa0fff com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff8eaa1000 - 0x7fff8eaa7ff7 com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
0x7fff8eb51000 - 0x7fff8eb51ff7 libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
0x7fff8ecb1000 - 0x7fff8ecdefff com.apple.Accounts (113 - 113) <3145FCC2-D297-3DD1-B74B-9E7DBB0EE33C> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
0x7fff8ed09000 - 0x7fff8ed3bff3 com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x7fff8ed92000 - 0x7fff8edacff7 com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
0x7fff8edae000 - 0x7fff8edfdff7 com.apple.opencl (2.4.2 - 2.4.2) <6AE26E08-6EFC-3E1B-B202-EFA9C3E5B9D4> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff8edfe000 - 0x7fff8ee6cffb com.apple.Heimdal (4.0 - 2.0) <B852ACA1-4C64-3E2A-A9D3-6D4C80AD9429> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff8ee6d000 - 0x7fff8f070ff3 com.apple.CFNetwork (720.0.9 - 720.0.9) <78EE1B88-394F-3BB8-93A6-E068990559EC> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff8f071000 - 0x7fff8f1a1fff com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff8f1c4000 - 0x7fff8f4abffb com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff8f4ac000 - 0x7fff8f4aeff7 libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
0x7fff8f4db000 - 0x7fff8f4ecfff libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
0x7fff8f59d000 - 0x7fff8f5b9fff com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff8f5ba000 - 0x7fff8f5bdfff com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff8f605000 - 0x7fff8f606fff liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
0x7fff8f607000 - 0x7fff8f6c6fff com.apple.backup.framework (1.6 - 1.6) <373C7CF8-2A85-3B59-BFBC-FFA3FAE2293D> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff8f708000 - 0x7fff8f708fff libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
0x7fff8f709000 - 0x7fff8f752ff3 com.apple.HIServices (1.22 - 519) <59D78E07-C3F1-3272-88F1-876B836D5517> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff8f75c000 - 0x7fff8f75ffff com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff8f856000 - 0x7fff8f881fff com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff8f882000 - 0x7fff8f8faff7 com.apple.SystemConfiguration (1.14 - 1.14) <C269BCFD-ACAB-3331-BC7C-0430F0E84817> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff8f9d6000 - 0x7fff8fafdfff com.apple.coreui (2.1 - 305) <BB430677-D1F7-38DD-8F05-70E54352B8B5> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff8fafe000 - 0x7fff8fb44ff7 libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
0x7fff9006f000 - 0x7fff90070fff libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
0x7fff90071000 - 0x7fff90071fff com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff9012e000 - 0x7fff9016ffff libGLU.dylib (11.0.7) <8037342E-1ECD-385F-B4C3-545CE97B76AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff901be000 - 0x7fff901bfff7 libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
0x7fff901c0000 - 0x7fff901e0fff com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff9026a000 - 0x7fff9026ffff com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff90270000 - 0x7fff90278ff7 com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff90279000 - 0x7fff9027ffff libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
0x7fff90280000 - 0x7fff90286ff7 libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
0x7fff908eb000 - 0x7fff9096cff3 com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff9096d000 - 0x7fff90976fff libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
0x7fff90981000 - 0x7fff90a71fef libJP2.dylib (1231) <FEAF6F38-736E-35A8-A983-F4531C8A821C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff90a72000 - 0x7fff90a73ffb libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
0x7fff90a74000 - 0x7fff90a74ff7 liblaunch.dylib (559.1.22) <8A988924-8BE7-35FE-BF7D-322E90EFE49E> /usr/lib/system/liblaunch.dylib
0x7fff90a84000 - 0x7fff90a8bfff com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics
0x7fff90a8c000 - 0x7fff90aebff3 com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff90b00000 - 0x7fff90b02fff com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
0x7fff90b5e000 - 0x7fff90b8eff3 com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff90b8f000 - 0x7fff90b99ff7 com.apple.CrashReporterSupport (10.10 - 629) <EC97EA5E-3190-3717-A4A9-2F35A447E7A6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff90be0000 - 0x7fff90be5ffb libheimdal-asn1.dylib (398.1.2) <F9463B34-AAF5-3488-AD0C-85937C81FC5E> /usr/lib/libheimdal-asn1.dylib
0x7fff90e9b000 - 0x7fff90f07fff com.apple.framework.CoreWLAN (5.0 - 500.35.2) <ACBAAB0A-BCC7-37CF-AAFB-2DA1733F2682> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff90f08000 - 0x7fff90f22ff3 com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
0x7fff90fa6000 - 0x7fff910c7fff com.apple.LaunchServices (644.10 - 644.10) <0B1C68BC-0AEB-38E2-ABC8-E92728FEC475> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff910f0000 - 0x7fff91236fef libsqlite3.dylib (168) <8B78BED1-7B9B-3943-80DC-0871015AEAC4> /usr/lib/libsqlite3.dylib
0x7fff91237000 - 0x7fff91271ffb com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff91272000 - 0x7fff91288ff7 libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
0x7fff9128c000 - 0x7fff912c4ffb libsystem_network.dylib (411) <C0B2313D-47BE-38A9-BEE6-2634A4F5E14B> /usr/lib/system/libsystem_network.dylib
0x7fff912c5000 - 0x7fff912cdffb libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
0x7fff912ce000 - 0x7fff912effff com.apple.framework.Apple80211 (10.0 - 1000.57.3) <F64EB1A1-57F3-3ABA-97D0-DB7C926FD07F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff9131b000 - 0x7fff91326ff7 com.apple.speech.synthesis.framework (5.2.6 - 5.2.6) <9434AA45-B6BD-37F7-A866-172196A7F91B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff91327000 - 0x7fff91355fff com.apple.CoreServicesInternal (221.1 - 221.1) <51BAE6D2-84F3-392A-BFEC-A3B47B80A3D2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff91356000 - 0x7fff91356fff com.apple.Carbon (154 - 157) <6E3AEB9D-7643-36BE-A7E5-D08886649257> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff91357000 - 0x7fff913beff7 com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff913d6000 - 0x7fff913f0ff7 liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
0x7fff913f5000 - 0x7fff91493fff com.apple.Metadata (10.7.0 - 916) <DA8A1D18-19FE-37B3-BE12-85C5B0A00736> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff91494000 - 0x7fff914bcfff libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
0x7fff915fa000 - 0x7fff9168bfff com.apple.cloudkit.CloudKit (259.2.3 - 259.2.3) <6F955140-D522-32B3-B34B-BD94C5D94E7A> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
0x7fff9168c000 - 0x7fff916a7ff7 libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
0x7fff916a8000 - 0x7fff916adff7 libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
0x7fff916bd000 - 0x7fff916e9fff libsandbox.1.dylib (358.1.1) <C0B45487-F3CF-32CA-A875-CDCC48D2EA3E> /usr/lib/libsandbox.1.dylib
0x7fff91f73000 - 0x7fff9245ffff com.apple.MediaToolbox (1.0 - 1562.19) <E9F75769-1173-3EF6-8373-7673FA5B54F3> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff9247a000 - 0x7fff92487fff com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff92488000 - 0x7fff9248cfff libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
0x7fff9248d000 - 0x7fff92495fff libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
0x7fff92496000 - 0x7fff924c1ff3 libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
0x7fff924c2000 - 0x7fff924cbff3 com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff92f6a000 - 0x7fff92ffefff com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff92fff000 - 0x7fff93003fff libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
0x7fff93004000 - 0x7fff93011fff com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff93031000 - 0x7fff930b3fff com.apple.PerformanceAnalysis (1.0 - 1) <478055FE-1A94-31C7-A1A2-D67F19CA6A74> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff933bd000 - 0x7fff933d6ff7 com.apple.CFOpenDirectory (10.10 - 187) <0ECA5D80-A045-3A2C-A60C-E1605F3AB6BD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff933d7000 - 0x7fff936d9fff com.apple.HIToolbox (2.1.1 - 756) <07287312-97EC-3894-96F6-5CB6BA5E0081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff936dc000 - 0x7fff9377bdf7 com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff93780000 - 0x7fff93816ffb com.apple.CoreMedia (1.0 - 1562.19) <A754225C-2ED9-3220-A079-D50E695A1523> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff93817000 - 0x7fff93833ff7 libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
0x7fff93834000 - 0x7fff938d6fff com.apple.Bluetooth (4.3.0 - 4.3.0f10) <70922125-2A01-37AE-9CB8-D8A9578092E4> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff93928000 - 0x7fff9398fff7 com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff93abf000 - 0x7fff93aeafff libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
0x7fff93b94000 - 0x7fff93b9eff7 com.apple.NetAuth (5.0 - 5.0) <B9EC5425-D38D-308C-865F-207E0A98BAC7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff93b9f000 - 0x7fff93ba4ff7 com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff93ba5000 - 0x7fff93cb4ffb com.apple.desktopservices (1.9 - 1.9) <6EDAC73F-C42C-3FF7-B67D-FCCA1CFC5405> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff93cb5000 - 0x7fff93cc1ff7 com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff93cc2000 - 0x7fff93e2dff7 com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <E5A68E3A-79E7-36A3-9C6B-E1DF75ADDA95> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff93e2e000 - 0x7fff93e2fff7 com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff93e30000 - 0x7fff941c6fff com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff941c7000 - 0x7fff941c8fff libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff94200000 - 0x7fff94204ff7 com.apple.TCC (1.0 - 1) <AFC32F8F-BCD5-313C-B66E-5AB8591EC066> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff944b2000 - 0x7fff9472cff3 com.apple.RawCamera.bundle (6.00 - 761) <056E2E1D-6682-354E-9666-7E4935653D47> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x7fff947f1000 - 0x7fff94923ff7 com.apple.MediaControlSender (2.0 - 215.10) <8ECF208C-587A-325F-9866-09890D58F1B1> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender
0x7fff94924000 - 0x7fff9494cffb libRIP.A.dylib (772) <9262437A-710A-397D-8E34-1CBFEA1FC5E1> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x7fff94959000 - 0x7fff94959fff com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff94961000 - 0x7fff94970fff com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff94973000 - 0x7fff949cefef libTIFF.dylib (1231) <115791FB-8C49-3410-AC23-56F4B1CFF124> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff949cf000 - 0x7fff949dafff libGL.dylib (11.0.7) <C53344AD-8CE6-3111-AB94-BD4CA89ED84E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff949db000 - 0x7fff949ebff7 libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
0x7fff94a19000 - 0x7fff94b2bff7 libvDSP.dylib (512) <DD5517F5-F7F7-3AA1-B6FA-CD98DBC3C651> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff94b2c000 - 0x7fff94ba0fff com.apple.ApplicationServices.ATS (360 - 375) <62828B40-231D-3F81-8067-1903143DCB6B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff94baa000 - 0x7fff94bb1fff libCGCMS.A.dylib (772) <E64DC779-A6CF-3B1F-8E57-C09C0B10670F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
0x7fff94bb2000 - 0x7fff94bbdff7 com.apple.AppSandbox (4.0 - 238) <BC5EE1CA-764A-303D-9989-4041C1291026> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
0x7fff94bbe000 - 0x7fff94be2fef libJPEG.dylib (1231) <3F87A0CA-14FA-3034-A332-DD57A092B08F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff94c76000 - 0x7fff94dd4ff3 com.apple.avfoundation (2.0 - 889.10) <3CB185EA-C806-326E-B8DA-FDDCFA123509> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff94dd5000 - 0x7fff94ec9ff7 libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff95538000 - 0x7fff95589ff7 com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <CC57353D-8D25-3579-8A66-30A09F7BEED0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff9558a000 - 0x7fff95616fff libsystem_c.dylib (1044.1.2) <C185E862-7424-3210-B528-6B822577A4B8> /usr/lib/system/libsystem_c.dylib
0x7fff956af000 - 0x7fff956c2ff7 com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff956c3000 - 0x7fff957fdff7 com.apple.ImageIO.framework (3.3.0 - 1038) <AB3C40DB-FCBE-3315-B7B2-4E16522E20CB> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff967fe000 - 0x7fff96800ff7 libsystem_sandbox.dylib (358.1.1) <DB9962EF-8898-31CC-9B87-E01F8CE74C9D> /usr/lib/system/libsystem_sandbox.dylib
0x7fff96801000 - 0x7fff96803ff7 libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
0x7fff96804000 - 0x7fff9682eff7 libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
0x7fff96af9000 - 0x7fff96b3fffb libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff96b40000 - 0x7fff96b4bff7 libkxld.dylib (2782.1.97) <CB1A1B57-54BE-3573-AE0C-B90ED6BAEEE2> /usr/lib/system/libkxld.dylib
0x7fff96b4c000 - 0x7fff96e7ffff libmecabra.dylib (666) <2CE5540A-D412-3D53-9E11-86C24D61713B> /usr/lib/libmecabra.dylib
0x7fff96e80000 - 0x7fff96e88fff libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
0x7fff96f96000 - 0x7fff97088ff7 libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
0x7fff97089000 - 0x7fff97217fff libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff972f8000 - 0x7fff972f9fff com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff972fa000 - 0x7fff9730bff7 libsystem_coretls.dylib (35.1.2) <EBBF7EF6-80D8-3F8F-825C-B412BD6D22C0> /usr/lib/system/libsystem_coretls.dylib
0x7fff97318000 - 0x7fff97319fff libSystem.B.dylib (1213) <DA954461-EC6A-3DF0-8551-6FC810627627> /usr/lib/libSystem.B.dylib
0x7fff97434000 - 0x7fff97c6dffb com.apple.CoreGraphics (1.600.0 - 772) <D981E0F3-2FB7-38B7-A9FD-E991ADB06182> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff97c9d000 - 0x7fff97ca4fff com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff97ca5000 - 0x7fff97f0dffb com.apple.security (7.0 - 57031.1.35) <66CFAFF2-980E-3B99-B7E0-7D7751F6283C> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff97f0e000 - 0x7fff9833efff com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff98345000 - 0x7fff9835bff7 com.apple.CoreMediaAuthoring (2.2 - 951) <98CB5AB8-6BCA-3C45-98EC-67F39EEE56C5> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fff9835c000 - 0x7fff9850cff7 com.apple.QuartzCore (1.10 - 361.11) <7382E4A9-10B0-3877-B9D7-FA84DC71BA55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff9850d000 - 0x7fff98545fff com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff98546000 - 0x7fff98573fff com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff98574000 - 0x7fff98585ff7 libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
0x7fff98736000 - 0x7fff9874aff7 com.apple.MultitouchSupport.framework (260.30 - 260.30) <28728A7D-E048-3B14-9932-839A87D381FE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff9874b000 - 0x7fff98764fff com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff98765000 - 0x7fff98b72ff7 libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff98b73000 - 0x7fff98edefff com.apple.VideoToolbox (1.0 - 1562.19) <28668FCA-D122-30CC-92EE-5224A0767CBC> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff98edf000 - 0x7fff98ee7fff libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
0x7fff98efd000 - 0x7fff98f08fff libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
0x7fff98f09000 - 0x7fff98f55fff com.apple.corelocation (1486.17 - 1615.21) <DB68CEB9-0D51-3CB9-86A4-B0400CE6C515> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
0x7fff98f61000 - 0x7fff98f63fff libsystem_configuration.dylib (699.1.5) <9FBA1CE4-97D0-347E-A443-93ED94512E92> /usr/lib/system/libsystem_configuration.dylib
0x7fff98fcf000 - 0x7fff98fd2fff com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff990a9000 - 0x7fff990bbff7 com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol
0x7fff990ff000 - 0x7fff9912fffb com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff99445000 - 0x7fff99475fff libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
0x7fff99476000 - 0x7fff9947afff libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff9947b000 - 0x7fff994adfff libTrueTypeScaler.dylib (134) <6AA9A44F-EB8B-3B31-B1A3-915D03EEBA44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x7fff994ae000 - 0x7fff9955dfe7 libvMisc.dylib (512) <AFBA45DE-7F55-3E4E-B8DF-5E8E21C407AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff9955e000 - 0x7fff99576ff7 libexpat.1.dylib (12) <C5FE8836-E277-3162-9D15-6735321CB2C6> /usr/lib/libexpat.1.dylib
0x7fff99577000 - 0x7fff99584ff7 libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
0x7fff99679000 - 0x7fff996ccffb libAVFAudio.dylib (118.3) <371F1478-9AA3-312A-A93A-88E349000279> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib
0x7fff996cd000 - 0x7fff996eafff libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B> /usr/lib/system/libsystem_kernel.dylib
0x7fff99883000 - 0x7fff998d2ff7 libstdc++.6.dylib (104.1) <803F6AC8-87DC-3E24-9E80-729B551F6FFF> /usr/lib/libstdc++.6.dylib
0x7fff998d3000 - 0x7fff998edff7 com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff99a7b000 - 0x7fff99ab6fff com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff99ab7000 - 0x7fff99c9c267 libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
0x7fff99c9d000 - 0x7fff99c9dfff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <01E92F9F-EF29-3745-8631-AEA692F7F29C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff99d70000 - 0x7fff9a01aff7 com.apple.GeoServices (1.0 - 982.4.10) <B77D4082-4FBB-3F6E-AB9F-3BBBA34C0DC3> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
0x7fff9a52f000 - 0x7fff9a59efff com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff9a5d3000 - 0x7fff9a5d7fff libsystem_stats.dylib (163.1.4) <1DB04436-5974-3F16-86CC-5FF5F390339C> /usr/lib/system/libsystem_stats.dylib
0x7fff9a5d8000 - 0x7fff9a5ddff7 libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
0x7fff9a5de000 - 0x7fff9a667fff com.apple.CoreSymbolication (3.1 - 56072) <8CE81C95-49E8-389F-B989-67CC452C08D0> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff9a668000 - 0x7fff9a7acff7 com.apple.QTKit (7.7.3 - 2890) <6F6CD79F-CFBB-3FE4-82C6-47991346FB17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff9a7ad000 - 0x7fff9a7affff com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging
0x7fff9aa6a000 - 0x7fff9aabefff libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
0x7fff9ab34000 - 0x7fff9ab80ff7 libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
0x7fff9ab81000 - 0x7fff9ab81fff com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff9ab82000 - 0x7fff9abc2ff7 libGLImage.dylib (11.0.7) <7CBCEB4B-D22F-3116-8B28-D1C22D28C69D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff9abc3000 - 0x7fff9abc9fff com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff9ae35000 - 0x7fff9ae39fff com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff9ae3a000 - 0x7fff9ae94ff7 com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff9af27000 - 0x7fff9af27ff7 libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
0x7fff9af28000 - 0x7fff9b01afff libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
0x7fff9b023000 - 0x7fff9b02bffb com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff9b046000 - 0x7fff9b061ff7 com.apple.aps.framework (4.0 - 4.0) <9955CAFD-D56B-36E9-BB41-6F7F73317EB5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
0x7fff9b0c8000 - 0x7fff9b13efe7 libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
0x7fff9b13f000 - 0x7fff9b148fff libGFXShared.dylib (11.0.7) <EC449E3A-D9D2-3494-8B6C-DEB7B11EEDAB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff9b149000 - 0x7fff9b32eff3 libicucore.A.dylib (531.30) <EF0E7544-E317-3550-A962-6AE65E78AF17> /usr/lib/libicucore.A.dylib
0x7fff9b32f000 - 0x7fff9b32ffff com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff9b330000 - 0x7fff9b3c5ff7 com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff9b3c7000 - 0x7fff9b402fff com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff9b403000 - 0x7fff9b428fff libPng.dylib (1231) <759DF465-B08C-3E97-9A07-3CD447F84F78> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff9b429000 - 0x7fff9b47aff7 com.apple.AppleVAFramework (5.0.31 - 5.0.31) <762E9358-A69A-3D63-8282-3B77FBE0147E> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff9b47b000 - 0x7fff9bfbcfff com.apple.AppKit (6.9 - 1343.14) <7E32F178-C705-3E83-81C5-FB31D5507B3A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff9bfbd000 - 0x7fff9bfd7ff7 libextension.dylib (55) <17514AB2-C503-3D49-A725-EBC1140567A6> /usr/lib/libextension.dylib
0x7fff9bfd8000 - 0x7fff9bfeaff7 com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff9c039000 - 0x7fff9c047ff7 com.apple.opengl (11.0.7 - 11.0.7) <B5C4DF85-37BD-3984-98D1-90A5043DA984> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff9c0c9000 - 0x7fff9c13dff3 com.apple.securityfoundation (6.0 - 55126) <E7FB7A4E-CB0B-37BA-ADD5-373B2A20A783> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff9c13e000 - 0x7fff9c140fff libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff9c141000 - 0x7fff9c143fff libRadiance.dylib (1231) <BDD94A52-DE53-300C-9180-5D434272989F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff9c144000 - 0x7fff9c17dfff com.apple.AirPlaySupport (2.0 - 215.10) <E4159036-4C38-3F28-8AF3-4F074DAF01AC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySupport
0x7fff9c1e4000 - 0x7fff9c255ff7 com.apple.framework.IOKit (2.0.2 - 1050.1.21) <E4139120-1631-35D0-AA76-B1F4043844BE> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff9c256000 - 0x7fff9c258ff7 com.apple.securityhi (9.0 - 55006) <B1E09986-7AF0-3BD1-BAA1-B5514DFB7CD1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff9c259000 - 0x7fff9c260ff7 libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
0x7fff9c261000 - 0x7fff9c289fff libxpc.dylib (559.1.22) <9437C02E-A07B-38C8-91CB-299FAA63083D> /usr/lib/system/libxpc.dylib
0x7fff9cbd0000 - 0x7fff9cbd3ff7 libdyld.dylib (353.2.1) <19FAF435-C165-3374-9DEF-D7BBA7D61DB6> /usr/lib/system/libdyld.dylib
0x7fff9cbd4000 - 0x7fff9cea3ff3 com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff9cea4000 - 0x7fff9cecdffb libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
0x7fff9cece000 - 0x7fff9ced7ff7 libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
0x7fff9cf69000 - 0x7fff9cf80ff7 libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff9cf99000 - 0x7fff9cfe6ff3 com.apple.CoreMediaIO (601.0 - 4749) <0336FB6D-5A3D-3672-A002-B856BF569CD0> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 61
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: 64236
thread_create: 1
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=278.0M resident=202.6M(73%) swapped_out_or_unallocated=75.4M(27%)
Writable regions: Total=604.9M written=411.0M(68%) resident=421.6M(70%) swapped_out=13.2M(2%) unallocated=183.3M(30%)
REGION TYPE VIRTUAL
=========== =======
ATS (font support) 32.6M
ATS (font support) (reserved) 8K reserved VM address space (unallocated)
Activity Tracing 2048K
CG shared images 144K
CoreUI image data 28K
Dispatch continuations 16.0M
Kernel Alloc Once 8K
MALLOC 156.5M
MALLOC (admin) 32K
Memory Tag 252 20K
Memory Tag 255 772.0M
STACK GUARD 56.1M
Stack 36.4M
VM_ALLOCATE 73.1M
__DATA 21.5M
__IMAGE 528K
__LINKEDIT 83.1M
__TEXT 194.9M
__UNICODE 544K
mapped file 252.8M
shared memory 4K
=========== =======
TOTAL 1.7G
TOTAL, minus reserved VM space 1.7G
</code></pre></div> | 1 |
<p dir="auto"><strong>TypeScript Version:</strong> 1.8.10 and higher</p>
<p dir="auto"><strong>Code</strong></p>
<p dir="auto">Actual code that causes the problem can be found on this issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="149336441" data-permission-text="Title is private" data-url="https://github.com/ReactiveX/rxjs/issues/1637" data-hovercard-type="pull_request" data-hovercard-url="/ReactiveX/rxjs/pull/1637/hovercard" href="https://github.com/ReactiveX/rxjs/pull/1637">ReactiveX/rxjs#1637</a></p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# clone the repo
git clone [email protected]:ReactiveX/rxjs.git
# get PR branch
git fetch master pull/1637/head:pr-1637
git checkout pr-1637
# install dependencies (runs build, too, which will fail, but that's okay)
npm i
# try building the CJS version (success)
npm run build_cjs
# try building the ES6 version (failure)
npm run build_es6"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> clone the repo</span>
git clone [email protected]:ReactiveX/rxjs.git
<span class="pl-c"><span class="pl-c">#</span> get PR branch</span>
git fetch master pull/1637/head:pr-1637
git checkout pr-1637
<span class="pl-c"><span class="pl-c">#</span> install dependencies (runs build, too, which will fail, but that's okay)</span>
npm i
<span class="pl-c"><span class="pl-c">#</span> try building the CJS version (success)</span>
npm run build_cjs
<span class="pl-c"><span class="pl-c">#</span> try building the ES6 version (failure)</span>
npm run build_es6</pre></div>
<p dir="auto">The exact scripts being run are:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="tsc typings/main/ambient/es6-shim/index.d.ts ./dist/cjs/src/Rx.ts ./dist/cjs/src/Rx.KitchenSink.ts ./dist/cjs/src/Rx.DOM.ts ./dist/cjs/src/add/observable/of.ts -m commonjs --sourceMap --outDir ./dist/cjs --target ES5 -d --diagnostics --pretty --noImplicitAny --suppressImplicitAnyIndexErrors
tsc ./dist/es6/src/Rx.ts ./dist/es6/src/Rx.KitchenSink.ts ./dist/es6/src/Rx.DOM.ts ./dist/es6/src/add/observable/of.ts -m es2015 --sourceMap --outDir ./dist/es6 --target ES6 -d --diagnostics --pretty --noImplicitAny --suppressImplicitAnyIndexErrors
"><pre class="notranslate"><code class="notranslate">tsc typings/main/ambient/es6-shim/index.d.ts ./dist/cjs/src/Rx.ts ./dist/cjs/src/Rx.KitchenSink.ts ./dist/cjs/src/Rx.DOM.ts ./dist/cjs/src/add/observable/of.ts -m commonjs --sourceMap --outDir ./dist/cjs --target ES5 -d --diagnostics --pretty --noImplicitAny --suppressImplicitAnyIndexErrors
tsc ./dist/es6/src/Rx.ts ./dist/es6/src/Rx.KitchenSink.ts ./dist/es6/src/Rx.DOM.ts ./dist/es6/src/add/observable/of.ts -m es2015 --sourceMap --outDir ./dist/es6 --target ES6 -d --diagnostics --pretty --noImplicitAny --suppressImplicitAnyIndexErrors
</code></pre></div>
<p dir="auto"><strong>Expected behavior:</strong></p>
<p dir="auto">Both build successfully.</p>
<p dir="auto"><strong>Actual behavior:</strong></p>
<p dir="auto">Only the CJS build succeeds, the ES6 build fails:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="11 import * as observableSymbol from 'symbol-observable';
~~~~~~~~~~~~~~~~~~~
dist/es6/src/Observable.ts(11,35): error TS2307: Cannot find module 'symbol-observable'.
16 import * as observableSymbol from 'symbol-observable';
~~~~~~~~~~~~~~~~~~~
dist/es6/src/observable/FromObservable.ts(16,35): error TS2307: Cannot find module 'symbol-observable'.
11 import * as observableSymbol from 'symbol-observable';
~~~~~~~~~~~~~~~~~~~
dist/es6/src/util/subscribeToResult.ts(11,35): error TS2307: Cannot find module 'symbol-observable'.
142 import * as observable from 'symbol-observable';
~~~~~~~~~~~~~~~~~~~
dist/es6/src/Rx.ts(142,29): error TS2307: Cannot find module 'symbol-observable'."><pre class="notranslate"><code class="notranslate">11 import * as observableSymbol from 'symbol-observable';
~~~~~~~~~~~~~~~~~~~
dist/es6/src/Observable.ts(11,35): error TS2307: Cannot find module 'symbol-observable'.
16 import * as observableSymbol from 'symbol-observable';
~~~~~~~~~~~~~~~~~~~
dist/es6/src/observable/FromObservable.ts(16,35): error TS2307: Cannot find module 'symbol-observable'.
11 import * as observableSymbol from 'symbol-observable';
~~~~~~~~~~~~~~~~~~~
dist/es6/src/util/subscribeToResult.ts(11,35): error TS2307: Cannot find module 'symbol-observable'.
142 import * as observable from 'symbol-observable';
~~~~~~~~~~~~~~~~~~~
dist/es6/src/Rx.ts(142,29): error TS2307: Cannot find module 'symbol-observable'.
</code></pre></div> | <p dir="auto"><em>From <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/vinod-a-ext/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/vinod-a-ext">@vinod-a-ext</a> on May 10, 2016 10:49</em></p>
<ul dir="auto">
<li>VSCode Version:Latest 1.1.0</li>
<li>OS Version:windows</li>
</ul>
<p dir="auto">Steps to Reproduce:</p>
<ol dir="auto">
<li>In your controller inject a service/factory for a http call</li>
<li>press F12 (go to definition ) to visit the factory which results negative?</li>
</ol>
<p dir="auto"><em>Copied from original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="153977327" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/6238" data-hovercard-type="issue" data-hovercard-url="/microsoft/vscode/issues/6238/hovercard" href="https://github.com/microsoft/vscode/issues/6238">microsoft/vscode#6238</a></em></p> | 0 |
<ol dir="auto">
<li>Open a file</li>
<li>Use ctrl+f to search</li>
<li>Type in your search term</li>
</ol>
<p dir="auto">What happens next:<br>
You see <code class="notranslate">x results found for 'search term'</code> and need to manually press the find button go to the first result. Or you need to know you can press enter for that.</p>
<p dir="auto">What I’d expect instead:<br>
While typing, the view automatically jumps to the first result.</p> | <p dir="auto"><em>From <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/andreicristianpetcu/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/andreicristianpetcu">@andreicristianpetcu</a> on December 14, 2014 23:59</em></p>
<p dir="auto">Hi,</p>
<p dir="auto">Please add search as you type just like Eclipse STS <a href="http://youtu.be/1lH7Zla5ubQ" rel="nofollow">http://youtu.be/1lH7Zla5ubQ</a></p>
<p dir="auto">Thank you for building Atom! :D</p>
<p dir="auto"><em>Copied from original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="51937418" data-permission-text="Title is private" data-url="https://github.com/atom/atom/issues/4613" data-hovercard-type="issue" data-hovercard-url="/atom/atom/issues/4613/hovercard" href="https://github.com/atom/atom/issues/4613">atom/atom#4613</a></em></p> | 1 |
<p dir="auto">The setting is shown below. This is the great place where I put stuff like</p>
<blockquote>
<p dir="auto">.DS_Store<br>
*~<br>
*.swp</p>
</blockquote>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/382183/6236065/4f193c7c-b6b5-11e4-8b77-779db4045ed9.png"><img src="https://cloud.githubusercontent.com/assets/382183/6236065/4f193c7c-b6b5-11e4-8b77-779db4045ed9.png" alt="screen shot 2015-02-17 at 2 55 54 pm" style="max-width: 100%;"></a></p> | <p dir="auto">If I switch off the Exclude VCS Ignored Paths option in my preferences, paths and files in my .gitignore file are still excluded from the tree view. I don't want that.</p> | 1 |
<p dir="auto"><code class="notranslate">np.timedelta64(2,'h')</code> returns <code class="notranslate">numpy.timedelta64(2,'h')</code>, but <code class="notranslate">np.timedelta64(np.int64(2),'h')</code> returns:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-75-fd40c0d8eac0> in <module>()
----> 1 np.timedelta64(np.int64(2),'h')
ValueError: Could not convert object to NumPy timedelta
"><pre class="notranslate"><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">ValueError</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"><</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">75</span><span class="pl-c1">-</span><span class="pl-s1">fd40c0d8eac0</span><span class="pl-c1">></span> <span class="pl-s1">in</span> <span class="pl-c1"><</span><span class="pl-s1">module</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">1</span> <span class="pl-s1">np</span>.<span class="pl-en">timedelta64</span>(<span class="pl-s1">np</span>.<span class="pl-en">int64</span>(<span class="pl-c1">2</span>),<span class="pl-s">'h'</span>)
<span class="pl-v">ValueError</span>: <span class="pl-v">Could</span> <span class="pl-c1">not</span> <span class="pl-s1">convert</span> <span class="pl-s1">object</span> <span class="pl-s1">to</span> <span class="pl-v">NumPy</span> <span class="pl-s1">timedelta</span></pre></div> | <p dir="auto">timedelta64 only accepts timedeltas of type int; it does not support timedeltas of other int types, such as int64.</p> | 1 |
<p dir="auto">My tests fail due to a segfault.</p>
<p dir="auto">I am not sure if I am doing 'something unsafe', but I am pretty sure the tests were almost identical on 0.7beta where things went fine.</p>
<p dir="auto"><a href="https://discourse.julialang.org/t/segmentation-fault-on-0-7/13065/2" rel="nofollow">https://discourse.julialang.org/t/segmentation-fault-on-0-7/13065/2</a></p>
<p dir="auto">any ideas?</p>
<p dir="auto">the error occurs on 0.7, 1.0 and 1.1 too<br>
<a href="https://travis-ci.org/kafisatz/DecisionTrees.jl/builds/415879916" rel="nofollow">https://travis-ci.org/kafisatz/DecisionTrees.jl/builds/415879916</a></p> | <p dir="auto">While updating Homebrew's Julia to 1.7.0 (cf. <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1067611951" data-permission-text="Title is private" data-url="https://github.com/Homebrew/homebrew-core/issues/90194" data-hovercard-type="pull_request" data-hovercard-url="/Homebrew/homebrew-core/pull/90194/hovercard" href="https://github.com/Homebrew/homebrew-core/pull/90194">Homebrew/homebrew-core#90194</a>), I found that running <code class="notranslate">Base.runtests("core")</code> fails with</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" Error in testset core:
Test Failed at /usr/local/Cellar/julia/1.7.0/share/julia/test/core.jl:3519
Expression: (Vararg{Int, N} where N <: T) where T
Expected: ErrorException
No exception thrown
Error in testset core:
Test Failed at /usr/local/Cellar/julia/1.7.0/share/julia/test/core.jl:3520
Expression: Vararg{Int, N} where N <: Integer
Expected: ErrorException
No exception thrown
Error in testset core:
Test Failed at /usr/local/Cellar/julia/1.7.0/share/julia/test/core.jl:3521
Expression: Vararg{Int, N} where N >: Integer
Expected: ErrorException
No exception thrown
ERROR: LoadError: Test run finished with errors
in expression starting at /usr/local/Cellar/julia/1.7.0/share/julia/test/runtests.jl:93
ERROR: A test has failed. Please submit a bug report (https://github.com/JuliaLang/julia/issues)
including error messages above and the output of versioninfo():
Julia Version 1.7.0
Commit 3bf9d17731 (2021-11-30 12:12 UTC)
Platform Info:
OS: macOS (x86_64-apple-darwin21.1.0)
CPU: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-12.0.1 (ORCJIT, ivybridge)"><pre class="notranslate"><code class="notranslate"> Error in testset core:
Test Failed at /usr/local/Cellar/julia/1.7.0/share/julia/test/core.jl:3519
Expression: (Vararg{Int, N} where N <: T) where T
Expected: ErrorException
No exception thrown
Error in testset core:
Test Failed at /usr/local/Cellar/julia/1.7.0/share/julia/test/core.jl:3520
Expression: Vararg{Int, N} where N <: Integer
Expected: ErrorException
No exception thrown
Error in testset core:
Test Failed at /usr/local/Cellar/julia/1.7.0/share/julia/test/core.jl:3521
Expression: Vararg{Int, N} where N >: Integer
Expected: ErrorException
No exception thrown
ERROR: LoadError: Test run finished with errors
in expression starting at /usr/local/Cellar/julia/1.7.0/share/julia/test/runtests.jl:93
ERROR: A test has failed. Please submit a bug report (https://github.com/JuliaLang/julia/issues)
including error messages above and the output of versioninfo():
Julia Version 1.7.0
Commit 3bf9d17731 (2021-11-30 12:12 UTC)
Platform Info:
OS: macOS (x86_64-apple-darwin21.1.0)
CPU: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-12.0.1 (ORCJIT, ivybridge)
</code></pre></div>
<p dir="auto">This reproduces on macOS 11 and 12. CI logs available here: <a href="https://github.com/Homebrew/homebrew-core/actions/runs/1522862535">https://github.com/Homebrew/homebrew-core/actions/runs/1522862535</a></p>
<p dir="auto">To make sure that this isn't something peculiar to our build, I downloaded the official binary and encountered the exact same failure. Here's <code class="notranslate">versioninfo()</code> from the machine I ran that on:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Julia Version 1.7.0
Commit 3bf9d17731 (2021-11-30 12:12 UTC)
Platform Info:
OS: macOS (x86_64-apple-darwin19.5.0)
CPU: Intel(R) Core(TM) i3-1000NG4 CPU @ 1.10GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-12.0.1 (ORCJIT, icelake-client)"><pre class="notranslate"><code class="notranslate">Julia Version 1.7.0
Commit 3bf9d17731 (2021-11-30 12:12 UTC)
Platform Info:
OS: macOS (x86_64-apple-darwin19.5.0)
CPU: Intel(R) Core(TM) i3-1000NG4 CPU @ 1.10GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-12.0.1 (ORCJIT, icelake-client)
</code></pre></div>
<p dir="auto">Is it just a matter of these tests being outdated?</p>
<p dir="auto"></p><div class="Box Box--condensed my-2">
<div class="Box-header f6">
<p class="mb-0 text-bold">
<a href="https://github.com/JuliaLang/julia/blob/3bf9d1773144bc4943232dc2ffaac307a700853d/test/core.jl#L3519-L3521">julia/test/core.jl</a>
</p>
<p class="mb-0 color-fg-muted">
Lines 3519 to 3521
in
<a data-pjax="true" class="commit-tease-sha" href="/JuliaLang/julia/commit/3bf9d1773144bc4943232dc2ffaac307a700853d">3bf9d17</a>
</p>
</div>
<div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data">
<table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip="">
<tbody><tr class="border-0">
<td id="L3519" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="3519"></td>
<td id="LC3519" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c1">@test_throws</span> ErrorException Vararg{Int, N} <span class="pl-k">where</span> N<span class="pl-k"><:</span><span class="pl-c1">T</span> <span class="pl-k">where</span> T </td>
</tr>
<tr class="border-0">
<td id="L3520" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="3520"></td>
<td id="LC3520" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c1">@test_throws</span> ErrorException Vararg{Int, N} <span class="pl-k">where</span> N<span class="pl-k"><:</span><span class="pl-c1">Integer</span> </td>
</tr>
<tr class="border-0">
<td id="L3521" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="3521"></td>
<td id="LC3521" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c1">@test_throws</span> ErrorException Vararg{Int, N} <span class="pl-k">where</span> N<span class="pl-k">>:</span><span class="pl-c1">Integer</span> </td>
</tr>
</tbody></table>
</div>
</div>
<p></p>
<p dir="auto">Those <a href="https://github.com/JuliaLang/julia/blob/f53de735d8524304e0e4eb973d82432189135c83/test/core.jl#L3521-L3523">tests</a> are still there on master, so I am wondering why this doesn't trip in CI here.</p> | 0 |
<h3 dir="auto">Current Behavior:</h3>
<p dir="auto">postinstall script not executed</p>
<h3 dir="auto">Expected Behavior:</h3>
<p dir="auto">postinstall script should be executed.</p>
<h3 dir="auto">Steps To Reproduce:</h3>
<ol dir="auto">
<li>Set up a VM you can trash later (the package modifies your global configuration)</li>
<li>Create directory <code class="notranslate">/opt/iobroker</code>, enter it</li>
<li>run <code class="notranslate">npm i iobroker@latest</code> as root</li>
</ol>
<h3 dir="auto">Environment:</h3>
<ul dir="auto">
<li>OS: Debian Buster</li>
<li>Node: 15.5.1</li>
<li>npm: 7.3.0</li>
</ul> | <h3 dir="auto">Current Behavior:</h3>
<p dir="auto">I'm making a global cli tool that asks you for your language preference upon install but since NPM 7 it doesn't run the postinstall script anymore</p>
<h3 dir="auto">Expected Behavior:</h3>
<p dir="auto">In NPM 6 it works just fine</p>
<h3 dir="auto">Steps To Reproduce:</h3>
<p dir="auto">npm i -g dnd</p>
<h3 dir="auto">Environment:</h3>
<p dir="auto">macOS Big Sur, npm 7</p> | 1 |
<p dir="auto"><strong>TypeScript Version:</strong></p>
<p dir="auto">1.8.9</p>
<p dir="auto"><strong>React Version:</strong></p>
<p dir="auto">15.0.0</p>
<p dir="auto"><strong>Code</strong></p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import * as React from 'react';
import * as ReactDOM from 'react-dom';
let test = {a: 1, b: 2};
ReactDOM.render(
<div {...test} />,
document.getElementById('app')
);"><pre class="notranslate"><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-k">import</span> <span class="pl-c1">*</span> <span class="pl-k">as</span> <span class="pl-smi">ReactDOM</span> <span class="pl-k">from</span> <span class="pl-s">'react-dom'</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> <span class="pl-s1">test</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-c1">a</span>: <span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-c1">b</span>: <span class="pl-c1">2</span><span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-smi">ReactDOM</span><span class="pl-kos">.</span><span class="pl-en">render</span><span class="pl-kos">(</span>
<span class="pl-kos"><</span><span class="pl-smi">div</span><span class="pl-kos"></span> <span class="pl-kos">{</span>...<span class="pl-s1">test</span><span class="pl-kos">}</span> <span class="pl-c1">/</span><span class="pl-c1">></span><span class="pl-kos">,</span>
<span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-en">getElementById</span><span class="pl-kos">(</span><span class="pl-s">'app'</span><span class="pl-kos">)</span>
<span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><strong>Actual behavior:</strong><br>
Browser console error "Uncaught TypeError: React.__spread is not a function".</p> | <p dir="auto">I have a file that will be evaluated by Nashorn. Nashorn has a global function called <code class="notranslate">print</code>. Therefore I declare it like so:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="declare var print: (_: string) => void;"><pre class="notranslate"><code class="notranslate">declare var print: (_: string) => void;
</code></pre></div>
<p dir="auto">When I compile, I get:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=".../node_modules/typescript/lib/lib.d.ts(16887,18): error TS2300: Duplicate identifier 'print'."><pre class="notranslate"><code class="notranslate">.../node_modules/typescript/lib/lib.d.ts(16887,18): error TS2300: Duplicate identifier 'print'.
</code></pre></div>
<p dir="auto">If I call tsc with the <code class="notranslate">--noLib</code> option, I instead get:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error TS2318: Cannot find global type 'Array'.
error TS2318: Cannot find global type 'Boolean'.
error TS2318: Cannot find global type 'Function'.
error TS2318: Cannot find global type 'IArguments'.
error TS2318: Cannot find global type 'Number'.
error TS2318: Cannot find global type 'Object'.
error TS2318: Cannot find global type 'RegExp'.
error TS2318: Cannot find global type 'String'."><pre class="notranslate"><code class="notranslate">error TS2318: Cannot find global type 'Array'.
error TS2318: Cannot find global type 'Boolean'.
error TS2318: Cannot find global type 'Function'.
error TS2318: Cannot find global type 'IArguments'.
error TS2318: Cannot find global type 'Number'.
error TS2318: Cannot find global type 'Object'.
error TS2318: Cannot find global type 'RegExp'.
error TS2318: Cannot find global type 'String'.
</code></pre></div>
<p dir="auto">What are my options here? Importing Window from lib.d.ts is pointless since there is no window in Nashorn.</p> | 0 |
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import scrapy
class MyItem(scrapy.Item):
item1 = scrapy.Field()
item_url = scrapy.Field()
item_address = scrapy.Field()
item_list = scrapy.Field()
class MyLoader(scrapy.contrib.loader.ItemLoader):
default_output_processor = TakeFirst()
default_input_processor = MapCompose(unicode.strip)
item_list_in = Identity()
item_list_out = Identity()
class MySpider(scrapy.Spider):
name = 'myspider'
start_urls = ['some-url']
def parse(self, response):
uls = response.xpath('//div[@id="someID"]//ul')
for ul in uls:
url = ul.xpath('.//li[1]/a/@href').extract()[0]
loader = MyLoader(MyItem(), ul)
loader.add_xpath('item1', './/li[1]/a/text()')
loader.add_value('item_url', url)
request = scrapy.Request(url, callback=self.parse_more)
request.meta['item'] = loader.load_item()
yield request
def parse_more(self, response):
loader = MyLoader(response.meta['item'], response=response)
item_list = response.css('.nav-buttons.someclass').xpath('.//a/img/@alt').extract()
loader.add_xpath('item_address', '//address//div[@class="address-info"]/text()')
loader.add_value('item_list', item_list)
#import pdb; pdb.set_trace()
if loader.get_output_value('item_address') == "some address":
loader.add_value('address_code', 'FR')
yield loader.load_item()"><pre class="notranslate"><code class="notranslate">import scrapy
class MyItem(scrapy.Item):
item1 = scrapy.Field()
item_url = scrapy.Field()
item_address = scrapy.Field()
item_list = scrapy.Field()
class MyLoader(scrapy.contrib.loader.ItemLoader):
default_output_processor = TakeFirst()
default_input_processor = MapCompose(unicode.strip)
item_list_in = Identity()
item_list_out = Identity()
class MySpider(scrapy.Spider):
name = 'myspider'
start_urls = ['some-url']
def parse(self, response):
uls = response.xpath('//div[@id="someID"]//ul')
for ul in uls:
url = ul.xpath('.//li[1]/a/@href').extract()[0]
loader = MyLoader(MyItem(), ul)
loader.add_xpath('item1', './/li[1]/a/text()')
loader.add_value('item_url', url)
request = scrapy.Request(url, callback=self.parse_more)
request.meta['item'] = loader.load_item()
yield request
def parse_more(self, response):
loader = MyLoader(response.meta['item'], response=response)
item_list = response.css('.nav-buttons.someclass').xpath('.//a/img/@alt').extract()
loader.add_xpath('item_address', '//address//div[@class="address-info"]/text()')
loader.add_value('item_list', item_list)
#import pdb; pdb.set_trace()
if loader.get_output_value('item_address') == "some address":
loader.add_value('address_code', 'FR')
yield loader.load_item()
</code></pre></div>
<p dir="auto">In pdb, for example, if we inspect a loader instance</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="(pdb) loader.load_item()
{'item_address': 'someval', ....}
(pdb) type(loader.get_output_value('item_address'))
<type: Nonetype>"><pre class="notranslate"><code class="notranslate">(pdb) loader.load_item()
{'item_address': 'someval', ....}
(pdb) type(loader.get_output_value('item_address'))
<type: Nonetype>
</code></pre></div>
<p dir="auto">As a result, the if-block is never executing.</p> | <p dir="auto">Hi, following code snippet does not work as i expected:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [2]: from scrapy.contrib.loader import ItemLoader
In [3]:
In [3]: from scrapy.item import Item, Field
In [4]:
In [4]: class Product(Item):
...: name = Field()
...: comment = Field()
...:
In [5]: p = Product({'name': 'xx1', 'comment': 'hi!'})
In [6]: p
Out[6]: {'comment': 'hi!', 'name': 'xx1'}
In [7]: l = ItemLoader(item=p)
In [8]: l.get_output_value('name')
Out[8]: []
In [9]: l.context
Out[9]: {'item': {'comment': 'hi!', 'name': 'xx1'}, 'response': None, 'selector': None}"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">2</span>]: <span class="pl-s1">from</span> <span class="pl-s1">scrapy</span>.<span class="pl-s1">contrib</span>.<span class="pl-s1">loader</span> <span class="pl-s1">import</span> <span class="pl-v">ItemLoader</span>
<span class="pl-v">In</span> [<span class="pl-c1">3</span>]:
<span class="pl-v">In</span> [<span class="pl-c1">3</span>]: <span class="pl-k">from</span> <span class="pl-s1">scrapy</span>.<span class="pl-s1">item</span> <span class="pl-k">import</span> <span class="pl-v">Item</span>, <span class="pl-v">Field</span>
<span class="pl-v">In</span> [<span class="pl-c1">4</span>]:
<span class="pl-v">In</span> [<span class="pl-c1">4</span>]: <span class="pl-k">class</span> <span class="pl-v">Product</span>(<span class="pl-v">Item</span>):
...: <span class="pl-s1">name</span> <span class="pl-c1">=</span> <span class="pl-v">Field</span>()
...: <span class="pl-s1">comment</span> <span class="pl-c1">=</span> <span class="pl-v">Field</span>()
...:
<span class="pl-v">In</span> [<span class="pl-c1">5</span>]: <span class="pl-s1">p</span> <span class="pl-c1">=</span> <span class="pl-v">Product</span>({<span class="pl-s">'name'</span>: <span class="pl-s">'xx1'</span>, <span class="pl-s">'comment'</span>: <span class="pl-s">'hi!'</span>})
<span class="pl-v">In</span> [<span class="pl-c1">6</span>]: <span class="pl-s1">p</span>
<span class="pl-v">Out</span>[<span class="pl-c1">6</span>]: {<span class="pl-s">'comment'</span>: <span class="pl-s">'hi!'</span>, <span class="pl-s">'name'</span>: <span class="pl-s">'xx1'</span>}
<span class="pl-v">In</span> [<span class="pl-c1">7</span>]: <span class="pl-s1">l</span> <span class="pl-c1">=</span> <span class="pl-v">ItemLoader</span>(<span class="pl-s1">item</span><span class="pl-c1">=</span><span class="pl-s1">p</span>)
<span class="pl-v">In</span> [<span class="pl-c1">8</span>]: <span class="pl-s1">l</span>.<span class="pl-en">get_output_value</span>(<span class="pl-s">'name'</span>)
<span class="pl-v">Out</span>[<span class="pl-c1">8</span>]: []
<span class="pl-v">In</span> [<span class="pl-c1">9</span>]: <span class="pl-s1">l</span>.<span class="pl-s1">context</span>
<span class="pl-v">Out</span>[<span class="pl-c1">9</span>]: {<span class="pl-s">'item'</span>: {<span class="pl-s">'comment'</span>: <span class="pl-s">'hi!'</span>, <span class="pl-s">'name'</span>: <span class="pl-s">'xx1'</span>}, <span class="pl-s">'response'</span>: <span class="pl-c1">None</span>, <span class="pl-s">'selector'</span>: <span class="pl-c1">None</span>}</pre></div>
<p dir="auto">I would expect to see a result of 'xx1' from get_output_value() function intuitively. Am i right about my expectation here?</p>
<p dir="auto">Regarding the code at item loader (<a href="https://github.com/scrapy/scrapy/blob/master/scrapy/contrib/loader/__init__.py#L88">https://github.com/scrapy/scrapy/blob/master/scrapy/contrib/loader/__init__.py#L88</a>), is it correct to check the 'context' or 'item' of the loader if relevant field_name is not available in the loader?</p> | 1 |
<p dir="auto">I'm having a problem.<br>
I can't write the <strong>@-symbol</strong> anywhere in the atom interface. I'm on Windows7. To write a <strong>@</strong> I need to press <strong>AltGr+Q</strong> (I use a <em>QWERTZ</em>-keyboard, AltGr is the right Alt key). I can write the <strong>euro-symbol</strong> (€) which is <strong>AltGr+E</strong>.</p>
<p dir="auto">Also when I want to write the <strong>-symbol</strong> it collapses comments. (I don't know if this is related.) To write a *<em>*</em> I have to press <strong>AltGr+?</strong>.</p> | <blockquote>
<p dir="auto">Atom doesn't handle keyboards with Right Alt (i.e. AltGr). This is a very basic mistake. I have a Hungarian keyboard layout, I can only write specific keys like "|" (pipe) by pressing Right Alt (AltGr) and then W, which Atom doesn't recognize and treat like Alt-W or something?<br>
The point is there are some layouts like greek, hungarian, czech with special keys, which an EDITOR should handle the right way!!<br>
E.g. I can't write CTRL-", because it writes the number "2" instead. I think this key might be interpreted like CTRL-ALT sequence, but not sure either.<br>
Anyway, without it, it's just not an editor.<br>
Like Windows Media player; you can't pause a movie with it hitting space bar...</p>
</blockquote>
<p dir="auto">From: support/9f98abca9f4a11e3955c6445541b1a76</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: 2.7.1</li>
<li>Operating System version: mac 10.14</li>
<li>Java version: 12</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ol dir="auto">
<li>Start Dubbo REST service, when request by browser is correct</li>
<li>Start another Dubbo by dubbo protocol, then reference dubbo rest alwasy exception with no provider.</li>
</ol>
<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="org.apache.dubbo.rpc.RpcException: Failed to invoke the method say in the service com.yuxiao.dubbo.demo.service.DemoService. No provider available for the service com.yuxiao.dubbo.demo.service.DemoService:1.0.1 from registry 127.0.0.1:2181 on the consumer 192.168.91.189 using the dubbo version 2.7.1. Please check if the providers have been started and registered.
at org.apache.dubbo.rpc.cluster.support.AbstractClusterInvoker.checkInvokers(AbstractClusterInvoker.java:265) ~[dubbo-2.7.1.jar:2.7.1]
at org.apache.dubbo.rpc.cluster.support.FailoverClusterInvoker.doInvoke(FailoverClusterInvoker.java:57) ~[dubbo-2.7.1.jar:2.7.1]
at org.apache.dubbo.rpc.cluster.support.AbstractClusterInvoker.invoke(AbstractClusterInvoker.java:242) ~[dubbo-2.7.1.jar:2.7.1]
at org.apache.dubbo.rpc.cluster.support.wrapper.MockClusterInvoker.invoke(MockClusterInvoker.java:76) ~[dubbo-2.7.1.jar:2.7.1]
at org.apache.dubbo.rpc.proxy.InvokerInvocationHandler.invoke(InvokerInvocationHandler.java:57) ~[dubbo-2.7.1.jar:2.7.1]
at org.apache.dubbo.common.bytecode.proxy0.say(proxy0.java) ~[dubbo-2.7.1.jar:2.7.1]
at com.yuxiao.dubbo.demo.controller.DemoController.say(DemoController.java:17) ~[classes/:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
at java.base/java.lang.reflect.Method.invoke(Method.java:567) ~[na:na]
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:189) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:102) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:892) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1038) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:834) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1415) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) ~[na:na]
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) ~[na:na]
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at java.base/java.lang.Thread.run(Thread.java:835) ~[na:na]"><pre class="notranslate"><code class="notranslate">org.apache.dubbo.rpc.RpcException: Failed to invoke the method say in the service com.yuxiao.dubbo.demo.service.DemoService. No provider available for the service com.yuxiao.dubbo.demo.service.DemoService:1.0.1 from registry 127.0.0.1:2181 on the consumer 192.168.91.189 using the dubbo version 2.7.1. Please check if the providers have been started and registered.
at org.apache.dubbo.rpc.cluster.support.AbstractClusterInvoker.checkInvokers(AbstractClusterInvoker.java:265) ~[dubbo-2.7.1.jar:2.7.1]
at org.apache.dubbo.rpc.cluster.support.FailoverClusterInvoker.doInvoke(FailoverClusterInvoker.java:57) ~[dubbo-2.7.1.jar:2.7.1]
at org.apache.dubbo.rpc.cluster.support.AbstractClusterInvoker.invoke(AbstractClusterInvoker.java:242) ~[dubbo-2.7.1.jar:2.7.1]
at org.apache.dubbo.rpc.cluster.support.wrapper.MockClusterInvoker.invoke(MockClusterInvoker.java:76) ~[dubbo-2.7.1.jar:2.7.1]
at org.apache.dubbo.rpc.proxy.InvokerInvocationHandler.invoke(InvokerInvocationHandler.java:57) ~[dubbo-2.7.1.jar:2.7.1]
at org.apache.dubbo.common.bytecode.proxy0.say(proxy0.java) ~[dubbo-2.7.1.jar:2.7.1]
at com.yuxiao.dubbo.demo.controller.DemoController.say(DemoController.java:17) ~[classes/:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
at java.base/java.lang.reflect.Method.invoke(Method.java:567) ~[na:na]
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:189) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:102) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:892) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1038) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:834) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1415) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) ~[na:na]
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) ~[na:na]
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.17.jar:9.0.17]
at java.base/java.lang.Thread.run(Thread.java:835) ~[na:na]
</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.6.2</li>
<li>Operating System version: Win7</li>
<li>Java version: 1.8</li>
</ul>
<h3 dir="auto">Step to reproduce this issue</h3>
<p dir="auto">不支持同时存在一个异步引用和一个同步引用,dubbo注入两个对象的地址都是相同的,第一个如果是异步则两个都是异步。 第一如果是同步则两个都是同步</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="@Reference(async = true)
private DebugService ansyncDebugService;
@Reference(async = false)
private DebugService debugService;"><pre class="notranslate"><code class="notranslate">@Reference(async = true)
private DebugService ansyncDebugService;
@Reference(async = false)
private DebugService debugService;
</code></pre></div> | 0 |
<h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Feature Idea</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">module_utils/powershell.ps1</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<p dir="auto">v2.4</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">The <strong>win_nssm</strong> module implements a parameter using a "dict" type as value. This is currently unimplemented (and taken care of by the win_nssm module itself). We should move this support to powershell.ps1, and support both the YAML syntax, as well as the legacy "key=value" string syntax.</p>
<p dir="auto">(For the win_nssm module, there's also a <code class="notranslate">dependencies</code> parameter that currently expects a comma-separated string, which should become of type "list" too.)</p>
<p dir="auto">And the win_nssm module does not have integration tests, nor does it have check-mode support.</p>
<p dir="auto">This relates to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="233588542" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible/issues/25358" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible/issues/25358/hovercard" href="https://github.com/ansible/ansible/issues/25358">#25358</a></p> | <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.6
configured module search path = None"><pre class="notranslate"><code class="notranslate">ansible 1.9.6
configured module search path = None
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">Passing variables to roles from inventory-defined variables always results in the <code class="notranslate">|defaul('')</code> case; even when the variable exists.</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<p dir="auto"><a href="http://filebin.ca/2jzNVNZXgpJ1/inventory_all_vars.tar.gz" rel="nofollow">http://filebin.ca/2jzNVNZXgpJ1/inventory_all_vars.tar.gz</a></p>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">For the variables defined in the inventory file to be echoed.</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<p dir="auto">All variables are equal to ""</p> | 0 |
<p dir="auto">The weekly build with nightly wheels from numpy and pandas<br>
has failed. Check the logs for any updates that need to be<br>
made in matplotlib.<br>
<a href="https://github.com/matplotlib/matplotlib/actions/runs/3301901359">https://github.com/matplotlib/matplotlib/actions/runs/3301901359</a></p> | <p dir="auto">The weekly build with nightly wheels from numpy and pandas<br>
has failed. Check the logs for any updates that need to be<br>
made in matplotlib.<br>
<a href="https://github.com/matplotlib/matplotlib/actions/runs/3163174215">https://github.com/matplotlib/matplotlib/actions/runs/3163174215</a></p> | 1 |
<p dir="auto">/home/wj/anaconda2/bin/python2.7 /home/wj/PycharmProjects/untitled2/1.py<br>
Files already downloaded and verified<br>
Files already downloaded and verified<br>
truck ship cat frog<br>
[1, 2000] loss: 2.224<br>
[1, 4000] loss: 1.857<br>
[1, 6000] loss: 1.713<br>
[1, 8000] loss: 1.607<br>
[1, 10000] loss: 1.555<br>
[1, 12000] loss: 1.495<br>
[2, 2000] loss: 1.423<br>
[2, 4000] loss: 1.374<br>
[2, 6000] loss: 1.373<br>
[2, 8000] loss: 1.326<br>
[2, 10000] loss: 1.309<br>
[2, 12000] loss: 1.280<br>
Finished Training<br>
Exception NameError: "global name 'FileNotFoundError' is not defined" in <bound method _DataLoaderIter.<strong>del</strong> of <torch.utils.data.dataloader._DataLoaderIter object at 0x7fa8c97b3050>> ignored<br>
('GroundTruth: ', ' cat ship ship plane')<br>
('Predicted: ', ' cat car ship ship')<br>
Accuracy of the network on the 10000 test images: 54 %<br>
Accuracy of plane : 64 %<br>
Accuracy of car : 69 %<br>
Accuracy of bird : 40 %<br>
Accuracy of cat : 35 %<br>
Accuracy of deer : 53 %<br>
Accuracy of dog : 42 %<br>
Accuracy of frog : 76 %<br>
Accuracy of horse : 44 %<br>
Accuracy of ship : 64 %<br>
Accuracy of truck : 51 %<br>
cpu<br>
Exception NameError: "global name 'FileNotFoundError' is not defined" in <bound method _DataLoaderIter.<strong>del</strong> of <torch.utils.data.dataloader._DataLoaderIter object at 0x7fa8aaaec810>> ignored</p>
<p dir="auto">Process finished with exit code 0</p> | <p dir="auto"><code class="notranslate">Traceback (most recent call last): File "trainval_net.py", line 322, in <module> rois_label = fasterRCNN(im_data, im_info, gt_boxes, num_boxes) File "/usr/local/lib/python2.7/dist-packages/torch/nn/modules/module.py", line 491, in __call__ result = self.forward(*input, **kwargs) File "/home/faster-rcnn.pytorch/lib/model/faster_rcnn/faster_rcnn.py", line 50, in forward rois, rpn_loss_cls, rpn_loss_bbox = self.RCNN_rpn(base_feat, im_info, gt_boxes, num_boxes) File "/usr/local/lib/python2.7/dist-packages/torch/nn/modules/module.py", line 491, in __call__ result = self.forward(*input, **kwargs) File "/home/faster-rcnn.pytorch/lib/model/rpn/rpn.py", line 87, in forward rpn_data = self.RPN_anchor_target((rpn_cls_score.data, gt_boxes, im_info, num_boxes)) File "/usr/local/lib/python2.7/dist-packages/torch/nn/modules/module.py", line 491, in __call__ result = self.forward(*input, **kwargs) File "/home/faster-rcnn.pytorch/lib/model/rpn/anchor_target_layer.py", line 157, in forward positive_weights = 1.0 / num_examples File "/usr/local/lib/python2.7/dist-packages/torch/tensor.py", line 320, in __rdiv__ return self.reciprocal() * other RuntimeError: reciprocal is not implemented for type torch.cuda.LongTensor Exception NameError: "global name 'FileNotFoundError' is not defined" in <bound method _DataLoaderIter.__del__ of <torch.utils.data.dataloader._DataLoaderIter object at 0x7fb842e6e3d0>> ignored</code></p>
<p dir="auto">This error is coming while implementing pytorch faster-rcnn repository. Any solutions please??</p> | 1 |
<p dir="auto">I was messing around with boxed closures and stumbled upon this compiler error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="src/main.rs:14:9: 14:43 error: internal compiler error: cannot relate bound region: ReScope(DestructionScope(24)) <= ReLateBound(DebruijnIndex { depth: 1 }, BrAnon(0))
src/main.rs:14 Class { methods: BTreeMap::new() }
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
thread 'rustc' panicked at 'Box<Any>', /Users/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-mac/build/src/libsyntax/diagnostic.rs:176"><pre class="notranslate"><code class="notranslate">src/main.rs:14:9: 14:43 error: internal compiler error: cannot relate bound region: ReScope(DestructionScope(24)) <= ReLateBound(DebruijnIndex { depth: 1 }, BrAnon(0))
src/main.rs:14 Class { methods: BTreeMap::new() }
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
thread 'rustc' panicked at 'Box<Any>', /Users/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-mac/build/src/libsyntax/diagnostic.rs:176
</code></pre></div>
<p dir="auto">With this code:</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="use std::collections::BTreeMap;
pub trait Object {}
pub type Function = Box<Fn(Box<&Object>)>;
pub struct Class {
pub methods: BTreeMap<String, Function>
}
impl Class {
pub fn new() -> Class {
Class { methods: BTreeMap::new() }
}
}"><pre class="notranslate"><span class="pl-k">use</span> std<span class="pl-kos">::</span>collections<span class="pl-kos">::</span><span class="pl-v">BTreeMap</span><span class="pl-kos">;</span>
<span class="pl-k">pub</span> <span class="pl-k">trait</span> <span class="pl-smi">Object</span> <span class="pl-kos">{</span><span class="pl-kos">}</span>
<span class="pl-k">pub</span> <span class="pl-k">type</span> <span class="pl-smi">Function</span> = <span class="pl-smi">Box</span><span class="pl-kos"><</span><span class="pl-smi">Fn</span><span class="pl-kos">(</span><span class="pl-smi">Box</span><span class="pl-kos"><</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">pub</span> <span class="pl-k">struct</span> <span class="pl-smi">Class</span> <span class="pl-kos">{</span>
<span class="pl-k">pub</span> <span class="pl-c1">methods</span><span class="pl-kos">:</span> <span class="pl-smi">BTreeMap</span><span class="pl-kos"><</span><span class="pl-smi">String</span><span class="pl-kos">,</span> <span class="pl-smi">Function</span><span class="pl-kos">></span>
<span class="pl-kos">}</span>
<span class="pl-k">impl</span> <span class="pl-smi">Class</span> <span class="pl-kos">{</span>
<span class="pl-k">pub</span> <span class="pl-k">fn</span> <span class="pl-en">new</span><span class="pl-kos">(</span><span class="pl-kos">)</span> -> <span class="pl-smi">Class</span> <span class="pl-kos">{</span>
<span class="pl-smi">Class</span> <span class="pl-kos">{</span> <span class="pl-c1">methods</span><span class="pl-kos">:</span> <span class="pl-smi">BTreeMap</span><span class="pl-kos">::</span><span class="pl-en">new</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>
<h2 dir="auto">Meta</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="rustc 1.2.0-nightly (c6b148337 2015-06-12)
binary: rustc
commit-hash: c6b14833771d0254d189b368b5ab41b295e02fd1
commit-date: 2015-06-12
host: x86_64-apple-darwin
release: 1.2.0-nightly"><pre class="notranslate"><code class="notranslate">rustc 1.2.0-nightly (c6b148337 2015-06-12)
binary: rustc
commit-hash: c6b14833771d0254d189b368b5ab41b295e02fd1
commit-date: 2015-06-12
host: x86_64-apple-darwin
release: 1.2.0-nightly
</code></pre></div>
<p dir="auto">Backtrace:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="stack backtrace:
1: 0x1131ca8f5 - sys::backtrace::write::h6e963597537e900csas
2: 0x1131d3080 - panicking::on_panic::hc6a54e36471e710eOtw
3: 0x11318db78 - rt::unwind::begin_unwind_inner::hc2503abaf1a353b16bw
4: 0x110d48d6e - rt::unwind::begin_unwind::h15793721380063878962
5: 0x110d48cfa - diagnostic::SpanHandler::span_bug::h305c5fab12e5a61d9zA
6: 0x1103bcdd4 - middle::infer::region_inference::RegionVarBindings<'a, 'tcx>::make_subregion::h061ca723d42f2b22kGx
7: 0x1103d743b - middle::infer::mk_subr::h6aabeab28eb869bbiWA
8: 0x10fee588a - check::regionck::type_must_outlive::h6127674586e2e829Cue
9: 0x10fee3832 - check::dropck::iterate_over_potentially_unsafe_regions_in_type::hf0670724c6862f2eXDa
10: 0x10fee39e6 - check::dropck::iterate_over_potentially_unsafe_regions_in_type::hf0670724c6862f2eXDa
11: 0x10fee39e6 - check::dropck::iterate_over_potentially_unsafe_regions_in_type::hf0670724c6862f2eXDa
12: 0x10fee3b8e - check::dropck::iterate_over_potentially_unsafe_regions_in_type::hf0670724c6862f2eXDa
13: 0x10fee39e6 - check::dropck::iterate_over_potentially_unsafe_regions_in_type::hf0670724c6862f2eXDa
14: 0x10fee39e6 - check::dropck::iterate_over_potentially_unsafe_regions_in_type::hf0670724c6862f2eXDa
15: 0x10fee39e6 - check::dropck::iterate_over_potentially_unsafe_regions_in_type::hf0670724c6862f2eXDa
16: 0x10fee2491 - check::dropck::check_safety_of_destructor_if_necessary::h79249887199f444e7xa
17: 0x10ff197ce - check::regionck::check_safety_of_rvalue_destructor_if_necessary::h10b5f1bee99895872Pd
18: 0x10ff12db3 - check::regionck::visit_expr::h7f33f51c105f70aaYad
19: 0x10ff10bce - check::regionck::Rcx<'a, 'tcx>::visit_fn_body::h238c4dcb7b180b8eqNc
20: 0x10ff0ff93 - check::regionck::regionck_fn::h9c58786b01e83d88MFc
21: 0x10ff87ecd - check::check_bare_fn::h5e361559796822ecrPn
22: 0x10ff94277 - check::check_method_body::h8f03cf9185cde476Aso
23: 0x10ff85937 - check::check_item_body::h0b5b7f65588a40d3igo
24: 0x10ff877f3 - check::check_item_types::h71eb55b1de3fcdd6YMn
25: 0x11004825c - check_crate::h76434164527a1335W8C
26: 0x10f877f7e - driver::phase_3_run_analysis_passes::hc0ba76a3f5e49d6cHGa
27: 0x10f85ab93 - driver::compile_input::h31ee522441ce73a5Sba
28: 0x10f917074 - run_compiler::h1c89bc44a6227123p6b
29: 0x10f9147ea - boxed::F.FnBox<A>::call_box::h3142140668275512800
30: 0x10f913f07 - rt::unwind::try::try_fn::h8655535135861126698
31: 0x11325c418 - rust_try_inner
32: 0x11325c405 - rust_try
33: 0x1131bcd15 - rt::unwind::try::inner_try::hf8418fa68612ccb4Z7v
34: 0x10f914162 - boxed::F.FnBox<A>::call_box::h9735321616466909895
35: 0x1131d1bad - sys::thread::Thread::new::thread_start::h143ebbdca41cb5fdywv
36: 0x7fff95422267 - _pthread_body
37: 0x7fff954221e4 - _pthread_start"><pre class="notranslate"><code class="notranslate">stack backtrace:
1: 0x1131ca8f5 - sys::backtrace::write::h6e963597537e900csas
2: 0x1131d3080 - panicking::on_panic::hc6a54e36471e710eOtw
3: 0x11318db78 - rt::unwind::begin_unwind_inner::hc2503abaf1a353b16bw
4: 0x110d48d6e - rt::unwind::begin_unwind::h15793721380063878962
5: 0x110d48cfa - diagnostic::SpanHandler::span_bug::h305c5fab12e5a61d9zA
6: 0x1103bcdd4 - middle::infer::region_inference::RegionVarBindings<'a, 'tcx>::make_subregion::h061ca723d42f2b22kGx
7: 0x1103d743b - middle::infer::mk_subr::h6aabeab28eb869bbiWA
8: 0x10fee588a - check::regionck::type_must_outlive::h6127674586e2e829Cue
9: 0x10fee3832 - check::dropck::iterate_over_potentially_unsafe_regions_in_type::hf0670724c6862f2eXDa
10: 0x10fee39e6 - check::dropck::iterate_over_potentially_unsafe_regions_in_type::hf0670724c6862f2eXDa
11: 0x10fee39e6 - check::dropck::iterate_over_potentially_unsafe_regions_in_type::hf0670724c6862f2eXDa
12: 0x10fee3b8e - check::dropck::iterate_over_potentially_unsafe_regions_in_type::hf0670724c6862f2eXDa
13: 0x10fee39e6 - check::dropck::iterate_over_potentially_unsafe_regions_in_type::hf0670724c6862f2eXDa
14: 0x10fee39e6 - check::dropck::iterate_over_potentially_unsafe_regions_in_type::hf0670724c6862f2eXDa
15: 0x10fee39e6 - check::dropck::iterate_over_potentially_unsafe_regions_in_type::hf0670724c6862f2eXDa
16: 0x10fee2491 - check::dropck::check_safety_of_destructor_if_necessary::h79249887199f444e7xa
17: 0x10ff197ce - check::regionck::check_safety_of_rvalue_destructor_if_necessary::h10b5f1bee99895872Pd
18: 0x10ff12db3 - check::regionck::visit_expr::h7f33f51c105f70aaYad
19: 0x10ff10bce - check::regionck::Rcx<'a, 'tcx>::visit_fn_body::h238c4dcb7b180b8eqNc
20: 0x10ff0ff93 - check::regionck::regionck_fn::h9c58786b01e83d88MFc
21: 0x10ff87ecd - check::check_bare_fn::h5e361559796822ecrPn
22: 0x10ff94277 - check::check_method_body::h8f03cf9185cde476Aso
23: 0x10ff85937 - check::check_item_body::h0b5b7f65588a40d3igo
24: 0x10ff877f3 - check::check_item_types::h71eb55b1de3fcdd6YMn
25: 0x11004825c - check_crate::h76434164527a1335W8C
26: 0x10f877f7e - driver::phase_3_run_analysis_passes::hc0ba76a3f5e49d6cHGa
27: 0x10f85ab93 - driver::compile_input::h31ee522441ce73a5Sba
28: 0x10f917074 - run_compiler::h1c89bc44a6227123p6b
29: 0x10f9147ea - boxed::F.FnBox<A>::call_box::h3142140668275512800
30: 0x10f913f07 - rt::unwind::try::try_fn::h8655535135861126698
31: 0x11325c418 - rust_try_inner
32: 0x11325c405 - rust_try
33: 0x1131bcd15 - rt::unwind::try::inner_try::hf8418fa68612ccb4Z7v
34: 0x10f914162 - boxed::F.FnBox<A>::call_box::h9735321616466909895
35: 0x1131d1bad - sys::thread::Thread::new::thread_start::h143ebbdca41cb5fdywv
36: 0x7fff95422267 - _pthread_body
37: 0x7fff954221e4 - _pthread_start
</code></pre></div> | <p dir="auto">I hit an internal compiler error with this weeks build. It occurs when I try to build <a href="https://github.com/Kintaro/wtftw/tree/1d8040fddfedfd3b111bb4d5a8466fcb8120e339">https://github.com/Kintaro/wtftw/tree/1d8040fddfedfd3b111bb4d5a8466fcb8120e339</a></p>
<p dir="auto">Error output and rustc version are below.</p>
<p dir="auto">rustc 1.2.0-dev (<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-lang/rust/commit/0fc0476e6ae2bcc5cce75d78548cf037b6692a97/hovercard" href="https://github.com/rust-lang/rust/commit/0fc0476e6ae2bcc5cce75d78548cf037b6692a97"><tt>0fc0476</tt></a> 2015-05-24) (built 2015-05-24)</p>
<p dir="auto">Unfortunately, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="78637616" data-permission-text="Title is private" data-url="https://github.com/rust-lang/rust/issues/25652" data-hovercard-type="pull_request" data-hovercard-url="/rust-lang/rust/pull/25652/hovercard" href="https://github.com/rust-lang/rust/pull/25652">#25652</a> did not fix the issue. It's caused by this part here <a href="https://github.com/Kintaro/wtftw/blob/1d8040fddfedfd3b111bb4d5a8466fcb8120e339/core/src/config.rs#L110">https://github.com/Kintaro/wtftw/blob/1d8040fddfedfd3b111bb4d5a8466fcb8120e339/core/src/config.rs#L110</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="core/src/config.rs:116:13: 116:28 error: internal compiler error: cannot relate bound region: ReScope(Remainder(BlockRemainder { block: 150, first_statement_index: 3 })) <= ReLateBound(DebruijnIndex { depth: 1 }, BrAnon(0))
core/src/config.rs:116 let internal_config =
^~~~~~~~~~~~~~~
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<Any>', /home/rootnode/programs/src/rust/src/libsyntax/diagnostic.rs:176"><pre class="notranslate"><code class="notranslate">core/src/config.rs:116:13: 116:28 error: internal compiler error: cannot relate bound region: ReScope(Remainder(BlockRemainder { block: 150, first_statement_index: 3 })) <= ReLateBound(DebruijnIndex { depth: 1 }, BrAnon(0))
core/src/config.rs:116 let internal_config =
^~~~~~~~~~~~~~~
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<Any>', /home/rootnode/programs/src/rust/src/libsyntax/diagnostic.rs:176
</code></pre></div> | 1 |
<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: Red Hat Enterprise Linux Server release 6.5</li>
<li>Java version: jdk1.8.0_201</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ol dir="auto">
<li>使用kryo序列化,消费者与提供者参数结构修改成不一致时进行服务调用。</li>
</ol>
<p dir="auto">Pls. provide [GitHub address] to reproduce this issue.</p>
<h3 dir="auto">Expected Result</h3>
<p dir="auto">希望应用层有捕获解码异常的方法,并进行相关的告警。</p>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">What actually happens?<br>
没有找到良好的办法捕获解码异常。对序列化进行扩展可以勉强实现。</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="WARN :20191011.162324579:NettyServerWorker-4-8: [DUBBO] Decode argument failed: com.esotericsoftware.kryo.KryoException: Unable to find class: NY
Serialization trace:
exrate (com.xx.yy.dto.XXXNotityMsg)
body (com.xx.yy.dto.ZZTopMsg), dubbo version: 2.7.3, current host: 172.16.10.27:DecodeableRpcInvocation.java:119
java.io.IOException: com.esotericsoftware.kryo.KryoException: Unable to find class: NY
Serialization trace:
exrate (com.xx.yy.dto.XXXNotityMsg)
body (com.xx.yy.dto.ZZTopMsg)
at org.apache.dubbo.common.serialize.kryo.KryoObjectInput.readObject(KryoObjectInput.java:138) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.common.serialize.kryo.KryoObjectInput.readObject(KryoObjectInput.java:147) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.rpc.protocol.dubbo.DecodeableRpcInvocation.decode(DecodeableRpcInvocation.java:116) [dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.rpc.protocol.dubbo.DecodeableRpcInvocation.decode(DecodeableRpcInvocation.java:73) [dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.rpc.protocol.dubbo.DubboCodec.decodeBody(DubboCodec.java:132) [dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.remoting.exchange.codec.ExchangeCodec.decode(ExchangeCodec.java:122) [dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.remoting.exchange.codec.ExchangeCodec.decode(ExchangeCodec.java:82) [dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.rpc.protocol.dubbo.DubboCountCodec.decode(DubboCountCodec.java:48) [dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.remoting.transport.netty4.NettyCodecAdapter$InternalDecoder.decode(NettyCodecAdapter.java:90) [dubbo-2.7.3.jar:2.7.3]
at io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:489) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:428) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:265) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:362) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:348) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:340) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1434) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:362) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:348) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:965) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:163) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:628) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:563) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:480) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:442) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:884) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at java.lang.Thread.run(Thread.java:748) [?:1.8.0_201]
Caused by: com.esotericsoftware.kryo.KryoException: Unable to find class: NY
Serialization trace:
exrate (com.xx.yy.dto.XXXNotityMsg)
body (com.xx.yy.dto.ZZTopMsg)
at com.esotericsoftware.kryo.util.DefaultClassResolver.readName(DefaultClassResolver.java:160) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.util.DefaultClassResolver.readClass(DefaultClassResolver.java:133) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.Kryo.readClass(Kryo.java:693) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.serializers.ObjectField.read(ObjectField.java:118) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.serializers.FieldSerializer.read(FieldSerializer.java:540) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.Kryo.readObject(Kryo.java:731) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.serializers.ObjectField.read(ObjectField.java:125) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.serializers.FieldSerializer.read(FieldSerializer.java:540) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.Kryo.readClassAndObject(Kryo.java:813) ~[kryo-4.0.0.jar:?]
at org.apache.dubbo.common.serialize.kryo.KryoObjectInput.readObject(KryoObjectInput.java:136) ~[dubbo-2.7.3.jar:2.7.3]
... 26 more
Caused by: java.lang.ClassNotFoundException: NY
at java.net.URLClassLoader.findClass(URLClassLoader.java:382) ~[?:1.8.0_201]
at java.lang.ClassLoader.loadClass(ClassLoader.java:424) ~[?:1.8.0_201]
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:349) ~[?:1.8.0_201]
at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ~[?:1.8.0_201]
at java.lang.Class.forName0(Native Method) ~[?:1.8.0_201]
at java.lang.Class.forName(Class.java:348) ~[?:1.8.0_201]
at com.esotericsoftware.kryo.util.DefaultClassResolver.readName(DefaultClassResolver.java:154) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.util.DefaultClassResolver.readClass(DefaultClassResolver.java:133) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.Kryo.readClass(Kryo.java:693) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.serializers.ObjectField.read(ObjectField.java:118) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.serializers.FieldSerializer.read(FieldSerializer.java:540) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.Kryo.readObject(Kryo.java:731) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.serializers.ObjectField.read(ObjectField.java:125) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.serializers.FieldSerializer.read(FieldSerializer.java:540) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.Kryo.readClassAndObject(Kryo.java:813) ~[kryo-4.0.0.jar:?]
at org.apache.dubbo.common.serialize.kryo.KryoObjectInput.readObject(KryoObjectInput.java:136) ~[dubbo-2.7.3.jar:2.7.3]"><pre class="notranslate"><code class="notranslate">WARN :20191011.162324579:NettyServerWorker-4-8: [DUBBO] Decode argument failed: com.esotericsoftware.kryo.KryoException: Unable to find class: NY
Serialization trace:
exrate (com.xx.yy.dto.XXXNotityMsg)
body (com.xx.yy.dto.ZZTopMsg), dubbo version: 2.7.3, current host: 172.16.10.27:DecodeableRpcInvocation.java:119
java.io.IOException: com.esotericsoftware.kryo.KryoException: Unable to find class: NY
Serialization trace:
exrate (com.xx.yy.dto.XXXNotityMsg)
body (com.xx.yy.dto.ZZTopMsg)
at org.apache.dubbo.common.serialize.kryo.KryoObjectInput.readObject(KryoObjectInput.java:138) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.common.serialize.kryo.KryoObjectInput.readObject(KryoObjectInput.java:147) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.rpc.protocol.dubbo.DecodeableRpcInvocation.decode(DecodeableRpcInvocation.java:116) [dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.rpc.protocol.dubbo.DecodeableRpcInvocation.decode(DecodeableRpcInvocation.java:73) [dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.rpc.protocol.dubbo.DubboCodec.decodeBody(DubboCodec.java:132) [dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.remoting.exchange.codec.ExchangeCodec.decode(ExchangeCodec.java:122) [dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.remoting.exchange.codec.ExchangeCodec.decode(ExchangeCodec.java:82) [dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.rpc.protocol.dubbo.DubboCountCodec.decode(DubboCountCodec.java:48) [dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.remoting.transport.netty4.NettyCodecAdapter$InternalDecoder.decode(NettyCodecAdapter.java:90) [dubbo-2.7.3.jar:2.7.3]
at io.netty.handler.codec.ByteToMessageDecoder.decodeRemovalReentryProtection(ByteToMessageDecoder.java:489) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:428) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:265) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:362) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:348) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:340) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1434) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:362) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:348) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:965) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:163) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:628) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:563) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:480) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:442) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:884) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) [netty-all-4.1.29.Final.jar:4.1.29.Final]
at java.lang.Thread.run(Thread.java:748) [?:1.8.0_201]
Caused by: com.esotericsoftware.kryo.KryoException: Unable to find class: NY
Serialization trace:
exrate (com.xx.yy.dto.XXXNotityMsg)
body (com.xx.yy.dto.ZZTopMsg)
at com.esotericsoftware.kryo.util.DefaultClassResolver.readName(DefaultClassResolver.java:160) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.util.DefaultClassResolver.readClass(DefaultClassResolver.java:133) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.Kryo.readClass(Kryo.java:693) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.serializers.ObjectField.read(ObjectField.java:118) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.serializers.FieldSerializer.read(FieldSerializer.java:540) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.Kryo.readObject(Kryo.java:731) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.serializers.ObjectField.read(ObjectField.java:125) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.serializers.FieldSerializer.read(FieldSerializer.java:540) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.Kryo.readClassAndObject(Kryo.java:813) ~[kryo-4.0.0.jar:?]
at org.apache.dubbo.common.serialize.kryo.KryoObjectInput.readObject(KryoObjectInput.java:136) ~[dubbo-2.7.3.jar:2.7.3]
... 26 more
Caused by: java.lang.ClassNotFoundException: NY
at java.net.URLClassLoader.findClass(URLClassLoader.java:382) ~[?:1.8.0_201]
at java.lang.ClassLoader.loadClass(ClassLoader.java:424) ~[?:1.8.0_201]
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:349) ~[?:1.8.0_201]
at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ~[?:1.8.0_201]
at java.lang.Class.forName0(Native Method) ~[?:1.8.0_201]
at java.lang.Class.forName(Class.java:348) ~[?:1.8.0_201]
at com.esotericsoftware.kryo.util.DefaultClassResolver.readName(DefaultClassResolver.java:154) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.util.DefaultClassResolver.readClass(DefaultClassResolver.java:133) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.Kryo.readClass(Kryo.java:693) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.serializers.ObjectField.read(ObjectField.java:118) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.serializers.FieldSerializer.read(FieldSerializer.java:540) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.Kryo.readObject(Kryo.java:731) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.serializers.ObjectField.read(ObjectField.java:125) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.serializers.FieldSerializer.read(FieldSerializer.java:540) ~[kryo-4.0.0.jar:?]
at com.esotericsoftware.kryo.Kryo.readClassAndObject(Kryo.java:813) ~[kryo-4.0.0.jar:?]
at org.apache.dubbo.common.serialize.kryo.KryoObjectInput.readObject(KryoObjectInput.java:136) ~[dubbo-2.7.3.jar:2.7.3]
</code></pre></div> | <ul dir="auto">
<li>[√] 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>[√] I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: 2.6.1</li>
<li>Operating System version: centOS7</li>
<li>Java version: 1.7</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ol dir="auto">
<li>停机服务,重启</li>
<li>dubbo无法注册到zk,已检查端口和ip无异常</li>
<li>DubboServerHandler一直启线程,直到OOM</li>
</ol>
<h3 dir="auto">Expected Result</h3>
<p dir="auto">期望服务重启后,可以正常注册到zk,平稳提供服务</p>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">OOM,服务崩溃</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="Exception in thread "DubboServerHandler-10.20.200.108:21030-thread-52" java.lang.OutOfMemoryError: GC overhead limit exceeded
at java.util.concurrent.ConcurrentHashMap$Segment.put(ConcurrentHashMap.java:457)
at java.util.concurrent.ConcurrentHashMap.put(ConcurrentHashMap.java:1130)
at com.alibaba.dubbo.remoting.transport.netty.NettyChannel.setAttribute(NettyChannel.java:153)
at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.disconnected(HeaderExchangeHandler.java:118)
at com.alibaba.dubbo.remoting.transport.AbstractChannelHandlerDelegate.disconnected(AbstractChannelHandlerDelegate.java:45)
at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:64)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
at java.lang.Thread.run(Thread.java:745)
"><pre class="notranslate"><code class="notranslate">Exception in thread "DubboServerHandler-10.20.200.108:21030-thread-52" java.lang.OutOfMemoryError: GC overhead limit exceeded
at java.util.concurrent.ConcurrentHashMap$Segment.put(ConcurrentHashMap.java:457)
at java.util.concurrent.ConcurrentHashMap.put(ConcurrentHashMap.java:1130)
at com.alibaba.dubbo.remoting.transport.netty.NettyChannel.setAttribute(NettyChannel.java:153)
at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.disconnected(HeaderExchangeHandler.java:118)
at com.alibaba.dubbo.remoting.transport.AbstractChannelHandlerDelegate.disconnected(AbstractChannelHandlerDelegate.java:45)
at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:64)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
at java.lang.Thread.run(Thread.java:745)
</code></pre></div> | 0 |
<p dir="auto">I tried installing the electron-prebuilt in corporate network and I get CERT_UNTRUSTED error. I even modified the .npmrc file to accept <a href="http://registry.npmjs.org/" rel="nofollow">http://registry.npmjs.org/</a>. Help me to fix this.</p> | <p dir="auto">I have tried installing electron-prebuilt using npm however I run into errors similar to this other user (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="73243285" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/1578" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/1578/hovercard" href="https://github.com/electron/electron/issues/1578">electron/electron#1578</a>).</p> | 1 |
<p dir="auto">Starting with this engine roll: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="340795300" data-permission-text="Title is private" data-url="https://github.com/flutter/flutter/issues/19322" data-hovercard-type="pull_request" data-hovercard-url="/flutter/flutter/pull/19322/hovercard" href="https://github.com/flutter/flutter/pull/19322">#19322</a></p> | <p dir="auto">Starting with this engine roll: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="340795300" data-permission-text="Title is private" data-url="https://github.com/flutter/flutter/issues/19322" data-hovercard-type="pull_request" data-hovercard-url="/flutter/flutter/pull/19322/hovercard" href="https://github.com/flutter/flutter/pull/19322">#19322</a></p> | 1 |
<p dir="auto">D:\git\flutter>flutter doctor<br>
Updating flutter tool...<br>
The system can't find the route.<br>
Error: Unable to 'pub upgrade' flutter tool. Retrying in five seconds...</p> | 0 |
|
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=cnichols" rel="nofollow">Christopher Nichols</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-7584?redirect=false" rel="nofollow">SPR-7584</a></strong> and commented</p>
<p dir="auto">Lightly wordsmithing the original post from the forum.</p>
<p dir="auto">"We recently upgraded from Spring 2.5.6 to Spring 3.0.2. We had "default-lazy-init" set to true for the majority of the beans and didn't change those settings with our Spring upgrade. However, we found that the lazy-init behavior changed between Spring 2.5 and 3.0.</p>
<p dir="auto">With 2.5, the beans flagged for lazy-init are truly lazily initialized, i.e. they are initialized on demand after the Spring Application Context instantiation is complete.</p>
<p dir="auto">With 3.0, the Spring container attempts to eagerly initiate all beans including the ones flagged for lazy-init, as part of the Spring Application Context instantiation step. If any bean flagged for lazy-init throws exception during initialization, the exception will be ignored and Spring Application Context instantiation will continue on..." See the forum post for more details.</p>
<p dir="auto">The upgrade guide doesn't have any details about lazy-init changing the way it functions. As such, this looks a bug.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.0.2</p>
<p dir="auto"><strong>Reference URL:</strong> <a href="http://forum.springsource.org/showthread.php?p=318697#post318697" rel="nofollow">http://forum.springsource.org/showthread.php?p=318697#post318697</a></p>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398112342" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12992" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12992/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12992">#12992</a> Lazy-init beans are unnecessarily created during the candidate determination process (<em><strong>"duplicates"</strong></em>)</li>
</ul> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=gobreak" rel="nofollow">gobreak</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-2181?redirect=false" rel="nofollow">SPR-2181</a></strong> and commented</p>
<p dir="auto">I have tried using JBossMQ and ActiveMQ to receive async message by DefaultMessageListenerContainer.<br>
Transaction Manager from JBoss are used and set properly as a bean property for DefaultMessageListenerContainer.<br>
To trigger the XA rollback, I throw a runtime exception in the onMessage() callback of the MessageListener.<br>
However, the message is still commit.</p>
<p dir="auto">The bean setting:<br>
<bean id="transactionManager" class="org.springframework.transaction.jta.JtaTransactionManager"><br>
<property name="userTransaction" ref="userTransaction"/><br>
</bean></p>
<p dir="auto"><bean id="userTransaction"<br>
class="org.springframework.jndi.JndiObjectFactoryBean"><br>
<property name="jndiName"><br>
<value>java:comp/UserTransaction</value><br>
</property><br>
</bean></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<bean id="listenerContainer"
class="org.springframework.jms.listener.DefaultMessageListenerContainer">
<property name="connectionFactory" ref="XAJmsConnectionFactory" />
<property name="destination" ref="XADestination" />
<property name="messageListener" ref="coreInboundBeanImpl" />
<property name="transactionManager" ref="transactionManager"/>
</bean>"><pre class="notranslate"><code class="notranslate"><bean id="listenerContainer"
class="org.springframework.jms.listener.DefaultMessageListenerContainer">
<property name="connectionFactory" ref="XAJmsConnectionFactory" />
<property name="destination" ref="XADestination" />
<property name="messageListener" ref="coreInboundBeanImpl" />
<property name="transactionManager" ref="transactionManager"/>
</bean>
</code></pre></div>
<p dir="auto">Finally, I needed to extend DefaultMessageListenerContainer and override the receive() method using JMSTemplate instead of the message consumer as follow:<br>
public Message receive(long timeOut) throws JMSException{<br>
template.setConnectionFactory(getConnectionFactory());<br>
template.setDefaultDestination(getDestination());<br>
template.setReceiveTimeout(timeOut);<br>
if (getMessageSelector() == null || "".equals(getMessageSelector().trim()))<br>
return template.receive(getDestination());<br>
else<br>
return template.receiveSelected(getDestination(), getMessageSelector());<br>
}</p>
<p dir="auto">I use JMSTemplate because I find it performs XA without any noticed problem.<br>
Using the above implementation can successfully rollback as well as commit the message. I am seeking for better solution on this topic.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 2.0 RC1</p>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398066706" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/6784" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/6784/hovercard" href="https://github.com/spring-projects/spring-framework/issues/6784">#6784</a> Cannot do XA Rollback Using DefaultMessageListenerContainer on JBoss (<em><strong>"duplicates"</strong></em>)</li>
</ul> | 0 |
<h1 dir="auto">Description of the new feature/enhancement</h1>
<p dir="auto">Include panes keybindings by default</p>
<h1 dir="auto">Proposed technical implementation details (optional)</h1>
<p dir="auto">Current keybinding suggestion:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" { "command": "splitHorizontal", "keys": [ "alt+shift+-" ] },
{ "command": "splitVertical", "keys": [ "alt+shift+plus" ] },
{ "command": { "action": "moveFocus", "direction":"down" }, "keys": [ "alt+down" ] },
{ "command": { "action": "moveFocus", "direction":"left" }, "keys": [ "alt+left" ] },
{ "command": { "action": "moveFocus", "direction":"right" }, "keys": [ "alt+right" ] },
{ "command": { "action": "moveFocus", "direction":"up" }, "keys": [ "alt+up" ] },
{ "command": { "action": "resizePane", "direction":"down" }, "keys": [ "alt+shift+down" ] },
{ "command": { "action": "resizePane", "direction":"left" }, "keys": [ "alt+shift+left" ] },
{ "command": { "action": "resizePane", "direction":"right" }, "keys": [ "alt+shift+right" ] },
{ "command": { "action": "resizePane", "direction":"up" }, "keys": [ "alt+shift+up" ] },"><pre class="notranslate"><code class="notranslate"> { "command": "splitHorizontal", "keys": [ "alt+shift+-" ] },
{ "command": "splitVertical", "keys": [ "alt+shift+plus" ] },
{ "command": { "action": "moveFocus", "direction":"down" }, "keys": [ "alt+down" ] },
{ "command": { "action": "moveFocus", "direction":"left" }, "keys": [ "alt+left" ] },
{ "command": { "action": "moveFocus", "direction":"right" }, "keys": [ "alt+right" ] },
{ "command": { "action": "moveFocus", "direction":"up" }, "keys": [ "alt+up" ] },
{ "command": { "action": "resizePane", "direction":"down" }, "keys": [ "alt+shift+down" ] },
{ "command": { "action": "resizePane", "direction":"left" }, "keys": [ "alt+shift+left" ] },
{ "command": { "action": "resizePane", "direction":"right" }, "keys": [ "alt+shift+right" ] },
{ "command": { "action": "resizePane", "direction":"up" }, "keys": [ "alt+shift+up" ] },
</code></pre></div> | <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.18995.0
Windows Terminal version (if applicable): 0.5.2762.0"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: 10.0.18995.0
Windows Terminal version (if applicable): 0.5.2762.0
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">Open Terminal app.</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">Should not show a white border on the bottom of the window.</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">Shows a 1 pixel thin white border on the bottom of the window.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/2971735/66225365-8e864780-e6d8-11e9-943d-efa6741be223.png"><img src="https://user-images.githubusercontent.com/2971735/66225365-8e864780-e6d8-11e9-943d-efa6741be223.png" alt="grafik" style="max-width: 100%;"></a></p> | 0 |
<p dir="auto">Hi,</p>
<p dir="auto">I am interested in using scatter_add when the tensor being update is not a variable. Is this possible?</p>
<p dir="auto">I am looking to do something like this:</p>
<p dir="auto"><code class="notranslate">X1_ph = tf.placeholder(tf.float32, shape=(None, 3))</code><br>
<code class="notranslate">ind_ph = tf.placeholder(tf.int32, shape=(None))</code></p>
<p dir="auto"><code class="notranslate">#Z = tf.Variable(tf.zeros([10, 3]))</code><br>
<code class="notranslate">Z = tf.zeros([10, N_feat])</code></p>
<p dir="auto"><code class="notranslate">X1 = np.array([[1,0.00,1],</code><br>
<code class="notranslate">[2,0.00,1],</code><br>
<code class="notranslate">[3,0.00,1],</code><br>
<code class="notranslate">[5,0.00,1.1],</code><br>
<code class="notranslate">[6,1.0,1.8]])</code></p>
<p dir="auto"><code class="notranslate">ind = [0, 1, 1, 0, 0]</code></p>
<p dir="auto"><code class="notranslate">Z = tf.scatter_add(Z, ind_ph, X1)</code></p>
<p dir="auto">If I declare Z as a tf.Variable, I can do this, but I need to call this operation hundreds of thousands of times, and do not want to store any copies of Z once I am done with them. If I were to declare Z as a Variable, would there be any way to destroy Z once I am done with it (maybe with a garbage collector or something similar)? Thank you so much for your help!</p> | <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): Yes</li>
<li>OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Ubuntu 16.04</li>
<li>Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: No idea</li>
<li>TensorFlow installed from (source or binary): binary using pip3 install</li>
<li>TensorFlow version (use command below): 1.14</li>
<li>Python version: 3.6</li>
<li>Bazel version (if compiling from source):</li>
<li>GCC/Compiler version (if compiling from source):</li>
<li>CUDA/cuDNN version: cuda9.0, cudnn 7.6</li>
<li>GPU model and memory: RTX 2080Ti</li>
</ul>
<p dir="auto">When I run the following code using CPU:<br>
<code class="notranslate">result= tf.math.log(tf.constant([280.41303540865516]*100, dtype=tf.float32)).numpy()</code><br>
I got:<br>
<code class="notranslate"> [5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.6362634 5.636264 5.636264 5.636264 5.636264 ]</code></p>
<p dir="auto">I found result[0] is not equal to result[-1]. the first one is<br>
5.636263370513916 while the latter one is equal to 5.636263847351074.</p>
<p dir="auto">I believe it is a bug.</p>
<p dir="auto"><strong>Code to reproduce the issue</strong><br>
<code class="notranslate"> from __future__ import absolute_import, division, print_function, unicode_literals import tensorflow as tf from random import * tf.enable_eager_execution() with tf.device("/cpu:0"): result = tf.math.log(tf.constant([ 280.41303540865516]*100, dtype=tf.float32)).numpy() print("{} vs {}".format(result[0], result[-1]))</code></p>
<p dir="auto">Seems GPU has no such issues.</p> | 0 |
<p dir="auto">See screenshot for repro code, its much clearer.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1753927/7439840/db615cf0-f0c1-11e4-8c1d-4e29e33a6e5b.png"><img src="https://cloud.githubusercontent.com/assets/1753927/7439840/db615cf0-f0c1-11e4-8c1d-4e29e33a6e5b.png" alt="minimal repro code" style="max-width: 100%;"></a></p>
<p dir="auto">Generated using grunt-typescript 0.6.1/typescript 1.4.1 with the following config:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="typescript: {
base: {
src: ["src/**/*.ts"],
options: {
module: "commonjs",
target: "es5",
basePath: "src",
sourceMap: false,
declaration: false,
references:[
"typings/**/*.d.ts"
]
}
}
}"><pre class="notranslate"><code class="notranslate">typescript: {
base: {
src: ["src/**/*.ts"],
options: {
module: "commonjs",
target: "es5",
basePath: "src",
sourceMap: false,
declaration: false,
references:[
"typings/**/*.d.ts"
]
}
}
}
</code></pre></div>
<p dir="auto">Assuming its unlikely that grunt-typescript will produce this kind of bug.</p> | <p dir="auto">Hi,</p>
<p dir="auto"><strong>TS Version</strong>: 1.4</p>
<p dir="auto">The following code:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var x: any;
/*
var bar;
*/"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">x</span>: <span class="pl-smi">any</span><span class="pl-kos">;</span>
<span class="pl-c">/*</span>
<span class="pl-c">var bar;</span>
<span class="pl-c">*/</span></pre></div>
<p dir="auto">Emits the following JavaScript</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var x;
/*
var bar;
var x: any;
/*
var bar;"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">x</span><span class="pl-kos">;</span>
<span class="pl-c1">/</span><span class="pl-c1">*</span>
<span class="pl-k">var</span> <span class="pl-s1">bar</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">x</span>: <span class="pl-s1">any</span><span class="pl-kos">;</span>
<span class="pl-c1">/</span><span class="pl-c1">*</span>
<span class="pl-k">var</span> <span class="pl-s1">bar</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Expected</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var x;
/*
var bar;
*/"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">x</span><span class="pl-kos">;</span>
<span class="pl-c">/*</span>
<span class="pl-c">var bar;</span>
<span class="pl-c">*/</span></pre></div> | 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/zeit/next.js/issues?q=is%3Aissue">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<p dir="auto">Sorry in advance if I didn't find any informations. If this behavior is actually possible, please specify it in the README.</p>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">Being able to use an IP (10.x.x.x) instead of localhost while using next dev.</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">Dev server launch on localhost.</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">I try to do</p>
<ul dir="auto">
<li>Run production build use custom server with express</li>
<li>Jest Test</li>
</ul>
<h2 dir="auto">Current Behavior</h2>
<ul dir="auto">
<li>I can run next in development mode with <code class="notranslate">node server.js</code></li>
<li>Jest Test ( Jest is ok, run normally)</li>
</ul>
<p dir="auto">After next build, I try to start custom server with express with<br>
<code class="notranslate">NODE_ENV=production node server.js</code></p>
<p dir="auto">This is log</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TypeError: Cannot read property 'toLowerCase' of undefined
at a.renderDOM (/home/naijab/freelance/neogamer/frontend/gamerui/src/node_modules/react-dom/cjs/react-dom-server.node.production.min.js:36:391)
at a.render (/home/naijab/freelance/neogamer/frontend/gamerui/src/node_modules/react-dom/cjs/react-dom-server.node.production.min.js:36:228)
at a.read (/home/naijab/freelance/neogamer/frontend/gamerui/src/node_modules/react-dom/cjs/react-dom-server.node.production.min.js:35:250)
at renderToStaticMarkup (/home/naijab/freelance/neogamer/frontend/gamerui/src/node_modules/react-dom/cjs/react-dom-server.node.production.min.js:44:75)
at _callee3$ (/home/naijab/freelance/neogamer/frontend/gamerui/src/node_modules/next/dist/server/render.js:223:100)
at tryCatch (/home/naijab/freelance/neogamer/frontend/gamerui/src/node_modules/regenerator-runtime/runtime.js:62:40)
at Generator.invoke [as _invoke] (/home/naijab/freelance/neogamer/frontend/gamerui/src/node_modules/regenerator-runtime/runtime.js:296:22)
at Generator.prototype.(anonymous function) [as next] (/home/naijab/freelance/neogamer/frontend/gamerui/src/node_modules/regenerator-runtime/runtime.js:114:21)
at step (/home/naijab/freelance/neogamer/frontend/gamerui/src/node_modules/babel-runtime/helpers/asyncToGenerator.js:17:30)
at /home/naijab/freelance/neogamer/frontend/gamerui/src/node_modules/babel-runtime/helpers/asyncToGenerator.js:28:13
at <anonymous>"><pre class="notranslate"><code class="notranslate">TypeError: Cannot read property 'toLowerCase' of undefined
at a.renderDOM (/home/naijab/freelance/neogamer/frontend/gamerui/src/node_modules/react-dom/cjs/react-dom-server.node.production.min.js:36:391)
at a.render (/home/naijab/freelance/neogamer/frontend/gamerui/src/node_modules/react-dom/cjs/react-dom-server.node.production.min.js:36:228)
at a.read (/home/naijab/freelance/neogamer/frontend/gamerui/src/node_modules/react-dom/cjs/react-dom-server.node.production.min.js:35:250)
at renderToStaticMarkup (/home/naijab/freelance/neogamer/frontend/gamerui/src/node_modules/react-dom/cjs/react-dom-server.node.production.min.js:44:75)
at _callee3$ (/home/naijab/freelance/neogamer/frontend/gamerui/src/node_modules/next/dist/server/render.js:223:100)
at tryCatch (/home/naijab/freelance/neogamer/frontend/gamerui/src/node_modules/regenerator-runtime/runtime.js:62:40)
at Generator.invoke [as _invoke] (/home/naijab/freelance/neogamer/frontend/gamerui/src/node_modules/regenerator-runtime/runtime.js:296:22)
at Generator.prototype.(anonymous function) [as next] (/home/naijab/freelance/neogamer/frontend/gamerui/src/node_modules/regenerator-runtime/runtime.js:114:21)
at step (/home/naijab/freelance/neogamer/frontend/gamerui/src/node_modules/babel-runtime/helpers/asyncToGenerator.js:17:30)
at /home/naijab/freelance/neogamer/frontend/gamerui/src/node_modules/babel-runtime/helpers/asyncToGenerator.js:28:13
at <anonymous>
</code></pre></div>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<ol dir="auto">
<li><code class="notranslate">yarn build</code> --> <code class="notranslate">next build</code></li>
<li><code class="notranslate">yarn start</code> --> <code class="notranslate">NODE_ENV=production node server.js</code></li>
<li>Point a browser to <a href="http://localhost:3000" rel="nofollow">http://localhost:3000</a></li>
<li>Show 500 errors flash An unexpected error has occurred.</li>
</ol>
<h2 dir="auto">Context</h2>
<p dir="auto">When start production build, internal server errors cause an unwanted flash of content.</p>
<h2 dir="auto">Your Environment</h2>
<table role="table">
<thead>
<tr>
<th>Tech</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>next</td>
<td>5.0</td>
</tr>
<tr>
<td>node</td>
<td>8.9</td>
</tr>
<tr>
<td>OS</td>
<td>Ubuntu</td>
</tr>
<tr>
<td>browser</td>
<td>Chrome 64</td>
</tr>
<tr>
<td>etc</td>
<td></td>
</tr>
</tbody>
</table> | 0 |
<p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/numpy/ticket/2155" rel="nofollow">http://projects.scipy.org/numpy/ticket/2155</a> on 2012-06-11 by trac user r0k3, assigned to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pierregm/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pierregm">@pierregm</a>.</em></p>
<p dir="auto">One gets an error while trying to pickle an object that contains a MaskedConstant.</p> | <p dir="auto">I've tried to build numpy with ATLAS 3.10. This version of <a href="http://math-atlas.sourceforge.net/atlas_install/node22.html" rel="nofollow">ATLAS</a> produces instead of <code class="notranslate">libf77blas.so</code>, <code class="notranslate">liblapack.so</code>, and other libraries just <code class="notranslate">lib{s,t}atlas.so</code>. Unfortunately numpy is not able to accept this change (which results into numpy not being linked against ATLAS' libs).</p>
<p dir="auto">I would provide patch for this but <a href="https://github.com/numpy/numpy/blob/master/numpy/distutils/system_info.py#L991">code</a> which performs these tests is a little bit hard to read for me.</p>
<p dir="auto">Simple workaround for this is to create original files by creating symlinks:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ln -s libtatlas.so* libptcblas.so
ln -s libtatlas.so* libptf77blas.so
# and so on"><pre class="notranslate"><code class="notranslate">ln -s libtatlas.so* libptcblas.so
ln -s libtatlas.so* libptf77blas.so
# and so on
</code></pre></div> | 0 |
<p dir="auto">Series should be standardized with DataFrame and provide the same structural infos methods, for example .info()</p> | <p dir="auto">xref PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="245612381" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/17077" data-hovercard-type="pull_request" data-hovercard-url="/pandas-dev/pandas/pull/17077/hovercard" href="https://github.com/pandas-dev/pandas/pull/17077">#17077</a></p>
<p dir="auto">Now that a <code class="notranslate">cache</code> keyword has been added to <code class="notranslate">to_datetime</code>, ideally the default should be set to <code class="notranslate">cache='infer'</code> which would inspect the input data to determine whether caching would be a more efficient conversion.</p>
<p dir="auto">From some research (<a href="https://github.com/pandas-dev/pandas/pull/17077#issuecomment-338304458" data-hovercard-type="pull_request" data-hovercard-url="/pandas-dev/pandas/pull/17077/hovercard">here</a> and <a href="https://github.com/pandas-dev/pandas/pull/17077#issuecomment-338116879" data-hovercard-type="pull_request" data-hovercard-url="/pandas-dev/pandas/pull/17077/hovercard">here</a>), date strings, especially ones with timezones offsets, can benefit from conversion with a cache of dates. The rules of thumb of whether to convert with a cache should be based on a combination of input data type, proportion of duplicate values, and number of dates to convert.</p>
<p dir="auto">Additionally, I'd be nice to resolve existing <code class="notranslate">to_datetime</code> performance issues (e.g. <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="254603825" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/17410" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/17410/hovercard" href="https://github.com/pandas-dev/pandas/issues/17410">#17410</a>) just so the rules of thumb informing the inference step are not misguided by these issues.</p> | 0 |
<h2 dir="auto"><g-emoji class="g-emoji" alias="rocket" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f680.png">🚀</g-emoji> Feature</h2>
<p dir="auto">Currently, the <code class="notranslate">DataParallel</code>-based approach for distributed training does not support complex tensors. Some collective Operations (operations involving communication between multiple nodes in a distributed training setup) that are a part of the <code class="notranslate">torch.distributed</code> package are currently in the process of supporting complex-valued tensors. Since underlying collective libraries such as NCCL do not natively support complex types, we instead use constant-time views, such as <code class="notranslate">torch.view_as_real</code> and <code class="notranslate">torch.view_as_complex</code>.</p>
<p dir="auto">Since the <code class="notranslate">DataParallel</code> package uses a collective called <code class="notranslate">broadcast_coalesced</code> in order to duplicate the model across nodes, complex tensor support must be added to <code class="notranslate">broadcast_coalesced</code> in order to enable distributed training with complex tensors using <code class="notranslate">DataParallel</code>.</p>
<h2 dir="auto">References</h2>
<p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="713837134" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/45760" data-hovercard-type="issue" data-hovercard-url="/pytorch/pytorch/issues/45760/hovercard" href="https://github.com/pytorch/pytorch/issues/45760">#45760</a>: Umbrella Issue for Complex Tensor Support<br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="727779220" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/46745" data-hovercard-type="issue" data-hovercard-url="/pytorch/pytorch/issues/46745/hovercard" href="https://github.com/pytorch/pytorch/issues/46745">#46745</a>: User Request for Complex Tensor Support in DataParallel<br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="715242595" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/45879" data-hovercard-type="pull_request" data-hovercard-url="/pytorch/pytorch/pull/45879/hovercard" href="https://github.com/pytorch/pytorch/pull/45879">#45879</a>: Example PR that added Complex Tensor Support to some collectives</p>
<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> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jiayisuse/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jiayisuse">@jiayisuse</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/agolynski/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/agolynski">@agolynski</a></p> | <h2 dir="auto"><g-emoji class="g-emoji" alias="question" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2753.png">❓</g-emoji> Questions and Help</h2>
<p dir="auto">Does JIT trace support the model with MKLDNN layout?</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import torch
import torchvision
from torch.utils import mkldnn as mkldnn_utils
# An instance of your model.
model = torchvision.models.resnet18(pretrained=True)
# Switch the model to eval model
model.eval()
model = mkldnn_utils.to_mkldnn(model)
# An example input you would normally provide to your model's forward() method.
example = torch.rand(1, 3, 224, 224).to_mkldnn()
# Use torch.jit.trace to generate a torch.jit.ScriptModule via tracing.
traced_script_module = torch.jit.trace(model, example)
# Save the TorchScript model
traced_script_module.save("traced_resnet_model.pt")"><pre class="notranslate"><code class="notranslate">import torch
import torchvision
from torch.utils import mkldnn as mkldnn_utils
# An instance of your model.
model = torchvision.models.resnet18(pretrained=True)
# Switch the model to eval model
model.eval()
model = mkldnn_utils.to_mkldnn(model)
# An example input you would normally provide to your model's forward() method.
example = torch.rand(1, 3, 224, 224).to_mkldnn()
# Use torch.jit.trace to generate a torch.jit.ScriptModule via tracing.
traced_script_module = torch.jit.trace(model, example)
# Save the TorchScript model
traced_script_module.save("traced_resnet_model.pt")
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last):
File "pytorch.py", line 17, in <module>
traced_script_module = torch.jit.trace(model, example)
File "/home/ubuntu/.local/lib/python3.6/site-packages/torch/jit/__init__.py", line 955, in trace
check_tolerance, strict, _force_outplace, _module_class)
File "/home/ubuntu/.local/lib/python3.6/site-packages/torch/jit/__init__.py", line 1119, in trace_module
check_tolerance, strict, _force_outplace, True, _module_class)
File "/home/ubuntu/.local/lib/python3.6/site-packages/torch/autograd/grad_mode.py", line 15, in decorate_context
return func(*args, **kwargs)
File "/home/ubuntu/.local/lib/python3.6/site-packages/torch/jit/__init__.py", line 597, in _check_trace
copied_dict[name] = _clone_inputs(data)
File "/home/ubuntu/.local/lib/python3.6/site-packages/torch/jit/__init__.py", line 450, in _clone_inputs
clone_input, condition_msg="tensors")(args)
File "/home/ubuntu/.local/lib/python3.6/site-packages/torch/autograd/function.py", line 263, in _map
return fn(obj)
File "/home/ubuntu/.local/lib/python3.6/site-packages/torch/jit/__init__.py", line 443, in clone_input
v = a.detach().clone(memory_format=torch.preserve_format).requires_grad_(a.requires_grad)
RuntimeError: unsupported memory format option Preserve"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last):
File "pytorch.py", line 17, in <module>
traced_script_module = torch.jit.trace(model, example)
File "/home/ubuntu/.local/lib/python3.6/site-packages/torch/jit/__init__.py", line 955, in trace
check_tolerance, strict, _force_outplace, _module_class)
File "/home/ubuntu/.local/lib/python3.6/site-packages/torch/jit/__init__.py", line 1119, in trace_module
check_tolerance, strict, _force_outplace, True, _module_class)
File "/home/ubuntu/.local/lib/python3.6/site-packages/torch/autograd/grad_mode.py", line 15, in decorate_context
return func(*args, **kwargs)
File "/home/ubuntu/.local/lib/python3.6/site-packages/torch/jit/__init__.py", line 597, in _check_trace
copied_dict[name] = _clone_inputs(data)
File "/home/ubuntu/.local/lib/python3.6/site-packages/torch/jit/__init__.py", line 450, in _clone_inputs
clone_input, condition_msg="tensors")(args)
File "/home/ubuntu/.local/lib/python3.6/site-packages/torch/autograd/function.py", line 263, in _map
return fn(obj)
File "/home/ubuntu/.local/lib/python3.6/site-packages/torch/jit/__init__.py", line 443, in clone_input
v = a.detach().clone(memory_format=torch.preserve_format).requires_grad_(a.requires_grad)
RuntimeError: unsupported memory format option Preserve
</code></pre></div>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/suo/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/suo">@suo</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gmagogsfm/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gmagogsfm">@gmagogsfm</a></p> | 0 |
<p dir="auto">Elasticsearch version 5.0 Alpha-2</p>
<p dir="auto">JVM version 1.8.0_91</p>
<p dir="auto">OS version Windows 7</p>
<p dir="auto"><strong>Description of the problem including expected versus actual behavior</strong>:<br>
Lucene throws the following error when running the Date Range query below. Files to reproduce are attached.</p>
<p dir="auto">IllegalArgumentException[field="inceptionDate" is unrecognized];<br>
Caused by: java.lang.IllegalArgumentException: field="inceptionDate" is unrecognized<br>
at org.apache.lucene.codecs.lucene60.Lucene60PointsReader.getBKDReader(Lucene60PointsReader.java:120).</p>
<ol dir="auto">
<li>
<p dir="auto">Schema included in mapping.txt file</p>
</li>
<li>
<p dir="auto">ES dump included in dump.txt</p>
</li>
<li>
<p dir="auto">stack trace in log.txt<br>
{<br>
"query" : {<br>
"range" : {<br>
<a href="https://github.com/elastic/elasticsearch/files/273652/log.txt">log.txt</a><br>
<a href="https://github.com/elastic/elasticsearch/files/273651/mapping.txt">mapping.txt</a><br>
<a href="https://github.com/elastic/elasticsearch/files/273653/dump.txt">dump.txt</a></p>
<p dir="auto">"inceptionDate" : {<br>
"from" : "10/1/1980",<br>
"to" : "12/31/2015",<br>
"include_lower" : true,<br>
"include_upper" : true,<br>
"boost" : 1.0<br>
}<br>
}<br>
},<br>
"fields" : [ "orgType", "inceptionDate", "name", "id", "qualityRating", "version", "parentId", "descp" ]<br>
}<br>
<strong>Provide logs (if relevant)</strong>:</p>
</li>
</ol>
<p dir="auto"><strong>Describe the feature</strong>:</p> | <p dir="auto">The static helpers on PointValues throws an exception if a leaf has points indexed but not for the given field.<br>
When using this function in es the exception is never caught which could lead to error in search request or field stats request.<br>
The problem has been fixed in Lucene: <a href="https://issues.apache.org/jira/browse/LUCENE-7257" rel="nofollow">https://issues.apache.org/jira/browse/LUCENE-7257</a> but we agreed with <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jpountz/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jpountz">@jpountz</a> that we should have a temporary fix in es that we could remove afterward.<br>
The proposal is to have a XPointValues which acts exactly like the PointValues with the LUCENE-7257 patch and to use this class to call all the static helpers in es.</p> | 1 |
<p dir="auto">While i'm using proxies just get always this error.<br>
I've try several times at least i resolved by removing the "s" in the https: proxy too as suggested in <a href="https://stackoverflow.com/questions/65516325/ssl-wrong-version-number-on-python-request" rel="nofollow">this topic</a>:</p>
<p dir="auto">I think this problem is related to the last version, because i've tried on an older one and it works great.</p>
<h2 dir="auto">Solution Steps</h2>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import requests
...
self.proxies = {
'http': f'http://...:8080/',
'https': f'http://...:8080/'
}
def get(self, url):
request_url = self.base_url + url
return requests.get(request_url, headers=self.headers, proxies=self.proxies)"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">requests</span>
...
<span class="pl-s1">self</span>.<span class="pl-s1">proxies</span> <span class="pl-c1">=</span> {
<span class="pl-s">'http'</span>: <span class="pl-s">f'http://...:8080/'</span>,
<span class="pl-s">'https'</span>: <span class="pl-s">f'http://...:8080/'</span>
}
<span class="pl-k">def</span> <span class="pl-en">get</span>(<span class="pl-s1">self</span>, <span class="pl-s1">url</span>):
<span class="pl-s1">request_url</span> <span class="pl-c1">=</span> <span class="pl-s1">self</span>.<span class="pl-s1">base_url</span> <span class="pl-c1">+</span> <span class="pl-s1">url</span>
<span class="pl-k">return</span> <span class="pl-s1">requests</span>.<span class="pl-en">get</span>(<span class="pl-s1">request_url</span>, <span class="pl-s1">headers</span><span class="pl-c1">=</span><span class="pl-s1">self</span>.<span class="pl-s1">headers</span>, <span class="pl-s1">proxies</span><span class="pl-c1">=</span><span class="pl-s1">self</span>.<span class="pl-s1">proxies</span>)</pre></div>
<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="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"chardet": {
"version": "4.0.0"
},
"cryptography": {
"version": ""
},
"idna": {
"version": "2.10"
},
"implementation": {
"name": "CPython",
"version": "3.9.5"
},
"platform": {
"release": "10",
"system": "Windows"
},
"pyOpenSSL": {
"openssl_version": "",
"version": null
},
"requests": {
"version": "2.25.1"
},
"system_ssl": {
"version": "101010bf"
},
"urllib3": {
"version": "1.26.5"
},
"using_pyopenssl": false
}"><pre class="notranslate"><code class="notranslate">{
"chardet": {
"version": "4.0.0"
},
"cryptography": {
"version": ""
},
"idna": {
"version": "2.10"
},
"implementation": {
"name": "CPython",
"version": "3.9.5"
},
"platform": {
"release": "10",
"system": "Windows"
},
"pyOpenSSL": {
"openssl_version": "",
"version": null
},
"requests": {
"version": "2.25.1"
},
"system_ssl": {
"version": "101010bf"
},
"urllib3": {
"version": "1.26.5"
},
"using_pyopenssl": false
}
</code></pre></div> | <p dir="auto">With the upgrade to 2.5.3, my application suddenly broke. I've tracked it down to a loss of headers. The response includes two "WWW-Authenticate" headers, but only one is returned in the header list. This appears to be a urllib3 bug.</p> | 0 |
<p dir="auto">kube-down script delete VPC, subnet and igw, but not delete the DHCP option set created in kube-up</p> | <p dir="auto">After running kube-down I consistently see that it leaves the following around:</p>
<ul dir="auto">
<li>dhcp-options</li>
<li>key-pair</li>
</ul> | 1 |
<p dir="auto">Per <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/quinton-hoole/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/quinton-hoole">@quinton-hoole</a>'s request, I'm attempting to chart a well established path such that we can address some of the larger communications issues. Hopefully this can serve as a jump point for the communications issues we wish to target in the 1.3 cycle.</p>
<h2 dir="auto">Problem Statement</h2>
<p dir="auto">The <strong>overhead</strong> and data flow of the kubernetes control plane has led to a series of artificial limits, or <strong>caps</strong> (qps,max-inflight, etc), that have been placed on different system components. These caps are an attempt to limit the system from overloading the api-server, and to ensure certain SLOs are met. The core issue is not that the caps exist, but the fact that the interaction between the components can cause system overload in the first place.</p>
<p dir="auto">This epic, targeted for 1.3, is intended to help breakdown some of the different facets of this issue as we see them today, and address each aspect independently, provided there are resources available to do so.</p>
<p dir="auto">The higher level objective would be to fix the system where possible, in order to prevent the degenerative case of overloading from occurring... at all.</p>
<h2 dir="auto">Breakdown</h2>
<p dir="auto">From operations and tests, we have witnessed the following issues which relate to this broader epic:</p>
<p dir="auto"><strong>P1:</strong> There are a large number of connections in the system. (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="133041411" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/21081" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/21081/hovercard" href="https://github.com/kubernetes/kubernetes/issues/21081">#21081</a>)</p>
<ul dir="auto">
<li><em>Worst offenders are not quantified?</em></li>
<li><strong>A1.1:</strong> Analyze api-server metrics, and add metrics on who is creating the most connections, investigate their usage, and optimize their workflow. Different solutions may exist depending on the situation, which in turn may become their own issues. (This is a meta-problem).</li>
<li><em>Each new connection incurs an overhead in the system (TLS+kernel+application), and there isn't a single choke-point to throttle during overloaded situations.</em></li>
<li><strong>A1.2:</strong> Pursue http2 for internal communications, each component should have only 1, or 2 connections to the main api-server, as well as golang 1.6 for the decreased EC/TLS overhead.</li>
</ul>
<p dir="auto"><strong>P2:</strong> Components do not properly back-off under extraneous load conditions.</p>
<ul dir="auto">
<li><em>We can create a number of conditions which can cause the system to overload, e.g. fail-over, or aggressive loading.</em></li>
<li><strong>A2.1:</strong> Once we've addressed P1, and have a single choke-point it's relatively trivial to back-off during loaded situations.</li>
</ul>
<p dir="auto"><strong>P3</strong>: Enconding and decoding dominate api-server load</p>
<ul dir="auto">
<li><strong>A3.1:</strong> We've known this for a long time, and there are a series of issues around protobuf and gRPC to address. <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/wojtek-t/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/wojtek-t">@wojtek-t</a> has an issue list.</li>
</ul>
<p dir="auto">/cc <a class="team-mention js-team-mention notranslate" data-error-text="Failed to load team members" data-id="3959732" data-permission-text="Team members are private" data-url="/orgs/kubernetes/teams/sig-scalability/members" data-hovercard-type="team" data-hovercard-url="/orgs/kubernetes/teams/sig-scalability/hovercard" href="https://github.com/orgs/kubernetes/teams/sig-scalability">@kubernetes/sig-scalability</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jeremyeder/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jeremyeder">@jeremyeder</a></p> | <p dir="auto">Currently we manually convert the yaml/json files embedded in markdown files. To automate this process, we propose to add features to the kube-version-change tool:</p>
<ul dir="auto">
<li>we need to remove the default fields in the output of kube-version-change tool</li>
<li>we need to add a flag to kube-version-change that commands the tool to recursively convert all the .md files in a directory</li>
</ul>
<p dir="auto">Some code that maybe reused:</p>
<ul dir="auto">
<li><code class="notranslate">sampleRegexp</code> in examples/examples_test.go matches yaml/json block in markdown files</li>
</ul>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/nikhiljindal/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nikhiljindal">@nikhiljindal</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/krousey/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/krousey">@krousey</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bgrant0607/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bgrant0607">@bgrant0607</a> could you @ more folks? Thank you.</p> | 0 |
<p dir="auto">The file dialog opens from a renderer process, but most of the icons are missing for the files and the folders.</p>
<p dir="auto"><a href="http://imgur.com/BZWIYaI" rel="nofollow">screenshot</a></p>
<ul dir="auto">
<li>Electron version: 0.37.2</li>
<li>Operating system: OSX 10.11.4</li>
</ul> | <p dir="auto">I want to handle saving of a file to set the download path:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" mainWindow.webContents.session.on('will-download', function(event, item) {
var filename = item.getFilename();
var savePath = require('dialog').showSaveDialog({
title: filename,
defaultPath: require('os').homedir() + '/' + filename
});
if (savePath) {
item.setSavePath(savePath);
} else {
item.cancel();
}
});"><pre class="notranslate"> <span class="pl-s1">mainWindow</span><span class="pl-kos">.</span><span class="pl-c1">webContents</span><span class="pl-kos">.</span><span class="pl-c1">session</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">'will-download'</span><span class="pl-kos">,</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">event</span><span class="pl-kos">,</span> <span class="pl-s1">item</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">filename</span> <span class="pl-c1">=</span> <span class="pl-s1">item</span><span class="pl-kos">.</span><span class="pl-en">getFilename</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">savePath</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'dialog'</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">showSaveDialog</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">title</span>: <span class="pl-s1">filename</span><span class="pl-kos">,</span>
<span class="pl-c1">defaultPath</span>: <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'os'</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">homedir</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">+</span> <span class="pl-s">'/'</span> <span class="pl-c1">+</span> <span class="pl-s1">filename</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">savePath</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">item</span><span class="pl-kos">.</span><span class="pl-en">setSavePath</span><span class="pl-kos">(</span><span class="pl-s1">savePath</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-kos">{</span>
<span class="pl-s1">item</span><span class="pl-kos">.</span><span class="pl-en">cancel</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">It's all good, except that the dialog comes out without icons for <del>files and</del> folders (file type icons are fine, only folder icons), and is missing the usual items in the left sidebar:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/351592/12583848/9d643414-c43c-11e5-88ca-101249f60846.png"><img src="https://cloud.githubusercontent.com/assets/351592/12583848/9d643414-c43c-11e5-88ca-101249f60846.png" alt="screen shot 2016-01-26 at 14 48 17" style="max-width: 100%;"></a><br>
My electron version is <code class="notranslate">0.36.4</code>, running OSX <code class="notranslate">10.11.2</code>.</p>
<p dir="auto">Is it possible to have the icons back and make the dialog look more native? Thanks!</p> | 1 |
<p dir="auto">Examples:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class C<R>
{
value : R;
constructor(v? : R) { this.value = v }
}
// OK, no type error
var a : C<string> = new C("x");
// OK, type error
var b : C<string> = new C(1);
var c : C<string> = true ? new C("x") : new C(1);
var d : C<string> = new C(1) || new C<string>(null);
function e() : C<string> { if (false) { return new C(null) } else { return new C(1) } }
// Bad, no type error
var f : C<string> = true ? new C(null) : new C(1);
var g : C<string> = true ? new C(1) : new C(null);
var h : C<string> = (() => { if (false) { return new C(null) } else { return new C(1) } })();
var i : C<string> = new C(1) || new C(null);"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-v">C</span><span class="pl-c1"><</span><span class="pl-ent">R</span><span class="pl-c1">></span>
<span class="pl-kos">{</span>
<span class="pl-s1">value</span> : <span class="pl-v">R</span><span class="pl-kos">;</span>
<span class="pl-en">constructor</span><span class="pl-kos">(</span><span class="pl-s1">v</span>?<span class="pl-s1"></span> : <span class="pl-v">R</span><span class="pl-kos">)</span><span class="pl-kos"></span> <span class="pl-kos">{</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">value</span> <span class="pl-c1">=</span> <span class="pl-s1">v</span> <span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-c">// OK, no type error</span>
<span class="pl-k">var</span> <span class="pl-s1">a</span> : <span class="pl-v">C</span><span class="pl-c1"><</span><span class="pl-ent">string</span><span class="pl-c1">></span> = new C("x");
// OK, type error
var b : C<span class="pl-c1"><</span><span class="pl-ent">string</span><span class="pl-c1">></span> = new C(1);
var c : C<span class="pl-c1"><</span><span class="pl-ent">string</span><span class="pl-c1">></span> = true ? new C("x") : new C(1);
var d : C<span class="pl-c1"><</span><span class="pl-ent">string</span><span class="pl-c1">></span> = new C(1) || new C<span class="pl-c1"><</span><span class="pl-ent">string</span><span class="pl-c1">></span>(null);
function e() : C<span class="pl-c1"><</span><span class="pl-ent">string</span><span class="pl-c1">></span> <span class="pl-kos">{</span> <span class="pl-en">if</span> <span class="pl-kos">(</span><span class="pl-c1">false</span><span class="pl-kos">)</span><span class="pl-kos"></span> <span class="pl-kos">{</span> <span class="pl-s1">return</span> <span class="pl-k">new</span> <span class="pl-v">C</span><span class="pl-kos">(</span><span class="pl-c1">null</span><span class="pl-kos">)</span> <span class="pl-kos">}</span> else <span class="pl-kos">{</span> <span class="pl-s1">return</span> <span class="pl-k">new</span> <span class="pl-v">C</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-kos">}</span>
<span class="pl-c">// Bad, no type error</span>
<span class="pl-k">var</span> <span class="pl-s1">f</span> : <span class="pl-v">C</span><span class="pl-c1"><</span><span class="pl-ent">string</span><span class="pl-c1">></span> = true ? new C(null) : new C(1);
var g : C<span class="pl-c1"><</span><span class="pl-ent">string</span><span class="pl-c1">></span> = true ? new C(1) : new C(null);
var h : C<span class="pl-c1"><</span><span class="pl-ent">string</span><span class="pl-c1">></span> = (() =<span class="pl-c1">></span> <span class="pl-kos">{</span> <span class="pl-en">if</span> <span class="pl-kos">(</span><span class="pl-c1">false</span><span class="pl-kos">)</span><span class="pl-kos"></span> <span class="pl-kos">{</span> <span class="pl-s1">return</span> <span class="pl-k">new</span> <span class="pl-v">C</span><span class="pl-kos">(</span><span class="pl-c1">null</span><span class="pl-kos">)</span> <span class="pl-kos">}</span> else <span class="pl-kos">{</span> <span class="pl-s1">return</span> <span class="pl-k">new</span> <span class="pl-v">C</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-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">var</span> <span class="pl-s1">i</span> : <span class="pl-v">C</span><span class="pl-c1"><</span><span class="pl-ent">string</span><span class="pl-c1">></span> = new C(1) || new C(null);</pre></div>
<p dir="auto">Here, any time <code class="notranslate">new C(1)</code> is used it should have the type <code class="notranslate">C<number></code> and not unify with <code class="notranslate">C<string></code>. It seems like <code class="notranslate">R</code> not being known in <code class="notranslate">new C(null)</code> prevents these other type errors from occurring.</p> | <p dir="auto">Courtesy of <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/JsonFreeman/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/JsonFreeman">@JsonFreeman</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="function f<T>(t: T): T { return null }
f(null);"><pre class="notranslate"><code class="notranslate">function f<T>(t: T): T { return null }
f(null);
</code></pre></div>
<p dir="auto">When compiling with -noImplicitAny, we don't get an error here, even though T is implicitly inferred to be any when we call f</p> | 1 |
<p dir="auto">I have a dataframe looks like this, and its column 2 is missing:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/6269369/8245984/6ff1798c-1669-11e5-88b1-2c27a6b5f2fb.png"><img src="https://cloud.githubusercontent.com/assets/6269369/8245984/6ff1798c-1669-11e5-88b1-2c27a6b5f2fb.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">When I try to select the max date in each row, I got all NaN in return:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/6269369/8246090/eea64bbc-166a-11e5-9fb3-668a37a2cf3a.png"><img src="https://cloud.githubusercontent.com/assets/6269369/8246090/eea64bbc-166a-11e5-9fb3-668a37a2cf3a.png" alt="img2" style="max-width: 100%;"></a></p>
<p dir="auto">However, If the dataframe's type is float64, the selection work as expected.</p> | <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="df.to_sql('TableNameHere', engine, if_exists='append', chunksize=900, index=False)
"><pre class="notranslate"><span class="pl-s1">df</span>.<span class="pl-en">to_sql</span>(<span class="pl-s">'TableNameHere'</span>, <span class="pl-s1">engine</span>, <span class="pl-s1">if_exists</span><span class="pl-c1">=</span><span class="pl-s">'append'</span>, <span class="pl-s1">chunksize</span><span class="pl-c1">=</span><span class="pl-c1">900</span>, <span class="pl-s1">index</span><span class="pl-c1">=</span><span class="pl-c1">False</span>)</pre></div>
<h4 dir="auto">Problem description</h4>
<p dir="auto">I am trying to append a large DataFrame to a SQL table. Some of the rows in the DataFrame are duplicates of those in the SQL table, some are not. But <code class="notranslate">to_sql()</code> completely stops executing if even one duplicate is detected.</p>
<p dir="auto">It would make sense for <code class="notranslate">to_sql(if_exists='append')</code> to merely warn the user which rows had duplicate keys and just continue to add the new rows, not completely stop executing. For large datasets, you will likely have duplicates but want to ignore them.</p>
<p dir="auto">Maybe add an argument to ignore duplicates and keep executing? Perhaps an additional <code class="notranslate">if_exists</code> option like <code class="notranslate">'append_skipdupes'</code>?</p>
<h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4>
<details>
INSTALLED VERSIONS
------------------
commit: None
python: 3.6.0.final.0
python-bits: 64
OS: Windows
OS-release: 10
machine: AMD64
processor: Intel64 Family 6 Model 60 Stepping 3, GenuineIntel
byteorder: little
LC_ALL: None
LANG: None
LOCALE: English_United States.1252
<p dir="auto">pandas: 0.19.2<br>
nose: None<br>
pip: 9.0.1<br>
setuptools: 28.8.0<br>
Cython: None<br>
numpy: 1.12.0<br>
scipy: None<br>
statsmodels: None<br>
xarray: None<br>
IPython: 5.3.0<br>
sphinx: None<br>
patsy: None<br>
dateutil: 2.6.0<br>
pytz: 2016.10<br>
blosc: None<br>
bottleneck: None<br>
tables: None<br>
numexpr: None<br>
matplotlib: None<br>
openpyxl: None<br>
xlrd: None<br>
xlwt: None<br>
xlsxwriter: None<br>
lxml: None<br>
bs4: None<br>
html5lib: 0.999999999<br>
httplib2: None<br>
apiclient: None<br>
sqlalchemy: 1.1.9<br>
pymysql: None<br>
psycopg2: None<br>
jinja2: 2.9.5<br>
boto: None<br>
pandas_datareader: None</p>
</details> | 0 |
<h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 3.3</li>
<li>Operating System / Platform => Ubuntu 16.10</li>
<li>Compiler => gcc 6.3</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">I created a DNN network in Keras, very similar to LeNet (Conv->MaxPool->Conv->MaxPool->Conv->MaxPool->Flatten (Reshape)->Dense->Output(2 classes, Softmax)</p>
<p dir="auto">The last level of the network was defined in the following way:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" model.add(
Dense(
units = 2,
activation="softmax")
)"><pre class="notranslate"><code class="notranslate"> model.add(
Dense(
units = 2,
activation="softmax")
)
</code></pre></div>
<p dir="auto">When I tried to export it to TensorFlow, Keras introduced at the last step a <code class="notranslate">StridedSlice</code> operation (I don't really know why).</p>
<p dir="auto">As this type of layer is not implemented, OpenCV throws an exception when trying to load the <em>.pb</em> file</p>
<p dir="auto">Can you implement this layer type to OpenCV?<br>
Or is there a workaround to eliminate this layer type when creating the network?</p>
<h5 dir="auto">Steps to reproduce</h5>
<p dir="auto">The <strong>.pb</strong> <a href="https://github.com/opencv/opencv/files/1321685/final_net.zip">final_net.zip</a> file is attached to this report.</p>
<p dir="auto">Python code to generate the network (very similar to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="237401032" data-permission-text="Title is private" data-url="https://github.com/opencv/opencv_contrib/issues/1241" data-hovercard-type="issue" data-hovercard-url="/opencv/opencv_contrib/issues/1241/hovercard" href="https://github.com/opencv/opencv_contrib/issues/1241">opencv/opencv_contrib#1241</a> )</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="adam = Adam(lr = l_r)
model = Sequential()
#Conv2D
model.add(
Conv2D(
filters = nb_filters[0],
kernel_size = kernel_size[0],
strides = (1,1),
padding = "same",
activation = "relu",
kernel_initializer="random_normal",
input_shape = (x_shape, y_shape,3)
)
)
model.add( Dropout(drop[0]) )
#MaxPooling2D
model.add( MaxPooling2D( pool_size = (2,2) ) )
model.add( Dropout(drop[1]) )
#Conv2D
model.add(
Conv2D(
filters = nb_filters[1],
kernel_size = kernel_size[1],
strides = (1,1),
padding="same",
activation="relu",
kernel_initializer="random_normal")
)
model.add( Dropout(drop[2]) )
#MaxPooling2D
model.add( MaxPooling2D( pool_size = (2,2) ) )
model.add( Dropout(drop[3]) )
#Conv2D
model.add(
Conv2D(
filters = nb_filters[2],
kernel_size = kernel_size[2],
strides = (1,1),
padding="same",
activation = "relu",
kernel_initializer="random_normal")
)
model.add(Dropout(drop[4]) )
#MaxPooling2D
model.add( MaxPooling2D( pool_size = (2,2) ) )
model.add( Dropout(drop[5]) )
# Changed Flatten to Reshape
model.add( Reshape(1024,) )
#Output
model.add(
Dense(
units = 2,
activation="softmax")
)
model.compile(
optimizer = adam,
loss = "binary_crossentropy",
metrics = ["accuracy"])"><pre class="notranslate"><code class="notranslate">adam = Adam(lr = l_r)
model = Sequential()
#Conv2D
model.add(
Conv2D(
filters = nb_filters[0],
kernel_size = kernel_size[0],
strides = (1,1),
padding = "same",
activation = "relu",
kernel_initializer="random_normal",
input_shape = (x_shape, y_shape,3)
)
)
model.add( Dropout(drop[0]) )
#MaxPooling2D
model.add( MaxPooling2D( pool_size = (2,2) ) )
model.add( Dropout(drop[1]) )
#Conv2D
model.add(
Conv2D(
filters = nb_filters[1],
kernel_size = kernel_size[1],
strides = (1,1),
padding="same",
activation="relu",
kernel_initializer="random_normal")
)
model.add( Dropout(drop[2]) )
#MaxPooling2D
model.add( MaxPooling2D( pool_size = (2,2) ) )
model.add( Dropout(drop[3]) )
#Conv2D
model.add(
Conv2D(
filters = nb_filters[2],
kernel_size = kernel_size[2],
strides = (1,1),
padding="same",
activation = "relu",
kernel_initializer="random_normal")
)
model.add(Dropout(drop[4]) )
#MaxPooling2D
model.add( MaxPooling2D( pool_size = (2,2) ) )
model.add( Dropout(drop[5]) )
# Changed Flatten to Reshape
model.add( Reshape(1024,) )
#Output
model.add(
Dense(
units = 2,
activation="softmax")
)
model.compile(
optimizer = adam,
loss = "binary_crossentropy",
metrics = ["accuracy"])
</code></pre></div>
<p dir="auto">Code to save the network:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="sess = K.get_session()
K.set_learning_phase(0)
net_model = load_model(weight_file_path)
pred = [None]*num_output
pred_node_names = [None]*num_output
for i in range(num_output):
pred_node_names[i] = prefix_output_node_names_of_final_network+str(i)
pred[i] = tf.identity(net_model.output[i], name=pred_node_names[i])
print('output nodes names are: ', pred_node_names)
constant_graph = graph_util.convert_variables_to_constants(sess, sess.graph.as_graph_def(), pred_node_names)
graph_io.write_graph(constant_graph, output_fld, output_graph_name, as_text=False)
print('saved the constant graph (ready for inference) at:',osp.join(output_fld, output_graph_name))"><pre class="notranslate"><code class="notranslate">sess = K.get_session()
K.set_learning_phase(0)
net_model = load_model(weight_file_path)
pred = [None]*num_output
pred_node_names = [None]*num_output
for i in range(num_output):
pred_node_names[i] = prefix_output_node_names_of_final_network+str(i)
pred[i] = tf.identity(net_model.output[i], name=pred_node_names[i])
print('output nodes names are: ', pred_node_names)
constant_graph = graph_util.convert_variables_to_constants(sess, sess.graph.as_graph_def(), pred_node_names)
graph_io.write_graph(constant_graph, output_fld, output_graph_name, as_text=False)
print('saved the constant graph (ready for inference) at:',osp.join(output_fld, output_graph_name))
</code></pre></div> | <h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 3.4.1-dev (<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/opencv/opencv/commit/0a6d1900956b5ef4713dd6df1eaf763697572851/hovercard" href="https://github.com/opencv/opencv/commit/0a6d1900956b5ef4713dd6df1eaf763697572851"><tt>0a6d190</tt></a>)</li>
<li>Operating System / Platform => Ubuntu 16.04 64 bits</li>
<li>Compiler => gcc 5.4.0</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">Following code produces a segmentation fault when using:<br>
<code class="notranslate">BFMatcher matcher = new BFMatcher();</code><br>
but not when using instead:<br>
<code class="notranslate">DescriptorMatcher matcher = DescriptorMatcher.create(DescriptorMatcher.BRUTEFORCE);</code></p>
<h5 dir="auto">Steps to reproduce</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.core.MatOfDMatch;
import org.opencv.core.MatOfKeyPoint;
import org.opencv.features2d.BFMatcher;
import org.opencv.features2d.Features2d;
import org.opencv.highgui.HighGui;
import org.opencv.imgcodecs.Imgcodecs;
import org.opencv.xfeatures2d.SURF;
class SURFMatching {
public void run(String[] args) {
String filename1 = args.length > 1 ? args[0] : "../data/box.png";
String filename2 = args.length > 1 ? args[1] : "../data/box_in_scene.png";
Mat img1 = Imgcodecs.imread(filename1, Imgcodecs.IMREAD_GRAYSCALE);
Mat img2 = Imgcodecs.imread(filename2, Imgcodecs.IMREAD_GRAYSCALE);
if (img1.empty() || img2.empty()) {
System.err.println("Cannot read images!");
System.exit(0);
}
//-- Step 1: Detect the keypoints using SURF Detector, compute the descriptors
double hessianThreshold = 400;
int nOctaves = 4, nOctaveLayers = 3;
boolean extended = false, upright = false;
SURF detector = SURF.create(hessianThreshold, nOctaves, nOctaveLayers, extended, upright);
MatOfKeyPoint keypoints1 = new MatOfKeyPoint(), keypoints2 = new MatOfKeyPoint();
Mat descriptors1 = new Mat(), descriptors2 = new Mat();
detector.detectAndCompute(img1, new Mat(), keypoints1, descriptors1);
detector.detectAndCompute(img2, new Mat(), keypoints2, descriptors2);
//-- Step 2: Matching descriptor vectors with a brute force matcher
// Since SURF is a floating-point descriptor NORM_L2 is used
// DescriptorMatcher matcher = DescriptorMatcher.create(DescriptorMatcher.BRUTEFORCE);
BFMatcher matcher = new BFMatcher();
MatOfDMatch matches = new MatOfDMatch();
matcher.match(descriptors1, descriptors2, matches);
//-- Draw matches
Mat imgMatches = new Mat();
Features2d.drawMatches(img1, keypoints1, img2, keypoints2, matches, imgMatches);
HighGui.imshow("Matches", imgMatches);
HighGui.waitKey(0);
System.exit(0);
}
}
public class SURFMatchingDemo {
public static void main(String[] args) {
// Load the native OpenCV library
System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
new SURFMatching().run(args);
}
}"><pre class="notranslate"><code class="notranslate">import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.core.MatOfDMatch;
import org.opencv.core.MatOfKeyPoint;
import org.opencv.features2d.BFMatcher;
import org.opencv.features2d.Features2d;
import org.opencv.highgui.HighGui;
import org.opencv.imgcodecs.Imgcodecs;
import org.opencv.xfeatures2d.SURF;
class SURFMatching {
public void run(String[] args) {
String filename1 = args.length > 1 ? args[0] : "../data/box.png";
String filename2 = args.length > 1 ? args[1] : "../data/box_in_scene.png";
Mat img1 = Imgcodecs.imread(filename1, Imgcodecs.IMREAD_GRAYSCALE);
Mat img2 = Imgcodecs.imread(filename2, Imgcodecs.IMREAD_GRAYSCALE);
if (img1.empty() || img2.empty()) {
System.err.println("Cannot read images!");
System.exit(0);
}
//-- Step 1: Detect the keypoints using SURF Detector, compute the descriptors
double hessianThreshold = 400;
int nOctaves = 4, nOctaveLayers = 3;
boolean extended = false, upright = false;
SURF detector = SURF.create(hessianThreshold, nOctaves, nOctaveLayers, extended, upright);
MatOfKeyPoint keypoints1 = new MatOfKeyPoint(), keypoints2 = new MatOfKeyPoint();
Mat descriptors1 = new Mat(), descriptors2 = new Mat();
detector.detectAndCompute(img1, new Mat(), keypoints1, descriptors1);
detector.detectAndCompute(img2, new Mat(), keypoints2, descriptors2);
//-- Step 2: Matching descriptor vectors with a brute force matcher
// Since SURF is a floating-point descriptor NORM_L2 is used
// DescriptorMatcher matcher = DescriptorMatcher.create(DescriptorMatcher.BRUTEFORCE);
BFMatcher matcher = new BFMatcher();
MatOfDMatch matches = new MatOfDMatch();
matcher.match(descriptors1, descriptors2, matches);
//-- Draw matches
Mat imgMatches = new Mat();
Features2d.drawMatches(img1, keypoints1, img2, keypoints2, matches, imgMatches);
HighGui.imshow("Matches", imgMatches);
HighGui.waitKey(0);
System.exit(0);
}
}
public class SURFMatchingDemo {
public static void main(String[] args) {
// Load the native OpenCV library
System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
new SURFMatching().run(args);
}
}
</code></pre></div>
<p dir="auto">Maybe related <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="312299713" data-permission-text="Title is private" data-url="https://github.com/opencv/opencv/issues/11268" data-hovercard-type="issue" data-hovercard-url="/opencv/opencv/issues/11268/hovercard" href="https://github.com/opencv/opencv/issues/11268">#11268</a> ?</p>
<p dir="auto">Stacktrace:</p>
<details>
#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x00007fbce0cb9987, pid=4799, tid=0x00007fbd372b3700
#
# JRE version: OpenJDK Runtime Environment (8.0_171-b11) (build 1.8.0_171-8u171-b11-0ubuntu0.16.04.1-b11)
# Java VM: OpenJDK 64-Bit Server VM (25.171-b11 mixed mode linux-amd64 compressed oops)
# Problematic frame:
# C [libopencv_features2d.so.3.4+0xdd987] cv::DescriptorMatcher::match(cv::_InputArray const&, cv::_InputArray const&, std::vector >&, cv::_InputArray const&) const+0x4d
#
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# If you would like to submit a bug report, please visit:
# http://bugreport.java.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#
<p dir="auto">--------------- T H R E A D ---------------</p>
<p dir="auto">Current thread (0x00007fbd3000b000): JavaThread "main" [_thread_in_native, id=4805, stack(0x00007fbd371b3000,0x00007fbd372b4000)]</p>
<p dir="auto">siginfo: si_signo: 11 (SIGSEGV), si_code: 1 (SEGV_MAPERR), si_addr: 0x0000000000000000</p>
<p dir="auto">Registers:<br>
RAX=0x0000000000000000, RBX=0x00007fbcd95e00d0, RCX=0x00007fbd372b2700, RDX=0x00007fbd372b2740<br>
RSP=0x00007fbd372b2580, RBP=0x00007fbd372b2800, RSI=0x00007fbce0f2a400, RDI=0x00007fbd372b25c0<br>
R8 =0x00007fbcd95e00d0, R9 =0x00007fbd30711f60, R10=0x0000000000000ee1, R11=0x00007fbcd88e6b94<br>
R12=0x0000000000000000, R13=0x00007fbd1eb8a638, R14=0x00007fbd372b2858, R15=0x00007fbd3000b000<br>
RIP=0x00007fbce0cb9987, EFLAGS=0x0000000000010202, CSGSFS=0x0000000000000033, ERR=0x0000000000000004<br>
TRAPNO=0x000000000000000e</p>
<p dir="auto">Top of Stack: (sp=0x00007fbd372b2580)<br>
0x00007fbd372b2580: 00000031315f6863 00007fbcd95e00d0<br>
0x00007fbd372b2590: 00007fbd372b2700 00007fbd372b2740<br>
0x00007fbd372b25a0: 00007fbd372b2720 0000000000000000<br>
0x00007fbd372b25b0: 0000000000000000 0000000000000000<br>
0x00007fbd372b25c0: 0000000000000000 0000000000000000<br>
0x00007fbd372b25d0: 0000000000000000 0000000000000000<br>
0x00007fbd372b25e0: 58b848c84e8b4dd8 c300007fbd20bf6a<br>
0x00007fbd372b25f0: 0000000000000000 0000000000000000<br>
0x00007fbd372b2600: 00007fbd1eb8a638 00007fbd30189c80<br>
0x00007fbd372b2610: 00007fbd372b2700 00007fbd1c6c2db8<br>
0x00007fbd372b2620: 00007fbd1eb8a638 00007fbd372b2700<br>
0x00007fbd372b2630: 0000000000000158 00007fbd1c6c21a4<br>
0x00007fbd372b2640: 00007fbd372b2720 00007fbd372b2700<br>
0x00007fbd372b2650: 00007fbd372b2740 00007fbd372b2720<br>
0x00007fbd372b2660: 0000000000000000 00007fbcd95e00d0<br>
0x00007fbd372b2670: 00007fbd30711f60 00007fbd1c5f0aea<br>
0x00007fbd372b2680: 00007fbcd95e00d0 d83c415b5e8a8e00<br>
0x00007fbd372b2690: 00007fbcd95e00d0 00007fbd1c66c35b<br>
0x00007fbd372b26a0: 00007fbd30711f60 00007fbd301f4a80<br>
0x00007fbd372b26b0: 00007fbd301f4a10 00007fbd306f47a0<br>
0x00007fbd372b26c0: 00007fbd372b2810 00007fbd3000b1e0<br>
0x00007fbd372b26d0: 00007fbd372b2760 00007fbd30711f60<br>
0x00007fbd372b26e0: 00007fbd306f47a0 00007fbd301f4a10<br>
0x00007fbd372b26f0: 00007fbd301f4a80 00007fbd3000b000<br>
0x00007fbd372b2700: 0000000000000000 0000000000000000<br>
0x00007fbd372b2710: 0000000000000000 00007fbd3000b000<br>
0x00007fbd372b2720: 00007fbd01010000 00007fbd301f4a10<br>
0x00007fbd372b2730: 0000000000000000 d83c415b5e8a8e00<br>
0x00007fbd372b2740: 00007fbd01010000 00007fbd301f4a80<br>
0x00007fbd372b2750: 0000000000000000 d83c415b5e8a8e00<br>
0x00007fbd372b2760: 00007fbd372b2800 00007fbd1eb8a638<br>
0x00007fbd372b2770: 00007fbd372b2800 00007fbd20bfd407</p>
<p dir="auto">Instructions: (pc=0x00007fbce0cb9987)<br>
0x00007fbce0cb9967: 24 08 01 00 00 31 c0 48 8d 44 24 40 48 8d 35 86<br>
0x00007fbce0cb9977: 0a 27 00 48 89 c7 e8 5e 7a f6 ff 48 8b 44 24 28<br>
0x00007fbce0cb9987: 48 8b 00 48 83 c0 58 48 8b 00 48 8d 4c 24 50 48<br>
0x00007fbce0cb9997: 8b 74 24 28 ba 01 00 00 00 48 89 cf ff d0 48 8d</p>
<p dir="auto">Register to memory mapping:</p>
<p dir="auto">RAX=0x0000000000000000 is an unknown value<br>
RBX=0x00007fbcd95e00d0: <offset 0x10630d0> in /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_core.so.3.4 at 0x00007fbcd857d000<br>
RCX=0x00007fbd372b2700 is pointing into the stack for thread: 0x00007fbd3000b000<br>
RDX=0x00007fbd372b2740 is pointing into the stack for thread: 0x00007fbd3000b000<br>
RSP=0x00007fbd372b2580 is pointing into the stack for thread: 0x00007fbd3000b000<br>
RBP=0x00007fbd372b2800 is pointing into the stack for thread: 0x00007fbd3000b000<br>
RSI=0x00007fbce0f2a400: <offset 0x34e400> in /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_features2d.so.3.4 at 0x00007fbce0bdc000<br>
RDI=0x00007fbd372b25c0 is pointing into the stack for thread: 0x00007fbd3000b000<br>
R8 =0x00007fbcd95e00d0: <offset 0x10630d0> in /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_core.so.3.4 at 0x00007fbcd857d000<br>
R9 =0x00007fbd30711f60 is an unknown value<br>
R10=0x0000000000000ee1 is an unknown value<br>
R11=0x00007fbcd88e6b94: _ZN2cv5utils5trace7details6RegionC1ERKNS3_21LocationStaticStorageE+0 in /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_core.so.3.4 at 0x00007fbcd857d000<br>
R12=0x0000000000000000 is an unknown value<br>
R13={method} {0x00007fbd1eb8a638} 'match_1' '(JJJJ)V' in 'org/opencv/features2d/DescriptorMatcher'<br>
R14=0x00007fbd372b2858 is pointing into the stack for thread: 0x00007fbd3000b000<br>
R15=0x00007fbd3000b000 is a thread</p>
<p dir="auto">Stack: [0x00007fbd371b3000,0x00007fbd372b4000], sp=0x00007fbd372b2580, free space=1021k<br>
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)<br>
C [libopencv_features2d.so.3.4+0xdd987] cv::DescriptorMatcher::match(cv::_InputArray const&, cv::_InputArray const&, std::vector<cv::DMatch, std::allocatorcv::DMatch >&, cv::_InputArray const&) const+0x4d<br>
j org.opencv.features2d.DescriptorMatcher.match(Lorg/opencv/core/Mat;Lorg/opencv/core/Mat;Lorg/opencv/core/MatOfDMatch;)V+20<br>
j SURFMatching.run([Ljava/lang/String;)V+202<br>
j SURFMatchingDemo.main([Ljava/lang/String;)V+14<br>
v ~StubRoutines::call_stub<br>
V [libjvm.so+0x6648eb]<br>
V [libjvm.so+0x68653e]<br>
V [libjvm.so+0x688e6f]<br>
C [libjli.so+0x3552]<br>
C [libjli.so+0x74ad]<br>
C [libpthread.so.0+0x76ba] start_thread+0xca</p>
<p dir="auto">Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)<br>
j org.opencv.features2d.DescriptorMatcher.match_1(JJJJ)V+0<br>
j org.opencv.features2d.DescriptorMatcher.match(Lorg/opencv/core/Mat;Lorg/opencv/core/Mat;Lorg/opencv/core/MatOfDMatch;)V+20<br>
j SURFMatching.run([Ljava/lang/String;)V+202<br>
j SURFMatchingDemo.main([Ljava/lang/String;)V+14<br>
v ~StubRoutines::call_stub</p>
<p dir="auto">--------------- P R O C E S S ---------------</p>
<p dir="auto">Java Threads: ( => current thread )<br>
0x00007fbd300c1000 JavaThread "Service Thread" daemon [_thread_blocked, id=4817, stack(0x00007fbd1ca9d000,0x00007fbd1cb9e000)]<br>
0x00007fbd300bd800 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=4816, stack(0x00007fbd1cb9e000,0x00007fbd1cc9f000)]<br>
0x00007fbd300bc000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=4815, stack(0x00007fbd1cc9f000,0x00007fbd1cda0000)]<br>
0x00007fbd300b9000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=4814, stack(0x00007fbd1cda0000,0x00007fbd1cea1000)]<br>
0x00007fbd300b7800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=4813, stack(0x00007fbd1cea1000,0x00007fbd1cfa2000)]<br>
0x00007fbd30085000 JavaThread "Finalizer" daemon [_thread_blocked, id=4812, stack(0x00007fbd1d27f000,0x00007fbd1d380000)]<br>
0x00007fbd30080800 JavaThread "Reference Handler" daemon [_thread_blocked, id=4811, stack(0x00007fbd1d380000,0x00007fbd1d481000)]<br>
=>0x00007fbd3000b000 JavaThread "main" [_thread_in_native, id=4805, stack(0x00007fbd371b3000,0x00007fbd372b4000)]</p>
<p dir="auto">Other Threads:<br>
0x00007fbd30078800 VMThread [stack: 0x00007fbd1d481000,0x00007fbd1d582000] [id=4810]<br>
0x00007fbd300c3000 WatcherThread [stack: 0x00007fbd1c99c000,0x00007fbd1ca9d000] [id=4818]</p>
<p dir="auto">VM state:not at safepoint (normal execution)</p>
<p dir="auto">VM Mutex/Monitor currently owned by a thread: None</p>
<p dir="auto">Heap:<br>
PSYoungGen total 74752K, used 2580K [0x000000076cf00000, 0x0000000772200000, 0x00000007c0000000)<br>
eden space 64512K, 4% used [0x000000076cf00000,0x000000076d185208,0x0000000770e00000)<br>
from space 10240K, 0% used [0x0000000771800000,0x0000000771800000,0x0000000772200000)<br>
to space 10240K, 0% used [0x0000000770e00000,0x0000000770e00000,0x0000000771800000)<br>
ParOldGen total 171008K, used 0K [0x00000006c6c00000, 0x00000006d1300000, 0x000000076cf00000)<br>
object space 171008K, 0% used [0x00000006c6c00000,0x00000006c6c00000,0x00000006d1300000)<br>
Metaspace used 3072K, capacity 4780K, committed 5120K, reserved 1056768K<br>
class space used 310K, capacity 424K, committed 512K, reserved 1048576K</p>
<p dir="auto">Card table byte_map: [0x00007fbd2005a000,0x00007fbd20825000] byte_map_base: 0x00007fbd1ca24000</p>
<p dir="auto">Marking Bits: (ParMarkBitMap*) 0x00007fbd364af320<br>
Begin Bits: [0x00007fbd00360000, 0x00007fbd041b0000)<br>
End Bits: [0x00007fbd041b0000, 0x00007fbd08000000)</p>
<p dir="auto">Polling page: 0x00007fbd37303000</p>
<p dir="auto">CodeCache: size=245760Kb used=1264Kb max_used=1264Kb free=244495Kb<br>
bounds [0x00007fbd20be5000, 0x00007fbd20e55000, 0x00007fbd2fbe5000]<br>
total_blobs=388 nmethods=61 adapters=242<br>
compilation: enabled</p>
<p dir="auto">Compilation events (10 events):<br>
Event: 0,703 Thread 0x00007fbd300bd800 57 1 java.net.URL::getRef (5 bytes)<br>
Event: 0,703 Thread 0x00007fbd300bd800 nmethod 57 0x00007fbd20d1d910 code [0x00007fbd20d1da60, 0x00007fbd20d1db70]<br>
Event: 0,703 Thread 0x00007fbd300bd800 59 ! 3 java.util.zip.ZipFile::getEntry (101 bytes)<br>
Event: 0,703 Thread 0x00007fbd300bd800 nmethod 59 0x00007fbd20d1dbd0 code [0x00007fbd20d1dda0, 0x00007fbd20d1e418]<br>
Event: 0,703 Thread 0x00007fbd300bd800 58 3 java.util.Arrays::copyOf (19 bytes)<br>
Event: 0,704 Thread 0x00007fbd300bd800 nmethod 58 0x00007fbd20d1e710 code [0x00007fbd20d1e8a0, 0x00007fbd20d1ebc8]<br>
Event: 0,704 Thread 0x00007fbd300bd800 60 3 java.util.zip.ZStreamRef::address (5 bytes)<br>
Event: 0,704 Thread 0x00007fbd300bd800 nmethod 60 0x00007fbd20d1ecd0 code [0x00007fbd20d1ee20, 0x00007fbd20d1ef70]<br>
Event: 0,704 Thread 0x00007fbd300bd800 61 3 java.io.UnixFileSystem::normalize (75 bytes)<br>
Event: 0,704 Thread 0x00007fbd300bd800 nmethod 61 0x00007fbd20d1ffd0 code [0x00007fbd20d201a0, 0x00007fbd20d20808]</p>
<p dir="auto">GC Heap History (0 events):<br>
No events</p>
<p dir="auto">Deoptimization events (0 events):<br>
No events</p>
<p dir="auto">Classes redefined (0 events):<br>
No events</p>
<p dir="auto">Internal exceptions (2 events):<br>
Event: 0,026 Thread 0x00007fbd3000b000 Exception <a 'java/lang/NoSuchMethodError': Method sun.misc.Unsafe.defineClass(Ljava/lang/String;[BII)Ljava/lang/Class; name or signature does not match> (0x000000076cf07cb0) thrown at [/build/openjdk-8-wnL82d/openjdk-8-8u171-b11/src/hotspot/src/share/vm/<br>
Event: 0,026 Thread 0x00007fbd3000b000 Exception <a 'java/lang/NoSuchMethodError': Method sun.misc.Unsafe.prefetchRead(Ljava/lang/Object;J)V name or signature does not match> (0x000000076cf07f98) thrown at [/build/openjdk-8-wnL82d/openjdk-8-8u171-b11/src/hotspot/src/share/vm/prims/jni.cpp, lin</p>
<p dir="auto">Events (10 events):<br>
Event: 0,139 loading class org/opencv/core/Algorithm<br>
Event: 0,139 loading class org/opencv/core/Algorithm done<br>
Event: 0,139 loading class org/opencv/core/MatOfKeyPoint<br>
Event: 0,139 loading class org/opencv/core/MatOfKeyPoint done<br>
Event: 0,703 loading class org/opencv/features2d/BFMatcher<br>
Event: 0,703 loading class org/opencv/features2d/BFMatcher done<br>
Event: 0,703 loading class org/opencv/features2d/DescriptorMatcher<br>
Event: 0,703 loading class org/opencv/features2d/DescriptorMatcher done<br>
Event: 0,704 loading class org/opencv/core/MatOfDMatch<br>
Event: 0,704 loading class org/opencv/core/MatOfDMatch done</p>
<p dir="auto">Dynamic libraries:<br>
00400000-00401000 r-xp 00000000 08:03 1519552 /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java<br>
00600000-00601000 r--p 00000000 08:03 1519552 /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java<br>
00601000-00602000 rw-p 00001000 08:03 1519552 /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java<br>
01a60000-01a81000 rw-p 00000000 00:00 0 [heap]<br>
6c6c00000-6d1300000 rw-p 00000000 00:00 0<br>
6d1300000-76cf00000 ---p 00000000 00:00 0<br>
76cf00000-772200000 rw-p 00000000 00:00 0<br>
772200000-7c0000000 ---p 00000000 00:00 0<br>
7c0000000-7c0080000 rw-p 00000000 00:00 0<br>
7c0080000-800000000 ---p 00000000 00:00 0<br>
7fbca8000000-7fbca8029000 rw-p 00000000 00:00 0<br>
7fbca8029000-7fbcac000000 ---p 00000000 00:00 0<br>
7fbcac000000-7fbcac035000 rw-p 00000000 00:00 0<br>
7fbcac035000-7fbcb0000000 ---p 00000000 00:00 0<br>
7fbcb0000000-7fbcb005b000 rw-p 00000000 00:00 0<br>
7fbcb005b000-7fbcb4000000 ---p 00000000 00:00 0<br>
7fbcb7c8e000-7fbcb7c8f000 ---p 00000000 00:00 0<br>
7fbcb7c8f000-7fbcb848f000 rwxp 00000000 00:00 0<br>
7fbcb848f000-7fbcb8490000 ---p 00000000 00:00 0<br>
7fbcb8490000-7fbcb8c90000 rwxp 00000000 00:00 0<br>
7fbcb8c90000-7fbcb8c91000 ---p 00000000 00:00 0<br>
7fbcb8c91000-7fbcb9491000 rwxp 00000000 00:00 0<br>
7fbcb9491000-7fbcb94a3000 r-xp 00000000 08:03 1466062 /usr/lib/x86_64-linux-gnu/beignet/libgbeinterp.so<br>
7fbcb94a3000-7fbcb96a3000 ---p 00012000 08:03 1466062 /usr/lib/x86_64-linux-gnu/beignet/libgbeinterp.so<br>
7fbcb96a3000-7fbcb96a4000 r--p 00012000 08:03 1466062 /usr/lib/x86_64-linux-gnu/beignet/libgbeinterp.so<br>
7fbcb96a4000-7fbcb96a5000 rw-p 00013000 08:03 1466062 /usr/lib/x86_64-linux-gnu/beignet/libgbeinterp.so<br>
7fbcb96a5000-7fbcb96b8000 r-xp 00000000 08:03 1051799 /lib/x86_64-linux-gnu/libbsd.so.0.8.2<br>
7fbcb96b8000-7fbcb98b7000 ---p 00013000 08:03 1051799 /lib/x86_64-linux-gnu/libbsd.so.0.8.2<br>
7fbcb98b7000-7fbcb98b8000 r--p 00012000 08:03 1051799 /lib/x86_64-linux-gnu/libbsd.so.0.8.2<br>
7fbcb98b8000-7fbcb98b9000 rw-p 00013000 08:03 1051799 /lib/x86_64-linux-gnu/libbsd.so.0.8.2<br>
7fbcb98b9000-7fbcb98ba000 rw-p 00000000 00:00 0<br>
7fbcb98ba000-7fbcb98df000 r-xp 00000000 08:03 1051975 /lib/x86_64-linux-gnu/libtinfo.so.5.9<br>
7fbcb98df000-7fbcb9ade000 ---p 00025000 08:03 1051975 /lib/x86_64-linux-gnu/libtinfo.so.5.9<br>
7fbcb9ade000-7fbcb9ae2000 r--p 00024000 08:03 1051975 /lib/x86_64-linux-gnu/libtinfo.so.5.9<br>
7fbcb9ae2000-7fbcb9ae3000 rw-p 00028000 08:03 1051975 /lib/x86_64-linux-gnu/libtinfo.so.5.9<br>
7fbcb9ae3000-7fbcb9b14000 r-xp 00000000 08:03 1319195 /usr/lib/x86_64-linux-gnu/libedit.so.2.0.53<br>
7fbcb9b14000-7fbcb9d14000 ---p 00031000 08:03 1319195 /usr/lib/x86_64-linux-gnu/libedit.so.2.0.53<br>
7fbcb9d14000-7fbcb9d16000 r--p 00031000 08:03 1319195 /usr/lib/x86_64-linux-gnu/libedit.so.2.0.53<br>
7fbcb9d16000-7fbcb9d17000 rw-p 00033000 08:03 1319195 /usr/lib/x86_64-linux-gnu/libedit.so.2.0.53<br>
7fbcb9d17000-7fbcb9d1b000 rw-p 00000000 00:00 0<br>
7fbcb9d1b000-7fbcbba0c000 r-xp 00000000 08:03 1319378 /usr/lib/x86_64-linux-gnu/libLLVM-3.6.so.1<br>
7fbcbba0c000-7fbcbba0d000 ---p 01cf1000 08:03 1319378 /usr/lib/x86_64-linux-gnu/libLLVM-3.6.so.1<br>
7fbcbba0d000-7fbcbbc22000 r--p 01cf1000 08:03 1319378 /usr/lib/x86_64-linux-gnu/libLLVM-3.6.so.1<br>
7fbcbbc22000-7fbcbbc28000 rw-p 01f06000 08:03 1319378 /usr/lib/x86_64-linux-gnu/libLLVM-3.6.so.1<br>
7fbcbbc28000-7fbcbbc3d000 rw-p 00000000 00:00 0<br>
7fbcbbc3d000-7fbcbccdc000 r-xp 00000000 08:03 1466035 /usr/lib/x86_64-linux-gnu/beignet/libgbe.so<br>
7fbcbccdc000-7fbcbcedb000 ---p 0109f000 08:03 1466035 /usr/lib/x86_64-linux-gnu/beignet/libgbe.so<br>
7fbcbcedb000-7fbcbcf67000 r--p 0109e000 08:03 1466035 /usr/lib/x86_64-linux-gnu/beignet/libgbe.so<br>
7fbcbcf67000-7fbcbcf6f000 rw-p 0112a000 08:03 1466035 /usr/lib/x86_64-linux-gnu/beignet/libgbe.so<br>
7fbcbcf6f000-7fbcbcf71000 rw-p 00000000 00:00 0<br>
7fbcbcf71000-7fbcbcf76000 r-xp 00000000 08:03 1318872 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0<br>
7fbcbcf76000-7fbcbd175000 ---p 00005000 08:03 1318872 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0<br>
7fbcbd175000-7fbcbd176000 r--p 00004000 08:03 1318872 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0<br>
7fbcbd176000-7fbcbd177000 rw-p 00005000 08:03 1318872 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0<br>
7fbcbd177000-7fbcbd179000 r-xp 00000000 08:03 1318861 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0<br>
7fbcbd179000-7fbcbd379000 ---p 00002000 08:03 1318861 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0<br>
7fbcbd379000-7fbcbd37a000 r--p 00002000 08:03 1318861 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0<br>
7fbcbd37a000-7fbcbd37b000 rw-p 00003000 08:03 1318861 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0<br>
7fbcbd37b000-7fbcbd383000 r-xp 00000000 08:03 1319808 /usr/lib/x86_64-linux-gnu/libpciaccess.so.0.11.1<br>
7fbcbd383000-7fbcbd583000 ---p 00008000 08:03 1319808 /usr/lib/x86_64-linux-gnu/libpciaccess.so.0.11.1<br>
7fbcbd583000-7fbcbd584000 r--p 00008000 08:03 1319808 /usr/lib/x86_64-linux-gnu/libpciaccess.so.0.11.1<br>
7fbcbd584000-7fbcbd585000 rw-p 00009000 08:03 1319808 /usr/lib/x86_64-linux-gnu/libpciaccess.so.0.11.1<br>
7fbcbd585000-7fbcbd5a6000 r-xp 00000000 08:03 1320239 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0<br>
7fbcbd5a6000-7fbcbd7a5000 ---p 00021000 08:03 1320239 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0<br>
7fbcbd7a5000-7fbcbd7a6000 r--p 00020000 08:03 1320239 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0<br>
7fbcbd7a6000-7fbcbd7a7000 rw-p 00021000 08:03 1320239 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0<br>
7fbcbd7a7000-7fbcbd7b7000 r-xp 00000000 08:03 1313143 /usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0<br>
7fbcbd7b7000-7fbcbd9b6000 ---p 00010000 08:03 1313143 /usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0<br>
7fbcbd9b6000-7fbcbd9b7000 r--p 0000f000 08:03 1313143 /usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0<br>
7fbcbd9b7000-7fbcbd9b8000 rw-p 00010000 08:03 1313143 /usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0<br>
7fbcbd9b8000-7fbcbd9da000 r-xp 00000000 08:03 1310030 /usr/lib/x86_64-linux-gnu/libdrm_intel.so.1.0.0<br>
7fbcbd9da000-7fbcbdbd9000 ---p 00022000 08:03 1310030 /usr/lib/x86_64-linux-gnu/libdrm_intel.so.1.0.0<br>
7fbcbdbd9000-7fbcbdbda000 r--p 00021000 08:03 1310030 /usr/lib/x86_64-linux-gnu/libdrm_intel.so.1.0.0<br>
7fbcbdbda000-7fbcbdbdb000 rw-p 00022000 08:03 1310030 /usr/lib/x86_64-linux-gnu/libdrm_intel.so.1.0.0<br>
7fbcbdbdb000-7fbcbdbe0000 r-xp 00000000 08:03 1318876 /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0<br>
7fbcbdbe0000-7fbcbdddf000 ---p 00005000 08:03 1318876 /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0<br>
7fbcbdddf000-7fbcbdde0000 r--p 00004000 08:03 1318876 /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0<br>
7fbcbdde0000-7fbcbdde1000 rw-p 00005000 08:03 1318876 /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0<br>
7fbcbdde1000-7fbcbddf2000 r-xp 00000000 08:03 1318874 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0<br>
7fbcbddf2000-7fbcbdff1000 ---p 00011000 08:03 1318874 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0<br>
7fbcbdff1000-7fbcbdff2000 r--p 00010000 08:03 1318874 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0<br>
7fbcbdff2000-7fbcbdff3000 rw-p 00011000 08:03 1318874 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0<br>
7fbcbdff3000-7fbcbe128000 r-xp 00000000 08:03 1318857 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0<br>
7fbcbe128000-7fbcbe328000 ---p 00135000 08:03 1318857 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0<br>
7fbcbe328000-7fbcbe329000 r--p 00135000 08:03 1318857 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0<br>
7fbcbe329000-7fbcbe32d000 rw-p 00136000 08:03 1318857 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0<br>
7fbcbe32d000-7fbcbe369000 r-xp 00000000 08:03 1466061 /usr/lib/x86_64-linux-gnu/beignet/libcl.so<br>
7fbcbe369000-7fbcbe569000 ---p 0003c000 08:03 1466061 /usr/lib/x86_64-linux-gnu/beignet/libcl.so<br>
7fbcbe569000-7fbcbe56a000 r--p 0003c000 08:03 1466061 /usr/lib/x86_64-linux-gnu/beignet/libcl.so<br>
7fbcbe56a000-7fbcbe58a000 rw-p 0003d000 08:03 1466061 /usr/lib/x86_64-linux-gnu/beignet/libcl.so<br>
7fbcbe58a000-7fbcbe58b000 rw-p 00000000 00:00 0<br>
7fbcbe58b000-7fbcbe594000 r-xp 00000000 08:03 1341798 /usr/lib/x86_64-linux-gnu/libOpenCL.so.1.0.0<br>
7fbcbe594000-7fbcbe794000 ---p 00009000 08:03 1341798 /usr/lib/x86_64-linux-gnu/libOpenCL.so.1.0.0<br>
7fbcbe794000-7fbcbe795000 r--p 00009000 08:03 1341798 /usr/lib/x86_64-linux-gnu/libOpenCL.so.1.0.0<br>
7fbcbe795000-7fbcbe796000 rw-p 0000a000 08:03 1341798 /usr/lib/x86_64-linux-gnu/libOpenCL.so.1.0.0<br>
7fbcbe796000-7fbcbe797000 ---p 00000000 00:00 0<br>
7fbcbe797000-7fbcbef97000 rwxp 00000000 00:00 0<br>
7fbcbef97000-7fbcc2f97000 rw-p 00000000 00:00 0<br>
7fbcc2f97000-7fbcc4f97000 rw-p 00000000 00:00 0<br>
7fbcc4f97000-7fbcc4f98000 ---p 00000000 00:00 0<br>
7fbcc4f98000-7fbcc5798000 rwxp 00000000 00:00 0<br>
7fbcc5798000-7fbcc5799000 ---p 00000000 00:00 0<br>
7fbcc5799000-7fbcc5f99000 rwxp 00000000 00:00 0<br>
7fbcc5f99000-7fbcc5f9a000 ---p 00000000 00:00 0<br>
7fbcc5f9a000-7fbcc679a000 rwxp 00000000 00:00 0<br>
7fbcc679a000-7fbcc8050000 r-xp 00000000 08:03 1312587 /usr/lib/x86_64-linux-gnu/libicudata.so.55.1<br>
7fbcc8050000-7fbcc824f000 ---p 018b6000 08:03 1312587 /usr/lib/x86_64-linux-gnu/libicudata.so.55.1<br>
7fbcc824f000-7fbcc8250000 r--p 018b5000 08:03 1312587 /usr/lib/x86_64-linux-gnu/libicudata.so.55.1<br>
7fbcc8250000-7fbcc8251000 rw-p 018b6000 08:03 1312587 /usr/lib/x86_64-linux-gnu/libicudata.so.55.1<br>
7fbcc8251000-7fbcc8268000 r-xp 00000000 08:03 1054785 /lib/x86_64-linux-gnu/libresolv-2.23.so<br>
7fbcc8268000-7fbcc8468000 ---p 00017000 08:03 1054785 /lib/x86_64-linux-gnu/libresolv-2.23.so<br>
7fbcc8468000-7fbcc8469000 r--p 00017000 08:03 1054785 /lib/x86_64-linux-gnu/libresolv-2.23.so<br>
7fbcc8469000-7fbcc846a000 rw-p 00018000 08:03 1054785 /lib/x86_64-linux-gnu/libresolv-2.23.so<br>
7fbcc846a000-7fbcc846c000 rw-p 00000000 00:00 0<br>
7fbcc846c000-7fbcc846f000 r-xp 00000000 08:03 1051864 /lib/x86_64-linux-gnu/libkeyutils.so.1.5<br>
7fbcc846f000-7fbcc866e000 ---p 00003000 08:03 1051864 /lib/x86_64-linux-gnu/libkeyutils.so.1.5<br>
7fbcc866e000-7fbcc866f000 r--p 00002000 08:03 1051864 /lib/x86_64-linux-gnu/libkeyutils.so.1.5<br>
7fbcc866f000-7fbcc8670000 rw-p 00003000 08:03 1051864 /lib/x86_64-linux-gnu/libkeyutils.so.1.5<br>
7fbcc8670000-7fbcc8677000 r-xp 00000000 08:03 1319243 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4<br>
7fbcc8677000-7fbcc8876000 ---p 00007000 08:03 1319243 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4<br>
7fbcc8876000-7fbcc8877000 r--p 00006000 08:03 1319243 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4<br>
7fbcc8877000-7fbcc8878000 rw-p 00007000 08:03 1319243 /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4<br>
7fbcc8878000-7fbcc889e000 r-xp 00000000 08:03 1046979 /lib/x86_64-linux-gnu/libexpat.so.1.6.0<br>
7fbcc889e000-7fbcc8a9e000 ---p 00026000 08:03 1046979 /lib/x86_64-linux-gnu/libexpat.so.1.6.0<br>
7fbcc8a9e000-7fbcc8aa0000 r--p 00026000 08:03 1046979 /lib/x86_64-linux-gnu/libexpat.so.1.6.0<br>
7fbcc8aa0000-7fbcc8aa1000 rw-p 00028000 08:03 1046979 /lib/x86_64-linux-gnu/libexpat.so.1.6.0<br>
7fbcc8aa1000-7fbcc8c20000 r-xp 00000000 08:03 1312595 /usr/lib/x86_64-linux-gnu/libicuuc.so.55.1<br>
7fbcc8c20000-7fbcc8e20000 ---p 0017f000 08:03 1312595 /usr/lib/x86_64-linux-gnu/libicuuc.so.55.1<br>
7fbcc8e20000-7fbcc8e30000 r--p 0017f000 08:03 1312595 /usr/lib/x86_64-linux-gnu/libicuuc.so.55.1<br>
7fbcc8e30000-7fbcc8e31000 rw-p 0018f000 08:03 1312595 /usr/lib/x86_64-linux-gnu/libicuuc.so.55.1<br>
7fbcc8e31000-7fbcc8e35000 rw-p 00000000 00:00 0<br>
7fbcc8e35000-7fbcc8e3f000 r-xp 00000000 08:03 1317852 /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1<br>
7fbcc8e3f000-7fbcc903e000 ---p 0000a000 08:03 1317852 /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1<br>
7fbcc903e000-7fbcc903f000 r--p 00009000 08:03 1317852 /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1<br>
7fbcc903f000-7fbcc9040000 rw-p 0000a000 08:03 1317852 /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1<br>
7fbcc9040000-7fbcc9043000 r-xp 00000000 08:03 1051812 /lib/x86_64-linux-gnu/libcom_err.so.2.1<br>
7fbcc9043000-7fbcc9242000 ---p 00003000 08:03 1051812 /lib/x86_64-linux-gnu/libcom_err.so.2.1<br>
7fbcc9242000-7fbcc9243000 r--p 00002000 08:03 1051812 /lib/x86_64-linux-gnu/libcom_err.so.2.1<br>
7fbcc9243000-7fbcc9244000 rw-p 00003000 08:03 1051812 /lib/x86_64-linux-gnu/libcom_err.so.2.1<br>
7fbcc9244000-7fbcc9270000 r-xp 00000000 08:03 1317841 /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1<br>
7fbcc9270000-7fbcc946f000 ---p 0002c000 08:03 1317841 /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1<br>
7fbcc946f000-7fbcc9471000 r--p 0002b000 08:03 1317841 /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1<br>
7fbcc9471000-7fbcc9472000 rw-p 0002d000 08:03 1317841 /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1<br>
7fbcc9472000-7fbcc9473000 rw-p 00000000 00:00 0<br>
7fbcc9473000-7fbcc9536000 r-xp 00000000 08:03 1317849 /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3<br>
7fbcc9536000-7fbcc9736000 ---p 000c3000 08:03 1317849 /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3<br>
7fbcc9736000-7fbcc9743000 r--p 000c3000 08:03 1317849 /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3<br>
7fbcc9743000-7fbcc9745000 rw-p 000d0000 08:03 1317849 /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3<br>
7fbcc9745000-7fbcc9757000 r-xp 00000000 08:03 1051847 /lib/x86_64-linux-gnu/libgpg-error.so.0.17.0<br>
7fbcc9757000-7fbcc9957000 ---p 00012000 08:03 1051847 /lib/x86_64-linux-gnu/libgpg-error.so.0.17.0<br>
7fbcc9957000-7fbcc9958000 r--p 00012000 08:03 1051847 /lib/x86_64-linux-gnu/libgpg-error.so.0.17.0<br>
7fbcc9958000-7fbcc9959000 rw-p 00013000 08:03 1051847 /lib/x86_64-linux-gnu/libgpg-error.so.0.17.0<br>
7fbcc9959000-7fbcc997a000 r-xp 00000000 08:03 1309658 /usr/lib/x86_64-linux-gnu/libgomp.so.1.0.0<br>
7fbcc997a000-7fbcc9b79000 ---p 00021000 08:03 1309658 /usr/lib/x86_64-linux-gnu/libgomp.so.1.0.0<br>
7fbcc9b79000-7fbcc9b7a000 r--p 00020000 08:03 1309658 /usr/lib/x86_64-linux-gnu/libgomp.so.1.0.0<br>
7fbcc9b7a000-7fbcc9b7b000 rw-p 00021000 08:03 1309658 /usr/lib/x86_64-linux-gnu/libgomp.so.1.0.0<br>
7fbcc9b7b000-7fbcc9bb9000 r-xp 00000000 08:03 1309731 /usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0<br>
7fbcc9bb9000-7fbcc9db8000 ---p 0003e000 08:03 1309731 /usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0<br>
7fbcc9db8000-7fbcc9db9000 r--p 0003d000 08:03 1309731 /usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0<br>
7fbcc9db9000-7fbcc9dba000 rw-p 0003e000 08:03 1309731 /usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0<br>
7fbcc9dba000-7fbcc9dcb000 r-xp 00000000 08:03 1309815 /usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.1<br>
7fbcc9dcb000-7fbcc9fcb000 ---p 00011000 08:03 1309815 /usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.1<br>
7fbcc9fcb000-7fbcc9fcc000 r--p 00011000 08:03 1309815 /usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.1<br>
7fbcc9fcc000-7fbcc9fcd000 rw-p 00012000 08:03 1309815 /usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.1<br>
7fbcc9fcd000-7fbcc9ffe000 r-xp 00000000 08:03 1313978 /usr/lib/x86_64-linux-gnu/libidn.so.11.6.15<br>
7fbcc9ffe000-7fbcca1fe000 ---p 00031000 08:03 1313978 /usr/lib/x86_64-linux-gnu/libidn.so.11.6.15<br>
7fbcca1fe000-7fbcca1ff000 r--p 00031000 08:03 1313978 /usr/lib/x86_64-linux-gnu/libidn.so.11.6.15<br>
7fbcca1ff000-7fbcca200000 rw-p 00032000 08:03 1313978 /usr/lib/x86_64-linux-gnu/libidn.so.11.6.15<br>
7fbcca200000-7fbcca259000 r-xp 00000000 08:03 1313289 /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.1.0<br>
7fbcca259000-7fbcca458000 ---p 00059000 08:03 1313289 /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.1.0<br>
7fbcca458000-7fbcca462000 r--p 00058000 08:03 1313289 /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.1.0<br>
7fbcca462000-7fbcca464000 rw-p 00062000 08:03 1313289 /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.1.0<br>
7fbcca464000-7fbcca528000 r-xp 00000000 08:03 1308699 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.14.0<br>
7fbcca528000-7fbcca727000 ---p 000c4000 08:03 1308699 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.14.0<br>
7fbcca727000-7fbcca730000 r--p 000c3000 08:03 1308699 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.14.0<br>
7fbcca730000-7fbcca731000 rw-p 000cc000 08:03 1308699 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.14.0<br>
7fbcca731000-7fbcca76e000 r-xp 00000000 08:03 1312228 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.9.0<br>
7fbcca76e000-7fbcca96d000 ---p 0003d000 08:03 1312228 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.9.0<br>
7fbcca96d000-7fbcca96f000 r--p 0003c000 08:03 1312228 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.9.0<br>
7fbcca96f000-7fbcca974000 rw-p 0003e000 08:03 1312228 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.9.0<br>
7fbcca974000-7fbccab25000 r-xp 00000000 08:03 1312814 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.3<br>
7fbccab25000-7fbccad24000 ---p 001b1000 08:03 1312814 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.3<br>
7fbccad24000-7fbccad2c000 r--p 001b0000 08:03 1312814 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.3<br>
7fbccad2c000-7fbccad2e000 rw-p 001b8000 08:03 1312814 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.3<br>
7fbccad2e000-7fbccad2f000 rw-p 00000000 00:00 0<br>
7fbccad2f000-7fbccadae000 r-xp 00000000 08:03 1319376 /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.0<br>
7fbccadae000-7fbccafad000 ---p 0007f000 08:03 1319376 /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.0<br>
7fbccafad000-7fbccafae000 r--p 0007e000 08:03 1319376 /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.0<br>
7fbccafae000-7fbccafaf000 rw-p 0007f000 08:03 1319376 /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.0<br>
7fbccafaf000-7fbccafe3000 r-xp 00000000 08:03 1319511 /usr/lib/x86_64-linux-gnu/libnettle.so.6.2<br>
7fbccafe3000-7fbccb1e2000 ---p 00034000 08:03 1319511 /usr/lib/x86_64-linux-gnu/libnettle.so.6.2<br>
7fbccb1e2000-7fbccb1e4000 r--p 00033000 08:03 1319511 /usr/lib/x86_64-linux-gnu/libnettle.so.6.2<br>
7fbccb1e4000-7fbccb1e5000 rw-p 00035000 08:03 1319511 /usr/lib/x86_64-linux-gnu/libnettle.so.6.2<br>
7fbccb1e5000-7fbccb217000 r-xp 00000000 08:03 1313292 /usr/lib/x86_64-linux-gnu/libhogweed.so.4.2<br>
7fbccb217000-7fbccb416000 ---p 00032000 08:03 1313292 /usr/lib/x86_64-linux-gnu/libhogweed.so.4.2<br>
7fbccb416000-7fbccb417000 r--p 00031000 08:03 1313292 /usr/lib/x86_64-linux-gnu/libhogweed.so.4.2<br>
7fbccb417000-7fbccb418000 rw-p 00032000 08:03 1313292 /usr/lib/x86_64-linux-gnu/libhogweed.so.4.2<br>
7fbccb418000-7fbccb45f000 r-xp 00000000 08:03 1317845 /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2<br>
7fbccb45f000-7fbccb65e000 ---p 00047000 08:03 1317845 /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2<br>
7fbccb65e000-7fbccb660000 r--p 00046000 08:03 1317845 /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2<br>
7fbccb660000-7fbccb662000 rw-p 00048000 08:03 1317845 /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2<br>
7fbccb662000-7fbccb739000 r-xp 00000000 08:03 1046971 /lib/x86_64-linux-gnu/libgcrypt.so.20.0.5<br>
7fbccb739000-7fbccb939000 ---p 000d7000 08:03 1046971 /lib/x86_64-linux-gnu/libgcrypt.so.20.0.5<br>
7fbccb939000-7fbccb93a000 r--p 000d7000 08:03 1046971 /lib/x86_64-linux-gnu/libgcrypt.so.20.0.5<br>
7fbccb93a000-7fbccb942000 rw-p 000d8000 08:03 1046971 /lib/x86_64-linux-gnu/libgcrypt.so.20.0.5<br>
7fbccb942000-7fbccb943000 rw-p 00000000 00:00 0<br>
7fbccb943000-7fbccb9be000 r-xp 00000000 08:03 1319772 /usr/lib/x86_64-linux-gnu/liborc-0.4.so.0.25.0<br>
7fbccb9be000-7fbccbbbd000 ---p 0007b000 08:03 1319772 /usr/lib/x86_64-linux-gnu/liborc-0.4.so.0.25.0<br>
7fbccbbbd000-7fbccbbbf000 r--p 0007a000 08:03 1319772 /usr/lib/x86_64-linux-gnu/liborc-0.4.so.0.25.0<br>
7fbccbbbf000-7fbccbbc3000 rw-p 0007c000 08:03 1319772 /usr/lib/x86_64-linux-gnu/liborc-0.4.so.0.25.0<br>
7fbccbbc3000-7fbccbbca000 r-xp 00000000 08:03 1319767 /usr/lib/x86_64-linux-gnu/libogg.so.0.8.2<br>
7fbccbbca000-7fbccbdca000 ---p 00007000 08:03 1319767 /usr/lib/x86_64-linux-gnu/libogg.so.0.8.2<br>
7fbccbdca000-7fbccbdcb000 r--p 00007000 08:03 1319767 /usr/lib/x86_64-linux-gnu/libogg.so.0.8.2<br>
7fbccbdcb000-7fbccbdcc000 rw-p 00008000 08:03 1319767 /usr/lib/x86_64-linux-gnu/libogg.so.0.8.2<br>
7fbccbdcc000-7fbccbdd6000 r-xp 00000000 08:03 1313179 /usr/lib/x86_64-linux-gnu/libnuma.so.1.0.0<br>
7fbccbdd6000-7fbccbfd5000 ---p 0000a000 08:03 1313179 /usr/lib/x86_64-linux-gnu/libnuma.so.1.0.0<br>
7fbccbfd5000-7fbccbfd6000 r--p 00009000 08:03 1313179 /usr/lib/x86_64-linux-gnu/libnuma.so.1.0.0<br>
7fbccbfd6000-7fbccbfd7000 rw-p 0000a000 08:03 1313179 /usr/lib/x86_64-linux-gnu/libnuma.so.1.0.0<br>
7fbccbfd7000-7fbccc005000 r-xp 00000000 08:03 1314373 /usr/lib/x86_64-linux-gnu/libsoxr.so.0.1.1<br>
7fbccc005000-7fbccc204000 ---p 0002e000 08:03 1314373 /usr/lib/x86_64-linux-gnu/libsoxr.so.0.1.1<br>
7fbccc204000-7fbccc206000 r--p 0002d000 08:03 1314373 /usr/lib/x86_64-linux-gnu/libsoxr.so.0.1.1<br>
7fbccc206000-7fbccc207000 rw-p 0002f000 08:03 1314373 /usr/lib/x86_64-linux-gnu/libsoxr.so.0.1.1<br>
7fbccc207000-7fbccc23c000 rw-p 00000000 00:00 0<br>
7fbccc23c000-7fbccc5d3000 r-xp 00000000 08:03 1316940 /usr/lib/atlas-base/libatlas.so.3.0<br>
7fbccc5d3000-7fbccc7d3000 ---p 00397000 08:03 1316940 /usr/lib/atlas-base/libatlas.so.3.0<br>
7fbccc7d3000-7fbccc7da000 rw-p 00397000 08:03 1316940 /usr/lib/atlas-base/libatlas.so.3.0<br>
7fbccc7da000-7fbccc903000 r-xp 00000000 08:03 1309518 /usr/lib/x86_64-linux-gnu/libgfortran.so.3.0.0<br>
7fbccc903000-7fbcccb02000 ---p 00129000 08:03 1309518 /usr/lib/x86_64-linux-gnu/libgfortran.so.3.0.0<br>
7fbcccb02000-7fbcccb03000 r--p 00128000 08:03 1309518 /usr/lib/x86_64-linux-gnu/libgfortran.so.3.0.0<br>
7fbcccb03000-7fbcccb05000 rw-p 00129000 08:03 1309518 /usr/lib/x86_64-linux-gnu/libgfortran.so.3.0.0<br>
7fbcccb05000-7fbcce969000 r-xp 00000000 08:03 1316913 /usr/lib/libopenblasp-r0.2.18.so<br>
7fbcce969000-7fbcceb68000 ---p 01e64000 08:03 1316913 /usr/lib/libopenblasp-r0.2.18.so<br>
7fbcceb68000-7fbcceb6e000 r--p 01e63000 08:03 1316913 /usr/lib/libopenblasp-r0.2.18.so<br>
7fbcceb6e000-7fbcceb80000 rw-p 01e69000 08:03 1316913 /usr/lib/libopenblasp-r0.2.18.so<br>
7fbcceb80000-7fbcceb99000 rw-p 00000000 00:00 0<br>
7fbcceb99000-7fbcceb9e000 r-xp 00000000 08:03 1318737 /usr/lib/x86_64-linux-gnu/libIlmThread-2_2.so.12.0.0<br>
7fbcceb9e000-7fbcced9e000 ---p 00005000 08:03 1318737 /usr/lib/x86_64-linux-gnu/libIlmThread-2_2.so.12.0.0<br>
7fbcced9e000-7fbcced9f000 r--p 00005000 08:03 1318737 /usr/lib/x86_64-linux-gnu/libIlmThread-2_2.so.12.0.0<br>
7fbcced9f000-7fbcceda0000 rw-p 00006000 08:03 1318737 /usr/lib/x86_64-linux-gnu/libIlmThread-2_2.so.12.0.0<br>
7fbcceda0000-7fbccedbb000 r-xp 00000000 08:03 1318729 /usr/lib/x86_64-linux-gnu/libIex-2_2.so.12.0.0<br>
7fbccedbb000-7fbccefba000 ---p 0001b000 08:03 1318729 /usr/lib/x86_64-linux-gnu/libIex-2_2.so.12.0.0<br>
7fbccefba000-7fbccefbd000 r--p 0001a000 08:03 1318729 /usr/lib/x86_64-linux-gnu/libIex-2_2.so.12.0.0<br>
7fbccefbd000-7fbccefbe000 rw-p 0001d000 08:03 1318729 /usr/lib/x86_64-linux-gnu/libIex-2_2.so.12.0.0<br>
7fbccefbe000-7fbccf000000 r-xp 00000000 08:03 1318723 /usr/lib/x86_64-linux-gnu/libHalf.so.12.0.0<br>
7fbccf000000-7fbccf1ff000 ---p 00042000 08:03 1318723 /usr/lib/x86_64-linux-gnu/libHalf.so.12.0.0<br>
7fbccf1ff000-7fbccf200000 r--p 00041000 08:03 1318723 /usr/lib/x86_64-linux-gnu/libHalf.so.12.0.0<br>
7fbccf200000-7fbccf201000 rw-p 00042000 08:03 1318723 /usr/lib/x86_64-linux-gnu/libHalf.so.12.0.0<br>
7fbccf201000-7fbccf20c000 r-xp 00000000 08:03 1319590 /usr/lib/x86_64-linux-gnu/libjbig.so.0<br>
7fbccf20c000-7fbccf40b000 ---p 0000b000 08:03 1319590 /usr/lib/x86_64-linux-gnu/libjbig.so.0<br>
7fbccf40b000-7fbccf40c000 r--p 0000a000 08:03 1319590 /usr/lib/x86_64-linux-gnu/libjbig.so.0<br>
7fbccf40c000-7fbccf40f000 rw-p 0000b000 08:03 1319590 /usr/lib/x86_64-linux-gnu/libjbig.so.0<br>
7fbccf40f000-7fbccf41e000 r-xp 00000000 08:03 1051802 /lib/x86_64-linux-gnu/libbz2.so.1.0.4<br>
7fbccf41e000-7fbccf61d000 ---p 0000f000 08:03 1051802 /lib/x86_64-linux-gnu/libbz2.so.1.0.4<br>
7fbccf61d000-7fbccf61e000 r--p 0000e000 08:03 1051802 /lib/x86_64-linux-gnu/libbz2.so.1.0.4<br>
7fbccf61e000-7fbccf61f000 rw-p 0000f000 08:03 1051802 /lib/x86_64-linux-gnu/libbz2.so.1.0.4<br>
7fbccf61f000-7fbccf742000 r-xp 00000000 08:03 1332919 /usr/lib/x86_64-linux-gnu/libgnutls.so.30.6.2<br>
7fbccf742000-7fbccf941000 ---p 00123000 08:03 1332919 /usr/lib/x86_64-linux-gnu/libgnutls.so.30.6.2<br>
7fbccf941000-7fbccf94c000 r--p 00122000 08:03 1332919 /usr/lib/x86_64-linux-gnu/libgnutls.so.30.6.2<br>
7fbccf94c000-7fbccf94e000 rw-p 0012d000 08:03 1332919 /usr/lib/x86_64-linux-gnu/libgnutls.so.30.6.2<br>
7fbccf94e000-7fbccf94f000 rw-p 00000000 00:00 0<br>
7fbccf94f000-7fbccf996000 r-xp 00000000 08:03 1314395 /usr/lib/x86_64-linux-gnu/libbluray.so.1.9.2<br>
7fbccf996000-7fbccfb95000 ---p 00047000 08:03 1314395 /usr/lib/x86_64-linux-gnu/libbluray.so.1.9.2<br>
7fbccfb95000-7fbccfb97000 r--p 00046000 08:03 1314395 /usr/lib/x86_64-linux-gnu/libbluray.so.1.9.2<br>
7fbccfb97000-7fbccfb98000 rw-p 00048000 08:03 1314395 /usr/lib/x86_64-linux-gnu/libbluray.so.1.9.2<br>
7fbccfb98000-7fbccfbe2000 r-xp 00000000 08:03 1312017 /usr/lib/x86_64-linux-gnu/libgme.so.0.6.0<br>
7fbccfbe2000-7fbccfde2000 ---p 0004a000 08:03 1312017 /usr/lib/x86_64-linux-gnu/libgme.so.0.6.0<br>
7fbccfde2000-7fbccfde5000 r--p 0004a000 08:03 1312017 /usr/lib/x86_64-linux-gnu/libgme.so.0.6.0<br>
7fbccfde5000-7fbccfde6000 rw-p 0004d000 08:03 1312017 /usr/lib/x86_64-linux-gnu/libgme.so.0.6.0<br>
7fbccfde6000-7fbccfe30000 r-xp 00000000 08:03 1314399 /usr/lib/x86_64-linux-gnu/libmodplug.so.1.0.0<br>
7fbccfe30000-7fbcd0030000 ---p 0004a000 08:03 1314399 /usr/lib/x86_64-linux-gnu/libmodplug.so.1.0.0<br>
7fbcd0030000-7fbcd0031000 r--p 0004a000 08:03 1314399 /usr/lib/x86_64-linux-gnu/libmodplug.so.1.0.0<br>
7fbcd0031000-7fbcd0032000 rw-p 0004b000 08:03 1314399 /usr/lib/x86_64-linux-gnu/libmodplug.so.1.0.0<br>
7fbcd0032000-7fbcd0171000 rw-p 00000000 00:00 0<br>
7fbcd0171000-7fbcd018c000 r-xp 00000000 08:03 1308662 /usr/lib/x86_64-linux-gnu/librtmp.so.1<br>
7fbcd018c000-7fbcd038b000 ---p 0001b000 08:03 1308662 /usr/lib/x86_64-linux-gnu/librtmp.so.1<br>
7fbcd038b000-7fbcd038c000 r--p 0001a000 08:03 1308662 /usr/lib/x86_64-linux-gnu/librtmp.so.1<br>
7fbcd038c000-7fbcd038d000 rw-p 0001b000 08:03 1308662 /usr/lib/x86_64-linux-gnu/librtmp.so.1<br>
7fbcd038d000-7fbcd03d5000 r-xp 00000000 08:03 1314401 /usr/lib/x86_64-linux-gnu/libssh-gcrypt.so.4.4.1<br>
7fbcd03d5000-7fbcd05d4000 ---p 00048000 08:03 1314401 /usr/lib/x86_64-linux-gnu/libssh-gcrypt.so.4.4.1<br>
7fbcd05d4000-7fbcd05d5000 r--p 00047000 08:03 1314401 /usr/lib/x86_64-linux-gnu/libssh-gcrypt.so.4.4.1<br>
7fbcd05d5000-7fbcd05d6000 rw-p 00048000 08:03 1314401 /usr/lib/x86_64-linux-gnu/libssh-gcrypt.so.4.4.1<br>
7fbcd05d6000-7fbcd05f7000 r-xp 00000000 08:03 1051870 /lib/x86_64-linux-gnu/liblzma.so.5.0.0<br>
7fbcd05f7000-7fbcd07f6000 ---p 00021000 08:03 1051870 /lib/x86_64-linux-gnu/liblzma.so.5.0.0<br>
7fbcd07f6000-7fbcd07f7000 r--p 00020000 08:03 1051870 /lib/x86_64-linux-gnu/liblzma.so.5.0.0<br>
7fbcd07f7000-7fbcd07f8000 rw-p 00021000 08:03 1051870 /lib/x86_64-linux-gnu/liblzma.so.5.0.0<br>
7fbcd07f8000-7fbcd0812000 r-xp 00000000 08:03 1312068 /usr/lib/x86_64-linux-gnu/libcrystalhd.so.3.6<br>
7fbcd0812000-7fbcd0a11000 ---p 0001a000 08:03 1312068 /usr/lib/x86_64-linux-gnu/libcrystalhd.so.3.6<br>
7fbcd0a11000-7fbcd0a12000 r--p 00019000 08:03 1312068 /usr/lib/x86_64-linux-gnu/libcrystalhd.so.3.6<br>
7fbcd0a12000-7fbcd0a13000 rw-p 0001a000 08:03 1312068 /usr/lib/x86_64-linux-gnu/libcrystalhd.so.3.6<br>
7fbcd0a13000-7fbcd0a20000 r-xp 00000000 08:03 1312146 /usr/lib/x86_64-linux-gnu/libgsm.so.1.0.12<br>
7fbcd0a20000-7fbcd0c1f000 ---p 0000d000 08:03 1312146 /usr/lib/x86_64-linux-gnu/libgsm.so.1.0.12<br>
7fbcd0c1f000-7fbcd0c20000 r--p 0000c000 08:03 1312146 /usr/lib/x86_64-linux-gnu/libgsm.so.1.0.12<br>
7fbcd0c20000-7fbcd0c21000 rw-p 0000d000 08:03 1312146 /usr/lib/x86_64-linux-gnu/libgsm.so.1.0.12<br>
7fbcd0c21000-7fbcd0c66000 r-xp 00000000 08:03 1314363 /usr/lib/x86_64-linux-gnu/libmp3lame.so.0.0.0<br>
7fbcd0c66000-7fbcd0e66000 ---p 00045000 08:03 1314363 /usr/lib/x86_64-linux-gnu/libmp3lame.so.0.0.0<br>
7fbcd0e66000-7fbcd0e67000 r--p 00045000 08:03 1314363 /usr/lib/x86_64-linux-gnu/libmp3lame.so.0.0.0<br>
7fbcd0e67000-7fbcd0e68000 rw-p 00046000 08:03 1314363 /usr/lib/x86_64-linux-gnu/libmp3lame.so.0.0.0<br>
7fbcd0e68000-7fbcd0e96000 rw-p 00000000 00:00 0<br>
7fbcd0e96000-7fbcd0eb8000 r-xp 00000000 08:03 1314366 /usr/lib/x86_64-linux-gnu/libopenjpeg.so.1.5.2<br>
7fbcd0eb8000-7fbcd10b7000 ---p 00022000 08:03 1314366 /usr/lib/x86_64-linux-gnu/libopenjpeg.so.1.5.2<br>
7fbcd10b7000-7fbcd10b8000 r--p 00021000 08:03 1314366 /usr/lib/x86_64-linux-gnu/libopenjpeg.so.1.5.2<br>
7fbcd10b8000-7fbcd10b9000 rw-p 00022000 08:03 1314366 /usr/lib/x86_64-linux-gnu/libopenjpeg.so.1.5.2<br>
7fbcd10b9000-7fbcd1102000 r-xp 00000000 08:03 1319770 /usr/lib/x86_64-linux-gnu/libopus.so.0.5.2<br>
7fbcd1102000-7fbcd1301000 ---p 00049000 08:03 1319770 /usr/lib/x86_64-linux-gnu/libopus.so.0.5.2<br>
7fbcd1301000-7fbcd1302000 r--p 00048000 08:03 1319770 /usr/lib/x86_64-linux-gnu/libopus.so.0.5.2<br>
7fbcd1302000-7fbcd1303000 rw-p 00049000 08:03 1319770 /usr/lib/x86_64-linux-gnu/libopus.so.0.5.2<br>
7fbcd1303000-7fbcd13d4000 r-xp 00000000 08:03 1313002 /usr/lib/x86_64-linux-gnu/libschroedinger-1.0.so.0.11.0<br>
7fbcd13d4000-7fbcd15d4000 ---p 000d1000 08:03 1313002 /usr/lib/x86_64-linux-gnu/libschroedinger-1.0.so.0.11.0<br>
7fbcd15d4000-7fbcd15d6000 r--p 000d1000 08:03 1313002 /usr/lib/x86_64-linux-gnu/libschroedinger-1.0.so.0.11.0<br>
7fbcd15d6000-7fbcd15d7000 rw-p 000d3000 08:03 1313002 /usr/lib/x86_64-linux-gnu/libschroedinger-1.0.so.0.11.0<br>
7fbcd15d7000-7fbcd15d8000 rw-p 00000000 00:00 0<br>
7fbcd15d8000-7fbcd15e4000 r-xp 00000000 08:03 1314369 /usr/lib/x86_64-linux-gnu/libshine.so.3.0.1<br>
7fbcd15e4000-7fbcd17e3000 ---p 0000c000 08:03 1314369 /usr/lib/x86_64-linux-gnu/libshine.so.3.0.1<br>
7fbcd17e3000-7fbcd17e4000 r--p 0000b000 08:03 1314369 /usr/lib/x86_64-linux-gnu/libshine.so.3.0.1<br>
7fbcd17e4000-7fbcd17e5000 rw-p 0000c000 08:03 1314369 /usr/lib/x86_64-linux-gnu/libshine.so.3.0.1<br>
7fbcd17e5000-7fbcd17ec000 r-xp 00000000 08:03 1314371 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.3.0<br>
7fbcd17ec000-7fbcd19eb000 ---p 00007000 08:03 1314371 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.3.0<br>
7fbcd19eb000-7fbcd19ec000 r--p 00006000 08:03 1314371 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.3.0<br>
7fbcd19ec000-7fbcd19ed000 rw-p 00007000 08:03 1314371 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.3.0<br>
7fbcd19ed000-7fbcd1a04000 r-xp 00000000 08:03 1319984 /usr/lib/x86_64-linux-gnu/libspeex.so.1.5.0<br>
7fbcd1a04000-7fbcd1c04000 ---p 00017000 08:03 1319984 /usr/lib/x86_64-linux-gnu/libspeex.so.1.5.0<br>
7fbcd1c04000-7fbcd1c05000 r--p 00017000 08:03 1319984 /usr/lib/x86_64-linux-gnu/libspeex.so.1.5.0<br>
7fbcd1c05000-7fbcd1c06000 rw-p 00018000 08:03 1319984 /usr/lib/x86_64-linux-gnu/libspeex.so.1.5.0<br>
7fbcd1c06000-7fbcd1c1f000 r-xp 00000000 08:03 1320021 /usr/lib/x86_64-linux-gnu/libtheoradec.so.1.1.4<br>
7fbcd1c1f000-7fbcd1e1e000 ---p 00019000 08:03 1320021 /usr/lib/x86_64-linux-gnu/libtheoradec.so.1.1.4<br>
7fbcd1e1e000-7fbcd1e1f000 r--p 00018000 08:03 1320021 /usr/lib/x86_64-linux-gnu/libtheoradec.so.1.1.4<br>
7fbcd1e1f000-7fbcd1e20000 rw-p 00019000 08:03 1320021 /usr/lib/x86_64-linux-gnu/libtheoradec.so.1.1.4<br>
7fbcd1e20000-7fbcd1e5e000 r-xp 00000000 08:03 1320023 /usr/lib/x86_64-linux-gnu/libtheoraenc.so.1.1.2<br>
7fbcd1e5e000-7fbcd205d000 ---p 0003e000 08:03 1320023 /usr/lib/x86_64-linux-gnu/libtheoraenc.so.1.1.2<br>
7fbcd205d000-7fbcd205e000 r--p 0003d000 08:03 1320023 /usr/lib/x86_64-linux-gnu/libtheoraenc.so.1.1.2<br>
7fbcd205e000-7fbcd205f000 rw-p 0003e000 08:03 1320023 /usr/lib/x86_64-linux-gnu/libtheoraenc.so.1.1.2<br>
7fbcd205f000-7fbcd207d000 r-xp 00000000 08:03 1314377 /usr/lib/x86_64-linux-gnu/libtwolame.so.0.0.0<br>
7fbcd207d000-7fbcd227c000 ---p 0001e000 08:03 1314377 /usr/lib/x86_64-linux-gnu/libtwolame.so.0.0.0<br>
7fbcd227c000-7fbcd227d000 r--p 0001d000 08:03 1314377 /usr/lib/x86_64-linux-gnu/libtwolame.so.0.0.0<br>
7fbcd227d000-7fbcd227e000 rw-p 0001e000 08:03 1314377 /usr/lib/x86_64-linux-gnu/libtwolame.so.0.0.0<br>
7fbcd227e000-7fbcd2282000 rw-p 00000000 00:00 0<br>
7fbcd2282000-7fbcd22ac000 r-xp 00000000 08:03 1312743 /usr/lib/x86_64-linux-gnu/libvorbis.so.0.4.8<br>
7fbcd22ac000-7fbcd24ab000 ---p 0002a000 08:03 1312743 /usr/lib/x86_64-linux-gnu/libvorbis.so.0.4.8<br>
7fbcd24ab000-7fbcd24ac000 r--p 00029000 08:03 1312743 /usr/lib/x86_64-linux-gnu/libvorbis.so.0.4.8<br>
7fbcd24ac000-7fbcd24ad000 rw-p 0002a000 08:03 1312743 /usr/lib/x86_64-linux-gnu/libvorbis.so.0.4.8<br>
7fbcd24ad000-7fbcd253a000 r-xp 00000000 08:03 1311247 /usr/lib/x86_64-linux-gnu/libvorbisenc.so.2.0.11<br>
7fbcd253a000-7fbcd2739000 ---p 0008d000 08:03 1311247 /usr/lib/x86_64-linux-gnu/libvorbisenc.so.2.0.11<br>
7fbcd2739000-7fbcd2755000 r--p 0008c000 08:03 1311247 /usr/lib/x86_64-linux-gnu/libvorbisenc.so.2.0.11<br>
7fbcd2755000-7fbcd2756000 rw-p 000a8000 08:03 1311247 /usr/lib/x86_64-linux-gnu/libvorbisenc.so.2.0.11<br>
7fbcd2756000-7fbcd2975000 r-xp 00000000 08:03 1320123 /usr/lib/x86_64-linux-gnu/libvpx.so.3.0.0<br>
7fbcd2975000-7fbcd2b74000 ---p 0021f000 08:03 1320123 /usr/lib/x86_64-linux-gnu/libvpx.so.3.0.0<br>
7fbcd2b74000-7fbcd2b76000 r--p 0021e000 08:03 1320123 /usr/lib/x86_64-linux-gnu/libvpx.so.3.0.0<br>
7fbcd2b76000-7fbcd2b77000 rw-p 00220000 08:03 1320123 /usr/lib/x86_64-linux-gnu/libvpx.so.3.0.0<br>
7fbcd2b77000-7fbcd2b7a000 rw-p 00000000 00:00 0<br>
7fbcd2b7a000-7fbcd2ba2000 r-xp 00000000 08:03 1308345 /usr/lib/x86_64-linux-gnu/libwavpack.so.1.1.7<br>
7fbcd2ba2000-7fbcd2da1000 ---p 00028000 08:03 1308345 /usr/lib/x86_64-linux-gnu/libwavpack.so.1.1.7<br>
7fbcd2da1000-7fbcd2da2000 r--p 00027000 08:03 1308345 /usr/lib/x86_64-linux-gnu/libwavpack.so.1.1.7<br>
7fbcd2da2000-7fbcd2da3000 rw-p 00028000 08:03 1308345 /usr/lib/x86_64-linux-gnu/libwavpack.so.1.1.7<br>
7fbcd2da3000-7fbcd2ecb000 r-xp 00000000 08:03 1314383 /usr/lib/x86_64-linux-gnu/libx264.so.148<br>
7fbcd2ecb000-7fbcd30ca000 ---p 00128000 08:03 1314383 /usr/lib/x86_64-linux-gnu/libx264.so.148<br>
7fbcd30ca000-7fbcd30cb000 r--p 00127000 08:03 1314383 /usr/lib/x86_64-linux-gnu/libx264.so.148<br>
7fbcd30cb000-7fbcd30cc000 rw-p 00128000 08:03 1314383 /usr/lib/x86_64-linux-gnu/libx264.so.148<br>
7fbcd30cc000-7fbcd3147000 rw-p 00000000 00:00 0<br>
7fbcd3147000-7fbcd3b54000 r-xp 00000000 08:03 1314384 /usr/lib/x86_64-linux-gnu/libx265.so.79<br>
7fbcd3b54000-7fbcd3d53000 ---p 00a0d000 08:03 1314384 /usr/lib/x86_64-linux-gnu/libx265.so.79<br>
7fbcd3d53000-7fbcd3d56000 r--p 00a0c000 08:03 1314384 /usr/lib/x86_64-linux-gnu/libx265.so.79<br>
7fbcd3d56000-7fbcd3d59000 rw-p 00a0f000 08:03 1314384 /usr/lib/x86_64-linux-gnu/libx265.so.79<br>
7fbcd3d59000-7fbcd3d66000 rw-p 00000000 00:00 0<br>
7fbcd3d66000-7fbcd3e07000 r-xp 00000000 08:03 1314385 /usr/lib/x86_64-linux-gnu/libxvidcore.so.4.3<br>
7fbcd3e07000-7fbcd4006000 ---p 000a1000 08:03 1314385 /usr/lib/x86_64-linux-gnu/libxvidcore.so.4.3<br>
7fbcd4006000-7fbcd4007000 r--p 000a0000 08:03 1314385 /usr/lib/x86_64-linux-gnu/libxvidcore.so.4.3<br>
7fbcd4007000-7fbcd4011000 rw-p 000a1000 08:03 1314385 /usr/lib/x86_64-linux-gnu/libxvidcore.so.4.3<br>
7fbcd4011000-7fbcd407a000 rw-p 00000000 00:00 0<br>
7fbcd407a000-7fbcd40f1000 r-xp 00000000 08:03 1314387 /usr/lib/x86_64-linux-gnu/libzvbi.so.0.13.2<br>
7fbcd40f1000-7fbcd42f0000 ---p 00077000 08:03 1314387 /usr/lib/x86_64-linux-gnu/libzvbi.so.0.13.2<br>
7fbcd42f0000-7fbcd42f9000 r--p 00076000 08:03 1314387 /usr/lib/x86_64-linux-gnu/libzvbi.so.0.13.2<br>
7fbcd42f9000-7fbcd4305000 rw-p 0007f000 08:03 1314387 /usr/lib/x86_64-linux-gnu/libzvbi.so.0.13.2<br>
7fbcd4305000-7fbcd4320000 r-xp 00000000 08:03 1316627 /usr/lib/x86_64-linux-gnu/libva.so.1.3900.0<br>
7fbcd4320000-7fbcd451f000 ---p 0001b000 08:03 1316627 /usr/lib/x86_64-linux-gnu/libva.so.1.3900.0<br>
7fbcd451f000-7fbcd4520000 r--p 0001a000 08:03 1316627 /usr/lib/x86_64-linux-gnu/libva.so.1.3900.0<br>
7fbcd4520000-7fbcd4521000 rw-p 0001b000 08:03 1316627 /usr/lib/x86_64-linux-gnu/libva.so.1.3900.0<br>
7fbcd4521000-7fbcd453b000 r-xp 00000000 08:03 1312023 /usr/lib/x86_64-linux-gnu/libswresample-ffmpeg.so.1.2.101<br>
7fbcd453b000-7fbcd473b000 ---p 0001a000 08:03 1312023 /usr/lib/x86_64-linux-gnu/libswresample-ffmpeg.so.1.2.101<br>
7fbcd473b000-7fbcd473d000 r--p 0001a000 08:03 1312023 /usr/lib/x86_64-linux-gnu/libswresample-ffmpeg.so.1.2.101<br>
7fbcd473d000-7fbcd473e000 rw-p 0001c000 08:03 1312023 /usr/lib/x86_64-linux-gnu/libswresample-ffmpeg.so.1.2.101<br>
7fbcd473e000-7fbcd4755000 r-xp 00000000 08:03 1051983 /lib/x86_64-linux-gnu/libusb-1.0.so.0.1.0<br>
7fbcd4755000-7fbcd4954000 ---p 00017000 08:03 1051983 /lib/x86_64-linux-gnu/libusb-1.0.so.0.1.0<br>
7fbcd4954000-7fbcd4955000 r--p 00016000 08:03 1051983 /lib/x86_64-linux-gnu/libusb-1.0.so.0.1.0<br>
7fbcd4955000-7fbcd4956000 rw-p 00017000 08:03 1051983 /lib/x86_64-linux-gnu/libusb-1.0.so.0.1.0<br>
7fbcd4956000-7fbcd4963000 r-xp 00000000 08:03 1319886 /usr/lib/x86_64-linux-gnu/libraw1394.so.11.1.0<br>
7fbcd4963000-7fbcd4b63000 ---p 0000d000 08:03 1319886 /usr/lib/x86_64-linux-gnu/libraw1394.so.11.1.0<br>
7fbcd4b63000-7fbcd4b64000 r--p 0000d000 08:03 1319886 /usr/lib/x86_64-linux-gnu/libraw1394.so.11.1.0<br>
7fbcd4b64000-7fbcd4b65000 rw-p 0000e000 08:03 1319886 /usr/lib/x86_64-linux-gnu/libraw1394.so.11.1.0<br>
7fbcd4b65000-7fbcd4b86000 r-xp 00000000 08:03 1316941 /usr/lib/atlas-base/libcblas.so.3.0<br>
7fbcd4b86000-7fbcd4d86000 ---p 00021000 08:03 1316941 /usr/lib/atlas-base/libcblas.so.3.0<br>
7fbcd4d86000-7fbcd4d87000 rw-p 00021000 08:03 1316941 /usr/lib/atlas-base/libcblas.so.3.0<br>
7fbcd4d87000-7fbcd5367000 r-xp 00000000 08:03 1316912 /usr/lib/openblas-base/liblapack.so.3<br>
7fbcd5367000-7fbcd5567000 ---p 005e0000 08:03 1316912 /usr/lib/openblas-base/liblapack.so.3<br>
7fbcd5567000-7fbcd5568000 r--p 005e0000 08:03 1316912 /usr/lib/openblas-base/liblapack.so.3<br>
7fbcd5568000-7fbcd556a000 rw-p 005e1000 08:03 1316912 /usr/lib/openblas-base/liblapack.so.3<br>
7fbcd556a000-7fbcd5734000 r-xp 00000000 08:03 1318733 /usr/lib/x86_64-linux-gnu/libIlmImf-2_2.so.22.0.0<br>
7fbcd5734000-7fbcd5933000 ---p 001ca000 08:03 1318733 /usr/lib/x86_64-linux-gnu/libIlmImf-2_2.so.22.0.0<br>
7fbcd5933000-7fbcd5936000 r--p 001c9000 08:03 1318733 /usr/lib/x86_64-linux-gnu/libIlmImf-2_2.so.22.0.0<br>
7fbcd5936000-7fbcd5a37000 rw-p 001cc000 08:03 1318733 /usr/lib/x86_64-linux-gnu/libIlmImf-2_2.so.22.0.0<br>
7fbcd5a37000-7fbcd5a38000 rw-p 00000000 00:00 0<br>
7fbcd5a38000-7fbcd5a82000 r-xp 00000000 08:03 1311659 /usr/lib/x86_64-linux-gnu/libjasper.so.1.0.0<br>
7fbcd5a82000-7fbcd5c81000 ---p 0004a000 08:03 1311659 /usr/lib/x86_64-linux-gnu/libjasper.so.1.0.0<br>
7fbcd5c81000-7fbcd5c82000 r--p 00049000 08:03 1311659 /usr/lib/x86_64-linux-gnu/libjasper.so.1.0.0<br>
7fbcd5c82000-7fbcd5c86000 rw-p 0004a000 08:03 1311659 /usr/lib/x86_64-linux-gnu/libjasper.so.1.0.0<br>
7fbcd5c86000-7fbcd5c8d000 rw-p 00000000 00:00 0<br>
7fbcd5c8d000-7fbcd5cfe000 r-xp 00000000 08:03 1310801 /usr/lib/x86_64-linux-gnu/libtiff.so.5.2.4<br>
7fbcd5cfe000-7fbcd5efd000 ---p 00071000 08:03 1310801 /usr/lib/x86_64-linux-gnu/libtiff.so.5.2.4<br>
7fbcd5efd000-7fbcd5efe000 r--p 00070000 08:03 1310801 /usr/lib/x86_64-linux-gnu/libtiff.so.5.2.4<br>
7fbcd5efe000-7fbcd5f01000 rw-p 00071000 08:03 1310801 /usr/lib/x86_64-linux-gnu/libtiff.so.5.2.4<br>
7fbcd5f01000-7fbcd5f25000 r-xp 00000000 08:03 1051944 /lib/x86_64-linux-gnu/libpng12.so.0.54.0<br>
7fbcd5f25000-7fbcd6124000 ---p 00024000 08:03 1051944 /lib/x86_64-linux-gnu/libpng12.so.0.54.0<br>
7fbcd6124000-7fbcd6125000 r--p 00023000 08:03 1051944 /lib/x86_64-linux-gnu/libpng12.so.0.54.0<br>
7fbcd6125000-7fbcd6126000 rw-p 00024000 08:03 1051944 /lib/x86_64-linux-gnu/libpng12.so.0.54.0<br>
7fbcd6126000-7fbcd617f000 r-xp 00000000 08:03 1320143 /usr/lib/x86_64-linux-gnu/libwebp.so.5.0.4<br>
7fbcd617f000-7fbcd637f000 ---p 00059000 08:03 1320143 /usr/lib/x86_64-linux-gnu/libwebp.so.5.0.4<br>
7fbcd637f000-7fbcd6380000 r--p 00059000 08:03 1320143 /usr/lib/x86_64-linux-gnu/libwebp.so.5.0.4<br>
7fbcd6380000-7fbcd6382000 rw-p 0005a000 08:03 1320143 /usr/lib/x86_64-linux-gnu/libwebp.so.5.0.4<br>
7fbcd6382000-7fbcd63d9000 r-xp 00000000 08:03 1319594 /usr/lib/x86_64-linux-gnu/libjpeg.so.8.0.2<br>
7fbcd63d9000-7fbcd65d9000 ---p 00057000 08:03 1319594 /usr/lib/x86_64-linux-gnu/libjpeg.so.8.0.2<br>
7fbcd65d9000-7fbcd65da000 r--p 00057000 08:03 1319594 /usr/lib/x86_64-linux-gnu/libjpeg.so.8.0.2<br>
7fbcd65da000-7fbcd65db000 rw-p 00058000 08:03 1319594 /usr/lib/x86_64-linux-gnu/libjpeg.so.8.0.2<br>
7fbcd65db000-7fbcd6660000 r-xp 00000000 08:03 1312028 /usr/lib/x86_64-linux-gnu/libswscale-ffmpeg.so.3.1.101<br>
7fbcd6660000-7fbcd685f000 ---p 00085000 08:03 1312028 /usr/lib/x86_64-linux-gnu/libswscale-ffmpeg.so.3.1.101<br>
7fbcd685f000-7fbcd6861000 r--p 00084000 08:03 1312028 /usr/lib/x86_64-linux-gnu/libswscale-ffmpeg.so.3.1.101<br>
7fbcd6861000-7fbcd6862000 rw-p 00086000 08:03 1312028 /usr/lib/x86_64-linux-gnu/libswscale-ffmpeg.so.3.1.101<br>
7fbcd6862000-7fbcd686a000 rw-p 00000000 00:00 0<br>
7fbcd686a000-7fbcd68c0000 r-xp 00000000 08:03 1314472 /usr/lib/x86_64-linux-gnu/libavutil-ffmpeg.so.54.31.100<br>
7fbcd68c0000-7fbcd6abf000 ---p 00056000 08:03 1314472 /usr/lib/x86_64-linux-gnu/libavutil-ffmpeg.so.54.31.100<br>
7fbcd6abf000-7fbcd6ac5000 r--p 00055000 08:03 1314472 /usr/lib/x86_64-linux-gnu/libavutil-ffmpeg.so.54.31.100<br>
7fbcd6ac5000-7fbcd6ac6000 rw-p 0005b000 08:03 1314472 /usr/lib/x86_64-linux-gnu/libavutil-ffmpeg.so.54.31.100<br>
7fbcd6ac6000-7fbcd6ad9000 rw-p 00000000 00:00 0<br>
7fbcd6ad9000-7fbcd6cae000 r-xp 00000000 08:03 1314398 /usr/lib/x86_64-linux-gnu/libavformat-ffmpeg.so.56.40.101<br>
7fbcd6cae000-7fbcd6eae000 ---p 001d5000 08:03 1314398 /usr/lib/x86_64-linux-gnu/libavformat-ffmpeg.so.56.40.101<br>
7fbcd6eae000-7fbcd6ec2000 r--p 001d5000 08:03 1314398 /usr/lib/x86_64-linux-gnu/libavformat-ffmpeg.so.56.40.101<br>
7fbcd6ec2000-7fbcd6ed7000 rw-p 001e9000 08:03 1314398 /usr/lib/x86_64-linux-gnu/libavformat-ffmpeg.so.56.40.101<br>
7fbcd6ed7000-7fbcd7a07000 r-xp 00000000 08:03 1314435 /usr/lib/x86_64-linux-gnu/libavcodec-ffmpeg.so.56.60.100<br>
7fbcd7a07000-7fbcd7c06000 ---p 00b30000 08:03 1314435 /usr/lib/x86_64-linux-gnu/libavcodec-ffmpeg.so.56.60.100<br>
7fbcd7c06000-7fbcd7c31000 r--p 00b2f000 08:03 1314435 /usr/lib/x86_64-linux-gnu/libavcodec-ffmpeg.so.56.60.100<br>
7fbcd7c31000-7fbcd7c54000 rw-p 00b5a000 08:03 1314435 /usr/lib/x86_64-linux-gnu/libavcodec-ffmpeg.so.56.60.100<br>
7fbcd7c54000-7fbcd8307000 rw-p 00000000 00:00 0<br>
7fbcd8307000-7fbcd833c000 r-xp 00000000 08:03 1314533 /usr/lib/x86_64-linux-gnu/libdc1394.so.22.1.11<br>
7fbcd833c000-7fbcd853b000 ---p 00035000 08:03 1314533 /usr/lib/x86_64-linux-gnu/libdc1394.so.22.1.11<br>
7fbcd853b000-7fbcd853c000 r--p 00034000 08:03 1314533 /usr/lib/x86_64-linux-gnu/libdc1394.so.22.1.11<br>
7fbcd853c000-7fbcd853d000 rw-p 00035000 08:03 1314533 /usr/lib/x86_64-linux-gnu/libdc1394.so.22.1.11<br>
7fbcd853d000-7fbcd857d000 rw-p 00000000 00:00 0<br>
7fbcd857d000-7fbcd93a7000 r-xp 00000000 08:06 4459859 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_core.so.3.4.1<br>
7fbcd93a7000-7fbcd95a7000 ---p 00e2a000 08:06 4459859 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_core.so.3.4.1<br>
7fbcd95a7000-7fbcd95b1000 r--p 00e2a000 08:06 4459859 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_core.so.3.4.1<br>
7fbcd95b1000-7fbcd95de000 rw-p 00e34000 08:06 4459859 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_core.so.3.4.1<br>
7fbcd95de000-7fbcd95e4000 rw-p 00000000 00:00 0<br>
7fbcd95e4000-7fbcdbd27000 r-xp 00000000 08:06 4460136 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_imgproc.so.3.4.1<br>
7fbcdbd27000-7fbcdbf26000 ---p 02743000 08:06 4460136 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_imgproc.so.3.4.1<br>
7fbcdbf26000-7fbcdbf3c000 r--p 02742000 08:06 4460136 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_imgproc.so.3.4.1<br>
7fbcdbf3c000-7fbcdbf61000 rw-p 02758000 08:06 4460136 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_imgproc.so.3.4.1<br>
7fbcdbf61000-7fbcdc000000 rw-p 00000000 00:00 0<br>
7fbcdc000000-7fbcdc021000 rw-p 00000000 00:00 0<br>
7fbcdc021000-7fbce0000000 ---p 00000000 00:00 0<br>
7fbce0172000-7fbce04d2000 r-xp 00000000 08:06 4461472 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_imgcodecs.so.3.4.1<br>
7fbce04d2000-7fbce06d1000 ---p 00360000 08:06 4461472 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_imgcodecs.so.3.4.1<br>
7fbce06d1000-7fbce06d4000 r--p 0035f000 08:06 4461472 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_imgcodecs.so.3.4.1<br>
7fbce06d4000-7fbce06e0000 rw-p 00362000 08:06 4461472 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_imgcodecs.so.3.4.1<br>
7fbce06e0000-7fbce072f000 r-xp 00000000 08:06 4461729 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_videoio.so.3.4.1<br>
7fbce072f000-7fbce092e000 ---p 0004f000 08:06 4461729 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_videoio.so.3.4.1<br>
7fbce092e000-7fbce092f000 r--p 0004e000 08:06 4461729 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_videoio.so.3.4.1<br>
7fbce092f000-7fbce0931000 rw-p 0004f000 08:06 4461729 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_videoio.so.3.4.1<br>
7fbce0931000-7fbce0934000 rw-p 00000000 00:00 0<br>
7fbce0934000-7fbce09d8000 r-xp 00000000 08:06 4460118 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_flann.so.3.4.1<br>
7fbce09d8000-7fbce0bd7000 ---p 000a4000 08:06 4460118 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_flann.so.3.4.1<br>
7fbce0bd7000-7fbce0bda000 r--p 000a3000 08:06 4460118 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_flann.so.3.4.1<br>
7fbce0bda000-7fbce0bdc000 rw-p 000a6000 08:06 4460118 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_flann.so.3.4.1<br>
7fbce0bdc000-7fbce0d2a000 r-xp 00000000 08:06 4462415 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_features2d.so.3.4.1<br>
7fbce0d2a000-7fbce0f29000 ---p 0014e000 08:06 4462415 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_features2d.so.3.4.1<br>
7fbce0f29000-7fbce0f2e000 r--p 0014d000 08:06 4462415 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_features2d.so.3.4.1<br>
7fbce0f2e000-7fbce0f33000 rw-p 00152000 08:06 4462415 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_features2d.so.3.4.1<br>
7fbce0f33000-7fbce11ab000 r-xp 00000000 08:06 4462497 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_calib3d.so.3.4.1<br>
7fbce11ab000-7fbce13ab000 ---p 00278000 08:06 4462497 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_calib3d.so.3.4.1<br>
7fbce13ab000-7fbce13ad000 r--p 00278000 08:06 4462497 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_calib3d.so.3.4.1<br>
7fbce13ad000-7fbce13b1000 rw-p 0027a000 08:06 4462497 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_calib3d.so.3.4.1<br>
7fbce13b1000-7fbce172a000 r-xp 00000000 08:06 4461078 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_video.so.3.4.1<br>
7fbce172a000-7fbce192a000 ---p 00379000 08:06 4461078 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_video.so.3.4.1<br>
7fbce192a000-7fbce192c000 r--p 00379000 08:06 4461078 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_video.so.3.4.1<br>
7fbce192c000-7fbce1938000 rw-p 0037b000 08:06 4461078 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_video.so.3.4.1<br>
7fbce1938000-7fbce1a2b000 r-xp 00000000 08:06 4460742 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_ml.so.3.4.1<br>
7fbce1a2b000-7fbce1c2a000 ---p 000f3000 08:06 4460742 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_ml.so.3.4.1<br>
7fbce1c2a000-7fbce1c2e000 r--p 000f2000 08:06 4460742 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_ml.so.3.4.1<br>
7fbce1c2e000-7fbce1c32000 rw-p 000f6000 08:06 4460742 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_ml.so.3.4.1<br>
7fbce1c32000-7fbce1c61000 r-xp 00000000 08:06 4462597 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_bgsegm.so.3.4.1<br>
7fbce1c61000-7fbce1e61000 ---p 0002f000 08:06 4462597 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_bgsegm.so.3.4.1<br>
7fbce1e61000-7fbce1e62000 r--p 0002f000 08:06 4462597 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_bgsegm.so.3.4.1<br>
7fbce1e62000-7fbce1e63000 rw-p 00030000 08:06 4462597 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_bgsegm.so.3.4.1<br>
7fbce1e63000-7fbce1ffe000 r-xp 00000000 08:06 4462572 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_ximgproc.so.3.4.1<br>
7fbce1ffe000-7fbce21fe000 ---p 0019b000 08:06 4462572 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_ximgproc.so.3.4.1<br>
7fbce21fe000-7fbce2202000 r--p 0019b000 08:06 4462572 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_ximgproc.so.3.4.1<br>
7fbce2202000-7fbce2206000 rw-p 0019f000 08:06 4462572 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_ximgproc.so.3.4.1<br>
7fbce2206000-7fbce2306000 rw-p 00000000 00:00 0<br>
7fbce2306000-7fbce2c1d000 r-xp 00000000 08:06 4461286 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_dnn.so.3.4.1<br>
7fbce2c1d000-7fbce2e1c000 ---p 00917000 08:06 4461286 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_dnn.so.3.4.1<br>
7fbce2e1c000-7fbce2e30000 r--p 00916000 08:06 4461286 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_dnn.so.3.4.1<br>
7fbce2e30000-7fbce2e46000 rw-p 0092a000 08:06 4461286 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_dnn.so.3.4.1<br>
7fbce2e46000-7fbce2e4a000 rw-p 00000000 00:00 0<br>
7fbce2e4a000-7fbce322e000 r-xp 00000000 08:06 4461255 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_xphoto.so.3.4.1<br>
7fbce322e000-7fbce342e000 ---p 003e4000 08:06 4461255 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_xphoto.so.3.4.1<br>
7fbce342e000-7fbce342f000 r--p 003e4000 08:06 4461255 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_xphoto.so.3.4.1<br>
7fbce342f000-7fbce3441000 rw-p 003e5000 08:06 4461255 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_xphoto.so.3.4.1<br>
7fbce3441000-7fbce3824000 r-xp 00000000 08:06 4461021 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_photo.so.3.4.1<br>
7fbce3824000-7fbce3a24000 ---p 003e3000 08:06 4461021 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_photo.so.3.4.1<br>
7fbce3a24000-7fbce3a27000 r--p 003e3000 08:06 4461021 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_photo.so.3.4.1<br>
7fbce3a27000-7fbce3a33000 rw-p 003e6000 08:06 4461021 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_photo.so.3.4.1<br>
7fbce3a33000-7fbce3df2000 r-xp 00000000 08:06 4460919 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_objdetect.so.3.4.1<br>
7fbce3df2000-7fbce3ff1000 ---p 003bf000 08:06 4460919 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_objdetect.so.3.4.1<br>
7fbce3ff1000-7fbce3ff3000 r--p 003be000 08:06 4460919 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_objdetect.so.3.4.1<br>
7fbce3ff3000-7fbce4000000 rw-p 003c0000 08:06 4460919 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_objdetect.so.3.4.1<br>
7fbce4000000-7fbce416c000 rw-p 00000000 00:00 0<br>
7fbce416c000-7fbce8000000 ---p 00000000 00:00 0<br>
7fbce8000000-7fbce8021000 rw-p 00000000 00:00 0<br>
7fbce8021000-7fbcec000000 ---p 00000000 00:00 0<br>
7fbcec000000-7fbcec046000 rw-p 00000000 00:00 0<br>
7fbcec046000-7fbcf0000000 ---p 00000000 00:00 0<br>
7fbcf0000000-7fbcf0022000 rw-p 00000000 00:00 0<br>
7fbcf0022000-7fbcf4000000 ---p 00000000 00:00 0<br>
7fbcf4000000-7fbcf4021000 rw-p 00000000 00:00 0<br>
7fbcf4021000-7fbcf8000000 ---p 00000000 00:00 0<br>
7fbcf8000000-7fbcf8021000 rw-p 00000000 00:00 0<br>
7fbcf8021000-7fbcfc000000 ---p 00000000 00:00 0<br>
7fbcfc000000-7fbcfc021000 rw-p 00000000 00:00 0<br>
7fbcfc021000-7fbd00000000 ---p 00000000 00:00 0<br>
7fbd000a4000-7fbd000c2000 r-xp 00000000 08:03 1046595 /lib/x86_64-linux-gnu/libudev.so.1.6.4<br>
7fbd000c2000-7fbd000c3000 r--p 0001d000 08:03 1046595 /lib/x86_64-linux-gnu/libudev.so.1.6.4<br>
7fbd000c3000-7fbd000c4000 rw-p 0001e000 08:03 1046595 /lib/x86_64-linux-gnu/libudev.so.1.6.4<br>
7fbd000c4000-7fbd00138000 r-xp 00000000 08:06 4462589 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_aruco.so.3.4.1<br>
7fbd00138000-7fbd00338000 ---p 00074000 08:06 4462589 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_aruco.so.3.4.1<br>
7fbd00338000-7fbd00339000 r--p 00074000 08:06 4462589 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_aruco.so.3.4.1<br>
7fbd00339000-7fbd0035f000 rw-p 00075000 08:06 4462589 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_aruco.so.3.4.1<br>
7fbd0035f000-7fbd08000000 rw-p 00000000 00:00 0<br>
7fbd08000000-7fbd08021000 rw-p 00000000 00:00 0<br>
7fbd08021000-7fbd0c000000 ---p 00000000 00:00 0<br>
7fbd0c000000-7fbd0c021000 rw-p 00000000 00:00 0<br>
7fbd0c021000-7fbd10000000 ---p 00000000 00:00 0<br>
7fbd10000000-7fbd10021000 rw-p 00000000 00:00 0<br>
7fbd10021000-7fbd14000000 ---p 00000000 00:00 0<br>
7fbd14000000-7fbd14021000 rw-p 00000000 00:00 0<br>
7fbd14021000-7fbd18000000 ---p 00000000 00:00 0<br>
7fbd18000000-7fbd18021000 rw-p 00000000 00:00 0<br>
7fbd18021000-7fbd1c000000 ---p 00000000 00:00 0<br>
7fbd1c00f000-7fbd1c016000 r--s 00000000 08:03 1585654 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache<br>
7fbd1c057000-7fbd1c058000 rw-s 00000000 00:05 1175491 /drm mm object (deleted)<br>
7fbd1c058000-7fbd1c062000 rw-s 00000000 00:05 1175492 /drm mm object (deleted)<br>
7fbd1c062000-7fbd1c363000 r-xp 00000000 08:06 4462551 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_xfeatures2d.so.3.4.1<br>
7fbd1c363000-7fbd1c563000 ---p 00301000 08:06 4462551 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_xfeatures2d.so.3.4.1<br>
7fbd1c563000-7fbd1c567000 r--p 00301000 08:06 4462551 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_xfeatures2d.so.3.4.1<br>
7fbd1c567000-7fbd1c56a000 rw-p 00305000 08:06 4462551 /home/user/OpenCV-github/opencv_master-build/install/lib/libopencv_xfeatures2d.so.3.4.1<br>
7fbd1c56a000-7fbd1c73c000 r-xp 00000000 08:06 4462412 /home/user/OpenCV-github/opencv_master-build/install/share/OpenCV/java/libopencv_java341.so<br>
7fbd1c73c000-7fbd1c93b000 ---p 001d2000 08:06 4462412 /home/user/OpenCV-github/opencv_master-build/install/share/OpenCV/java/libopencv_java341.so<br>
7fbd1c93b000-7fbd1c93c000 r--p 001d1000 08:06 4462412 /home/user/OpenCV-github/opencv_master-build/install/share/OpenCV/java/libopencv_java341.so<br>
7fbd1c93c000-7fbd1c940000 rw-p 001d2000 08:06 4462412 /home/user/OpenCV-github/opencv_master-build/install/share/OpenCV/java/libopencv_java341.so<br>
7fbd1c940000-7fbd1c949000 r--s 00080000 08:06 4462413 /home/user/OpenCV-github/opencv_master-build/install/share/OpenCV/java/opencv-341.jar<br>
7fbd1c949000-7fbd1c94e000 r--s 002f9000 08:03 1519555 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/charsets.jar<br>
7fbd1c94e000-7fbd1c953000 r--s 0009d000 08:03 1565527 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jsse.jar<br>
7fbd1c953000-7fbd1c966000 r--s 00346000 08:03 1519567 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/resources.jar<br>
7fbd1c966000-7fbd1c981000 r--s 001d6000 08:03 1519563 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/nashorn.jar<br>
7fbd1c981000-7fbd1c99c000 r--s 00394000 08:03 1519560 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/cldrdata.jar<br>
7fbd1c99c000-7fbd1c99d000 ---p 00000000 00:00 0<br>
7fbd1c99d000-7fbd1cb9e000 rwxp 00000000 00:00 0<br>
7fbd1cb9e000-7fbd1cb9f000 ---p 00000000 00:00 0<br>
7fbd1cb9f000-7fbd1cc9f000 rwxp 00000000 00:00 0<br>
7fbd1cc9f000-7fbd1cca0000 ---p 00000000 00:00 0<br>
7fbd1cca0000-7fbd1cda0000 rwxp 00000000 00:00 0<br>
7fbd1cda0000-7fbd1cda1000 ---p 00000000 00:00 0<br>
7fbd1cda1000-7fbd1cfa2000 rwxp 00000000 00:00 0<br>
7fbd1cfa2000-7fbd1d27f000 r--p 00000000 08:03 1310022 /usr/lib/locale/locale-archive<br>
7fbd1d27f000-7fbd1d481000 rwxp 00000000 00:00 0<br>
7fbd1d481000-7fbd1d482000 ---p 00000000 00:00 0<br>
7fbd1d482000-7fbd1d582000 rwxp 00000000 00:00 0<br>
7fbd1d582000-7fbd1e515000 rw-p 00000000 00:00 0<br>
7fbd1e515000-7fbd1e6e4000 r--s 03c2f000 08:03 1519616 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/rt.jar<br>
7fbd1e6e4000-7fbd1ebda000 rw-p 00000000 00:00 0<br>
7fbd1ebda000-7fbd1ef5a000 ---p 00000000 00:00 0<br>
7fbd1ef5a000-7fbd1f724000 rw-p 00000000 00:00 0<br>
7fbd1f724000-7fbd1f725000 ---p 00000000 00:00 0<br>
7fbd1f725000-7fbd1f825000 rwxp 00000000 00:00 0<br>
7fbd1f825000-7fbd1f826000 ---p 00000000 00:00 0<br>
7fbd1f826000-7fbd1f926000 rwxp 00000000 00:00 0<br>
7fbd1f926000-7fbd1f927000 ---p 00000000 00:00 0<br>
7fbd1f927000-7fbd1fa27000 rwxp 00000000 00:00 0<br>
7fbd1fa27000-7fbd1fa28000 ---p 00000000 00:00 0<br>
7fbd1fa28000-7fbd1fb28000 rwxp 00000000 00:00 0<br>
7fbd1fb28000-7fbd1fb7c000 rw-p 00000000 00:00 0<br>
7fbd1fb7c000-7fbd2005a000 ---p 00000000 00:00 0<br>
7fbd2005a000-7fbd200ae000 rw-p 00000000 00:00 0<br>
7fbd200ae000-7fbd2058b000 ---p 00000000 00:00 0<br>
7fbd2058b000-7fbd205b5000 rw-p 00000000 00:00 0<br>
7fbd205b5000-7fbd20824000 ---p 00000000 00:00 0<br>
7fbd20824000-7fbd2082f000 rw-p 00000000 00:00 0<br>
7fbd2082f000-7fbd20be5000 ---p 00000000 00:00 0<br>
7fbd20be5000-7fbd20e55000 rwxp 00000000 00:00 0<br>
7fbd20e55000-7fbd2fbe5000 ---p 00000000 00:00 0<br>
7fbd2fbe5000-7fbd2fbed000 r-xp 00000000 08:03 1519591 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libzip.so<br>
7fbd2fbed000-7fbd2fdec000 ---p 00008000 08:03 1519591 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libzip.so<br>
7fbd2fdec000-7fbd2fded000 r--p 00007000 08:03 1519591 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libzip.so<br>
7fbd2fded000-7fbd2fdee000 rw-p 00008000 08:03 1519591 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libzip.so<br>
7fbd2fdee000-7fbd2fdf9000 r-xp 00000000 08:03 1054803 /lib/x86_64-linux-gnu/libnss_files-2.23.so<br>
7fbd2fdf9000-7fbd2fff8000 ---p 0000b000 08:03 1054803 /lib/x86_64-linux-gnu/libnss_files-2.23.so<br>
7fbd2fff8000-7fbd2fff9000 r--p 0000a000 08:03 1054803 /lib/x86_64-linux-gnu/libnss_files-2.23.so<br>
7fbd2fff9000-7fbd2fffa000 rw-p 0000b000 08:03 1054803 /lib/x86_64-linux-gnu/libnss_files-2.23.so<br>
7fbd2fffa000-7fbd30000000 rw-p 00000000 00:00 0<br>
7fbd30000000-7fbd30944000 rw-p 00000000 00:00 0<br>
7fbd30944000-7fbd34000000 ---p 00000000 00:00 0<br>
7fbd34000000-7fbd34001000 rw-s 00000000 00:05 1175493 /drm mm object (deleted)<br>
7fbd34001000-7fbd34070000 rw-p 00000000 00:00 0<br>
7fbd34070000-7fbd3407b000 r-xp 00000000 08:03 1054810 /lib/x86_64-linux-gnu/libnss_nis-2.23.so<br>
7fbd3407b000-7fbd3427a000 ---p 0000b000 08:03 1054810 /lib/x86_64-linux-gnu/libnss_nis-2.23.so<br>
7fbd3427a000-7fbd3427b000 r--p 0000a000 08:03 1054810 /lib/x86_64-linux-gnu/libnss_nis-2.23.so<br>
7fbd3427b000-7fbd3427c000 rw-p 0000b000 08:03 1054810 /lib/x86_64-linux-gnu/libnss_nis-2.23.so<br>
7fbd3427c000-7fbd34292000 r-xp 00000000 08:03 1054771 /lib/x86_64-linux-gnu/libnsl-2.23.so<br>
7fbd34292000-7fbd34491000 ---p 00016000 08:03 1054771 /lib/x86_64-linux-gnu/libnsl-2.23.so<br>
7fbd34491000-7fbd34492000 r--p 00015000 08:03 1054771 /lib/x86_64-linux-gnu/libnsl-2.23.so<br>
7fbd34492000-7fbd34493000 rw-p 00016000 08:03 1054771 /lib/x86_64-linux-gnu/libnsl-2.23.so<br>
7fbd34493000-7fbd34495000 rw-p 00000000 00:00 0<br>
7fbd34495000-7fbd3449d000 r-xp 00000000 08:03 1054793 /lib/x86_64-linux-gnu/libnss_compat-2.23.so<br>
7fbd3449d000-7fbd3469c000 ---p 00008000 08:03 1054793 /lib/x86_64-linux-gnu/libnss_compat-2.23.so<br>
7fbd3469c000-7fbd3469d000 r--p 00007000 08:03 1054793 /lib/x86_64-linux-gnu/libnss_compat-2.23.so<br>
7fbd3469d000-7fbd3469e000 rw-p 00008000 08:03 1054793 /lib/x86_64-linux-gnu/libnss_compat-2.23.so<br>
7fbd3469e000-7fbd346cb000 r-xp 00000000 08:03 1519582 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libjava.so<br>
7fbd346cb000-7fbd348ca000 ---p 0002d000 08:03 1519582 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libjava.so<br>
7fbd348ca000-7fbd348cb000 r--p 0002c000 08:03 1519582 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libjava.so<br>
7fbd348cb000-7fbd348cd000 rw-p 0002d000 08:03 1519582 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libjava.so<br>
7fbd348cd000-7fbd348dc000 r-xp 00000000 08:03 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/opencv/opencv/commit/1519568096d976a7b38d4441921bd4d0ef8ec099/hovercard" href="https://github.com/opencv/opencv/commit/1519568096d976a7b38d4441921bd4d0ef8ec099"><tt>1519568</tt></a> /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libverify.so<br>
7fbd348dc000-7fbd34adb000 ---p 0000f000 08:03 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/opencv/opencv/commit/1519568096d976a7b38d4441921bd4d0ef8ec099/hovercard" href="https://github.com/opencv/opencv/commit/1519568096d976a7b38d4441921bd4d0ef8ec099"><tt>1519568</tt></a> /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libverify.so<br>
7fbd34adb000-7fbd34add000 r--p 0000e000 08:03 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/opencv/opencv/commit/1519568096d976a7b38d4441921bd4d0ef8ec099/hovercard" href="https://github.com/opencv/opencv/commit/1519568096d976a7b38d4441921bd4d0ef8ec099"><tt>1519568</tt></a> /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libverify.so<br>
7fbd34add000-7fbd34ade000 rw-p 00010000 08:03 <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/opencv/opencv/commit/1519568096d976a7b38d4441921bd4d0ef8ec099/hovercard" href="https://github.com/opencv/opencv/commit/1519568096d976a7b38d4441921bd4d0ef8ec099"><tt>1519568</tt></a> /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libverify.so<br>
7fbd34ade000-7fbd34ae5000 r-xp 00000000 08:03 1054811 /lib/x86_64-linux-gnu/librt-2.23.so<br>
7fbd34ae5000-7fbd34ce4000 ---p 00007000 08:03 1054811 /lib/x86_64-linux-gnu/librt-2.23.so<br>
7fbd34ce4000-7fbd34ce5000 r--p 00006000 08:03 1054811 /lib/x86_64-linux-gnu/librt-2.23.so<br>
7fbd34ce5000-7fbd34ce6000 rw-p 00007000 08:03 1054811 /lib/x86_64-linux-gnu/librt-2.23.so<br>
7fbd34ce6000-7fbd34cfc000 r-xp 00000000 08:03 1051841 /lib/x86_64-linux-gnu/libgcc_s.so.1<br>
7fbd34cfc000-7fbd34efb000 ---p 00016000 08:03 1051841 /lib/x86_64-linux-gnu/libgcc_s.so.1<br>
7fbd34efb000-7fbd34efc000 rw-p 00015000 08:03 1051841 /lib/x86_64-linux-gnu/libgcc_s.so.1<br>
7fbd34efc000-7fbd35004000 r-xp 00000000 08:03 1054769 /lib/x86_64-linux-gnu/libm-2.23.so<br>
7fbd35004000-7fbd35203000 ---p 00108000 08:03 1054769 /lib/x86_64-linux-gnu/libm-2.23.so<br>
7fbd35203000-7fbd35204000 r--p 00107000 08:03 1054769 /lib/x86_64-linux-gnu/libm-2.23.so<br>
7fbd35204000-7fbd35205000 rw-p 00108000 08:03 1054769 /lib/x86_64-linux-gnu/libm-2.23.so<br>
7fbd35205000-7fbd35377000 r-xp 00000000 08:03 1308284 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21<br>
7fbd35377000-7fbd35577000 ---p 00172000 08:03 1308284 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21<br>
7fbd35577000-7fbd35581000 r--p 00172000 08:03 1308284 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21<br>
7fbd35581000-7fbd35583000 rw-p 0017c000 08:03 1308284 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21<br>
7fbd35583000-7fbd35587000 rw-p 00000000 00:00 0<br>
7fbd35587000-7fbd361e0000 r-xp 00000000 08:03 1519595 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so<br>
7fbd361e0000-7fbd363e0000 ---p 00c59000 08:03 1519595 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so<br>
7fbd363e0000-7fbd36473000 r--p 00c59000 08:03 1519595 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so<br>
7fbd36473000-7fbd3649c000 rw-p 00cec000 08:03 1519595 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so<br>
7fbd3649c000-7fbd364cc000 rw-p 00000000 00:00 0<br>
7fbd364cc000-7fbd364e4000 r-xp 00000000 08:03 1054775 /lib/x86_64-linux-gnu/libpthread-2.23.so<br>
7fbd364e4000-7fbd366e3000 ---p 00018000 08:03 1054775 /lib/x86_64-linux-gnu/libpthread-2.23.so<br>
7fbd366e3000-7fbd366e4000 r--p 00017000 08:03 1054775 /lib/x86_64-linux-gnu/libpthread-2.23.so<br>
7fbd366e4000-7fbd366e5000 rw-p 00018000 08:03 1054775 /lib/x86_64-linux-gnu/libpthread-2.23.so<br>
7fbd366e5000-7fbd366e9000 rw-p 00000000 00:00 0<br>
7fbd366e9000-7fbd366ec000 r-xp 00000000 08:03 1054781 /lib/x86_64-linux-gnu/libdl-2.23.so<br>
7fbd366ec000-7fbd368eb000 ---p 00003000 08:03 1054781 /lib/x86_64-linux-gnu/libdl-2.23.so<br>
7fbd368eb000-7fbd368ec000 r--p 00002000 08:03 1054781 /lib/x86_64-linux-gnu/libdl-2.23.so<br>
7fbd368ec000-7fbd368ed000 rw-p 00003000 08:03 1054781 /lib/x86_64-linux-gnu/libdl-2.23.so<br>
7fbd368ed000-7fbd36906000 r-xp 00000000 08:03 1056724 /lib/x86_64-linux-gnu/libz.so.1.2.8<br>
7fbd36906000-7fbd36b05000 ---p 00019000 08:03 1056724 /lib/x86_64-linux-gnu/libz.so.1.2.8<br>
7fbd36b05000-7fbd36b06000 r--p 00018000 08:03 1056724 /lib/x86_64-linux-gnu/libz.so.1.2.8<br>
7fbd36b06000-7fbd36b07000 rw-p 00019000 08:03 1056724 /lib/x86_64-linux-gnu/libz.so.1.2.8<br>
7fbd36b07000-7fbd36cc7000 r-xp 00000000 08:03 1054777 /lib/x86_64-linux-gnu/libc-2.23.so<br>
7fbd36cc7000-7fbd36ec7000 ---p 001c0000 08:03 1054777 /lib/x86_64-linux-gnu/libc-2.23.so<br>
7fbd36ec7000-7fbd36ecb000 r--p 001c0000 08:03 1054777 /lib/x86_64-linux-gnu/libc-2.23.so<br>
7fbd36ecb000-7fbd36ecd000 rw-p 001c4000 08:03 1054777 /lib/x86_64-linux-gnu/libc-2.23.so<br>
7fbd36ecd000-7fbd36ed1000 rw-p 00000000 00:00 0<br>
7fbd36ed1000-7fbd36ede000 r-xp 00000000 08:03 1519592 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/jli/libjli.so<br>
7fbd36ede000-7fbd370de000 ---p 0000d000 08:03 1519592 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/jli/libjli.so<br>
7fbd370de000-7fbd370df000 r--p 0000d000 08:03 1519592 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/jli/libjli.so<br>
7fbd370df000-7fbd370e0000 rw-p 0000e000 08:03 1519592 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/jli/libjli.so<br>
7fbd370e0000-7fbd37106000 r-xp 00000000 08:03 1054773 /lib/x86_64-linux-gnu/ld-2.23.so<br>
7fbd37106000-7fbd37108000 r--s 00016000 08:03 1519614 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jce.jar<br>
7fbd37108000-7fbd3710a000 r--s 00008000 08:03 1519556 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunec.jar<br>
7fbd3710a000-7fbd371b3000 rw-p 00000000 00:00 0<br>
7fbd371b3000-7fbd371b4000 ---p 00000000 00:00 0<br>
7fbd371b4000-7fbd372b4000 rwxp 00000000 00:00 0<br>
7fbd372b4000-7fbd372b8000 rw-p 00000000 00:00 0<br>
7fbd372b8000-7fbd372be000 r--s 0003b000 08:03 1519561 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunjce_provider.jar<br>
7fbd372be000-7fbd372bf000 r--s 00010000 08:03 1519557 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/zipfs.jar<br>
7fbd372bf000-7fbd372c1000 r--s 00001000 08:03 1519558 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/dnsns.jar<br>
7fbd372c1000-7fbd372c4000 r--s 00038000 08:03 1519559 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunpkcs11.jar<br>
7fbd372c4000-7fbd372c5000 r--s 0000a000 08:03 1519564 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/jaccess.jar<br>
7fbd372c5000-7fbd372c8000 r--s 0000f000 08:03 1519562 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/icedtea-sound.jar<br>
7fbd372c8000-7fbd372d2000 r--s 00116000 08:03 1519565 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/localedata.jar<br>
7fbd372d2000-7fbd372fa000 rw-p 00000000 00:00 0<br>
7fbd372fa000-7fbd37302000 rw-s 00000000 08:03 1064020 /tmp/hsperfdata_user/4799<br>
7fbd37302000-7fbd37303000 rw-p 00000000 00:00 0<br>
7fbd37303000-7fbd37304000 r--p 00000000 00:00 0<br>
7fbd37304000-7fbd37305000 rw-p 00000000 00:00 0<br>
7fbd37305000-7fbd37306000 r--p 00025000 08:03 1054773 /lib/x86_64-linux-gnu/ld-2.23.so<br>
7fbd37306000-7fbd37307000 rw-p 00026000 08:03 1054773 /lib/x86_64-linux-gnu/ld-2.23.so<br>
7fbd37307000-7fbd37308000 rw-p 00000000 00:00 0<br>
7ffcbe30f000-7ffcbe32f000 rwxp 00000000 00:00 0 [stack]<br>
7ffcbe32f000-7ffcbe330000 rw-p 00000000 00:00 0<br>
7ffcbe3d9000-7ffcbe3dc000 r--p 00000000 00:00 0 [vvar]<br>
7ffcbe3dc000-7ffcbe3de000 r-xp 00000000 00:00 0 [vdso]<br>
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall]</p>
<p dir="auto">VM Arguments:<br>
jvm_args: -Djava.library.path=/home/user/OpenCV-github/opencv_master-build/install/share/OpenCV/java -Dfile.encoding=UTF-8<br>
java_command: SURFMatchingDemo /home/user/OpenCV-github/opencv-fork/samples/data/box.png /home/user/OpenCV-github/opencv-fork/samples/data/box_in_scene.png<br>
java_class_path (initial): /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/resources.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/rt.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jsse.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jce.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/charsets.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/localedata.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/cldrdata.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/icedtea-sound.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/jaccess.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/nashorn.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunpkcs11.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/dnsns.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/zipfs.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunjce_provider.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunec.jar:/home/user/eclipse-workspace/TutorialOpenCV/bin:/home/user/OpenCV-github/opencv_master-build/install/share/OpenCV/java/opencv-341.jar<br>
Launcher Type: SUN_STANDARD</p>
<p dir="auto">Environment Variables:<br>
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin<br>
SHELL=/bin/bash<br>
DISPLAY=:0</p>
<p dir="auto">Signal Handlers:<br>
SIGSEGV: [libjvm.so+0xa6e6f0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO<br>
SIGBUS: [libjvm.so+0xa6e6f0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO<br>
SIGFPE: [libjvm.so+0x8b5d50], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO<br>
SIGPIPE: [libjvm.so+0x8b5d50], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO<br>
SIGXFSZ: [libjvm.so+0x8b5d50], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO<br>
SIGILL: [libjvm.so+0x8b5d50], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO<br>
SIGUSR1: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none<br>
SIGUSR2: [libjvm.so+0x8b5c00], sa_mask[0]=00100000000000000000000000000000, sa_flags=SA_RESTART|SA_SIGINFO<br>
SIGHUP: [libjvm.so+0x8b60d0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO<br>
SIGINT: [libjvm.so+0x8b60d0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO<br>
SIGTERM: [libjvm.so+0x8b60d0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO<br>
SIGQUIT: [libjvm.so+0x8b60d0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO</p>
<p dir="auto">--------------- S Y S T E M ---------------</p>
<p dir="auto">OS:DISTRIB_ID=Ubuntu<br>
DISTRIB_RELEASE=16.04<br>
DISTRIB_CODENAME=xenial<br>
DISTRIB_DESCRIPTION="Ubuntu 16.04.4 LTS"</p>
<p dir="auto">uname:Linux 4.4.0-127-generic <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="8299391" data-permission-text="Title is private" data-url="https://github.com/opencv/opencv/issues/153" data-hovercard-type="pull_request" data-hovercard-url="/opencv/opencv/pull/153/hovercard" href="https://github.com/opencv/opencv/pull/153">#153</a>-Ubuntu SMP Sat May 19 10:58:46 UTC 2018 x86_64<br>
libc:glibc 2.23 NPTL 2.23<br>
rlimit: STACK 8192k, CORE 0k, NPROC 63616, NOFILE 1048576, AS infinity<br>
load average:0,50 0,60 0,63</p>
<p dir="auto">vm_info: OpenJDK 64-Bit Server VM (25.171-b11) for linux-amd64 JRE (1.8.0_171-8u171-b11-0ubuntu0.16.04.1-b11), built on Apr 27 2018 17:19:03 by "buildd" with gcc 5.4.0 20160609</p>
</details> | 0 |
<p dir="auto">Currently, the IAM Policy template for Kubernetes master grants <code class="notranslate">ec2:*</code> permissions, which means the role have the API access to potentially terminate other instances even if they are not in the Kubernetes cluster.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" {
"Effect": "Allow",
"Action": ["ec2:*"],
"Resource": ["*"]
},"><pre class="notranslate"><code class="notranslate"> {
"Effect": "Allow",
"Action": ["ec2:*"],
"Resource": ["*"]
},
</code></pre></div>
<p dir="auto"><a href="https://github.com/kubernetes/kubernetes/blob/master/cluster/aws/templates/iam/kubernetes-master-policy.json#L6">https://github.com/kubernetes/kubernetes/blob/master/cluster/aws/templates/iam/kubernetes-master-policy.json#L6</a></p>
<p dir="auto">A suggestion is to instead whitelist the actions required for Kubernetes Master. A list to start with would be:</p>
<p dir="auto"><code class="notranslate">ec2:Describe*</code> to get ec2 instance metadata such as AZ information.<br>
<code class="notranslate">ec2:AttachVolume</code>, <code class="notranslate">ec2:DetachVolume</code> to support EBS mounting.</p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/justinsb/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/justinsb">@justinsb</a></p> | <p dir="auto">For example, the master currently has blanket permissions on ec2, and the minion has write access to the s3 bucket, but only needs read access.</p>
<p dir="auto">This may entail giving objects we create a prefix to enable stricter policies.</p> | 1 |
<p dir="auto">This is <em>not</em> a feature request (for rest/spread operator) or a bug report (that rest/spread doesn't work).</p>
<ol dir="auto">
<li>Is there a way to configure vscode today to suppress or otherwise not show as syntax errors the usage of the object spread operator?</li>
<li>If this is not possible, should we update the public <a href="https://code.visualstudio.com/Docs/languages/javascript#_es6-support" rel="nofollow">documentation</a> about ES6 support (which today links to a summary of ES6 features <strong>including</strong> rest/spread) to indicate this lack of support?</li>
</ol> | <p dir="auto">es7 proposal : <a href="https://github.com/sebmarkbage/ecmascript-rest-spread">https://github.com/sebmarkbage/ecmascript-rest-spread</a></p>
<h2 dir="auto">Spread properties</h2>
<h3 dir="auto">Typing</h3>
<p dir="auto">In my opinion the goal of this method is to be able to duplicate an object and changing some props, so I think it's particularly important in this case to not check duplicate property declaration :</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var obj = { x: 1, y: 2};
var obj1 = {...obj, z: 3, y: 4}; // not an error"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">obj</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span> <span class="pl-c1">x</span>: <span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-c1">y</span>: <span class="pl-c1">2</span><span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">obj1</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>...<span class="pl-s1">obj</span><span class="pl-kos">,</span> <span class="pl-c1">z</span>: <span class="pl-c1">3</span><span class="pl-kos">,</span> <span class="pl-c1">y</span>: <span class="pl-c1">4</span><span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-c">// not an error</span></pre></div>
<p dir="auto">I have a very naive <a href="https://github.com/fdecampredon/jsx-typescript/blob/3c692cbb80622b74d1b308b3c5dcab6b993b4111/src/compiler/checker.ts#L5665-L5671">type check algorithm</a> for a similar feature (<code class="notranslate">JSXSpreadAttribute</code>) in my little <code class="notranslate">jsx-typescript</code> fork: I just copy the properties of the <em>spread object</em> in the properties table when I encounter a spread object, and override those property if I encounter a declaration with a similar name.</p>
<h3 dir="auto">Emitting</h3>
<p dir="auto"><a href="https://github.com/facebook/jstransform/">jstransform</a> use <code class="notranslate">Object.assign</code>, <a href="https://babeljs.io/" rel="nofollow">babel</a> introduce a shim:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">_extends</span> <span class="pl-c1">=</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-c1">assign</span> <span class="pl-c1">||</span> <span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">target</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">for</span> <span class="pl-kos">(</span><span class="pl-k">var</span> <span class="pl-s1">i</span> <span class="pl-c1">=</span> <span class="pl-c1">1</span><span class="pl-kos">;</span> <span class="pl-s1">i</span> <span class="pl-c1"><</span> <span class="pl-smi">arguments</span><span class="pl-kos">.</span><span class="pl-c1">length</span><span class="pl-kos">;</span> <span class="pl-s1">i</span><span class="pl-c1">++</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">var</span> <span class="pl-s1">source</span> <span class="pl-c1">=</span> <span class="pl-smi">arguments</span><span class="pl-kos">[</span><span class="pl-s1">i</span><span class="pl-kos">]</span><span class="pl-kos">;</span> <span class="pl-k">for</span> <span class="pl-kos">(</span><span class="pl-k">var</span> <span class="pl-s1">key</span> <span class="pl-k">in</span> <span class="pl-s1">source</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-v">Object</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">.</span><span class="pl-c1">hasOwnProperty</span><span class="pl-kos">.</span><span class="pl-en">call</span><span class="pl-kos">(</span><span class="pl-s1">source</span><span class="pl-kos">,</span> <span class="pl-s1">key</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-s1">target</span><span class="pl-kos">[</span><span class="pl-s1">key</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">source</span><span class="pl-kos">[</span><span class="pl-s1">key</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-k">return</span> <span class="pl-s1">target</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">We could either force the presence of <code class="notranslate">assign</code> function on <code class="notranslate">ObjectConstructor</code> interface, or provide a similar function (with a different name).</p>
<p dir="auto">I think that the optimal solution would be to not emit any helper in <code class="notranslate">es6</code> target (or if <code class="notranslate">Object.assign</code> is defined), and to emit an helper function for <code class="notranslate">es5</code>, <code class="notranslate">es3</code>.</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var obj = { x: 1, y: 2};
var obj1 = {...obj, z: 3};
/// ES6 emit
var obj = {x: 1, y: 2};
var obj1= Object.assign({}, obj, { z: 3 });
//ES3 emit
var __assign = function (target) {
for (var i = 1; i < arguments.length; i++) {
var source = arguments[i];
for (var key in source) {
if (Object.prototype.hasOwnProperty.call(source, key)) {
target[key] = source[key];
}
}
}
return target;
};
var obj = {x: 1, y: 2};
var obj1= __assign({}, obj, { z: 3 });"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">obj</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span> <span class="pl-c1">x</span>: <span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-c1">y</span>: <span class="pl-c1">2</span><span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">obj1</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>...<span class="pl-s1">obj</span><span class="pl-kos">,</span> <span class="pl-c1">z</span>: <span class="pl-c1">3</span><span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-c">/// ES6 emit</span>
<span class="pl-k">var</span> <span class="pl-s1">obj</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-c1">x</span>: <span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-c1">y</span>: <span class="pl-c1">2</span><span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">obj1</span><span class="pl-c1">=</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">assign</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-s1">obj</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">z</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-c">//ES3 emit</span>
<span class="pl-k">var</span> <span class="pl-en">__assign</span> <span class="pl-c1">=</span> <span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">target</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">for</span> <span class="pl-kos">(</span><span class="pl-k">var</span> <span class="pl-s1">i</span> <span class="pl-c1">=</span> <span class="pl-c1">1</span><span class="pl-kos">;</span> <span class="pl-s1">i</span> <span class="pl-c1"><</span> <span class="pl-smi">arguments</span><span class="pl-kos">.</span><span class="pl-c1">length</span><span class="pl-kos">;</span> <span class="pl-s1">i</span><span class="pl-c1">++</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">source</span> <span class="pl-c1">=</span> <span class="pl-smi">arguments</span><span class="pl-kos">[</span><span class="pl-s1">i</span><span class="pl-kos">]</span><span class="pl-kos">;</span>
<span class="pl-k">for</span> <span class="pl-kos">(</span><span class="pl-k">var</span> <span class="pl-s1">key</span> <span class="pl-k">in</span> <span class="pl-s1">source</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-v">Object</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">.</span><span class="pl-c1">hasOwnProperty</span><span class="pl-kos">.</span><span class="pl-en">call</span><span class="pl-kos">(</span><span class="pl-s1">source</span><span class="pl-kos">,</span> <span class="pl-s1">key</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">target</span><span class="pl-kos">[</span><span class="pl-s1">key</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">source</span><span class="pl-kos">[</span><span class="pl-s1">key</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-k">return</span> <span class="pl-s1">target</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">obj</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-c1">x</span>: <span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-c1">y</span>: <span class="pl-c1">2</span><span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">obj1</span><span class="pl-c1">=</span> <span class="pl-en">__assign</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-s1">obj</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">z</span>: <span class="pl-c1">3</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<h2 dir="auto">Rest properties</h2>
<h3 dir="auto">Typing</h3>
<p dir="auto">For simple object the new type is a subtype of the assignation that does not contains properties that has been captured before the rest properties :</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var obj = {x:1, y: 1, z: 1};
var {z, ...obj1} = obj;
obj1// {x: number; y:number};"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">obj</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-c1">x</span>:<span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-c1">y</span>: <span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-c1">z</span>: <span class="pl-c1">1</span><span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-kos">{</span>z<span class="pl-kos">,</span> ...<span class="pl-s1">obj1</span><span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-s1">obj</span><span class="pl-kos">;</span>
<span class="pl-s1">obj1</span><span class="pl-c">// {x: number; y:number};</span></pre></div>
<p dir="auto">If the destructuring assignment has an index declaration, the result has also a similar index declaration:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var obj: { [string: string]: string };
var {[excludedId], ...obj1} = obj;
obj1// { [string: string]: string };"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">obj</span>: <span class="pl-kos">{</span> <span class="pl-kos">[</span><span class="pl-s1">string</span>: <span class="pl-smi">string</span><span class="pl-kos">]</span>: <span class="pl-smi">string</span> <span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-kos">{</span><span class="pl-kos">[</span><span class="pl-s1">excludedId</span><span class="pl-kos">]</span><span class="pl-kos">,</span> ...<span class="pl-s1">obj1</span><span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-s1">obj</span><span class="pl-kos">;</span>
<span class="pl-s1">obj1</span><span class="pl-c">// { [string: string]: string };</span></pre></div>
<p dir="auto">new/call declarations are obviously not captured:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var obj: { (): void; property: string};
var { ...obj1} = obj;
obj1// { property: string };"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">obj</span>: <span class="pl-kos">{</span> <span class="pl-kos">(</span><span class="pl-kos">)</span>: <span class="pl-smi"><span class="pl-k">void</span></span><span class="pl-kos">;</span> <span class="pl-c1">property</span>: <span class="pl-smi">string</span><span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-kos">{</span> ...<span class="pl-s1">obj1</span><span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-s1">obj</span><span class="pl-kos">;</span>
<span class="pl-s1">obj1</span><span class="pl-c">// { property: string };</span></pre></div>
<h3 dir="auto">Emitting</h3>
<p dir="auto">It is not possible to emit <em>rest properties</em> without an helper function, this one is from babel:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var obj = {x:1, y: 1, z: 1};
var {z, ...obj1} = obj;"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">obj</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-c1">x</span>:<span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-c1">y</span>: <span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-c1">z</span>: <span class="pl-c1">1</span><span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-kos">{</span>z<span class="pl-kos">,</span> ...<span class="pl-s1">obj1</span><span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-s1">obj</span><span class="pl-kos">;</span></pre></div>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var __objectWithoutProperties = function(obj, keys) {
var target = {};
for (var i in obj) {
if (keys.indexOf(i) >= 0) continue;
if (!Object.prototype.hasOwnProperty.call(obj, i)) continue;
target[i] = obj[i];
}
return target;
};
var obj = {x:1, y: 1, z: 1};
var z = obj.z;
var obj1 = __objectWithoutProperties(obj, ["z"]);"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-en">__objectWithoutProperties</span> <span class="pl-c1">=</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">obj</span><span class="pl-kos">,</span> <span class="pl-s1">keys</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">target</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">for</span> <span class="pl-kos">(</span><span class="pl-k">var</span> <span class="pl-s1">i</span> <span class="pl-k">in</span> <span class="pl-s1">obj</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">keys</span><span class="pl-kos">.</span><span class="pl-en">indexOf</span><span class="pl-kos">(</span><span class="pl-s1">i</span><span class="pl-kos">)</span> <span class="pl-c1">>=</span> <span class="pl-c1">0</span><span class="pl-kos">)</span> <span class="pl-k">continue</span><span class="pl-kos">;</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-c1">!</span><span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">.</span><span class="pl-c1">hasOwnProperty</span><span class="pl-kos">.</span><span class="pl-en">call</span><span class="pl-kos">(</span><span class="pl-s1">obj</span><span class="pl-kos">,</span> <span class="pl-s1">i</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-k">continue</span><span class="pl-kos">;</span>
<span class="pl-s1">target</span><span class="pl-kos">[</span><span class="pl-s1">i</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">obj</span><span class="pl-kos">[</span><span class="pl-s1">i</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">target</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">obj</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-c1">x</span>:<span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-c1">y</span>: <span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-c1">z</span>: <span class="pl-c1">1</span><span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">z</span> <span class="pl-c1">=</span> <span class="pl-s1">obj</span><span class="pl-kos">.</span><span class="pl-c1">z</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">obj1</span> <span class="pl-c1">=</span> <span class="pl-en">__objectWithoutProperties</span><span class="pl-kos">(</span><span class="pl-s1">obj</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s">"z"</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><em>Edit: added some little typing/emitting example</em></p> | 1 |
<p dir="auto">I can't think of a reason why this method shouldn't be added, but I may be missing something.</p> | <p dir="auto">I wonder whether <code class="notranslate">collect()</code> isn't always equivalent to <code class="notranslate">Vector()</code>, and could therefore be merged into it:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia> methods(collect)
#3 methods for generic function "collect":
collect(r::Range{T<:Any}) at range.jl:753
collect{T}(::Type{T}, itr) at array.jl:217
collect(itr) at array.jl:224"><pre class="notranslate">julia<span class="pl-k">></span> <span class="pl-c1">methods</span>(collect)
<span class="pl-c"><span class="pl-c">#</span>3 methods for generic function "collect":</span>
<span class="pl-c1">collect</span>(r<span class="pl-k">::</span><span class="pl-c1">Range{T<:Any}</span>) at range<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">753</span>
<span class="pl-c1">collect</span><span class="pl-c1">{T}</span>(<span class="pl-k">::</span><span class="pl-c1">Type{T}</span>, itr) at array<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">217</span>
<span class="pl-c1">collect</span>(itr) at array<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">224</span></pre></div>
<p dir="auto">The method for <code class="notranslate">Range</code> returns a vector, so it could be replaced with <code class="notranslate">Array()</code>, as both call <code class="notranslate">vcat()</code> in the end. <code class="notranslate">convert(Vector, ...)</code> currently fails and should be fixed.</p>
<p dir="auto">The methods for general iterables are more complex, but they essentially always create an <code class="notranslate">Array</code> too. Even when they call <code class="notranslate">similar()</code>, it's on a <code class="notranslate">1:1</code> range, so they actually create a <code class="notranslate">Vector</code>. So the <code class="notranslate">collect()</code> machinery could be moved to <code class="notranslate">Array()</code>/<code class="notranslate">Vector()</code> to make them support conversion from any iterable.</p>
<p dir="auto">This issue is related to discussions regarding <code class="notranslate">similar()</code> (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="112908187" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/13731" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/13731/hovercard" href="https://github.com/JuliaLang/julia/issues/13731">#13731</a>). Indeed, Julia provides a few functions which appear to behave differently, but in practice behave like <code class="notranslate">Array</code>, and callers end up depending on this assumption. This makes the API more complex and less explicit.</p>
<p dir="auto">See also <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="96373202" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/12251" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/12251/hovercard" href="https://github.com/JuliaLang/julia/issues/12251">#12251</a> about merging <code class="notranslate">full</code> into <code class="notranslate">Array</code>.</p> | 1 |
<p dir="auto">A few days ago when I started I was able to use tab completion in the waypoint editor (typing p then TAB would autocomoplete <code class="notranslate"><p></p></code>) This behavior seems to have stopped working.</p> | <p dir="auto">Emmet auto-complete isn't functioning in the code editor. Everything <em>seems</em> to be there in create-editor.js but something must be going wrong.</p> | 1 |
<h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">synchronize module</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 = /Users/duff/camp-ansible/ansible.local.cfg
configured module search path = Default w/o overrides"><pre class="notranslate"><code class="notranslate">ansible 2.0.1.0
config file = /Users/duff/camp-ansible/ansible.local.cfg
configured module search path = Default w/o overrides
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<p dir="auto">Ansible config</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="timeout = 30
ssh_args = -F config_ssh_local -o ControlMaster=auto -o ControlPersist=30m
pipelining = True
[accelerate]
accelerate_port = 5099
accelerate_timeout = 30
accelerate_connect_timeout = 5.0
accelerate_daemon_timeout = 30"><pre class="notranslate"><code class="notranslate">timeout = 30
ssh_args = -F config_ssh_local -o ControlMaster=auto -o ControlPersist=30m
pipelining = True
[accelerate]
accelerate_port = 5099
accelerate_timeout = 30
accelerate_connect_timeout = 5.0
accelerate_daemon_timeout = 30
</code></pre></div>
<p dir="auto">ssh config : i use a specific deploy account different to the connect user:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Host BASTION
User myuser
ForwardAgent yes
ProxyCommand none
BatchMode yes
GSSAPIAuthentication no
Host *
User myuser
GSSAPIAuthentication no
ProxyCommand ssh -F config_ssh_local -W %h:%p BASTION"><pre class="notranslate"><code class="notranslate">Host BASTION
User myuser
ForwardAgent yes
ProxyCommand none
BatchMode yes
GSSAPIAuthentication no
Host *
User myuser
GSSAPIAuthentication no
ProxyCommand ssh -F config_ssh_local -W %h:%p BASTION
</code></pre></div>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">Running from Mac OSX Yosemith.<br>
Target host is on ubuntu 14.04 TLS</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">synchronized from tow remote host no more works on 2.0.1</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<p dir="auto">ansible-playbook -b --become-user=deployUser --ask-become-pass playbooks/test_sync.yml</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- name: "POC Rsync"
hosts: hostA
tasks:
- name: "rsync from hostB to hostA"
synchronize: src=/etc/resolv.conf dest=/tmp/resolv.conf set_remote_user=no
delegate_to: hostB"><pre class="notranslate"><code class="notranslate">- name: "POC Rsync"
hosts: hostA
tasks:
- name: "rsync from hostB to hostA"
synchronize: src=/etc/resolv.conf dest=/tmp/resolv.conf set_remote_user=no
delegate_to: hostB
</code></pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">file rsync from hostB on /etc/resolv.conf to hostA on /tmp/resolv.conf<br>
it's works with 1.9.4</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="PLAY [POC Rsync] **************************************************************
GATHERING FACTS ***************************************************************
<hostA> ESTABLISH CONNECTION FOR USER: myuser
<hostA> REMOTE_MODULE setup
<hostA> EXEC ssh -C -vvv -F config_ssh_axa -o ControlMaster=auto -o ControlPersist=30m -o ControlPath="/Users/myuser/.ansible/cp/ansible-ssh-%h-%p-%r" -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=30 hostA /bin/sh -c 'sudo -k && sudo -H -S -p "[sudo via ansible, key=keyfgwrkratqtowjerpwxbwputeuhjrh] password: " -u deployUser /bin/sh -c '"'"'echo BECOME-SUCCESS-keyfgwrkratqtowjerpwxbwputeuhjrh; LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 /usr/bin/python'"'"''
ok: [hostA]
TASK: [rsync depuis hostB vers hostA] ************************************
<hostB> ESTABLISH CONNECTION FOR USER: myuser
<hostB> EXEC ssh -C -vvv -F config_ssh_axa -o ControlMaster=auto -o ControlPersist=30m -o ControlPath="/Users/myuser/.ansible/cp/ansible-ssh-%h-%p-%r" -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=30 hostB /bin/sh -c 'sudo -k && sudo -H -S -p "[sudo via ansible, key=ipbqeyvlxtmgmkdlwqcloznrfpuuwkgp] password: " -u deployUser /bin/sh -c '"'"'echo BECOME-SUCCESS-ipbqeyvlxtmgmkdlwqcloznrfpuuwkgp; LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 /usr/bin/python'"'"''
ok: [hostA -> hostB] => {"changed": false, "cmd": "rsync --delay-updates -F --compress --archive --rsh 'ssh -S none -o StrictHostKeyChecking=no' --out-format='<<CHANGED>>%i %n%L' \"/etc/resolv.conf\" \"hostA:/tmp/resolv.conf\"", "msg": "", "rc": 0, "stdout_lines": []}"><pre class="notranslate"><code class="notranslate">PLAY [POC Rsync] **************************************************************
GATHERING FACTS ***************************************************************
<hostA> ESTABLISH CONNECTION FOR USER: myuser
<hostA> REMOTE_MODULE setup
<hostA> EXEC ssh -C -vvv -F config_ssh_axa -o ControlMaster=auto -o ControlPersist=30m -o ControlPath="/Users/myuser/.ansible/cp/ansible-ssh-%h-%p-%r" -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=30 hostA /bin/sh -c 'sudo -k && sudo -H -S -p "[sudo via ansible, key=keyfgwrkratqtowjerpwxbwputeuhjrh] password: " -u deployUser /bin/sh -c '"'"'echo BECOME-SUCCESS-keyfgwrkratqtowjerpwxbwputeuhjrh; LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 /usr/bin/python'"'"''
ok: [hostA]
TASK: [rsync depuis hostB vers hostA] ************************************
<hostB> ESTABLISH CONNECTION FOR USER: myuser
<hostB> EXEC ssh -C -vvv -F config_ssh_axa -o ControlMaster=auto -o ControlPersist=30m -o ControlPath="/Users/myuser/.ansible/cp/ansible-ssh-%h-%p-%r" -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=30 hostB /bin/sh -c 'sudo -k && sudo -H -S -p "[sudo via ansible, key=ipbqeyvlxtmgmkdlwqcloznrfpuuwkgp] password: " -u deployUser /bin/sh -c '"'"'echo BECOME-SUCCESS-ipbqeyvlxtmgmkdlwqcloznrfpuuwkgp; LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 /usr/bin/python'"'"''
ok: [hostA -> hostB] => {"changed": false, "cmd": "rsync --delay-updates -F --compress --archive --rsh 'ssh -S none -o StrictHostKeyChecking=no' --out-format='<<CHANGED>>%i %n%L' \"/etc/resolv.conf\" \"hostA:/tmp/resolv.conf\"", "msg": "", "rc": 0, "stdout_lines": []}
</code></pre></div>
<h5 dir="auto">ACTUAL RESULTS</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ ./ansible-playbook_wrapper playbooks/test_sync.yml -vvvv
Using /Users/duff/camp-ansible/ansible.local.cfg as config file
SUDO password:
Loaded callback default of type stdout, v2.0
1 plays in playbooks/test_sync.yml
PLAY [POC Rsync] ***************************************************************
TASK [setup] *******************************************************************
<hostA> ESTABLISH SSH CONNECTION FOR USER: None
<hostA> SSH: EXEC ssh -C -vvv -F config_ssh_local -o ControlMaster=auto -o ControlPersist=30m -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=30 -o ControlPath=/Users/duff/.ansible/cp/ansible-ssh-%h-%p-%r hostA '/bin/sh -c '"'"'sudo -H -S -p "[sudo via ansible, key=ffvxikzutrqlropmbltuprkzjlyhtlev] password: " -u deployUser /bin/sh -c '"'"'"'"'"'"'"'"'echo BECOME-SUCCESS-ffvxikzutrqlropmbltuprkzjlyhtlev; /bin/sh -c '"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'LANG=fr_FR.UTF-8 LC_ALL=fr_FR.UTF-8 LC_MESSAGES=fr_FR.UTF-8 /usr/bin/python'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"''"'"'"'"'"'"'"'"''"'"''
ok: [hostA]
TASK [rsync from hostB to hostA] **************************************
task path: /Users/duff/dev/sources/axa/camp-ansible/playbooks/test_sync.yml:10
<hostB> ESTABLISH SSH CONNECTION FOR USER: None
<hostB> SSH: EXEC ssh -C -vvv -F config_ssh_axa -o ControlMaster=auto -o ControlPersist=30m -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=30 -o ControlPath=/Users/duff/.ansible/cp/ansible-ssh-%h-%p-%r hostB '/bin/sh -c '"'"'LANG=fr_FR.UTF-8 LC_ALL=fr_FR.UTF-8 LC_MESSAGES=fr_FR.UTF-8 /usr/bin/python'"'"''
fatal: [hostA -> hostB]: FAILED! => {"changed": false, "cmd": "/usr/bin/rsync --delay-updates -F --compress --archive --rsh '/usr/bin/ssh -S none -o StrictHostKeyChecking=no' --rsync-path=\"sudo rsync\" --out-format='<<CHANGED>>%i %n%L' \"/etc/resolv.conf\" \"hostA:/tmp/resolv.conf\"", "failed": true, "invocation": {"module_args": {"_local_rsync_path": "rsync", "_substitute_controller": false, "archive": true, "checksum": false, "compress": true, "copy_links": null, "delete": false, "dest": "hostA:/tmp/resolv.conf", "dest_port": 22, "dirs": false, "existing_only": false, "group": null, "links": null, "mode": "push", "owner": null, "partial": false, "perms": null, "private_key": null, "recursive": null, "rsync_opts": null, "rsync_path": "\"sudo rsync\"", "rsync_timeout": 0, "set_remote_user": false, "src": "/etc/resolv.conf", "ssh_args": null, "times": null, "verify_host": false}}, "msg": "sudo: no tty present and no askpass program specified\nrsync: connection unexpectedly closed (0 bytes received so far) [sender]\nrsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.0]\n", "rc": 12}"><pre class="notranslate"><code class="notranslate">$ ./ansible-playbook_wrapper playbooks/test_sync.yml -vvvv
Using /Users/duff/camp-ansible/ansible.local.cfg as config file
SUDO password:
Loaded callback default of type stdout, v2.0
1 plays in playbooks/test_sync.yml
PLAY [POC Rsync] ***************************************************************
TASK [setup] *******************************************************************
<hostA> ESTABLISH SSH CONNECTION FOR USER: None
<hostA> SSH: EXEC ssh -C -vvv -F config_ssh_local -o ControlMaster=auto -o ControlPersist=30m -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=30 -o ControlPath=/Users/duff/.ansible/cp/ansible-ssh-%h-%p-%r hostA '/bin/sh -c '"'"'sudo -H -S -p "[sudo via ansible, key=ffvxikzutrqlropmbltuprkzjlyhtlev] password: " -u deployUser /bin/sh -c '"'"'"'"'"'"'"'"'echo BECOME-SUCCESS-ffvxikzutrqlropmbltuprkzjlyhtlev; /bin/sh -c '"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'LANG=fr_FR.UTF-8 LC_ALL=fr_FR.UTF-8 LC_MESSAGES=fr_FR.UTF-8 /usr/bin/python'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"'"''"'"'"'"'"'"'"'"''"'"''
ok: [hostA]
TASK [rsync from hostB to hostA] **************************************
task path: /Users/duff/dev/sources/axa/camp-ansible/playbooks/test_sync.yml:10
<hostB> ESTABLISH SSH CONNECTION FOR USER: None
<hostB> SSH: EXEC ssh -C -vvv -F config_ssh_axa -o ControlMaster=auto -o ControlPersist=30m -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o ConnectTimeout=30 -o ControlPath=/Users/duff/.ansible/cp/ansible-ssh-%h-%p-%r hostB '/bin/sh -c '"'"'LANG=fr_FR.UTF-8 LC_ALL=fr_FR.UTF-8 LC_MESSAGES=fr_FR.UTF-8 /usr/bin/python'"'"''
fatal: [hostA -> hostB]: FAILED! => {"changed": false, "cmd": "/usr/bin/rsync --delay-updates -F --compress --archive --rsh '/usr/bin/ssh -S none -o StrictHostKeyChecking=no' --rsync-path=\"sudo rsync\" --out-format='<<CHANGED>>%i %n%L' \"/etc/resolv.conf\" \"hostA:/tmp/resolv.conf\"", "failed": true, "invocation": {"module_args": {"_local_rsync_path": "rsync", "_substitute_controller": false, "archive": true, "checksum": false, "compress": true, "copy_links": null, "delete": false, "dest": "hostA:/tmp/resolv.conf", "dest_port": 22, "dirs": false, "existing_only": false, "group": null, "links": null, "mode": "push", "owner": null, "partial": false, "perms": null, "private_key": null, "recursive": null, "rsync_opts": null, "rsync_path": "\"sudo rsync\"", "rsync_timeout": 0, "set_remote_user": false, "src": "/etc/resolv.conf", "ssh_args": null, "times": null, "verify_host": false}}, "msg": "sudo: no tty present and no askpass program specified\nrsync: connection unexpectedly closed (0 bytes received so far) [sender]\nrsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.0]\n", "rc": 12}
</code></pre></div> | <h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<ul dir="auto">
<li>ios_facts</li>
<li>ansible_connection</li>
</ul>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.4.0 (junos-tests-fix-port 8228b11b55) last updated 2017/08/01 08:35:32 (GMT -400)
config file = /etc/ansible/ansible.cfg
configured module search path = [u'/Users/dnewswan/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /Users/dnewswan/code/ansible/lib/ansible
executable location = /Users/dnewswan/code/ansible/bin/ansible
python version = 2.7.13 (default, Apr 4 2017, 08:47:57) [GCC 4.2.1 Compatible Apple LLVM 8.1.0 (clang-802.0.38)]"><pre class="notranslate"><code class="notranslate">ansible 2.4.0 (junos-tests-fix-port 8228b11b55) last updated 2017/08/01 08:35:32 (GMT -400)
config file = /etc/ansible/ansible.cfg
configured module search path = [u'/Users/dnewswan/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /Users/dnewswan/code/ansible/lib/ansible
executable location = /Users/dnewswan/code/ansible/bin/ansible
python version = 2.7.13 (default, Apr 4 2017, 08:47:57) [GCC 4.2.1 Compatible Apple LLVM 8.1.0 (clang-802.0.38)]
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">ios_facts throws an <code class="notranslate">unable to connect to socket</code> error. Inspecting the logs from ansible-connection reveals a stack trace with a <code class="notranslate">error: [Errno 9] Bad file descriptor</code> and a <code class="notranslate">NoneType</code> error in the network_cli connection plugin.</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<p dir="auto">run tests with <code class="notranslate">ANSIBLE_LOG_PATH=./log ansible-playbook -i inventory.network -vvvv -k -u cisco ios.yaml -e limit_to=ios_facts</code></p>
<p dir="auto">open up the log file to find the ansible-connection stack trace.</p>
<p dir="auto">This issue does not appear to affect the other iosxr modules, and running the tests multiple times demonstrates that it is probably not a flake either.</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"></pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">Test should pass.</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2017-08-01 10:18:29,151 p=61276 u=dnewswan | TASK [ios_facts : test getting all facts] ************************************************************************************************************************************************************************************************************************************
2017-08-01 10:18:29,151 p=61276 u=dnewswan | task path: /Users/dnewswan/code/ansible/test/integration/targets/ios_facts/tests/cli/all_facts.yaml:5
2017-08-01 10:18:30,394 p=61350 u=dnewswan | re-using existing socket for cisco@ios01:22
2017-08-01 10:18:30,394 p=61046 u=dnewswan | incoming request accepted on persistent socket
2017-08-01 10:18:30,394 p=61046 u=dnewswan | socket operation is CONTEXT
2017-08-01 10:18:30,395 p=61046 u=dnewswan | updating play_context for connection
2017-08-01 10:18:30,473 p=61046 u=dnewswan | socket operation completed with rc 0
2017-08-01 10:18:30,474 p=61046 u=dnewswan | socket operation is RUN
2017-08-01 10:18:30,474 p=61046 u=dnewswan | socket operation completed with rc 0
2017-08-01 10:18:32,285 p=61356 u=dnewswan | re-using existing socket for cisco@ios01:22
2017-08-01 10:18:32,286 p=61046 u=dnewswan | incoming request accepted on persistent socket
2017-08-01 10:18:32,286 p=61046 u=dnewswan | socket operation is CONTEXT
2017-08-01 10:18:32,286 p=61046 u=dnewswan | updating play_context for connection
2017-08-01 10:18:32,286 p=61046 u=dnewswan | socket operation completed with rc 0
2017-08-01 10:18:32,287 p=61046 u=dnewswan | socket operation is EXEC
2017-08-01 10:18:32,287 p=61046 u=dnewswan | socket operation completed with rc 0
2017-08-01 10:18:32,937 p=61276 u=dnewswan | Using module_utils file /Users/dnewswan/code/ansible/lib/ansible/module_utils/basic.py
2017-08-01 10:18:32,938 p=61276 u=dnewswan | Using module_utils file /Users/dnewswan/code/ansible/lib/ansible/module_utils/six/__init__.py
2017-08-01 10:18:32,939 p=61276 u=dnewswan | Using module_utils file /Users/dnewswan/code/ansible/lib/ansible/module_utils/ios.py
2017-08-01 10:18:33,040 p=61276 u=dnewswan | Using module_utils file /Users/dnewswan/code/ansible/lib/ansible/module_utils/_text.py
2017-08-01 10:18:33,041 p=61276 u=dnewswan | Using module_utils file /Users/dnewswan/code/ansible/lib/ansible/module_utils/parsing/convert_bool.py
2017-08-01 10:18:33,041 p=61276 u=dnewswan | Using module_utils file /Users/dnewswan/code/ansible/lib/ansible/module_utils/parsing/__init__.py
2017-08-01 10:18:33,041 p=61276 u=dnewswan | Using module_utils file /Users/dnewswan/code/ansible/lib/ansible/module_utils/pycompat24.py
2017-08-01 10:18:33,124 p=61276 u=dnewswan | Using module_utils file /Users/dnewswan/code/ansible/lib/ansible/module_utils/connection.py
2017-08-01 10:18:33,125 p=61276 u=dnewswan | Using module_utils file /Users/dnewswan/code/ansible/lib/ansible/module_utils/network_common.py
2017-08-01 10:18:33,140 p=61276 u=dnewswan | Using module file /Users/dnewswan/code/ansible/lib/ansible/modules/network/ios/ios_facts.py
2017-08-01 10:18:33,886 p=61046 u=dnewswan | incoming request accepted on persistent socket
2017-08-01 10:18:33,886 p=61046 u=dnewswan | socket operation is EXEC
2017-08-01 10:18:43,887 p=61046 u=dnewswan | commnad timeout triggered, timeout value is 10 secs
2017-08-01 10:18:43,888 p=61046 u=dnewswan | shutdown persistent connection requested
2017-08-01 10:18:43,888 p=61046 u=dnewswan | closing local listener
2017-08-01 10:18:43,888 p=61046 u=dnewswan | closing the connection
2017-08-01 10:18:43,888 p=61046 u=dnewswan | closing ssh connection to device
2017-08-01 10:18:43,889 p=61046 u=dnewswan | firing event: on_close_shell()
2017-08-01 10:18:43,889 paramiko.transport [chan 0] EOF sent (0)
2017-08-01 10:18:43,889 p=61046 u=dnewswan | cli session is now closed
2017-08-01 10:18:43,978 paramiko.transport EOF in transport thread
2017-08-01 10:18:44,006 p=61046 u=dnewswan | ssh connection has been closed successfully
2017-08-01 10:18:44,007 p=61046 u=dnewswan | removing the local control socket
2017-08-01 10:18:44,010 p=61046 u=dnewswan | shutdown complete
2017-08-01 10:18:44,011 p=61046 u=dnewswan | Traceback (most recent call last):
File "/Users/dnewswan/code/ansible/lib/ansible/plugins/connection/network_cli.py", line 174, in send
return self.receive(command, prompts, answer)
File "/Users/dnewswan/code/ansible/lib/ansible/plugins/connection/network_cli.py", line 151, in receive
data = self._shell.recv(256)
AttributeError: 'NoneType' object has no attribute 'recv'
2017-08-01 10:18:44,011 p=61046 u=dnewswan | socket operation completed with rc 1
2017-08-01 10:18:44,012 p=61046 u=dnewswan | Traceback (most recent call last):
File "/Users/dnewswan/code/ansible/bin/ansible-connection", line 132, in run
(s, addr) = self.socket.accept()
File "/usr/local/Cellar/python/2.7.13/Frameworks/Python.framework/Versions/2.7/lib/python2.7/socket.py", line 206, in accept
sock, addr = self._sock.accept()
File "/usr/local/Cellar/python/2.7.13/Frameworks/Python.framework/Versions/2.7/lib/python2.7/socket.py", line 174, in _dummy
raise error(EBADF, 'Bad file descriptor')
error: [Errno 9] Bad file descriptor
2017-08-01 10:18:44,012 p=61046 u=dnewswan | shutdown persistent connection requested
2017-08-01 10:18:44,012 p=61046 u=dnewswan | persistent connection is not active
2017-08-01 10:18:44,013 p=61046 u=dnewswan | shutdown local socket, connection was active for 0:00:58.412986 secs
2017-08-01 10:18:44,162 p=61276 u=dnewswan | The full traceback is:
File "/var/folders/ql/d9_087wj4cd10grvwzxmk4hc0000gn/T/ansible_sOJXfs/ansible_modlib.zip/ansible/module_utils/connection.py", line 67, in exec_command
sf.connect(module._socket_path)
File "/usr/local/Cellar/python/2.7.13/Frameworks/Python.framework/Versions/2.7/lib/python2.7/socket.py", line 228, in meth
return getattr(self._sock,name)(*args)
2017-08-01 10:18:44,163 p=61276 u=dnewswan | fatal: [ios01]: FAILED! => {
"changed": false,
"err": "[Errno 2] No such file or directory",
"failed": true,
"invocation": {
"module_args": {
"auth_pass": null,
"authorize": null,
"gather_subset": [
"all"
],
"host": null,
"password": null,
"port": null,
"provider": null,
"ssh_keyfile": null,
"timeout": null,
"username": null
}
},
"msg": "unable to connect to socket"
}"><pre class="notranslate"><code class="notranslate">2017-08-01 10:18:29,151 p=61276 u=dnewswan | TASK [ios_facts : test getting all facts] ************************************************************************************************************************************************************************************************************************************
2017-08-01 10:18:29,151 p=61276 u=dnewswan | task path: /Users/dnewswan/code/ansible/test/integration/targets/ios_facts/tests/cli/all_facts.yaml:5
2017-08-01 10:18:30,394 p=61350 u=dnewswan | re-using existing socket for cisco@ios01:22
2017-08-01 10:18:30,394 p=61046 u=dnewswan | incoming request accepted on persistent socket
2017-08-01 10:18:30,394 p=61046 u=dnewswan | socket operation is CONTEXT
2017-08-01 10:18:30,395 p=61046 u=dnewswan | updating play_context for connection
2017-08-01 10:18:30,473 p=61046 u=dnewswan | socket operation completed with rc 0
2017-08-01 10:18:30,474 p=61046 u=dnewswan | socket operation is RUN
2017-08-01 10:18:30,474 p=61046 u=dnewswan | socket operation completed with rc 0
2017-08-01 10:18:32,285 p=61356 u=dnewswan | re-using existing socket for cisco@ios01:22
2017-08-01 10:18:32,286 p=61046 u=dnewswan | incoming request accepted on persistent socket
2017-08-01 10:18:32,286 p=61046 u=dnewswan | socket operation is CONTEXT
2017-08-01 10:18:32,286 p=61046 u=dnewswan | updating play_context for connection
2017-08-01 10:18:32,286 p=61046 u=dnewswan | socket operation completed with rc 0
2017-08-01 10:18:32,287 p=61046 u=dnewswan | socket operation is EXEC
2017-08-01 10:18:32,287 p=61046 u=dnewswan | socket operation completed with rc 0
2017-08-01 10:18:32,937 p=61276 u=dnewswan | Using module_utils file /Users/dnewswan/code/ansible/lib/ansible/module_utils/basic.py
2017-08-01 10:18:32,938 p=61276 u=dnewswan | Using module_utils file /Users/dnewswan/code/ansible/lib/ansible/module_utils/six/__init__.py
2017-08-01 10:18:32,939 p=61276 u=dnewswan | Using module_utils file /Users/dnewswan/code/ansible/lib/ansible/module_utils/ios.py
2017-08-01 10:18:33,040 p=61276 u=dnewswan | Using module_utils file /Users/dnewswan/code/ansible/lib/ansible/module_utils/_text.py
2017-08-01 10:18:33,041 p=61276 u=dnewswan | Using module_utils file /Users/dnewswan/code/ansible/lib/ansible/module_utils/parsing/convert_bool.py
2017-08-01 10:18:33,041 p=61276 u=dnewswan | Using module_utils file /Users/dnewswan/code/ansible/lib/ansible/module_utils/parsing/__init__.py
2017-08-01 10:18:33,041 p=61276 u=dnewswan | Using module_utils file /Users/dnewswan/code/ansible/lib/ansible/module_utils/pycompat24.py
2017-08-01 10:18:33,124 p=61276 u=dnewswan | Using module_utils file /Users/dnewswan/code/ansible/lib/ansible/module_utils/connection.py
2017-08-01 10:18:33,125 p=61276 u=dnewswan | Using module_utils file /Users/dnewswan/code/ansible/lib/ansible/module_utils/network_common.py
2017-08-01 10:18:33,140 p=61276 u=dnewswan | Using module file /Users/dnewswan/code/ansible/lib/ansible/modules/network/ios/ios_facts.py
2017-08-01 10:18:33,886 p=61046 u=dnewswan | incoming request accepted on persistent socket
2017-08-01 10:18:33,886 p=61046 u=dnewswan | socket operation is EXEC
2017-08-01 10:18:43,887 p=61046 u=dnewswan | commnad timeout triggered, timeout value is 10 secs
2017-08-01 10:18:43,888 p=61046 u=dnewswan | shutdown persistent connection requested
2017-08-01 10:18:43,888 p=61046 u=dnewswan | closing local listener
2017-08-01 10:18:43,888 p=61046 u=dnewswan | closing the connection
2017-08-01 10:18:43,888 p=61046 u=dnewswan | closing ssh connection to device
2017-08-01 10:18:43,889 p=61046 u=dnewswan | firing event: on_close_shell()
2017-08-01 10:18:43,889 paramiko.transport [chan 0] EOF sent (0)
2017-08-01 10:18:43,889 p=61046 u=dnewswan | cli session is now closed
2017-08-01 10:18:43,978 paramiko.transport EOF in transport thread
2017-08-01 10:18:44,006 p=61046 u=dnewswan | ssh connection has been closed successfully
2017-08-01 10:18:44,007 p=61046 u=dnewswan | removing the local control socket
2017-08-01 10:18:44,010 p=61046 u=dnewswan | shutdown complete
2017-08-01 10:18:44,011 p=61046 u=dnewswan | Traceback (most recent call last):
File "/Users/dnewswan/code/ansible/lib/ansible/plugins/connection/network_cli.py", line 174, in send
return self.receive(command, prompts, answer)
File "/Users/dnewswan/code/ansible/lib/ansible/plugins/connection/network_cli.py", line 151, in receive
data = self._shell.recv(256)
AttributeError: 'NoneType' object has no attribute 'recv'
2017-08-01 10:18:44,011 p=61046 u=dnewswan | socket operation completed with rc 1
2017-08-01 10:18:44,012 p=61046 u=dnewswan | Traceback (most recent call last):
File "/Users/dnewswan/code/ansible/bin/ansible-connection", line 132, in run
(s, addr) = self.socket.accept()
File "/usr/local/Cellar/python/2.7.13/Frameworks/Python.framework/Versions/2.7/lib/python2.7/socket.py", line 206, in accept
sock, addr = self._sock.accept()
File "/usr/local/Cellar/python/2.7.13/Frameworks/Python.framework/Versions/2.7/lib/python2.7/socket.py", line 174, in _dummy
raise error(EBADF, 'Bad file descriptor')
error: [Errno 9] Bad file descriptor
2017-08-01 10:18:44,012 p=61046 u=dnewswan | shutdown persistent connection requested
2017-08-01 10:18:44,012 p=61046 u=dnewswan | persistent connection is not active
2017-08-01 10:18:44,013 p=61046 u=dnewswan | shutdown local socket, connection was active for 0:00:58.412986 secs
2017-08-01 10:18:44,162 p=61276 u=dnewswan | The full traceback is:
File "/var/folders/ql/d9_087wj4cd10grvwzxmk4hc0000gn/T/ansible_sOJXfs/ansible_modlib.zip/ansible/module_utils/connection.py", line 67, in exec_command
sf.connect(module._socket_path)
File "/usr/local/Cellar/python/2.7.13/Frameworks/Python.framework/Versions/2.7/lib/python2.7/socket.py", line 228, in meth
return getattr(self._sock,name)(*args)
2017-08-01 10:18:44,163 p=61276 u=dnewswan | fatal: [ios01]: FAILED! => {
"changed": false,
"err": "[Errno 2] No such file or directory",
"failed": true,
"invocation": {
"module_args": {
"auth_pass": null,
"authorize": null,
"gather_subset": [
"all"
],
"host": null,
"password": null,
"port": null,
"provider": null,
"ssh_keyfile": null,
"timeout": null,
"username": null
}
},
"msg": "unable to connect to socket"
}
</code></pre></div> | 0 |
<p dir="auto"><strong>Assignees:</strong></p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Windows <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dbaeumer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dbaeumer">@dbaeumer</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> OS X <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bgashler1/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bgashler1">@bgashler1</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Linux <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/joaomoreno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/joaomoreno">@joaomoreno</a></li>
</ul>
<p dir="auto">You can now bring up the diff editor on any 2 existing files by using the command line in the form:<br>
<code class="notranslate">code --diff <file1> <file2></code></p>
<ul dir="auto">
<li>Verify this opens the diff editor on the provided files</li>
<li>Verify this works for when code is running or not</li>
<li>Verify corner cases (e.g. files do not exist, one path instead of two, etc)</li>
<li>Verify our rules for picking windows are respected (<code class="notranslate">-r</code> to force reuse a window is respected)</li>
</ul> | <p dir="auto">It's kind of feature request. Please add support for multiple folder open on same window. It's really essential.</p> | 0 |
<p dir="auto">I assumed that failing file operations (<code class="notranslate">rm</code>, <code class="notranslate">'mkdir</code>, etc.) return a <code class="notranslate">SystemError</code> when they fail. However, under certain circumstances they return an undocumented <code class="notranslate">UVError</code>. This seems like an unintentional leak of an implementation detail:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> try rm("a") catch err info(typeof(err)) end
INFO: Base.UVError
julia> try chmod("a", 0) catch err info(typeof(err)) end
INFO: Base.UVError"><pre class="notranslate"><code class="notranslate">julia> try rm("a") catch err info(typeof(err)) end
INFO: Base.UVError
julia> try chmod("a", 0) catch err info(typeof(err)) end
INFO: Base.UVError
</code></pre></div>
<p dir="auto">The printed error messages look fine, but e.g. the error codes have different meanings (<code class="notranslate">SystemError</code> uses <code class="notranslate">errno</code>, <code class="notranslate">UVError</code> uses its own set of constants). Having different exception types makes it difficult to handle these errors programmatically.</p> | <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> try
run(`false`)
catch err
dump(err)
end
ErrorException
msg: ASCIIString "failed process: Process(`false`, ProcessExited(1)) [1]"
julia> try
run(`foobar`)
catch err
dump(err)
end
UVError
prefix: ASCIIString "could not spawn `foobar`"
code: Int32 -2"><pre class="notranslate"><code class="notranslate">julia> try
run(`false`)
catch err
dump(err)
end
ErrorException
msg: ASCIIString "failed process: Process(`false`, ProcessExited(1)) [1]"
julia> try
run(`foobar`)
catch err
dump(err)
end
UVError
prefix: ASCIIString "could not spawn `foobar`"
code: Int32 -2
</code></pre></div>
<p dir="auto">I feel like <code class="notranslate">UVError</code> isn't something that should be escaping the Julia internals. For one thing, I doubt anyone not involved with Julia development knows or wants to know what the <code class="notranslate">UV</code> refers to. Having different exception types thrown from the same method (from the users perspective) feels odd to me, although I think thats a much more debatable point.</p>
<p dir="auto">It bit me recently (I had code like <code class="notranslate">println(fp, err.msg)</code>, which threw an error in the error handler...) and I just saw <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="39363888" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/7822" data-hovercard-type="pull_request" data-hovercard-url="/JuliaLang/julia/pull/7822/hovercard" href="https://github.com/JuliaLang/julia/pull/7822">#7822</a> which made me think of it again.</p> | 1 |
<p dir="auto">I‘m a webgl novice.I hope get some help about mouse picking. I want to do a street view program with webgl.so,l create a SphereGeometry,and the camera position is in the SphereGeometry.on the street view texture,I want to mark the point where is picked by the mouse,but I can not get the point position maybe because the camera is in the Sphere.if I make the Sphere smaller , the raycaster.intersectObjects( scene.children) worked and get the intersect point 's position.3q</p> | <h5 dir="auto">Description of the problem</h5>
<p dir="auto">In r83, a loaded <code class="notranslate">BufferGeometry</code> object would receive transforms, and apply these transform matrices to their "position" <code class="notranslate">Float32Array</code>. However, in r84, these transform matrices are no longer applied.</p>
<p dir="auto">Here's a simple example where I apply a rotation matrix to duplicate a tree:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="// Load tree geometry
var geomLoader = new THREE.BufferGeometryLoader();
geomLoader.load("meshes/tree.json", geomLoaded);
function geomLoaded(geometry){
// Enlarge tree
geometry.scale(2, 2, 2);
// posArray is twice as big as the loaded vertices so it can hold two trees
var vertCount = geometry.getAttribute("position").itemSize * 2;
var posArray = new Float32Array(vertCount * 3);
// Set top tree vertices to first half posArray
posArray.set(geometry.getAttribute("position").array);
// Rotate geometry and apply new vertices to second half of posArray
geometry.rotateZ(Math.PI);
posArray.set(geometry.getAttribute("position").array, posArray.length / 2);
geometry.addAttribute("position", new THREE.BufferAttribute(posArray, 3));
pointsObject = new THREE.Points(this.geometry, this.shaderMat);
scene.add(pointsObject);
}"><pre class="notranslate"><code class="notranslate">// Load tree geometry
var geomLoader = new THREE.BufferGeometryLoader();
geomLoader.load("meshes/tree.json", geomLoaded);
function geomLoaded(geometry){
// Enlarge tree
geometry.scale(2, 2, 2);
// posArray is twice as big as the loaded vertices so it can hold two trees
var vertCount = geometry.getAttribute("position").itemSize * 2;
var posArray = new Float32Array(vertCount * 3);
// Set top tree vertices to first half posArray
posArray.set(geometry.getAttribute("position").array);
// Rotate geometry and apply new vertices to second half of posArray
geometry.rotateZ(Math.PI);
posArray.set(geometry.getAttribute("position").array, posArray.length / 2);
geometry.addAttribute("position", new THREE.BufferAttribute(posArray, 3));
pointsObject = new THREE.Points(this.geometry, this.shaderMat);
scene.add(pointsObject);
}
</code></pre></div>
<p dir="auto">In r83, I got the desired effect of two trees in one <code class="notranslate">BufferGeometry</code> object:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/7864858/24126635/447f364c-0d8c-11e7-9854-6bf4585da303.jpg"><img src="https://cloud.githubusercontent.com/assets/7864858/24126635/447f364c-0d8c-11e7-9854-6bf4585da303.jpg" alt="r83" style="max-width: 100%;"></a></p>
<p dir="auto">In r84, I get the undesired effect of no scaling, and no rotating, leading to both trees stacking on top of each other:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/7864858/24126637/47016ba6-0d8c-11e7-8c33-34849f4ed254.jpg"><img src="https://cloud.githubusercontent.com/assets/7864858/24126637/47016ba6-0d8c-11e7-8c33-34849f4ed254.jpg" alt="r84" style="max-width: 100%;"></a></p>
<p dir="auto">Is this a bug, or an intentional change in behavior?</p>
<h5 dir="auto">Three.js version</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> r84</li>
</ul>
<h5 dir="auto">Browser</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> All of them</li>
</ul>
<h5 dir="auto">OS</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> All of them</li>
</ul>
<h5 dir="auto">Hardware Requirements (graphics card, VR Device, ...)</h5> | 0 |
<h4 dir="auto">Describe the workflow you want to enable</h4>
<p dir="auto">In some cases you need to use OrdinalEncoder even if the dataframe contains NaN, which couldn't be done at current sklearn version. For instance, when using KNNImputer to deal with missing values you need first change categorical columns into numerical, otherwise it couldn't be done. But when using OrdinalEncoder to change categorical columns into numerical, it requires the dataframe contains no NaN. So I have to impute first. See? it's head bites it's tail, couldn't be done. I'm new to it so not sure if I'm think right.</p>
<h4 dir="auto">Solution</h4>
<p dir="auto">Add "ignore_nan" parameter to it. When "ignore_nan=True" it passthrough the nan without changing it. When it's False it throws an error.</p>
<h4 dir="auto">Describe alternatives you've considered, if relevant</h4>
<p dir="auto">Also with LabelEncoder.</p> | <p dir="auto">We should allow NaNs to pass-through in <code class="notranslate">OrdinalEncoder</code>. One reason is for supporting categorical features with NaNs in the <code class="notranslate">HistGradientBoosting </code> estimators:</p>
<p dir="auto">For the native categorical support, we require categories to be encoded as done by <code class="notranslate">OrdinalEncoder</code>. Yet, <code class="notranslate">OrdinalEncoder</code> is unable to be fitted with NaNs. So we can't use the native categorical support of the Hist-GBDT if the categorical features have NaNs... Which is ironic because we do support NaNs as a native category in the Hist-GBDT code.</p>
<p dir="auto">In terms of API, we'd need a new <code class="notranslate">handle_missing={'error', 'passthrough'}</code> parameter which would default to 'error'.</p>
<p dir="auto">CC <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ogrisel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ogrisel">@ogrisel</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/lorentzenchr/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/lorentzenchr">@lorentzenchr</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thomasjpfan/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thomasjpfan">@thomasjpfan</a></p>
<p dir="auto">(Note: This is a subset of the feature request from <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="611928957" data-permission-text="Title is private" data-url="https://github.com/scikit-learn/scikit-learn/issues/17123" data-hovercard-type="issue" data-hovercard-url="/scikit-learn/scikit-learn/issues/17123/hovercard" href="https://github.com/scikit-learn/scikit-learn/issues/17123">#17123</a>)<br>
(Marking as "Hard" because anything encoding-related is usually a headache ;) )</p> | 1 |
<p dir="auto">Axios Version : 0.19.x<br>
Custom config passed by axios.create lost in the interceptor</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const client = axios.create({custom1: 'xxx'})
client.interceptors.response.use(res => {
config.custom1 // undefined
config.custom2 // xxx
return res.data
})
client.get('/xxx', {custom2: 'xxx'})"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">client</span> <span class="pl-c1">=</span> <span class="pl-s1">axios</span><span class="pl-kos">.</span><span class="pl-en">create</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-c1">custom1</span>: <span class="pl-s">'xxx'</span><span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-s1">client</span><span class="pl-kos">.</span><span class="pl-c1">interceptors</span><span class="pl-kos">.</span><span class="pl-c1">response</span><span class="pl-kos">.</span><span class="pl-en">use</span><span class="pl-kos">(</span><span class="pl-s1">res</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-s1">config</span><span class="pl-kos">.</span><span class="pl-c1">custom1</span> <span class="pl-c">// undefined</span>
<span class="pl-s1">config</span><span class="pl-kos">.</span><span class="pl-c1">custom2</span> <span class="pl-c">// xxx</span>
<span class="pl-k">return</span> <span class="pl-s1">res</span><span class="pl-kos">.</span><span class="pl-c1">data</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-s1">client</span><span class="pl-kos">.</span><span class="pl-en">get</span><span class="pl-kos">(</span><span class="pl-s">'/xxx'</span><span class="pl-kos">,</span> <span class="pl-kos">{</span><span class="pl-c1">custom2</span>: <span class="pl-s">'xxx'</span><span class="pl-kos">}</span><span class="pl-kos">)</span></pre></div> | <p dir="auto"><strong>Describe the bug</strong><br>
Custom settings are not persisted to each request</p>
<p dir="auto"><strong>To Reproduce</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
var axios = require('axios')
var axios2 = axios.create({retry: true});
// should log "Retry is true"
axios2.interceptors.request.use(request => console.log('Retry is ' + request.retry));
axios2.get('http://www.blankwebsite.com/');
"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">axios</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'axios'</span><span class="pl-kos">)</span>
<span class="pl-k">var</span> <span class="pl-s1">axios2</span> <span class="pl-c1">=</span> <span class="pl-s1">axios</span><span class="pl-kos">.</span><span class="pl-en">create</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-c1">retry</span>: <span class="pl-c1">true</span><span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// should log "Retry is true"</span>
<span class="pl-s1">axios2</span><span class="pl-kos">.</span><span class="pl-c1">interceptors</span><span class="pl-kos">.</span><span class="pl-c1">request</span><span class="pl-kos">.</span><span class="pl-en">use</span><span class="pl-kos">(</span><span class="pl-s1">request</span> <span class="pl-c1">=></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">'Retry is '</span> <span class="pl-c1">+</span> <span class="pl-s1">request</span><span class="pl-kos">.</span><span class="pl-c1">retry</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">axios2</span><span class="pl-kos">.</span><span class="pl-en">get</span><span class="pl-kos">(</span><span class="pl-s">'http://www.blankwebsite.com/'</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><strong>Expected behavior</strong><br>
Custom default parameters should be persisted to each request.</p>
<p dir="auto"><strong>Environment:</strong></p>
<ul dir="auto">
<li>Axios Version [hash <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/axios/axios/commit/a17c70cb5ae4acd7aa307b7f7dc869953dea22c4/hovercard" href="https://github.com/axios/axios/commit/a17c70cb5ae4acd7aa307b7f7dc869953dea22c4"><tt>a17c70c</tt></a>]</li>
</ul> | 1 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=mbingham" rel="nofollow">Mike Bingham</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-7714?redirect=false" rel="nofollow">SPR-7714</a></strong> and commented</p>
<p dir="auto">After upgrading to Spring 3.0.5, we've encountered a regression when attempting to bind form inputs to nested map value properties with auto-grow.</p>
<p dir="auto">To illustrate, in 3.0.5, the following test from BeanWrapperAutoGrowingTests works:</p>
<p dir="auto"><code class="notranslate">@Test</code><br>
public void setPropertyValueAutoGrowMap() {<br>
wrapper.setPropertyValue("map[A]", new Bean());<br>
assertTrue(bean.getMap().get("A") instanceof Bean);<br>
}</p>
<p dir="auto">However, the following test fails:</p>
<p dir="auto"><code class="notranslate">@Test</code><br>
public void setNestedPropertyValueAutoGrowMap() {<br>
wrapper.setPropertyValue("map[A].nested", new Bean());<br>
assertTrue(bean.getMap().get("A").getNested() instanceof Bean);<br>
}</p>
<p dir="auto">Both tests pass in 3.0.4.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.0.5</p>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398109336" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12495" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12495/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12495">#12495</a> DataBinder/BeanWrapper regression: Binding to a nested Map property fails in 3.0.5, works in 3.0.4 (<em><strong>"is duplicated by"</strong></em>)</li>
</ul> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=mschipperheyn" rel="nofollow">marc schipperheyn</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-8759?redirect=false" rel="nofollow">SPR-8759</a></strong> and commented</p>
<p dir="auto">The getter return type (Map) is not the same as setter (Properties). Since Spring 3.1, this is a problem. I get</p>
<p dir="auto">org.springframework.beans.NotWritablePropertyException: Invalid property 'statusCodes' of bean class [nl.project.interceptor.MySimpleExceptionResolver]: Bean property 'statusCodes' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter?<br>
at org.springframework.beans.BeanWrapperImpl.setPropertyValue(BeanWrapperImpl.java:1057)<br>
at org.springframework.beans.BeanWrapperImpl.setPropertyValue(BeanWrapperImpl.java:920)</p>
<p dir="auto">This makes it impossible to configure properties for 'statusCodes' in dispatcher-servlet.xml</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.1 RC1</p>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398114984" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13409" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13409/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13409">#13409</a> Impossible to set SimpleMappingExceptionResolver.statusCodes (<em><strong>"is duplicated by"</strong></em>)</li>
</ul>
<p dir="auto"><strong>Referenced from:</strong> commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/5d42a6242fe0146423fceb266901d03021d0de89/hovercard" href="https://github.com/spring-projects/spring-framework/commit/5d42a6242fe0146423fceb266901d03021d0de89"><tt>5d42a62</tt></a></p>
<p dir="auto">1 votes, 1 watchers</p> | 0 |
<h3 dir="auto">Is there an existing issue for this?</h3>
<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 existing issues</li>
</ul>
<h3 dir="auto">This issue exists in the latest npm version</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I am using the latest npm</li>
</ul>
<h3 dir="auto">Current Behavior</h3>
<p dir="auto">Environment variables are resolved by npx instead of being left intact to be dealt with by the invoked node executable.</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="> npx --version
8.1.3
> npx argv-to-list $HOME '$HOME' 'price = $100'
/Users/soft # regular shell environment variable resolution
/Users/soft # why does npx resolve environment variables?
price = 00 # *ugh* this is bad..."><pre class="notranslate"><span class="pl-k">></span> npx --version
8.1.3
<span class="pl-k">></span> npx argv-to-list <span class="pl-smi">$HOME</span> <span class="pl-s"><span class="pl-pds">'</span>$HOME<span class="pl-pds">'</span></span> <span class="pl-s"><span class="pl-pds">'</span>price = $100<span class="pl-pds">'</span></span>
/Users/soft <span class="pl-c"><span class="pl-c">#</span> regular shell environment variable resolution </span>
/Users/soft <span class="pl-c"><span class="pl-c">#</span> why does npx resolve environment variables?</span>
price = 00 <span class="pl-c"><span class="pl-c">#</span> *ugh* this is bad...</span></pre></div>
<h3 dir="auto">Expected Behavior</h3>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="> npx argv-to-list $HOME '$HOME' 'price = $100'
/Users/soft
$HOME
price = $100"><pre class="notranslate"><span class="pl-k">></span> npx argv-to-list <span class="pl-smi">$HOME</span> <span class="pl-s"><span class="pl-pds">'</span>$HOME<span class="pl-pds">'</span></span> <span class="pl-s"><span class="pl-pds">'</span>price = $100<span class="pl-pds">'</span></span>
/Users/soft
<span class="pl-smi">$HOME</span>
price = <span class="pl-smi">$1</span>00</pre></div>
<h3 dir="auto">Steps To Reproduce</h3>
<p dir="auto">cf above</p>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>npm: 8.1.3</li>
<li>Node: 16.13.0</li>
<li>OS: macOS 10.15.7 (19H1419)</li>
<li>platform: Darwin 19.6.0</li>
<li>npm config:</li>
</ul>
<div class="highlight highlight-source-ini notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="; "user" config from /Users/soft/.npmrc
@engine262:registry = "https://npm.pkg.github.com/"
//npm.pkg.github.com/:_authToken = (protected)
//registry.npmjs.org/:_authToken = (protected)
node_gyp = "/Users/soft/.nvm/versions/node/v14.18.0/lib/node_modules/node-gyp/bin/node-gyp.js"
; node bin location = /Users/soft/.nvm/versions/node/v16.13.0/bin/node
; cwd = /Users/soft/Desktop/swag
; HOME = /Users/soft
; Run `npm config ls -l` to show all defaults."><pre class="notranslate"><span class="pl-c"><span class="pl-c">;</span> "user" config from /Users/soft/.npmrc</span>
@engine262:<span class="pl-k">registry</span> = <span class="pl-s"><span class="pl-pds">"</span>https://npm.pkg.github.com/<span class="pl-pds">"</span></span>
//npm.pkg.github.com/:<span class="pl-k">_authToken</span> = (protected)
//registry.npmjs.org/:<span class="pl-k">_authToken</span> = (protected)
<span class="pl-k">node_gyp</span> = <span class="pl-s"><span class="pl-pds">"</span>/Users/soft/.nvm/versions/node/v14.18.0/lib/node_modules/node-gyp/bin/node-gyp.js<span class="pl-pds">"</span></span>
<span class="pl-c"><span class="pl-c">;</span> node bin location = /Users/soft/.nvm/versions/node/v16.13.0/bin/node</span>
<span class="pl-c"><span class="pl-c">;</span> cwd = /Users/soft/Desktop/swag</span>
<span class="pl-c"><span class="pl-c">;</span> HOME = /Users/soft</span>
<span class="pl-c"><span class="pl-c">;</span> Run `npm config ls -l` to show all defaults.</span></pre></div> | <p dir="auto">Continuously getting this error when using NPM-cli, executing the command "npm ci":<br>
10:58:07 + npm ci<br>
10:58:34 npm ERR! cb() never called!<br>
10:58:34<br>
10:58:34 npm ERR! This is an error with npm itself. Please report this error at:<br>
10:58:34 npm ERR! <a href="https://npm.community" rel="nofollow">https://npm.community</a></p>
<p dir="auto">Would you please take a look? This is not the first time notice that.</p> | 0 |
<p dir="auto">The CSV file storing the index for the FilesystemStorage of the profiler contains duplicates for each request. Each request appears 3 times in the index. This breaks the search as limiting to 10 results only gives me 4 results.</p> | <p dir="auto">Hey guys-</p>
<p dir="auto">After the annotations change, the <code class="notranslate">doctrine:generate:entity</code> task no longer works. There are basically 2 problems:</p>
<ol dir="auto">
<li>No annotation prefix is set on the entity in the command. This is probably easily rectified by adding:</li>
</ol>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$entityGenerator->setAnnotationPrefix('ORM\\');"><pre class="notranslate"><code class="notranslate">$entityGenerator->setAnnotationPrefix('ORM\\');
</code></pre></div>
<p dir="auto">source: <a href="https://github.com/symfony/symfony/blob/master/src/Symfony/Bundle/DoctrineBundle/Command/GenerateEntityDoctrineCommand.php#L103">https://github.com/symfony/symfony/blob/master/src/Symfony/Bundle/DoctrineBundle/Command/GenerateEntityDoctrineCommand.php#L103</a></p>
<ol start="2" dir="auto">
<li>It doesn't appear that Doctrine's <code class="notranslate">EntityGenerator</code> supports the addition of the <code class="notranslate">use</code> statements necessary in the generated class to import the <code class="notranslate">ORM</code> annotations namespace.</li>
</ol>
<p dir="auto">source: <a href="https://github.com/doctrine/doctrine2/blob/master/lib/Doctrine/ORM/Tools/EntityGenerator.php#L207">https://github.com/doctrine/doctrine2/blob/master/lib/Doctrine/ORM/Tools/EntityGenerator.php#L207</a></p>
<p dir="auto">Thoughts?</p> | 0 |
<p dir="auto">Currently, if you call the navigate function of the router within a component constructor, 1 of 2 things happens. Either it changes the route just fine, or it throws the following runtime error:</p>
<p dir="auto">TypeError: Cannot read property 'constructor' of undefined</p>
<p dir="auto">An error is ONLY thrown if the project includes a custom pipe. There may be other circumstances which cause the runtime error to be thrown, but this is definitely one of them. This can be very misleading that calling navigate works fine, and then adding a custom pipe breaks this. This would lead developers to think that they have created their pipe wrong, or that somehow a custom pipe is breaking their system. Further complicating the matter is the fact that the stack trace doesn't point at the call to router.navigate</p> | <p dir="auto">When using a custom pipe inside of an <code class="notranslate">ng-switch-default</code> the pipe breaks with the exception:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="EXCEPTION: TypeError: Cannot read property 'constructor' of undefined in [null]
TypeError: Cannot read property 'constructor' of undefined
at Object.implementsOnDestroy (https://code.angularjs.org/2.0.0-alpha.45/angular2.dev.js:7655:16)
at Function.ChangeDetectionUtil.callPipeOnDestroy (https://code.angularjs.org/2.0.0-alpha.45/angular2.dev.js:16480:38)
at AbstractChangeDetector.ChangeDetector_Hello_5.dehydrateDirectives (eval at <anonymous> (https://code.angularjs.org/2.0.0-alpha.45/angular2.dev.js:20571:14), <anonymous>:93:49)
at AbstractChangeDetector.dehydrate (https://code.angularjs.org/2.0.0-alpha.45/angular2.dev.js:20384:12)
at AppViewManagerUtils.dehydrateView (https://code.angularjs.org/2.0.0-alpha.45/angular2.dev.js:17481:35)
at AppViewManager_._viewDehydrateRecurse (https://code.angularjs.org/2.0.0-alpha.45/angular2.dev.js:21117:21)
at AppViewManager_._destroyViewInContainer (https://code.angularjs.org/2.0.0-alpha.45/angular2.dev.js:21105:12)
at AppViewManager_.destroyViewInContainer (https://code.angularjs.org/2.0.0-alpha.45/angular2.dev.js:21060:12)
at ViewContainerRef_.remove (https://code.angularjs.org/2.0.0-alpha.45/angular2.dev.js:9707:24)
at ViewContainerRef_.ViewContainerRef.clear (https://code.angularjs.org/2.0.0-alpha.45/angular2.dev.js:9632:14)BrowserDomAdapter.logError @ angular2.dev.js:21984ExceptionHandler.call @ angular2.dev.js:4439(anonymous function) @ angular2.dev.js:19685NgZone._notifyOnError @ angular2.dev.js:10746errorHandling.onError @ angular2.dev.js:10654run @ angular2.dev.js:141(anonymous function) @ angular2.dev.js:10678zoneBoundFn @ angular2.dev.js:111lib$es6$promise$asap$$flush @ angular2.dev.js:1301
2015-11-06 15:24:17.011 angular2.dev.js:21984 ERROR CONTEXT:BrowserDomAdapter.logError @ angular2.dev.js:21984ExceptionHandler.call @ angular2.dev.js:4442(anonymous function) @ angular2.dev.js:19685NgZone._notifyOnError @ angular2.dev.js:10746errorHandling.onError @ angular2.dev.js:10654run @ angular2.dev.js:141(anonymous function) @ angular2.dev.js:10678zoneBoundFn @ angular2.dev.js:111lib$es6$promise$asap$$flush @ angular2.dev.js:1301
"><pre class="notranslate"><code class="notranslate">EXCEPTION: TypeError: Cannot read property 'constructor' of undefined in [null]
TypeError: Cannot read property 'constructor' of undefined
at Object.implementsOnDestroy (https://code.angularjs.org/2.0.0-alpha.45/angular2.dev.js:7655:16)
at Function.ChangeDetectionUtil.callPipeOnDestroy (https://code.angularjs.org/2.0.0-alpha.45/angular2.dev.js:16480:38)
at AbstractChangeDetector.ChangeDetector_Hello_5.dehydrateDirectives (eval at <anonymous> (https://code.angularjs.org/2.0.0-alpha.45/angular2.dev.js:20571:14), <anonymous>:93:49)
at AbstractChangeDetector.dehydrate (https://code.angularjs.org/2.0.0-alpha.45/angular2.dev.js:20384:12)
at AppViewManagerUtils.dehydrateView (https://code.angularjs.org/2.0.0-alpha.45/angular2.dev.js:17481:35)
at AppViewManager_._viewDehydrateRecurse (https://code.angularjs.org/2.0.0-alpha.45/angular2.dev.js:21117:21)
at AppViewManager_._destroyViewInContainer (https://code.angularjs.org/2.0.0-alpha.45/angular2.dev.js:21105:12)
at AppViewManager_.destroyViewInContainer (https://code.angularjs.org/2.0.0-alpha.45/angular2.dev.js:21060:12)
at ViewContainerRef_.remove (https://code.angularjs.org/2.0.0-alpha.45/angular2.dev.js:9707:24)
at ViewContainerRef_.ViewContainerRef.clear (https://code.angularjs.org/2.0.0-alpha.45/angular2.dev.js:9632:14)BrowserDomAdapter.logError @ angular2.dev.js:21984ExceptionHandler.call @ angular2.dev.js:4439(anonymous function) @ angular2.dev.js:19685NgZone._notifyOnError @ angular2.dev.js:10746errorHandling.onError @ angular2.dev.js:10654run @ angular2.dev.js:141(anonymous function) @ angular2.dev.js:10678zoneBoundFn @ angular2.dev.js:111lib$es6$promise$asap$$flush @ angular2.dev.js:1301
2015-11-06 15:24:17.011 angular2.dev.js:21984 ERROR CONTEXT:BrowserDomAdapter.logError @ angular2.dev.js:21984ExceptionHandler.call @ angular2.dev.js:4442(anonymous function) @ angular2.dev.js:19685NgZone._notifyOnError @ angular2.dev.js:10746errorHandling.onError @ angular2.dev.js:10654run @ angular2.dev.js:141(anonymous function) @ angular2.dev.js:10678zoneBoundFn @ angular2.dev.js:111lib$es6$promise$asap$$flush @ angular2.dev.js:1301
</code></pre></div>
<p dir="auto">Here is a plunker: <a href="http://plnkr.co/edit/PSRVVPtbl6MzRzNPzc2b?p=preview" rel="nofollow">http://plnkr.co/edit/PSRVVPtbl6MzRzNPzc2b?p=preview</a><br>
When I remove the <code class="notranslate">ng-switch-default</code> template, I don't get the error.</p>
<p dir="auto">Using Chrome 46 on Mac.</p> | 1 |
<p dir="auto">I was playing around with unsafe blocks with the code listed below and it failed with the following.<br>
System Info:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="rustc 1.0.0-nightly (d3732a12e 2015-02-06 23:30:17 +0000)
host: 3.18.5-1-ARCH
architecture: x86_64"><pre class="notranslate"><code class="notranslate">rustc 1.0.0-nightly (d3732a12e 2015-02-06 23:30:17 +0000)
host: 3.18.5-1-ARCH
architecture: x86_64
</code></pre></div>
<p dir="auto">Example:</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="extern crate libc;
pub struct TestBuffer<T> {
start: *mut T,
size: usize,
curr: isize,
}
impl<T: Send> TestBuffer<T> {
pub fn new(value: T, size: usize) -> TestBuffer<T> {
unsafe {
let start = libc::malloc(
(std::mem::size_of::<T>() * size)
as libc::size_t) as *mut T;
std::ptr::write(&mut *start, value);
TestBuffer{start: start, size: size, curr: 0}
}
}
}
impl<T> Iterator for TestBuffer<T> {
type Item = T;
fn next(&mut self) -> Option<T> {
if self.curr < (self.size as isize) {
self.curr += 1;
} else {
()
}
unsafe { Some(*self.start.offset(self.curr - 1)) }
}
}
```rust
Running with `RUST_BACKTRACE=1`:
"><pre class="notranslate"><span class="pl-k">extern</span> <span class="pl-k">crate</span> libc<span class="pl-kos">;</span>
<span class="pl-k">pub</span> <span class="pl-k">struct</span> <span class="pl-smi">TestBuffer</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-c1">start</span><span class="pl-kos">:</span> <span class="pl-c1">*</span><span class="pl-k">mut</span> <span class="pl-smi">T</span><span class="pl-kos">,</span>
<span class="pl-c1">size</span><span class="pl-kos">:</span> <span class="pl-smi">usize</span><span class="pl-kos">,</span>
<span class="pl-c1">curr</span><span class="pl-kos">:</span> <span class="pl-smi">isize</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span>
<span class="pl-k">impl</span><span class="pl-kos"><</span><span class="pl-smi">T</span><span class="pl-kos">:</span> <span class="pl-smi">Send</span><span class="pl-kos">></span> <span class="pl-smi">TestBuffer</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">pub</span> <span class="pl-k">fn</span> <span class="pl-en">new</span><span class="pl-kos">(</span><span class="pl-s1">value</span><span class="pl-kos">:</span> <span class="pl-smi">T</span><span class="pl-kos">,</span> <span class="pl-s1">size</span><span class="pl-kos">:</span> <span class="pl-smi">usize</span><span class="pl-kos">)</span> -> <span class="pl-smi">TestBuffer</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">unsafe</span> <span class="pl-kos">{</span>
<span class="pl-k">let</span> start = libc<span class="pl-kos">::</span><span class="pl-en">malloc</span><span class="pl-kos">(</span>
<span class="pl-kos">(</span>std<span class="pl-kos">::</span>mem<span class="pl-kos">::</span><span class="pl-en">size_of</span><span class="pl-kos">::</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-kos">)</span> <span class="pl-c1">*</span> size<span class="pl-kos">)</span>
<span class="pl-k">as</span> libc<span class="pl-kos">::</span><span class="pl-smi">size_t</span><span class="pl-kos">)</span> <span class="pl-k">as</span> <span class="pl-c1">*</span><span class="pl-k">mut</span> <span class="pl-smi">T</span><span class="pl-kos">;</span>
std<span class="pl-kos">::</span>ptr<span class="pl-kos">::</span><span class="pl-en">write</span><span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-k">mut</span> <span class="pl-c1">*</span>start<span class="pl-kos">,</span> value<span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">TestBuffer</span><span class="pl-kos">{</span><span class="pl-c1">start</span><span class="pl-kos">:</span> start<span class="pl-kos">,</span> <span class="pl-c1">size</span><span class="pl-kos">:</span> size<span class="pl-kos">,</span> <span class="pl-c1">curr</span><span class="pl-kos">:</span> <span class="pl-c1">0</span><span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">impl</span><span class="pl-kos"><</span><span class="pl-smi">T</span><span class="pl-kos">></span> <span class="pl-smi">Iterator</span> <span class="pl-k">for</span> <span class="pl-smi">TestBuffer</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">type</span> <span class="pl-smi">Item</span> = <span class="pl-smi">T</span><span class="pl-kos">;</span>
<span class="pl-k">fn</span> <span class="pl-en">next</span><span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-k">mut</span> <span class="pl-smi">self</span><span class="pl-kos">)</span> -> <span class="pl-smi">Option</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">if</span> <span class="pl-smi">self</span><span class="pl-kos">.</span><span class="pl-c1">curr</span> < <span class="pl-kos">(</span><span class="pl-smi">self</span><span class="pl-kos">.</span><span class="pl-c1">size</span> <span class="pl-k">as</span> <span class="pl-smi">isize</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">self</span><span class="pl-kos">.</span><span class="pl-c1">curr</span> += <span class="pl-c1">1</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-kos">{</span>
<span class="pl-kos">(</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span>
<span class="pl-k">unsafe</span> <span class="pl-kos">{</span> <span class="pl-v">Some</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-c1">start</span><span class="pl-kos">.</span><span class="pl-en">offset</span><span class="pl-kos">(</span><span class="pl-smi">self</span><span class="pl-kos">.</span><span class="pl-c1">curr</span> - <span class="pl-c1">1</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>
```rust
<span class="pl-v">Running</span> with `<span class="pl-v">RUST_BACKTRACE</span>=<span class="pl-c1">1</span>`<span class="pl-kos">:</span></pre></div>
<p dir="auto">Buff.rs:29:23: 29:56 error: internal compiler error: this path should not cause illegal move<br>
Buff.rs:29 unsafe { Some(*self.start.offset(self.curr - 1)) }<br>
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br>
note: the compiler unexpectedly panicked. this is a bug.<br>
note: we would appreciate a bug report: <a href="http://doc.rust-lang.org/complement-bugreport.html" rel="nofollow">http://doc.rust-lang.org/complement-bugreport.html</a><br>
note: run with <code class="notranslate">RUST_BACKTRACE=1</code> for a backtrace<br>
thread 'rustc' panicked at 'Box', /home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/libsyntax/diagnostic.rs:129</p>
<p dir="auto">stack backtrace:<br>
1: 0x7f93ce6cd250 - sys::backtrace::write::h361f9c7ed16d6f6eUsy<br>
2: 0x7f93ce6f0950 - failure::on_fail::h69f5f434699d11ccOWF<br>
3: 0x7f93ce6507d0 - rt::unwind::begin_unwind_inner::hc4455d84b00b874blBF<br>
4: 0x7f93cba20040 - rt::unwind::begin_unwind::h13236156776379767181<br>
5: 0x7f93cba1ffd0 - diagnostic::SpanHandler::span_bug::h5ec31613fa5cf53fBUE<br>
6: 0x7f93cc547270 - session::Session::span_bug::h5f8ab95419f97cb6xdq<br>
7: 0x7f93cd8375e0 - borrowck::build_borrowck_dataflow_data::h3de5b29d7c85ab98gVe<br>
8: 0x7f93cd833ed0 - borrowck::borrowck_fn::hac2da55ab2d59b33DSe<br>
9: 0x7f93cd837440 - visit::walk_method_helper::h7515637727083481066<br>
10: 0x7f93cd834ee0 - borrowck::borrowck_item::h918c0642f54f00c7BRe<br>
11: 0x7f93cd8356f0 - borrowck::check_crate::h5c36e499d0e6ca76tMe<br>
12: 0x7f93cecbfb20 - driver::phase_3_run_analysis_passes::h8f5a5e5500230bd1oGa<br>
13: 0x7f93ceca5a40 - driver::compile_input::hcb43bced2a0b021bCba<br>
14: 0x7f93ced77be0 - run_compiler::hb81cf958c2f963666ac<br>
15: 0x7f93ced76270 - thunk::F.Invoke<A, R>::invoke::h6159218808669033746<br>
16: 0x7f93ced751a0 - rt::unwind::try::try_fn::h8268217050585033268<br>
17: 0x7f93ce75ca90 - rust_try_inner<br>
18: 0x7f93ce75ca80 - rust_try<br>
19: 0x7f93ced75450 - thunk::F.Invoke<A, R>::invoke::h8703575304585054118<br>
20: 0x7f93ce6dce40 - sys:<g-emoji class="g-emoji" alias="thread" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f9f5.png">🧵</g-emoji>:thread_start::h35f66aa7ce5d7277LCB<br>
21: 0x7f93c870f250 - start_thread<br>
22: 0x7f93ce2d8219 - clone<br>
23: 0x0 - </p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="I'm still definitely a noobie just playing around, so this could definitely be my fault. Thanks in advance for the help. Any input or advice would also be appreciated."><pre class="notranslate"><code class="notranslate">I'm still definitely a noobie just playing around, so this could definitely be my fault. Thanks in advance for the help. Any input or advice would also be appreciated.
</code></pre></div> | <p dir="auto">Input:</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="struct T(u8);
fn t() -> *mut T {
unsafe { 0u8 as *mut T }
}
fn main() {
let a = unsafe { *t() };
}"><pre class="notranslate"><span class="pl-k">struct</span> <span class="pl-smi">T</span><span class="pl-kos">(</span><span class="pl-smi">u8</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">fn</span> <span class="pl-en">t</span><span class="pl-kos">(</span><span class="pl-kos">)</span> -> <span class="pl-c1">*</span><span class="pl-k">mut</span> <span class="pl-smi">T</span> <span class="pl-kos">{</span>
<span class="pl-k">unsafe</span> <span class="pl-kos">{</span> <span class="pl-c1">0u8</span> <span class="pl-k">as</span> <span class="pl-c1">*</span><span class="pl-k">mut</span> <span class="pl-smi">T</span> <span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">fn</span> <span class="pl-en">main</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">let</span> a = <span class="pl-k">unsafe</span> <span class="pl-kos">{</span> <span class="pl-c1">*</span><span class="pl-en">t</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">Output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ rustc ../test.rs
../test.rs:9:19: 9:23 error: internal compiler error: this path should not cause illegal move
../test.rs:9 let a = unsafe { *t() };
^~~~
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: http://doc.rust-lang.org/complement-bugreport.html
note: run with `RUST_BACKTRACE=1` for a backtrace
thread 'rustc' panicked at 'Box<Any>', /Users/John/Documents/dev/rust/src/libsyntax/diagnostic.rs:123
stack backtrace:
1: 0x10f825b75 - sys::backtrace::write::h757d4037fec4513elCt
2: 0x10f84800f - failure::on_fail::he99e1d2cd81a67a80Hz
3: 0x10f7b3c8a - rt::unwind::begin_unwind_inner::hede15ebc165353e0Qpz
4: 0x10d508707 - rt::unwind::begin_unwind::h5150449308391082809
5: 0x10d50869c - diagnostic::SpanHandler::span_bug::h1cc7aa850b4525b9nQF
6: 0x10c93bc1d - session::Session::span_bug::h9dff6f0c981e0b95mRq
7: 0x10c547999 - borrowck::build_borrowck_dataflow_data::hbfab9f3785e58ec8QRe
8: 0x10c5432fb - borrowck::borrowck_fn::h9d4d5a57ec1e26a2cPe
9: 0x10c5440f2 - borrowck::borrowck_item::hd3de64f0b51b624a9Ne
10: 0x10c54461f - borrowck::check_crate::hab49ad1d67fb67e9ZIe
11: 0x10c09e8aa - driver::phase_3_run_analysis_passes::h3bf5eb3f470c8788gwa
12: 0x10c082d90 - driver::compile_input::h63293298907e332cxba
13: 0x10c14e7ba - monitor::unboxed_closure.22558
14: 0x10c14cf15 - thunk::F.Invoke<A, R>::invoke::h15985566512806182469
15: 0x10c14bcf0 - rt::unwind::try::try_fn::h5957420952141477940
16: 0x10f8b1189 - rust_try_inner
17: 0x10f8b1176 - rust_try
18: 0x10c14c3ec - thunk::F.Invoke<A, R>::invoke::h12578415658120090831
19: 0x10f835814 - sys::thread::thread_start::he6c5dcba45c95bf2drw
20: 0x7fff933e22fc - _pthread_body
21: 0x7fff933e2279 - _pthread_body"><pre class="notranslate"><code class="notranslate">$ rustc ../test.rs
../test.rs:9:19: 9:23 error: internal compiler error: this path should not cause illegal move
../test.rs:9 let a = unsafe { *t() };
^~~~
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: http://doc.rust-lang.org/complement-bugreport.html
note: run with `RUST_BACKTRACE=1` for a backtrace
thread 'rustc' panicked at 'Box<Any>', /Users/John/Documents/dev/rust/src/libsyntax/diagnostic.rs:123
stack backtrace:
1: 0x10f825b75 - sys::backtrace::write::h757d4037fec4513elCt
2: 0x10f84800f - failure::on_fail::he99e1d2cd81a67a80Hz
3: 0x10f7b3c8a - rt::unwind::begin_unwind_inner::hede15ebc165353e0Qpz
4: 0x10d508707 - rt::unwind::begin_unwind::h5150449308391082809
5: 0x10d50869c - diagnostic::SpanHandler::span_bug::h1cc7aa850b4525b9nQF
6: 0x10c93bc1d - session::Session::span_bug::h9dff6f0c981e0b95mRq
7: 0x10c547999 - borrowck::build_borrowck_dataflow_data::hbfab9f3785e58ec8QRe
8: 0x10c5432fb - borrowck::borrowck_fn::h9d4d5a57ec1e26a2cPe
9: 0x10c5440f2 - borrowck::borrowck_item::hd3de64f0b51b624a9Ne
10: 0x10c54461f - borrowck::check_crate::hab49ad1d67fb67e9ZIe
11: 0x10c09e8aa - driver::phase_3_run_analysis_passes::h3bf5eb3f470c8788gwa
12: 0x10c082d90 - driver::compile_input::h63293298907e332cxba
13: 0x10c14e7ba - monitor::unboxed_closure.22558
14: 0x10c14cf15 - thunk::F.Invoke<A, R>::invoke::h15985566512806182469
15: 0x10c14bcf0 - rt::unwind::try::try_fn::h5957420952141477940
16: 0x10f8b1189 - rust_try_inner
17: 0x10f8b1176 - rust_try
18: 0x10c14c3ec - thunk::F.Invoke<A, R>::invoke::h12578415658120090831
19: 0x10f835814 - sys::thread::thread_start::he6c5dcba45c95bf2drw
20: 0x7fff933e22fc - _pthread_body
21: 0x7fff933e2279 - _pthread_body
</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>9.0.0, 9.0.4</li>
</ul>
</li>
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>Windows 10</li>
</ul>
</li>
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li>
</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<ul dir="auto">
<li>Ctrl - should not zoom out the window (preferred) OR</li>
<li>Ctrl - (using the minus that is not on the numpad) zoom out should be reversible with Ctrl + to zoom in</li>
</ul>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">When you hit <code class="notranslate">Ctrl</code> + <code class="notranslate">-</code> (using the - on the keyboard, not the one on the numpad), electron causes the zoom factor to change.</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">Run electron.exe<br>
Click <code class="notranslate">Ctrl</code> + <code class="notranslate">-</code> (use the minus on the main keyboard, not the numpad)<br>
The window will zoom out and you cannot zoom back in with <code class="notranslate">Ctrl</code> + <code class="notranslate">+</code></p>
<h3 dir="auto">Screenshots</h3>
<p dir="auto">Default:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/18012933/85618072-3ad4d900-b62e-11ea-9e4c-dc9d75efe752.png"><img src="https://user-images.githubusercontent.com/18012933/85618072-3ad4d900-b62e-11ea-9e4c-dc9d75efe752.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Clicked <code class="notranslate">Ctrl</code> + <code class="notranslate">-</code> a few times:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/18012933/85618222-71aaef00-b62e-11ea-896d-f76606fe6fe7.png"><img src="https://user-images.githubusercontent.com/18012933/85618222-71aaef00-b62e-11ea-896d-f76606fe6fe7.png" alt="image" style="max-width: 100%;"></a></p>
<h3 dir="auto">Additional Information</h3>
<p dir="auto">After some debugging in the browser, I discovered that <code class="notranslate">Ctrl</code> + <code class="notranslate">-</code> on the keyboard actually seems to trigger a <code class="notranslate">Ctrl</code> + <code class="notranslate">Shift</code> + <code class="notranslate">-</code>. This might be the problem.</p>
<p dir="auto">Potentially Related Issues:<br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="375903280" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/15496" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/15496/hovercard" href="https://github.com/electron/electron/issues/15496">#15496</a></p> | <ul dir="auto">
<li>Electron version: 1.7.9</li>
<li>Operating system:<br>
win7 X64<br>
The width of the new window is 768, the height is 480, the actual open window width is 960, and the height is 600.<br>
When I created a new window, the actual size of the window was always about 1.25 times the size of the window, and I saw that the devicePixelRatio of the window was 1.25, which was generated after the release of the electron 1.4.16.How do I do that?</li>
</ul> | 0 |
<p dir="auto">Three different FIXMEs in <code class="notranslate">trans::tvec</code> suggest improvements to be made to do with the representation types for vectors: "This is not the correct type" in both <code class="notranslate">alloc_uniq_raw</code> and <code class="notranslate">duplicate_uniq</code>, and "Optimize this when the size of the unit type is statically known" in <code class="notranslate">iter_vec_raw</code>.</p> | <p dir="auto">A recent change broke this code:</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="use a::*;
use b::*;
mod a { pub fn foo() {} }
mod b { pub fn foo() {} }"><pre class="notranslate"><span class="pl-k">use</span> a<span class="pl-kos">::</span><span class="pl-c1">*</span><span class="pl-kos">;</span>
<span class="pl-k">use</span> b<span class="pl-kos">::</span><span class="pl-c1">*</span><span class="pl-kos">;</span>
<span class="pl-k">mod</span> a <span class="pl-kos">{</span> <span class="pl-k">pub</span> <span class="pl-k">fn</span> <span class="pl-en">foo</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-k">mod</span> b <span class="pl-kos">{</span> <span class="pl-k">pub</span> <span class="pl-k">fn</span> <span class="pl-en">foo</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 gives an error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="test.rs:4:5: 4:10 error: a value named `foo` has already been imported in this module
test.rs:4 use b::*;"><pre class="notranslate"><code class="notranslate">test.rs:4:5: 4:10 error: a value named `foo` has already been imported in this module
test.rs:4 use b::*;
</code></pre></div>
<p dir="auto">This makes globs <em>a lot</em> less useful than they were before. If globs are going to be only useful in isolation, why have them as a feature at all?</p> | 0 |
<p dir="auto">On one of the pages that I'm parsing I got:</p>
<p dir="auto">File "/usr/local/lib/python2.7/dist-packages/requests/models.py", line 777, in text<br>
content = str(self.content, encoding, errors='replace')<br>
LookupError: unknown encoding: ISO-LATIN-1</p>
<p dir="auto">I think it would be more sensible to try a default encoding (utf-8 and windows-1252 as a fallback) when Python doesn't support the encoding defined in the page.</p>
<p dir="auto">Also, using encoding.lower().replace('-latin-', '-8859-') will go a long way fixing the common case of pages using iso-latin-N instead of iso-8859-N.</p> | <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=">>> url = 'http://dilbert.com'
>>> len(urllib2.urlopen(url).read())
30194
>>> len(requests.get(url).content)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "build/bdist.macosx-10.7-intel/egg/requests/models.py", line 713, in content
LookupError: unknown encoding: utf-8lias
>>> "><pre class="notranslate"><code class="notranslate">>>> url = 'http://dilbert.com'
>>> len(urllib2.urlopen(url).read())
30194
>>> len(requests.get(url).content)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "build/bdist.macosx-10.7-intel/egg/requests/models.py", line 713, in content
LookupError: unknown encoding: utf-8lias
>>>
</code></pre></div> | 1 |
<p dir="auto">My workers quite often fail to start properly when mingle is enabled with no<br>
"celery@worker ready" message to be seen. Celery Flower also doesn't show the worker as Online.</p>
<p dir="auto">Celery 3.1.4 but has been happening in all versions of 3.1.x</p> | <p dir="auto">why waiting so long to "sync with me"?</p>
<p dir="auto">Following is the log:</p>
<p dir="auto">[2013-11-25 16:54:23,396: INFO/MainProcess] Connected to amqp://admin@rabbitmq_server:5672/zeus<br>
[2013-11-25 16:54:23,421: INFO/MainProcess] mingle: searching for neighbors<br>
[2013-11-25 16:54:23,564: INFO/MainProcess] normal@p-service-2 joined the party<br>
[2013-11-25 16:54:23,714: INFO/MainProcess] fast@p-service-2 joined the party<br>
[2013-11-25 16:54:23,995: INFO/MainProcess] ultraslow@p-service-2 joined the party<br>
[2013-11-25 16:54:24,949: INFO/MainProcess] dms@p-service-2 joined the party<br>
[2013-11-25 16:57:43,183: INFO/MainProcess] slow@p-service-1 joined the party<br>
[2013-11-25 16:57:45,169: INFO/MainProcess] mingle: hello dms@p-service-2, ultraslow@p-service-2, normal@p-service-2, fast@p-service-2! sync with me<br>
[2013-11-25 16:57:45,189: WARNING/MainProcess] slow@p-service-0 ready.</p> | 1 |
<p dir="auto">Challenge <a href="https://www.freecodecamp.com/en/challenges/basic-javascript/escaping-literal-quotes-in-strings" rel="nofollow">escaping-literal-quotes-in-strings</a> has an issue.<br>
User Agent is: <code class="notranslate">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.89 Safari/537.36</code>.<br>
In this challenge there is a single quote given in a single string that they used the escape method for. The challenge states to do it with two quotes within a single string. The lay out of my code is the same as the one in the example. There is no output appearing to even tell me what the error is it is just telling me to keep trying. There is no error icons where my code window is either so I don't even know what I'm doing wrong so I feel very strongly this is a bug issue rather than input issue.</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
var myStr=" I am a \"double quoted\" string inside \"double quotes\".";
"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">myStr</span><span class="pl-c1">=</span><span class="pl-s">" I am a \"double quoted\" string inside \"double quotes\"."</span><span class="pl-kos">;</span>
</pre></div> | <p dir="auto">I think You should not be so strict with the expression with which the random number must be generated, forcing to use the expression <code class="notranslate">Math.floor(Math.random( * (3 - 1 + 1)) + 1</code> (by the way is very silly -1+1 ) cuts creativity and interest in thinking in how to solve the problem the expression <code class="notranslate">Math.floor(Math.random()*3)+1</code> is also valid but not accepted.</p> | 0 |
<p dir="auto">Came a across this very odd problem while trying to get difference between two columns in a DataFrame of type datetime64. The following simple example illustrates the problem:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="df = pd.DataFrame({'A': pd.date_range('20150301', '20150304'),
'B': pd.date_range('20150303', '20150306')},
index = [1, 2, 3, 3])
df
A B
1 2015-03-01 2015-03-03
2 2015-03-02 2015-03-04
3 2015-03-03 2015-03-05
3 2015-03-04 2015-03-06
df.B - df.A
1 2 days
2 2 days
3 2 days
3 1 days
3 3 days
3 2 days"><pre class="notranslate"><code class="notranslate">df = pd.DataFrame({'A': pd.date_range('20150301', '20150304'),
'B': pd.date_range('20150303', '20150306')},
index = [1, 2, 3, 3])
df
A B
1 2015-03-01 2015-03-03
2 2015-03-02 2015-03-04
3 2015-03-03 2015-03-05
3 2015-03-04 2015-03-06
df.B - df.A
1 2 days
2 2 days
3 2 days
3 1 days
3 3 days
3 2 days
</code></pre></div>
<p dir="auto">dtype: timedelta64[ns]</p>
<p dir="auto">What happens generally is that the output contains an entry for the difference in every pair in the Cartesian product of the rows containing the duplicate index. I learned this the hard way on a df with 30K+ rows and only 50 distinct indices ending up trying to compute a series with 385 million+ entries, quickly freezing my computer.</p>
<p dir="auto">On a related note, using the eval method to compute the difference throws the following error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="df.eval('B - A')
ValueError: unkown type timedelta64[ns]"><pre class="notranslate"><code class="notranslate">df.eval('B - A')
ValueError: unkown type timedelta64[ns]
</code></pre></div> | <p dir="auto">I have a hd5store that accumulates data by batch. However the batches overlap and I want to just add the new rows..<br>
The data is in a table with a major index of event timestamp. I can assume the new batch has complete data for the first day so all I need to do is to remove all rows with a timestamp >= min_new_date.</p>
<p dir="auto">I am using python 2.7, pandas 0.11.0.dev-b41dc91 on Windows 7 64bit and lget the following error however I tried to pass in the date In this example I hard code the date string to simplify the example.</p>
<p dir="auto">dstore = pyt.HDFStore(hdfile)</p>
<p dir="auto">dstore<br>
Out[39]:<br>
<class 'pandas.io.pytables.HDFStore'><br>
File path: Y:\HAVI_MONITORING\Log_Scan_Files\ROPLogHistComp2.h5<br>
/files series (shape->[1])<br>
/logdata frame_table (typ->appendable_multi,nrows->1148964,ncols->13,indexers->[index],dc->[FileId,Start,Wob,Start_date,Type_1])<br>
/meta frame (shape->[1,1])<br>
/stores frame_table (typ->appendable,nrows->1123,ncols->20,indexers->[index])</p>
<h2 dir="auto">dstore.remove('logdata','major_axis>=20130327')</h2>
<p dir="auto">Exception Traceback (most recent call last)<br>
in ()<br>
----> 1 dstore.remove('logdata','major_axis>=20130327')</p>
<p dir="auto">C:\Python27\lib\site-packages\pandas\io\pytables.pyc in remove(self, key, where, start, stop)<br>
546 if not s.is_table:<br>
547 raise Exception('can only remove with where on objects written as tables')<br>
--> 548 return s.delete(where = where, start=start, stop=stop)<br>
549<br>
550 def append(self, key, value, columns=None, **kwargs):</p>
<p dir="auto">C:\Python27\lib\site-packages\pandas\io\pytables.pyc in delete(self, where, *_kwargs)<br>
2748 # create the selection<br>
2749 table = self.table<br>
-> 2750 self.selection = Selection(self, where, *_kwargs)<br>
2751 values = self.selection.select_coords()<br>
2752</p>
<p dir="auto">C:\Python27\lib\site-packages\pandas\io\pytables.pyc in <strong>init</strong>(self, table, where, start, stop, **kwargs)<br>
3275 self.coordinates = where.values<br>
3276 else:<br>
-> 3277 self.terms = self.generate(where)<br>
3278<br>
3279 # create the numexpr & the filter</p>
<p dir="auto">C:\Python27\lib\site-packages\pandas\io\pytables.pyc in generate(self, where)<br>
3304<br>
3305 queryables = self.table.queryables()<br>
-> 3306 return [Term(c, queryables=queryables) for c in where]<br>
3307<br>
3308 def select(self):</p>
<p dir="auto">C:\Python27\lib\site-packages\pandas\io\pytables.pyc in <strong>init</strong>(self, field, op, value, queryables)<br>
3132<br>
3133 if len(self.q):<br>
-> 3134 self.eval()<br>
3135<br>
3136 def <strong>str</strong>(self):</p>
<p dir="auto">C:\Python27\lib\site-packages\pandas\io\pytables.pyc in eval(self)<br>
3158<br>
3159 if not self.is_valid:<br>
-> 3160 raise Exception("query term is not valid [%s]" % str(self))<br>
3161<br>
3162 # convert values if we are in the table</p>
<p dir="auto">Exception: query term is not valid [field->major_axis,op->>=,value->['20130327']]<br>
C:\Python27\lib\site-packages\pandas\io\pytables.pyc in <strong>init</strong>(self, table, where, start, stop, **kwargs)<br>
3275 self.coordinates = where.values<br>
3276 else:<br>
-> 3277 self.terms = self.generate(where)<br>
3278<br>
3279 # create the numexpr & the filter</p>
<p dir="auto">C:\Python27\lib\site-packages\pandas\io\pytables.pyc in generate(self, where)<br>
3304<br>
3305 queryables = self.table.queryables()<br>
-> 3306 return [Term(c, queryables=queryables) for c in where]<br>
3307<br>
3308 def select(self):</p>
<p dir="auto">C:\Python27\lib\site-packages\pandas\io\pytables.pyc in <strong>init</strong>(self, field, op, value, queryables)<br>
3132<br>
3133 if len(self.q):<br>
-> 3134 self.eval()<br>
3135<br>
3136 def <strong>str</strong>(self):</p>
<p dir="auto">C:\Python27\lib\site-packages\pandas\io\pytables.pyc in eval(self)<br>
3158<br>
3159 if not self.is_valid:<br>
-> 3160 raise Exception("query term is not valid [%s]" % str(self))<br>
3161<br>
3162 # convert values if we are in the table</p>
<p dir="auto">Exception: query term is not valid [field->major_axis,op->>=,value->['20130327']]</p> | 0 |
<p dir="auto">hello<br>
When using the mighty groupby function, I found myself quite disappointed by something:<br>
indeed, it is very useful regarding operations, but one of the most basic one is not mathematical.<br>
It is about getting the values associated to a column (or series of columns) per group.</p>
<p dir="auto">Maybe I missed something about the split-apply-combine strategy*, but I don't get how to retrieve simply the content of some rows for all or part of groups.<br>
get_group() does this beautifully for one but not for many (i tried to pass sets, lists at no effect),<br>
I can come up easily with something like:<br>
groups_dict= {k: list(grouped.get_group(k).loc[:,idcolumn]) for k in grouped.groups.keys()}</p>
<p dir="auto">But I guess this is not computationally efficient, plus it has to be repeated for all columns you want to aggregate.</p>
<p dir="auto">Are there any better methods or wouldn't this be relevant to have a setting to output the actual values instead of an index?</p>
<p dir="auto">I actually came up with another solution (agg_df being the original dataframe, you may need resetting the df index in case you used some exploding strategy):</p>
<p dir="auto">groups_dict2= {k: list(agg_df2.loc[v,'n']) for k,v in grouped.indices.items()}</p>
<p dir="auto">It feels slower but it is maybe more error proof?</p>
<p dir="auto">Anyway, a function using all the hidden workings in Pandas would be far better I guess.</p>
<p dir="auto">Best Regards</p>
<ul dir="auto">
<li>(I am sorry, I try my best reading the docs, but Pandas is definitely not trivial to handle, docs are huge and when you think that you might find some problem's solution in one section or function domain, it can actually be something hugely different),</li>
</ul> | <p dir="auto">Issues:</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">Index.difference</code> and <code class="notranslate">symmetric_difference</code> raise for mixed types (solved by <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="162312131" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/13514" data-hovercard-type="pull_request" data-hovercard-url="/pandas-dev/pandas/pull/13514/hovercard" href="https://github.com/pandas-dev/pandas/pull/13514">#13514</a>)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">Index._get_consensus_name</code> incorrectly returns an empty index (solved by <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="162312131" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/13514" data-hovercard-type="pull_request" data-hovercard-url="/pandas-dev/pandas/pull/13514/hovercard" href="https://github.com/pandas-dev/pandas/pull/13514">#13514</a>)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> bug in <code class="notranslate">Index.union</code> for non-unique indexes (see <a href="#issuecomment-226665776">comment</a>)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> bug in <code class="notranslate">Index.intersection</code> for non-unique indexes (same <a href="#issuecomment-226665776">comment</a>)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> inconsistent sorting in of mixed-int Indexes in python2 (see <a href="#issuecomment-233520619">comment</a>)</li>
</ul>
<hr>
<h3 dir="auto"><code class="notranslate">Index.difference</code> and <code class="notranslate">symmetric_difference</code> raise for mixed types</h3>
<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="idx1 = pd.Index([0, 1, 'A', 'B'])
idx2 = pd.Index([0, 2, 'A', 'C'])
idx1.difference(idx2)
...
File "/usr/local/lib64/python3.5/site-packages/pandas/indexes/base.py", line 1861, in difference
theDiff = sorted(set(self) - set(other))
TypeError: unorderable types: str() < int()
idx1.symmetric_difference(idx2)
...
File "/usr/local/lib64/python3.5/site-packages/pandas/indexes/base.py", line 1861, in difference
theDiff = sorted(set(self) - set(other))
TypeError: unorderable types: str() < int()"><pre class="notranslate"><span class="pl-s1">idx1</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">Index</span>([<span class="pl-c1">0</span>, <span class="pl-c1">1</span>, <span class="pl-s">'A'</span>, <span class="pl-s">'B'</span>])
<span class="pl-s1">idx2</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">Index</span>([<span class="pl-c1">0</span>, <span class="pl-c1">2</span>, <span class="pl-s">'A'</span>, <span class="pl-s">'C'</span>])
<span class="pl-s1">idx1</span>.<span class="pl-en">difference</span>(<span class="pl-s1">idx2</span>)
...
<span class="pl-v">File</span> <span class="pl-s">"/usr/local/lib64/python3.5/site-packages/pandas/indexes/base.py"</span>, <span class="pl-s1">line</span> <span class="pl-c1">1861</span>, <span class="pl-s1">in</span> <span class="pl-s1">difference</span>
<span class="pl-s1">theDiff</span> <span class="pl-c1">=</span> <span class="pl-en">sorted</span>(<span class="pl-en">set</span>(<span class="pl-s1">self</span>) <span class="pl-c1">-</span> <span class="pl-en">set</span>(<span class="pl-s1">other</span>))
<span class="pl-v">TypeError</span>: <span class="pl-en">unorderable</span> <span class="pl-s1">types</span>: <span class="pl-s1">str</span>() <span class="pl-c1"><</span> <span class="pl-en">int</span>()
<span class="pl-s1">idx1</span>.<span class="pl-en">symmetric_difference</span>(<span class="pl-s1">idx2</span>)
...
<span class="pl-v">File</span> <span class="pl-s">"/usr/local/lib64/python3.5/site-packages/pandas/indexes/base.py"</span>, <span class="pl-s1">line</span> <span class="pl-c1">1861</span>, <span class="pl-s1">in</span> <span class="pl-s1">difference</span>
<span class="pl-s1">theDiff</span> <span class="pl-c1">=</span> <span class="pl-en">sorted</span>(<span class="pl-en">set</span>(<span class="pl-s1">self</span>) <span class="pl-c1">-</span> <span class="pl-en">set</span>(<span class="pl-s1">other</span>))
<span class="pl-v">TypeError</span>: <span class="pl-en">unorderable</span> <span class="pl-s1">types</span>: <span class="pl-s1">str</span>() <span class="pl-c1"><</span> <span class="pl-en">int</span>()</pre></div>
<p dir="auto">But <code class="notranslate">union</code> and <code class="notranslate">intersection</code> work:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="idx1.union(idx2)
Out[14]: Index([0, 1, 'A', 'B', 2, 'C'], dtype='object')
idx1.intersection(idx2)
Out[15]: Index([0, 'A'], dtype='object')"><pre class="notranslate"><span class="pl-s1">idx1</span>.<span class="pl-en">union</span>(<span class="pl-s1">idx2</span>)
<span class="pl-v">Out</span>[<span class="pl-c1">14</span>]: <span class="pl-v">Index</span>([<span class="pl-c1">0</span>, <span class="pl-c1">1</span>, <span class="pl-s">'A'</span>, <span class="pl-s">'B'</span>, <span class="pl-c1">2</span>, <span class="pl-s">'C'</span>], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s">'object'</span>)
<span class="pl-s1">idx1</span>.<span class="pl-en">intersection</span>(<span class="pl-s1">idx2</span>)
<span class="pl-v">Out</span>[<span class="pl-c1">15</span>]: <span class="pl-v">Index</span>([<span class="pl-c1">0</span>, <span class="pl-s">'A'</span>], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s">'object'</span>)</pre></div>
<h4 dir="auto">Expected Output</h4>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="idx1.difference(idx2)
Out[]: Index([1, 'B'], dtype='object')
idx1.symmetric_difference(idx2)
Out[]: Index([1, 'B', 2, 'C'], dtype='object')"><pre class="notranslate"><span class="pl-s1">idx1</span>.<span class="pl-en">difference</span>(<span class="pl-s1">idx2</span>)
<span class="pl-v">Out</span>[<span class="pl-s1"></span>]: <span class="pl-v">Index</span>([<span class="pl-c1">1</span>, <span class="pl-s">'B'</span>], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s">'object'</span>)
<span class="pl-s1">idx1</span>.<span class="pl-en">symmetric_difference</span>(<span class="pl-s1">idx2</span>)
<span class="pl-v">Out</span>[<span class="pl-s1"></span>]: <span class="pl-v">Index</span>([<span class="pl-c1">1</span>, <span class="pl-s">'B'</span>, <span class="pl-c1">2</span>, <span class="pl-s">'C'</span>], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s">'object'</span>)</pre></div>
<h4 dir="auto">output of <code class="notranslate">pd.show_versions()</code></h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="INSTALLED VERSIONS
------------------
commit: 4a6621fcaa9a3b98172b90a69de574ec94b108df
python: 3.5.1.final.0
python-bits: 64
OS: Linux
machine: x86_64
byteorder: little
pandas: 0.18.1
..."><pre class="notranslate"><code class="notranslate">INSTALLED VERSIONS
------------------
commit: 4a6621fcaa9a3b98172b90a69de574ec94b108df
python: 3.5.1.final.0
python-bits: 64
OS: Linux
machine: x86_64
byteorder: little
pandas: 0.18.1
...
</code></pre></div> | 0 |
<h2 dir="auto">Bug Report</h2>
<p dir="auto"><strong>Current behavior</strong><br>
A clear and concise description of the behavior.</p>
<ul dir="auto">
<li><a href="babeljs.io/repl">REPL</a>, <a href="https://codesandbox.io/s/babel-repl-custom-plugin-7s08o?file=/src/index.js" rel="nofollow">Codesandbox</a>, or GitHub Repo helps!</li>
</ul>
<p dir="auto"><strong>Input Code</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function from(x) {
return x === x[Symbol.iterator]() ? Array.from(x) : x;
}
export default from;"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">from</span><span class="pl-kos">(</span><span class="pl-s1">x</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-s1">x</span> <span class="pl-c1">===</span> <span class="pl-s1">x</span><span class="pl-kos">[</span><span class="pl-v">Symbol</span><span class="pl-kos">.</span><span class="pl-c1">iterator</span><span class="pl-kos">]</span><span class="pl-kos">(</span><span class="pl-kos">)</span> ? <span class="pl-v">Array</span><span class="pl-kos">.</span><span class="pl-en">from</span><span class="pl-kos">(</span><span class="pl-s1">x</span><span class="pl-kos">)</span> : <span class="pl-s1">x</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-s1">from</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><strong>Expected behavior</strong></p>
<p dir="auto">The above is a valid ES module and will execute in browsers, but throw when parsed by Babylon.</p>
<ul dir="auto">
<li>Babel version(s): [e.g. v6.0.0, v7.0.0-beta.34] 7.10.2</li>
</ul>
<p dir="auto"><strong>Possible Solution</strong></p>
<p dir="auto">Acorn handles this parsing fine, so it should be a relatively straightforward parser fix.</p> | <h3 dir="auto">💻</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Would you like to work on a fix?</li>
</ul>
<h3 dir="auto">How are you using Babel?</h3>
<p dir="auto">@babel/eslint-parser</p>
<h3 dir="auto">Input code</h3>
<p dir="auto"><code class="notranslate">@babel/eslint-parser</code> fails if Babel config in the host project relies on any preset / plugin using <code class="notranslate">parserOverride</code>. This happens because <a href="https://github.com/babel/babel/blob/05af38cff2d5fc2288ce79b11b755b361a7e946d/eslint/babel-eslint-parser/src/worker/extract-parser-options-plugin.cjs#L3-L5"><code class="notranslate">@babel/eslint-parser</code> itself uses it to capture Babel options</a>. Although there seems to be <a href="https://github.com/babel/babel/blob/05af38cff2d5fc2288ce79b11b755b361a7e946d/eslint/babel-eslint-parser/src/worker/maybeParse.cjs#L20-L29">some code in place</a> to safeguard against "<em>More than one plugin attempted to override parsing</em>" error when some other parsers/plugin rely on <code class="notranslate">parserOverride</code>, it does not seem to help in practice.</p>
<h3 dir="auto">Configuration file name</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Configuration</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Current and expected behavior</h3>
<p dir="auto"><code class="notranslate">@babel/eslint-parser</code> fails to work in the described scenario, it should work though.</p>
<h3 dir="auto">Environment</h3>
<p dir="auto">Babel 7.16.0</p>
<h3 dir="auto">Possible solution</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Additional context</h3>
<p dir="auto"><em>No response</em></p> | 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 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><br>
4.1.1</li>
<li><strong>Operating System:</strong><br>
Windows 10</li>
<li><strong>Last Known Working Electron version:</strong><br>
not sure</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">While loading a pdf (either local or remote url) Electron (well, underlying Chrome browser) simply downloads it instead of preview.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" <webview id="foo" src="http://www.pdf995.com/samples/pdf.pdf" style="width:400px; height:480px;">
<div class="indicator"></div>
</webview>"><pre class="notranslate"><code class="notranslate"> <webview id="foo" src="http://www.pdf995.com/samples/pdf.pdf" style="width:400px; height:480px;">
<div class="indicator"></div>
</webview>
</code></pre></div>
<h3 dir="auto">Actual Behavior</h3>
<h3 dir="auto">To Reproduce</h3>
<h3 dir="auto">Screenshots</h3>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1560821/60514861-fef78400-9cf7-11e9-914d-bdf6c58de8f1.JPG"><img src="https://user-images.githubusercontent.com/1560821/60514861-fef78400-9cf7-11e9-914d-bdf6c58de8f1.JPG" alt="pdf" style="max-width: 100%;"></a></p>
<h3 dir="auto">Additional Information</h3> | <ul dir="auto">
<li>Electron version: 1.7.8</li>
<li>Operating system: macOS sierra, windows7, windows10</li>
</ul>
<h3 dir="auto">Expected behavior</h3>
<p dir="auto">Refreshing the page does not effect other opened windows.</p>
<h3 dir="auto">Actual behavior</h3>
<p dir="auto">Refreshing the page will close other windows.</p>
<h3 dir="auto">How to reproduce</h3>
<p dir="auto">Open a new BrowserWindow and refresh the main window then the opened BrowserWindow is closed.</p> | 0 |
<p dir="auto"><a href="http://jquery.com/upgrade-guide/1.9/" rel="nofollow">http://jquery.com/upgrade-guide/1.9/</a></p> | <p dir="auto">Is jQuery v1.9 going to be supported?</p> | 1 |
<p dir="auto"><a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gke-serial/1973/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gke-serial/1973/</a></p>
<p dir="auto">Failed: [k8s.io] [HPA] Horizontal pod autoscaling (scale resource: CPU) [k8s.io] [Serial] [Slow] ReplicationController Should scale from 5 pods to 3 pods and from 3 to 1 and verify decision stability {Kubernetes e2e suite}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/horizontal_pod_autoscaling.go:73
Aug 12 10:17:36.640: timeout waiting 15m0s for pods size to be 3
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/autoscaling_utils.go:284"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/horizontal_pod_autoscaling.go:73
Aug 12 10:17:36.640: timeout waiting 15m0s for pods size to be 3
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/autoscaling_utils.go:284
</code></pre></div>
<p dir="auto">Previous issues for this test: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="164438927" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/28657" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/28657/hovercard" href="https://github.com/kubernetes/kubernetes/issues/28657">#28657</a></p> | <p dir="auto"><a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gce-serial/2033/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gce-serial/2033/</a></p>
<p dir="auto">Failed: [k8s.io] [HPA] Horizontal pod autoscaling (scale resource: CPU) [k8s.io] [Serial] [Slow] Deployment Should scale from 1 pod to 3 pods and from 3 to 5 {Kubernetes e2e suite}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/horizontal_pod_autoscaling.go:49
Aug 28 09:38:39.413: timeout waiting 15m0s for pods size to be 5
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/autoscaling_utils.go:284"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/horizontal_pod_autoscaling.go:49
Aug 28 09:38:39.413: timeout waiting 15m0s for pods size to be 5
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/autoscaling_utils.go:284
</code></pre></div>
<p dir="auto">Previous issues for this test: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="170291155" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/30317" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/30317/hovercard" href="https://github.com/kubernetes/kubernetes/issues/30317">#30317</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 issue tracker for an issue that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Issue Details</h3>
<p dir="auto">This is incredibly similar to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="759576978" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/26888" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/26888/hovercard" href="https://github.com/electron/electron/issues/26888">#26888</a> , but IMHO it cannot be a 100% duplicate since according to the bisect the last known good version is <code class="notranslate">3.1.13</code> and the first known bad version is <code class="notranslate">4.0.0-beta.1.</code>, whereas the other one has a different timeline. Also, this one is on the mac, while the other one is on Windows.</p>
<ul dir="auto">
<li><strong>Electron Version:</strong>
<ul dir="auto">
<li><code class="notranslate">4.0.0-beta.1.</code> and above</li>
</ul>
</li>
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>macOS 10.15.7</li>
</ul>
</li>
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li><code class="notranslate">3.1.13</code></li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<ul dir="auto">
<li>When using a keyboard layout like <code class="notranslate">Spanish - ISO</code> on macOS, <code class="notranslate">Cmd+Shift+7</code> in an accelerator should be rendered as <code class="notranslate">Cmd+Shift+7</code> or as <code class="notranslate">Cmd+/</code>. Here is a screenshot of the Spanish - ISO keyboard layout. As you can see, <code class="notranslate">Shift+7</code> on the <code class="notranslate">Spanish - ISO</code> keyboard layout produces <code class="notranslate">/</code> and not <code class="notranslate">&</code> (like on the US keyboard layout):<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5047891/101653127-4d599800-3a3f-11eb-9753-93a3c173f9b1.png"><img src="https://user-images.githubusercontent.com/5047891/101653127-4d599800-3a3f-11eb-9753-93a3c173f9b1.png" alt="image" style="max-width: 100%;"></a></li>
</ul>
<h3 dir="auto">Actual Behavior</h3>
<ul dir="auto">
<li>Since Electron <code class="notranslate">4.x</code>, <code class="notranslate">Cmd+Shift+7</code> is always rendered as <code class="notranslate">Cmd+&</code> (or for a while as <code class="notranslate">Cmd+Shift+&</code>?) which is only correct for keyboard layouts where <code class="notranslate">Shift+7</code> produces <code class="notranslate">&</code>, such as the US keyboard layout, but is incorrect and misleading for any other keyboard layout.</li>
</ul>
<h3 dir="auto">To Reproduce</h3>
<ul dir="auto">
<li>Electron Fiddle that uses <code class="notranslate">cmd+shift+7</code> as an accelerator: <a href="https://gist.github.com/f9dd95b576133c293fe7ad9a5fccb154">https://gist.github.com/f9dd95b576133c293fe7ad9a5fccb154</a></li>
<li>Switch the keyboard layout to <code class="notranslate">Spanish - ISO</code> on macOS</li>
</ul>
<p dir="auto">relevant code snippet:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" const template = [
{
label: 'Edit',
submenu: [
{ label: 'Test', accelerator: 'Cmd+Shift+7' },
]
}
]
const menu = Menu.buildFromTemplate(template)
Menu.setApplicationMenu(menu)"><pre class="notranslate"><code class="notranslate"> const template = [
{
label: 'Edit',
submenu: [
{ label: 'Test', accelerator: 'Cmd+Shift+7' },
]
}
]
const menu = Menu.buildFromTemplate(template)
Menu.setApplicationMenu(menu)
</code></pre></div>
<h3 dir="auto">Screenshots</h3>
<ul dir="auto">
<li><code class="notranslate">3.1.13</code> (last known good version):<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5047891/101653562-bb05c400-3a3f-11eb-93d4-ae27592911e7.png"><img src="https://user-images.githubusercontent.com/5047891/101653562-bb05c400-3a3f-11eb-93d4-ae27592911e7.png" alt="image" style="max-width: 100%;"></a></li>
<li><code class="notranslate">4.0.0-beta.1</code> (first bad version):<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5047891/101653670-db358300-3a3f-11eb-82a1-63cd187508d9.png"><img src="https://user-images.githubusercontent.com/5047891/101653670-db358300-3a3f-11eb-82a1-63cd187508d9.png" alt="image" style="max-width: 100%;"></a></li>
<li><code class="notranslate">12.0.0-beta.7</code> (latest version):<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5047891/101653799-04eeaa00-3a40-11eb-93df-773a46f73934.png"><img src="https://user-images.githubusercontent.com/5047891/101653799-04eeaa00-3a40-11eb-93df-773a46f73934.png" alt="image" style="max-width: 100%;"></a></li>
</ul>
<h3 dir="auto">Additional Information</h3>
<ul dir="auto">
<li>As I mentioned, this is incredibly similar to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="759576978" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/26888" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/26888/hovercard" href="https://github.com/electron/electron/issues/26888">#26888</a> but appears to have been introduced one version later in Electron</li>
</ul> | <p dir="auto">This is my simple code in index.js</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="globalShortcut.register("CmdOrCtrl+q", () => {
app.isQuiting = true;
app.quit();
})
"><pre class="notranslate"><code class="notranslate">globalShortcut.register("CmdOrCtrl+q", () => {
app.isQuiting = true;
app.quit();
})
</code></pre></div>
<p dir="auto">This works fine. But when used via an azerty keyboard, CMD + A is triggering the actions inside this block.</p>
<h3 dir="auto">Issue Details</h3>
<ul dir="auto">
<li><strong>Electron Version:</strong>
<ul dir="auto">
<li>8</li>
</ul>
</li>
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>Mac 10.15.7</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">CMD + A should select all</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">CMD + A is triggering events for CMD + Q</p> | 1 |
<p dir="auto"><strong>Context:</strong></p>
<ul dir="auto">
<li>Playwright Version: 1.27.1</li>
<li>Operating System: Mac</li>
<li>Node.js version: n/a</li>
<li>Visual Studio Code version: 1.73.0</li>
<li>Playwright for VSCode extension version: 1.0.1</li>
<li>Browser: All</li>
</ul>
<p dir="auto">Hi - question about VSCode extension support for python (or other languages). I am commenting here since the Q&A section for the extension marketplace links here.</p>
<p dir="auto">Is it possible to run python tests and explore locators, etc, in the middle of debug for python too? All the documentations and examples are in javascript (understandable).</p>
<p dir="auto">I have installed the extension and it appears in the "testing" tab. But when I run my (pytest) tests, the "show browser" opens a different browser and not related to the current test. If I try <code class="notranslate">pw.extension.command.inspect</code> from command pallette similarly, a new chromium opens up (not the one in my test). I have to open a separate codegen window and follow along to explore locators, which is inconvenient.</p>
<p dir="auto">I hope I am wrong and have missed some configuration steps. If not currently supported, is there a workaround? Or plan to support?</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="def test_goto_google(page):
page.goto("https://google.com")"><pre class="notranslate"><code class="notranslate">def test_goto_google(page):
page.goto("https://google.com")
</code></pre></div>
<p dir="auto">^^^ I can debug my test here and with it stopped, I am trying to "inspect".</p> | <p dir="auto">i know playwright test is only available for nodejs, but some of the features in this extension would be useful when using playwright with other languages, such as the "Enable Playwright Debug" button</p> | 1 |
<p dir="auto">Currently routing and ID values can be passed in the query string and url respectively, but they can also be extracted from fields within the document.</p>
<p dir="auto">This has a significant performance impact because each doc needs to be parsed on the node which receives the index/get/update/delete request in order to know which node should handle the request.</p>
<p dir="auto">On top of that, there are clashes between (eg) routing values set in fields and parent settings.</p>
<p dir="auto">We should deprecate the functionality to extract these values from fields, and make it the responsibility of the client code instead.</p>
<p dir="auto">It should still be possible to set <code class="notranslate">_routing</code> to required. Perhaps we should set this automatically if the user ever passes in a routing or parent value at index time?</p>
<p dir="auto">Relates to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="51553271" data-permission-text="Title is private" data-url="https://github.com/elastic/elasticsearch/issues/8870" data-hovercard-type="issue" data-hovercard-url="/elastic/elasticsearch/issues/8870/hovercard" href="https://github.com/elastic/elasticsearch/issues/8870">#8870</a></p> | <p dir="auto"><strong>Describe the feature</strong>:</p>
<blockquote>
<p dir="auto">The way it works is that Elasticsearch keeps track of the 256 most recently used filters, and only caches those that appear 5 times or more in this history.</p>
</blockquote>
<p dir="auto">We currently tracks 256 in the history and caches only those that appear 5 times or more in the history, so it will end up caching maybe 50 or so distinct filters. In a multitenant environment, there can easily be more than 50 distinct filters for each customer id, so it will be nice to provide a way to tune this based on the use case.</p> | 0 |
<p dir="auto">I am incorrectly getting the following error, <strong>"This can only be used with ES6. Make sure to have a jsconfig.json-file which sets the target to ES6"</strong>.</p>
<p dir="auto">Furthermore, I think I may have stumbled upon a weird case where if the start of the file name is "temp" as in "temp.js", "temporary.js", or "temp123.js" it will cause this error.</p>
<p dir="auto">To reproduce:<br>
Create a file called temp.js with some ES6 code, such as:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="let x = 10"><pre class="notranslate"><code class="notranslate">let x = 10
</code></pre></div>
<p dir="auto">The above error is now showing. To fix it, create the jsconfig.json file which sets the target to ES6:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"compilerOptions": {
"target": "ES6"
}
}"><pre class="notranslate"><code class="notranslate">{
"compilerOptions": {
"target": "ES6"
}
}
</code></pre></div>
<p dir="auto">The error is still showing, now incorrectly.</p>
<p dir="auto">If I rename "temp.js" to "test.js" (or anything that doesn't start with 'temp') the error goes away. Or, if I create a files array in jsconfig.json which lists "temp.js", the error goes away:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"compilerOptions": {
"target": "ES6"
},
"files": [
"temp.js"
]
}"><pre class="notranslate"><code class="notranslate">{
"compilerOptions": {
"target": "ES6"
},
"files": [
"temp.js"
]
}
</code></pre></div>
<p dir="auto">I don't want to have to do this for every file in my project.</p>
<p dir="auto">I'm running on Windows 7, 64-bit.</p>
<p dir="auto">Thanks</p> | <p dir="auto">Hi.</p>
<p dir="auto">Thanks for your product, I really enjoy using it. However I have one problem:<br>
When using ES6 features, like the arrow functions, I get the message "This can only be used with ES6. Make sure to have a jsconfig.json-file which sets the target to ES6".</p>
<p dir="auto">However I have a <code class="notranslate">jsconfig.json</code>-file in my root (the folder opened in Visual Studio Code), which contains:</p>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"compilerOptions": {
"target": "ES6",
"module": "commonjs"
}
}"><pre class="notranslate">{
<span class="pl-ent">"compilerOptions"</span>: {
<span class="pl-ent">"target"</span>: <span class="pl-s"><span class="pl-pds">"</span>ES6<span class="pl-pds">"</span></span>,
<span class="pl-ent">"module"</span>: <span class="pl-s"><span class="pl-pds">"</span>commonjs<span class="pl-pds">"</span></span>
}
}</pre></div>
<p dir="auto">The weird part is that I get it for some files, and not for others. Even if the files are in the same directory. Right now I have three files in the subdirectory <code class="notranslate">/app/bpm</code> names <code class="notranslate">bpm.js</code>, <code class="notranslate">bpmController.js</code> and <code class="notranslate">enterClick.js</code>. All three are written with ES6-functionality, but I only get the warning and red underlined text for <code class="notranslate">bpm.js</code>.</p>
<p dir="auto">UPDATE:<br>
I just restarted VS Code, and the red underline disappeared from <code class="notranslate">bpm.js</code> too. It was a new file I had created after the two others, however the red underline only went away after a restart.</p> | 1 |
<h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 4.1.1</li>
<li>Operating System / Platform => Ubuntu 18.04</li>
<li>Compiler => Python 3.6</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">Documentation for <code class="notranslate">cv2.randn</code> says <em>Fills the array with normally distributed random numbers</em>, so I expect it to fill whole array, but it actually works only with the channel 0. Later it says <em>dst - output array of random numbers; the array must be pre-allocated and have 1 to 4 channels</em>, means 3 channel images are allowed and it should fill the whole array. The same for <code class="notranslate">cv2.randu</code>.</p>
<h5 dir="auto">Steps to reproduce</h5>
<p dir="auto">This code</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="noise = np.zeros((10,10,3), dtype=np.uint8)
print(cv2.randn(noise, 128, 50)[:,:,1:])
print(cv2.randu(noise, 0, 255)[:,:,1:])"><pre class="notranslate"><span class="pl-s1">noise</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">zeros</span>((<span class="pl-c1">10</span>,<span class="pl-c1">10</span>,<span class="pl-c1">3</span>), <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">np</span>.<span class="pl-s1">uint8</span>)
<span class="pl-en">print</span>(<span class="pl-s1">cv2</span>.<span class="pl-en">randn</span>(<span class="pl-s1">noise</span>, <span class="pl-c1">128</span>, <span class="pl-c1">50</span>)[:,:,<span class="pl-c1">1</span>:])
<span class="pl-en">print</span>(<span class="pl-s1">cv2</span>.<span class="pl-en">randu</span>(<span class="pl-s1">noise</span>, <span class="pl-c1">0</span>, <span class="pl-c1">255</span>)[:,:,<span class="pl-c1">1</span>:])</pre></div>
<p dir="auto">prints only zeros.</p> | <p dir="auto">We seem to have found a bug in the JPEG image reading code (which is new in 3.1)<br>
in the EXIF parsing functions.</p>
<p dir="auto">The EXIF parser hangs in reading the JPEG orientation tag, and the<br>
imread() function does not return (explanation see below) and hangs.<br>
Probably the jpeg file was created wrong, but opencv should not hang, this<br>
is the worst possible scenario for us.</p>
<h3 dir="auto">Please state the information for your system</h3>
<ul dir="auto">
<li>OpenCV version: 3.1 / Source file contains the problem</li>
<li>Host OS: Reproduced on Linux (Ubuntu 16.04) and Windows 10 MSVS 2015</li>
</ul>
<h3 dir="auto">In which part of the OpenCV library you got the issue?</h3>
<p dir="auto">The module affected is imgcodecs, imread() function.</p>
<h3 dir="auto">Expected behaviour</h3>
<p dir="auto">imread() ignores the faulty JPEG tag, or returns an error.</p>
<h3 dir="auto">Actual behaviour</h3>
<p dir="auto">Function imread() hangs indefinitely due to EXIF parsing source code error.</p>
<h3 dir="auto">Additional description</h3>
<p dir="auto">Should read the JPEG tag length, but tries to fseek by -2 bytes which is casted to 0FFFFFFE. The resulting error is not taken care of and the while() loop runs<br>
indefinitely.</p>
<p dir="auto">The file affected is<br>
jpeg_exif.cpp, line 202</p>
<h3 dir="auto">Code example to reproduce the issue / Steps to reproduce the issue</h3>
<p dir="auto">See above.</p> | 0 |
<p dir="auto">For my time propagation of PDEs, I need to find the eigenvectors/-values of a Krylov subspace matrix, every step (see e.g. my fork of <a href="https://github.com/jagot/Krylov.jl/blob/2cd8e19fb9bc2c86747dbd890e52628074b3e299/src/exp_lanczos.jl#L33">Krylov.jl</a>). As it is now, e.g. <a href="https://github.com/JuliaLang/julia/blob/a6a65e3aeedd9b92a004dee095d70737e490c69f/base/linalg/lapack.jl#L3666">stegr!</a> allocates the work and output arrays, every time. I wonder if there are any plans to provide for those functions who need it, a split version? I mean something in the spirit of</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="work = stegr_work(...)
for i = 1:steps
...
stegr!(other, args, work...)
end"><pre class="notranslate">work <span class="pl-k">=</span> <span class="pl-c1">stegr_work</span>(<span class="pl-k">...</span>)
<span class="pl-k">for</span> i <span class="pl-k">=</span> <span class="pl-c1">1</span><span class="pl-k">:</span>steps
<span class="pl-k">...</span>
<span class="pl-c1">stegr!</span>(other, args, work<span class="pl-k">...</span>)
<span class="pl-k">end</span></pre></div>
<p dir="auto">thereby reducing the amount of (de)allocations.</p>
<p dir="auto">I could of course implement the functions I need in a library for my own use, but I would prefer to reduce the amount of code duplication, and maybe other people than myself would find this useful?</p> | <p dir="auto">Some new <code class="notranslate">convert</code> method definitions cause substantial invalidation due to usage of <code class="notranslate">convert</code> in constructors. A good example is <a href="https://github.com/JuliaLang/Pkg.jl/blob/3e3f9d7a3baf3a96c860d2b1bc895d5fd2d40d35/src/Operations.jl#L64-L83"><code class="notranslate">Pkg.Operations.load_direct_deps</code></a>:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia> using Pkg, Cthulhu
julia> descend(Pkg.Operations.load_direct_deps, (Pkg.Types.Context,))"><pre class="notranslate">julia<span class="pl-k">></span> <span class="pl-k">using</span> Pkg, Cthulhu
julia<span class="pl-k">></span> <span class="pl-c1">descend</span>(Pkg<span class="pl-k">.</span>Operations<span class="pl-k">.</span>load_direct_deps, (Pkg<span class="pl-k">.</span>Types<span class="pl-k">.</span>Context,))</pre></div>
<p dir="auto">From here, you can navigate to the "body method" where you get to the core issue:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="│ %47 = uuid::Base.UUID
│ %48 = name::String
│ %49 = Base.getproperty(entry::Pkg.Types.PackageEntry, :path)::Union{Nothing, String}
│ %50 = Base.getproperty(entry::Pkg.Types.PackageEntry, :repo)::Pkg.Types.GitRepo
│ %51 = Base.getproperty(entry::Pkg.Types.PackageEntry, :pinned)::Bool
│ %52 = Base.getproperty(entry::Pkg.Types.PackageEntry, :tree_hash)::Union{Nothing, Base.SHA1}
│ %53 = Base.getproperty(entry::Pkg.Types.PackageEntry, :version)::Union{Nothing, VersionNumber}
│ %54 = Pkg.Operations.isfixed(entry::Pkg.Types.PackageEntry)::Bool
│ %55 = Pkg.Operations.load_version(%53, %54, preserve)::Union{Nothing, VersionNumber, Pkg.Types.VersionSpec}
│ %56 = Core.tuple(%47, %48, %49, %50, %51, %52, %55)::Tuple{Base.UUID,String,Union{Nothing, String},Pkg.Types.GitRepo,Bool,Union{Nothing, Base.SHA1},Union{Nothing, VersionNumber, Pkg.Types.VersionSpec}}
│ %57 = (%46)(%56)::NamedTuple{(:uuid, :name, :path, :repo, :pinned, :tree_hash, :version),_A} where _A<:Tuple
│ %58 = Core.kwfunc(Pkg.Operations.PackageSpec)::Core.Compiler.Const(Core.var"#Type##kw"(), false)
└─── (@_13 = (%58)(%57, Pkg.Operations.PackageSpec))"><pre class="notranslate">│ <span class="pl-k">%</span><span class="pl-c1">47</span> <span class="pl-k">=</span> uuid<span class="pl-k">::</span><span class="pl-c1">Base.UUID</span>
│ <span class="pl-k">%</span><span class="pl-c1">48</span> <span class="pl-k">=</span> name<span class="pl-k">::</span><span class="pl-c1">String</span>
│ <span class="pl-k">%</span><span class="pl-c1">49</span> <span class="pl-k">=</span> Base<span class="pl-k">.</span><span class="pl-c1">getproperty</span>(entry<span class="pl-k">::</span><span class="pl-c1">Pkg.Types.PackageEntry</span>, <span class="pl-c1">:path</span>)<span class="pl-k">::</span><span class="pl-c1">Union{Nothing, String}</span>
│ <span class="pl-k">%</span><span class="pl-c1">50</span> <span class="pl-k">=</span> Base<span class="pl-k">.</span><span class="pl-c1">getproperty</span>(entry<span class="pl-k">::</span><span class="pl-c1">Pkg.Types.PackageEntry</span>, <span class="pl-c1">:repo</span>)<span class="pl-k">::</span><span class="pl-c1">Pkg.Types.GitRepo</span>
│ <span class="pl-k">%</span><span class="pl-c1">51</span> <span class="pl-k">=</span> Base<span class="pl-k">.</span><span class="pl-c1">getproperty</span>(entry<span class="pl-k">::</span><span class="pl-c1">Pkg.Types.PackageEntry</span>, <span class="pl-c1">:pinned</span>)<span class="pl-k">::</span><span class="pl-c1">Bool</span>
│ <span class="pl-k">%</span><span class="pl-c1">52</span> <span class="pl-k">=</span> Base<span class="pl-k">.</span><span class="pl-c1">getproperty</span>(entry<span class="pl-k">::</span><span class="pl-c1">Pkg.Types.PackageEntry</span>, <span class="pl-c1">:tree_hash</span>)<span class="pl-k">::</span><span class="pl-c1">Union{Nothing, Base.SHA1}</span>
│ <span class="pl-k">%</span><span class="pl-c1">53</span> <span class="pl-k">=</span> Base<span class="pl-k">.</span><span class="pl-c1">getproperty</span>(entry<span class="pl-k">::</span><span class="pl-c1">Pkg.Types.PackageEntry</span>, <span class="pl-c1">:version</span>)<span class="pl-k">::</span><span class="pl-c1">Union{Nothing, VersionNumber}</span>
│ <span class="pl-k">%</span><span class="pl-c1">54</span> <span class="pl-k">=</span> Pkg<span class="pl-k">.</span>Operations<span class="pl-k">.</span><span class="pl-c1">isfixed</span>(entry<span class="pl-k">::</span><span class="pl-c1">Pkg.Types.PackageEntry</span>)<span class="pl-k">::</span><span class="pl-c1">Bool</span>
│ <span class="pl-k">%</span><span class="pl-c1">55</span> <span class="pl-k">=</span> Pkg<span class="pl-k">.</span>Operations<span class="pl-k">.</span><span class="pl-c1">load_version</span>(<span class="pl-k">%</span><span class="pl-c1">53</span>, <span class="pl-k">%</span><span class="pl-c1">54</span>, preserve)<span class="pl-k">::</span><span class="pl-c1">Union{Nothing, VersionNumber, Pkg.Types.VersionSpec}</span>
│ <span class="pl-k">%</span><span class="pl-c1">56</span> <span class="pl-k">=</span> Core<span class="pl-k">.</span><span class="pl-c1">tuple</span>(<span class="pl-k">%</span><span class="pl-c1">47</span>, <span class="pl-k">%</span><span class="pl-c1">48</span>, <span class="pl-k">%</span><span class="pl-c1">49</span>, <span class="pl-k">%</span><span class="pl-c1">50</span>, <span class="pl-k">%</span><span class="pl-c1">51</span>, <span class="pl-k">%</span><span class="pl-c1">52</span>, <span class="pl-k">%</span><span class="pl-c1">55</span>)<span class="pl-k">::</span><span class="pl-c1">Tuple{Base.UUID,String,Union{Nothing, String},Pkg.Types.GitRepo,Bool,Union{Nothing, Base.SHA1},Union{Nothing, VersionNumber, Pkg.Types.VersionSpec}}</span>
│ <span class="pl-k">%</span><span class="pl-c1">57</span> <span class="pl-k">=</span> (<span class="pl-k">%</span><span class="pl-c1">46</span>)(<span class="pl-k">%</span><span class="pl-c1">56</span>)<span class="pl-k">::</span><span class="pl-c1">NamedTuple{(:uuid, :name, :path, :repo, :pinned, :tree_hash, :version),_A}</span> <span class="pl-k">where</span> _A<span class="pl-k"><:</span><span class="pl-c1">Tuple</span>
│ <span class="pl-k">%</span><span class="pl-c1">58</span> <span class="pl-k">=</span> Core<span class="pl-k">.</span><span class="pl-c1">kwfunc</span>(Pkg<span class="pl-k">.</span>Operations<span class="pl-k">.</span>PackageSpec)<span class="pl-k">::</span><span class="pl-c1">Core.Compiler.Const</span>(Core<span class="pl-k">.</span><span class="pl-c1">var"#Type##kw"</span>(), <span class="pl-c1">false</span>)
└─── (<span class="pl-c1">@_13</span> <span class="pl-k">=</span> (<span class="pl-k">%</span><span class="pl-c1">58</span>)(<span class="pl-k">%</span><span class="pl-c1">57</span>, Pkg<span class="pl-k">.</span>Operations<span class="pl-k">.</span>PackageSpec))</pre></div>
<p dir="auto">Here you can see that most of the inputs for creating the <code class="notranslate">NamedTuple</code> are already known to have the types needed for fields of <a href="https://github.com/JuliaLang/Pkg.jl/blob/3e3f9d7a3baf3a96c860d2b1bc895d5fd2d40d35/src/Types.jl#L90-L99"><code class="notranslate">PackageSpec</code></a>. However, presumably due to specialization heuristics, that type info is lost with the constructor for <code class="notranslate">NamedTuple</code>.</p>
<p dir="auto">I don't think this mode of invalidation is outrageously common, but I know I've seen it before, which is why I decided to report it as a systematic issue. Perhaps the <code class="notranslate">NamedTuple</code> constructor should get an extra <code class="notranslate">Union</code>-bonus in the specialization heuristics? Or is it one of the worst offenders desperately in need of limits?</p>
<p dir="auto">There is a way to circumvent this: create a specialized <code class="notranslate">PackageSpec(::PackageEntry, uuid, ver, pinned, mode)</code> constructor. But I don't see a great way to avoid duplicating the field default specifications, which would be a bit of a code smell.</p> | 0 |
<p dir="auto">Currently, the DllPlugin and DllReferencePlugin allows loading external modules from separately generated bundles. The problem is that we need to provide a manifest with all the modules being bundled <strong>at the time of bundling</strong>. This is limiting in certain scenarios, where we would like to dynamically load modules which are not known at the time of build (user input, external files).</p>
<p dir="auto">Example use case:</p>
<p dir="auto">Imagine an docs-browser app, that dynamically loads the documentation text and executable examples, based on a JSON file that lists where they are contained. The documentation and examples are stored and built separately. They both can grow (more files are added) and we shouldn't need to republish the entire documentation website after every new addition to the documentation.</p>
<p dir="auto">What I propose is that we delegate the manifest to the Dll bundle itself. This way the following could be possible:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="require('https://domain.com/dll-bundle.js#jquery');"><pre class="notranslate"><span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'https://domain.com/dll-bundle.js#jquery'</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Assuming the <code class="notranslate">dll-bundle.js</code> file is a bundle that contains the module <code class="notranslate">jquery</code>, the above require would download the file (proper CORS required), load the manifest from it (listing all the mappings of modules and merging them with the preloaded ones) and finally load the code from the bundled module <code class="notranslate">jquery</code>.</p>
<p dir="auto">This would require the module IDs to be long and random (e.g. UUIDs) so that collisions do not occur, but they could technically also be generated based on prefixed some seeded value.</p>
<p dir="auto">This would solve questions like <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="105078340" data-permission-text="Title is private" data-url="https://github.com/webpack/webpack/issues/1421" data-hovercard-type="issue" data-hovercard-url="/webpack/webpack/issues/1421/hovercard" href="https://github.com/webpack/webpack/issues/1421">#1421</a> or <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="25915720" data-permission-text="Title is private" data-url="https://github.com/webpack/webpack/issues/150" data-hovercard-type="issue" data-hovercard-url="/webpack/webpack/issues/150/hovercard" href="https://github.com/webpack/webpack/issues/150">#150</a>.</p>
<p dir="auto">EDIT:<br>
A helper method for requiring from an external bundle might make more sense, something like:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="require.ensureExternal('https://domain.com/dll-bundle.js', function(require) {
var $ = require('jquery');
})
// or even:
require.ensureExternal(dynamicallyGeneratedUrl, function(require) {
var someModule = require(totallyDynamicName);
})"><pre class="notranslate"><span class="pl-en">require</span><span class="pl-kos">.</span><span class="pl-en">ensureExternal</span><span class="pl-kos">(</span><span class="pl-s">'https://domain.com/dll-bundle.js'</span><span class="pl-kos">,</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">require</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">$</span> <span class="pl-c1">=</span> <span class="pl-s1">require</span><span class="pl-kos">(</span><span class="pl-s">'jquery'</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">// or even:</span>
<span class="pl-en">require</span><span class="pl-kos">.</span><span class="pl-en">ensureExternal</span><span class="pl-kos">(</span><span class="pl-s1">dynamicallyGeneratedUrl</span><span class="pl-kos">,</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">require</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">someModule</span> <span class="pl-c1">=</span> <span class="pl-s1">require</span><span class="pl-kos">(</span><span class="pl-s1">totallyDynamicName</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span></pre></div> | <h1 dir="auto">Bug report</h1>
<p dir="auto"><strong>What is the current behavior?</strong><br>
Progress message showing weird: percent building modules message show many space. maybe issue due to nextMessage lineCaretPosition computed incorrect.</p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong><br>
Env: win10+vscode + vue-cli (with latest version of webpack )<br>
1: vue create myapp<br>
2. npm install<br>
3. npm run serve</p>
<p dir="auto"><strong>What is the expected behavior?</strong><br>
Progress message should output with correctly line cart start postion.</p>
<p dir="auto"><strong>Other relevant information:</strong><br>
webpack version: 4.17.1<br>
Node.js version: 8.11.3<br>
Operating System: Windows 10<br>
Additional tools: vscode + vue-cli 3.0.1</p> | 0 |
<p dir="auto"><strong>TypeScript Version:</strong></p>
<p dir="auto">1.8.9</p>
<p dir="auto"><strong>Code</strong></p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="interface I {
m: string | {a: string};
}
var x: I;
var y: string;
if (typeof x.m === 'string') {
y = x.m;
} else {
y = x.m.a;
}
"><pre class="notranslate"><span class="pl-k">interface</span> <span class="pl-smi">I</span> <span class="pl-kos">{</span>
<span class="pl-c1">m</span>: <span class="pl-smi">string</span> <span class="pl-c1">|</span> <span class="pl-kos">{</span><span class="pl-c1">a</span>: <span class="pl-smi">string</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">x</span>: <span class="pl-smi">I</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">y</span>: <span class="pl-smi">string</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-kos">.</span><span class="pl-c1">m</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-s1">y</span> <span class="pl-c1">=</span> <span class="pl-s1">x</span><span class="pl-kos">.</span><span class="pl-c1">m</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-kos">{</span>
<span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-s1">x</span><span class="pl-kos">.</span><span class="pl-c1">m</span><span class="pl-kos">.</span><span class="pl-c1">a</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto"><strong>Expected behavior:</strong><br>
no compile errors</p>
<p dir="auto"><strong>Actual behavior:</strong><br>
test.ts(7,5): error TS2322: Type 'string | { a: string; }' is not assignable to type 'string'.<br>
Type '{ a: string; }' is not assignable to type 'string'.<br>
test.ts(9,13): error TS2339: Property 'a' does not exist on type 'string | { a: string; }'.</p>
<p dir="auto">Pulling x.m out into a separate variable causes the type guard to work as expected.</p> | <p dir="auto">I just found out that property access expressions doesn't work on type predicate functions and <code class="notranslate">instanceof</code> type guards.</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
class A {
propA: number;
}
class B {
propB: number;
}
class C {
propC: A;
}
declare function isA(p1: any): p1 is D;
interface D {
a: A | B
b: A | C;
}
let d: D;
if (isA(d.b)) {
d.b.propA; //error
}
function foo(d: D) {
if (d.b instanceof A) {
d.b.propA // error
}
}"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-smi">A</span> <span class="pl-kos">{</span>
<span class="pl-c1">propA</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">class</span> <span class="pl-smi">B</span> <span class="pl-kos">{</span>
<span class="pl-c1">propB</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">class</span> <span class="pl-smi">C</span> <span class="pl-kos">{</span>
<span class="pl-c1">propC</span>: <span class="pl-smi">A</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">declare</span> <span class="pl-k">function</span> <span class="pl-s1">isA</span><span class="pl-kos">(</span><span class="pl-s1">p1</span>: <span class="pl-smi">any</span><span class="pl-kos">)</span>: <span class="pl-s1">p1</span> is <span class="pl-smi">D</span><span class="pl-kos">;</span>
<span class="pl-k">interface</span> <span class="pl-smi">D</span> <span class="pl-kos">{</span>
<span class="pl-c1">a</span>: <span class="pl-smi">A</span> <span class="pl-c1">|</span> <span class="pl-smi">B</span>
<span class="pl-c1">b</span>: <span class="pl-smi">A</span> <span class="pl-c1">|</span> <span class="pl-smi">C</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">let</span> <span class="pl-s1">d</span>: <span class="pl-smi">D</span><span class="pl-kos">;</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-en">isA</span><span class="pl-kos">(</span><span class="pl-s1">d</span><span class="pl-kos">.</span><span class="pl-c1">b</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">d</span><span class="pl-kos">.</span><span class="pl-c1">b</span><span class="pl-kos">.</span><span class="pl-c1">propA</span><span class="pl-kos">;</span> <span class="pl-c">//error</span>
<span class="pl-kos">}</span>
<span class="pl-k">function</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-s1">d</span>: <span class="pl-smi">D</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">d</span><span class="pl-kos">.</span><span class="pl-c1">b</span> <span class="pl-k">instanceof</span> <span class="pl-smi">A</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">d</span><span class="pl-kos">.</span><span class="pl-c1">b</span><span class="pl-kos">.</span><span class="pl-c1">propA</span> <span class="pl-c">// error</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">I'm not sure if there is an easy fix on this problem. We are provided just a symbol when narrowing. That symbol represent the left most expression and then we walk up the if statement. There is no easy way of controlling symbol by symbol on each namespace in a property access expression in the if-statement-body. Because there is no info about the property access expression provided in <code class="notranslate">getTypeOfSymbolAtLocation(symbol: Symbol, node: Node)</code>.</p>
<p dir="auto">I also found that type assertion expressions are also not working in type predicate functions. But I will land a fix on that.</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="if (isA(<A>union)) {
a = union;
}
if (isA(union as A)) {
a = union;
}"><pre class="notranslate"><span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-en">isA</span><span class="pl-kos">(</span><span class="pl-kos"><</span><span class="pl-smi">A</span><span class="pl-kos">></span><span class="pl-s1">union</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">a</span> <span class="pl-c1">=</span> <span class="pl-s1">union</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-en">isA</span><span class="pl-kos">(</span><span class="pl-s1">union</span> <span class="pl-k">as</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-s1">a</span> <span class="pl-c1">=</span> <span class="pl-s1">union</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div> | 1 |
<p dir="auto">Theano has supported multiple GPUs since v0.8.0.<br>
(cf. <a href="http://deeplearning.net/software/theano/tutorial/using_multi_gpu.html" rel="nofollow">Using multiple GPUs — Theano 0.8.0 documentation</a> )<br>
Does Keras also support using multiple GPUs?</p>
<p dir="auto">For example, can I run the below task?</p>
<ol dir="auto">
<li>Learn a sequential model A on gpu0</li>
<li>Learn a sequential model B on gpu1</li>
<li>Merge A and B on gpu0</li>
</ol> | <p dir="auto">how can I use center loss in keras?</p> | 0 |
<p dir="auto">There is one feature in Sublime Text 2 that I often use and it really makes my day. It has the option to save all of your open tabs and window setup as a 'Project'. This really comes in handy as a designer working on applications that have multiple views and scss files. It saves the project as 'project name.sublime-project. That way if I have to quickly change gears to work different files, I can easily return to a complex project with one action.</p>
<p dir="auto">Also, consider adding functions/actions or default key commands to appropriate file menus in the application bar. I feel it would dramatically help feature/function discoverability. A lot of designers won't have experience with Vim, etc and may want to start with Atom as it is, out of the box before customizing keybindings.</p>
<p dir="auto">I am really looking forward to moving over to Atom full-time and send mad props to your team. It's amazing to witness Atom coming to life.</p> | <p dir="auto">In Sublime I can have multiple folders in the side bar. If Atom already has this, I haven't been able to figure out how to do it.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/79d3ae8c84a5de1394abdea815de7c769d023ff237356c918ea2d179a43d97bf/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f37323931392f313035313635322f65393030663564652d313063652d313165332d393432392d3364363136386562633461332e706e67"><img src="https://camo.githubusercontent.com/79d3ae8c84a5de1394abdea815de7c769d023ff237356c918ea2d179a43d97bf/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f37323931392f313035313635322f65393030663564652d313063652d313165332d393432392d3364363136386562633461332e706e67" alt="screen shot 2013-08-29 at 10 17 32 am" data-canonical-src="https://f.cloud.github.com/assets/72919/1051652/e900f5de-10ce-11e3-9429-3d6168ebc4a3.png" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto">I am using popovers for the What is this? link for a credit card verification number field (see attached images). The popover contains an HTML table to format the text and image and is brought in via a PHP require() statement.</p>
<p dir="auto">The line of HTML used for this is as follows:<br>
<span id="popover1" data-toggle="popover" data-placement="right" data-html="true" data-title="Visa/Discover Security Code" data-content="<?php require( "_html/visa_cvc.html" ) ?>"> <u>What is this?</u></span></p>
<p dir="auto">Then table code is as follows:<br>
<table class='cvc_table'><caption>This number is required & recorded as an additional security precaution.</caption><tr><td><img src='/lcu-store/_images/cvc/ccid_visa.gif' alt='Image of VISA/Discover CVC Number'></td></tr><tr><td>The 3-digit, non-embossed number printed at the right of the signature panel on the back of your card immediately following the account number.</td></tr></table></p>
<p dir="auto">Please note that the arrow of the popover is not aligned with the link as it should be. When I tried to set the data-location argument to "top", the popover was still positioned too low and completedly obscured the link, thereby preventing me from clicking it to dismiss the popover.</p>
<p dir="auto">Also please note that when the table content is removed, the arrow returns to a location approximating the correct location and the title is not pinned to the top as advertised regardless of content presence.</p>
<p dir="auto">No modifications were made to any Bootstrap CSS rules or Javascript code nor are there any CSS rules that supersede those published for a popover.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/795b958cf7d46b41779d8d120baab9d5473eaf9e9122d6e97d2b18100eda583a/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f343937363634302f3737313034312f35386166656666362d653864612d313165322d396666332d3633313730623033653230342e6a7067"><img src="https://camo.githubusercontent.com/795b958cf7d46b41779d8d120baab9d5473eaf9e9122d6e97d2b18100eda583a/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f343937363634302f3737313034312f35386166656666362d653864612d313165322d396666332d3633313730623033653230342e6a7067" alt="popover_closed" data-canonical-src="https://f.cloud.github.com/assets/4976640/771041/58afeff6-e8da-11e2-9ff3-63170b03e204.jpg" style="max-width: 100%;"></a></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/1c831d49a2eba31fa911d920f0d8291e35ffb0b3930d05fbc3a1dfb3124c6588/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f343937363634302f3737313039342f64336361326232652d653864622d313165322d383262382d6239323437376531366430652e6a7067"><img src="https://camo.githubusercontent.com/1c831d49a2eba31fa911d920f0d8291e35ffb0b3930d05fbc3a1dfb3124c6588/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f343937363634302f3737313039342f64336361326232652d653864622d313165322d383262382d6239323437376531366430652e6a7067" alt="popover_open" data-canonical-src="https://f.cloud.github.com/assets/4976640/771094/d3ca2b2e-e8db-11e2-82b8-b92477e16d0e.jpg" style="max-width: 100%;"></a></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/c17bb0869288508035be9bc80b8e7543452268a372e82455dac6f8c42adfe415/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f343937363634302f3737313131392f36636464656530342d653864632d313165322d393863352d3836363938393561336463382e6a7067"><img src="https://camo.githubusercontent.com/c17bb0869288508035be9bc80b8e7543452268a372e82455dac6f8c42adfe415/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f343937363634302f3737313131392f36636464656530342d653864632d313165322d393863352d3836363938393561336463382e6a7067" alt="popover_open_sans_content" data-canonical-src="https://f.cloud.github.com/assets/4976640/771119/6cddee04-e8dc-11e2-98c5-8669895a3dc8.jpg" style="max-width: 100%;"></a></p> | <p dir="auto">I have a problem with the way the button setState method works.</p>
<p dir="auto">I have a project in which I am using a bootstrap button in a modal dialog, where the button's click action is to submit the form to a given URL, then close the dialog, with no further action allowed on the dialog. The desired result is that once a user clicks the submit button, the button is immediately disabled and remains disabled until the dialog is destroyed, but in the meantime the button state gets updated to indicate the status of the save request (e.g., maybe "Processing...", "Saving...", "Saved", etc).</p>
<p dir="auto">Bootstrap does not provide a good way to do this. The problem is that setting the button state to anything other than "loading" will enable the button after the current event stack has been processed.</p>
<p dir="auto">(The only workarounds that I'm aware of involve a hack using setTimeout to set the "disabled" attribute again after it is enabled, or to set the text of the button without setting the state, neither of which is desirable.)</p>
<p dir="auto">(This is a duplicate of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="4083449" data-permission-text="Title is private" data-url="https://github.com/twbs/bootstrap/issues/3034" data-hovercard-type="issue" data-hovercard-url="/twbs/bootstrap/issues/3034/hovercard" href="https://github.com/twbs/bootstrap/issues/3034">#3034</a>, but that issue was closed a year ago for lack of detail.)</p>
<p dir="auto">A rough, simplified example of the problem do can be seen at:<br>
<a href="http://bootply.com/84160" rel="nofollow">http://bootply.com/84160</a></p>
<p dir="auto">The Bootstrap code in question is:<br>
<a href="https://github.com/twbs/bootstrap/blob/master/js/button.js">https://github.com/twbs/bootstrap/blob/master/js/button.js</a><br>
lines 35-53, in the Button.prototype.setState method.</p>
<p dir="auto">Also pasted at:<br>
<a href="http://codepaste.dev7studios.com/item/ml2kpybyn" rel="nofollow">http://codepaste.dev7studios.com/item/ml2kpybyn</a></p>
<p dir="auto">The problem appears to be two-fold. One problem is that the code setting the disabled state of the button is located inside a call to setTimeout(function () {...}, 0), placing it at the <em>end</em> of the current event stack. The other is that setting the button to <em>any</em> state other than 'loading' will cause the button to be enabled. If either of these was fixed, the workaround would be easy.</p>
<p dir="auto">I think the "best practice" solution would be to allow the devloper to control the enabled/disabled state of the button when setting the state, which could be easily accomplished one of two ways:</p>
<ol dir="auto">
<li>Adding an additional parameter to the setState method. (Maybe a flag to indicate the button's state? Or an object defining additional options to set for the button?)</li>
<li>Accepting an additional data attribute in the html for the button. For instance:<br>
<code class="notranslate"><button type="button" data-whatever-text="Whatever" data data-whatever-disabled="disabled">Rebellious Button</button></code><br>
being triggered by<br>
<code class="notranslate">$('button').button('whatever')</code><br>
would set the text to "Whatever" and disable the button</li>
</ol> | 0 |
<p dir="auto">Julia 0.5 has removed all support for cloning private repos on Windows. In previous versions one could always clone private repos via SSH remote URLs, but support for the git protocol seems entirely removed. Cloning private repos via https also doesn't work on Windows, I get the following error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ERROR: ccall: could not find function getpass
[inlined code] from .\c.jl:89
in #prompt#1(::ASCIIString, ::Bool, ::Any, ::ASCIIString) at .\libgit2\utils.jl:17
in credentials_callback(::Ptr{Ptr{Void}}, ::Cstring, ::Cstring, ::UInt32, ::Ptr{Void}) at .\libgit2\callbacks.jl:56
[inlined code] from .\refpointer.jl:32
in clone(::ASCIIString, ::SubString{UTF8String}, ::Base.LibGit2.CloneOptions) at .\libgit2\repository.jl:189
in #clone#98(::ASCIIString, ::Bool, ::Ptr{Void}, ::Nullable{Base.LibGit2.AbstractPayload}, ::Any, ::ASCIIString, ::SubString{UTF8String}) at .\libgit2.jl:310
[inlined code] from .\base.jl:111
in clone(::ASCIIString, ::SubString{UTF8String}) at .\pkg\entry.jl:195
in clone(::ASCIIString) at .\pkg\entry.jl:221
[inlined code] from .\promotion.jl:229
in (::Base.Pkg.Dir.##2#3{Array{Any,1},Base.Pkg.Entry.#clone,Tuple{ASCIIString}})() at .\pkg\dir.jl:31
in cd(::Base.Pkg.Dir.##2#3{Array{Any,1},Base.Pkg.Entry.#clone,Tuple{ASCIIString}}, ::ASCIIString) at .\file.jl:58
in #cd#1(::Array{Any,1}, ::Any, ::Any, ::ASCIIString, ::Vararg{ASCIIString}) at .\pkg\dir.jl:31
in clone(::ASCIIString) at .\pkg.jl:128
in eval(::Module, ::Any) at .\boot.jl:236"><pre class="notranslate"><code class="notranslate">ERROR: ccall: could not find function getpass
[inlined code] from .\c.jl:89
in #prompt#1(::ASCIIString, ::Bool, ::Any, ::ASCIIString) at .\libgit2\utils.jl:17
in credentials_callback(::Ptr{Ptr{Void}}, ::Cstring, ::Cstring, ::UInt32, ::Ptr{Void}) at .\libgit2\callbacks.jl:56
[inlined code] from .\refpointer.jl:32
in clone(::ASCIIString, ::SubString{UTF8String}, ::Base.LibGit2.CloneOptions) at .\libgit2\repository.jl:189
in #clone#98(::ASCIIString, ::Bool, ::Ptr{Void}, ::Nullable{Base.LibGit2.AbstractPayload}, ::Any, ::ASCIIString, ::SubString{UTF8String}) at .\libgit2.jl:310
[inlined code] from .\base.jl:111
in clone(::ASCIIString, ::SubString{UTF8String}) at .\pkg\entry.jl:195
in clone(::ASCIIString) at .\pkg\entry.jl:221
[inlined code] from .\promotion.jl:229
in (::Base.Pkg.Dir.##2#3{Array{Any,1},Base.Pkg.Entry.#clone,Tuple{ASCIIString}})() at .\pkg\dir.jl:31
in cd(::Base.Pkg.Dir.##2#3{Array{Any,1},Base.Pkg.Entry.#clone,Tuple{ASCIIString}}, ::ASCIIString) at .\file.jl:58
in #cd#1(::Array{Any,1}, ::Any, ::Any, ::ASCIIString, ::Vararg{ASCIIString}) at .\pkg\dir.jl:31
in clone(::ASCIIString) at .\pkg.jl:128
in eval(::Module, ::Any) at .\boot.jl:236
</code></pre></div>
<p dir="auto">I think there are potentially two solutions:</p>
<ol dir="auto">
<li>Re-enable support for the git transport protocol</li>
<li>Fix the error with https connections on Windows (might be enough to fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="41900544" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/8228" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/8228/hovercard" href="https://github.com/JuliaLang/julia/issues/8228">#8228</a>)</li>
</ol>
<p dir="auto">I believe that only having 2) would be very painful, because my understanding is that every Pkg.update would for example query for the username/password combo for private repos, i.e. as far as I know there is no support for credential storage in libgit2, right?</p>
<p dir="auto">So I think if the git transport is not re-enabled, one would really also need integration with the git credential manager interface, so that https credentials that are stored in a registered git credential manager would be picked up by <code class="notranslate">Pkg.clone</code> and <code class="notranslate">Pkg.update</code>. My understanding is that libgit2 has no support for this, so it would probably have to be implemented manually...</p>
<p dir="auto">I think this issue here should get the 0.5.0 milestone attached. Not being able to work with private repos is a major regression relative to 0.4 that would affect essentially anyone who has package work in private repos.</p> | <p dir="auto"><del><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="24850641" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/5252" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/5252/hovercard" href="https://github.com/JuliaLang/julia/issues/5252">#5252</a></del> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="32309061" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/6668" data-hovercard-type="pull_request" data-hovercard-url="/JuliaLang/julia/pull/6668/hovercard" href="https://github.com/JuliaLang/julia/pull/6668">#6668</a> added support for github two-factor authentication. However, the implementation is a bit ugly: in the worst case, the user has to enter her password 4 times(!).</p>
<p dir="auto">The nicest way to handle this would probably be to implement a <code class="notranslate">getpasswd</code> (or <code class="notranslate">getpass</code>) function, which reads in a password without echoing, and then passes that onto curl via <code class="notranslate">curl -K -</code> (which reads a config file from stdin).</p> | 1 |
<p dir="auto"><code class="notranslate">rustdoc</code> unusually repeats a doc comment twice when it is outside an external module. Check out <a href="https://github.com/alxgnon/docrepeat">alxgnon/docrepeat</a> for an example of the bug in action.</p>
<p dir="auto">I previously fixed this issue for Rust's documentation with <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="32329603" data-permission-text="Title is private" data-url="https://github.com/rust-lang/rust/issues/13812" data-hovercard-type="pull_request" data-hovercard-url="/rust-lang/rust/pull/13812/hovercard" href="https://github.com/rust-lang/rust/pull/13812">#13812</a>, by simply moving the problematic doc comments.</p>
<p dir="auto">However, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="32329603" data-permission-text="Title is private" data-url="https://github.com/rust-lang/rust/issues/13812" data-hovercard-type="pull_request" data-hovercard-url="/rust-lang/rust/pull/13812/hovercard" href="https://github.com/rust-lang/rust/pull/13812">#13812</a> does not fix the issue with <code class="notranslate">rustdoc</code> itself. I am therefore opening this as a separate issue.</p> | <p dir="auto">This should generate at least a warning. <code class="notranslate">warn(type_limits)</code> might be appropriate.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="pub fn main() {
let x: u64 = -1;
println!("x = {}", x);
}"><pre class="notranslate"><code class="notranslate">pub fn main() {
let x: u64 = -1;
println!("x = {}", x);
}
</code></pre></div> | 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>:<br>
Yes, see below.</li>
<li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04)</strong>:<br>
Ubuntu 16.04</li>
<li><strong>TensorFlow installed from (source or binary)</strong>:<br>
Source</li>
<li><strong>TensorFlow version (use command below)</strong>:<br>
v1.3.0-0-g9e76bf324 1.3.0</li>
<li><strong>Python version</strong>:<br>
3.5.2</li>
<li><strong>Bazel version (if compiling from source)</strong>:<br>
0.5.4</li>
<li><strong>CUDA/cuDNN version</strong>:<br>
8.0.44 / 5.1.5</li>
<li><strong>GPU model and memory</strong>:<br>
Any.</li>
<li><strong>Exact command to reproduce</strong>:<br>
See below.</li>
</ul>
<h3 dir="auto">Describe the problem</h3>
<p dir="auto">When compiling a custom op using nvcc, which includes <code class="notranslate">tensorflow/core/util/cuda_kernel_helper.h</code>, I get the following error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/usr/local/cuda-8.0/bin/nvcc -c -o ~/Code/libspn/build/ops/gather_columns_functor_gpu.cu.cc.o ~/Code/libspn/libspn/ops/gather_columns_functor_gpu.cu.cc -std=c++11 -x=cu -Xcompiler -fPIC -DGOOGLE_CUDA=1 --expt-relaxed-constexpr -I ~/.local/lib/python3.5/site-packages/tensorflow/include -gencode=arch=compute_35,"code=sm_35,compute_35" -gencode=arch=compute_52,"code=sm_52,compute_52" -gencode=arch=compute_61,"code=sm_61,compute_61"
In file included from ~/.local/lib/python3.5/site-packages/tensorflow/include/tensorflow/core/platform/default/stream_executor.h:26:0,
from ~/.local/lib/python3.5/site-packages/tensorflow/include/tensorflow/core/platform/stream_executor.h:24,
from ~/.local/lib/python3.5/site-packages/tensorflow/include/tensorflow/core/util/cuda_kernel_helper.h:26,
from ~/Code/libspn/libspn/ops/gather_columns_functor_gpu.cu.h:11,
from ~/Code/libspn/libspn/ops/gather_columns_functor_gpu.cu.cc:5:
~/.local/lib/python3.5/site-packages/tensorflow/include/tensorflow/stream_executor/dso_loader.h:32:30: fatal error: cuda/cuda_config.h: No such file or directory
compilation terminated."><pre class="notranslate"><code class="notranslate">/usr/local/cuda-8.0/bin/nvcc -c -o ~/Code/libspn/build/ops/gather_columns_functor_gpu.cu.cc.o ~/Code/libspn/libspn/ops/gather_columns_functor_gpu.cu.cc -std=c++11 -x=cu -Xcompiler -fPIC -DGOOGLE_CUDA=1 --expt-relaxed-constexpr -I ~/.local/lib/python3.5/site-packages/tensorflow/include -gencode=arch=compute_35,"code=sm_35,compute_35" -gencode=arch=compute_52,"code=sm_52,compute_52" -gencode=arch=compute_61,"code=sm_61,compute_61"
In file included from ~/.local/lib/python3.5/site-packages/tensorflow/include/tensorflow/core/platform/default/stream_executor.h:26:0,
from ~/.local/lib/python3.5/site-packages/tensorflow/include/tensorflow/core/platform/stream_executor.h:24,
from ~/.local/lib/python3.5/site-packages/tensorflow/include/tensorflow/core/util/cuda_kernel_helper.h:26,
from ~/Code/libspn/libspn/ops/gather_columns_functor_gpu.cu.h:11,
from ~/Code/libspn/libspn/ops/gather_columns_functor_gpu.cu.cc:5:
~/.local/lib/python3.5/site-packages/tensorflow/include/tensorflow/stream_executor/dso_loader.h:32:30: fatal error: cuda/cuda_config.h: No such file or directory
compilation terminated.
</code></pre></div>
<p dir="auto">Copying <code class="notranslate">cuda_config.h</code> to <code class="notranslate">/site-packages/tensorflow/include/tensorflow/stream_executor/cuda</code> solves the problem.</p>
<p dir="auto">The same issue has been observed by several other users in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="198353988" data-permission-text="Title is private" data-url="https://github.com/tensorflow/tensorflow/issues/6602" data-hovercard-type="issue" data-hovercard-url="/tensorflow/tensorflow/issues/6602/hovercard" href="https://github.com/tensorflow/tensorflow/issues/6602">#6602</a> (see the comments added after the issue was closed).</p> | <hr>
<h3 dir="auto">System information</h3>
<ul dir="auto">
<li><strong>Have I written custom code (as opposed to using a stock example script provided in TensorFlow)</strong>: No. Simply calling "import tensorflow" already crashes.</li>
<li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04)</strong>: Raspbian GNU/Linux 9 (Stretch)</li>
<li><strong>TensorFlow installed from (source or binary)</strong>: Source</li>
<li><strong>TensorFlow version (use command below)</strong>: TensorFlow 1.6.0</li>
<li><strong>Python version</strong>: Python 3.5.3</li>
<li><strong>Bazel version (if compiling from source)</strong>: Bazel 0.11.1</li>
<li><strong>GCC/Compiler version (if compiling from source)</strong>: GCC 6.3.0 20170124</li>
<li><strong>CUDA/cuDNN version</strong>: I didn't install with CUDA support</li>
<li><strong>GPU model and memory</strong>: n/a</li>
<li><strong>Exact command to reproduce</strong>: "import tensorflow" in the Python environment</li>
</ul>
<h3 dir="auto">Describe the problem</h3>
<p dir="auto">I built TensorFlow on Raspbian Linux for the Raspberry Pi 3 Model B. The problem is that when I try to import it in Python, the program instantly crashes, saying: "Failed to load native TensorFlow runtime." The full traceback is below.</p>
<h3 dir="auto">Source code / logs</h3>
<p dir="auto">Only need to call "import tensorflow" on Python3 to reproduce the traceback below:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last): File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 58, in from tensorflow.python.pywrap_tensorflow_internal import * File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 28, in _pywrap_tensorflow_internal = swig_import_helper() File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 24, in swig_import_helper _mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description) File "/usr/lib/python3.5/imp.py", line 242, in load_module return load_dynamic(name, filename, file) File "/usr/lib/python3.5/imp.py", line 342, in load_dynamic return _load(spec) ImportError: /usr/local/lib/python3.5/dist-packages/tensorflow/python/_pywrap_tensorflow_internal.so: undefined symbol: _ZN10tensorflow9ConcatCPUINS_8bfloat16EEEvPNS_10DeviceBaseERKSt6vectorISt10unique_ptrINS_6TTypesIT_Li2EiE11ConstMatrixESt14default_deleteIS9_EESaISC_EEPNS8_6MatrixE"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last): File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 58, in from tensorflow.python.pywrap_tensorflow_internal import * File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 28, in _pywrap_tensorflow_internal = swig_import_helper() File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 24, in swig_import_helper _mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description) File "/usr/lib/python3.5/imp.py", line 242, in load_module return load_dynamic(name, filename, file) File "/usr/lib/python3.5/imp.py", line 342, in load_dynamic return _load(spec) ImportError: /usr/local/lib/python3.5/dist-packages/tensorflow/python/_pywrap_tensorflow_internal.so: undefined symbol: _ZN10tensorflow9ConcatCPUINS_8bfloat16EEEvPNS_10DeviceBaseERKSt6vectorISt10unique_ptrINS_6TTypesIT_Li2EiE11ConstMatrixESt14default_deleteIS9_EESaISC_EEPNS8_6MatrixE
</code></pre></div>
<p dir="auto">During handling of the above exception, another exception occurred:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last): File "idex.py", line 1, in import gui File "/home/pi/Desktop/IDEX/scripts/gui.py", line 10, in import fun_util File "signlang/fun_util.py", line 3, in import tensorflow as tf File "/usr/local/lib/python3.5/dist-packages/tensorflow/init.py", line 24, in from tensorflow.python import * # pylint: disable=redefined-builtin File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/init.py", line 49, in from tensorflow.python import pywrap_tensorflow File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 74, in raise ImportError(msg) ImportError: Traceback (most recent call last): File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 58, in from tensorflow.python.pywrap_tensorflow_internal import * File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 28, in _pywrap_tensorflow_internal = swig_import_helper() File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 24, in swig_import_helper _mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description) File "/usr/lib/python3.5/imp.py", line 242, in load_module return load_dynamic(name, filename, file) File "/usr/lib/python3.5/imp.py", line 342, in load_dynamic return _load(spec) ImportError: /usr/local/lib/python3.5/dist-packages/tensorflow/python/_pywrap_tensorflow_internal.so: undefined symbol: _ZN10tensorflow9ConcatCPUINS_8bfloat16EEEvPNS_10DeviceBaseERKSt6vectorISt10unique_ptrINS_6TTypesIT_Li2EiE11ConstMatrixESt14default_deleteIS9_EESaISC_EEPNS8_6MatrixE
Failed to load the native TensorFlow runtime.
See https://www.tensorflow.org/install/install_sources#common_installation_problems
for some common reasons and solutions. Include the entire stack trace above this error message when asking for help."><pre class="notranslate"><code class="notranslate">Traceback (most recent call last): File "idex.py", line 1, in import gui File "/home/pi/Desktop/IDEX/scripts/gui.py", line 10, in import fun_util File "signlang/fun_util.py", line 3, in import tensorflow as tf File "/usr/local/lib/python3.5/dist-packages/tensorflow/init.py", line 24, in from tensorflow.python import * # pylint: disable=redefined-builtin File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/init.py", line 49, in from tensorflow.python import pywrap_tensorflow File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 74, in raise ImportError(msg) ImportError: Traceback (most recent call last): File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 58, in from tensorflow.python.pywrap_tensorflow_internal import * File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 28, in _pywrap_tensorflow_internal = swig_import_helper() File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 24, in swig_import_helper _mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description) File "/usr/lib/python3.5/imp.py", line 242, in load_module return load_dynamic(name, filename, file) File "/usr/lib/python3.5/imp.py", line 342, in load_dynamic return _load(spec) ImportError: /usr/local/lib/python3.5/dist-packages/tensorflow/python/_pywrap_tensorflow_internal.so: undefined symbol: _ZN10tensorflow9ConcatCPUINS_8bfloat16EEEvPNS_10DeviceBaseERKSt6vectorISt10unique_ptrINS_6TTypesIT_Li2EiE11ConstMatrixESt14default_deleteIS9_EESaISC_EEPNS8_6MatrixE
Failed to load the native TensorFlow runtime.
See https://www.tensorflow.org/install/install_sources#common_installation_problems
for some common reasons and solutions. Include the entire stack trace above this error message when asking for help.
</code></pre></div> | 0 |
<h1 dir="auto">Overview</h1>
<p dir="auto">The main features of the new Completion Suggester are:</p>
<ul dir="auto">
<li><strong>Near real-time</strong> - ensures no deleted docs are ever suggested (addresses <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="42978160" data-permission-text="Title is private" data-url="https://github.com/elastic/elasticsearch/issues/7761" data-hovercard-type="issue" data-hovercard-url="/elastic/elasticsearch/issues/7761/hovercard" href="https://github.com/elastic/elasticsearch/issues/7761">#7761</a>), allows returning arbitrary fields as payload</li>
<li><strong>Flexible scoring</strong> - exposed through the new geo scorer (addresses <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="35329122" data-permission-text="Title is private" data-url="https://github.com/elastic/elasticsearch/issues/6444" data-hovercard-type="issue" data-hovercard-url="/elastic/elasticsearch/issues/6444/hovercard?comment_id=64408912&comment_type=issue_comment" href="https://github.com/elastic/elasticsearch/issues/6444#issuecomment-64408912">#6444 (comment)</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="25725946" data-permission-text="Title is private" data-url="https://github.com/elastic/elasticsearch/issues/4759" data-hovercard-type="issue" data-hovercard-url="/elastic/elasticsearch/issues/4759/hovercard" href="https://github.com/elastic/elasticsearch/issues/4759">#4759</a>)</li>
<li><strong>Flexible filtering with categories</strong> - suggestions can be associated with arbitrary categories, <code class="notranslate">AND</code> and <code class="notranslate">OR</code> operators on categories can be used at query-time. (addreses <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="35329122" data-permission-text="Title is private" data-url="https://github.com/elastic/elasticsearch/issues/6444" data-hovercard-type="issue" data-hovercard-url="/elastic/elasticsearch/issues/6444/hovercard" href="https://github.com/elastic/elasticsearch/issues/6444">#6444</a>)</li>
</ul>
<p dir="auto">Apart from the features above, the new suggester will be able to return multiple outputs matching an input upon configuration (<code class="notranslate">duplicate_output</code>) (addresses <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="46079978" data-permission-text="Title is private" data-url="https://github.com/elastic/elasticsearch/issues/8129" data-hovercard-type="issue" data-hovercard-url="/elastic/elasticsearch/issues/8129/hovercard" href="https://github.com/elastic/elasticsearch/issues/8129">#8129</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="42198626" data-permission-text="Title is private" data-url="https://github.com/elastic/elasticsearch/issues/7641" data-hovercard-type="issue" data-hovercard-url="/elastic/elasticsearch/issues/7641/hovercard" href="https://github.com/elastic/elasticsearch/issues/7641">#7641</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="23316469" data-permission-text="Title is private" data-url="https://github.com/elastic/elasticsearch/issues/4255" data-hovercard-type="issue" data-hovercard-url="/elastic/elasticsearch/issues/4255/hovercard" href="https://github.com/elastic/elasticsearch/issues/4255">#4255</a>)</p>
<p dir="auto">The new Completion Suggester will be using <code class="notranslate">NRTSuggester</code> instead of the previous <code class="notranslate">XAnalyzingSuggester</code>.</p>
<p dir="auto"><strong>Sample use-cases:</strong></p>
<ul dir="auto">
<li><strong>Filtering with categories</strong> - get completion for some prefix for all or any provided <code class="notranslate">categories</code></li>
<li><strong>Flexible scoring (geo)</strong> - get completion for some prefix for all or any provided <code class="notranslate">categories</code> sorted by the distance (between provided <code class="notranslate">score_context</code> and completion <code class="notranslate">weight</code>).</li>
</ul>
<h1 dir="auto">Usage</h1>
<p dir="auto"><strong>NOTE:</strong> The API presented is experimental and may change.</p>
<h2 dir="auto">Mapping</h2>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="curl -X PUT localhost:9200/<index>/<type>/_mapping -d '{
"<type>": {
"properties": {
"name": {
"type": "string"
},
"suggest": {
"type": "completion",
"index_analyzer": "..",
"search_analyzer": “..”,
"preserve_separators": true | false,
"preserve_position_increments": true | false,
"duplicate_output" : true | false, (default: false)
"has_categories": true | false, (default: false)
"scorer": "default" | "geo" (default: "default")
}
}
}
}'"><pre class="notranslate">curl -X PUT localhost:9200/<span class="pl-k"><</span>index<span class="pl-k">></span>/<span class="pl-k"><</span>type<span class="pl-k">></span>/_mapping -d <span class="pl-s"><span class="pl-pds">'</span>{</span>
<span class="pl-s"> "<type>": {</span>
<span class="pl-s"> "properties": {</span>
<span class="pl-s"> "name": {</span>
<span class="pl-s"> "type": "string"</span>
<span class="pl-s"> },</span>
<span class="pl-s"> "suggest": {</span>
<span class="pl-s"> "type": "completion",</span>
<span class="pl-s"> "index_analyzer": "..",</span>
<span class="pl-s"> "search_analyzer": “..”,</span>
<span class="pl-s"> "preserve_separators": true | false,</span>
<span class="pl-s"> "preserve_position_increments": true | false,</span>
<span class="pl-s"> "duplicate_output" : true | false, (default: false)</span>
<span class="pl-s"> "has_categories": true | false, (default: false)</span>
<span class="pl-s"> "scorer": "default" | "geo" (default: "default")</span>
<span class="pl-s"> }</span>
<span class="pl-s"> }</span>
<span class="pl-s"> }</span>
<span class="pl-s">}<span class="pl-pds">'</span></span></pre></div>
<h2 dir="auto">Indexing</h2>
<h3 dir="auto">Indexing with <code class="notranslate">categories</code> and default <code class="notranslate">scorer</code></h3>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="curl -X PUT 'localhost:9200/music/song/1?refresh=true' -d '{
"name": "completion_with_default_scorer",
"suggest": {
"categories" : ["rock", "grunge"]
"input": [ "Nevermind", "Nirvana" ],
"output": "Nirvana - Nevermind",
"weight": 34
}
}'"><pre class="notranslate">curl -X PUT <span class="pl-s"><span class="pl-pds">'</span>localhost:9200/music/song/1?refresh=true<span class="pl-pds">'</span></span> -d <span class="pl-s"><span class="pl-pds">'</span>{</span>
<span class="pl-s"> "name": "completion_with_default_scorer",</span>
<span class="pl-s"> "suggest": {</span>
<span class="pl-s"> "categories" : ["rock", "grunge"]</span>
<span class="pl-s"> "input": [ "Nevermind", "Nirvana" ],</span>
<span class="pl-s"> "output": "Nirvana - Nevermind",</span>
<span class="pl-s"> "weight": 34</span>
<span class="pl-s"> }</span>
<span class="pl-s">}<span class="pl-pds">'</span></span></pre></div>
<h3 dir="auto">Indexing with <code class="notranslate">categories</code> and geo <code class="notranslate">scorer</code></h3>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="curl -X PUT 'localhost:9200/places/food/1?refresh=true' -d '{
"name": "completion_with_geo_scorer",
"suggest": {
"categories" : ["cafe", "snacks"]
"input": [ "timmis", "timhorton" ],
"output": "Tim Hortons",
"weight": {
"lat": ...,
"lon": ...
}
}
}'"><pre class="notranslate">curl -X PUT <span class="pl-s"><span class="pl-pds">'</span>localhost:9200/places/food/1?refresh=true<span class="pl-pds">'</span></span> -d <span class="pl-s"><span class="pl-pds">'</span>{</span>
<span class="pl-s"> "name": "completion_with_geo_scorer",</span>
<span class="pl-s"> "suggest": {</span>
<span class="pl-s"> "categories" : ["cafe", "snacks"]</span>
<span class="pl-s"> "input": [ "timmis", "timhorton" ],</span>
<span class="pl-s"> "output": "Tim Hortons",</span>
<span class="pl-s"> "weight": {</span>
<span class="pl-s"> "lat": ...,</span>
<span class="pl-s"> "lon": ...</span>
<span class="pl-s"> }</span>
<span class="pl-s"> }</span>
<span class="pl-s">}<span class="pl-pds">'</span></span></pre></div>
<h3 dir="auto">Indexing with no <code class="notranslate">categories</code> and default <code class="notranslate">scorer</code></h3>
<p dir="auto">same as the current Completion Suggester</p>
<h2 dir="auto">Querying</h2>
<p dir="auto"><strong>Note:</strong> <code class="notranslate">payload_template</code> can have references to one or more fields that will be retrieved at query-time.</p>
<h3 dir="auto">Querying on suggesters with <code class="notranslate">categories</code> and default <code class="notranslate">scorer</code></h3>
<p dir="auto">Query all completions associated with <code class="notranslate">category</code> "rock" with payload</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="curl -X POST 'localhost:9200/music/_suggest?pretty' -d '{
"song-suggest" : {
"text" : "nir",
"categories" : ["rock"],
"payload_template" : "attr1: {{field1Name}}, attr2: {{field2Name}}"
"completion" : {
"field" : "suggest"
}
}
}'
{
"_shards" : {
"total" : 5,
"successful" : 5,
"failed" : 0
},
"song-suggest" : [ {
"text" : "nir",
"offset" : 0,
"length" : 4,
"options" : [ {
"text" : "Nirvana - Nevermind",
"score" : 34.0,
"categories" : ["rock"],
"payload" : "attr1: field1Value, attr2: field2Value"
} ]
} ]
}"><pre class="notranslate">curl -X POST <span class="pl-s"><span class="pl-pds">'</span>localhost:9200/music/_suggest?pretty<span class="pl-pds">'</span></span> -d <span class="pl-s"><span class="pl-pds">'</span>{</span>
<span class="pl-s"> "song-suggest" : {</span>
<span class="pl-s"> "text" : "nir",</span>
<span class="pl-s"> "categories" : ["rock"],</span>
<span class="pl-s"> "payload_template" : "attr1: {{field1Name}}, attr2: {{field2Name}}"</span>
<span class="pl-s"> "completion" : {</span>
<span class="pl-s"> "field" : "suggest"</span>
<span class="pl-s"> }</span>
<span class="pl-s"> }</span>
<span class="pl-s">}<span class="pl-pds">'</span></span>
{
<span class="pl-s"><span class="pl-pds">"</span>_shards<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> {
<span class="pl-s"><span class="pl-pds">"</span>total<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> 5,
<span class="pl-s"><span class="pl-pds">"</span>successful<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> 5,
<span class="pl-s"><span class="pl-pds">"</span>failed<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> 0
},
<span class="pl-s"><span class="pl-pds">"</span>song-suggest<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> [ {
<span class="pl-s"><span class="pl-pds">"</span>text<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> <span class="pl-s"><span class="pl-pds">"</span>nir<span class="pl-pds">"</span></span>,
<span class="pl-s"><span class="pl-pds">"</span>offset<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> 0,
<span class="pl-s"><span class="pl-pds">"</span>length<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> 4,
<span class="pl-s"><span class="pl-pds">"</span>options<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> [ {
<span class="pl-s"><span class="pl-pds">"</span>text<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> <span class="pl-s"><span class="pl-pds">"</span>Nirvana - Nevermind<span class="pl-pds">"</span></span>,
<span class="pl-s"><span class="pl-pds">"</span>score<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> 34.0,
<span class="pl-s"><span class="pl-pds">"</span>categories<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> [<span class="pl-s"><span class="pl-pds">"</span>rock<span class="pl-pds">"</span></span>],
<span class="pl-s"><span class="pl-pds">"</span>payload<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> <span class="pl-s"><span class="pl-pds">"</span>attr1: field1Value, attr2: field2Value<span class="pl-pds">"</span></span>
} ]
} ]
}</pre></div>
<p dir="auto">Query all completions which are either associated with rock <code class="notranslate">category</code> or metal <code class="notranslate">category</code>.<br>
<strong>Note:</strong> <code class="notranslate">category_operation</code> defaults to "AND"</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="curl -X POST 'localhost:9200/music/_suggest?pretty' -d '{
"song-suggest" : {
"text" : "nir",
"categories" : ["rock", "metal"],
"category_operation": "OR",
"completion" : {
"field" : "suggest"
}
}
}'"><pre class="notranslate">curl -X POST <span class="pl-s"><span class="pl-pds">'</span>localhost:9200/music/_suggest?pretty<span class="pl-pds">'</span></span> -d <span class="pl-s"><span class="pl-pds">'</span>{</span>
<span class="pl-s"> "song-suggest" : {</span>
<span class="pl-s"> "text" : "nir",</span>
<span class="pl-s"> "categories" : ["rock", "metal"],</span>
<span class="pl-s"> "category_operation": "OR", </span>
<span class="pl-s"> "completion" : {</span>
<span class="pl-s"> "field" : "suggest"</span>
<span class="pl-s"> }</span>
<span class="pl-s"> }</span>
<span class="pl-s">}<span class="pl-pds">'</span></span></pre></div>
<h3 dir="auto">Querying on suggesters with <code class="notranslate">categories</code> and geo <code class="notranslate">scorer</code></h3>
<p dir="auto">Query all completions which are associated with <code class="notranslate">category</code> "cafe" with some <code class="notranslate">score_context</code> (e.g. current location). The result will be sorted by the distance of the geo <code class="notranslate">score</code> for the completion w.r.t. provided <code class="notranslate">score_context</code></p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="curl -X POST 'localhost:9200/places/_suggest?pretty' -d '{
"place-suggest" : {
"text" : "tim",
"categories" : ["cafe"],
"score_context" : { "lat": ..., "lon": ... }
"payload_template" : "attr1: {{field1Name}}, attr2: {{field2Name}}"
"completion" : {
"field" : "suggest"
}
}
}'
{
"_shards" : {
"total" : 5,
"successful" : 5,
"failed" : 0
},
"place-suggest" : [ {
"text" : "tim",
"offset" : 0,
"length" : 4,
"options" : [ {
"text" : "Tim Hortons",
"score" : <Distance between `score_context` and `completion score`>,
"categories" : ["cafe"],
"payload" : "attr1: field1Value, attr2: field2Value"
} ]
} ]
}"><pre class="notranslate">curl -X POST <span class="pl-s"><span class="pl-pds">'</span>localhost:9200/places/_suggest?pretty<span class="pl-pds">'</span></span> -d <span class="pl-s"><span class="pl-pds">'</span>{</span>
<span class="pl-s"> "place-suggest" : {</span>
<span class="pl-s"> "text" : "tim",</span>
<span class="pl-s"> "categories" : ["cafe"],</span>
<span class="pl-s"> "score_context" : { "lat": ..., "lon": ... }</span>
<span class="pl-s"> "payload_template" : "attr1: {{field1Name}}, attr2: {{field2Name}}"</span>
<span class="pl-s"> "completion" : {</span>
<span class="pl-s"> "field" : "suggest"</span>
<span class="pl-s"> }</span>
<span class="pl-s"> }</span>
<span class="pl-s">}<span class="pl-pds">'</span></span>
{
<span class="pl-s"><span class="pl-pds">"</span>_shards<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> {
<span class="pl-s"><span class="pl-pds">"</span>total<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> 5,
<span class="pl-s"><span class="pl-pds">"</span>successful<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> 5,
<span class="pl-s"><span class="pl-pds">"</span>failed<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> 0
},
<span class="pl-s"><span class="pl-pds">"</span>place-suggest<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> [ {
<span class="pl-s"><span class="pl-pds">"</span>text<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> <span class="pl-s"><span class="pl-pds">"</span>tim<span class="pl-pds">"</span></span>,
<span class="pl-s"><span class="pl-pds">"</span>offset<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> 0,
<span class="pl-s"><span class="pl-pds">"</span>length<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> 4,
<span class="pl-s"><span class="pl-pds">"</span>options<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> [ {
<span class="pl-s"><span class="pl-pds">"</span>text<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> <span class="pl-s"><span class="pl-pds">"</span>Tim Hortons<span class="pl-pds">"</span></span>,
<span class="pl-s"><span class="pl-pds">"</span>score<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> <span class="pl-k"><</span>Distance between <span class="pl-s"><span class="pl-pds">`</span>score_context<span class="pl-pds">`</span></span> and <span class="pl-s"><span class="pl-pds">`</span>completion score<span class="pl-pds">`</span></span><span class="pl-k">></span>,
<span class="pl-s"><span class="pl-pds">"</span>categories<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> [<span class="pl-s"><span class="pl-pds">"</span>cafe<span class="pl-pds">"</span></span>],
<span class="pl-s"><span class="pl-pds">"</span>payload<span class="pl-pds">"</span></span> <span class="pl-c1">:</span> <span class="pl-s"><span class="pl-pds">"</span>attr1: field1Value, attr2: field2Value<span class="pl-pds">"</span></span>
} ]
} ]
}</pre></div>
<h3 dir="auto">Querying on suggesters with no <code class="notranslate">categories</code> and default <code class="notranslate">scorer</code></h3>
<p dir="auto">same as the current Completion Suggester</p>
<h1 dir="auto">NRTSuggester</h1>
<p dir="auto">The new Completion Suggester will be using a new <code class="notranslate">NRTSuggester</code>. Currently the <code class="notranslate">NRTSuggester</code> is under development and is planned to support at least the functionalities described so far.</p>
<p dir="auto">In the second phase, the following will be considered:</p>
<ul dir="auto">
<li>enable 'fuzziness' (edit distance) to influence suggestion scoring (addresses <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="24256050" data-permission-text="Title is private" data-url="https://github.com/elastic/elasticsearch/issues/4441" data-hovercard-type="issue" data-hovercard-url="/elastic/elasticsearch/issues/4441/hovercard" href="https://github.com/elastic/elasticsearch/issues/4441">#4441</a>)</li>
<li>[TENTATIVE] experiment with enabling filter support (addresses <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="45875729" data-permission-text="Title is private" data-url="https://github.com/elastic/elasticsearch/issues/8096" data-hovercard-type="issue" data-hovercard-url="/elastic/elasticsearch/issues/8096/hovercard" href="https://github.com/elastic/elasticsearch/issues/8096">#8096</a>)</li>
</ul>
<h1 dir="auto">Migration plan</h1>
<p dir="auto">New Completion Suggester will use a new completion index format under the hood, so some work needs to be done to upgrade from existing completion suggester to the new one. The migration strategy still needs to be decided.</p> | <p dir="auto">org.apache.lucene.index.MergePolicy$MergeException: java.lang.NullPointerException<br>
at org.elasticsearch.index.merge.scheduler.ConcurrentMergeSchedulerProvider$CustomConcurrentMergeScheduler.handleMergeException(ConcurrentMergeSchedulerProvider.java:99)<br>
at org.apache.lucene.index.ConcurrentMergeScheduler$MergeThread.run(ConcurrentMergeScheduler.java:518)<br>
Caused by: java.lang.NullPointerException<br>
at org.elasticsearch.search.suggest.completion.AnalyzingCompletionLookupProvider$1$1.finish(AnalyzingCompletionLookupProvider.java:134)<br>
at org.elasticsearch.search.suggest.completion.Completion090PostingsFormat$SuggestFieldsConsumer$1.finish(Completion090PostingsFormat.java:152)<br>
at org.apache.lucene.codecs.TermsConsumer.merge(TermsConsumer.java:204)<br>
at org.apache.lucene.codecs.FieldsConsumer.merge(FieldsConsumer.java:72)<br>
at org.apache.lucene.index.SegmentMerger.mergeTerms(SegmentMerger.java:365)<br>
at org.apache.lucene.index.SegmentMerger.merge(SegmentMerger.java:98)<br>
at org.apache.lucene.index.IndexWriter.mergeMiddle(IndexWriter.java:3772)<br>
at org.apache.lucene.index.IndexWriter.merge(IndexWriter.java:3376)<br>
at org.apache.lucene.index.ConcurrentMergeScheduler.doMerge(ConcurrentMergeScheduler.java:405)<br>
at org.apache.lucene.index.TrackingConcurrentMergeScheduler.doMerge(TrackingConcurrentMergeScheduler.java:91)<br>
at org.apache.lucene.index.ConcurrentMergeScheduler$MergeThread.run(ConcurrentMergeScheduler.java:482)</p>
<p dir="auto">As always, let me know if there's anything more I can provide to help debug.</p> | 0 |
<p dir="auto"><a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gce-slow/6632/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gce-slow/6632/</a></p>
<p dir="auto">Failed: [k8s.io] Pod Disks should schedule a pod w/ a readonly PD on two hosts, then remove both. [Slow] {Kubernetes e2e suite}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/pd.go:179
Expected error:
<*errors.errorString | 0xc8200e00c0>: {
s: "timed out waiting for the condition",
}
timed out waiting for the condition
not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/pd.go:179
Expected error:
<*errors.errorString | 0xc8200e00c0>: {
s: "timed out waiting for the condition",
}
timed out waiting for the condition
not to have occurred
</code></pre></div> | <p dir="auto">12500 might be too large for, say, an n1-standard-4 master which has 3G of ram (i.e I don't think the estimate of: an object+metadata needed by etcd + duplication in apiserver cache = 256k is always going to be accurate). I think we came across a case where just 10,000 failed pods were enough to oom master components. Obviously 10,000 non-terminated pods can still oom it, but that's a DOS issue (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="139147331" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/22679" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/22679/hovercard" href="https://github.com/kubernetes/kubernetes/issues/22679">#22679</a>).</p> | 0 |
<h3 dir="auto">Bug summary</h3>
<p dir="auto">If you contour a uniform field i.e. <code class="notranslate">ax.contour(z=[[1, 1], [1,1]]))</code> it works fine, although the output is not very interesting. If you add a colorbar to this, you receive an error. Without the colorbar call there is no error.</p>
<h3 dir="auto">Code for reproduction</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import matplotlib.pyplot as plt
fig, ax = plt.subplots()
cs = ax.contour([[1, 1], [1, 1]])
fig.colorbar(cs, ax=ax)
plt.show()"><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-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">cs</span> <span class="pl-c1">=</span> <span class="pl-s1">ax</span>.<span class="pl-en">contour</span>([[<span class="pl-c1">1</span>, <span class="pl-c1">1</span>], [<span class="pl-c1">1</span>, <span class="pl-c1">1</span>]])
<span class="pl-s1">fig</span>.<span class="pl-en">colorbar</span>(<span class="pl-s1">cs</span>, <span class="pl-s1">ax</span><span class="pl-c1">=</span><span class="pl-s1">ax</span>)
<span class="pl-s1">plt</span>.<span class="pl-en">show</span>()</pre></div>
<h3 dir="auto">Actual outcome</h3>
<p dir="auto">bug.py:18: UserWarning: No contour levels were found within the data range.<br>
cs = ax.contour([[1, 1], [1, 1]])<br>
/home/iant/github/matplotlib/lib/matplotlib/colorbar.py:1224: RuntimeWarning: invalid value encountered in divide<br>
y = y / (self._boundaries[self._inside][-1] -<br>
Traceback (most recent call last):<br>
File "bug.py", line 19, in <br>
fig.colorbar(cs, ax=ax)<br>
File "/home/iant/github/matplotlib/lib/matplotlib/figure.py", line 1276, in colorbar<br>
cb = cbar.Colorbar(cax, mappable, **cb_kw)<br>
File "/home/iant/github/matplotlib/lib/matplotlib/_api/deprecation.py", line 384, in wrapper<br>
return func(*inner_args, **inner_kwargs)<br>
File "/home/iant/github/matplotlib/lib/matplotlib/colorbar.py", line 396, in <strong>init</strong><br>
self._draw_all()<br>
File "/home/iant/github/matplotlib/lib/matplotlib/colorbar.py", line 535, in _draw_all<br>
X, Y = self._mesh()<br>
File "/home/iant/github/matplotlib/lib/matplotlib/colorbar.py", line 1110, in _mesh<br>
y, _ = self._proportional_y()<br>
File "/home/iant/github/matplotlib/lib/matplotlib/colorbar.py", line 1246, in _proportional_y<br>
automin = yscaled[1] - yscaled[0]<br>
IndexError: index 1 is out of bounds for axis 0 with size 1</p>
<h3 dir="auto">Expected outcome</h3>
<p dir="auto">Colorbar should be displayed as normal.</p>
<h3 dir="auto">Additional information</h3>
<p dir="auto">Essentially the colorbar data range is zero, so when trying to determine the y-position of a particular contour level there is a divide by zero.</p>
<p dir="auto">This has probably been a problem for years. It is a silly test case as who wants to contour a uniform field, but we should handle it more gracefully.</p>
<h3 dir="auto">Operating system</h3>
<p dir="auto">N/A</p>
<h3 dir="auto">Matplotlib Version</h3>
<p dir="auto">3.6.0.dev3132+gf8cf0ee5e7</p>
<h3 dir="auto">Matplotlib Backend</h3>
<p dir="auto">N/A</p>
<h3 dir="auto">Python version</h3>
<p dir="auto">3.8.10</p>
<h3 dir="auto">Jupyter version</h3>
<p dir="auto">N/A</p>
<h3 dir="auto">Installation</h3>
<p dir="auto">from source (.tar.gz)</p> | <p dir="auto">It would be great if you could copy the functionality as it exists in Matlab:<br>
In the toolbar there is a 'Data Cursor' button.<br>
This allows you to click on data points on the plot and it shows values.<br>
It also allows you to move around the plot by using the arrow keys.<br>
This is really helpful for scanning sample values quickly.</p> | 0 |
<p dir="auto">When element on which the tooltip is created is removed from the DOM. Html for the corresponding tooltip is not remove from DOM and it remains on the page.</p>
<p dir="auto">Possible solution (quick and dirty :) ) :<br>
I added the following code to init of the plugin and it worked for my situation<br>
this.$element.on('remove', this, function (e) { e.data.hide(); })</p> | <p dir="auto">Example:<br>
<a href="http://jsfiddle.net/eduardojribeiro/fScua/297/" rel="nofollow">http://jsfiddle.net/eduardojribeiro/fScua/297/</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 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<br>
<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tkqubo/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tkqubo">@tkqubo</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thasner/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thasner">@thasner</a> @kenzierocks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/clayne11/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/clayne11">@clayne11</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tansongyang/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tansongyang">@tansongyang</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/NicholasBoll/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/NicholasBoll">@NicholasBoll</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mDibyo/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mDibyo">@mDibyo</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pdeva/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pdeva">@pdeva</a></li>
</ul>
<p dir="auto">Currently types packages do not allow peerDependencies while the actual packages can have peerDependencies. In this case react-redux allows redux to match <code class="notranslate">^2.x.x || ^3.x.x || ^4.x.x</code>. The typings for redux v4 however have changed so typescript is throwing <code class="notranslate">All declarations of 'Dispatch' must have identical type parameters.</code></p>
<p dir="auto">Adding <code class="notranslate">"paths": { "redux": ["node_modules/redux"] }</code> to my tsconfig did not solve this problem so I'm wondering what the current approach is to typings for peerDependencies that have their own typings.</p> | <p dir="auto">Can we move @types/react from dependency to peerDependency?</p>
<p dir="auto">I'm experiencing a issue where I have react@16 and it's typings, but types/react-redux installs react@15 typings as dependency which results many compiler errors and red underlines in VS Code.</p>
<p dir="auto">I think that we can solve the issue using @types/react as peerDependency.</p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tkqubo/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tkqubo">@tkqubo</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thasner/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thasner">@thasner</a> @kenzierocks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/clayne11/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/clayne11">@clayne11</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tansongyang/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tansongyang">@tansongyang</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/NicholasBoll/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/NicholasBoll">@NicholasBoll</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mDibyo/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mDibyo">@mDibyo</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pdeva/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pdeva">@pdeva</a></p> | 1 |
<p dir="auto">In the ES 5 alphas we have some awesome bootstrap checks. However when you start ES as a service, eg <code class="notranslate">service elasticsearch start</code> and haven't completed those, it gives;</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" * Starting Elasticsearch Server [ OK ]"><pre class="notranslate"><code class="notranslate"> * Starting Elasticsearch Server [ OK ]
</code></pre></div>
<p dir="auto">And in the logs it complains because not all of the checks passed.</p>
<p dir="auto">We shouldn't really be returning an <code class="notranslate">OK</code> from the service if it doesn't start at all.</p> | <p dir="auto">Hi.</p>
<p dir="auto">I would like not to get some of the fields from the response of an API request, since it's killing my CPU time at deserialization of the JSON in the client, I commented the fields that I don't want to receive, Is it possible?</p>
<p dir="auto">First aggregation is date_histogram, inner aggregation is top_hits, What i've tried to do is to take the last value from every 30 minutes within a date range.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"took" : 21,
"timed_out" : false,
"_shards" : {
"total" : 5,
"successful" : 5,
"failed" : 0
},
"hits" : {
"total" : 1715,
"max_score" : 0.0,
"hits" : [ ]
},
"aggregations" : {
"my_agg" : {
"buckets" : [ {
//"key_as_string" : "2014-08-20T12:00:00.000Z",
"key" : 1408536000000,
//"doc_count" : 64,
"found_hits" : {
"hits" : {
// "total" : 64,
// "max_score" : null,
"hits" : [ {
//"_index" : "feed_history",
// "_type" : "feed_history",
// "_id" : "de1ea495-13d1-422d-ad44-a96fb0c36af8",
// "_score" : null,
"_source":{"value":1.30655,"relatedId":2,"serverTime":"2014-08-20T12:29:59.4410307Z"},
// "sort" : [ 1408537799441 ]
} ]
}
}
}, ... ]
}
}
}"><pre class="notranslate"><code class="notranslate">{
"took" : 21,
"timed_out" : false,
"_shards" : {
"total" : 5,
"successful" : 5,
"failed" : 0
},
"hits" : {
"total" : 1715,
"max_score" : 0.0,
"hits" : [ ]
},
"aggregations" : {
"my_agg" : {
"buckets" : [ {
//"key_as_string" : "2014-08-20T12:00:00.000Z",
"key" : 1408536000000,
//"doc_count" : 64,
"found_hits" : {
"hits" : {
// "total" : 64,
// "max_score" : null,
"hits" : [ {
//"_index" : "feed_history",
// "_type" : "feed_history",
// "_id" : "de1ea495-13d1-422d-ad44-a96fb0c36af8",
// "_score" : null,
"_source":{"value":1.30655,"relatedId":2,"serverTime":"2014-08-20T12:29:59.4410307Z"},
// "sort" : [ 1408537799441 ]
} ]
}
}
}, ... ]
}
}
}
</code></pre></div> | 0 |
<h3 dir="auto">Apache Airflow version</h3>
<p dir="auto">2.3.2 (latest released)</p>
<h3 dir="auto">What happened</h3>
<p dir="auto">Using the provided minimal example, <code class="notranslate">task_instance</code> (i.e., <code class="notranslate">ti</code>) is accessible when using <code class="notranslate">PythonOperator</code> but fails when using <code class="notranslate">PythonVirtualenvOperator</code>.</p>
<h3 dir="auto">What you think should happen instead</h3>
<p dir="auto">I would expect <code class="notranslate">PythonOperator</code> and <code class="notranslate">PythonVirtualenvOperator</code> to behave in a similar way. Instead, none of the xcom examples work with <code class="notranslate">PythonVirtualenvOperator</code>.</p>
<h3 dir="auto">How to reproduce</h3>
<p dir="auto">Switch between <code class="notranslate">PythonOperator</code> and <code class="notranslate">PythonVirtualenvOperator</code>. Using <code class="notranslate">PythonVirtualenvOperator</code> dag will fail.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from airflow import DAG
from airflow.operators.python import PythonVirtualenvOperator, PythonOperator
from datetime import datetime, timedelta
def _pusher(ti):
ti.xcom_push(key='my-key', value='my-value')
def _puller(ti):
value = ti.xcom_pull(task_ids='pusher', key='my-key')
assert value == 'my-value'
with DAG('minimal-example', schedule_interval='@once', start_date=datetime(2021, 1, 1), catchup=False) as dag:
#pusher = PythonVirtualenvOperator(
pusher = PythonOperator(
task_id='pusher',
python_callable=_pusher,
#requirements=[],
)
#puller = PythonVirtualenvOperator(
puller = PythonOperator(
task_id='puller',
python_callable=_puller,
#requirements=[],
)
pusher >> puller"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">airflow</span> <span class="pl-k">import</span> <span class="pl-v">DAG</span>
<span class="pl-k">from</span> <span class="pl-s1">airflow</span>.<span class="pl-s1">operators</span>.<span class="pl-s1">python</span> <span class="pl-k">import</span> <span class="pl-v">PythonVirtualenvOperator</span>, <span class="pl-v">PythonOperator</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">def</span> <span class="pl-en">_pusher</span>(<span class="pl-s1">ti</span>):
<span class="pl-s1">ti</span>.<span class="pl-en">xcom_push</span>(<span class="pl-s1">key</span><span class="pl-c1">=</span><span class="pl-s">'my-key'</span>, <span class="pl-s1">value</span><span class="pl-c1">=</span><span class="pl-s">'my-value'</span>)
<span class="pl-k">def</span> <span class="pl-en">_puller</span>(<span class="pl-s1">ti</span>):
<span class="pl-s1">value</span> <span class="pl-c1">=</span> <span class="pl-s1">ti</span>.<span class="pl-en">xcom_pull</span>(<span class="pl-s1">task_ids</span><span class="pl-c1">=</span><span class="pl-s">'pusher'</span>, <span class="pl-s1">key</span><span class="pl-c1">=</span><span class="pl-s">'my-key'</span>)
<span class="pl-k">assert</span> <span class="pl-s1">value</span> <span class="pl-c1">==</span> <span class="pl-s">'my-value'</span>
<span class="pl-k">with</span> <span class="pl-v">DAG</span>(<span class="pl-s">'minimal-example'</span>, <span class="pl-s1">schedule_interval</span><span class="pl-c1">=</span><span class="pl-s">'@once'</span>, <span class="pl-s1">start_date</span><span class="pl-c1">=</span><span class="pl-en">datetime</span>(<span class="pl-c1">2021</span>, <span class="pl-c1">1</span>, <span class="pl-c1">1</span>), <span class="pl-s1">catchup</span><span class="pl-c1">=</span><span class="pl-c1">False</span>) <span class="pl-k">as</span> <span class="pl-s1">dag</span>:
<span class="pl-c">#pusher = PythonVirtualenvOperator(</span>
<span class="pl-s1">pusher</span> <span class="pl-c1">=</span> <span class="pl-v">PythonOperator</span>(
<span class="pl-s1">task_id</span><span class="pl-c1">=</span><span class="pl-s">'pusher'</span>,
<span class="pl-s1">python_callable</span><span class="pl-c1">=</span><span class="pl-s1">_pusher</span>,
<span class="pl-c">#requirements=[],</span>
)
<span class="pl-c">#puller = PythonVirtualenvOperator(</span>
<span class="pl-s1">puller</span> <span class="pl-c1">=</span> <span class="pl-v">PythonOperator</span>(
<span class="pl-s1">task_id</span><span class="pl-c1">=</span><span class="pl-s">'puller'</span>,
<span class="pl-s1">python_callable</span><span class="pl-c1">=</span><span class="pl-s1">_puller</span>,
<span class="pl-c">#requirements=[],</span>
)
<span class="pl-s1">pusher</span> <span class="pl-c1">>></span> <span class="pl-s1">puller</span></pre></div>
<h3 dir="auto">Operating System</h3>
<p dir="auto">Ubuntu 20.04</p>
<h3 dir="auto">Versions of Apache Airflow Providers</h3>
<p dir="auto">Apache airflow 2.3.2 in docker container</p>
<h3 dir="auto">Deployment</h3>
<p dir="auto">Docker-Compose</p>
<h3 dir="auto">Deployment details</h3>
<p dir="auto"><a href="https://github.com/apache/airflow/blob/2.3.2/docs/apache-airflow/start/docker-compose.yaml">https://github.com/apache/airflow/blob/2.3.2/docs/apache-airflow/start/docker-compose.yaml</a></p>
<h3 dir="auto">Anything else</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Are you willing to submit PR?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Yes I am willing to submit a PR!</li>
</ul>
<h3 dir="auto">Code of Conduct</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li>
</ul> | <p dir="auto"><strong>Apache Airflow version</strong>: 1.10.13</p>
<p dir="auto"><strong>Environment</strong>: Docker (Ubuntu 18.4 - Python 3.7)</p>
<ul dir="auto">
<li>Cloud provider or hardware configuration: Azure</li>
<li>OS (e.g. from /etc/os-release): Docker (Ubuntu 18.4 - Python 3.7)</li>
<li>Kernel (e.g. uname -a): Docker (Ubuntu 18.4 - Python 3.7)</li>
<li>Install tools: N/A</li>
<li>Others: N/A</li>
</ul>
<p dir="auto"><strong>What happened:</strong></p>
<p dir="auto">When we enable provide_context=True for PythonVirtualenvOperator and try to use the xcom_push to pass a variable I get this error:</p>
<p dir="auto"><code class="notranslate">File "/tmp/venv0upgqome/script.py", line 13, in push\n kwargs[\'ti\'].xcom_push(key=\'value from pusher 1\', value=value_1)\nKeyError: \'ti\'\n'</code></p>
<p dir="auto"><strong>How to reproduce it:</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import airflow
from airflow import DAG
from airflow.operators.python_operator import PythonVirtualenvOperator
args = {
'owner': 'Airflow',
'start_date': airflow.utils.dates.days_ago(2),
}
dag = DAG('BAtatas', schedule_interval="@once", default_args=args)
def push(**kwargs):
"""Pushes an XCom without a specific target"""
value_1 = [1, 2, 3]
print("printing the kwargs!!!")
print(kwargs)
kwargs['ti'].xcom_push(key='value from pusher 1', value=value_1)
def push_by_returning(**kwargs):
value_2 = {'a': 'b'}
"""Pushes an XCom without a specific target, just by returning it"""
return value_2
def puller(**kwargs):
value_2 = {'a': 'b'}
value_1 = [1, 2, 3]
"""Pull all previously pushed XComs and check if the pushed values match the pulled values."""
ti = kwargs['ti']
# get value_1
pulled_value_1 = ti.xcom_pull(key=None, task_ids='push')
assert pulled_value_1 == value_1
# get value_2
pulled_value_2 = ti.xcom_pull(task_ids='push_by_returning')
assert pulled_value_2 == value_2
# get both value_1 and value_2
pulled_value_1, pulled_value_2 = ti.xcom_pull(
key=None, task_ids=['push', 'push_by_returning'])
assert (pulled_value_1, pulled_value_2) == (value_1, value_2)
push1 = PythonVirtualenvOperator(
task_id='push',
dag=dag,
python_callable=push,
requirements=[],
python_version='3.7',
use_dill=False,
provide_context=True,
system_site_packages=True,
)
push2 = PythonVirtualenvOperator(
task_id='push_by_returning',
dag=dag,
python_callable=push_by_returning,
requirements=[],
python_version='3.7',
use_dill=False,
provide_context=True,
system_site_packages=True,
)
pull = PythonVirtualenvOperator(
task_id='puller',
dag=dag,
python_callable=puller,
requirements=[],
python_version='3.7',
use_dill=False,
provide_context=True,
system_site_packages=True,
)
pull << [push1, push2]"><pre class="notranslate"><code class="notranslate">import airflow
from airflow import DAG
from airflow.operators.python_operator import PythonVirtualenvOperator
args = {
'owner': 'Airflow',
'start_date': airflow.utils.dates.days_ago(2),
}
dag = DAG('BAtatas', schedule_interval="@once", default_args=args)
def push(**kwargs):
"""Pushes an XCom without a specific target"""
value_1 = [1, 2, 3]
print("printing the kwargs!!!")
print(kwargs)
kwargs['ti'].xcom_push(key='value from pusher 1', value=value_1)
def push_by_returning(**kwargs):
value_2 = {'a': 'b'}
"""Pushes an XCom without a specific target, just by returning it"""
return value_2
def puller(**kwargs):
value_2 = {'a': 'b'}
value_1 = [1, 2, 3]
"""Pull all previously pushed XComs and check if the pushed values match the pulled values."""
ti = kwargs['ti']
# get value_1
pulled_value_1 = ti.xcom_pull(key=None, task_ids='push')
assert pulled_value_1 == value_1
# get value_2
pulled_value_2 = ti.xcom_pull(task_ids='push_by_returning')
assert pulled_value_2 == value_2
# get both value_1 and value_2
pulled_value_1, pulled_value_2 = ti.xcom_pull(
key=None, task_ids=['push', 'push_by_returning'])
assert (pulled_value_1, pulled_value_2) == (value_1, value_2)
push1 = PythonVirtualenvOperator(
task_id='push',
dag=dag,
python_callable=push,
requirements=[],
python_version='3.7',
use_dill=False,
provide_context=True,
system_site_packages=True,
)
push2 = PythonVirtualenvOperator(
task_id='push_by_returning',
dag=dag,
python_callable=push_by_returning,
requirements=[],
python_version='3.7',
use_dill=False,
provide_context=True,
system_site_packages=True,
)
pull = PythonVirtualenvOperator(
task_id='puller',
dag=dag,
python_callable=puller,
requirements=[],
python_version='3.7',
use_dill=False,
provide_context=True,
system_site_packages=True,
)
pull << [push1, push2]
</code></pre></div> | 1 |
<p dir="auto">When I execute a command like</p>
<blockquote>
<p dir="auto">sns.pairplot(x, hue = 'species', diag_kind='kde')</p>
</blockquote>
<p dir="auto">The following error is raised:</p>
<blockquote>
<p dir="auto">TypeError: slice indices must be integers or None or have an <strong>index</strong> method</p>
</blockquote>
<p dir="auto">This happens after upgrading to matplotlib 2.0. If I remove the diag_kind argument, the function executes.</p> | <p dir="auto">when I run the demo Example:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=">>> import numpy as np; np.random.seed(10)
>>> import seaborn as sns; sns.set(color_codes=True)
>>> mean, cov = [0, 2], [(1, .5), (.5, 1)]
>>> x, y = np.random.multivariate_normal(mean, cov, size=50).T
>>> ax = sns.kdeplot(x)"><pre class="notranslate"><code class="notranslate">>>> import numpy as np; np.random.seed(10)
>>> import seaborn as sns; sns.set(color_codes=True)
>>> mean, cov = [0, 2], [(1, .5), (.5, 1)]
>>> x, y = np.random.multivariate_normal(mean, cov, size=50).T
>>> ax = sns.kdeplot(x)
</code></pre></div>
<p dir="auto">it report an error as below:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "D:\Python\Python35\lib\site-packages\seaborn\distributions.py", line 604, in kdeplot
cumulative=cumulative, **kwargs)
File "D:\Python\Python35\lib\site-packages\seaborn\distributions.py", line 270, in _univariate_kdeplot
cumulative=cumulative)
File "D:\Python\Python35\lib\site-packages\seaborn\distributions.py", line 328, in _statsmodels_univariate_kde
kde.fit(kernel, bw, fft, gridsize=gridsize, cut=cut, clip=clip)
File "D:\Python\Python35\lib\site-packages\statsmodels\nonparametric\kde.py", line 146, in fit
clip=clip, cut=cut)
File "D:\Python\Python35\lib\site-packages\statsmodels\nonparametric\kde.py", line 506, in kdensityfft
f = revrt(zstar)
File "D:\Python\Python35\lib\site-packages\statsmodels\nonparametric\kdetools.py", line 20, in revrt
y = X[:m/2+1] + np.r_[0,X[m/2+1:],0]*1j
TypeError: slice indices must be integers or None or have an __index__ method"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "D:\Python\Python35\lib\site-packages\seaborn\distributions.py", line 604, in kdeplot
cumulative=cumulative, **kwargs)
File "D:\Python\Python35\lib\site-packages\seaborn\distributions.py", line 270, in _univariate_kdeplot
cumulative=cumulative)
File "D:\Python\Python35\lib\site-packages\seaborn\distributions.py", line 328, in _statsmodels_univariate_kde
kde.fit(kernel, bw, fft, gridsize=gridsize, cut=cut, clip=clip)
File "D:\Python\Python35\lib\site-packages\statsmodels\nonparametric\kde.py", line 146, in fit
clip=clip, cut=cut)
File "D:\Python\Python35\lib\site-packages\statsmodels\nonparametric\kde.py", line 506, in kdensityfft
f = revrt(zstar)
File "D:\Python\Python35\lib\site-packages\statsmodels\nonparametric\kdetools.py", line 20, in revrt
y = X[:m/2+1] + np.r_[0,X[m/2+1:],0]*1j
TypeError: slice indices must be integers or None or have an __index__ method
</code></pre></div>
<p dir="auto">My platform is win10 and seaborn version is (0.7.1) and statsmodels version is (0.6.1).</p> | 1 |
<p dir="auto">I would love to see a live preview of the changes i make to the configuration, so i don't have to go to each components page edit in the color via dev tools and copy them and then paste them into the customizer.<br>
If a live preview might not be possible, maybe provide a preview button so you can preview your design without downloading it and tsting it on your own demo site.</p> | <p dir="auto">Is possible include an official bootstrap theme maker tool (updated) like <a href="http://www.stylebootstrap.info/index.php" rel="nofollow">http://www.stylebootstrap.info/index.php</a> or <a href="http://fancyboot.designspebam.com/" rel="nofollow">http://fancyboot.designspebam.com/</a> or <a href="http://pikock.github.io/bootstrap-magic/app/index.html" rel="nofollow">http://pikock.github.io/bootstrap-magic/app/index.html</a> on the official web site?</p>
<p dir="auto">This would be an amazing tool for everyone!</p> | 1 |
<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>
<p dir="auto">ONNX exporter gets tripped by a model using <code class="notranslate">nn.Sequential</code> and <code class="notranslate">nn.Embedding</code> when the embedding layer is stored as a class property. The generated onnx file is malformed: it has an initializer for the user-defined input. The initializer used is the weight metrix of the embedding table.</p>
<p dir="auto">The embedding table appears in initializers the second time (this time for the embedding layer).</p>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">Steps to reproduce the behavior:</p>
<ol dir="auto">
<li>Define a model:</li>
</ol>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" n = 8
dim = 10
class SomeModel(nn.Module):
def __init__(self):
super(SomeModel, self).__init__()
self.embedding = nn.Embedding(n, dim)
self.seq = nn.Sequential(
self.embedding,
nn.Linear(dim, 1),
nn.Sigmoid()
)
def forward(self, indices):
return self.seq(indices)
model = SomeModel()"><pre class="notranslate"><code class="notranslate"> n = 8
dim = 10
class SomeModel(nn.Module):
def __init__(self):
super(SomeModel, self).__init__()
self.embedding = nn.Embedding(n, dim)
self.seq = nn.Sequential(
self.embedding,
nn.Linear(dim, 1),
nn.Sigmoid()
)
def forward(self, indices):
return self.seq(indices)
model = SomeModel()
</code></pre></div>
<ol start="2" dir="auto">
<li>Export:</li>
</ol>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="input = torch.LongTensor([2])
torch.onnx.export(model, input, "foo.onnx")"><pre class="notranslate"><code class="notranslate">input = torch.LongTensor([2])
torch.onnx.export(model, input, "foo.onnx")
</code></pre></div>
<ol start="3" dir="auto">
<li>Check <code class="notranslate">foo.onnx</code> and notice it's malformed.</li>
</ol>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">No initializer for the user-provided input of the model.</p>
<h2 dir="auto">Environment</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Collecting environment information...
PyTorch version: 1.0.0
Is debug build: No
CUDA used to build PyTorch: 9.0.176
OS: Ubuntu 16.04.6 LTS
GCC version: (Ubuntu 5.4.0-6ubuntu1~16.04.11) 5.4.0 20160609
CMake version: Could not collect
Python version: 2.7
Is CUDA available: No
CUDA runtime version: No CUDA
GPU models and configuration: No CUDA
Nvidia driver version: No CUDA
cuDNN version: No CUDA
Versions of relevant libraries:
[pip] msgpack-numpy==0.4.3.1
[pip] numpy==1.14.1
[pip] torch==1.0.0
[conda] Could not collect"><pre class="notranslate"><code class="notranslate">Collecting environment information...
PyTorch version: 1.0.0
Is debug build: No
CUDA used to build PyTorch: 9.0.176
OS: Ubuntu 16.04.6 LTS
GCC version: (Ubuntu 5.4.0-6ubuntu1~16.04.11) 5.4.0 20160609
CMake version: Could not collect
Python version: 2.7
Is CUDA available: No
CUDA runtime version: No CUDA
GPU models and configuration: No CUDA
Nvidia driver version: No CUDA
cuDNN version: No CUDA
Versions of relevant libraries:
[pip] msgpack-numpy==0.4.3.1
[pip] numpy==1.14.1
[pip] torch==1.0.0
[conda] Could not collect
</code></pre></div>
<h2 dir="auto">Additional context</h2>
<p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="432792695" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/19227" data-hovercard-type="issue" data-hovercard-url="/pytorch/pytorch/issues/19227/hovercard" href="https://github.com/pytorch/pytorch/issues/19227">#19227</a> is another issue where the onnx export and <code class="notranslate">nn.Sequential</code> appear to be at odds.</p>
<p dir="auto">This bug can be worked around by inlining embedding definition to <code class="notranslate">nn.Sequetial</code> or by getting rid of <code class="notranslate">nn.Sequential</code> and chaining ops manually.</p>
<p dir="auto">Either way, the fact that a malformed file is outputted is not great.</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>
<p dir="auto">The tracer in onnx exporter is failing with an assertion error in the exporter.</p>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">Steps to reproduce the behavior:</p>
<ol dir="auto">
<li>define a model:</li>
</ol>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="class SomeModel(nn.Module):
def __init__(self):
super(SomeModel, self).__init__()
dim = 5
self.emb = nn.Embedding(10, dim)
self.lin1 = nn.Linear(dim, 1)
self.seq = nn.Sequential(
self.emb,
self.lin1,
)
def forward(self, input):
return self.seq(input)
model = SomeModel()"><pre class="notranslate"><code class="notranslate">class SomeModel(nn.Module):
def __init__(self):
super(SomeModel, self).__init__()
dim = 5
self.emb = nn.Embedding(10, dim)
self.lin1 = nn.Linear(dim, 1)
self.seq = nn.Sequential(
self.emb,
self.lin1,
)
def forward(self, input):
return self.seq(input)
model = SomeModel()
</code></pre></div>
<ol start="2" dir="auto">
<li>run export:</li>
</ol>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="dummy_input = torch.tensor([2], dtype=torch.long)
dummy_input
torch.onnx.export(model, dummy_input, "model.onnx", verbose=True)"><pre class="notranslate"><code class="notranslate">dummy_input = torch.tensor([2], dtype=torch.long)
dummy_input
torch.onnx.export(model, dummy_input, "model.onnx", verbose=True)
</code></pre></div>
<p dir="auto">fails with:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[redacted]/vendor/local/lib/python2.7/site-packages/torch/onnx/utils.pyc in _export(model, args, f, export_params, verbose, training, input_names, output_names, operator_export_type, export_type, example_outputs, propagate)
230 defer_weight_export = export_type is not ExportTypes.PROTOBUF_FILE
231 if export_params:
--> 232 proto, export_map = graph.export(params, _onnx_opset_version, defer_weight_export, operator_export_type)
233 else:
234 proto, export_map = graph.export([], _onnx_opset_version, False, operator_export_type)
RuntimeError: torch/csrc/jit/export.cpp:296: encodeBlock: Assertion `b->inputs().size() >= num_initializers` failed."><pre class="notranslate"><code class="notranslate">[redacted]/vendor/local/lib/python2.7/site-packages/torch/onnx/utils.pyc in _export(model, args, f, export_params, verbose, training, input_names, output_names, operator_export_type, export_type, example_outputs, propagate)
230 defer_weight_export = export_type is not ExportTypes.PROTOBUF_FILE
231 if export_params:
--> 232 proto, export_map = graph.export(params, _onnx_opset_version, defer_weight_export, operator_export_type)
233 else:
234 proto, export_map = graph.export([], _onnx_opset_version, False, operator_export_type)
RuntimeError: torch/csrc/jit/export.cpp:296: encodeBlock: Assertion `b->inputs().size() >= num_initializers` failed.
</code></pre></div>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">Model is exported to ONNX</p>
<h2 dir="auto">Environment</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Collecting environment information...
PyTorch version: 0.4.1
Is debug build: No
CUDA used to build PyTorch: 9.0.176
OS: Ubuntu 16.04.6 LTS
GCC version: (Ubuntu 5.4.0-6ubuntu1~16.04.11) 5.4.0 20160609
CMake version: Could not collect
Python version: 2.7
Is CUDA available: No
CUDA runtime version: No CUDA
GPU models and configuration: No CUDA
Nvidia driver version: No CUDA
cuDNN version: No CUDA
Versions of relevant libraries:
[pip] msgpack-numpy==0.4.3.1
[pip] numpy==1.14.1
[pip] torch==0.4.1
[conda] Could not collect"><pre class="notranslate"><code class="notranslate">Collecting environment information...
PyTorch version: 0.4.1
Is debug build: No
CUDA used to build PyTorch: 9.0.176
OS: Ubuntu 16.04.6 LTS
GCC version: (Ubuntu 5.4.0-6ubuntu1~16.04.11) 5.4.0 20160609
CMake version: Could not collect
Python version: 2.7
Is CUDA available: No
CUDA runtime version: No CUDA
GPU models and configuration: No CUDA
Nvidia driver version: No CUDA
cuDNN version: No CUDA
Versions of relevant libraries:
[pip] msgpack-numpy==0.4.3.1
[pip] numpy==1.14.1
[pip] torch==0.4.1
[conda] Could not collect
</code></pre></div>
<h2 dir="auto">Additional context</h2>
<p dir="auto">As a workaround one can inline layer definitions into the sequence:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="class SomeModel(nn.Module):
def __init__(self):
super(SomeModel, self).__init__()
dim = 5
self.seq = nn.Sequential(
nn.Embedding(10, dim),
nn.Linear(dim, 1),
)
def forward(self, input):
return self.seq(input)
model = SomeModel()"><pre class="notranslate"><code class="notranslate">class SomeModel(nn.Module):
def __init__(self):
super(SomeModel, self).__init__()
dim = 5
self.seq = nn.Sequential(
nn.Embedding(10, dim),
nn.Linear(dim, 1),
)
def forward(self, input):
return self.seq(input)
model = SomeModel()
</code></pre></div> | 1 |
<p dir="auto">When setting <code class="notranslate">url_prefix</code> in <code class="notranslate">app.register_blueprint</code> it does not update the blueprints <code class="notranslate">url_prefix</code> property.<br>
Not sure if this is a bug or intentional but seems odd.</p>
<hr>
<p dir="auto">Example:<br>
<strong>app.py</strong></p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from flask import Flask
import bp
def create_app():
app = Flask(__name__)
with app.app_context():
app.register_blueprint(bp.v, url_prefix="/custom-prefix")
return app"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">flask</span> <span class="pl-k">import</span> <span class="pl-v">Flask</span>
<span class="pl-k">import</span> <span class="pl-s1">bp</span>
<span class="pl-k">def</span> <span class="pl-en">create_app</span>():
<span class="pl-s1">app</span> <span class="pl-c1">=</span> <span class="pl-v">Flask</span>(<span class="pl-s1">__name__</span>)
<span class="pl-k">with</span> <span class="pl-s1">app</span>.<span class="pl-en">app_context</span>():
<span class="pl-s1">app</span>.<span class="pl-en">register_blueprint</span>(<span class="pl-s1">bp</span>.<span class="pl-s1">v</span>, <span class="pl-s1">url_prefix</span><span class="pl-c1">=</span><span class="pl-s">"/custom-prefix"</span>)
<span class="pl-k">return</span> <span class="pl-s1">app</span></pre></div>
<p dir="auto"><strong>bp.py</strong></p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from flask import Blueprint
v = Blueprint('the_blueprint', __name__, url_prefix='/default-prefix')
@v.route('/')
def index():
return f"url_prefix: {v.url_prefix}""><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">flask</span> <span class="pl-k">import</span> <span class="pl-v">Blueprint</span>
<span class="pl-s1">v</span> <span class="pl-c1">=</span> <span class="pl-v">Blueprint</span>(<span class="pl-s">'the_blueprint'</span>, <span class="pl-s1">__name__</span>, <span class="pl-s1">url_prefix</span><span class="pl-c1">=</span><span class="pl-s">'/default-prefix'</span>)
<span class="pl-en">@<span class="pl-s1">v</span>.<span class="pl-en">route</span>(<span class="pl-s">'/'</span>)</span>
<span class="pl-k">def</span> <span class="pl-en">index</span>():
<span class="pl-k">return</span> <span class="pl-s">f"url_prefix: <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">v</span>.<span class="pl-s1">url_prefix</span><span class="pl-kos">}</span></span>"</span></pre></div>
<p dir="auto"><strong>run</strong></p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ FLASK_DEBUG=1 FLASK_APP=app flask run --host 0.0.0.0 --port 5001
$ curl 0.0.0.0:5001/custom-prefix/
url_prefix: /default-prefix"><pre class="notranslate">$ FLASK_DEBUG=1 FLASK_APP=app flask run --host 0.0.0.0 --port 5001
$ curl 0.0.0.0:5001/custom-prefix/
url_prefix: /default-prefix</pre></div>
<hr>
<p dir="auto">I would expect <code class="notranslate">bp.url_prefix</code> to be '/custom-prefix'</p>
<p dir="auto">Environment:</p>
<ul dir="auto">
<li>Python version: 3.8.5</li>
<li>Flask version: 2.0.0 and 1.1.0</li>
</ul> | <p dir="auto">Nested blueprints should be able to have the same name. Currently all blueprints are registered under their own name, however for a nested blueprint id expected it to use the <code class="notranslate"><parent_name>.<child_name></code></p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from pprint import pprint
import flask
app = flask.Flask(__name__)
view_bp = flask.Blueprint("home", __name__)
api_bp = flask.Blueprint("api", __name__, url_prefix="/api")
home_api_bp = flask.Blueprint("home", __name__)
@view_bp.route("/")
@home_api_bp.route("/")
def view():
print(flask.request, flask.request.endpoint)
api_bp.register_blueprint(home_api_bp)
app.register_blueprint(view_bp)
app.register_blueprint(api_bp)
pprint(app.url_map)"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">pprint</span> <span class="pl-k">import</span> <span class="pl-s1">pprint</span>
<span class="pl-k">import</span> <span class="pl-s1">flask</span>
<span class="pl-s1">app</span> <span class="pl-c1">=</span> <span class="pl-s1">flask</span>.<span class="pl-v">Flask</span>(<span class="pl-s1">__name__</span>)
<span class="pl-s1">view_bp</span> <span class="pl-c1">=</span> <span class="pl-s1">flask</span>.<span class="pl-v">Blueprint</span>(<span class="pl-s">"home"</span>, <span class="pl-s1">__name__</span>)
<span class="pl-s1">api_bp</span> <span class="pl-c1">=</span> <span class="pl-s1">flask</span>.<span class="pl-v">Blueprint</span>(<span class="pl-s">"api"</span>, <span class="pl-s1">__name__</span>, <span class="pl-s1">url_prefix</span><span class="pl-c1">=</span><span class="pl-s">"/api"</span>)
<span class="pl-s1">home_api_bp</span> <span class="pl-c1">=</span> <span class="pl-s1">flask</span>.<span class="pl-v">Blueprint</span>(<span class="pl-s">"home"</span>, <span class="pl-s1">__name__</span>)
<span class="pl-en">@<span class="pl-s1">view_bp</span>.<span class="pl-en">route</span>(<span class="pl-s">"/"</span>)</span>
<span class="pl-en">@<span class="pl-s1">home_api_bp</span>.<span class="pl-en">route</span>(<span class="pl-s">"/"</span>)</span>
<span class="pl-k">def</span> <span class="pl-en">view</span>():
<span class="pl-en">print</span>(<span class="pl-s1">flask</span>.<span class="pl-s1">request</span>, <span class="pl-s1">flask</span>.<span class="pl-s1">request</span>.<span class="pl-s1">endpoint</span>)
<span class="pl-s1">api_bp</span>.<span class="pl-en">register_blueprint</span>(<span class="pl-s1">home_api_bp</span>)
<span class="pl-s1">app</span>.<span class="pl-en">register_blueprint</span>(<span class="pl-s1">view_bp</span>)
<span class="pl-s1">app</span>.<span class="pl-en">register_blueprint</span>(<span class="pl-s1">api_bp</span>)
<span class="pl-en">pprint</span>(<span class="pl-s1">app</span>.<span class="pl-s1">url_map</span>)</pre></div>
<div class="highlight highlight-text-python-traceback notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Traceback (most recent call last):
File "/home/maico/test.py", line 18, in <module>
app.register_blueprint(api_bp)
File "/home/maico/.local/lib/python3.9/site-packages/flask/scaffold.py", line 54, in wrapper_func
return f(self, *args, **kwargs)
File "/home/maico/.local/lib/python3.9/site-packages/flask/app.py", line 1023, in register_blueprint
blueprint.register(self, options)
File "/home/maico/.local/lib/python3.9/site-packages/flask/blueprints.py", line 359, in register
blueprint.register(app, bp_options)
File "/home/maico/.local/lib/python3.9/site-packages/flask/blueprints.py", line 275, in register
assert app.blueprints[self.name] is self, (
AssertionError: A name collision occurred between blueprints <Blueprint 'home'> and <Blueprint 'home'>. Both share the same name 'home'. Blueprints that are created on the fly need unique names."><pre class="notranslate">Traceback (most recent call last):
File <span class="pl-s">"/home/maico/test.py"</span>, line <span class="pl-c1">18</span>, in <span class="pl-en"><module></span>
app.register_blueprint(api_bp)
File <span class="pl-s">"/home/maico/.local/lib/python3.9/site-packages/flask/scaffold.py"</span>, line <span class="pl-c1">54</span>, in <span class="pl-en">wrapper_func</span>
<span class="pl-k">return</span> f(<span class="pl-c1">self</span>, <span class="pl-k">*</span>args, <span class="pl-k">**</span>kwargs)
File <span class="pl-s">"/home/maico/.local/lib/python3.9/site-packages/flask/app.py"</span>, line <span class="pl-c1">1023</span>, in <span class="pl-en">register_blueprint</span>
blueprint.register(<span class="pl-c1">self</span>, options)
File <span class="pl-s">"/home/maico/.local/lib/python3.9/site-packages/flask/blueprints.py"</span>, line <span class="pl-c1">359</span>, in <span class="pl-en">register</span>
blueprint.register(app, bp_options)
File <span class="pl-s">"/home/maico/.local/lib/python3.9/site-packages/flask/blueprints.py"</span>, line <span class="pl-c1">275</span>, in <span class="pl-en">register</span>
<span class="pl-k">assert</span> app.blueprints[<span class="pl-c1">self</span>.name] <span class="pl-k">is</span> <span class="pl-c1">self</span>, (
<span class="pl-en">AssertionError</span>: <span class="pl-s">A name collision occurred between blueprints <Blueprint 'home'> and <Blueprint 'home'>. Both share the same name 'home'. Blueprints that are created on the fly need unique names.</span></pre></div>
<p dir="auto">Environment:</p>
<ul dir="auto">
<li>Python version: 3.9.1</li>
<li>Flask version: 2.1.0dev0: <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pallets/flask/commit/9039534eee6a87da98a1dee9e4338d1b73e861f8/hovercard" href="https://github.com/pallets/flask/commit/9039534eee6a87da98a1dee9e4338d1b73e861f8"><tt>9039534</tt></a></li>
</ul> | 1 |
<p dir="auto">This issue is carried over from <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="22984422" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/IJulia.jl/issues/116" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/IJulia.jl/issues/116/hovercard" href="https://github.com/JuliaLang/IJulia.jl/issues/116">JuliaLang/IJulia.jl#116</a>.</p>
<p dir="auto">It would be useful at times to have a means of suppressing warnings such as the example below without suppressing errors.</p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/staticfloat/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/staticfloat">@staticfloat</a> has expressed interest in this issue, as has <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/StefanKarpinski/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/StefanKarpinski">@StefanKarpinski</a>. /base/util.jl lines 418:446 contains what looks like the seed of a lightweight logging approach along the lines <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/StefanKarpinski/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/StefanKarpinski">@StefanKarpinski</a> mentioned in the IJulia discussion</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> using Winston
Warning: New definition
|(SynchronousStepCollection,Any) at C:\Users\keithc\.julia\BinDeps\src\BinDe
ps.jl:283
is ambiguous with:
|(Any,NAtype) at C:\Users\keithc\.julia\DataArrays\src\operators.jl:502.
To fix, define
|(SynchronousStepCollection,NAtype)
before the new definition.
Warning: New definition
|(Any,SynchronousStepCollection) at C:\Users\keithc\.julia\BinDeps\src\BinDe
ps.jl:286
is ambiguous with:
|(NAtype,Any) at C:\Users\keithc\.julia\DataArrays\src\operators.jl:502.
To fix, define
|(NAtype,SynchronousStepCollection)
before the new definition."><pre class="notranslate"><code class="notranslate">julia> using Winston
Warning: New definition
|(SynchronousStepCollection,Any) at C:\Users\keithc\.julia\BinDeps\src\BinDe
ps.jl:283
is ambiguous with:
|(Any,NAtype) at C:\Users\keithc\.julia\DataArrays\src\operators.jl:502.
To fix, define
|(SynchronousStepCollection,NAtype)
before the new definition.
Warning: New definition
|(Any,SynchronousStepCollection) at C:\Users\keithc\.julia\BinDeps\src\BinDe
ps.jl:286
is ambiguous with:
|(NAtype,Any) at C:\Users\keithc\.julia\DataArrays\src\operators.jl:502.
To fix, define
|(NAtype,SynchronousStepCollection)
before the new definition.
</code></pre></div> | <p dir="auto">I got the above error locally with <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="906350454" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/40996" data-hovercard-type="pull_request" data-hovercard-url="/JuliaLang/julia/pull/40996/hovercard" href="https://github.com/JuliaLang/julia/pull/40996">#40996</a>, which I have never seen before.</p>
<p dir="auto">CI sees it too, here: <a href="https://build.julialang.org/#/builders/7/builds/5932/steps/5/logs/stdio" rel="nofollow">https://build.julialang.org/#/builders/7/builds/5932/steps/5/logs/stdio</a> (<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/JuliaLang/julia/commit/17f851b11e09303df3c485740745abb91db1a71c/hovercard" href="https://github.com/JuliaLang/julia/commit/17f851b11e09303df3c485740745abb91db1a71c"><tt>17f851b</tt></a>)</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="arrayops (5) | failed at 2021-11-13T02:50:50.671
Error During Test at /buildworker/worker/tester_linuxaarch64/build/share/julia/test/arrayops.jl:1149
Got exception outside of a @test
fatal error in type inference (type bound)
Stacktrace:
[1] mapslices(f::Main.Test99Main_arrayops.var"#18#31", A::Matrix{Int64}; dims::Int64)
@ Base ./abstractarray.jl:2803
[2] macro expansion
@ /buildworker/worker/tester_linuxaarch64/build/share/julia/test/arrayops.jl:1196 [inlined]"><pre class="notranslate"><code class="notranslate">arrayops (5) | failed at 2021-11-13T02:50:50.671
Error During Test at /buildworker/worker/tester_linuxaarch64/build/share/julia/test/arrayops.jl:1149
Got exception outside of a @test
fatal error in type inference (type bound)
Stacktrace:
[1] mapslices(f::Main.Test99Main_arrayops.var"#18#31", A::Matrix{Int64}; dims::Int64)
@ Base ./abstractarray.jl:2803
[2] macro expansion
@ /buildworker/worker/tester_linuxaarch64/build/share/julia/test/arrayops.jl:1196 [inlined]
</code></pre></div> | 0 |
<h1 dir="auto">Bug report</h1>
<h2 dir="auto">Describe the bug</h2>
<p dir="auto">Upgrading to Next 9.0 from 8.1 breaks any Jest tests for components that use dynamic imports syntax (not using <code class="notranslate">next/dynamic</code>) :</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" ● OurComponent › test
Not supported
78 | public componentDidMount(): void {
79 | if (this.ref.current) {
> 80 | import('./some-other-file').then(
| ^"><pre class="notranslate"><code class="notranslate"> ● OurComponent › test
Not supported
78 | public componentDidMount(): void {
79 | if (this.ref.current) {
> 80 | import('./some-other-file').then(
| ^
</code></pre></div>
<p dir="auto">This appears to be due to <code class="notranslate">babel-plugin-dynamic-import-node</code> being removed from the <code class="notranslate">next/babel</code> preset to fix another issue in this <a href="https://spectrum.chat/next-js/general/next-8-minor-update-breaks-dynamic-import-in-jest-tests~1e7b58e7-e301-4ef9-9de4-eef6ed3639d4" rel="nofollow">Spectrum post</a>.</p>
<p dir="auto">In my use case, I'm not importing another component, so it seemed unnecessary to use <code class="notranslate">next/dynamic</code> here. However, looking at the documentation, I would have suspected that usage like the documentation suggests should also break Jest tests due to it using dynamic import syntax as well:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const DynamicComponent = dynamic(() => import('../components/hello'));"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-v">DynamicComponent</span> <span class="pl-c1">=</span> <span class="pl-en">dynamic</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-k">import</span><span class="pl-kos">(</span><span class="pl-s">'../components/hello'</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<h2 dir="auto">To Reproduce</h2>
<ol dir="auto">
<li>Use <code class="notranslate">next/babel</code> preset in <code class="notranslate">.babelrc</code>.</li>
<li>Create a component that uses a dynamic import (e.g. in <code class="notranslate">componentDidMount</code>).</li>
<li>Create a test that renders the component.</li>
</ol>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">Tests should not fail.</p>
<h2 dir="auto">System information</h2>
<ul dir="auto">
<li>OS: Ubuntu 18.04</li>
<li>Version of Next.js: 9.0</li>
</ul> | <h1 dir="auto">Bug report</h1>
<p dir="auto">Since upgrading to v9 I've run into several issues that stop the deployment, the app runs fine with <code class="notranslate">now dev</code> . This includes</p>
<ul dir="auto">
<li>can't load grpc</li>
<li>self register bug
<ul dir="auto">
<li>both avoided when setting grpc to external in custom webpack config as mentioned</li>
</ul>
</li>
<li>can't use latest firebase - produces <code class="notranslate">pages/about.js:29:31) code: 'MODULE_NOT_FOUND' }</code> when that page clearly exists, (downgrading to 5.11.1 "solves" this)</li>
</ul>
<p dir="auto">Seems to relate to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="466802278" data-permission-text="Title is private" data-url="https://github.com/vercel/next.js/issues/7894" data-hovercard-type="issue" data-hovercard-url="/vercel/next.js/issues/7894/hovercard" href="https://github.com/vercel/next.js/issues/7894">#7894</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="464666824" data-permission-text="Title is private" data-url="https://github.com/vercel/next.js/issues/7758" data-hovercard-type="pull_request" data-hovercard-url="/vercel/next.js/pull/7758/hovercard" href="https://github.com/vercel/next.js/pull/7758">#7758</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="420919884" data-permission-text="Title is private" data-url="https://github.com/vercel/next.js/issues/6655" data-hovercard-type="issue" data-hovercard-url="/vercel/next.js/issues/6655/hovercard" href="https://github.com/vercel/next.js/issues/6655">#6655</a></p>
<p dir="auto">Working around the above I now get the following as mentioned here <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="466802278" data-permission-text="Title is private" data-url="https://github.com/vercel/next.js/issues/7894" data-hovercard-type="issue" data-hovercard-url="/vercel/next.js/issues/7894/hovercard?comment_id=513766944&comment_type=issue_comment" href="https://github.com/vercel/next.js/issues/7894#issuecomment-513766944">#7894 (comment)</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="running "yarn run now-build"
Jul 22 2019 14:05:48:345 | ...next.config.js | yarn run v1.16.0
Jul 22 2019 14:05:48:403 | ...next.config.js | $ next build
Jul 22 2019 14:05:49:159 | ...next.config.js | Creating an optimized production build ...
Jul 22 2019 14:05:49:824 | ...next.config.js | > Using external babel configuration
Jul 22 2019 14:05:49:824 | ...next.config.js | > Location: "/tmp/bc0fa1c/babel.config.js"
Jul 22 2019 14:07:52:235 | ...next.config.js | Failed to compile.
Jul 22 2019 14:07:52:235 | ...next.config.js | ./node_modules/amp-toolbox-optimizer/lib/transformers/AddBlurryImagePlaceholders.js
Jul 22 2019 14:07:52:235 | ...next.config.js | Module not found: Can't resolve 'jimp' in '/tmp/bc0fa1c/node_modules/amp-toolbox-optimizer/lib/transformers'
Jul 22 2019 14:07:52:235 | ...next.config.js | "><pre class="notranslate"><code class="notranslate">running "yarn run now-build"
Jul 22 2019 14:05:48:345 | ...next.config.js | yarn run v1.16.0
Jul 22 2019 14:05:48:403 | ...next.config.js | $ next build
Jul 22 2019 14:05:49:159 | ...next.config.js | Creating an optimized production build ...
Jul 22 2019 14:05:49:824 | ...next.config.js | > Using external babel configuration
Jul 22 2019 14:05:49:824 | ...next.config.js | > Location: "/tmp/bc0fa1c/babel.config.js"
Jul 22 2019 14:07:52:235 | ...next.config.js | Failed to compile.
Jul 22 2019 14:07:52:235 | ...next.config.js | ./node_modules/amp-toolbox-optimizer/lib/transformers/AddBlurryImagePlaceholders.js
Jul 22 2019 14:07:52:235 | ...next.config.js | Module not found: Can't resolve 'jimp' in '/tmp/bc0fa1c/node_modules/amp-toolbox-optimizer/lib/transformers'
Jul 22 2019 14:07:52:235 | ...next.config.js |
</code></pre></div>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">Attempt to deploy nextjs v9 with firebase</p>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">Can deploy next js v9 to Now 2.0</p> | 0 |
<p dir="auto">This has happened in the last 5 html exercises.</p>
<p dir="auto">These are lines 42 to 46.</p>
<ol dir="auto">
<li>flea treatment</li>
<li>thunder</li>
<li>other cats</li>
</ol>
<p dir="auto">If I click within the last LI's text my insertion point appears within the LI tag itself. If I then press a letter key the letter will appear after the closing OL tag. After pressing backspace to delete the error the code editor behaves normally.</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">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-add-images-to-your-website" rel="nofollow">http://www.freecodecamp.com/challenges/waypoint-add-images-to-your-website</a> has an issue. Please describe how to reproduce it, and include links to screenshots if possible.<br>
When I complete the challenge it takes me to this challenge: <a href="http://www.freecodecamp.com/challenges/waypoint-manipulate-arrays-with-shift" rel="nofollow">http://www.freecodecamp.com/challenges/waypoint-manipulate-arrays-with-shift</a></p> | <p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-add-images-to-your-website" rel="nofollow">http://www.freecodecamp.com/challenges/waypoint-add-images-to-your-website</a> has an issue. When you complete it and click the button to go to the next challenge, it redirects you to: <a href="http://www.freecodecamp.com/challenges/waypoint-manipulate-arrays-with-push" rel="nofollow">http://www.freecodecamp.com/challenges/waypoint-manipulate-arrays-with-push</a></p>
<p dir="auto">Instead it should redirect you to the correct waypoint which is: <a href="http://www.freecodecamp.com/challenges/waypoint-size-your-images" rel="nofollow">http://www.freecodecamp.com/challenges/waypoint-size-your-images</a></p> | 1 |
<p dir="auto">It is very common use case when user wants to add reference of module file (external file) by dragging and dropping it to editor. But right now VScode is not supporting this feature. When user try to drag a file from the explorer window it is opening that file in the editor.</p>
<p dir="auto">In the below screen shout you can compare Visual studio and VS code action for drag and drop.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/17735796/14516513/923053d4-01b8-11e6-9359-c5a29b54f980.gif"><img src="https://cloud.githubusercontent.com/assets/17735796/14516513/923053d4-01b8-11e6-9359-c5a29b54f980.gif" alt="draganddrop" data-animated-image="" style="max-width: 100%;"></a></p> | <ul dir="auto">
<li>VSCode Version: 1.1.1</li>
<li>OS Version: Windows 10</li>
</ul>
<p dir="auto">Steps to Reproduce:</p>
<p dir="auto">if we have two or more functions with the same name, there is no syntax highlighting error !!</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/9744226/15356433/8dca48ce-1cf0-11e6-83d7-a099d7e9839f.png"><img src="https://cloud.githubusercontent.com/assets/9744226/15356433/8dca48ce-1cf0-11e6-83d7-a099d7e9839f.png" alt="sans titre" style="max-width: 100%;"></a></p>
<p dir="auto">is this feature not yet available in the language services or I miss samething here ?</p> | 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 <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.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 7 SP1 incl. latest patches</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">Calling <a href="https://www.electronjs.org/docs/api/web-contents#contentsprintoptions-callback" rel="nofollow">webContents.print()</a> with the absolute minimal set of options and an existing device as returned from <a href="https://www.electronjs.org/docs/api/web-contents#contentsgetprinters" rel="nofollow">contents.getPrinters()</a> should add the document to be printed to the printer's print queue and subsequently trigger the printing of said document.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const options = {
silent: true,
deviceName: 'My-Printer',
}
await win.webContents.print(options);
"><pre class="notranslate"><code class="notranslate">const options = {
silent: true,
deviceName: 'My-Printer',
}
await win.webContents.print(options);
</code></pre></div>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">The call to <a href="https://www.electronjs.org/docs/api/web-contents#contentsprintoptions-callback" rel="nofollow">win.webContents.print</a> just silently returns, indicating success, yet no document is ever added to the printer's print queue and no document is ever printed.</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">The printer in question is working fine with every other application, so it is definitely not a printer or driver or operating system issue.</p> | <p dir="auto">Can the documentation clearly state how to comprehensively prevent the user from accessing the dev tools.</p>
<p dir="auto">remove from top menu<br>
remove toggle code when app starts up so it's initially hidden<br>
What else must I do? Perhaps this should be in the documentation.<br>
I read in a few places about handling the --remote-debugging-port command line argument. I read that if it exists, the app should just immediately exit.</p>
<p dir="auto">There might be some other ways that the user can access it. What are they? It would be great if the documentation stated it for security reasons.</p> | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.