text1
stringlengths 0
536k
| text2
stringlengths 0
536k
| label
int64 0
1
|
---|---|---|
<h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 10.0.18956.1000
Windows Terminal version (if applicable): 0.3.2171.0
Any other software? No other software relevant I believe"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: 10.0.18956.1000
Windows Terminal version (if applicable): 0.3.2171.0
Any other software? No other software relevant I believe
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<ol dir="auto">
<li>Configure a custom <code class="notranslate">tabTitle</code> for cmd or PowerShell shells in the profiles.json file, e.g.:</li>
</ol>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[...]
"tabTitle" : "Windows PowerShell",
[...]"><pre class="notranslate"><code class="notranslate">[...]
"tabTitle" : "Windows PowerShell",
[...]
</code></pre></div>
<ol start="2" dir="auto">
<li>Open a cmd or PowerShell tab, verify the customized <code class="notranslate">tabTitle</code> is appearing.</li>
<li>Try to set a custom title programmatically from within the shell, e.g. in PowerShell:</li>
</ol>
<div class="highlight highlight-source-powershell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$Host.UI.RawUI.WindowTitle = 'Custom Title :)'
# OR
[Console]::Title = 'Custom Title 2 :)'"><pre class="notranslate"><span class="pl-c1">$Host<span class="pl-smi">.UI.RawUI.WindowTitle</span></span> <span class="pl-k">=</span> <span class="pl-s"><span class="pl-pds">'</span>Custom Title :)<span class="pl-pds">'</span></span>
<span class="pl-c"><span class="pl-c">#</span> OR</span>
[<span class="pl-k">Console</span>]::Title <span class="pl-k">=</span> <span class="pl-s"><span class="pl-pds">'</span>Custom Title 2 :)<span class="pl-pds">'</span></span></pre></div>
<p dir="auto">or in command prompt:</p>
<div class="highlight highlight-source-batchfile notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="TITLE Custom Title :)"><pre class="notranslate"><span class="pl-k">TITLE</span> Custom <span class="pl-k">Title</span> :)</pre></div>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">We should be able to programmatically overwrite the customized <code class="notranslate">tabTitle</code> set in the profiles.json file - programmatically setting the tab title DOES work when no custom <code class="notranslate">tabTitle</code> is specified in profiles.json.</p>
<p dir="auto">I believe the order of precedence should be, from lowest to highest:</p>
<ol dir="auto">
<li>Default title / executable path</li>
<li>Gets overwritten by <code class="notranslate">tabTitle</code> property in profiles.json</li>
<li>Gets overwritten by scripts or programs setting their own titles</li>
</ol>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">When a customized <code class="notranslate">tabTitle</code> is specified, it cannot be overwriten or changed from within the shell.</p> | <h1 dir="auto">Description of the new feature/enhancement</h1>
<p dir="auto">Available to download outside of Microsoft Store</p>
<h1 dir="auto">Proposed technical implementation details (optional)</h1>
<p dir="auto">Company policy blocked access to Microsoft Store and therefore there is no way to download it.</p>
<p dir="auto">An alternative way to download the windows terminal</p> | 0 |
<h3 dir="auto">Describe the issue:</h3>
<p dir="auto">According to the <a href="https://numpy.org/doc/stable/reference/arrays.scalars.html#numpy.cdouble" rel="nofollow">documentation</a> I should be able to create a complex number with <code class="notranslate">numpy.cdouble(real=1.0, imag=2.0)</code> but this returns</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TypeError: function takes at most 1 argument (2 given)"><pre class="notranslate"><code class="notranslate">TypeError: function takes at most 1 argument (2 given)
</code></pre></div>
<p dir="auto">Same applies to <code class="notranslate">complex_</code> and <code class="notranslate">complex128</code>, since they are all the same as far as I understand.<br>
Not sure if this is a bug in the code or an outdated section in the documentation.<br>
I tested this with Numpy 1.22.3 compiled from source and with Numpy 1.22.4 installed from PyPi, both on Windows 10.</p>
<h3 dir="auto">Reproduce the code example:</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy
numpy.cdouble(real=1.0, imag=2.0)"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span>
<span class="pl-s1">numpy</span>.<span class="pl-en">cdouble</span>(<span class="pl-s1">real</span><span class="pl-c1">=</span><span class="pl-c1">1.0</span>, <span class="pl-s1">imag</span><span class="pl-c1">=</span><span class="pl-c1">2.0</span>)</pre></div>
<h3 dir="auto">Error message:</h3>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="TypeError: function takes at most 1 argument (2 given)"><pre class="notranslate">TypeError: <span class="pl-k">function</span> <span class="pl-en">takes</span> at most 1 argument (2 given)</pre></div>
<h3 dir="auto">NumPy/Python version information:</h3>
<p dir="auto"><code class="notranslate">1.22.3 3.8.12 (default, May 19 2022, 11:54:29) [MSC v.1929 64 bit (AMD64)]</code></p> | <h3 dir="auto">Describe the issue:</h3>
<p dir="auto">The resulting order of np.argsort appears to be incorrect and does not match with the order returned by x[argsort_idx].</p>
<p dir="auto">Specifically, when sorting in descending order, the highlighted number should be in position 11, not 9.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/4619414/145800130-2a1be2f3-7bff-4dea-8b2e-7ea3b2e265ba.png"><img src="https://user-images.githubusercontent.com/4619414/145800130-2a1be2f3-7bff-4dea-8b2e-7ea3b2e265ba.png" alt="Screenshot 2021-12-13 at 10 49 06" style="max-width: 100%;"></a></p>
<p dir="auto">Strangely enough, this results in the correct ordering of the values:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/4619414/145800374-87243c1b-3cfa-40ad-b696-79d43d952e85.png"><img src="https://user-images.githubusercontent.com/4619414/145800374-87243c1b-3cfa-40ad-b696-79d43d952e85.png" alt="Screenshot 2021-12-13 at 11 15 27" style="max-width: 100%;"></a></p>
<p dir="auto">Not entirely sure what can be going on here. Thanks!</p>
<h3 dir="auto">Reproduce the code example:</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np
x = np.array([ 26.929932 , 17.864126 , 5.439558 , -0.10773016,
-9.52839 , -7.620389 , -11.919527 , -15.451256 ,
-16.36096 , -18.313873 , -19.791018 , -18.288052 ,
-21.068373 , -24.030613 , -23.9124 , -25.630302 ,
-29.34889 , -29.329416 , -29.221819 , -26.609049 ,
-29.375376 , -28.213442 , -28.636854 , -28.140215 ,
-27.100985 ])
# Returns incorrect order of indices
list(zip(x, np.argsort(-1*x)))
# Returns correct order of list
x[np.argsort(-1*x)]"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">array</span>([ <span class="pl-c1">26.929932</span> , <span class="pl-c1">17.864126</span> , <span class="pl-c1">5.439558</span> , <span class="pl-c1">-</span><span class="pl-c1">0.10773016</span>,
<span class="pl-c1">-</span><span class="pl-c1">9.52839</span> , <span class="pl-c1">-</span><span class="pl-c1">7.620389</span> , <span class="pl-c1">-</span><span class="pl-c1">11.919527</span> , <span class="pl-c1">-</span><span class="pl-c1">15.451256</span> ,
<span class="pl-c1">-</span><span class="pl-c1">16.36096</span> , <span class="pl-c1">-</span><span class="pl-c1">18.313873</span> , <span class="pl-c1">-</span><span class="pl-c1">19.791018</span> , <span class="pl-c1">-</span><span class="pl-c1">18.288052</span> ,
<span class="pl-c1">-</span><span class="pl-c1">21.068373</span> , <span class="pl-c1">-</span><span class="pl-c1">24.030613</span> , <span class="pl-c1">-</span><span class="pl-c1">23.9124</span> , <span class="pl-c1">-</span><span class="pl-c1">25.630302</span> ,
<span class="pl-c1">-</span><span class="pl-c1">29.34889</span> , <span class="pl-c1">-</span><span class="pl-c1">29.329416</span> , <span class="pl-c1">-</span><span class="pl-c1">29.221819</span> , <span class="pl-c1">-</span><span class="pl-c1">26.609049</span> ,
<span class="pl-c1">-</span><span class="pl-c1">29.375376</span> , <span class="pl-c1">-</span><span class="pl-c1">28.213442</span> , <span class="pl-c1">-</span><span class="pl-c1">28.636854</span> , <span class="pl-c1">-</span><span class="pl-c1">28.140215</span> ,
<span class="pl-c1">-</span><span class="pl-c1">27.100985</span> ])
<span class="pl-c"># Returns incorrect order of indices</span>
<span class="pl-en">list</span>(<span class="pl-en">zip</span>(<span class="pl-s1">x</span>, <span class="pl-s1">np</span>.<span class="pl-en">argsort</span>(<span class="pl-c1">-</span><span class="pl-c1">1</span><span class="pl-c1">*</span><span class="pl-s1">x</span>)))
<span class="pl-c"># Returns correct order of list</span>
<span class="pl-s1">x</span>[<span class="pl-s1">np</span>.<span class="pl-en">argsort</span>(<span class="pl-c1">-</span><span class="pl-c1">1</span><span class="pl-c1">*</span><span class="pl-s1">x</span>)]</pre></div>
<h3 dir="auto">Error message:</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">NumPy/Python version information:</h3>
<p dir="auto">numpy 1.18.1<br>
python 3.7.10</p> | 0 |
<p dir="auto">My python flask :</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="@app.route('/insert/item', methods=['POST'])
def insert_item():
return """><pre class="notranslate"><code class="notranslate">@app.route('/insert/item', methods=['POST'])
def insert_item():
return ""
</code></pre></div>
<p dir="auto">In html I try to post a request to /insert/item :</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="fetch('/insert/item', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({"item":"ABCD"}),
})"><pre class="notranslate"><code class="notranslate">fetch('/insert/item', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({"item":"ABCD"}),
})
</code></pre></div>
<p dir="auto">My flask only response to the fetch the first time.<br>
It wont response afterward.</p>
<p dir="auto">I have to add request_json = request.get_json() in the flask app to solve the issue</p> | <p dir="auto">With the following example:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from flask import Flask
app = Flask(__name__)
@app.route('/', methods=['POST'])
def hello_world():
return 'Hello World!'
if __name__ == '__main__':
app.run()"><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-s1">app</span> <span class="pl-c1">=</span> <span class="pl-v">Flask</span>(<span class="pl-s1">__name__</span>)
<span class="pl-en">@<span class="pl-s1">app</span>.<span class="pl-en">route</span>(<span class="pl-s">'/'</span>, <span class="pl-s1">methods</span><span class="pl-c1">=</span>[<span class="pl-s">'POST'</span>])</span>
<span class="pl-k">def</span> <span class="pl-en">hello_world</span>():
<span class="pl-k">return</span> <span class="pl-s">'Hello World!'</span>
<span class="pl-k">if</span> <span class="pl-s1">__name__</span> <span class="pl-c1">==</span> <span class="pl-s">'__main__'</span>:
<span class="pl-s1">app</span>.<span class="pl-en">run</span>()</pre></div>
<p dir="auto">When you set the request body to <code class="notranslate">{}</code> with Postman or any HTTP clients, the first request will return 200, while the second request will return a 405 error response. The log shows the request method is <code class="notranslate">{}POST</code>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""{}POST / HTTP/1.1" 405"><pre class="notranslate"><code class="notranslate">"{}POST / HTTP/1.1" 405
</code></pre></div>
<p dir="auto">Notice the request body became the part of the request method.</p> | 1 |
<h5 dir="auto">Issue Type:</h5>
<p dir="auto">Bug Report</p>
<h5 dir="auto">Ansible Version:</h5>
<p dir="auto">Ansible >= 1.8.0</p>
<h5 dir="auto">Environment:</h5>
<p dir="auto">N/A</p>
<h5 dir="auto">Summary:</h5>
<p dir="auto">Ever since <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/ansible/ansible/commit/313f26f866cec92e4dbe0e1d713a0ab0da647c98/hovercard" href="https://github.com/ansible/ansible/commit/313f26f866cec92e4dbe0e1d713a0ab0da647c98"><tt>313f26f</tt></a>, if a variable is set in <code class="notranslate">group_vars</code> and overridden via <code class="notranslate">--extra-vars</code>, the value from <code class="notranslate">group_vars</code> ends up being used when the variable is referenced in role variables.</p>
<h5 dir="auto">Steps To Reproduce:</h5>
<p dir="auto">group_vars/all:</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="some_var: val1"><pre class="notranslate"><span class="pl-ent">some_var</span>: <span class="pl-s">val1</span></pre></div>
<p dir="auto">roles/test-role/vars/main.yml:</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="derived_var: "{{ some_var }}""><pre class="notranslate"><span class="pl-ent">derived_var</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ some_var }}<span class="pl-pds">"</span></span></pre></div>
<p dir="auto">roles/test-role/tasks/main.yml:</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
---
- action: debug var=derived_var"><pre class="notranslate">---
- <span class="pl-ent">action</span>: <span class="pl-s">debug var=derived_var</span></pre></div>
<p dir="auto">main.yml:</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
---
- hosts: all
roles: [test-role]"><pre class="notranslate">---
- <span class="pl-ent">hosts</span>: <span class="pl-s">all</span>
<span class="pl-ent">roles</span>: <span class="pl-s">[test-role]</span></pre></div>
<p dir="auto">Then call <code class="notranslate">ansible-playbook -e some_var=val2 main.yml</code>.</p>
<h5 dir="auto">Expected Results:</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ok: [localhost] => {
"var": {
"derived_var": "val2"
}
}"><pre class="notranslate"><code class="notranslate">ok: [localhost] => {
"var": {
"derived_var": "val2"
}
}
</code></pre></div>
<h5 dir="auto">Actual Results:</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ok: [localhost] => {
"var": {
"derived_var": "val1"
}
}"><pre class="notranslate"><code class="notranslate">ok: [localhost] => {
"var": {
"derived_var": "val1"
}
}
</code></pre></div> | <p dir="auto">If I set a variable in a role which refers to another variable, then override the second variable with <code class="notranslate">--extra-vars</code> the original variable is unchanged.</p>
<p dir="auto">Here's an example:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="cat <<'EOF' > playbook
---
- hosts: 127.0.0.1
connection: local
gather_facts: false
roles:
- x
EOF
mkdir -p roles/x/{vars,tasks}
cat <<'EOF' > roles/x/vars/main.yml
---
var: 1
var2: "This is {{var}}"
EOF
cat <<'EOF' > roles/x/tasks/main.yml
---
- debug: var=var
- debug: var=var2
EOF
ansible-playbook playbook -e var=2"><pre class="notranslate"><code class="notranslate">cat <<'EOF' > playbook
---
- hosts: 127.0.0.1
connection: local
gather_facts: false
roles:
- x
EOF
mkdir -p roles/x/{vars,tasks}
cat <<'EOF' > roles/x/vars/main.yml
---
var: 1
var2: "This is {{var}}"
EOF
cat <<'EOF' > roles/x/tasks/main.yml
---
- debug: var=var
- debug: var=var2
EOF
ansible-playbook playbook -e var=2
</code></pre></div>
<p dir="auto">Expected output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="PLAY [127.0.0.1] **************************************************************
TASK: [x | debug var=var] *****************************************************
ok: [127.0.0.1] => {
"var": "2"
}
TASK: [x | debug var=var2] ****************************************************
ok: [127.0.0.1] => {
"var2": "This is 2"
}
PLAY RECAP ********************************************************************
127.0.0.1 : ok=2 changed=0 unreachable=0 failed=0 "><pre class="notranslate"><code class="notranslate">PLAY [127.0.0.1] **************************************************************
TASK: [x | debug var=var] *****************************************************
ok: [127.0.0.1] => {
"var": "2"
}
TASK: [x | debug var=var2] ****************************************************
ok: [127.0.0.1] => {
"var2": "This is 2"
}
PLAY RECAP ********************************************************************
127.0.0.1 : ok=2 changed=0 unreachable=0 failed=0
</code></pre></div>
<p dir="auto">Actual output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="PLAY [127.0.0.1] **************************************************************
TASK: [x | debug var=var] *****************************************************
ok: [127.0.0.1] => {
"var": "2"
}
TASK: [x | debug var=var2] ****************************************************
ok: [127.0.0.1] => {
"var2": "This is 1"
}
PLAY RECAP ********************************************************************
127.0.0.1 : ok=2 changed=0 unreachable=0 failed=0 "><pre class="notranslate"><code class="notranslate">PLAY [127.0.0.1] **************************************************************
TASK: [x | debug var=var] *****************************************************
ok: [127.0.0.1] => {
"var": "2"
}
TASK: [x | debug var=var2] ****************************************************
ok: [127.0.0.1] => {
"var2": "This is 1"
}
PLAY RECAP ********************************************************************
127.0.0.1 : ok=2 changed=0 unreachable=0 failed=0
</code></pre></div>
<p dir="auto">I am running ansible 1.8.2 from EPEL (ansible-1.8.2-3.el6.noarch).</p> | 1 |
<p dir="auto"><strong>TypeScript Version:</strong></p>
<p dir="auto">1.7.5</p>
<p dir="auto"><strong>Code</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import {HTTP_PROVIDERS} from 'angular2/http'; // <-- one quotes !
import {Component} from "angular2/core";
import {Http} from "angular2/http"; // <-- two quotes !
@Component({
templateUrl: 'tst.html',
viewProviders: [HTTP_PROVIDERS]
})
export class tst {
constructor(private http1:Http) {
http1.get('tst');
}
}"><pre class="notranslate"><code class="notranslate">import {HTTP_PROVIDERS} from 'angular2/http'; // <-- one quotes !
import {Component} from "angular2/core";
import {Http} from "angular2/http"; // <-- two quotes !
@Component({
templateUrl: 'tst.html',
viewProviders: [HTTP_PROVIDERS]
})
export class tst {
constructor(private http1:Http) {
http1.get('tst');
}
}
</code></pre></div>
<p dir="auto"><strong>Expected behavior:</strong><br>
After compilation (js file):<br>
System.register(['angular2/http', "angular2/core"] ...</p>
<p dir="auto"><strong>Actual behavior:</strong><br>
After compilation (js file):<br>
System.register(['angular2/http', "angular2/core", "angular2/http"] ...</p>
<p dir="auto">I have a many problems with this bug<br>
bug example (with demo): <a href="http://stackoverflow.com/q/36134033/2051938" rel="nofollow">http://stackoverflow.com/q/36134033/2051938</a></p> | <p dir="auto">Using Angular2-beta0</p>
<p dir="auto">So I have this TS file</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { Component, View } from 'angular2/core';
import { Router } from 'angular2/router';
import {AuthCanActivate} from "../../common/auth/auth.canactivate";
import {ComponentInstruction} from "angular2/router";
import {CanActivate} from "angular2/router";
import {Http} from "angular2/http";
import {API_URL} from "../../common/core/constants";
import {Inject} from "angular2/core";
import {Response} from "angular2/http";
import {Observable} from "rxjs/Observable";
@Component({
selector: 'dashboard',
})
@CanActivate((to: ComponentInstruction, from: ComponentInstruction) => {
return true;
})
@View({
templateUrl: './features/dashboard/dashboard.component.html',
styleUrls: ['./features/dashboard/dashboard.component.css' ]
})
export class DashboardComponent
{
constructor(public router: Router, @Inject(API_URL) public apiUrl: string)
{
}
}"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-smi">Component</span><span class="pl-kos">,</span> <span class="pl-smi">View</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'angular2/core'</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-smi">Router</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'angular2/router'</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">AuthCanActivate</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"../../common/auth/auth.canactivate"</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">ComponentInstruction</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"angular2/router"</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">CanActivate</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"angular2/router"</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">Http</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"angular2/http"</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">API_URL</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"../../common/core/constants"</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">Inject</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"angular2/core"</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">Response</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"angular2/http"</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">Observable</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"rxjs/Observable"</span><span class="pl-kos">;</span>
@<span class="pl-smi">Component</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">selector</span>: <span class="pl-s">'dashboard'</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
@<span class="pl-smi">CanActivate</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">to</span>: <span class="pl-smi">ComponentInstruction</span><span class="pl-kos">,</span> <span class="pl-s1">from</span>: <span class="pl-smi">ComponentInstruction</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">return</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-smi">View</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">templateUrl</span>: <span class="pl-s">'./features/dashboard/dashboard.component.html'</span><span class="pl-kos">,</span>
<span class="pl-c1">styleUrls</span>: <span class="pl-kos">[</span><span class="pl-s">'./features/dashboard/dashboard.component.css'</span> <span class="pl-kos">]</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-k">export</span> <span class="pl-k">class</span> <span class="pl-smi">DashboardComponent</span>
<span class="pl-kos">{</span>
<span class="pl-en">constructor</span><span class="pl-kos">(</span><span class="pl-k">public</span> <span class="pl-s1">router</span>: <span class="pl-smi">Router</span><span class="pl-kos">,</span> @<span class="pl-smi">Inject</span><span class="pl-kos">(</span><span class="pl-smi">API_URL</span><span class="pl-kos">)</span> <span class="pl-k">public</span> <span class="pl-s1">apiUrl</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-kos">}</span></pre></div>
<p dir="auto">which transpile to</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="(function(System) {System.register(['angular2/core', 'angular2/router', "angular2/router", "../../common/core/constants", "angular2/core"], function(exports_1) {
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
var __param = (this && this.__param) || function (paramIndex, decorator) {
return function (target, key) { decorator(target, key, paramIndex); }
};
var core_1, router_1, router_2, constants_1, core_2;
var DashboardComponent;
return {
setters:[
function (core_1_1) {
core_1 = core_1_1;
},
function (router_1_1) {
router_1 = router_1_1;
},
function (router_2_1) {
router_2 = router_2_1;
},
function (constants_1_1) {
constants_1 = constants_1_1;
},
function (core_2_1) {
core_2 = core_2_1;
}],
execute: function() {
DashboardComponent = (function () {
function DashboardComponent(router, apiUrl) {
this.router = router;
this.apiUrl = apiUrl;
}
DashboardComponent = __decorate([
core_1.Component({
selector: 'dashboard',
}),
router_2.CanActivate(function (to, from) {
return true;
}),
core_1.View({
templateUrl: './features/dashboard/dashboard.component.html',
styleUrls: ['./features/dashboard/dashboard.component.css']
}),
__param(1, core_2.Inject(constants_1.API_URL)),
__metadata('design:paramtypes', [router_1.Router, String])
], DashboardComponent);
return DashboardComponent;
})();
exports_1("DashboardComponent", DashboardComponent);
}
}
});
})(System);"><pre class="notranslate"><span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-v">System</span><span class="pl-kos">)</span> <span class="pl-kos">{</span><span class="pl-v">System</span><span class="pl-kos">.</span><span class="pl-en">register</span><span class="pl-kos">(</span><span class="pl-kos">[</span><span class="pl-s">'angular2/core'</span><span class="pl-kos">,</span> <span class="pl-s">'angular2/router'</span><span class="pl-kos">,</span> <span class="pl-s">"angular2/router"</span><span class="pl-kos">,</span> <span class="pl-s">"../../common/core/constants"</span><span class="pl-kos">,</span> <span class="pl-s">"angular2/core"</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">exports_1</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">__decorate</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-smi">this</span> <span class="pl-c1">&&</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">__decorate</span><span class="pl-kos">)</span> <span class="pl-c1">||</span> <span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">decorators</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-s1">desc</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">c</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">r</span> <span class="pl-c1">=</span> <span class="pl-s1">c</span> <span class="pl-c1"><</span> <span class="pl-c1">3</span> ? <span class="pl-s1">target</span> : <span class="pl-s1">desc</span> <span class="pl-c1">===</span> <span class="pl-c1">null</span> ? <span class="pl-s1">desc</span> <span class="pl-c1">=</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">getOwnPropertyDescriptor</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-s1">desc</span><span class="pl-kos">,</span> <span class="pl-s1">d</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-v">Reflect</span> <span class="pl-c1">===</span> <span class="pl-s">"object"</span> <span class="pl-c1">&&</span> <span class="pl-k">typeof</span> <span class="pl-v">Reflect</span><span class="pl-kos">.</span><span class="pl-c1">decorate</span> <span class="pl-c1">===</span> <span class="pl-s">"function"</span><span class="pl-kos">)</span> <span class="pl-s1">r</span> <span class="pl-c1">=</span> <span class="pl-v">Reflect</span><span class="pl-kos">.</span><span class="pl-en">decorate</span><span class="pl-kos">(</span><span class="pl-s1">decorators</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-s1">desc</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">else</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-s1">decorators</span><span class="pl-kos">.</span><span class="pl-c1">length</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-c1">0</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-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">d</span> <span class="pl-c1">=</span> <span class="pl-s1">decorators</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-s1">r</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-s1">c</span> <span class="pl-c1"><</span> <span class="pl-c1">3</span> ? <span class="pl-s1">d</span><span class="pl-kos">(</span><span class="pl-s1">r</span><span class="pl-kos">)</span> : <span class="pl-s1">c</span> <span class="pl-c1">></span> <span class="pl-c1">3</span> ? <span class="pl-s1">d</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-s1">r</span><span class="pl-kos">)</span> : <span class="pl-s1">d</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-kos">)</span> <span class="pl-c1">||</span> <span class="pl-s1">r</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-s1">c</span> <span class="pl-c1">></span> <span class="pl-c1">3</span> <span class="pl-c1">&&</span> <span class="pl-s1">r</span> <span class="pl-c1">&&</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">defineProperty</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-s1">r</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-s1">r</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">__metadata</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-smi">this</span> <span class="pl-c1">&&</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">__metadata</span><span class="pl-kos">)</span> <span class="pl-c1">||</span> <span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">k</span><span class="pl-kos">,</span> <span class="pl-s1">v</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-k">typeof</span> <span class="pl-v">Reflect</span> <span class="pl-c1">===</span> <span class="pl-s">"object"</span> <span class="pl-c1">&&</span> <span class="pl-k">typeof</span> <span class="pl-v">Reflect</span><span class="pl-kos">.</span><span class="pl-c1">metadata</span> <span class="pl-c1">===</span> <span class="pl-s">"function"</span><span class="pl-kos">)</span> <span class="pl-k">return</span> <span class="pl-v">Reflect</span><span class="pl-kos">.</span><span class="pl-en">metadata</span><span class="pl-kos">(</span><span class="pl-s1">k</span><span class="pl-kos">,</span> <span class="pl-s1">v</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">__param</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-smi">this</span> <span class="pl-c1">&&</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">__param</span><span class="pl-kos">)</span> <span class="pl-c1">||</span> <span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">paramIndex</span><span class="pl-kos">,</span> <span class="pl-s1">decorator</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</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-s1">key</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-s1">decorator</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-s1">paramIndex</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">core_1</span><span class="pl-kos">,</span> <span class="pl-s1">router_1</span><span class="pl-kos">,</span> <span class="pl-s1">router_2</span><span class="pl-kos">,</span> <span class="pl-s1">constants_1</span><span class="pl-kos">,</span> <span class="pl-s1">core_2</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-v">DashboardComponent</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-kos">{</span>
<span class="pl-c1">setters</span>:<span class="pl-kos">[</span>
<span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">core_1_1</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">core_1</span> <span class="pl-c1">=</span> <span class="pl-s1">core_1_1</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">router_1_1</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">router_1</span> <span class="pl-c1">=</span> <span class="pl-s1">router_1_1</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">router_2_1</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">router_2</span> <span class="pl-c1">=</span> <span class="pl-s1">router_2_1</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">constants_1_1</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">constants_1</span> <span class="pl-c1">=</span> <span class="pl-s1">constants_1_1</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">core_2_1</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">core_2</span> <span class="pl-c1">=</span> <span class="pl-s1">core_2_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-en">execute</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-v">DashboardComponent</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">function</span> <span class="pl-v">DashboardComponent</span><span class="pl-kos">(</span><span class="pl-s1">router</span><span class="pl-kos">,</span> <span class="pl-s1">apiUrl</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">router</span> <span class="pl-c1">=</span> <span class="pl-s1">router</span><span class="pl-kos">;</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">apiUrl</span> <span class="pl-c1">=</span> <span class="pl-s1">apiUrl</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-v">DashboardComponent</span> <span class="pl-c1">=</span> <span class="pl-s1">__decorate</span><span class="pl-kos">(</span><span class="pl-kos">[</span>
<span class="pl-s1">core_1</span><span class="pl-kos">.</span><span class="pl-en">Component</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">selector</span>: <span class="pl-s">'dashboard'</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">router_2</span><span class="pl-kos">.</span><span class="pl-en">CanActivate</span><span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">to</span><span class="pl-kos">,</span> <span class="pl-s1">from</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-c1">true</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-s1">core_1</span><span class="pl-kos">.</span><span class="pl-en">View</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">templateUrl</span>: <span class="pl-s">'./features/dashboard/dashboard.component.html'</span><span class="pl-kos">,</span>
<span class="pl-c1">styleUrls</span>: <span class="pl-kos">[</span><span class="pl-s">'./features/dashboard/dashboard.component.css'</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">__param</span><span class="pl-kos">(</span><span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-s1">core_2</span><span class="pl-kos">.</span><span class="pl-en">Inject</span><span class="pl-kos">(</span><span class="pl-s1">constants_1</span><span class="pl-kos">.</span><span class="pl-c1">API_URL</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-s1">__metadata</span><span class="pl-kos">(</span><span class="pl-s">'design:paramtypes'</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s1">router_1</span><span class="pl-kos">.</span><span class="pl-c1">Router</span><span class="pl-kos">,</span> <span class="pl-v">String</span><span class="pl-kos">]</span><span class="pl-kos">)</span>
<span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-v">DashboardComponent</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-v">DashboardComponent</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-s1">exports_1</span><span class="pl-kos">(</span><span class="pl-s">"DashboardComponent"</span><span class="pl-kos">,</span> <span class="pl-v">DashboardComponent</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-v">System</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">giving me an error router_2.CanActivate is not a function. Debugging and checking router_2, I actually have the API_URL token... O_o which is an OpaqueToken</p>
<p dir="auto">whereas if I have this TS file</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { Component, Inject, View } from 'angular2/core';
import { CanActivate, ComponentInstruction, Router } from 'angular2/router';
import {AuthCanActivate} from "../../common/auth/auth.canactivate";
import {Http, Response} from "angular2/http";
import {API_URL} from "../../common/core/constants";
import {Observable} from "rxjs/Observable";
@Component({
selector: 'dashboard',
})
@CanActivate((to: ComponentInstruction, from: ComponentInstruction) => {
return true;
})
@View({
templateUrl: './features/dashboard/dashboard.component.html',
styleUrls: ['./features/dashboard/dashboard.component.css' ]
})
export class DashboardComponent
{
constructor(public router: Router, @Inject(API_URL) public apiUrl: string)
{
}
}"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-smi">Component</span><span class="pl-kos">,</span> <span class="pl-smi">Inject</span><span class="pl-kos">,</span> <span class="pl-smi">View</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'angular2/core'</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-smi">CanActivate</span><span class="pl-kos">,</span> <span class="pl-smi">ComponentInstruction</span><span class="pl-kos">,</span> <span class="pl-smi">Router</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'angular2/router'</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">AuthCanActivate</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"../../common/auth/auth.canactivate"</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">Http</span><span class="pl-kos">,</span> <span class="pl-smi">Response</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"angular2/http"</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">API_URL</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"../../common/core/constants"</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">Observable</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"rxjs/Observable"</span><span class="pl-kos">;</span>
@<span class="pl-smi">Component</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">selector</span>: <span class="pl-s">'dashboard'</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
@<span class="pl-smi">CanActivate</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">to</span>: <span class="pl-smi">ComponentInstruction</span><span class="pl-kos">,</span> <span class="pl-s1">from</span>: <span class="pl-smi">ComponentInstruction</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">return</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-smi">View</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">templateUrl</span>: <span class="pl-s">'./features/dashboard/dashboard.component.html'</span><span class="pl-kos">,</span>
<span class="pl-c1">styleUrls</span>: <span class="pl-kos">[</span><span class="pl-s">'./features/dashboard/dashboard.component.css'</span> <span class="pl-kos">]</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-k">export</span> <span class="pl-k">class</span> <span class="pl-smi">DashboardComponent</span>
<span class="pl-kos">{</span>
<span class="pl-en">constructor</span><span class="pl-kos">(</span><span class="pl-k">public</span> <span class="pl-s1">router</span>: <span class="pl-smi">Router</span><span class="pl-kos">,</span> @<span class="pl-smi">Inject</span><span class="pl-kos">(</span><span class="pl-smi">API_URL</span><span class="pl-kos">)</span> <span class="pl-k">public</span> <span class="pl-s1">apiUrl</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-kos">}</span></pre></div>
<p dir="auto">it transpile to</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="(function(System) {
System.register(['angular2/core', 'angular2/router', "../../common/core/constants"], function(exports_1) {
var __decorate = (this && this.__decorate) || function(decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
r = Reflect.decorate(decorators, target, key, desc);
else
for (var i = decorators.length - 1; i >= 0; i--)
if (d = decorators[i])
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r),
r;
}
;
var __metadata = (this && this.__metadata) || function(k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
return Reflect.metadata(k, v);
}
;
var __param = (this && this.__param) || function(paramIndex, decorator) {
return function(target, key) {
decorator(target, key, paramIndex);
}
}
;
var core_1, router_1, constants_1;
var DashboardComponent;
return {
setters: [
function(core_1_1) {
core_1 = core_1_1;
}
,
function(router_1_1) {
router_1 = router_1_1;
}
,
function(constants_1_1) {
constants_1 = constants_1_1;
}
],
execute: function() {
DashboardComponent = (function() {
function DashboardComponent(router, apiUrl) {
this.router = router;
this.apiUrl = apiUrl;
}
DashboardComponent = __decorate([
core_1.Component({
selector: 'dashboard',
}),
router_1.CanActivate(function(to, from) {
return true;
}),
core_1.View({
templateUrl: './features/dashboard/dashboard.component.html',
styleUrls: ['./features/dashboard/dashboard.component.css']
}),
__param(1, core_1.Inject(constants_1.API_URL)),
__metadata('design:paramtypes', [router_1.Router, String])
], DashboardComponent);
return DashboardComponent;
})();
exports_1("DashboardComponent", DashboardComponent);
}
}
});
})(System);"><pre class="notranslate"><span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-v">System</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-v">System</span><span class="pl-kos">.</span><span class="pl-en">register</span><span class="pl-kos">(</span><span class="pl-kos">[</span><span class="pl-s">'angular2/core'</span><span class="pl-kos">,</span> <span class="pl-s">'angular2/router'</span><span class="pl-kos">,</span> <span class="pl-s">"../../common/core/constants"</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">exports_1</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">__decorate</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-smi">this</span> <span class="pl-c1">&&</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">__decorate</span><span class="pl-kos">)</span> <span class="pl-c1">||</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">decorators</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-s1">desc</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">c</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">r</span> <span class="pl-c1">=</span> <span class="pl-s1">c</span> <span class="pl-c1"><</span> <span class="pl-c1">3</span> ? <span class="pl-s1">target</span> : <span class="pl-s1">desc</span> <span class="pl-c1">===</span> <span class="pl-c1">null</span> ? <span class="pl-s1">desc</span> <span class="pl-c1">=</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">getOwnPropertyDescriptor</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-s1">desc</span><span class="pl-kos">,</span> <span class="pl-s1">d</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-v">Reflect</span> <span class="pl-c1">===</span> <span class="pl-s">"object"</span> <span class="pl-c1">&&</span> <span class="pl-k">typeof</span> <span class="pl-v">Reflect</span><span class="pl-kos">.</span><span class="pl-c1">decorate</span> <span class="pl-c1">===</span> <span class="pl-s">"function"</span><span class="pl-kos">)</span>
<span class="pl-s1">r</span> <span class="pl-c1">=</span> <span class="pl-v">Reflect</span><span class="pl-kos">.</span><span class="pl-en">decorate</span><span class="pl-kos">(</span><span class="pl-s1">decorators</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-s1">desc</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">else</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-s1">decorators</span><span class="pl-kos">.</span><span class="pl-c1">length</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-c1">0</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-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">d</span> <span class="pl-c1">=</span> <span class="pl-s1">decorators</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-s1">r</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-s1">c</span> <span class="pl-c1"><</span> <span class="pl-c1">3</span> ? <span class="pl-s1">d</span><span class="pl-kos">(</span><span class="pl-s1">r</span><span class="pl-kos">)</span> : <span class="pl-s1">c</span> <span class="pl-c1">></span> <span class="pl-c1">3</span> ? <span class="pl-s1">d</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-s1">r</span><span class="pl-kos">)</span> : <span class="pl-s1">d</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-kos">)</span> <span class="pl-c1">||</span> <span class="pl-s1">r</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-s1">c</span> <span class="pl-c1">></span> <span class="pl-c1">3</span> <span class="pl-c1">&&</span> <span class="pl-s1">r</span> <span class="pl-c1">&&</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">defineProperty</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-s1">r</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-s1">r</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">__metadata</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-smi">this</span> <span class="pl-c1">&&</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">__metadata</span><span class="pl-kos">)</span> <span class="pl-c1">||</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">k</span><span class="pl-kos">,</span> <span class="pl-s1">v</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-k">typeof</span> <span class="pl-v">Reflect</span> <span class="pl-c1">===</span> <span class="pl-s">"object"</span> <span class="pl-c1">&&</span> <span class="pl-k">typeof</span> <span class="pl-v">Reflect</span><span class="pl-kos">.</span><span class="pl-c1">metadata</span> <span class="pl-c1">===</span> <span class="pl-s">"function"</span><span class="pl-kos">)</span>
<span class="pl-k">return</span> <span class="pl-v">Reflect</span><span class="pl-kos">.</span><span class="pl-en">metadata</span><span class="pl-kos">(</span><span class="pl-s1">k</span><span class="pl-kos">,</span> <span class="pl-s1">v</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">__param</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-smi">this</span> <span class="pl-c1">&&</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">__param</span><span class="pl-kos">)</span> <span class="pl-c1">||</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">paramIndex</span><span class="pl-kos">,</span> <span class="pl-s1">decorator</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</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-s1">key</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">decorator</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-s1">paramIndex</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">core_1</span><span class="pl-kos">,</span> <span class="pl-s1">router_1</span><span class="pl-kos">,</span> <span class="pl-s1">constants_1</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-v">DashboardComponent</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-kos">{</span>
<span class="pl-c1">setters</span>: <span class="pl-kos">[</span>
<span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">core_1_1</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">core_1</span> <span class="pl-c1">=</span> <span class="pl-s1">core_1_1</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">,</span>
<span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">router_1_1</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">router_1</span> <span class="pl-c1">=</span> <span class="pl-s1">router_1_1</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">,</span>
<span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">constants_1_1</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">constants_1</span> <span class="pl-c1">=</span> <span class="pl-s1">constants_1_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-en">execute</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-v">DashboardComponent</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">function</span> <span class="pl-v">DashboardComponent</span><span class="pl-kos">(</span><span class="pl-s1">router</span><span class="pl-kos">,</span> <span class="pl-s1">apiUrl</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">router</span> <span class="pl-c1">=</span> <span class="pl-s1">router</span><span class="pl-kos">;</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">apiUrl</span> <span class="pl-c1">=</span> <span class="pl-s1">apiUrl</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-v">DashboardComponent</span> <span class="pl-c1">=</span> <span class="pl-s1">__decorate</span><span class="pl-kos">(</span><span class="pl-kos">[</span>
<span class="pl-s1">core_1</span><span class="pl-kos">.</span><span class="pl-en">Component</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">selector</span>: <span class="pl-s">'dashboard'</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">router_1</span><span class="pl-kos">.</span><span class="pl-en">CanActivate</span><span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">to</span><span class="pl-kos">,</span> <span class="pl-s1">from</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-c1">true</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-s1">core_1</span><span class="pl-kos">.</span><span class="pl-en">View</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">templateUrl</span>: <span class="pl-s">'./features/dashboard/dashboard.component.html'</span><span class="pl-kos">,</span>
<span class="pl-c1">styleUrls</span>: <span class="pl-kos">[</span><span class="pl-s">'./features/dashboard/dashboard.component.css'</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">__param</span><span class="pl-kos">(</span><span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-s1">core_1</span><span class="pl-kos">.</span><span class="pl-en">Inject</span><span class="pl-kos">(</span><span class="pl-s1">constants_1</span><span class="pl-kos">.</span><span class="pl-c1">API_URL</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-s1">__metadata</span><span class="pl-kos">(</span><span class="pl-s">'design:paramtypes'</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s1">router_1</span><span class="pl-kos">.</span><span class="pl-c1">Router</span><span class="pl-kos">,</span> <span class="pl-v">String</span><span class="pl-kos">]</span><span class="pl-kos">)</span>
<span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-v">DashboardComponent</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-v">DashboardComponent</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-s1">exports_1</span><span class="pl-kos">(</span><span class="pl-s">"DashboardComponent"</span><span class="pl-kos">,</span> <span class="pl-v">DashboardComponent</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-v">System</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">which is fine.</p>
<p dir="auto">The difference here is really in the imports.<br>
Have I missed something?</p> | 1 |
<p dir="auto">Hi. I want to set a proxy for all of the connections of my app. how can I do this?<br>
actually, I want to set proxy for firebase.</p> | <h2 dir="auto">Steps to Reproduce</h2>
<ul dir="auto">
<li>
<p dir="auto">Open the example project flutter_gallery</p>
</li>
<li>
<p dir="auto">Change the timer duration that mimics a latency interval for the indicator to be shown to 10 seconds<like the below:</p>
<p dir="auto"><strong>Future _handleRefresh() {</strong><br>
final Completer completer = new Completer();<br>
new Timer(const Duration(<strong>seconds: 10</strong>), () { completer.complete(null); });</p>
</li>
<li>
<p dir="auto">Run the app</p>
</li>
<li>
<p dir="auto">Go to Pull to Refresh example, pull the list to refresh, see the indicator is a blue dot and stops working.</p>
</li>
</ul>
<p dir="auto">See the screenshot attached<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/31315360/34399140-25f076be-ebb7-11e7-90f7-7ecbf8204a59.png"><img src="https://user-images.githubusercontent.com/31315360/34399140-25f076be-ebb7-11e7-90f7-7ecbf8204a59.png" alt="refreshindicator_broken" style="max-width: 100%;"></a></p> | 0 |
<p dir="auto">The error is that it occured in npm itself</p> | <p dir="auto">In Termux(android app)</p>
<p dir="auto">npx create-react-app myapp failed</p>
<p dir="auto">Installation aborted</p>
<p dir="auto">All the newly created directories were rolled back and deleted</p>
<p dir="auto">You can see Error log below:</p>
<p dir="auto"><a href="https://github.com/npm/cli/files/7177025/2021-09-16T10_09_09_239Z-debug.log">2021-09-16T10_09_09_239Z-debug.log</a></p> | 1 |
<p dir="auto">Hi y'all</p>
<p dir="auto">I'm using Next.js V3.0.3 and I'm having problem on IE11 with the following error;</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Object doesn't support property or method 'assign'
TypError: Object doesn't support property or method 'assign' "><pre class="notranslate"><code class="notranslate">Object doesn't support property or method 'assign'
TypError: Object doesn't support property or method 'assign'
</code></pre></div>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<ol dir="auto">
<li>Create a next.js app</li>
<li>use <code class="notranslate">{...oneObject, ...secondObject}</code> in your code</li>
<li>build</li>
<li>run</li>
</ol>
<h2 dir="auto">Context</h2>
<p dir="auto">It's working on Chrome desktop/mobile and it's working on Safari desktop/mobile. It's working on Microsoft Edge but not IE11.</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>3.0.3</td>
</tr>
<tr>
<td>node</td>
<td>8.1.0</td>
</tr>
<tr>
<td>npm</td>
<td>5.0.3</td>
</tr>
<tr>
<td>OS</td>
<td>macOS 0.12.6</td>
</tr>
<tr>
<td>browser</td>
<td>Internet Explorer 11</td>
</tr>
</tbody>
</table>
<p dir="auto">Is there any solution to this problem or a hotfix?</p>
<p dir="auto">Thanks for your help.</p> | <p dir="auto">Getting large error (printing all of CSS used in <code class="notranslate"><style jsx global></code>) in web console.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Warning: Text content did not match. Server: "
...(css)..."><pre class="notranslate"><code class="notranslate">Warning: Text content did not match. Server: "
...(css)...
</code></pre></div>
<p dir="auto">I <em>think</em> this is causing FOUC, so there is a flash of unstyled content followed by a second later the actual styles.</p>
<p dir="auto">This is coming from a library being used in a next project (from <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="265456141" data-permission-text="Title is private" data-url="https://github.com/vercel/next.js/issues/3088" data-hovercard-type="issue" data-hovercard-url="/vercel/next.js/issues/3088/hovercard" href="https://github.com/vercel/next.js/issues/3088">#3088</a>).</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Expected Behavior</h2>
<ul dir="auto">
<li>Styles should be applied from server directly.</li>
<li>There should be no FOUC</li>
<li>There should be no error in web console</li>
</ul>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">To elaborate a little more, when rendering a next app in the library itself (so some page in that repo), the styles render fine. View-source shows source maps and minified CSS in the HTML markup.</p>
<p dir="auto">However, when using that same code as a compiled project loaded into a separate next app, the markup in view-source shows unminified CSS and no source maps (and we get the web console error and fouc).</p>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<ol dir="auto">
<li>See <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="265456141" data-permission-text="Title is private" data-url="https://github.com/vercel/next.js/issues/3088" data-hovercard-type="issue" data-hovercard-url="/vercel/next.js/issues/3088/hovercard" href="https://github.com/vercel/next.js/issues/3088">#3088</a> for setup.</li>
<li>I am manually compiling some files in repo-b using <code class="notranslate">babel <folder> --out-dir ... etc.</code>, and then importing that and also importing <code class="notranslate">babel-polyfill</code> if that matters.</li>
</ol>
<h2 dir="auto">Context</h2>
<p dir="auto">This is just unexpected behavior making the app not look right (ux).</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>4beta2</td>
</tr>
<tr>
<td>node</td>
<td>8.4</td>
</tr>
</tbody>
</table> | 0 |
<p dir="auto">celery failed to run the command in subprocess. when restarting the celery worker the command is running in the background.<br>
the subprocess is working without calling as celery task</p>
<h1 dir="auto">Checklist</h1>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> This has already been asked to the <a href="https://groups.google.com/forum/#!forum/celery-users" rel="nofollow">discussion group</a> first.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the relevant section in the<br>
<a href="http://docs.celeryproject.org/en/latest/contributing.html#other-bugs" rel="nofollow">contribution guide</a><br>
on reporting bugs.</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/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Bug+Report%22+-label%3A%22Category%3A+Documentation%22">issues list</a><br>
for similar or identical bug reports.</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/celery/celery/pulls?q=is%3Apr+label%3A%22PR+Type%3A+Bugfix%22+-label%3A%22Category%3A+Documentation%22">pull requests list</a><br>
for existing proposed fixes.</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/celery/celery/commits/master">commit log</a><br>
to find out if the bug was already fixed in the master branch.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all related issues and possible duplicate issues<br>
in this issue (If there are none, check this box anyway).</li>
</ul>
<h2 dir="auto">Mandatory Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included the output of <code class="notranslate">celery -A proj report</code> in the issue.<br>
(if you are not able to do this, then at least specify the Celery<br>
version affected).</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included the contents of <code class="notranslate">pip freeze</code> in the issue.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all the versions of all the external dependencies required<br>
to reproduce this bug.</li>
</ul>
<h2 dir="auto">Optional Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one Python version<br>
and/or implementation.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one message broker and/or<br>
result backend.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one version of the message<br>
broker and/or result backend.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one operating system.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one workers pool.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue with autoscaling, retries,<br>
ETA/Countdown & rate limits disabled.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue after downgrading<br>
and/or upgrading Celery and its dependencies.</li>
</ul>
<h2 dir="auto">Related Issues and Possible Duplicates</h2>
<h4 dir="auto">Related Issues</h4>
<ul dir="auto">
<li>None</li>
</ul>
<h4 dir="auto">Possible Duplicates</h4>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="5895750" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/891" data-hovercard-type="issue" data-hovercard-url="/celery/celery/issues/891/hovercard" href="https://github.com/celery/celery/issues/891">#891</a></li>
</ul>
<h2 dir="auto">Environment & Settings</h2>
<p dir="auto"><strong>Celery version</strong>:</p>
<details>
<summary><b><code class="notranslate">celery report</code> Output:</b></summary>
<p dir="auto">
</p><p dir="auto">software -> celery:4.4.0 (cliffs) kombu:4.6.11 py:3.6.11<br>
billiard:3.6.3.0 py-amqp:2.6.1<br>
platform -> system:Linux arch:64bit, ELF<br>
kernel version:5.3.0-51-generic imp:CPython<br>
loader -> celery.loaders.app.AppLoader<br>
settings -> transport:pyamqp results:rpc:///</p>
<p dir="auto">broker_url: 'amqp://guest:********@192.168.43.150:5672//'<br>
result_backend: 'rpc:///'<br>
task_queue: <unbound Queue test_subprocess -> <unbound Exchange test_subprocess(direct)> -> model_builder.#><br>
task_routes: {<br>
'*': {'queue': 'test_subprocess'}}</p>
<p dir="auto"></p>
</details>
<h3 dir="auto">Python Packages</h3>
<details>
<summary><b><code class="notranslate">pip freeze</code> Output:</b></summary>
<p dir="auto">
absl-py==0.9.0
affine==2.3.0
amqp==2.6.1
astor==0.8.1
attrs==20.1.0
Babel==2.8.0
billiard==3.6.3.0
celery==4.4.0
certifi==2020.6.20
chardet==3.0.4
click==7.1.2
click-plugins==1.1.1
cligj==0.5.0
cycler==0.10.0
Cython==3.0a6
Flask==1.1.1
Flask-Cors==3.0.8
flower==0.9.3
gast==0.3.3
gevent==1.4.0
google-pasta==0.2.0
greenlet==0.4.16
grpcio==1.25.0
grpcio-tools==1.25.0
h5py==2.10.0
idna==2.10
importlib-metadata==1.7.0
itsdangerous==1.1.0
Jinja2==2.11.2
Keras-Applications==1.0.8
Keras-Preprocessing==1.1.2
kiwisolver==1.2.0
kombu==4.6.11
Markdown==3.2.2
MarkupSafe==1.1.1
matplotlib==3.3.1
minio==5.0.6
numpy==1.19.1
object-detection==0.1
opencv-python==4.1.2.30
pandas==1.1.0
pika==1.1.0
Pillow==7.0.0
protobuf==3.12.2
pyparsing==2.4.7
python-dateutil==2.8.1
python-dotenv==0.11.0
pytz==2020.1
rasterio==1.1.3
redis==3.3.11
requests==2.23.0
scipy==1.5.2
simplification==0.4.4
six==1.15.0
snuggs==1.4.7
tensorboard==1.14.0
tensorflow==1.14.0
tensorflow-estimator==1.14.0
termcolor==1.1.0
tf-slim==1.1.0
tornado==5.1.1
urllib3==1.25.10
vine==1.3.0
Werkzeug==1.0.1
wrapt==1.12.1
zipp==3.1.0
</p>
</details>
<h1 dir="auto">reference subprocess code</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" train_obj = subprocess.Popen(
cmd,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
shell=True
)
for line in iter(train_obj.stdout.read(1), ''): # replace '' with b'' for Python 3
sys.stdout.write(line)"><pre class="notranslate"><code class="notranslate"> train_obj = subprocess.Popen(
cmd,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
shell=True
)
for line in iter(train_obj.stdout.read(1), ''): # replace '' with b'' for Python 3
sys.stdout.write(line)
</code></pre></div>
<h1 dir="auto">Expected Behavior</h1>
<p dir="auto">subprocess need to be start and stdout can able to see in the logs</p>
<h1 dir="auto">Actual Behavior</h1>
<p dir="auto">stopped before the line of subprocess<br>
restarting the worker. the command is running in the background. not able to see in the logs</p>
<h1 dir="auto">similar question in stack overflow</h1>
<p dir="auto"><a href="https://stackoverflow.com/questions/36995868/how-to-execute-a-long-running-subprocess-inside-celery-task" rel="nofollow">https://stackoverflow.com/questions/36995868/how-to-execute-a-long-running-subprocess-inside-celery-task</a></p> | <h2 dir="auto">Steps to reproduce</h2>
<p dir="auto">celery 3.1.25 with redis</p>
<p dir="auto">celery worker -A celery_worker.celery --loglevel=info --logfile=/tmp/celery.log --beat</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from celery.schedules import crontab
CELERYBEAT_SCHEDULE = {
'every-monthly-blog-digest': {
'task': 'app.users.views.monthly_blog_digest',
'schedule': crontab(hour=9, minute=0, day_of_month=15),
},
}
CELERY_TIMEZONE = "Europe/Lisbon""><pre class="notranslate"><code class="notranslate">from celery.schedules import crontab
CELERYBEAT_SCHEDULE = {
'every-monthly-blog-digest': {
'task': 'app.users.views.monthly_blog_digest',
'schedule': crontab(hour=9, minute=0, day_of_month=15),
},
}
CELERY_TIMEZONE = "Europe/Lisbon"
</code></pre></div>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">Unique execution by task</p>
<h2 dir="auto">Actual behavior</h2>
<p dir="auto">Duplicated tasks</p>
<p dir="auto">Example:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[2018-11-15 08:00:00,012: INFO/Beat] Scheduler: Sending due task every-monthly-blog-digest (app.users.views.monthly_blog_digest)
[2018-11-15 08:00:00,031: INFO/MainProcess] Received task: app.users.views.monthly_blog_digest[df2de4fb-35d8-4b67-bec8-aa9b806cbe1f]
[2018-11-15 08:00:00,707: INFO/MainProcess] Received task: app.mymail.send_async_email_celery[7fd76326-49c0-491c-bec4-aa534ff48411] eta:[2018-11-15 08:10:00.689367+00:00]
...
[2018-11-15 09:00:00,027: INFO/Beat] Scheduler: Sending due task every-monthly-blog-digest (app.users.views.monthly_blog_digest)
[2018-11-15 09:00:00,076: INFO/MainProcess] Received task: app.users.views.monthly_blog_digest[0979c42c-be1b-455a-853e-449601124227]
[2018-11-15 09:00:00,218: INFO/MainProcess] Received task: app.mymail.send_async_email_celery[53fe3a81-9119-4669-8af4-080253abafb8] eta:[2018-11-15 09:10:00.211812+00:00]"><pre class="notranslate"><code class="notranslate">[2018-11-15 08:00:00,012: INFO/Beat] Scheduler: Sending due task every-monthly-blog-digest (app.users.views.monthly_blog_digest)
[2018-11-15 08:00:00,031: INFO/MainProcess] Received task: app.users.views.monthly_blog_digest[df2de4fb-35d8-4b67-bec8-aa9b806cbe1f]
[2018-11-15 08:00:00,707: INFO/MainProcess] Received task: app.mymail.send_async_email_celery[7fd76326-49c0-491c-bec4-aa534ff48411] eta:[2018-11-15 08:10:00.689367+00:00]
...
[2018-11-15 09:00:00,027: INFO/Beat] Scheduler: Sending due task every-monthly-blog-digest (app.users.views.monthly_blog_digest)
[2018-11-15 09:00:00,076: INFO/MainProcess] Received task: app.users.views.monthly_blog_digest[0979c42c-be1b-455a-853e-449601124227]
[2018-11-15 09:00:00,218: INFO/MainProcess] Received task: app.mymail.send_async_email_celery[53fe3a81-9119-4669-8af4-080253abafb8] eta:[2018-11-15 09:10:00.211812+00:00]
</code></pre></div> | 0 |
<h3 dir="auto">Version</h3>
<p dir="auto">2.5.17</p>
<h3 dir="auto">Reproduction link</h3>
<p dir="auto"><a href="https://jsfiddle.net/jcatfour/g6ykuwhe/" rel="nofollow">https://jsfiddle.net/jcatfour/g6ykuwhe/</a></p>
<h3 dir="auto">Steps to reproduce</h3>
<p dir="auto">Try to change the dropdown value. The text displayed in the select box will almost always stay as "Today", despite the value changing, though it SOMETIMES will actually change to the correct value. Again, as you can see, the actual value is indeed changing even if the select box does not show it.</p>
<h3 dir="auto">What is expected?</h3>
<p dir="auto">The options in the select are based on an array of value pairs, (text, val). The text is what should be shown in the select, and the val is what should be actually passed and stored in the data object. I expect the text to change as well as the value when selecting an option.</p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto">The value changes every time, but the text mostly stays unchanged, BUT the text does very rarely change as expected.</p>
<hr>
<p dir="auto">If this were CONSISTENTLY showing the wrong text with the right value, I would assume that I am just doing something wrong, but since it's infrequent, I'm now not so sure. I would not be surprised if I was doing something wrong. I am going insane, please be my savior.</p> | <h3 dir="auto">Version</h3>
<p dir="auto">2.5.16</p>
<h3 dir="auto">Reproduction link</h3>
<p dir="auto"><a href="https://jsfiddle.net/azpxdt3a/1/" rel="nofollow">https://jsfiddle.net/azpxdt3a/1/</a></p>
<h3 dir="auto">Steps to reproduce</h3>
<p dir="auto">Try select any item except first one.</p>
<h3 dir="auto">What is expected?</h3>
<p dir="auto">Item selected.</p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto"> always shows first item. Once any item except first is selected, it's no more possible to select first one (actually, it's possible, as shows correct selected item after the same item was selected twice in a row)</p>
<hr>
<p dir="auto">It seems the bug was introduced in ver 2.4.2. Does not reproduced with objects instead of dates: <a href="https://jsfiddle.net/pr847ek7/" rel="nofollow">https://jsfiddle.net/pr847ek7/</a></p> | 1 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=nico.fabre" rel="nofollow">Nicolas FABRE</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-6334?redirect=false" rel="nofollow">SPR-6334</a></strong> and commented</p>
<p dir="auto">Using org.springframework.jdbc.core.JdbcTemplate.batchUpdate(String sql, BatchPreparedStatementSetter pss), if the number of rows I want to insert (update or delete) is greater than the batch size I define in the BatchPreparedStatementSetter, the rows after the batch size limit are not inserted. However if I have a huge amount of rows to insert (for example 100000), I think it is not good to set the batch size to 100000. The database could be oppressed if it receives 100000 rows to process on a single call. Am I wrong ?</p>
<p dir="auto">So would it be possible to use batchUpdate with a number of updates to be performed not equals to the batch size ? May I request the creation of the following method to manage this problem ?</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" // the batch size is set in the BatchPreparedStatementSetter, the number of rows we want to process is equal to the nbUpdates parameter
public int[] batchUpdate(String sql, final long nbUpdates, final BatchPreparedStatementSetter pss) throws DataAccessException {
if (logger.isDebugEnabled()) {
logger.debug("Executing SQL batch update [" + sql + "]");
}
return (int[]) execute(sql, new PreparedStatementCallback() {
public Object doInPreparedStatement(PreparedStatement ps) throws SQLException {
try {
int batchSize = pss.getBatchSize();
InterruptibleBatchPreparedStatementSetter ipss = (pss instanceof InterruptibleBatchPreparedStatementSetter ? (InterruptibleBatchPreparedStatementSetter) pss
: null);
if (JdbcUtils.supportsBatchUpdates(ps.getConnection())) {
List<Integer> rowsAffected = new ArrayList<Integer>();
for (int i = 1; i <= nbUpdates; i++) {
pss.setValues(ps, i - 1);
if (ipss != null && ipss.isBatchExhausted(i - 1)) {
if (logger.isDebugEnabled()) {
int batchIdx = (i % batchSize == 0) ? i / batchSize : (i / batchSize) + 1;
logger.debug("Batch exhausted - Sending last SQL batch update #" + batchIdx);
}
int[] res = ps.executeBatch();
for (int j = 0; j < res.length; j++) {
rowsAffected.add(res[j]);
}
break;
}
ps.addBatch();
if (i % batchSize == 0 || i == nbUpdates) {
if (logger.isDebugEnabled()) {
int batchIdx = (i % batchSize == 0) ? i / batchSize : (i / batchSize) + 1;
logger.debug("Sending SQL batch update #" + batchIdx);
}
int[] res = ps.executeBatch();
for (int j = 0; j < res.length; j++) {
rowsAffected.add(res[j]);
}
}
}
int[] result = new int[rowsAffected.size()];
for (int i = 0; i < result.length; i++) {
result[i] = rowsAffected.get(i).intValue();
}
return result;
} else {
List<Integer> rowsAffected = new ArrayList<Integer>();
for (int i = 0; i < nbUpdates; i++) {
pss.setValues(ps, i);
if (ipss != null && ipss.isBatchExhausted(i)) {
break;
}
rowsAffected.add(ps.executeUpdate());
}
int[] rowsAffectedArray = new int[rowsAffected.size()];
for (int i = 0; i < rowsAffectedArray.length; i++) {
rowsAffectedArray[i] = rowsAffected.get(i);
}
return rowsAffectedArray;
}
} finally {
if (pss instanceof ParameterDisposer) {
((ParameterDisposer) pss).cleanupParameters();
}
}
}
});
}"><pre class="notranslate"><code class="notranslate"> // the batch size is set in the BatchPreparedStatementSetter, the number of rows we want to process is equal to the nbUpdates parameter
public int[] batchUpdate(String sql, final long nbUpdates, final BatchPreparedStatementSetter pss) throws DataAccessException {
if (logger.isDebugEnabled()) {
logger.debug("Executing SQL batch update [" + sql + "]");
}
return (int[]) execute(sql, new PreparedStatementCallback() {
public Object doInPreparedStatement(PreparedStatement ps) throws SQLException {
try {
int batchSize = pss.getBatchSize();
InterruptibleBatchPreparedStatementSetter ipss = (pss instanceof InterruptibleBatchPreparedStatementSetter ? (InterruptibleBatchPreparedStatementSetter) pss
: null);
if (JdbcUtils.supportsBatchUpdates(ps.getConnection())) {
List<Integer> rowsAffected = new ArrayList<Integer>();
for (int i = 1; i <= nbUpdates; i++) {
pss.setValues(ps, i - 1);
if (ipss != null && ipss.isBatchExhausted(i - 1)) {
if (logger.isDebugEnabled()) {
int batchIdx = (i % batchSize == 0) ? i / batchSize : (i / batchSize) + 1;
logger.debug("Batch exhausted - Sending last SQL batch update #" + batchIdx);
}
int[] res = ps.executeBatch();
for (int j = 0; j < res.length; j++) {
rowsAffected.add(res[j]);
}
break;
}
ps.addBatch();
if (i % batchSize == 0 || i == nbUpdates) {
if (logger.isDebugEnabled()) {
int batchIdx = (i % batchSize == 0) ? i / batchSize : (i / batchSize) + 1;
logger.debug("Sending SQL batch update #" + batchIdx);
}
int[] res = ps.executeBatch();
for (int j = 0; j < res.length; j++) {
rowsAffected.add(res[j]);
}
}
}
int[] result = new int[rowsAffected.size()];
for (int i = 0; i < result.length; i++) {
result[i] = rowsAffected.get(i).intValue();
}
return result;
} else {
List<Integer> rowsAffected = new ArrayList<Integer>();
for (int i = 0; i < nbUpdates; i++) {
pss.setValues(ps, i);
if (ipss != null && ipss.isBatchExhausted(i)) {
break;
}
rowsAffected.add(ps.executeUpdate());
}
int[] rowsAffectedArray = new int[rowsAffected.size()];
for (int i = 0; i < rowsAffectedArray.length; i++) {
rowsAffectedArray[i] = rowsAffected.get(i);
}
return rowsAffectedArray;
}
} finally {
if (pss instanceof ParameterDisposer) {
((ParameterDisposer) pss).cleanupParameters();
}
}
}
});
}
</code></pre></div>
<p dir="auto">Thanks to this method I can process my 100000 rows with a batchSize = 5000 for example. It avoid to manage sub-collections in the DAO method to invoke the batchUpdate method with just 5000 rows.</p>
<p dir="auto">Thanks in advance for the attention which will be given to this issue.</p>
<p dir="auto">Nicolas</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.0 RC1</p>
<p dir="auto"><strong>Attachments:</strong></p>
<ul dir="auto">
<li><a href="https://jira.spring.io/secure/attachment/17624/spring-contribution-JIRA-SPR-6334.zip" rel="nofollow">spring-contribution-JIRA-SPR-6334.zip</a> (<em>13.07 kB</em>)</li>
</ul>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398105733" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/11949" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/11949/hovercard" href="https://github.com/spring-projects/spring-framework/issues/11949">#11949</a> Extend JdbcTemplate to allow larger batch updates (<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/0adcb2ad2ea5bdf85d27e9c279cf165db1eeb33c/hovercard" href="https://github.com/spring-projects/spring-framework/commit/0adcb2ad2ea5bdf85d27e9c279cf165db1eeb33c"><tt>0adcb2a</tt></a></p>
<p dir="auto">2 votes, 3 watchers</p> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=quaff" rel="nofollow">Yanming Zhou</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-8213?redirect=false" rel="nofollow">SPR-8213</a></strong> and commented</p>
<p dir="auto">I have the same problem with <a href="http://forum.springsource.org/showthread.php?t=105476" rel="nofollow">http://forum.springsource.org/showthread.php?t=105476</a></p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.0.5</p>
<p dir="auto"><strong>Reference URL:</strong> <a href="http://forum.springsource.org/showthread.php?t=105476" rel="nofollow">http://forum.springsource.org/showthread.php?t=105476</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="398089277" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/9610" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/9610/hovercard" href="https://github.com/spring-projects/spring-framework/issues/9610">#9610</a> Doc: <code class="notranslate">@Autowired</code> not working in BeanFactoryPostProcessor (<em><strong>"duplicates"</strong></em>)</li>
</ul> | 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>: Y</li>
<li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04)</strong>: Linux Centos 7</li>
<li><strong>TensorFlow installed from (source or binary)</strong>: Binary</li>
<li><strong>TensorFlow version (use command below)</strong>: v1.8.0-3463-g39ea5a7044 1.10.0-dev20180620</li>
<li><strong>Python version</strong>: Python 3.6.5</li>
<li><strong>Bazel version (if compiling from source)</strong>:</li>
<li><strong>GCC/Compiler version (if compiling from source)</strong>:</li>
<li><strong>CUDA/cuDNN version</strong>: Cuda 9.0</li>
<li><strong>GPU model and memory</strong>: NA</li>
<li><strong>Exact command to reproduce</strong>:</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from __future__ import absolute_import, division, print_function
import tensorflow as tf
transfer = lambda x: tf.where(x < 0, 1./(1.-x), tf.log(x+1))
def f(x):
xt = tf.placeholder(tf.float32, shape=(1,))
yt = transfer(xt)
dydx = tf.gradients(ys=yt, xs=xt)[0]
with tf.Session() as sess:
rval = sess.run([xt, yt, dydx], feed_dict={xt:[x]})
return rval
print(f(1.)) # [1, 2, nan]
print(f(-1.)) # [-1, 0.5, nan]
print(f(0.)) # [0, 0, 1] (no nan here, interestingly)"><pre class="notranslate"><code class="notranslate">from __future__ import absolute_import, division, print_function
import tensorflow as tf
transfer = lambda x: tf.where(x < 0, 1./(1.-x), tf.log(x+1))
def f(x):
xt = tf.placeholder(tf.float32, shape=(1,))
yt = transfer(xt)
dydx = tf.gradients(ys=yt, xs=xt)[0]
with tf.Session() as sess:
rval = sess.run([xt, yt, dydx], feed_dict={xt:[x]})
return rval
print(f(1.)) # [1, 2, nan]
print(f(-1.)) # [-1, 0.5, nan]
print(f(0.)) # [0, 0, 1] (no nan here, interestingly)
</code></pre></div>
<h3 dir="auto">Problem</h3>
<p dir="auto">Gradients computed through the tf.where command erroneously returns nans. Presumably this is because the gradient computation computes the gradient through both conditions, which may result in a division by zero or log of zero.</p> | <p dir="auto">When running tensorboard on Mac OS X currently, you have to specify the absolute directory to the logs path in order to get it to run.</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="tensorboard --logdir /Users/myusername/Code/tensor-play/tf-play/linear_regression/logs/events"><pre class="notranslate">tensorboard --logdir /Users/myusername/Code/tensor-play/tf-play/linear_regression/logs/events</pre></div>
<p dir="auto">It should accept relative paths (like most unix commands) for convenience.</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="tensorboard --logdir logs/events"><pre class="notranslate">tensorboard --logdir logs/events</pre></div> | 0 |
<p dir="auto">It looks like the <code class="notranslate">compatibility</code> mode is broken in 1.25.2 <a href="https://deno.land/[email protected]/node/compatibility_mode" rel="nofollow">https://deno.land/[email protected]/node/compatibility_mode</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="> deno run --unstable --compat --allow-read --allow-env ./test.f.cjs
PS C:\github.com\functionalscript\functionalscript> deno run --unstable --compat --allow-read --allow-env ./test.f.cjs
error: Found argument '--compat' which wasn't expected, or isn't valid in this context
If you tried to supply `--compat` as a value rather than a flag, use `-- --compat`
USAGE:
deno run --unstable <SCRIPT_ARG>...
For more information try --help"><pre class="notranslate"><code class="notranslate">> deno run --unstable --compat --allow-read --allow-env ./test.f.cjs
PS C:\github.com\functionalscript\functionalscript> deno run --unstable --compat --allow-read --allow-env ./test.f.cjs
error: Found argument '--compat' which wasn't expected, or isn't valid in this context
If you tried to supply `--compat` as a value rather than a flag, use `-- --compat`
USAGE:
deno run --unstable <SCRIPT_ARG>...
For more information try --help
</code></pre></div>
<p dir="auto">Example: <a href="https://github.com/functionalscript/functionalscript/runs/8286749568?check_suite_focus=true">https://github.com/functionalscript/functionalscript/runs/8286749568?check_suite_focus=true</a></p> | <p dir="auto"><code class="notranslate">Deno.test({ name: "a", ignore: undefined, fn() {}})</code> works in Deno 1.32.4 and breaks in Deno 1.32.5</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/m/a/P/g/d/x ❯❯❯ deno test test.ts
Check file:///mnt/artemis/Projects/github.com/denoland/x/test.ts
Uncaught error from ./test.ts FAILED
ERRORS
./test.ts (uncaught error)
error: TypeError: Error parsing args at position 0: missing field `ignore`
Deno.test({ name: "a", ignore: undefined, fn() {}})
^
at Object.test (ext:cli/40_testing.js:675:30)
at file:///mnt/artemis/Projects/github.com/denoland/x/test.ts:1:6
This error was not caught from a test and caused the test runner to fail on the referenced module.
It most likely originated from a dangling promise, event/timeout handler or top-level code.
FAILURES
./test.ts (uncaught error)
FAILED | 0 passed | 1 failed (11ms)
error: Test failed"><pre class="notranslate"><code class="notranslate">/m/a/P/g/d/x ❯❯❯ deno test test.ts
Check file:///mnt/artemis/Projects/github.com/denoland/x/test.ts
Uncaught error from ./test.ts FAILED
ERRORS
./test.ts (uncaught error)
error: TypeError: Error parsing args at position 0: missing field `ignore`
Deno.test({ name: "a", ignore: undefined, fn() {}})
^
at Object.test (ext:cli/40_testing.js:675:30)
at file:///mnt/artemis/Projects/github.com/denoland/x/test.ts:1:6
This error was not caught from a test and caused the test runner to fail on the referenced module.
It most likely originated from a dangling promise, event/timeout handler or top-level code.
FAILURES
./test.ts (uncaught error)
FAILED | 0 passed | 1 failed (11ms)
error: Test failed
</code></pre></div>
<p dir="auto">I suspect <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1650769232" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/18563" data-hovercard-type="pull_request" data-hovercard-url="/denoland/deno/pull/18563/hovercard" href="https://github.com/denoland/deno/pull/18563">#18563</a></p> | 0 |
<ul dir="auto">
<li>VSCode Version:<br>
Version 0.10.10<br>
Commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/microsoft/vscode/commit/5b5f4db87c10345b9d5c8d0bed745bcad4533135/hovercard" href="https://github.com/microsoft/vscode/commit/5b5f4db87c10345b9d5c8d0bed745bcad4533135"><tt>5b5f4db</tt></a><br>
Date 2016-03-07T10:30:20.458Z<br>
Shell 0.35.6<br>
Renderer 45.0.2454.85<br>
Node 4.1.1</li>
<li>OS Version:<br>
Ubuntu Linux</li>
</ul>
<p dir="auto">Steps to Reproduce:</p>
<ol dir="auto">
<li>make new dir; <code class="notranslate">code .</code>; create new foo.js file</li>
<li>add code:</li>
</ol>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="if (!varName)"><pre class="notranslate"><span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-c1">!</span><span class="pl-s1">varName</span><span class="pl-kos">)</span><span class="pl-kos"></span></pre></div>
<p dir="auto">In themes other than the default, the "var" within "varName" is incorrectly syntax highlighted.</p> | <ul dir="auto">
<li>VSCode Version: 0.10.11</li>
<li>OS Version: Windows 10 1511</li>
</ul>
<p dir="auto">Steps to Reproduce:</p>
<p dir="auto">In a typescript file, have</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="let varName = "";
varName = "a";"><pre class="notranslate"><span class="pl-k">let</span> <span class="pl-s1">varName</span> <span class="pl-c1">=</span> <span class="pl-s">""</span><span class="pl-kos">;</span>
<span class="pl-s1">varName</span> <span class="pl-c1">=</span> <span class="pl-s">"a"</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">The issue is that the 'var' substring in <code class="notranslate">varName</code> is highlighted the way the <code class="notranslate">var</code> construct would ordinarily be.</p> | 1 |
<p dir="auto">Why is hidden-xs on a span adding display-block.</p> | <p dir="auto">related to issues <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="16856611" data-permission-text="Title is private" data-url="https://github.com/twbs/bootstrap/issues/8500" data-hovercard-type="pull_request" data-hovercard-url="/twbs/bootstrap/pull/8500/hovercard" href="https://github.com/twbs/bootstrap/pull/8500">#8500</a> , <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="14075731" data-permission-text="Title is private" data-url="https://github.com/twbs/bootstrap/issues/7808" data-hovercard-type="issue" data-hovercard-url="/twbs/bootstrap/issues/7808/hovercard" href="https://github.com/twbs/bootstrap/issues/7808">#7808</a> , <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="6609454" data-permission-text="Title is private" data-url="https://github.com/twbs/bootstrap/issues/4929" data-hovercard-type="issue" data-hovercard-url="/twbs/bootstrap/issues/4929/hovercard" href="https://github.com/twbs/bootstrap/issues/4929">#4929</a> ; using <code class="notranslate">.hidden-sm</code> to hide span within <code class="notranslate">.nav > li > a</code> . Because class is <code class="notranslate">display: block</code> above -sm then text wraps to new line. Would you consider <code class="notranslate">.hidden-*</code> classes to be <code class="notranslate">display: inline-block</code> instead ?</p>
<p dir="auto">Here's a jsfiddle of the two cases - but the repercussions could be greater outside of this situation so probably needs more consideration... <a href="http://jsfiddle.net/jholl/P86yf/" rel="nofollow">http://jsfiddle.net/jholl/P86yf/</a></p> | 1 |
<p dir="auto">Can i have fix please</p>
<p dir="auto"><strong>Originally posted by @F0o0De in <a href="https://github.com/F0o0De/coinigyV2/issues/1">https://github.com/F0o0De/coinigyV2/issues/1</a></strong></p> | <p dir="auto">Remove all my api’s and reset all my accounts and balance to zero. Since, I was bugged and hacked.</p>
<p dir="auto">Thank you I really appreciate all the hard work and effort.</p> | 1 |
<p dir="auto">In Mac OS X when you paste a minified file like jquery.min.js or bootstrap.min.css Atom crashes or stays unresponsive for a minute or two.</p> | <p dir="auto">May be a known issue, but files with large embedded images such as github's public/enterprise/maintenance.html will often cause Atom to freeze (MacVim actually struggles as well).</p>
<p dir="auto">Seems some of them (github's public/maintenance.html for instance) work fine when in soft wrap mode, or until you move your cursor to the long line when out of soft wrap.</p> | 1 |
<h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 3.1</li>
<li>Operating System / Platform => macOS 10.12</li>
<li>Compiler => gcc</li>
<li>Matlab => Matlab_R2016b</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">Cannot find Matlab automatically, because <code class="notranslate">OpenCVFindMatlab.cmake</code> looks for a wrong name.</p>
<h5 dir="auto">Solution</h5>
<p dir="auto">Change in <code class="notranslate">OpenCVFindMatlab.cmake</code> at line 65</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="file(GLOB MATLAB_ROOT_DIR_ ${DIR_}/MATLAB/R*)"><pre class="notranslate"><code class="notranslate">file(GLOB MATLAB_ROOT_DIR_ ${DIR_}/MATLAB/R*)
</code></pre></div>
<p dir="auto">to</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="if (APPLE)
file(GLOB MATLAB_ROOT_DIR_ ${DIR_}/MATLAB_R*)
else()
file(GLOB MATLAB_ROOT_DIR_ ${DIR_}/MATLAB/R*)
endif()"><pre class="notranslate"><code class="notranslate">if (APPLE)
file(GLOB MATLAB_ROOT_DIR_ ${DIR_}/MATLAB_R*)
else()
file(GLOB MATLAB_ROOT_DIR_ ${DIR_}/MATLAB/R*)
endif()
</code></pre></div>
<p dir="auto">DONE.</p> | <h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 3.1</li>
<li>Operating System / Platform => OS X El Capitan 10.11.3</li>
<li>Compiler => Xcode 7.3.1 - Apple LLVM version 7.3.0 (clang-703.0.31)</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">This line in OpenCVFindMatlab.cmake does not find an existing Matlab installation:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="file(GLOB MATLAB_ROOT_DIR_ ${DIR_}/MATLAB/R*)"><pre class="notranslate"><code class="notranslate">file(GLOB MATLAB_ROOT_DIR_ ${DIR_}/MATLAB/R*)
</code></pre></div>
<p dir="auto">However, changing it to the following finds the installation correctly:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="file(GLOB MATLAB_ROOT_DIR_ ${DIR_}/MATLAB_R*)"><pre class="notranslate"><code class="notranslate">file(GLOB MATLAB_ROOT_DIR_ ${DIR_}/MATLAB_R*)
</code></pre></div>
<h5 dir="auto">Steps to reproduce</h5> | 1 |
<h3 dir="auto">Bug summary</h3>
<p dir="auto">The discrete normalizer produces duplicated labels for the same tick and the colorbar is wrong.</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 numpy as np
import matplotlib.pyplot as plt
import matplotlib.colors as mcolors
import matplotlib.ticker as mticker
fig, ax = plt.subplots()
edges = np.linspace(0, 3, 13)
norm = mcolors.BoundaryNorm(edges, 1000)
Z = np.random.rand(5, 5) * 3
m = ax.pcolormesh(Z, cmap='viridis', norm=norm)
cb = fig.colorbar(m, ticks=mticker.MultipleLocator(0.25))
fig.show()"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span>
<span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">colors</span> <span class="pl-k">as</span> <span class="pl-s1">mcolors</span>
<span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">ticker</span> <span class="pl-k">as</span> <span class="pl-s1">mticker</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">edges</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">linspace</span>(<span class="pl-c1">0</span>, <span class="pl-c1">3</span>, <span class="pl-c1">13</span>)
<span class="pl-s1">norm</span> <span class="pl-c1">=</span> <span class="pl-s1">mcolors</span>.<span class="pl-v">BoundaryNorm</span>(<span class="pl-s1">edges</span>, <span class="pl-c1">1000</span>)
<span class="pl-v">Z</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">rand</span>(<span class="pl-c1">5</span>, <span class="pl-c1">5</span>) <span class="pl-c1">*</span> <span class="pl-c1">3</span>
<span class="pl-s1">m</span> <span class="pl-c1">=</span> <span class="pl-s1">ax</span>.<span class="pl-en">pcolormesh</span>(<span class="pl-v">Z</span>, <span class="pl-s1">cmap</span><span class="pl-c1">=</span><span class="pl-s">'viridis'</span>, <span class="pl-s1">norm</span><span class="pl-c1">=</span><span class="pl-s1">norm</span>)
<span class="pl-s1">cb</span> <span class="pl-c1">=</span> <span class="pl-s1">fig</span>.<span class="pl-en">colorbar</span>(<span class="pl-s1">m</span>, <span class="pl-s1">ticks</span><span class="pl-c1">=</span><span class="pl-s1">mticker</span>.<span class="pl-v">MultipleLocator</span>(<span class="pl-c1">0.25</span>))
<span class="pl-s1">fig</span>.<span class="pl-en">show</span>()</pre></div>
<h3 dir="auto">Actual outcome</h3>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/30388627/144408972-91e06931-6ae0-4a0c-8d48-bf4274bed2aa.png"><img src="https://user-images.githubusercontent.com/30388627/144408972-91e06931-6ae0-4a0c-8d48-bf4274bed2aa.png" alt="image" style="max-width: 100%;"></a></p>
<h3 dir="auto">Expected outcome</h3>
<p dir="auto">Correct ticks and colorbar.</p>
<h3 dir="auto">Additional information</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Operating system</h3>
<p dir="auto">Ubuntu</p>
<h3 dir="auto">Matplotlib Version</h3>
<p dir="auto">3.5.0</p>
<h3 dir="auto">Matplotlib Backend</h3>
<p dir="auto">module://matplotlib_inline.backend_inline</p>
<h3 dir="auto">Python version</h3>
<p dir="auto">Python 3.9.7</p>
<h3 dir="auto">Jupyter version</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Installation</h3>
<p dir="auto">conda</p> | <p dir="auto">Applies to version 1.4.2</p>
<p dir="auto">When using one of the GUI backends (tested with Tk and Qt using IPython) plot markers are only drawn if <code class="notranslate">markeredgecolor</code> is not set to 'none' and <code class="notranslate">markeredgewidth</code> is nonzero. So</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" plot(linspace(0,2), linspace(0,2)**2, marker='o', markeredgecolor='blue',
markeredgewidth=0.01, markerfacecolor='blue')"><pre class="notranslate"><code class="notranslate"> plot(linspace(0,2), linspace(0,2)**2, marker='o', markeredgecolor='blue',
markeredgewidth=0.01, markerfacecolor='blue')
</code></pre></div>
<p dir="auto">draws plot markers while</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" plot(linspace(0,2), linspace(0,2)**2, marker='o', markeredgecolor='blue',
markeredgewidth=0, markerfacecolor='blue')"><pre class="notranslate"><code class="notranslate"> plot(linspace(0,2), linspace(0,2)**2, marker='o', markeredgecolor='blue',
markeredgewidth=0, markerfacecolor='blue')
</code></pre></div>
<p dir="auto">or</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" plot(linspace(0,2), linspace(0,2)**2, marker='o', markeredgecolor='none',
markerfacecolor='blue')"><pre class="notranslate"><code class="notranslate"> plot(linspace(0,2), linspace(0,2)**2, marker='o', markeredgecolor='none',
markerfacecolor='blue')
</code></pre></div>
<p dir="auto">don't.</p>
<p dir="auto">Associated with this issue seems to be that the Axes method <code class="notranslate">fill_between</code> doesn’t draw anything if <code class="notranslate">linewidth</code> is set to zero. Could it be that any filled paths without outline are not drawn?</p>
<p dir="auto">Saving the figure to PDF via the GUI is <em>not</em> affected by this issue, saving to PNG is.</p> | 0 |
<p dir="auto">I would like to extend the <code class="notranslate">jax.checkpoint</code> aprroach to implement <a href="https://dl.acm.org/doi/10.1145/347837.347846" rel="nofollow">binomial checkpointing</a> for computing the <code class="notranslate">vjp</code> of a time stepping loop the performs computation in step():</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" def timestep(A,N):
for i in range(N):
A = step(A,i)"><pre class="notranslate"><code class="notranslate"> def timestep(A,N):
for i in range(N):
A = step(A,i)
</code></pre></div>
<p dir="auto">The<code class="notranslate">remat</code> approach, as I understand it, generates a version of a function that stores inputs of the function and none of the linearization points. For the <code class="notranslate">vjp</code> calculation, it reruns the function calculation thereby regenerating the intermediate linearization points.</p>
<p dir="auto">If I use <code class="notranslate">remat</code> for <code class="notranslate">step(A,i), then for each </code>i<code class="notranslate">, the arguments to </code>step(A,i)<code class="notranslate">will be stored. This is not what I want, because in my test case,</code>A` is very large.</p>
<p dir="auto">An alternate scheme such as binomial checkpointing can use some criterion to decide for which <code class="notranslate">i</code> to store the inputs instead of storing each them for each <code class="notranslate">i</code>. This allows for different tradeoffs between storage and recomputation. To implement such a checkpointing scheme, the following actions will need to be performed:</p>
<ol dir="auto">
<li>Store argument of step(A,i)</li>
<li>Restore arguments of step(Ai,)</li>
<li>Run step(i) without storing/restoring arguments based on step(A,i-1)’s completion.</li>
<li>Compute jvp for step(i) assuming that output of jvp(A,i+1) and is available</li>
</ol>
<p dir="auto">Does this seem feasible to implement on top of the existing remat approach?<br>
Are there any suggestions on how to go about it?</p> | <p dir="auto">It would be great to have a version of lax.scan used a recursive gradient checkpointing (e.g., "binomial checkpointing") that allows for differentiating through long time series with logarithmic time/space costs.</p>
<p dir="auto">In principle this could be built on top of the experimental <code class="notranslate">remat</code> decorator: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="527393684" data-permission-text="Title is private" data-url="https://github.com/google/jax/issues/1749" data-hovercard-type="pull_request" data-hovercard-url="/google/jax/pull/1749/hovercard" href="https://github.com/google/jax/pull/1749">#1749</a></p> | 1 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=jwalakompalli" rel="nofollow">Jwala Kompalli</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-5560?redirect=false" rel="nofollow">SPR-5560</a></strong> and commented</p>
<p dir="auto">Hello,</p>
<p dir="auto">I have an existing application usign spring version 1.2.6 deployed and perfectly working on on Sun server 8.1.<br>
When I am trying to deploy the same applciation on Sunserver 9.1, I am getting the below exception:</p>
<p dir="auto">sun-appserver9.1|javax.enterprise.system.stream.out|_ThreadID=21;_ThreadName=httpSSLWorkerThread-8080-0;|ERROR [BindTag.doStartTag 75] org.apache.taglibs.standard.lang.jstl.ImplicitObjects<br>
java.lang.ClassCastException: org.apache.taglibs.standard.lang.jstl.ImplicitObjects<br>
at javax.servlet.jsp.el.ImplicitObjectELResolver$ImplicitObjects.getImplicitObjects(ImplicitObjectELResolver.java:592)<br>
at javax.servlet.jsp.el.ImplicitObjectELResolver.getValue(ImplicitObjectELResolver.java:153)<br>
at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:143)<br>
at com.sun.el.parser.AstIdentifier.getValue(AstIdentifier.java:86)<br>
at com.sun.el.parser.AstMinus.getValue(AstMinus.java:55)<br>
at com.sun.el.parser.AstPlus.getValue(AstPlus.java:55)<br>
at com.sun.el.parser.AstDynamicExpression.getValue(AstDynamicExpression.java:59)<br>
at com.sun.el.parser.AstCompositeExpression.getValue(AstCompositeExpression.java:64)<br>
at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:206)<br>
at org.apache.jasper.runtime.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:121)<br>
at org.springframework.web.util.ExpressionEvaluationUtils$Jsp20ExpressionEvaluationHelper.evaluate(ExpressionEvaluationUtils.java:216)</p>
<p dir="auto">Can anyone throw any idea to solve this?</p>
<hr>
<p dir="auto">No further details from <a href="https://jira.spring.io/browse/SPR-5560?redirect=false" rel="nofollow">SPR-5560</a></p> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=christianleskowsky" rel="nofollow">Christian Leskowsky</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-3563?redirect=false" rel="nofollow">SPR-3563</a></strong> and commented</p>
<p dir="auto">See <a href="http://opensource.atlassian.com/projects/spring/browse/SPR-2628" rel="nofollow">http://opensource.atlassian.com/projects/spring/browse/SPR-2628</a> for more history.</p>
<p dir="auto">Here's the exception I'm seeing in Tomcat 5.5.23 (Websphere 6.1/DB2 running our application fails similarly)...</p>
<p dir="auto">exception<br>
org.apache.jasper.JasperException: org.apache.taglibs.standard.lang.jstl.ImplicitObjects<br>
org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:476)<br>
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:389)<br>
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:315)<br>
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)<br>
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)</p>
<p dir="auto">root cause<br>
java.lang.ClassCastException: org.apache.taglibs.standard.lang.jstl.ImplicitObjects<br>
org.apache.commons.el.ImplicitObjects.getImplicitObjects(ImplicitObjects.java:123)<br>
org.apache.commons.el.VariableResolverImpl.resolveVariable(VariableResolverImpl.java:125)<br>
org.apache.jasper.runtime.PageContextImpl.resolveVariable(PageContextImpl.java:854)<br>
org.apache.commons.el.NamedValue.evaluate(NamedValue.java:124)<br>
org.apache.commons.el.ComplexValue.evaluate(ComplexValue.java:140)<br>
org.apache.commons.el.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:263)<br>
org.apache.commons.el.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:190)<br>
org.springframework.web.util.ExpressionEvaluationUtils$Jsp20ExpressionEvaluationHelper.evaluate(ExpressionEvaluationUtils.java:398)<br>
org.springframework.web.util.ExpressionEvaluationUtils.doEvaluate(ExpressionEvaluationUtils.java:270)<br>
org.springframework.web.util.ExpressionEvaluationUtils.evaluateString(ExpressionEvaluationUtils.java:186)<br>
org.springframework.web.servlet.tags.MessageTag.resolveMessage(MessageTag.java:215)<br>
org.springframework.web.servlet.tags.MessageTag.doStartTagInternal(MessageTag.java:165)<br>
org.springframework.web.servlet.tags.RequestContextAwareTag.doStartTag(RequestContextAwareTag.java:77)<br>
org.apache.jsp.a_jsp._jspx_meth_spring_005fmessage_005f0(a_jsp.java:177)<br>
org.apache.jsp.a_jsp._jspx_meth_c_005fif_005f0(a_jsp.java:148)<br>
org.apache.jsp.a_jsp._jspService(a_jsp.java:78)<br>
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)<br>
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)<br>
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:328)<br>
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:315)<br>
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)<br>
javax.servlet.http.HttpServlet.service(HttpServlet.java:803)</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 2.0.2</p>
<p dir="auto"><strong>Attachments:</strong></p>
<ul dir="auto">
<li><a href="https://jira.spring.io/secure/attachment/12649/spring-fun.war" rel="nofollow">spring-fun.war</a> (<em>2.44 MB</em>)</li>
</ul>
<p dir="auto">1 votes, 0 watchers</p> | 1 |
<p dir="auto">If the output of a python autograd function is a view and gets modified in-place with a torch.no_grad block later, the python autograd function's backward function doesn't get called and instead an autograd backward pass (through the forward function) runs. This results in incorrect behavior, especially when the forward pass contains non-differentiable things.</p>
<p dir="auto">Expected behavior: we should either throw an error message about something or compute the correct gradients. Neither of those happen right now.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import torch
from torch.autograd import Function
class Mul3ThenFlatten(Function):
@staticmethod
def forward(ctx, x):
ctx.save_for_backward(x)
z = x.detach().numpy() * 3
# If I add a .contiguous() to the end of this statement, other things happen.
return torch.tensor(z).view(-1)
@staticmethod
def backward(ctx, dx):
x = ctx.saved_tensors[0]
print("Some side effect")
return dx.view(x.shape) * 3
x = torch.randn(2, 2, requires_grad=True)
output = Mul3ThenFlatten.apply(x)
# Modify the counter in no_grad mode.
with torch.no_grad():
output.fill_(1)
# Doesn't print "Some side effect" :/
output.sum().backward()
x.grad # is None, should really be something or at least an assert"><pre class="notranslate"><code class="notranslate">import torch
from torch.autograd import Function
class Mul3ThenFlatten(Function):
@staticmethod
def forward(ctx, x):
ctx.save_for_backward(x)
z = x.detach().numpy() * 3
# If I add a .contiguous() to the end of this statement, other things happen.
return torch.tensor(z).view(-1)
@staticmethod
def backward(ctx, dx):
x = ctx.saved_tensors[0]
print("Some side effect")
return dx.view(x.shape) * 3
x = torch.randn(2, 2, requires_grad=True)
output = Mul3ThenFlatten.apply(x)
# Modify the counter in no_grad mode.
with torch.no_grad():
output.fill_(1)
# Doesn't print "Some side effect" :/
output.sum().backward()
x.grad # is None, should really be something or at least an assert
</code></pre></div>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/colesbury/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/colesbury">@colesbury</a></p> | <h2 dir="auto"><g-emoji class="g-emoji" alias="bug" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f41b.png">🐛</g-emoji> Bug</h2>
<p dir="auto">Gradients aren't backpropagated when all three conditions are met:</p>
<ol dir="auto">
<li>Use <code class="notranslate">torch.utils.checkpoint</code>.</li>
<li>Place <code class="notranslate">nn.InstanceNorm?d</code> right before any in-place module such as <code class="notranslate">nn.ReLU(inplace=True)</code>.</li>
<li>The checkpoint returns the result of the in-place module.</li>
</ol>
<h2 dir="auto">To Reproduce</h2>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import torch
from torch import nn
from torch.utils.checkpoint import checkpoint
x = torch.ones(3, 2, 1, requires_grad=True)
model = nn.Sequential(
nn.InstanceNorm1d(2),
nn.ReLU(inplace=True),
)
y = checkpoint(model, x)
y.norm().backward()
print(x.grad)
# Output: None
# Expected: tensor([[[0.],[0.]], ...])"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">torch</span>
<span class="pl-k">from</span> <span class="pl-s1">torch</span> <span class="pl-k">import</span> <span class="pl-s1">nn</span>
<span class="pl-k">from</span> <span class="pl-s1">torch</span>.<span class="pl-s1">utils</span>.<span class="pl-s1">checkpoint</span> <span class="pl-k">import</span> <span class="pl-s1">checkpoint</span>
<span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-en">ones</span>(<span class="pl-c1">3</span>, <span class="pl-c1">2</span>, <span class="pl-c1">1</span>, <span class="pl-s1">requires_grad</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)
<span class="pl-s1">model</span> <span class="pl-c1">=</span> <span class="pl-s1">nn</span>.<span class="pl-v">Sequential</span>(
<span class="pl-s1">nn</span>.<span class="pl-v">InstanceNorm1d</span>(<span class="pl-c1">2</span>),
<span class="pl-s1">nn</span>.<span class="pl-v">ReLU</span>(<span class="pl-s1">inplace</span><span class="pl-c1">=</span><span class="pl-c1">True</span>),
)
<span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-en">checkpoint</span>(<span class="pl-s1">model</span>, <span class="pl-s1">x</span>)
<span class="pl-s1">y</span>.<span class="pl-en">norm</span>().<span class="pl-en">backward</span>()
<span class="pl-en">print</span>(<span class="pl-s1">x</span>.<span class="pl-s1">grad</span>)
<span class="pl-c"># Output: None</span>
<span class="pl-c"># Expected: tensor([[[0.],[0.]], ...])</span></pre></div>
<p dir="auto"><code class="notranslate">x</code> the input tensor doesn't receive gradients. <code class="notranslate">x.grad</code> is still <code class="notranslate">None</code>, which is not expected.</p>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto"><code class="notranslate">x.grad</code> should be <code class="notranslate">torch.zeros(3, 2, 1)</code>. If we remove any of the conditions, the gradients are backpropagated correctly:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# No in-place operation
model = nn.Sequential(
nn.InstanceNorm1d(2),
nn.ReLU(inplace=False),
)
y = checkpoint(model, x)
# No checkpoint
model = nn.Sequential(
nn.InstanceNorm1d(2),
nn.ReLU(inplace=True),
)
y = model(x)
# Not at the end of checkpoint
model = nn.Sequential(
nn.InstanceNorm1d(2),
nn.ReLU(inplace=True),
nn.Conv1d(2, 2, 1),
)
y = checkpoint(model, x)
# Other norm
model = nn.Sequential(
nn.BatchNorm1d(2),
nn.ReLU(inplace=True),
)
y = checkpoint(model, x)"><pre class="notranslate"><span class="pl-c"># No in-place operation</span>
<span class="pl-s1">model</span> <span class="pl-c1">=</span> <span class="pl-s1">nn</span>.<span class="pl-v">Sequential</span>(
<span class="pl-s1">nn</span>.<span class="pl-v">InstanceNorm1d</span>(<span class="pl-c1">2</span>),
<span class="pl-s1">nn</span>.<span class="pl-v">ReLU</span>(<span class="pl-s1">inplace</span><span class="pl-c1">=</span><span class="pl-c1">False</span>),
)
<span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-en">checkpoint</span>(<span class="pl-s1">model</span>, <span class="pl-s1">x</span>)
<span class="pl-c"># No checkpoint</span>
<span class="pl-s1">model</span> <span class="pl-c1">=</span> <span class="pl-s1">nn</span>.<span class="pl-v">Sequential</span>(
<span class="pl-s1">nn</span>.<span class="pl-v">InstanceNorm1d</span>(<span class="pl-c1">2</span>),
<span class="pl-s1">nn</span>.<span class="pl-v">ReLU</span>(<span class="pl-s1">inplace</span><span class="pl-c1">=</span><span class="pl-c1">True</span>),
)
<span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-en">model</span>(<span class="pl-s1">x</span>)
<span class="pl-c"># Not at the end of checkpoint</span>
<span class="pl-s1">model</span> <span class="pl-c1">=</span> <span class="pl-s1">nn</span>.<span class="pl-v">Sequential</span>(
<span class="pl-s1">nn</span>.<span class="pl-v">InstanceNorm1d</span>(<span class="pl-c1">2</span>),
<span class="pl-s1">nn</span>.<span class="pl-v">ReLU</span>(<span class="pl-s1">inplace</span><span class="pl-c1">=</span><span class="pl-c1">True</span>),
<span class="pl-s1">nn</span>.<span class="pl-v">Conv1d</span>(<span class="pl-c1">2</span>, <span class="pl-c1">2</span>, <span class="pl-c1">1</span>),
)
<span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-en">checkpoint</span>(<span class="pl-s1">model</span>, <span class="pl-s1">x</span>)
<span class="pl-c"># Other norm</span>
<span class="pl-s1">model</span> <span class="pl-c1">=</span> <span class="pl-s1">nn</span>.<span class="pl-v">Sequential</span>(
<span class="pl-s1">nn</span>.<span class="pl-v">BatchNorm1d</span>(<span class="pl-c1">2</span>),
<span class="pl-s1">nn</span>.<span class="pl-v">ReLU</span>(<span class="pl-s1">inplace</span><span class="pl-c1">=</span><span class="pl-c1">True</span>),
)
<span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-en">checkpoint</span>(<span class="pl-s1">model</span>, <span class="pl-s1">x</span>)</pre></div>
<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.2.0
Is debug build: No
CUDA used to build PyTorch: 10.0.130
OS: Ubuntu 18.04.2 LTS
GCC version: (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0
CMake version: version 3.10.2
Python version: 3.6
Is CUDA available: Yes
CUDA runtime version: 10.0.130
GPU models and configuration:
GPU 0: Tesla P40
GPU 1: Tesla P40
GPU 2: Tesla P40
GPU 3: Tesla P40
GPU 4: Tesla P40
GPU 5: Tesla P40
GPU 6: Tesla P40
GPU 7: Tesla P40
Nvidia driver version: 410.104
cuDNN version: /usr/lib/x86_64-linux-gnu/libcudnn.so.7.6.2
Versions of relevant libraries:
[pip3] numpy==1.16.4
[pip3] torch==1.2.0
[pip3] torchgpipe==0.0.3
[pip3] torchvision==0.4.0
[conda] blas 1.0 mkl
[conda] mkl 2019.4 243
[conda] mkl-include 2019.4 243
[conda] mkl-service 2.0.2 py36h7b6447c_0
[conda] mkl_fft 1.0.12 py36ha843d7b_0
[conda] mkl_random 1.0.2 py36hd81dba3_0
[conda] torch 1.2.0 pypi_0 pypi
[conda] torchgpipe 0.0.3 dev_0 <develop>
[conda] torchvision 0.4.0 pypi_0 pypi"><pre class="notranslate"><code class="notranslate">Collecting environment information...
PyTorch version: 1.2.0
Is debug build: No
CUDA used to build PyTorch: 10.0.130
OS: Ubuntu 18.04.2 LTS
GCC version: (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0
CMake version: version 3.10.2
Python version: 3.6
Is CUDA available: Yes
CUDA runtime version: 10.0.130
GPU models and configuration:
GPU 0: Tesla P40
GPU 1: Tesla P40
GPU 2: Tesla P40
GPU 3: Tesla P40
GPU 4: Tesla P40
GPU 5: Tesla P40
GPU 6: Tesla P40
GPU 7: Tesla P40
Nvidia driver version: 410.104
cuDNN version: /usr/lib/x86_64-linux-gnu/libcudnn.so.7.6.2
Versions of relevant libraries:
[pip3] numpy==1.16.4
[pip3] torch==1.2.0
[pip3] torchgpipe==0.0.3
[pip3] torchvision==0.4.0
[conda] blas 1.0 mkl
[conda] mkl 2019.4 243
[conda] mkl-include 2019.4 243
[conda] mkl-service 2.0.2 py36h7b6447c_0
[conda] mkl_fft 1.0.12 py36ha843d7b_0
[conda] mkl_random 1.0.2 py36hd81dba3_0
[conda] torch 1.2.0 pypi_0 pypi
[conda] torchgpipe 0.0.3 dev_0 <develop>
[conda] torchvision 0.4.0 pypi_0 pypi
</code></pre></div>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ezyang/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ezyang">@ezyang</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ssnl/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ssnl">@ssnl</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/albanD/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/albanD">@albanD</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/zou3519/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/zou3519">@zou3519</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></p> | 1 |
<p dir="auto">We seem to have broken compatibility with fortran-interface-only BLAS libraries. Specifically, we use <code class="notranslate">cblas_zdotc_sub</code> and <code class="notranslate">cblas_cdotc_sub</code>, which don't exist in some BLAS implementations such as CentOS 7's default <code class="notranslate">blas</code> package. Is this something we want to work around, revert, or just live with?</p> | <p dir="auto">I'd like to propose two added functions to the <code class="notranslate">merge</code> function. I'm not sure if this needs to be in core language or somewhere like in DataFrames, but as long as <code class="notranslate">merge</code> is in core, seems reasonable to put here (though input welcome!).</p>
<p dir="auto">In particular, I'd like to propose the following two options be offered as optional keywords:</p>
<ul dir="auto">
<li><code class="notranslate">validate</code>: duplicates the functionality of <code class="notranslate">validate</code> keyword in the <code class="notranslate">pandas</code> <a href="https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.merge.html" rel="nofollow">merge</a> function. Accepts <code class="notranslate">"1:1"</code>, <code class="notranslate">"1:m"</code>, <code class="notranslate">"m:1"</code>, and <code class="notranslate">"m:m"</code>, and raises an exception if the merge is not 1 to 1, 1 to many, many to 1, or many to many (respectively).</li>
<li><code class="notranslate">indicator</code>: duplicates functionality of <code class="notranslate">indicator</code> keyword in <code class="notranslate">pandas</code> [merge] function. If <code class="notranslate">True</code>, adds column to returned object which records whether resulting row has data from <code class="notranslate">both</code> datasets, from the <code class="notranslate">left_only</code>, or the <code class="notranslate">right_only</code> (or if we'd prefer numerics for generality, 1, 2, and 3)</li>
</ul>
<p dir="auto">(Both are actually replications of behavior from <a href="https://www.stata.com/manuals13/dmerge.pdf" rel="nofollow">Stata</a>)</p>
<p dir="auto">Personally, I find these exceedingly value when working with real world data, as there's no place problems become more evident than in merges, and it gets exhausting writing code the replicates these functionalities every time I merge (especially the <code class="notranslate">indicator</code> command).</p> | 0 |
<p dir="auto">[Enter steps to reproduce below:]</p>
<ol dir="auto">
<li>...</li>
<li>...</li>
</ol>
<p dir="auto"><strong>Atom Version</strong>: 0.198.0<br>
<strong>System</strong>: Unknown Windows Version<br>
<strong>Thrown From</strong>: Atom Core</p>
<h3 dir="auto">Stack Trace</h3>
<p dir="auto">Uncaught Error: Cannot find module './context-menu'<br>
Error: Cannot find module './context-menu'<br>
at Function.Module._resolveFilename (module.js:328:15)<br>
at Function.Module._load (module.js:270:25)<br>
at Module.require (module.js:357:17)<br>
at require (module.js:376:17)<br>
at BrowserWindow. (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\app.asar\src\browser\atom-window.js:152:27)<br>
at emitOne (events.js:77:13)<br>
at BrowserWindow.emit (events.js:166:7)<br>
at callFunction (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)<br>
at EventEmitter. (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)<br>
at emitMany (events.js:108:13)</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\atom.asar\renderer\api\lib\remote.js:77
Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at Function.Module._load (module.js:270:25)
at Module.require (module.js:357:17)
at require (module.js:376:17)
at BrowserWindow.<anonymous> (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\app.asar\src\browser\atom-window.js:152:27)
at emitOne (events.js:77:13)
at BrowserWindow.emit (events.js:166:7)
at callFunction (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)
at emitMany (events.js:108:13)
at metaToValue (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\atom.asar\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\atom.asar\renderer\api\lib\remote.js:111:26)
at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\app.asar\src\context-menu-manager.js:170:31)
at HTMLDocument.<anonymous> (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\app.asar\src\window-event-handler.js:149:33)
at HTMLDocument.handler (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\app.asar\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9)
at HTMLDocument.elemData.handle (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46)"><pre class="notranslate"><code class="notranslate">At C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\atom.asar\renderer\api\lib\remote.js:77
Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at Function.Module._load (module.js:270:25)
at Module.require (module.js:357:17)
at require (module.js:376:17)
at BrowserWindow.<anonymous> (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\app.asar\src\browser\atom-window.js:152:27)
at emitOne (events.js:77:13)
at BrowserWindow.emit (events.js:166:7)
at callFunction (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)
at emitMany (events.js:108:13)
at metaToValue (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\atom.asar\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\atom.asar\renderer\api\lib\remote.js:111:26)
at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\app.asar\src\context-menu-manager.js:170:31)
at HTMLDocument.<anonymous> (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\app.asar\src\window-event-handler.js:149:33)
at HTMLDocument.handler (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\app.asar\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9)
at HTMLDocument.elemData.handle (C:\Users\miroslav.smeral\AppData\Local\atom\app-0.198.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46)
</code></pre></div>
<h3 dir="auto">Commands</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" -1:41 settings-view:check-for-package-updates (atom-workspace.workspace.scrollbars-visible-always.theme-one-dark-syntax.theme-one-dark-ui)
3x -0:22 tool-panel:unfocus (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel)"><pre class="notranslate"><code class="notranslate"> -1:41 settings-view:check-for-package-updates (atom-workspace.workspace.scrollbars-visible-always.theme-one-dark-syntax.theme-one-dark-ui)
3x -0:22 tool-panel:unfocus (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel)
</code></pre></div>
<h3 dir="auto">Config</h3>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"core": {
"projectHome": "c:\\js\\meteor"
},
"editor": {
"invisibles": {}
}
}"><pre class="notranslate">{
<span class="pl-ent">"core"</span>: {
<span class="pl-ent">"projectHome"</span>: <span class="pl-s"><span class="pl-pds">"</span>c:<span class="pl-cce">\\</span>js<span class="pl-cce">\\</span>meteor<span class="pl-pds">"</span></span>
},
<span class="pl-ent">"editor"</span>: {
<span class="pl-ent">"invisibles"</span>: {}
}
}</pre></div>
<h3 dir="auto">Installed Packages</h3>
<div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User
altgr, v0.1.0
atom-dvorak, v0.1.1
meteor-api, v2.19.0
# Dev
No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span>
altgr, v0.<span class="pl-ii">1</span>.<span class="pl-ii">0</span>
atom<span class="pl-k">-</span>dvorak, v0.<span class="pl-ii">1</span>.<span class="pl-ii">1</span>
meteor<span class="pl-k">-</span>api, v2.<span class="pl-ii">19</span>.<span class="pl-ii">0</span>
<span class="pl-c"><span class="pl-c">#</span> Dev</span>
<span class="pl-en">No</span> <span class="pl-en">dev</span> packages</pre></div> | <p dir="auto">I right-clicked on a folder in the tree view</p>
<p dir="auto"><strong>Atom Version</strong>: 0.194.0<br>
<strong>System</strong>: Windows 7 Entreprise<br>
<strong>Thrown From</strong>: Atom Core</p>
<h3 dir="auto">Stack Trace</h3>
<p dir="auto">Uncaught Error: Cannot find module './context-menu'<br>
Error: Cannot find module './context-menu'<br>
at Function.Module._resolveFilename (module.js:328:15)<br>
at Function.Module._load (module.js:270:25)<br>
at Module.require (module.js:357:17)<br>
at require (module.js:376:17)<br>
at BrowserWindow. (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27)<br>
at emitOne (events.js:77:13)<br>
at BrowserWindow.emit (events.js:166:7)<br>
at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)<br>
at EventEmitter. (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)<br>
at emitMany (events.js:108:13)</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77
Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at Function.Module._load (module.js:270:25)
at Module.require (module.js:357:17)
at require (module.js:376:17)
at BrowserWindow.<anonymous> (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27)
at emitOne (events.js:77:13)
at BrowserWindow.emit (events.js:166:7)
at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)
at emitMany (events.js:108:13)
at metaToValue (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:111:26)
at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\context-menu-manager.js:170:31)
at HTMLDocument.<anonymous> (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\window-event-handler.js:149:33)
at HTMLDocument.handler (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9)
at HTMLDocument.elemData.handle (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46)
"><pre class="notranslate"><code class="notranslate">At C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77
Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at Function.Module._load (module.js:270:25)
at Module.require (module.js:357:17)
at require (module.js:376:17)
at BrowserWindow.<anonymous> (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27)
at emitOne (events.js:77:13)
at BrowserWindow.emit (events.js:166:7)
at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)
at emitMany (events.js:108:13)
at metaToValue (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:111:26)
at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\context-menu-manager.js:170:31)
at HTMLDocument.<anonymous> (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\window-event-handler.js:149:33)
at HTMLDocument.handler (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9)
at HTMLDocument.elemData.handle (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46)
</code></pre></div>
<h3 dir="auto">Commands</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" -4:55.5.0 editor:checkout-head-revision (atom-text-editor.editor.is-focused)
2x -3:41.6.0 window:focus-pane-on-right (atom-text-editor.editor)
-3:17.5.0 application:add-project-folder (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel)
-2:47.4.0 editor:newline (atom-text-editor.editor.is-focused)
-2:38.2.0 core:cut (atom-text-editor.editor)
-2:36.5.0 core:paste (atom-text-editor.editor.is-focused)
-2:26.6.0 core:save (atom-text-editor.editor.is-focused)
-2:20.6.0 core:move-down (atom-text-editor.editor)
-2:20.4.0 autocomplete-plus:confirm (atom-text-editor.editor)
-2:15.8.0 core:save (atom-text-editor.editor)
-2:08.7.0 core:copy (atom-text-editor.editor.is-focused)
-2:01.2.0 core:paste (atom-text-editor.editor.is-focused)
-1:59.7.0 core:save (atom-text-editor.editor.is-focused)
-1:52.2.0 core:paste (atom-text-editor.editor.is-focused)
-1:51.6.0 core:save (atom-text-editor.editor.is-focused)
-1:30.6.0 core:backspace (atom-text-editor.editor)"><pre class="notranslate"><code class="notranslate"> -4:55.5.0 editor:checkout-head-revision (atom-text-editor.editor.is-focused)
2x -3:41.6.0 window:focus-pane-on-right (atom-text-editor.editor)
-3:17.5.0 application:add-project-folder (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel)
-2:47.4.0 editor:newline (atom-text-editor.editor.is-focused)
-2:38.2.0 core:cut (atom-text-editor.editor)
-2:36.5.0 core:paste (atom-text-editor.editor.is-focused)
-2:26.6.0 core:save (atom-text-editor.editor.is-focused)
-2:20.6.0 core:move-down (atom-text-editor.editor)
-2:20.4.0 autocomplete-plus:confirm (atom-text-editor.editor)
-2:15.8.0 core:save (atom-text-editor.editor)
-2:08.7.0 core:copy (atom-text-editor.editor.is-focused)
-2:01.2.0 core:paste (atom-text-editor.editor.is-focused)
-1:59.7.0 core:save (atom-text-editor.editor.is-focused)
-1:52.2.0 core:paste (atom-text-editor.editor.is-focused)
-1:51.6.0 core:save (atom-text-editor.editor.is-focused)
-1:30.6.0 core:backspace (atom-text-editor.editor)
</code></pre></div>
<h3 dir="auto">Config</h3>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"core": {
"ignoredNames": [
"node_modules"
],
"themes": [
"atom-dark-ui",
"seti-syntax"
],
"disabledPackages": [
"Tern"
],
"projectHome": "Y:\\app-tfoumax"
},
"editor": {
"invisibles": {},
"softWrap": true,
"showIndentGuide": true
}
}"><pre class="notranslate">{
<span class="pl-ent">"core"</span>: {
<span class="pl-ent">"ignoredNames"</span>: [
<span class="pl-s"><span class="pl-pds">"</span>node_modules<span class="pl-pds">"</span></span>
],
<span class="pl-ent">"themes"</span>: [
<span class="pl-s"><span class="pl-pds">"</span>atom-dark-ui<span class="pl-pds">"</span></span>,
<span class="pl-s"><span class="pl-pds">"</span>seti-syntax<span class="pl-pds">"</span></span>
],
<span class="pl-ent">"disabledPackages"</span>: [
<span class="pl-s"><span class="pl-pds">"</span>Tern<span class="pl-pds">"</span></span>
],
<span class="pl-ent">"projectHome"</span>: <span class="pl-s"><span class="pl-pds">"</span>Y:<span class="pl-cce">\\</span>app-tfoumax<span class="pl-pds">"</span></span>
},
<span class="pl-ent">"editor"</span>: {
<span class="pl-ent">"invisibles"</span>: {},
<span class="pl-ent">"softWrap"</span>: <span class="pl-c1">true</span>,
<span class="pl-ent">"showIndentGuide"</span>: <span class="pl-c1">true</span>
}
}</pre></div>
<h3 dir="auto">Installed Packages</h3>
<div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User
autocomplete-plus, v2.12.0
autocomplete-snippets, v1.2.0
javascript-snippets, v1.0.0
jshint, v1.3.5
language-ejs, v0.1.0
linter, v0.12.1
pretty-json, v0.3.3
save-session, v0.14.0
Search, v0.4.0
seti-syntax, v0.4.0
# Dev
No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span>
autocomplete<span class="pl-k">-</span>plus, v2.<span class="pl-ii">12</span>.<span class="pl-ii">0</span>
autocomplete<span class="pl-k">-</span>snippets, v1.<span class="pl-ii">2</span>.<span class="pl-ii">0</span>
javascript<span class="pl-k">-</span>snippets, v1.<span class="pl-ii">0</span>.<span class="pl-ii">0</span>
jshint, v1.<span class="pl-ii">3</span>.<span class="pl-ii">5</span>
language<span class="pl-k">-</span>ejs, v0.<span class="pl-ii">1</span>.<span class="pl-ii">0</span>
linter, v0.<span class="pl-ii">12</span>.<span class="pl-ii">1</span>
pretty<span class="pl-k">-</span>json, v0.<span class="pl-ii">3</span>.<span class="pl-ii">3</span>
save<span class="pl-k">-</span>session, v0.<span class="pl-ii">14</span>.<span class="pl-ii">0</span>
Search, v0.<span class="pl-ii">4</span>.<span class="pl-ii">0</span>
seti<span class="pl-k">-</span>syntax, v0.<span class="pl-ii">4</span>.<span class="pl-ii">0</span>
<span class="pl-c"><span class="pl-c">#</span> Dev</span>
<span class="pl-en">No</span> <span class="pl-en">dev</span> packages</pre></div> | 1 |
<p dir="auto">I need to detect taps on a TextField. I'm trying to do this with GestureDetector, but it doesn't seem be working:</p>
<div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="GestureDetector(
behavior: HitTestBehavior.translucent,
onTap: () {
print('hi');
},
child: TextField(),
),"><pre class="notranslate"><span class="pl-c1">GestureDetector</span>(
behavior<span class="pl-k">:</span> <span class="pl-c1">HitTestBehavior</span>.translucent,
onTap<span class="pl-k">:</span> () {
<span class="pl-en">print</span>(<span class="pl-s">'hi'</span>);
},
child<span class="pl-k">:</span> <span class="pl-c1">TextField</span>(),
),</pre></div>
<p dir="auto">Nothing is printed when tapping.</p>
<p dir="auto">Note that I need to perform an action every time the TextField is tapped, <strong>even after it has focus</strong>. Therefore, I don't believe utilizing FocusNode would work.</p> | <h2 dir="auto">Add onTap gesture on a textField</h2>
<p dir="auto">onTap gesture using GestureDetector class is working for every element except for the textField type.<br>
How can i use onTap gesture on textfield element?</p> | 1 |
<h3 dir="auto">Problem description</h3>
<p dir="auto">Tooltip is displaying under the table rows (on z-axis)</p>
<h3 dir="auto">Link to minimally-working code that reproduces the issue</h3>
<p dir="auto"><a href="http://www.webpackbin.com/Eyxr9TOLKz" rel="nofollow">http://www.webpackbin.com/Eyxr9TOLKz</a></p>
<h3 dir="auto">Versions</h3>
<ul dir="auto">
<li>Material-UI: 0.17.0</li>
<li>React: 15.0.2</li>
<li>Browser: any, checked on the latest versions of firefox and chrome. (Google Chrome Version 56.0.2924.87 (64-bit))</li>
</ul> | <p dir="auto">When trying to view an IconButton's tooltip while contained in a table cell it seems to be hidden by an overflow of some kind.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/ab6b87235f3953c59cf549790281672c785cb444868e8f0ae2d1aaa7bf640e82/68747470733a2f2f6431376f793176686e61783166372e636c6f756466726f6e742e6e65742f6974656d732f3039324a3268327a333432353063324d316a336c2f53637265656e2532305265636f7264696e67253230323031372d30312d3132253230617425323031322e3137253230414d2e6769663f763d3038373564363063"><img src="https://camo.githubusercontent.com/ab6b87235f3953c59cf549790281672c785cb444868e8f0ae2d1aaa7bf640e82/68747470733a2f2f6431376f793176686e61783166372e636c6f756466726f6e742e6e65742f6974656d732f3039324a3268327a333432353063324d316a336c2f53637265656e2532305265636f7264696e67253230323031372d30312d3132253230617425323031322e3137253230414d2e6769663f763d3038373564363063" alt="" data-animated-image="" data-canonical-src="https://d17oy1vhnax1f7.cloudfront.net/items/092J2h2z34250c2M1j3l/Screen%20Recording%202017-01-12%20at%2012.17%20AM.gif?v=0875d60c" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto">Hi. I'm trying to integrate Firebase Auth with Flutter. For that I need to register my Android App with Firebase. For Google Sign-In, I require the SHA-1 Certificate of my Android App.</p>
<p dir="auto">On a regular app, this used to be possible by going to the <strong>Gradle Panel</strong> on the right hand side and executing the <strong><code class="notranslate">signingReport</code> Gradle Task</strong>. However on the flutter app, there is no such Panel, and I can't find any way to show it.</p>
<p dir="auto">I've also posted a <a href="https://stackoverflow.com/questions/53481094/flutter-get-sha-1-certificate-android-studio-3-2-1" rel="nofollow">StackOverflow Question</a>, which has been there for 2 days but has no response. Please allow for a way to get a flutter app's SHA-1 certificate conveniently. If a solution to this already exists, please let me know.</p> | <p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/UwaisWisitech/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/UwaisWisitech">@UwaisWisitech</a> commented on <a href="https://github.com/flutter/flutter/issues/26059" data-hovercard-type="issue" data-hovercard-url="/flutter/flutter/issues/26059/hovercard">Fri Jan 04 2019</a></p>
<p dir="auto">I need the SHA-1 key of my Flutter App for Google login.</p>
<p dir="auto">Previously, its possible in Gradle Panel on executing the signingReport Gradle. But there is no Gradle Panel in Flutter.</p>
<hr>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/zoechi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/zoechi">@zoechi</a> commented on <a href="https://github.com/flutter/flutter/issues/26059#issuecomment-451393351" data-hovercard-type="issue" data-hovercard-url="/flutter/flutter/issues/26059/hovercard">Fri Jan 04 2019</a></p>
<p dir="auto">Please check <a href="https://stackoverflow.com/questions/51845559/generate-sha-1-for-flutter-app" rel="nofollow">https://stackoverflow.com/questions/51845559/generate-sha-1-for-flutter-app</a></p> | 1 |
<p dir="auto">With an iterator that returns a borrowed reference to its contents, it’s possible to hold the reference longer than the reference is valid. In particular, if the iterator changes its internal state, the new state can be observed via the saved reference. Check it out:</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="fn crash_please() {
let mut iter = Newtype(Some(Box::new(0)));
let saved = iter.next().unwrap();
println!("{}", saved);
iter.0 = None;
println!("{}", saved);
}
struct Newtype(Option<Box<usize>>);
impl<'a> Iterator for Newtype {
type Item = &'a Box<usize>;
fn next(&mut self) -> Option<&Box<usize>> {
self.0.as_ref()
}
}"><pre class="notranslate"><span class="pl-k">fn</span> <span class="pl-en">crash_please</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">let</span> <span class="pl-k">mut</span> iter = <span class="pl-v">Newtype</span><span class="pl-kos">(</span><span class="pl-v">Some</span><span class="pl-kos">(</span><span class="pl-smi">Box</span><span class="pl-kos">::</span><span class="pl-en">new</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">let</span> saved = iter<span class="pl-kos">.</span><span class="pl-en">next</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">unwrap</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">println</span><span class="pl-en">!</span><span class="pl-kos">(</span><span class="pl-s">"{}"</span>, saved<span class="pl-kos">)</span><span class="pl-kos">;</span>
iter<span class="pl-kos">.</span><span class="pl-c1">0</span> = <span class="pl-v">None</span><span class="pl-kos">;</span>
<span class="pl-en">println</span><span class="pl-en">!</span><span class="pl-kos">(</span><span class="pl-s">"{}"</span>, saved<span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">struct</span> <span class="pl-smi">Newtype</span><span class="pl-kos">(</span><span class="pl-smi">Option</span><span class="pl-kos"><</span><span class="pl-smi">Box</span><span class="pl-kos"><</span><span class="pl-smi">usize</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-c1">'</span><span class="pl-ent">a</span><span class="pl-kos">></span> <span class="pl-smi">Iterator</span> <span class="pl-k">for</span> <span class="pl-smi">Newtype</span> <span class="pl-kos">{</span>
<span class="pl-k">type</span> <span class="pl-smi">Item</span> = <span class="pl-c1">&</span><span class="pl-c1">'</span><span class="pl-ent">a</span> <span class="pl-smi">Box</span><span class="pl-kos"><</span><span class="pl-smi">usize</span><span class="pl-kos">></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-c1">&</span><span class="pl-smi">Box</span><span class="pl-kos"><</span><span class="pl-smi">usize</span><span class="pl-kos">></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">0</span><span class="pl-kos">.</span><span class="pl-en">as_ref</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 clearly shouldn’t type check, but it does, and runs, and crashes:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="0
zsh: illegal hardware instruction target/collect_bug"><pre class="notranslate">0
zsh: illegal hardware instruction target/collect_bug</pre></div>
<p dir="auto">Where the type error should be, I’m not sure. It seems like it’s actually a problem with traits. If we change the above code to define <code class="notranslate">next</code> in a non-trait impl, then it no longer passes the borrow checker:</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="impl<'a> Newtype {
fn next(&mut self) -> Option<&Box<usize>> {
self.0.as_ref()
}
}"><pre class="notranslate"><span class="pl-k">impl</span><span class="pl-kos"><</span><span class="pl-c1">'</span><span class="pl-ent">a</span><span class="pl-kos">></span> <span class="pl-smi">Newtype</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-c1">&</span><span class="pl-smi">Box</span><span class="pl-kos"><</span><span class="pl-smi">usize</span><span class="pl-kos">></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">0</span><span class="pl-kos">.</span><span class="pl-en">as_ref</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">I originally observed this bug when testing an iterator that owns a <code class="notranslate">String</code>; at each iteration it modifies the string and then returns a string slice borrowed from it. My non-test code worked fine because it finished with each value from the iterator before calling <code class="notranslate">next()</code> again, but the test code collected the iterator into a vector. This meant that all the slices in the vector continued to point to the same buffer, even after it had been modified. So for example, if the strings written to the buffer were <code class="notranslate">"aaa"</code>, <code class="notranslate">"bb"</code>, and <code class="notranslate">"c"</code>, then in the end the vector would contain <code class="notranslate">"cba"</code>, <code class="notranslate">"cb"</code>, and <code class="notranslate">"b"</code>. Creepy.</p>
<h2 dir="auto">Version</h2>
<p dir="auto">I’m using 1.0.0-alpha still, because I’m teaching a class and we don’t want to follow a moving target, but I confirmed that the Feb. 26 nightly has the same bug.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="rustc 1.0.0-alpha (44a287e6e 2015-01-08 17:03:40 -0800)
binary: rustc
commit-hash: 44a287e6eb22ec3c2a687fc156813577464017f7
commit-date: 2015-01-08 17:03:40 -0800
host: x86_64-apple-darwin
release: 1.0.0-alpha"><pre class="notranslate"><code class="notranslate">rustc 1.0.0-alpha (44a287e6e 2015-01-08 17:03:40 -0800)
binary: rustc
commit-hash: 44a287e6eb22ec3c2a687fc156813577464017f7
commit-date: 2015-01-08 17:03:40 -0800
host: x86_64-apple-darwin
release: 1.0.0-alpha
</code></pre></div> | <p dir="auto">(Sorry for the bad title)</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="trait Fun {
type Output;
fn call<'x>(&'x self) -> Self::Output;
}
struct Holder { x: String }
impl<'a> Fun for Holder {
type Output = &'a str;
fn call<'b>(&'b self) -> &'b str {
&self.x[]
}
}"><pre class="notranslate"><span class="pl-k">trait</span> <span class="pl-smi">Fun</span> <span class="pl-kos">{</span>
<span class="pl-k">type</span> <span class="pl-smi">Output</span><span class="pl-kos">;</span>
<span class="pl-k">fn</span> <span class="pl-en">call</span><span class="pl-kos"><</span><span class="pl-c1">'</span><span class="pl-ent">x</span><span class="pl-kos">></span><span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-c1">'</span><span class="pl-ent">x</span> <span class="pl-smi">self</span><span class="pl-kos">)</span> -> <span class="pl-smi">Self</span><span class="pl-kos">::</span><span class="pl-smi">Output</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">struct</span> <span class="pl-smi">Holder</span> <span class="pl-kos">{</span> <span class="pl-c1">x</span><span class="pl-kos">:</span> <span class="pl-smi">String</span> <span class="pl-kos">}</span>
<span class="pl-k">impl</span><span class="pl-kos"><</span><span class="pl-c1">'</span><span class="pl-ent">a</span><span class="pl-kos">></span> <span class="pl-smi">Fun</span> <span class="pl-k">for</span> <span class="pl-smi">Holder</span> <span class="pl-kos">{</span>
<span class="pl-k">type</span> <span class="pl-smi">Output</span> = <span class="pl-c1">&</span><span class="pl-c1">'</span><span class="pl-ent">a</span> <span class="pl-smi">str</span><span class="pl-kos">;</span>
<span class="pl-k">fn</span> <span class="pl-en">call</span><span class="pl-kos"><</span><span class="pl-c1">'</span><span class="pl-ent">b</span><span class="pl-kos">></span><span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-c1">'</span><span class="pl-ent">b</span> <span class="pl-smi">self</span><span class="pl-kos">)</span> -> <span class="pl-c1">&</span><span class="pl-c1">'</span><span class="pl-ent">b</span> <span class="pl-smi">str</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">x</span><span class="pl-kos">[</span><span class="pl-kos">]</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">This compiles even though the trait's definition should require <code class="notranslate">call</code>'s signature in the impl to be <code class="notranslate">fn call<'b>(&'b self) -> &'a str</code>.</p> | 1 |
<p dir="auto">Basically this is a straightforward feature request.</p> | <p dir="auto">Opening this as a response to <a href="https://stackoverflow.com/questions/44490622/disable-a-text-edit-field-in-flutter" rel="nofollow">https://stackoverflow.com/questions/44490622/disable-a-text-edit-field-in-flutter</a></p>
<p dir="auto">Original question: "I need to disable TextFormField occasionally. I couldn't find a flag in the widget, or the controller to simply make it read only or disable. What is the best way to do it?"</p> | 1 |
<p dir="auto">Just found out about this dont know if you consider it as a bug or not</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="let foo, bar
let bim = boum
[ foo, bar ] = ['foo', 'bar']"><pre class="notranslate"><code class="notranslate">let foo, bar
let bim = boum
[ foo, bar ] = ['foo', 'bar']
</code></pre></div>
<p dir="auto">compile to</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="'use strict';
var foo = undefined,
bar = undefined;
var bim = boum[(foo, bar)] = ['foo', 'bar'];"><pre class="notranslate"><code class="notranslate">'use strict';
var foo = undefined,
bar = undefined;
var bim = boum[(foo, bar)] = ['foo', 'bar'];
</code></pre></div>
<p dir="auto">whereas</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="let foo, bar
let bim = boum;
[ foo, bar ] = ['foo', 'bar']"><pre class="notranslate"><code class="notranslate">let foo, bar
let bim = boum;
[ foo, bar ] = ['foo', 'bar']
</code></pre></div>
<p dir="auto">compile to</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="'use strict';
var foo = undefined,
bar = undefined;
var bim = boum;
var _ref = ['foo', 'bar'];
foo = _ref[0];
bar = _ref[1];
_ref;"><pre class="notranslate"><code class="notranslate">'use strict';
var foo = undefined,
bar = undefined;
var bim = boum;
var _ref = ['foo', 'bar'];
foo = _ref[0];
bar = _ref[1];
_ref;
</code></pre></div>
<p dir="auto">debugger link:<br>
<a href="http://babeljs.io/repl/#?experimental=false&evaluate=false&loose=true&spec=false&code=let%20foo%2C%20bar%0Alet%20bim%20%3D%20boum%3B%0A%5B%20foo%2C%20bar%20%5D%20%3D%20%20%5B'foo'%2C%20'bar'%5D%0A%0A" rel="nofollow">http://babeljs.io/repl/#?experimental=false&evaluate=false&loose=true&spec=false&code=let%20foo%2C%20bar%0Alet%20bim%20%3D%20boum%3B%0A%5B%20foo%2C%20bar%20%5D%20%3D%20%20%5B'foo'%2C%20'bar'%5D%0A%0A</a></p> | <p dir="auto">This code:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const foo = "foo";
function foobar() {
for(let item of [1,2,3]) {
let foo = "bar";
[bar, foo] = 1, 2;
}
}"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">foo</span> <span class="pl-c1">=</span> <span class="pl-s">"foo"</span><span class="pl-kos">;</span>
<span class="pl-k">function</span> <span class="pl-en">foobar</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">let</span> <span class="pl-s1">item</span> <span class="pl-k">of</span> <span class="pl-kos">[</span><span class="pl-c1">1</span><span class="pl-kos">,</span><span class="pl-c1">2</span><span class="pl-kos">,</span><span class="pl-c1">3</span><span class="pl-kos">]</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">let</span> <span class="pl-s1">foo</span> <span class="pl-c1">=</span> <span class="pl-s">"bar"</span><span class="pl-kos">;</span>
<span class="pl-kos">[</span><span class="pl-s1">bar</span><span class="pl-kos">,</span> <span class="pl-s1">foo</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-c1">2</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">Generates this one:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// [ some code striped]
var foo = "foo";
function foobar() {
var _arr = [1, 2, 3];
for (var _i = 0; _i < _arr.length; _i++) {
var _temp, _temp2;
var item = _arr[_i];
var _foo = "bar";
(_temp = 1, _temp2 = _slicedToArray(_temp, 2), bar = _temp2[0], foo = _temp2[1], _temp), 2;
}
}"><pre class="notranslate"><span class="pl-c">// [ some code striped]</span>
<span class="pl-k">var</span> <span class="pl-s1">foo</span> <span class="pl-c1">=</span> <span class="pl-s">"foo"</span><span class="pl-kos">;</span>
<span class="pl-k">function</span> <span class="pl-en">foobar</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">_arr</span> <span class="pl-c1">=</span> <span class="pl-kos">[</span><span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-c1">2</span><span class="pl-kos">,</span> <span class="pl-c1">3</span><span class="pl-kos">]</span><span class="pl-kos">;</span>
<span class="pl-k">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">0</span><span class="pl-kos">;</span> <span class="pl-s1">_i</span> <span class="pl-c1"><</span> <span class="pl-s1">_arr</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">_temp</span><span class="pl-kos">,</span> <span class="pl-s1">_temp2</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">item</span> <span class="pl-c1">=</span> <span class="pl-s1">_arr</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">var</span> <span class="pl-s1">_foo</span> <span class="pl-c1">=</span> <span class="pl-s">"bar"</span><span class="pl-kos">;</span>
<span class="pl-kos">(</span><span class="pl-s1">_temp</span> <span class="pl-c1">=</span> <span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-s1">_temp2</span> <span class="pl-c1">=</span> <span class="pl-en">_slicedToArray</span><span class="pl-kos">(</span><span class="pl-s1">_temp</span><span class="pl-kos">,</span> <span class="pl-c1">2</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-s1">bar</span> <span class="pl-c1">=</span> <span class="pl-s1">_temp2</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-s1">foo</span> <span class="pl-c1">=</span> <span class="pl-s1">_temp2</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-s1">_temp</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-c1">2</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">And should generate this:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// [striped code]
var item = _arr[_i];
var _foo = "bar";
(_temp = 1, _temp2 = _slicedToArray(_temp, 2), bar = _temp2[0], _foo = _temp2[1], _temp), 2;
// [striped code"><pre class="notranslate"><span class="pl-c">// [striped code]</span>
<span class="pl-k">var</span> <span class="pl-s1">item</span> <span class="pl-c1">=</span> <span class="pl-s1">_arr</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">var</span> <span class="pl-s1">_foo</span> <span class="pl-c1">=</span> <span class="pl-s">"bar"</span><span class="pl-kos">;</span>
<span class="pl-kos">(</span><span class="pl-s1">_temp</span> <span class="pl-c1">=</span> <span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-s1">_temp2</span> <span class="pl-c1">=</span> <span class="pl-en">_slicedToArray</span><span class="pl-kos">(</span><span class="pl-s1">_temp</span><span class="pl-kos">,</span> <span class="pl-c1">2</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-s1">bar</span> <span class="pl-c1">=</span> <span class="pl-s1">_temp2</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-s1">_foo</span> <span class="pl-c1">=</span> <span class="pl-s1">_temp2</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-s1">_temp</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-c1">2</span><span class="pl-kos">;</span>
<span class="pl-c">// [striped code</span></pre></div>
<p dir="auto">So, the current babel version (5.4.3), in a for loop overwrites the value of the var declared as const.</p> | 1 |
<p dir="auto">I added my own custom protocol, which i create a BrowserWindow from using <code class="notranslate">mist://interface</code>:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="protocol.registerHttpProtocol('mist', function(request, callback) {
var call = {
url: (request.url.indexOf('mist://interface') !== -1) ? global.interfaceAppUrl + request.url.replace('mist://interface','') : '',
method: request.method,
referrer: request.referrer
};
console.log(call);
callback(call);
}, function (error) {
if (error)
console.error('Failed to register protocol')
});"><pre class="notranslate"><span class="pl-s1">protocol</span><span class="pl-kos">.</span><span class="pl-en">registerHttpProtocol</span><span class="pl-kos">(</span><span class="pl-s">'mist'</span><span class="pl-kos">,</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">request</span><span class="pl-kos">,</span> <span class="pl-s1">callback</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">call</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-c1">url</span>: <span class="pl-kos">(</span><span class="pl-s1">request</span><span class="pl-kos">.</span><span class="pl-c1">url</span><span class="pl-kos">.</span><span class="pl-en">indexOf</span><span class="pl-kos">(</span><span class="pl-s">'mist://interface'</span><span class="pl-kos">)</span> <span class="pl-c1">!==</span> <span class="pl-c1">-</span><span class="pl-c1">1</span><span class="pl-kos">)</span> ? <span class="pl-s1">global</span><span class="pl-kos">.</span><span class="pl-c1">interfaceAppUrl</span> <span class="pl-c1">+</span> <span class="pl-s1">request</span><span class="pl-kos">.</span><span class="pl-c1">url</span><span class="pl-kos">.</span><span class="pl-en">replace</span><span class="pl-kos">(</span><span class="pl-s">'mist://interface'</span><span class="pl-kos">,</span><span class="pl-s">''</span><span class="pl-kos">)</span> : <span class="pl-s">''</span><span class="pl-kos">,</span>
<span class="pl-c1">method</span>: <span class="pl-s1">request</span><span class="pl-kos">.</span><span class="pl-c1">method</span><span class="pl-kos">,</span>
<span class="pl-c1">referrer</span>: <span class="pl-s1">request</span><span class="pl-kos">.</span><span class="pl-c1">referrer</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">call</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">callback</span><span class="pl-kos">(</span><span class="pl-s1">call</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">function</span> <span class="pl-kos">(</span><span class="pl-s1">error</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">error</span><span class="pl-kos">)</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">error</span><span class="pl-kos">(</span><span class="pl-s">'Failed to register protocol'</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 loads the initial page fine, but none of the linked scripts seemed to be loaded later.<br>
I also tried adding a script tag using javascript manually:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var script = document.createElement('script');
script.type = 'text/javascript';
script.src = '/packages/meteor.js?19730f4ff059088b3f7f14c0672d155218a1802d4';
document.getElementsByTagName('body')[0].appendChild(script);"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">script</span> <span class="pl-c1">=</span> <span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-en">createElement</span><span class="pl-kos">(</span><span class="pl-s">'script'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">script</span><span class="pl-kos">.</span><span class="pl-c1">type</span> <span class="pl-c1">=</span> <span class="pl-s">'text/javascript'</span><span class="pl-kos">;</span>
<span class="pl-s1">script</span><span class="pl-kos">.</span><span class="pl-c1">src</span> <span class="pl-c1">=</span> <span class="pl-s">'/packages/meteor.js?19730f4ff059088b3f7f14c0672d155218a1802d4'</span><span class="pl-kos">;</span>
<span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-en">getElementsByTagName</span><span class="pl-kos">(</span><span class="pl-s">'body'</span><span class="pl-kos">)</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-en">appendChild</span><span class="pl-kos">(</span><span class="pl-s1">script</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">But i can't see this protocoll handler beeing called and the js doesn't load and execute.</p>
<p dir="auto">Hint: this seems to happen if the url, is relative or absolute and not contains the protocol.<br>
Though by web standards, relative or absolute URLs should get the protocol of the current location.</p> | <p dir="auto">some webpage omit the <code class="notranslate">http</code> prefix to minify the page, like <code class="notranslate">http://taobao.com</code><br>
electron now can not recognize this kind of url, and will log error like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[22608:0521/234915:INFO:CONSOLE(0)] "Not allowed to load local resource: file://g.alicdn.com/kg/offline/3.0.1/index-min.js?t=20131121234724.js", source: http://www.taobao.com/ (0)"><pre class="notranslate"><code class="notranslate">[22608:0521/234915:INFO:CONSOLE(0)] "Not allowed to load local resource: file://g.alicdn.com/kg/offline/3.0.1/index-min.js?t=20131121234724.js", source: http://www.taobao.com/ (0)
</code></pre></div> | 1 |
<p dir="auto">As part of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3999709" data-permission-text="Title is private" data-url="https://github.com/rust-lang/rust/issues/2137" data-hovercard-type="issue" data-hovercard-url="/rust-lang/rust/issues/2137/hovercard" href="https://github.com/rust-lang/rust/issues/2137">#2137</a> and <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1025571" data-permission-text="Title is private" data-url="https://github.com/rust-lang/rust/issues/456" data-hovercard-type="issue" data-hovercard-url="/rust-lang/rust/issues/456/hovercard" href="https://github.com/rust-lang/rust/issues/456">#456</a> we have added the crate version to every exported symbol, but not quite in the correct way.</p>
<p dir="auto">Right now the final part of the path used for the symbol ends with <code class="notranslate">"V" + vers</code>, which gets passed through the mangler. The original design called for <code class="notranslate">@vers</code> but the <code class="notranslate">@</code> isn't a valid symbol on all platforms (I think?) so gets mangled to <code class="notranslate">_sbox_</code>, which is a bizarre way to indicate the version.</p>
<p dir="auto">Mangling also makes any dots in the version go away so a version "0.2" symbol will end with "V02".</p>
<p dir="auto">There is some additional discussion <a href="https://mail.mozilla.org/pipermail/rust-dev/2010-December/000164.html" rel="nofollow">here</a> about how this is supposed to work that I haven't read.</p> | <h3 dir="auto">Status as of 2020-04-18</h3>
<p dir="auto">We intend to stabilize the saturating-float-casts behavior for <code class="notranslate">as</code>, and have stabilized unsafe library functions that handle the previous behavior. See <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="602353172" data-permission-text="Title is private" data-url="https://github.com/rust-lang/rust/issues/71269" data-hovercard-type="pull_request" data-hovercard-url="/rust-lang/rust/pull/71269/hovercard" href="https://github.com/rust-lang/rust/pull/71269">#71269</a> for the latest discussion on that stabilization process.</p>
<h3 dir="auto">Status as of 2018-11-05</h3>
<p dir="auto">A flag has been implemented in the compiler, <code class="notranslate">-Zsaturating-float-casts</code>, which will cause all float to integer casts have "saturating" behavior where if it's out of bounds it's clamped to the nearest bound. A <a href="https://internals.rust-lang.org/t/help-us-benchmark-saturating-float-casts/6231" rel="nofollow">call for benchmarking</a> of this change went out awhile ago. Results, while positive in many projects, are <a href="https://github.com/rust-lang/rust/issues/10184#issuecomment-429663706" data-hovercard-type="issue" data-hovercard-url="/rust-lang/rust/issues/10184/hovercard">quite negative for some projects</a> and indicates that we're not done here.</p>
<p dir="auto">The next steps are figuring out how to recover performance for these cases:</p>
<ul dir="auto">
<li>One option is to take today's <code class="notranslate">as</code> cast behavior (which is UB in some cases) and add <code class="notranslate">unsafe</code> functions for the relevant types and such.</li>
<li>Another is to wait for LLVM to add a <code class="notranslate">freeze</code> concept which means that we get a garbage bit pattern, but it's at least not UB</li>
<li>Another is to implement casts via inline assembly in LLVM IR, as the current codegen is not heavily optimized.</li>
</ul>
<h2 dir="auto">Old status</h2>
<p dir="auto"><strong>UPDATE (by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/nikomatsakis/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nikomatsakis">@nikomatsakis</a>):</strong> After much discussion, we've got <a href="https://github.com/rust-lang/rust/issues/10184#issuecomment-302198137" data-hovercard-type="issue" data-hovercard-url="/rust-lang/rust/issues/10184/hovercard">the rudiments of a plan</a> for how to address this problem. But we need some help with actually investigating the performance impact and working out the final details!</p>
<hr>
<p dir="auto"><strong>ORIGINAL ISSUE FOLLOWS:</strong></p>
<blockquote>
<p dir="auto">If the value cannot fit in ty2, the results are undefined.</p>
</blockquote>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="1.04E+17 as u8"><pre class="notranslate"><span class="pl-c1">1.04E+17</span> <span class="pl-k">as</span> <span class="pl-smi">u8</span><span class="pl-kos"></span></pre></div> | 0 |
<p dir="auto">Example: I put a ImageView, set <code class="notranslate">scaletype="center"</code> (will not scale), but when I use</p>
<div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Glide.with(getApplicationContext()).load(url).placeholder(R.drawable.ic_default).into(imageV);"><pre class="notranslate"><span class="pl-smi">Glide</span>.<span class="pl-en">with</span>(<span class="pl-en">getApplicationContext</span>()).<span class="pl-en">load</span>(<span class="pl-s1">url</span>).<span class="pl-en">placeholder</span>(<span class="pl-smi">R</span>.<span class="pl-s1">drawable</span>.<span class="pl-s1">ic_default</span>).<span class="pl-en">into</span>(<span class="pl-s1">imageV</span>);</pre></div>
<p dir="auto">seem that the scaletype been changed, because I found that the placeholder icon been filled the whole imageview size.</p> | <p dir="auto">Hi</p>
<p dir="auto">I am displaying images in a recyclerview via Glide. The images are different widths and heights and are being pulled from the server.</p>
<p dir="auto">The images all display fine until the views begin to be recycled. The image view has <code class="notranslate">android:layout_width="wrap_content" android:layout_height="wrap_content"</code> I have tried to sort this by setting <code class="notranslate">holder.getImageView().setImageDrawable(null);</code> in ` public void onBindViewHolder'. This didn't work. I have found item public void <strong><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="65894232" data-permission-text="Title is private" data-url="https://github.com/bumptech/glide/issues/388" data-hovercard-type="issue" data-hovercard-url="/bumptech/glide/issues/388/hovercard" href="https://github.com/bumptech/glide/issues/388">#388</a></strong> and as that poster had a custom image view you suggested using ViewTarget and delaying size determination. As I'm using a standard ImageView the ImageViewTarget doesn't have a get size method so Im not sure how to apply this to my case</p>
<p dir="auto">If you could offer any advice..here's my post on SO <a href="http://stackoverflow.com/questions/33283493/recyclerview-recycled-viewholder-image-view-wrong-size" rel="nofollow">http://stackoverflow.com/questions/33283493/recyclerview-recycled-viewholder-image-view-wrong-size</a></p>
<p dir="auto">Regards,<br>
Gary</p> | 0 |
<h3 dir="auto">System info</h3>
<ul dir="auto">
<li>Playwright Version: [v1.1.36.0]</li>
<li>Operating System: [Linux amd64]</li>
<li>Browser: [All, Chromium, Firefox, WebKit]</li>
<li>Other info:<br>
playwright Java and TestNg framework</li>
</ul>
<p dir="auto">Hi team,<br>
Playwright failed to find the locator in the Selenium grid docker setup. It works fine till navigation after it throws</p>
<h1 dir="auto">com.microsoft.playwright.TimeoutError:<br>
Error {<br>
message='Timeout 60000ms exceeded.<br>
=========================== logs ===========================<br>
waiting for locator("xpath=//input[<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/id/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/id">@id</a>='UserName']")</h1>
<h1 dir="auto">name='TimeoutError<br>
stack='TimeoutError: Timeout 60000ms exceeded.<br>
=========================== logs ===========================<br>
waiting for locator("xpath=//input[<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/id/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/id">@id</a>='UserName']")</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="at ProgressController.run (/tmp/playwright-java-11238511618491153829/package/lib/server/progress.js:88:26)
at Frame.fill (/tmp/playwright-java-11238511618491153829/package/lib/server/frames.js:1047:23)
at FrameDispatcher.fill (/tmp/playwright-java-11238511618491153829/package/lib/server/dispatchers/frameDispatcher.js:163:30)
at DispatcherConnection.dispatch (/tmp/playwright-java-11238511618491153829/package/lib/server/dispatchers/dispatcher.js:312:46)"><pre class="notranslate"><code class="notranslate">at ProgressController.run (/tmp/playwright-java-11238511618491153829/package/lib/server/progress.js:88:26)
at Frame.fill (/tmp/playwright-java-11238511618491153829/package/lib/server/frames.js:1047:23)
at FrameDispatcher.fill (/tmp/playwright-java-11238511618491153829/package/lib/server/dispatchers/frameDispatcher.js:163:30)
at DispatcherConnection.dispatch (/tmp/playwright-java-11238511618491153829/package/lib/server/dispatchers/dispatcher.js:312:46)
</code></pre></div>
<p dir="auto">}</p>
<p dir="auto">It works fine in local and local selenium grid setups.<br>
Page load and waits are used.</p> | <h3 dir="auto">System info</h3>
<ul dir="auto">
<li>Playwright Version: [v1.32.2]</li>
<li>Operating System: [macOS 13.3]</li>
<li>Browser: [WebKit]</li>
<li>Other info:</li>
</ul>
<h3 dir="auto">Source code</h3>
<p dir="auto"><strong>main.js file</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const { webkit } = require('playwright');
const test = async () => {
const context = await webkit.launchPersistentContext('path_for_user_dir', {headless: false});
const page = await context.newPage();
await page.goto('https://www.abc.com');
}
test();"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-kos">{</span> webkit <span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'playwright'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-en">test</span> <span class="pl-c1">=</span> <span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">context</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">webkit</span><span class="pl-kos">.</span><span class="pl-en">launchPersistentContext</span><span class="pl-kos">(</span><span class="pl-s">'path_for_user_dir'</span><span class="pl-kos">,</span> <span class="pl-kos">{</span><span class="pl-c1">headless</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-k">const</span> <span class="pl-s1">page</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">context</span><span class="pl-kos">.</span><span class="pl-en">newPage</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">goto</span><span class="pl-kos">(</span><span class="pl-s">'https://www.abc.com'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><strong>package.json</strong></p>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"name": "testcafe",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"start": "node main.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"testcafe": "^2.0.0"
},
"devDependencies": {
"@playwright/test": "^1.32.2",
"playwright": "^1.32.2"
}
}"><pre class="notranslate">{
<span class="pl-ent">"name"</span>: <span class="pl-s"><span class="pl-pds">"</span>testcafe<span class="pl-pds">"</span></span>,
<span class="pl-ent">"version"</span>: <span class="pl-s"><span class="pl-pds">"</span>1.0.0<span class="pl-pds">"</span></span>,
<span class="pl-ent">"description"</span>: <span class="pl-s"><span class="pl-pds">"</span><span class="pl-pds">"</span></span>,
<span class="pl-ent">"main"</span>: <span class="pl-s"><span class="pl-pds">"</span>main.js<span class="pl-pds">"</span></span>,
<span class="pl-ent">"scripts"</span>: {
<span class="pl-ent">"start"</span>: <span class="pl-s"><span class="pl-pds">"</span>node main.js<span class="pl-pds">"</span></span>
},
<span class="pl-ent">"keywords"</span>: [],
<span class="pl-ent">"author"</span>: <span class="pl-s"><span class="pl-pds">"</span><span class="pl-pds">"</span></span>,
<span class="pl-ent">"license"</span>: <span class="pl-s"><span class="pl-pds">"</span>ISC<span class="pl-pds">"</span></span>,
<span class="pl-ent">"dependencies"</span>: {
<span class="pl-ent">"testcafe"</span>: <span class="pl-s"><span class="pl-pds">"</span>^2.0.0<span class="pl-pds">"</span></span>
},
<span class="pl-ent">"devDependencies"</span>: {
<span class="pl-ent">"@playwright/test"</span>: <span class="pl-s"><span class="pl-pds">"</span>^1.32.2<span class="pl-pds">"</span></span>,
<span class="pl-ent">"playwright"</span>: <span class="pl-s"><span class="pl-pds">"</span>^1.32.2<span class="pl-pds">"</span></span>
}
}</pre></div>
<p dir="auto"><strong>Steps</strong></p>
<ul dir="auto">
<li>npm start</li>
</ul>
<p dir="auto"><strong>Expected</strong></p>
<p dir="auto">It should open webkit browser with latest version (saw in doc and npm package link that it supports 16.4).</p>
<p dir="auto"><strong>Actual</strong></p>
<p dir="auto">When I use launchPersistentContext method it opens old webkit browser 13.x.x (checked in user agent of browesr and other online sites) and when I use launch method it opens up in new version of webkit which is 16.4.</p>
<p dir="auto">I don't know if I'm missing something.</p> | 0 |
<p dir="auto">On IRC, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bjz/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bjz">@bjz</a> and <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Kimundi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Kimundi">@Kimundi</a> pointed out some infelicities with how rustpkg handles the test crate.</p>
<p dir="auto">kimundi writes: "I think there are 3 ways to have the test suite of a rustpkg package work: in-crate by compiling the crate with rustc --test, out-of-crate by having a test.rs file that 'extern mod's the crate, and hybrid where you have a test.rs file that contains all modules of your crate with 'mod ...;' statements, effectively providing an alternate test crate-root."</p>
<p dir="auto">Currently, rustpkg is designed to give preference to the last option: having a <code class="notranslate">test.rs</code> file that is an alternative crate root for building a test executable.</p>
<p dir="auto">So one question is whether to support all 3 ways with equally good ergonomics in rustpkg. The other question is whether to choose one way that we prefer, and document that that is the preferred method.</p>
<p dir="auto">kimundi pointing out that the pros and cons of each approach are:</p>
<p dir="auto">"in-crate: pro: quick and easy, can test private things. cons: clutters the code, change to tests mean recompile the library itself</p>
<p dir="auto">out-of-crate: pro: can test the public api extensivly, no cluttering the crate code itself, changes to testsuite do not cause the crate to need recompiling. cons: can't test private items, need to do more work to test the public api</p>
<p dir="auto">hybrid: pro: can test private api, separate test crate from regular crate, can test public api separately without needing to recompile crate. cons: needs to compile the same amount of code as the crate, needs to duplicate crate root."</p> | <p dir="auto">This is a tracking issue for the unstable <code class="notranslate">ref_slice</code> feature in the standard library. These functions seem fairly innocuous but it's also somewhat questionable how useful they are. They're probably ready for either stabilization or deprecation as-is.</p>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/nikomatsakis/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nikomatsakis">@nikomatsakis</a></p> | 0 |
<p dir="auto">A.<br>
All <code class="notranslate">@assert</code>s should be exceptional, and since it's a macro already, it should outline (<code class="notranslate">@noinline</code>) automatically, as was manually done here (to avoid 3x speed regression):</p>
<p dir="auto"><a href="https://github.com/JuliaLang/julia/pull/34237/files">https://github.com/JuliaLang/julia/pull/34237/files</a></p>
<p dir="auto">B.<br>
I was looking into optimizing factorial myself, and think in general throws should be outlined too, i.e. all preconditions. For now A. is a low hanging-fruit I think. I'm not sure, possibly after A. is done, throws can be implemented with asserts, getting B for free?</p>
<p dir="auto">C.<br>
Maybe there are complications when there are two or more asserts and/or throws, still I doubt solving A. and/or B. would be slower then. However possibly in that case something even better could be done?</p> | <p dir="auto">We're increasingly seeing this kind of manual optimization in Base code:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function f(...)
check_cond() || throw(SomeError(...))
end"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">f</span>(<span class="pl-k">...</span>)
<span class="pl-c1">check_cond</span>() <span class="pl-k">||</span> <span class="pl-c1">throw</span>(<span class="pl-c1">SomeError</span>(<span class="pl-k">...</span>))
<span class="pl-k">end</span></pre></div>
<p dir="auto">rewritten as</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@noinline throw_some_error(...) = throw(SomeError(...))
function f(...)
check_cond() || throw_some_error(...)
end"><pre class="notranslate"><span class="pl-c1">@noinline</span> <span class="pl-en">throw_some_error</span>(<span class="pl-k">...</span>) <span class="pl-k">=</span> <span class="pl-c1">throw</span>(<span class="pl-c1">SomeError</span>(<span class="pl-k">...</span>))
<span class="pl-k">function</span> <span class="pl-en">f</span>(<span class="pl-k">...</span>)
<span class="pl-c1">check_cond</span>() <span class="pl-k">||</span> <span class="pl-c1">throw_some_error</span>(<span class="pl-k">...</span>)
<span class="pl-k">end</span></pre></div>
<p dir="auto">It would be great if the compiler could figure this out and do the transformation automatically. I don't think it needs to be terribly complicated either: <code class="notranslate">throw</code> should never be a common code path in Julia and throwing each kind of error could be its own outlined function, which would avoid an explosion of these automatically outlined throw functions.</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>
<ul dir="auto">
<li><strong>Electron Version:</strong>
<ul dir="auto">
<li>7.*</li>
</ul>
</li>
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>win7\win10</li>
</ul>
</li>
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li>3.*</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">no crash</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">Crashes when the application exits.</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">Repetitive switching application</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">crash report:</p>
<details>
<summary>Click to view</summary>
<pre class="notranslate"><code class="notranslate">
Operating system: Windows NT
10.0.18362 329
CPU: amd64
family 6 model 60 stepping 3
4 CPUs
<p dir="auto">GPU: UNKNOWN</p>
<p dir="auto">Crash reason: EXCEPTION_ACCESS_VIOLATION_READ<br>
Crash address: 0x8<br>
Process uptime: 3 seconds</p>
<p dir="auto">Thread 0 (crashed)<br>
0 electron.exe!struct std::pair<std::_Tree_iterator<std::_Tree_val<std::_Tree_simple_types<std::pair<const unsigned long long,base::WeakPtr<mojo::internal::PtrSetdevice::mojom::HidManagerClient,AssociatedInterfacePtr::Element> > > > >,bool> std::_Tree<std::_Tmap_traits<unsigned long long,base::WeakPtr<mojo::internal::PtrSetdevice::mojom::HidManagerClient,AssociatedInterfacePtr::Element>,std::less,std::allocator<std::pair<const unsigned long long,base::WeakPtr<mojo::internal::PtrSetdevice::mojom::HidManagerClient,AssociatedInterfacePtr::Element> > >,0> >::_Insert_nohint<std::pair<const unsigned long long,base::WeakPtr<mojo::internal::PtrSetdevice::mojom::HidManagerClient,AssociatedInterfacePtr::Element> > &,std::_Tree_node<std::pair<const unsigned long long,base::WeakPtr<mojo::internal::PtrSetdevice::mojom::HidManagerClient,AssociatedInterfacePtr::Element> >,void *> *>(bool, struct std::pair<const unsigned long long,base::WeakPtr<mojo::internal::PtrSetdevice::mojom::HidManagerClient,AssociatedInterfacePtr::Element> > & const, struct std::_Tree_node<std::pair<const unsigned long long,base::WeakPtr<mojo::internal::PtrSetdevice::mojom::HidManagerClient,AssociatedInterfacePtr::Element> >,void *> *) [xtree : 0 + 0x0]<br>
rax = 0x0000fccd145659e6 rdx = 0x000000e751efbe50<br>
rcx = 0x00000202d991a218 rbx = 0x00000202d972a850<br>
rsi = 0x000000e751efbe68 rdi = 0x00000202d991a218<br>
rbp = 0x00007ff6a2825270 rsp = 0x000000e751efbd90<br>
r8 = 0x0000000000000000 r9 = 0x0000000000000000<br>
r10 = 0x0000000000000000 r11 = 0x000000e751efbd30<br>
r12 = 0x00000202d7b2ffe0 r13 = 0x000000e751efbe50<br>
r14 = 0x00000202d7b2ffc0 r15 = 0x00000202d991a218<br>
rip = 0x00007ff69e352fa0<br>
Found by: given as instruction pointer in context<br>
1 electron.exe!unsigned __int64 mojo::internal::PtrSetnetwork::mojom::ProxyConfigClient,InterfacePtr::AddPtr(class mojo::InterfacePtrnetwork::mojom::ProxyConfigClient) [interface_ptr_set.h : 37 + 0x4d]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efbe20 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff6a0f8e5fc<br>
Found by: call frame info<br>
2 electron.exe!ProxyConfigMonitor::AddToNetworkContextParams(network::mojom::NetworkContextParams *) [proxy_config_monitor.cc : 88 + 0xb]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efbef0 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff6a0f8e442<br>
Found by: call frame info<br>
3 electron.exe!SystemNetworkContextManager::CreateNetworkContextParams() [system_network_context_manager.cc : 223 + 0xb]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efc130 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69dab9fb0<br>
Found by: call frame info<br>
4 electron.exe!SystemNetworkContextManager::OnNetworkServiceCreated(network::mojom::NetworkService *) [system_network_context_manager.cc : 204 + 0xb]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efc1d0 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69dab9e18<br>
Found by: call frame info<br>
5 electron.exe!content::GetNetworkService() [network_service_instance_impl.cc : 295 + 0xc]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efc320 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69e664379<br>
Found by: call frame info<br>
6 electron.exe!electron::NetworkContextService::CreateNetworkContext() [network_context_service.cc : 26 + 0x5]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efc710 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69dab741e<br>
Found by: call frame info<br>
7 electron.exe!electron::AtomBrowserClient::CreateNetworkContext(content::BrowserContext *,bool,base::FilePath const &) [atom_browser_client.cc : 765 + 0x13]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efc7d0 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69da8c870<br>
Found by: call frame info<br>
8 electron.exe!content::StoragePartitionImpl::InitNetworkContext() [storage_partition_impl.cc : 2283 + 0x22]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efc800 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69e7ba1c0<br>
Found by: call frame info<br>
9 electron.exe!content::StoragePartitionImpl::GetNetworkContext() [storage_partition_impl.cc : 1349 + 0x8]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efc8c0 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69e7ba153<br>
Found by: call frame info<br>
10 electron.exe!content::URLLoaderFactoryGetter::HandleNetworkFactoryRequestOnUIThread(mojo::InterfaceRequestnetwork::mojom::URLLoaderFactory,bool) [url_loader_factory_getter.cc : 295 + 0xa]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efc8f0 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69e7dc6ae<br>
Found by: call frame info<br>
11 electron.exe!content::URLLoaderFactoryGetter::Initialize(content::StoragePartitionImpl *) [url_loader_factory_getter.cc : 139 + 0xe]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efc960 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69e7dc563<br>
Found by: call frame info<br>
12 electron.exe!content::StoragePartitionImpl::Initialize() [storage_partition_impl.cc : 1290 + 0x8]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efca80 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69e7b999a<br>
Found by: call frame info<br>
13 electron.exe!content::StoragePartitionImplMap::Get(std::basic_string<char,std::char_traits,std::allocator > const &,std::basic_string<char,std::char_traits,std::allocator > const &,bool,bool) [storage_partition_impl_map.cc : 353 + 0x8]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efccc0 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69e7bea44<br>
Found by: call frame info<br>
14 electron.exe!content::BrowserContext::GetStoragePartition(content::BrowserContext *,content::SiteInstance *,bool) [browser_context.cc : 435 + 0x37]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efcde0 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69e448f41<br>
Found by: call frame info<br>
15 electron.exe!electron::CookieChangeNotifier::StartListening() [cookie_change_notifier.cc : 39 + 0x9]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efcea0 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69da9fd8c<br>
Found by: call frame info<br>
16 electron.exe!electron::CookieChangeNotifier::CookieChangeNotifier(electron::AtomBrowserContext *) [cookie_change_notifier.cc : 22 + 0x8]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efcf20 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69da9fd54<br>
Found by: call frame info<br>
17 electron.exe!electron::AtomBrowserContext::AtomBrowserContext(std::basic_string<char,std::char_traits,std::allocator > const &,bool,base::DictionaryValue const &) [atom_browser_context.cc : 119 + 0x18]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efcf70 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69da8ff03<br>
Found by: call frame info<br>
18 electron.exe!electron::AtomBrowserContext::From(std::basic_string<char,std::char_traits,std::allocator > const &,bool,base::DictionaryValue const &) [atom_browser_context.cc : 395 + 0x1e]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efd0f0 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69da90f31<br>
Found by: call frame info<br>
19 electron.exe!electron::api::Session::FromPartition(v8::Isolate *,std::basic_string<char,std::char_traits,std::allocator > const &,base::DictionaryValue const &) [atom_api_session.cc : 666 + 0x11]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efd1a0 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69da440a6<br>
Found by: call frame info<br>
20 electron.exe!static class v8::Localv8::Value <code class="notranslate">anonymous namespace'::FromPartition(const class std::basic_string<char,std::char_traits<char>,std::allocator<char> > & const, class mate::Arguments *) [atom_api_session.cc : 737 + 0xe] rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270 rsp = 0x000000e751efd260 r12 = 0x00000202d7b2ffe0 r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0 r15 = 0x00000202d991a218 rip = 0x00007ff69da4557a Found by: call frame info 21 electron.exe!static struct blink::PairwiseInterpolationValue base::internal::Invoker<base::internal::BindState<blink::PairwiseInterpolationValue (*)(blink::InterpolationValue &&, blink::InterpolationValue &&)>,blink::PairwiseInterpolationValue (blink::InterpolationValue &&, blink::InterpolationValue &&)>::Run(class base::internal::BindStateBase *, struct blink::InterpolationValue *, struct blink::InterpolationValue *) [bind_internal.h : 654 + 0x9] rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270 rsp = 0x000000e751efd2f0 r12 = 0x00000202d7b2ffe0 r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0 r15 = 0x00000202d991a218 rip = 0x00007ff69da16bf4 Found by: call frame info 22 electron.exe!void mate::internal::Invoker<mate::internal::IndicesHolder<0,1>,const std::basic_string<char,std::char_traits<char>,std::allocator<char> > &,mate::Arguments *>::DispatchToCallback<v8::Local<v8::Value> >(class base::RepeatingCallback<v8::Local<v8::Value> (const std::basic_string<char,std::char_traits<char>,std::allocator<char> > &, mate::Arguments *)>) [function_template.h : 202 + 0x19] rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270 rsp = 0x000000e751efd320 r12 = 0x00000202d7b2ffe0 r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0 r15 = 0x00000202d991a218 rip = 0x00007ff69da45860 Found by: call frame info 23 electron.exe!static void mate::internal::Dispatcher<v8::Local<v8::Value> (const std::basic_string<char,std::char_traits<char>,std::allocator<char> > &, mate::Arguments *)>::DispatchToCallback(const class v8::FunctionCallbackInfo<v8::Value> & const) [function_template.h : 246 + 0x8] rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270 rsp = 0x000000e751efd3a0 r12 = 0x00000202d7b2ffe0 r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0 r15 = 0x00000202d991a218 rip = 0x00007ff69da457e0 Found by: call frame info 24 electron.exe!v8::internal::FunctionCallbackArguments::Call(v8::internal::CallHandlerInfo) [api-arguments-inl.h : 158 + 0x6] rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270 rsp = 0x000000e751efd450 r12 = 0x00000202d7b2ffe0 r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0 r15 = 0x00000202d991a218 rip = 0x00007ff69eb85895 Found by: call frame info 25 electron.exe!static class v8::internal::MaybeHandle<v8::internal::Object> v8::internal::</code>anonymous namespace'::HandleApiCallHelper<0>(class v8::internal::Isolate *, class v8::internal::Handlev8::internal::HeapObject, class v8::internal::Handlev8::internal::HeapObject, class v8::internal::Handlev8::internal::FunctionTemplateInfo, class v8::internal::Handlev8::internal::Object, class v8::internal::BuiltinArguments) [builtins-api.cc : 111 + 0x5]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efd580 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69eb3bbb9<br>
Found by: call frame info<br>
26 electron.exe!static class v8::internal::Object v8::internal::Builtin_Impl_HandleApiCall(class v8::internal::BuiltinArguments, class v8::internal::Isolate *) [builtins-api.cc : 141 + 0x2c]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efd670 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69eb3b110<br>
Found by: call frame info<br>
27 electron.exe!v8::internal::Builtin_HandleApiCall(int,unsigned __int64 *,v8::internal::Isolate *) [builtins-api.cc : 129 + 0x19]<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efd730 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69eb3adaa<br>
Found by: call frame info<br>
28 electron.exe!Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit + 0x3d<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efd770 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69f4241bd<br>
Found by: call frame info<br>
29 electron.exe + 0x1478600<br>
rbx = 0x00000202d972a850 rbp = 0x00007ff6a2825270<br>
rsp = 0x000000e751efd780 r12 = 0x00000202d7b2ffe0<br>
r13 = 0x000000e751efbe50 r14 = 0x00000202d7b2ffc0<br>
r15 = 0x00000202d991a218 rip = 0x00007ff69ee68600<br>
Found by: call frame info<br>
30 electron.exe!Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_NoBuiltinExit + 0x3d<br>
rbp = 0x00007ff6a2825270 rsp = 0x000000e751efd7a0<br>
rip = 0x00007ff69f4240dd<br>
Found by: stack scanning<br>
31 0xe751efd770<br>
rbp = 0x00007ff6a2825270 rsp = 0x000000e751efd7b0<br>
rip = 0x000000e751efd770<br>
Found by: call frame info<br>
32 electron.exe!Builtins_InterpreterEntryTrampoline + 0x2a9<br>
rbp = 0x00007ff6a2825270 rsp = 0x000000e751efd7c8<br>
rip = 0x00007ff69f3a9729<br>
Found by: stack scanning<br>
33 0x229c17d9ba1<br>
rbp = 0x00007ff6a2825270 rsp = 0x000000e751efd7d8<br>
rip = 0x00000229c17d9ba1<br>
Found by: call frame info<br>
34 electron.exe!Builtins_LoadIC_NoFeedback + 0x577<br>
rbp = 0x00007ff6a2825270 rsp = 0x000000e751efd838<br>
rip = 0x00007ff69f3b1b77<br>
Found by: stack scanning</p>
<p dir="auto">Thread 1<br>
0 ntdll.dll + 0x9fa54<br>
rax = 0x00000000000001cd rdx = 0x00000202d5d14e50<br>
rcx = 0x000000000000005c rbx = 0x00000202d5d151d0<br>
rsi = 0x00000202d5d13700 rdi = 0x00000202d5d151d0<br>
rbp = 0x0000000000000000 rsp = 0x000000e751fffa88<br>
r8 = 0x0000000000000008 r9 = 0x0000000000000001<br>
r10 = 0x0000000000000000 r11 = 0x00000202db32da70<br>
r12 = 0x0000000000000000 r13 = 0x00000202d5d13a38<br>
r14 = 0x0000000000000001 r15 = 0x0000000000000000<br>
rip = 0x00007ffa24affa54<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x34060<br>
rsp = 0x000000e751fffa90 rip = 0x00007ffa24a94060<br>
Found by: stack scanning</p>
<p dir="auto">Thread 2<br>
0 ntdll.dll + 0x9fa54<br>
rax = 0x00000000000001cd rdx = 0x00000202d5d17830<br>
rcx = 0x000000000000005c rbx = 0x00000202d5d17bb0<br>
rsi = 0x00000202d5d13700 rdi = 0x00000202d5d17bb0<br>
rbp = 0x0000000000000000 rsp = 0x000000e7520ff848<br>
r8 = 0x0000000000000162 r9 = 0x0000000000000162<br>
r10 = 0x00000000000000ed r11 = 0x00000000000001d7<br>
r12 = 0x0000000000000000 r13 = 0x00000202d5d13a38<br>
r14 = 0x0000000000000001 r15 = 0x0000000000000000<br>
rip = 0x00007ffa24affa54<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x34060<br>
rsp = 0x000000e7520ff850 rip = 0x00007ffa24a94060<br>
Found by: stack scanning</p>
<p dir="auto">Thread 3<br>
0 ntdll.dll + 0x9fa54<br>
rax = 0x00000000000001cd rdx = 0x00000202d5d1d270<br>
rcx = 0x000000000000005c rbx = 0x00000202d5d1d5f0<br>
rsi = 0x00000202d5d13700 rdi = 0x00000202d5d1d5f0<br>
rbp = 0x0000000000000000 rsp = 0x000000e7521ffa48<br>
r8 = 0x000000e7521ff1b0 r9 = 0x000000e7521ff2ff<br>
r10 = 0x000000000000006c r11 = 0x000000e7521fefb0<br>
r12 = 0x0000000000000000 r13 = 0x00000202d5d13a38<br>
r14 = 0x0000000000000001 r15 = 0x0000000000000000<br>
rip = 0x00007ffa24affa54<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x34060<br>
rsp = 0x000000e7521ffa50 rip = 0x00007ffa24a94060<br>
Found by: stack scanning</p>
<p dir="auto">Thread 4<br>
0 ntdll.dll + 0x9c1e4<br>
rax = 0x0000000000000009 rdx = 0x000000e7522ff750<br>
rcx = 0x0000000000000308 rbx = 0x000000e7522ff740<br>
rsi = 0x00007ff6a13a67fc rdi = 0x000000e7522ff74c<br>
rbp = 0x000000e7522ff74c rsp = 0x000000e7522ff688<br>
r8 = 0x00000202d5cf3180 r9 = 0x0000000000000001<br>
r10 = 0x00000202d5cf0180 r11 = 0x000000e7522ff5c0<br>
r12 = 0x0000000000000000 r13 = 0x00007ffa247f65d0<br>
r14 = 0x0000000000000000 r15 = 0x000000e7522ff740<br>
rip = 0x00007ffa24afc1e4<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x584c3<br>
rbp = 0x000000e7522ff74c rsp = 0x000000e7522ff690<br>
rip = 0x00007ffa228284c3<br>
Found by: stack scanning<br>
2 KERNEL32.DLL + 0x165d0<br>
rbp = 0x000000e7522ff74c rsp = 0x000000e7522ff698<br>
rip = 0x00007ffa247f65d0<br>
Found by: stack scanning<br>
3 ntdll.dll + 0x3fc11<br>
rbp = 0x000000e7522ff74c rsp = 0x000000e7522ff6b0<br>
rip = 0x00007ffa24a9fc11<br>
Found by: stack scanning<br>
4 electron.exe!sandbox::BrokerServicesBase::TargetEventsThread(void *) [broker_services.cc : 177 + 0x17]<br>
rbp = 0x000000e7522ff74c rsp = 0x000000e7522ff6f0<br>
rip = 0x00007ff6a13a6757<br>
Found by: stack scanning<br>
5 KERNEL32.DLL + 0x17bd4<br>
rbp = 0x000000e7522ff74c rsp = 0x000000e7522ff7c0<br>
rip = 0x00007ffa247f7bd4<br>
Found by: call frame info<br>
6 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e7522ff7f0 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 5<br>
0 ntdll.dll + 0x9c144<br>
rax = 0x0000000000000004 rdx = 0x0000000000000000<br>
rcx = 0x000000000000038c rbx = 0x0000000000000000<br>
rsi = 0x000000e7524ffb98 rdi = 0x000000000000038c<br>
rbp = 0x0000000000000001 rsp = 0x000000e7524ffb68<br>
r8 = 0x000000e7524ff498 r9 = 0x00007ff6a281c47d<br>
r10 = 0x0000000000000000 r11 = 0x000000e7524ff3a0<br>
r12 = 0x000000e7524ffc60 r13 = 0x000000e7524ffd80<br>
r14 = 0x000000000000038c r15 = 0x7fffffffffffffff<br>
rip = 0x00007ffa24afc144<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x38bc3<br>
rsp = 0x000000e7524ffb70 rip = 0x00007ffa22808bc3<br>
Found by: stack scanning<br>
2 electron.exe!base::WaitableEvent::TimedWait(base::TimeDelta const &) [waitable_event_win.cc : 107 + 0x2]<br>
rsp = 0x000000e7524ffc10 rip = 0x00007ff69f82d5b0<br>
Found by: stack scanning<br>
3 electron.exe!base::internal::WorkerThread::Delegate::WaitForWork(base::WaitableEvent *) [worker_thread.cc : 35 + 0xd]<br>
rsp = 0x000000e7524ffcf0 rip = 0x00007ff69f84df9a<br>
Found by: call frame info<br>
4 electron.exe!base::internal::WorkerThread::RunWorker() [worker_thread.cc : 316 + 0x9]<br>
rsp = 0x000000e7524ffd30 rip = 0x00007ff69f84eb33<br>
Found by: call frame info<br>
5 electron.exe!base::internal::WorkerThread::RunPooledWorker() [worker_thread.cc : 223 + 0x5]<br>
rsp = 0x000000e7524ffe30 rip = 0x00007ff69f84e6b0<br>
Found by: call frame info<br>
6 electron.exe!static unsigned long base::`anonymous namespace'::ThreadFunc(void *) [platform_thread_win.cc : 102 + 0x8]<br>
rsp = 0x000000e7524ffe70 rip = 0x00007ff69f857391<br>
Found by: call frame info<br>
7 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e7524ffef0 rip = 0x00007ffa247f7bd4<br>
Found by: call frame info<br>
8 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e7524fff20 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 6<br>
0 ntdll.dll + 0x9c144<br>
rax = 0x0000000000000004 rdx = 0x0000000000000000<br>
rcx = 0x0000000000000394 rbx = 0x0000000000000000<br>
rsi = 0x000000e7525ff8c8 rdi = 0x0000000000000394<br>
rbp = 0x0000000000000000 rsp = 0x000000e7525ff898<br>
r8 = 0x00000000fffffeff r9 = 0x00000202d7a50000<br>
r10 = 0x0000000000000000 r11 = 0x0000000000000201<br>
r12 = 0x000000e7525ff990 r13 = 0x000000e7525ffab0<br>
r14 = 0x0000000000000394 r15 = 0x7fffffffffffffff<br>
rip = 0x00007ffa24afc144<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x38bc3<br>
rsp = 0x000000e7525ff8a0 rip = 0x00007ffa22808bc3<br>
Found by: stack scanning<br>
2 electron.exe!base::WaitableEvent::TimedWait(base::TimeDelta const &) [waitable_event_win.cc : 107 + 0x2]<br>
rsp = 0x000000e7525ff940 rip = 0x00007ff69f82d5b0<br>
Found by: stack scanning<br>
3 electron.exe!base::internal::WorkerThread::Delegate::WaitForWork(base::WaitableEvent *) [worker_thread.cc : 35 + 0xd]<br>
rsp = 0x000000e7525ffa20 rip = 0x00007ff69f84df9a<br>
Found by: call frame info<br>
4 electron.exe!base::internal::WorkerThread::RunWorker() [worker_thread.cc : 316 + 0x9]<br>
rsp = 0x000000e7525ffa60 rip = 0x00007ff69f84eb33<br>
Found by: call frame info<br>
5 electron.exe!base::internal::WorkerThread::RunBackgroundPooledWorker() [worker_thread.cc : 229 + 0x5]<br>
rsp = 0x000000e7525ffb60 rip = 0x00007ff69f84e570<br>
Found by: call frame info<br>
6 electron.exe!static unsigned long base::`anonymous namespace'::ThreadFunc(void *) [platform_thread_win.cc : 102 + 0x8]<br>
rsp = 0x000000e7525ffba0 rip = 0x00007ff69f857391<br>
Found by: call frame info<br>
7 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e7525ffc20 rip = 0x00007ffa247f7bd4<br>
Found by: call frame info<br>
8 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e7525ffc50 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 7<br>
0 ntdll.dll + 0x9edf4<br>
rax = 0x000000000000016a rdx = 0x000000e7527fe7a0<br>
rcx = 0x0000000000000424 rbx = 0x0000000000000000<br>
rsi = 0x000000e7527fe790 rdi = 0x00000202d7b41101<br>
rbp = 0x00000000ffffffff rsp = 0x000000e7527fe6a8<br>
r8 = 0x0000000000000080 r9 = 0x000000e7527fe790<br>
r10 = 0x00000000546c6148 r11 = 0x000000ff8aa67172<br>
r12 = 0x000000e7527fe7a0 r13 = 0x0000000000000424<br>
r14 = 0x0000000000000080 r15 = 0x0000000000000000<br>
rip = 0x00007ffa24afedf4<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0xfbdd3<br>
rsp = 0x000000e7527fe6b0 rip = 0x00007ffa228cbdd3<br>
Found by: stack scanning<br>
2 electron.exe!uv_run [core.c : 528 + 0x2a]<br>
rsp = 0x000000e7527fe750 rip = 0x00007ff6a0fee4f0<br>
Found by: stack scanning<br>
3 electron.exe!node::WorkerThreadsTaskRunner::DelayedTaskScheduler::Run() [node_platform.cc : 90 + 0xa]<br>
rsp = 0x000000e7527ff810 rip = 0x00007ff6a1b42791<br>
Found by: call frame info<br>
4 electron.exe!static unsigned int uv__thread_start(void <em>) [thread.c : 108 + 0x5]<br>
rsp = 0x000000e7527ff8c0 rip = 0x00007ff6a0feef12<br>
Found by: call frame info<br>
5 electron.exe!static unsigned long thread_start<unsigned int (__cdecl</em>)(void *),1>(void *) [thread.cpp : 97 + 0xd]<br>
rsp = 0x000000e7527ff900 rip = 0x00007ff6a27e2b60<br>
Found by: call frame info<br>
6 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e7527ff930 rip = 0x00007ffa247f7bd4<br>
Found by: call frame info<br>
7 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e7527ff960 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 8<br>
0 ntdll.dll + 0x9f9f4<br>
rax = 0x00000000000001ca rdx = 0x0000000000000000<br>
rcx = 0x00000202d7b02700 rbx = 0x0000000000000000<br>
rsi = 0x000000e7528ffcf8 rdi = 0x0000000000000000<br>
rbp = 0x000000e7528ffd20 rsp = 0x000000e7528ffcc8<br>
r8 = 0x0000000000000028 r9 = 0x0000000000000038<br>
r10 = 0x0000000000000000 r11 = 0x000000e7528ffb40<br>
r12 = 0x0000000000000000 r13 = 0x0000000000000000<br>
r14 = 0x00000202d7b02700 r15 = 0x00000202d7b02728<br>
rip = 0x00007ffa24aff9f4<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x60895<br>
rbp = 0x000000e7528ffd20 rsp = 0x000000e7528ffcd0<br>
rip = 0x00007ffa24ac0895<br>
Found by: stack scanning<br>
2 KERNELBASE.dll + 0x7c379<br>
rsp = 0x000000e7528ffd40 rip = 0x00007ffa2284c379<br>
Found by: stack scanning<br>
3 electron.exe!uv_cond_wait [thread.c : 414 + 0xc]<br>
rsp = 0x000000e7528ffd70 rip = 0x00007ff6a0fef3f0<br>
Found by: stack scanning<br>
4 electron.exe!node::TaskQueuev8::Task::BlockingPop() [node_platform.cc : 505 + 0xb]<br>
rsp = 0x000000e7528ffda0 rip = 0x00007ff6a1b4288a<br>
Found by: call frame info<br>
5 electron.exe!static void node::`anonymous namespace'::PlatformWorkerThread(void *) [node_platform.cc : 44 + 0xb]<br>
rsp = 0x000000e7528ffdf0 rip = 0x00007ff6a1b40e85<br>
Found by: call frame info<br>
6 electron.exe!static unsigned int uv__thread_start(void <em>) [thread.c : 108 + 0x5]<br>
rsp = 0x000000e7528ffeb0 rip = 0x00007ff6a0feef12<br>
Found by: call frame info<br>
7 electron.exe!static unsigned long thread_start<unsigned int (__cdecl</em>)(void *),1>(void *) [thread.cpp : 97 + 0xd]<br>
rsp = 0x000000e7528ffef0 rip = 0x00007ff6a27e2b60<br>
Found by: call frame info<br>
8 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e7528fff20 rip = 0x00007ffa247f7bd4<br>
Found by: call frame info<br>
9 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e7528fff50 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 9<br>
0 ntdll.dll + 0x9f9f4<br>
rax = 0x00000000000001ca rdx = 0x0000000000000000<br>
rcx = 0x00000202d7b02700 rbx = 0x0000000000000000<br>
rsi = 0x000000e7529ff808 rdi = 0x0000000000000000<br>
rbp = 0x000000e7529ff830 rsp = 0x000000e7529ff7d8<br>
r8 = 0x00000202d99268a8 r9 = 0x0000000000000004<br>
r10 = 0x0000000000000a62 r11 = 0x0000000000000000<br>
r12 = 0x0000000000000000 r13 = 0x0000000000000000<br>
r14 = 0x00000202d7b02700 r15 = 0x00000202d7b02728<br>
rip = 0x00007ffa24aff9f4<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x60895<br>
rbp = 0x000000e7529ff830 rsp = 0x000000e7529ff7e0<br>
rip = 0x00007ffa24ac0895<br>
Found by: stack scanning<br>
2 KERNELBASE.dll + 0x7c379<br>
rsp = 0x000000e7529ff850 rip = 0x00007ffa2284c379<br>
Found by: stack scanning<br>
3 electron.exe!uv_cond_wait [thread.c : 414 + 0xc]<br>
rsp = 0x000000e7529ff880 rip = 0x00007ff6a0fef3f0<br>
Found by: stack scanning<br>
4 electron.exe!node::TaskQueuev8::Task::BlockingPop() [node_platform.cc : 505 + 0xb]<br>
rsp = 0x000000e7529ff8b0 rip = 0x00007ff6a1b4288a<br>
Found by: call frame info<br>
5 electron.exe!static void node::`anonymous namespace'::PlatformWorkerThread(void *) [node_platform.cc : 44 + 0xb]<br>
rsp = 0x000000e7529ff900 rip = 0x00007ff6a1b40e85<br>
Found by: call frame info<br>
6 electron.exe!static unsigned int uv__thread_start(void <em>) [thread.c : 108 + 0x5]<br>
rsp = 0x000000e7529ff9c0 rip = 0x00007ff6a0feef12<br>
Found by: call frame info<br>
7 electron.exe!static unsigned long thread_start<unsigned int (__cdecl</em>)(void *),1>(void *) [thread.cpp : 97 + 0xd]<br>
rsp = 0x000000e7529ffa00 rip = 0x00007ff6a27e2b60<br>
Found by: call frame info<br>
8 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e7529ffa30 rip = 0x00007ffa247f7bd4<br>
Found by: call frame info<br>
9 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e7529ffa60 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 10<br>
0 ntdll.dll + 0x9f9f4<br>
rax = 0x00000000000001ca rdx = 0x0000000000000000<br>
rcx = 0x00000202d7b02700 rbx = 0x0000000000000000<br>
rsi = 0x000000e752aff888 rdi = 0x0000000000000000<br>
rbp = 0x000000e752aff8b0 rsp = 0x000000e752aff858<br>
r8 = 0x00000202d9117998 r9 = 0x00000202d7b2c160<br>
r10 = 0x7fffffffffffffff r11 = 0x000000e752aff060<br>
r12 = 0x0000000000000000 r13 = 0x0000000000000000<br>
r14 = 0x00000202d7b02700 r15 = 0x00000202d7b02728<br>
rip = 0x00007ffa24aff9f4<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x60895<br>
rbp = 0x000000e752aff8b0 rsp = 0x000000e752aff860<br>
rip = 0x00007ffa24ac0895<br>
Found by: stack scanning<br>
2 KERNELBASE.dll + 0x7c379<br>
rsp = 0x000000e752aff8d0 rip = 0x00007ffa2284c379<br>
Found by: stack scanning<br>
3 electron.exe!uv_cond_wait [thread.c : 414 + 0xc]<br>
rsp = 0x000000e752aff900 rip = 0x00007ff6a0fef3f0<br>
Found by: stack scanning<br>
4 electron.exe!node::TaskQueuev8::Task::BlockingPop() [node_platform.cc : 505 + 0xb]<br>
rsp = 0x000000e752aff930 rip = 0x00007ff6a1b4288a<br>
Found by: call frame info<br>
5 electron.exe!static void node::`anonymous namespace'::PlatformWorkerThread(void *) [node_platform.cc : 44 + 0xb]<br>
rsp = 0x000000e752aff980 rip = 0x00007ff6a1b40e85<br>
Found by: call frame info<br>
6 electron.exe!static unsigned int uv__thread_start(void <em>) [thread.c : 108 + 0x5]<br>
rsp = 0x000000e752affa40 rip = 0x00007ff6a0feef12<br>
Found by: call frame info<br>
7 electron.exe!static unsigned long thread_start<unsigned int (__cdecl</em>)(void *),1>(void *) [thread.cpp : 97 + 0xd]<br>
rsp = 0x000000e752affa80 rip = 0x00007ff6a27e2b60<br>
Found by: call frame info<br>
8 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e752affab0 rip = 0x00007ffa247f7bd4<br>
Found by: call frame info<br>
9 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e752affae0 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 11<br>
0 ntdll.dll + 0x9fa54<br>
rax = 0x00000000000001cd rdx = 0x00000202d5d6d0f0<br>
rcx = 0x00000000000004b0 rbx = 0x00000202d5d6d470<br>
rsi = 0x00000202d5d12080 rdi = 0x00000202d5d6d470<br>
rbp = 0x0000000000000000 rsp = 0x000000e752bff3e8<br>
r8 = 0x0000000000000000 r9 = 0x0000000000000000<br>
r10 = 0x00000ffed3f12114 r11 = 0x000000e752bfe090<br>
r12 = 0x0000000000000000 r13 = 0x0000000000000000<br>
r14 = 0x0000000000000000 r15 = 0x0000000000000000<br>
rip = 0x00007ffa24affa54<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x34060<br>
rsp = 0x000000e752bff3f0 rip = 0x00007ffa24a94060<br>
Found by: stack scanning</p>
<p dir="auto">Thread 12<br>
0 ntdll.dll + 0x9cc14<br>
rax = 0x000000000000005b rdx = 0x000000e752cff880<br>
rcx = 0x0000000000000001 rbx = 0x0000000000000001<br>
rsi = 0x0000000000000000 rdi = 0x0000000000000001<br>
rbp = 0x000000000000056c rsp = 0x000000e752cff528<br>
r8 = 0x0000000000000000 r9 = 0x0000000000000000<br>
r10 = 0x0000000000000000 r11 = 0x0000000000000000<br>
r12 = 0x00000000ffffffff r13 = 0x000000e752cff880<br>
r14 = 0x0000000000000000 r15 = 0x0000000000000000<br>
rip = 0x00007ffa24afcc14<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x580f7<br>
rsp = 0x000000e752cff530 rip = 0x00007ffa228280f7<br>
Found by: stack scanning<br>
2 twinapi.dll + 0xde20<br>
rsp = 0x000000e752cff548 rip = 0x00007ffa06aede20<br>
Found by: stack scanning<br>
3 ntdll.dll + 0x22f62<br>
rsp = 0x000000e752cff550 rip = 0x00007ffa24a82f62<br>
Found by: stack scanning<br>
4 twinapi.dll + 0xde20<br>
rsp = 0x000000e752cff580 rip = 0x00007ffa06aede20<br>
Found by: stack scanning<br>
5 ntdll.dll + 0x22f2a<br>
rsp = 0x000000e752cff610 rip = 0x00007ffa24a82f2a<br>
Found by: stack scanning<br>
6 ntdll.dll + 0x22f4a<br>
rsp = 0x000000e752cff618 rip = 0x00007ffa24a82f4a<br>
Found by: stack scanning<br>
7 ntdll.dll + 0x71912<br>
rsp = 0x000000e752cff630 rip = 0x00007ffa24ad1912<br>
Found by: stack scanning<br>
8 0x7ffa24a60000<br>
rsp = 0x000000e752cff6c8 rip = 0x00007ffa24a60000<br>
Found by: stack scanning<br>
9 ntdll.dll + 0x71853<br>
rsp = 0x000000e752cff6d0 rip = 0x00007ffa24ad1853<br>
Found by: stack scanning<br>
10 0x7ffa24a60000<br>
rsp = 0x000000e752cff6e0 rip = 0x00007ffa24a60000<br>
Found by: stack scanning<br>
11 ntdll.dll + 0x71808<br>
rsp = 0x000000e752cff700 rip = 0x00007ffa24ad1808<br>
Found by: stack scanning<br>
12 ntdll.dll + 0x535d0<br>
rsp = 0x000000e752cff770 rip = 0x00007ffa24ab35d0<br>
Found by: stack scanning<br>
13 KERNELBASE.dll + 0x64c70<br>
rsp = 0x000000e752cff7c0 rip = 0x00007ffa22834c70<br>
Found by: stack scanning<br>
14 combase.dll + 0x9b50b<br>
rsp = 0x000000e752cff830 rip = 0x00007ffa22c5b50b<br>
Found by: stack scanning<br>
15 ntdll.dll + 0x3c4bf<br>
rsp = 0x000000e752cff940 rip = 0x00007ffa24a9c4bf<br>
Found by: stack scanning<br>
16 ntdll.dll + 0x535d0<br>
rsp = 0x000000e752cff9e0 rip = 0x00007ffa24ab35d0<br>
Found by: stack scanning<br>
17 ntdll.dll + 0x3ba17<br>
rsp = 0x000000e752cffa00 rip = 0x00007ffa24a9ba17<br>
Found by: stack scanning<br>
18 KERNELBASE.dll + 0x6a59a<br>
rsp = 0x000000e752cffa30 rip = 0x00007ffa2283a59a<br>
Found by: stack scanning<br>
19 combase.dll + 0x9b390<br>
rsp = 0x000000e752cffac0 rip = 0x00007ffa22c5b390<br>
Found by: stack scanning<br>
20 combase.dll + 0x9b1bc<br>
rsp = 0x000000e752cffb10 rip = 0x00007ffa22c5b1bc<br>
Found by: stack scanning<br>
21 combase.dll + 0x9b65e<br>
rsp = 0x000000e752cffb40 rip = 0x00007ffa22c5b65e<br>
Found by: stack scanning<br>
22 combase.dll + 0x9b13c<br>
rsp = 0x000000e752cffb70 rip = 0x00007ffa22c5b13c<br>
Found by: stack scanning<br>
23 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e752cffba0 rip = 0x00007ffa247f7bd4<br>
Found by: stack scanning<br>
24 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e752cffbd0 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 13<br>
0 ntdll.dll + 0x9fa54<br>
rax = 0x00000000000001cd rdx = 0x00000202d5d89710<br>
rcx = 0x0000000000000014 rbx = 0x00000202d5d89a90<br>
rsi = 0x00000202d5d10b50 rdi = 0x00000202d5d89a90<br>
rbp = 0x0000000000000000 rsp = 0x000000e752dffaf8<br>
r8 = 0x0000000000000000 r9 = 0x0000000000000029<br>
r10 = 0x0000000000000000 r11 = 0x000000e752dff6f0<br>
r12 = 0x0000000000000000 r13 = 0x0000000000000000<br>
r14 = 0x0000000000000000 r15 = 0x0000000000000000<br>
rip = 0x00007ffa24affa54<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x34060<br>
rsp = 0x000000e752dffb00 rip = 0x00007ffa24a94060<br>
Found by: stack scanning</p>
<p dir="auto">Thread 14<br>
0 ntdll.dll + 0x9fa54<br>
rax = 0x00000000000001cd rdx = 0x00000202d5d8dac0<br>
rcx = 0x0000000000000014 rbx = 0x00000202d5d8de40<br>
rsi = 0x00000202d5d10b50 rdi = 0x00000202d5d8de40<br>
rbp = 0x0000000000000000 rsp = 0x000000e752eff468<br>
r8 = 0x00000000000001a7 r9 = 0x00000000000001a7<br>
r10 = 0x00000000000001a6 r11 = 0x000000e752efecc0<br>
r12 = 0x0000000000000000 r13 = 0x00000202d5d10d48<br>
r14 = 0x0000000000000000 r15 = 0x0000000000000000<br>
rip = 0x00007ffa24affa54<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x34060<br>
rsp = 0x000000e752eff470 rip = 0x00007ffa24a94060<br>
Found by: stack scanning</p>
<p dir="auto">Thread 15<br>
0 win32u.dll + 0x9a84<br>
rax = 0x0000000000001452 rdx = 0x000000e752fff898<br>
rcx = 0x0000000000000001 rbx = 0x00000202d7a7a610<br>
rsi = 0x00000202da330b30 rdi = 0x00000202da330b30<br>
rbp = 0x0000000000000001 rsp = 0x000000e752fff828<br>
r8 = 0x00007ffa23880000 r9 = 0x00007ffa238b6a00<br>
r10 = 0x00007ffa238b7150 r11 = 0x00007ffa238b7620<br>
r12 = 0x000000e752fff920 r13 = 0x000000e752fff910<br>
r14 = 0x000000e752fff940 r15 = 0x0000000000000000<br>
rip = 0x00007ffa227a9a84<br>
Found by: given as instruction pointer in context<br>
1 USER32.dll + 0x21cad<br>
rsp = 0x000000e752fff830 rip = 0x00007ffa23a31cad<br>
Found by: stack scanning<br>
2 electron.exe!base::internal::TaskTracker::IsShutdownComplete() [task_tracker.cc : 478 + 0x16]<br>
rsp = 0x000000e752fff860 rip = 0x00007ff69f846373<br>
Found by: stack scanning<br>
3 electron.exe!base::internal::WorkerThread::RunWorker() [worker_thread.cc : 316 + 0x9]<br>
rsp = 0x000000e752fff8c0 rip = 0x00007ff69f84eb33<br>
Found by: call frame info<br>
4 electron.exe!base::internal::WorkerThread::RunSharedCOMWorker() [worker_thread.cc : 260 + 0x5]<br>
rsp = 0x000000e752fff9c0 rip = 0x00007ff69f84e770<br>
Found by: call frame info<br>
5 electron.exe!static unsigned long base::`anonymous namespace'::ThreadFunc(void *) [platform_thread_win.cc : 102 + 0x8]<br>
rsp = 0x000000e752fffa00 rip = 0x00007ff69f857391<br>
Found by: call frame info<br>
6 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e752fffa80 rip = 0x00007ffa247f7bd4<br>
Found by: call frame info<br>
7 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e752fffab0 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 16<br>
0 ntdll.dll + 0x9c744<br>
rax = 0x0000000000000034 rdx = 0x000000e7532ff420<br>
rcx = 0x0000000000000000 rbx = 0x0000000000000000<br>
rsi = 0x0000000000000000 rdi = 0x0000000000002af8<br>
rbp = 0x000000e7532ff5a0 rsp = 0x000000e7532ff3f8<br>
r8 = 0x00000202db60e940 r9 = 0x00000202db570000<br>
r10 = 0x0000000000000000 r11 = 0x0000000000000201<br>
r12 = 0x00007ff9f5c2dcd0 r13 = 0x00007ff9f5c2dcc0<br>
r14 = 0x0000000000000000 r15 = 0x00007ff9f5d51f70<br>
rip = 0x00007ffa24afc744<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x46951<br>
rbp = 0x000000e7532ff5a0 rsp = 0x000000e7532ff400<br>
rip = 0x00007ffa22816951<br>
Found by: stack scanning<br>
2 0x7ff9f57c0000<br>
rbp = 0x000000e7532ff5a0 rsp = 0x000000e7532ff480<br>
rip = 0x00007ff9f57c0000<br>
Found by: stack scanning<br>
3 SogouPy.ime + 0x152c00<br>
rbp = 0x000000e7532ff5a0 rsp = 0x000000e7532ff488<br>
rip = 0x00007ff9f5912c00<br>
Found by: stack scanning<br>
4 0x7ff9f57c0000<br>
rbp = 0x000000e7532ff5a0 rsp = 0x000000e7532ff490<br>
rip = 0x00007ff9f57c0000<br>
Found by: stack scanning<br>
5 SogouPy.ime + 0x46dcc8<br>
rbp = 0x000000e7532ff5a0 rsp = 0x000000e7532ff498<br>
rip = 0x00007ff9f5c2dcc8<br>
Found by: stack scanning<br>
6 SogouPy.ime + 0x1530d5<br>
rbp = 0x000000e7532ff5a0 rsp = 0x000000e7532ff4a0<br>
rip = 0x00007ff9f59130d5<br>
Found by: stack scanning<br>
7 ntdll.dll + 0x6ceb0<br>
rbp = 0x000000e7532ff5a0 rsp = 0x000000e7532ff530<br>
rip = 0x00007ffa24acceb0<br>
Found by: stack scanning<br>
8 SogouPy.ime + 0x621400<br>
rbp = 0x000000e7532ff5a0 rsp = 0x000000e7532ff598<br>
rip = 0x00007ff9f5de1400<br>
Found by: stack scanning<br>
9 SogouPy.ime + 0x621400<br>
rsp = 0x000000e7532ff6d0 rip = 0x00007ff9f5de1400<br>
Found by: stack scanning<br>
10 KERNELBASE.dll + 0x21efb<br>
rsp = 0x000000e7532ff7c0 rip = 0x00007ffa227f1efb<br>
Found by: stack scanning<br>
11 ntdll.dll + 0x535d0<br>
rsp = 0x000000e7532ff7d0 rip = 0x00007ffa24ab35d0<br>
Found by: stack scanning<br>
12 SogouPy.ime + 0x48a534<br>
rsp = 0x000000e7532ff820 rip = 0x00007ff9f5c4a534<br>
Found by: stack scanning<br>
13 SogouPy.ime + 0x478ff9<br>
rsp = 0x000000e7532ff850 rip = 0x00007ff9f5c38ff9<br>
Found by: stack scanning<br>
14 SogouPy.ime + 0x152c30<br>
rsp = 0x000000e7532ff870 rip = 0x00007ff9f5912c30<br>
Found by: stack scanning<br>
15 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e7532ff880 rip = 0x00007ffa247f7bd4<br>
Found by: stack scanning<br>
16 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e7532ff8b0 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 17<br>
0 ntdll.dll + 0x9c144<br>
rax = 0x0000000000000004 rdx = 0x0000000000000000<br>
rcx = 0x00000000000006cc rbx = 0x0000000000000000<br>
rsi = 0x000000e7533ff6e8 rdi = 0x00000000000006cc<br>
rbp = 0x0000000000000000 rsp = 0x000000e7533ff6b8<br>
r8 = 0x00000202db2df2d0 r9 = 0x00000202db140000<br>
r10 = 0x0000000000000000 r11 = 0x00000000090dd301<br>
r12 = 0x0000000000000000 r13 = 0x0000000000000000<br>
r14 = 0x00000000000006cc r15 = 0x0000000000000000<br>
rip = 0x00007ffa24afc144<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x38bc3<br>
rsp = 0x000000e7533ff6c0 rip = 0x00007ffa22808bc3<br>
Found by: stack scanning<br>
2 SogouPy.ime + 0x174012<br>
rsp = 0x000000e7533ff760 rip = 0x00007ff9f5934012<br>
Found by: stack scanning<br>
3 SogouPy.ime + 0x173f90<br>
rsp = 0x000000e7533ff788 rip = 0x00007ff9f5933f90<br>
Found by: stack scanning<br>
4 SogouPy.ime + 0x478ff9<br>
rsp = 0x000000e7533ff790 rip = 0x00007ff9f5c38ff9<br>
Found by: stack scanning<br>
5 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e7533ff7c0 rip = 0x00007ffa247f7bd4<br>
Found by: stack scanning<br>
6 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e7533ff7f0 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 18<br>
0 ntdll.dll + 0x9c144<br>
rax = 0x0000000000000004 rdx = 0x0000000000000000<br>
rcx = 0x00000000000006bc rbx = 0x0000000000000000<br>
rsi = 0x000000e7534ff898 rdi = 0x00000000000006bc<br>
rbp = 0x0000000000000000 rsp = 0x000000e7534ff868<br>
r8 = 0x000000e7534ff878 r9 = 0x000000e7534ff900<br>
r10 = 0x0000000000000000 r11 = 0x000000e7534ff900<br>
r12 = 0x0000000000000000 r13 = 0x0000000000000000<br>
r14 = 0x00000000000006bc r15 = 0x0000000000000000<br>
rip = 0x00007ffa24afc144<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x38bc3<br>
rsp = 0x000000e7534ff870 rip = 0x00007ffa22808bc3<br>
Found by: stack scanning<br>
2 KERNELBASE.dll + 0x631ec<br>
rsp = 0x000000e7534ff880 rip = 0x00007ffa228331ec<br>
Found by: stack scanning<br>
3 SogouPy.ime + 0x25668b<br>
rsp = 0x000000e7534ff910 rip = 0x00007ff9f5a1668b<br>
Found by: stack scanning<br>
4 SogouPy.ime + 0x256417<br>
rsp = 0x000000e7534ff950 rip = 0x00007ff9f5a16417<br>
Found by: stack scanning<br>
5 SogouPy.ime + 0x7c6bd8<br>
rsp = 0x000000e7534ff958 rip = 0x00007ff9f5f86bd8<br>
Found by: stack scanning<br>
6 SogouPy.ime + 0x5f4f90<br>
rsp = 0x000000e7534ff960 rip = 0x00007ff9f5db4f90<br>
Found by: stack scanning<br>
7 SogouPy.ime + 0x7c6bd8<br>
rsp = 0x000000e7534ff978 rip = 0x00007ff9f5f86bd8<br>
Found by: stack scanning<br>
8 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e7534ff990 rip = 0x00007ffa247f7bd4<br>
Found by: stack scanning<br>
9 SogouPy.ime + 0x7c6bd8<br>
rsp = 0x000000e7534ff998 rip = 0x00007ff9f5f86bd8<br>
Found by: stack scanning<br>
10 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e7534ff9c0 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 19<br>
0 ntdll.dll + 0x9c144<br>
rax = 0x0000000000000004 rdx = 0x0000000000000000<br>
rcx = 0x00000000000007b4 rbx = 0x0000000000000000<br>
rsi = 0x000000e7531ff8c8 rdi = 0x00000000000007b4<br>
rbp = 0x0000000000000001 rsp = 0x000000e7531ff898<br>
r8 = 0x00000202d9150d80 r9 = 0x00000202d993b258<br>
r10 = 0x00000202d993b010 r11 = 0x00000202d9150900<br>
r12 = 0x000000e7531ff990 r13 = 0x000000e7531ffab0<br>
r14 = 0x00000000000007b4 r15 = 0x7fffffffffffffff<br>
rip = 0x00007ffa24afc144<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x38bc3<br>
rsp = 0x000000e7531ff8a0 rip = 0x00007ffa22808bc3<br>
Found by: stack scanning<br>
2 electron.exe!base::WaitableEvent::TimedWait(base::TimeDelta const &) [waitable_event_win.cc : 107 + 0x2]<br>
rsp = 0x000000e7531ff940 rip = 0x00007ff69f82d5b0<br>
Found by: stack scanning<br>
3 electron.exe!base::internal::WorkerThread::Delegate::WaitForWork(base::WaitableEvent *) [worker_thread.cc : 35 + 0xd]<br>
rsp = 0x000000e7531ffa20 rip = 0x00007ff69f84df9a<br>
Found by: call frame info<br>
4 electron.exe!base::internal::WorkerThread::RunWorker() [worker_thread.cc : 316 + 0x9]<br>
rsp = 0x000000e7531ffa60 rip = 0x00007ff69f84eb33<br>
Found by: call frame info<br>
5 electron.exe!base::internal::WorkerThread::RunPooledWorker() [worker_thread.cc : 223 + 0x5]<br>
rsp = 0x000000e7531ffb60 rip = 0x00007ff69f84e6b0<br>
Found by: call frame info<br>
6 electron.exe!static unsigned long base::`anonymous namespace'::ThreadFunc(void *) [platform_thread_win.cc : 102 + 0x8]<br>
rsp = 0x000000e7531ffba0 rip = 0x00007ff69f857391<br>
Found by: call frame info<br>
7 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e7531ffc20 rip = 0x00007ffa247f7bd4<br>
Found by: call frame info<br>
8 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e7531ffc50 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 20<br>
0 ntdll.dll + 0x9c144<br>
rax = 0x0000000000000004 rdx = 0x0000000000000000<br>
rcx = 0x000000000000081c rbx = 0x0000000000000000<br>
rsi = 0x000000e7537ff418 rdi = 0x000000000000081c<br>
rbp = 0x0000000000000001 rsp = 0x000000e7537ff3e8<br>
r8 = 0x0000000000000001 r9 = 0x0000000000000002<br>
r10 = 0x0000000000000240 r11 = 0x000000e7537fe980<br>
r12 = 0x000000e7537ff4e0 r13 = 0x000000e7537ff600<br>
r14 = 0x000000000000081c r15 = 0x7fffffffffffffff<br>
rip = 0x00007ffa24afc144<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x38bc3<br>
rsp = 0x000000e7537ff3f0 rip = 0x00007ffa22808bc3<br>
Found by: stack scanning<br>
2 electron.exe!base::WaitableEvent::TimedWait(base::TimeDelta const &) [waitable_event_win.cc : 107 + 0x2]<br>
rsp = 0x000000e7537ff490 rip = 0x00007ff69f82d5b0<br>
Found by: stack scanning<br>
3 electron.exe!base::internal::WorkerThread::Delegate::WaitForWork(base::WaitableEvent *) [worker_thread.cc : 35 + 0xd]<br>
rsp = 0x000000e7537ff570 rip = 0x00007ff69f84df9a<br>
Found by: call frame info<br>
4 electron.exe!base::internal::WorkerThread::RunWorker() [worker_thread.cc : 316 + 0x9]<br>
rsp = 0x000000e7537ff5b0 rip = 0x00007ff69f84eb33<br>
Found by: call frame info<br>
5 electron.exe!base::internal::WorkerThread::RunPooledWorker() [worker_thread.cc : 223 + 0x5]<br>
rsp = 0x000000e7537ff6b0 rip = 0x00007ff69f84e6b0<br>
Found by: call frame info<br>
6 electron.exe!static unsigned long base::`anonymous namespace'::ThreadFunc(void *) [platform_thread_win.cc : 102 + 0x8]<br>
rsp = 0x000000e7537ff6f0 rip = 0x00007ff69f857391<br>
Found by: call frame info<br>
7 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e7537ff770 rip = 0x00007ffa247f7bd4<br>
Found by: call frame info<br>
8 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e7537ff7a0 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 21<br>
0 ntdll.dll + 0x9c144<br>
rax = 0x0000000000000004 rdx = 0x0000000000000000<br>
rcx = 0x0000000000000824 rbx = 0x0000000000000000<br>
rsi = 0x000000e7538ff538 rdi = 0x0000000000000824<br>
rbp = 0x0000000000000001 rsp = 0x000000e7538ff508<br>
r8 = 0x00000202db2d2f80 r9 = 0x00000202db140000<br>
r10 = 0x0000000000000000 r11 = 0x000000e7538fdc01<br>
r12 = 0x000000e7538ff600 r13 = 0x000000e7538ff720<br>
r14 = 0x0000000000000824 r15 = 0x7fffffffffffffff<br>
rip = 0x00007ffa24afc144<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x38bc3<br>
rsp = 0x000000e7538ff510 rip = 0x00007ffa22808bc3<br>
Found by: stack scanning<br>
2 electron.exe!base::WaitableEvent::TimedWait(base::TimeDelta const &) [waitable_event_win.cc : 107 + 0x2]<br>
rsp = 0x000000e7538ff5b0 rip = 0x00007ff69f82d5b0<br>
Found by: stack scanning<br>
3 electron.exe!base::internal::WorkerThread::Delegate::WaitForWork(base::WaitableEvent *) [worker_thread.cc : 35 + 0xd]<br>
rsp = 0x000000e7538ff690 rip = 0x00007ff69f84df9a<br>
Found by: call frame info<br>
4 electron.exe!base::internal::WorkerThread::RunWorker() [worker_thread.cc : 316 + 0x9]<br>
rsp = 0x000000e7538ff6d0 rip = 0x00007ff69f84eb33<br>
Found by: call frame info<br>
5 electron.exe!base::internal::WorkerThread::RunPooledWorker() [worker_thread.cc : 223 + 0x5]<br>
rsp = 0x000000e7538ff7d0 rip = 0x00007ff69f84e6b0<br>
Found by: call frame info<br>
6 electron.exe!static unsigned long base::`anonymous namespace'::ThreadFunc(void *) [platform_thread_win.cc : 102 + 0x8]<br>
rsp = 0x000000e7538ff810 rip = 0x00007ff69f857391<br>
Found by: call frame info<br>
7 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e7538ff890 rip = 0x00007ffa247f7bd4<br>
Found by: call frame info<br>
8 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e7538ff8c0 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 22<br>
0 ntdll.dll + 0x9c144<br>
rax = 0x0000000000000004 rdx = 0x0000000000000000<br>
rcx = 0x00000000000008bc rbx = 0x0000000000000000<br>
rsi = 0x0000000000000000 rdi = 0x00000000000008bc<br>
rbp = 0x0000000000000000 rsp = 0x000000e753aff8e8<br>
r8 = 0x0000000000000000 r9 = 0x0000000000000000<br>
r10 = 0x0000000000000000 r11 = 0x0000000000000000<br>
r12 = 0x0000000000000000 r13 = 0x0000000000000000<br>
r14 = 0x00000000000008bc r15 = 0x0000000000000000<br>
rip = 0x00007ffa24afc144<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x38bc3<br>
rsp = 0x000000e753aff8f0 rip = 0x00007ffa22808bc3<br>
Found by: stack scanning<br>
2 KERNELBASE.dll + 0x584c3<br>
rsp = 0x000000e753aff900 rip = 0x00007ffa228284c3<br>
Found by: stack scanning<br>
3 electron.exe!electron::NodeBindings::WakeupMainThread() [node_bindings.cc : 427 + 0x21]<br>
rsp = 0x000000e753aff970 rip = 0x00007ff69db105a3<br>
Found by: stack scanning<br>
4 electron.exe!static unsigned int uv__thread_start(void <em>) [thread.c : 108 + 0x5]<br>
rsp = 0x000000e753affa00 rip = 0x00007ff6a0feef12<br>
Found by: call frame info<br>
5 electron.exe!static unsigned long thread_start<unsigned int (__cdecl</em>)(void *),1>(void *) [thread.cpp : 97 + 0xd]<br>
rsp = 0x000000e753affa40 rip = 0x00007ff6a27e2b60<br>
Found by: call frame info<br>
6 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e753affa70 rip = 0x00007ffa247f7bd4<br>
Found by: call frame info<br>
7 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e753affaa0 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 23<br>
0 ntdll.dll + 0x9c1e4<br>
rax = 0x0000000000000009 rdx = 0x000000e753bff6a0<br>
rcx = 0x0000000000000870 rbx = 0x000000e753bff698<br>
rsi = 0x00000202d98814e0 rdi = 0x000000e753bff690<br>
rbp = 0x0000000000000000 rsp = 0x000000e753bff5e8<br>
r8 = 0x0000000000000000 r9 = 0x00000000000008dc<br>
r10 = 0x0000000000000000 r11 = 0x0000000000000246<br>
r12 = 0x000000e753bff708 r13 = 0x0000000000000000<br>
r14 = 0x000000e753bff700 r15 = 0x7fffffffffffffff<br>
rip = 0x00007ffa24afc1e4<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x584c3<br>
rsp = 0x000000e753bff5f0 rip = 0x00007ffa228284c3<br>
Found by: stack scanning<br>
2 electron.exe!base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoIdleWork() [thread_controller_with_message_pump_impl.cc : 433 + 0xd]<br>
rsp = 0x000000e753bff640 rip = 0x00007ff69f840860<br>
Found by: stack scanning<br>
3 electron.exe!base::MessagePumpForIO::DoRunLoop() [message_pump_win.cc : 641 + 0x3d]<br>
rsp = 0x000000e753bff6d0 rip = 0x00007ff69f7efca4<br>
Found by: call frame info<br>
4 electron.exe!base::MessagePumpWin::Run(base::MessagePump::Delegate *) [message_pump_win.cc : 74 + 0x9]<br>
rsp = 0x000000e753bff750 rip = 0x00007ff69f7eeaee<br>
Found by: call frame info<br>
5 electron.exe!base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run(bool,base::TimeDelta) [thread_controller_with_message_pump_impl.cc : 463 + 0xa]<br>
rsp = 0x000000e753bff7a0 rip = 0x00007ff69f840956<br>
Found by: call frame info<br>
6 electron.exe!base::RunLoop::Run() [run_loop.cc : 156 + 0x10]<br>
rsp = 0x000000e753bff7f0 rip = 0x00007ff69f81500e<br>
Found by: call frame info<br>
7 electron.exe!base::Thread::ThreadMain() [thread.cc : 312 + 0xc]<br>
rsp = 0x000000e753bff890 rip = 0x00007ff69f853da6<br>
Found by: call frame info<br>
8 electron.exe!static unsigned long base::`anonymous namespace'::ThreadFunc(void *) [platform_thread_win.cc : 102 + 0x8]<br>
rsp = 0x000000e753bff930 rip = 0x00007ff69f857391<br>
Found by: call frame info<br>
9 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e753bff9b0 rip = 0x00007ffa247f7bd4<br>
Found by: call frame info<br>
10 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e753bff9e0 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 24<br>
0 ntdll.dll + 0x9f9f4<br>
rax = 0x00000000000001ca rdx = 0x0000000000000000<br>
rcx = 0x00007ff6a3ae3b38 rbx = 0x0000000000000000<br>
rsi = 0x000000e753cff648 rdi = 0x0000000000000000<br>
rbp = 0x000000e753cff670 rsp = 0x000000e753cff618<br>
r8 = 0x0000000000000000 r9 = 0x0000000000000000<br>
r10 = 0x0000000000000000 r11 = 0x0000000000000000<br>
r12 = 0x0000000000000000 r13 = 0x0000000000000000<br>
r14 = 0x00007ff6a3ae3b38 r15 = 0x00007ff6a3ae3af8<br>
rip = 0x00007ffa24aff9f4<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x60895<br>
rbp = 0x000000e753cff670 rsp = 0x000000e753cff620<br>
rip = 0x00007ffa24ac0895<br>
Found by: stack scanning<br>
2 electron.exe!RtlUnwindEx + 0x12c8fa0<br>
rsp = 0x000000e753cff678 rip = 0x00007ff6a3ae3b60<br>
Found by: stack scanning<br>
3 electron.exe!RtlUnwindEx + 0x12c8f38<br>
rsp = 0x000000e753cff680 rip = 0x00007ff6a3ae3af8<br>
Found by: stack scanning<br>
4 electron.exe!RtlUnwindEx + 0x12c8fe0<br>
rsp = 0x000000e753cff688 rip = 0x00007ff6a3ae3ba0<br>
Found by: stack scanning<br>
5 KERNELBASE.dll + 0x7c379<br>
rsp = 0x000000e753cff690 rip = 0x00007ffa2284c379<br>
Found by: stack scanning<br>
6 electron.exe!RtlUnwindEx + 0x12c8fa0<br>
rsp = 0x000000e753cff698 rip = 0x00007ff6a3ae3b60<br>
Found by: stack scanning<br>
7 electron.exe!RtlUnwindEx + 0x12c8f78<br>
rsp = 0x000000e753cff6a0 rip = 0x00007ff6a3ae3b38<br>
Found by: stack scanning<br>
8 electron.exe!RtlUnwindEx + 0x12c8fc0<br>
rsp = 0x000000e753cff6a8 rip = 0x00007ff6a3ae3b80<br>
Found by: stack scanning<br>
9 electron.exe!RtlUnwindEx + 0x12c8fa0<br>
rsp = 0x000000e753cff6b8 rip = 0x00007ff6a3ae3b60<br>
Found by: stack scanning<br>
10 electron.exe!uv_cond_wait [thread.c : 414 + 0xc]<br>
rsp = 0x000000e753cff6c0 rip = 0x00007ff6a0fef3f0<br>
Found by: stack scanning<br>
11 electron.exe!static void worker(void *) [threadpool.c : 76 + 0xb]<br>
rsp = 0x000000e753cff6f0 rip = 0x00007ff6a1c17cbd<br>
Found by: call frame info<br>
12 electron.exe!static unsigned int uv__thread_start(void <em>) [thread.c : 108 + 0x5]<br>
rsp = 0x000000e753cff760 rip = 0x00007ff6a0feef12<br>
Found by: call frame info<br>
13 electron.exe!static unsigned long thread_start<unsigned int (__cdecl</em>)(void *),1>(void *) [thread.cpp : 97 + 0xd]<br>
rsp = 0x000000e753cff7a0 rip = 0x00007ff6a27e2b60<br>
Found by: call frame info<br>
14 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e753cff7d0 rip = 0x00007ffa247f7bd4<br>
Found by: call frame info<br>
15 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e753cff800 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 25<br>
0 ntdll.dll + 0x9f9f4<br>
rax = 0x00000000000001ca rdx = 0x0000000000000000<br>
rcx = 0x00007ff6a3ae3b38 rbx = 0x0000000000000000<br>
rsi = 0x000000e753dffc68 rdi = 0x0000000000000000<br>
rbp = 0x000000e753dffc90 rsp = 0x000000e753dffc38<br>
r8 = 0x0000000000000000 r9 = 0x0000000000000000<br>
r10 = 0x0000000000000000 r11 = 0x0000000000000000<br>
r12 = 0x0000000000000000 r13 = 0x0000000000000000<br>
r14 = 0x00007ff6a3ae3b38 r15 = 0x00007ff6a3ae3af8<br>
rip = 0x00007ffa24aff9f4<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x60895<br>
rbp = 0x000000e753dffc90 rsp = 0x000000e753dffc40<br>
rip = 0x00007ffa24ac0895<br>
Found by: stack scanning<br>
2 electron.exe!RtlUnwindEx + 0x12c8fa0<br>
rsp = 0x000000e753dffc98 rip = 0x00007ff6a3ae3b60<br>
Found by: stack scanning<br>
3 electron.exe!RtlUnwindEx + 0x12c8f38<br>
rsp = 0x000000e753dffca0 rip = 0x00007ff6a3ae3af8<br>
Found by: stack scanning<br>
4 electron.exe!RtlUnwindEx + 0x12c8fe0<br>
rsp = 0x000000e753dffca8 rip = 0x00007ff6a3ae3ba0<br>
Found by: stack scanning<br>
5 KERNELBASE.dll + 0x7c379<br>
rsp = 0x000000e753dffcb0 rip = 0x00007ffa2284c379<br>
Found by: stack scanning<br>
6 electron.exe!RtlUnwindEx + 0x12c8fa0<br>
rsp = 0x000000e753dffcb8 rip = 0x00007ff6a3ae3b60<br>
Found by: stack scanning<br>
7 electron.exe!RtlUnwindEx + 0x12c8f78<br>
rsp = 0x000000e753dffcc0 rip = 0x00007ff6a3ae3b38<br>
Found by: stack scanning<br>
8 electron.exe!RtlUnwindEx + 0x12c8fc0<br>
rsp = 0x000000e753dffcc8 rip = 0x00007ff6a3ae3b80<br>
Found by: stack scanning<br>
9 electron.exe!RtlUnwindEx + 0x12c8fa0<br>
rsp = 0x000000e753dffcd8 rip = 0x00007ff6a3ae3b60<br>
Found by: stack scanning<br>
10 electron.exe!uv_cond_wait [thread.c : 414 + 0xc]<br>
rsp = 0x000000e753dffce0 rip = 0x00007ff6a0fef3f0<br>
Found by: stack scanning<br>
11 electron.exe!static void worker(void *) [threadpool.c : 76 + 0xb]<br>
rsp = 0x000000e753dffd10 rip = 0x00007ff6a1c17cbd<br>
Found by: call frame info<br>
12 electron.exe!static unsigned int uv__thread_start(void <em>) [thread.c : 108 + 0x5]<br>
rsp = 0x000000e753dffd80 rip = 0x00007ff6a0feef12<br>
Found by: call frame info<br>
13 electron.exe!static unsigned long thread_start<unsigned int (__cdecl</em>)(void *),1>(void *) [thread.cpp : 97 + 0xd]<br>
rsp = 0x000000e753dffdc0 rip = 0x00007ff6a27e2b60<br>
Found by: call frame info<br>
14 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e753dffdf0 rip = 0x00007ffa247f7bd4<br>
Found by: call frame info<br>
15 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e753dffe20 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 26<br>
0 ntdll.dll + 0x9f9f4<br>
rax = 0x00000000000001ca rdx = 0x0000000000000000<br>
rcx = 0x00007ff6a3ae3b38 rbx = 0x0000000000000000<br>
rsi = 0x000000e753effa98 rdi = 0x0000000000000000<br>
rbp = 0x000000e753effac0 rsp = 0x000000e753effa68<br>
r8 = 0x0000000000000000 r9 = 0x000000e753effac0<br>
r10 = 0x000000e753efd000 r11 = 0x000000e753efd000<br>
r12 = 0x0000000000000000 r13 = 0x0000000000000000<br>
r14 = 0x00007ff6a3ae3b38 r15 = 0x00007ff6a3ae3af8<br>
rip = 0x00007ffa24aff9f4<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x60895<br>
rbp = 0x000000e753effac0 rsp = 0x000000e753effa70<br>
rip = 0x00007ffa24ac0895<br>
Found by: stack scanning<br>
2 electron.exe!RtlUnwindEx + 0x12c8fa0<br>
rsp = 0x000000e753effac8 rip = 0x00007ff6a3ae3b60<br>
Found by: stack scanning<br>
3 electron.exe!RtlUnwindEx + 0x12c8f38<br>
rsp = 0x000000e753effad0 rip = 0x00007ff6a3ae3af8<br>
Found by: stack scanning<br>
4 electron.exe!RtlUnwindEx + 0x12c8fe0<br>
rsp = 0x000000e753effad8 rip = 0x00007ff6a3ae3ba0<br>
Found by: stack scanning<br>
5 KERNELBASE.dll + 0x7c379<br>
rsp = 0x000000e753effae0 rip = 0x00007ffa2284c379<br>
Found by: stack scanning<br>
6 electron.exe!RtlUnwindEx + 0x12c8fa0<br>
rsp = 0x000000e753effae8 rip = 0x00007ff6a3ae3b60<br>
Found by: stack scanning<br>
7 electron.exe!RtlUnwindEx + 0x12c8f78<br>
rsp = 0x000000e753effaf0 rip = 0x00007ff6a3ae3b38<br>
Found by: stack scanning<br>
8 electron.exe!RtlUnwindEx + 0x12c8fc0<br>
rsp = 0x000000e753effaf8 rip = 0x00007ff6a3ae3b80<br>
Found by: stack scanning<br>
9 electron.exe!RtlUnwindEx + 0x12c8fa0<br>
rsp = 0x000000e753effb08 rip = 0x00007ff6a3ae3b60<br>
Found by: stack scanning<br>
10 electron.exe!uv_cond_wait [thread.c : 414 + 0xc]<br>
rsp = 0x000000e753effb10 rip = 0x00007ff6a0fef3f0<br>
Found by: stack scanning<br>
11 electron.exe!static void worker(void *) [threadpool.c : 76 + 0xb]<br>
rsp = 0x000000e753effb40 rip = 0x00007ff6a1c17cbd<br>
Found by: call frame info<br>
12 electron.exe!static unsigned int uv__thread_start(void <em>) [thread.c : 108 + 0x5]<br>
rsp = 0x000000e753effbb0 rip = 0x00007ff6a0feef12<br>
Found by: call frame info<br>
13 electron.exe!static unsigned long thread_start<unsigned int (__cdecl</em>)(void *),1>(void *) [thread.cpp : 97 + 0xd]<br>
rsp = 0x000000e753effbf0 rip = 0x00007ff6a27e2b60<br>
Found by: call frame info<br>
14 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e753effc20 rip = 0x00007ffa247f7bd4<br>
Found by: call frame info<br>
15 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e753effc50 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 27<br>
0 ntdll.dll + 0x9f9f4<br>
rax = 0x00000000000001ca rdx = 0x0000000000000000<br>
rcx = 0x00007ff6a3ae3b38 rbx = 0x0000000000000000<br>
rsi = 0x000000e753fffc68 rdi = 0x0000000000000000<br>
rbp = 0x000000e753fffc90 rsp = 0x000000e753fffc38<br>
r8 = 0x000000e753fffa88 r9 = 0x0000000000000000<br>
r10 = 0x0000000000000000 r11 = 0x0000000000000246<br>
r12 = 0x0000000000000000 r13 = 0x0000000000000000<br>
r14 = 0x00007ff6a3ae3b38 r15 = 0x00007ff6a3ae3af8<br>
rip = 0x00007ffa24aff9f4<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x60895<br>
rbp = 0x000000e753fffc90 rsp = 0x000000e753fffc40<br>
rip = 0x00007ffa24ac0895<br>
Found by: stack scanning<br>
2 electron.exe!RtlUnwindEx + 0x12c8fc0<br>
rbp = 0x000000e753fffc90 rsp = 0x000000e753fffc48<br>
rip = 0x00007ff6a3ae3b80<br>
Found by: stack scanning<br>
3 KERNELBASE.dll + 0x21efb<br>
rbp = 0x000000e753fffc90 rsp = 0x000000e753fffc50<br>
rip = 0x00007ffa227f1efb<br>
Found by: stack scanning<br>
4 electron.exe!RtlUnwindEx + 0x12c8fa0<br>
rsp = 0x000000e753fffc98 rip = 0x00007ff6a3ae3b60<br>
Found by: stack scanning<br>
5 electron.exe!RtlUnwindEx + 0x12c8f38<br>
rsp = 0x000000e753fffca0 rip = 0x00007ff6a3ae3af8<br>
Found by: stack scanning<br>
6 electron.exe!RtlUnwindEx + 0x12c8fe0<br>
rsp = 0x000000e753fffca8 rip = 0x00007ff6a3ae3ba0<br>
Found by: stack scanning<br>
7 KERNELBASE.dll + 0x7c379<br>
rsp = 0x000000e753fffcb0 rip = 0x00007ffa2284c379<br>
Found by: stack scanning<br>
8 electron.exe!RtlUnwindEx + 0x12c8fa0<br>
rsp = 0x000000e753fffcb8 rip = 0x00007ff6a3ae3b60<br>
Found by: stack scanning<br>
9 electron.exe!RtlUnwindEx + 0x12c8f78<br>
rsp = 0x000000e753fffcc0 rip = 0x00007ff6a3ae3b38<br>
Found by: stack scanning<br>
10 electron.exe!RtlUnwindEx + 0x12c8fc0<br>
rsp = 0x000000e753fffcc8 rip = 0x00007ff6a3ae3b80<br>
Found by: stack scanning<br>
11 electron.exe!RtlUnwindEx + 0x12c8fa0<br>
rsp = 0x000000e753fffcd8 rip = 0x00007ff6a3ae3b60<br>
Found by: stack scanning<br>
12 electron.exe!uv_cond_wait [thread.c : 414 + 0xc]<br>
rsp = 0x000000e753fffce0 rip = 0x00007ff6a0fef3f0<br>
Found by: stack scanning<br>
13 electron.exe!static void worker(void *) [threadpool.c : 76 + 0xb]<br>
rsp = 0x000000e753fffd10 rip = 0x00007ff6a1c17cbd<br>
Found by: call frame info<br>
14 electron.exe!static unsigned int uv__thread_start(void <em>) [thread.c : 108 + 0x5]<br>
rsp = 0x000000e753fffd80 rip = 0x00007ff6a0feef12<br>
Found by: call frame info<br>
15 electron.exe!static unsigned long thread_start<unsigned int (__cdecl</em>)(void *),1>(void *) [thread.cpp : 97 + 0xd]<br>
rsp = 0x000000e753fffdc0 rip = 0x00007ff6a27e2b60<br>
Found by: call frame info<br>
16 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e753fffdf0 rip = 0x00007ffa247f7bd4<br>
Found by: call frame info<br>
17 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e753fffe20 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 28<br>
0 ntdll.dll + 0x9c144<br>
rax = 0x0000000000000004 rdx = 0x0000000000000000<br>
rcx = 0x0000000000000900 rbx = 0x0000000000000000<br>
rsi = 0x000000e7540ff408 rdi = 0x0000000000000900<br>
rbp = 0x0000000000000000 rsp = 0x000000e7540ff3d8<br>
r8 = 0x000000e7540ff718 r9 = 0x00007ff69f857306<br>
r10 = 0x000000e7540fd000 r11 = 0x000000e7540fd000<br>
r12 = 0x000000e7540ff4d0 r13 = 0x0000000000000000<br>
r14 = 0x0000000000000900 r15 = 0x7fffffffffffffff<br>
rip = 0x00007ffa24afc144<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x38bc3<br>
rsp = 0x000000e7540ff3e0 rip = 0x00007ffa22808bc3<br>
Found by: stack scanning<br>
2 electron.exe!base::WaitableEvent::TimedWait(base::TimeDelta const &) [waitable_event_win.cc : 107 + 0x2]<br>
rsp = 0x000000e7540ff480 rip = 0x00007ff69f82d5b0<br>
Found by: stack scanning<br>
3 electron.exe!base::internal::WorkerThread::Delegate::WaitForWork(base::WaitableEvent *) [worker_thread.cc : 35 + 0xd]<br>
rsp = 0x000000e7540ff560 rip = 0x00007ff69f84df9a<br>
Found by: call frame info<br>
4 electron.exe!base::internal::WorkerThread::RunWorker() [worker_thread.cc : 297 + 0xd]<br>
rsp = 0x000000e7540ff5a0 rip = 0x00007ff69f84e847<br>
Found by: call frame info<br>
5 electron.exe!base::internal::WorkerThread::RunBackgroundPooledWorker() [worker_thread.cc : 229 + 0x5]<br>
rsp = 0x000000e7540ff6a0 rip = 0x00007ff69f84e570<br>
Found by: call frame info<br>
6 electron.exe!static unsigned long base::`anonymous namespace'::ThreadFunc(void *) [platform_thread_win.cc : 102 + 0x8]<br>
rsp = 0x000000e7540ff6e0 rip = 0x00007ff69f857391<br>
Found by: call frame info<br>
7 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e7540ff760 rip = 0x00007ffa247f7bd4<br>
Found by: call frame info<br>
8 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e7540ff790 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
<p dir="auto">Thread 29<br>
0 win32u.dll + 0x9a84<br>
rax = 0x0000000000001452 rdx = 0x000000e7535ff858<br>
rcx = 0x0000000000000001 rbx = 0x00000202d7a7a610<br>
rsi = 0x00000202d9f379c0 rdi = 0x00000202d9f379c0<br>
rbp = 0x0000000000000001 rsp = 0x000000e7535ff7e8<br>
r8 = 0x000000e7535ff9f8 r9 = 0x00007ff69f857306<br>
r10 = 0x000000e7535fd000 r11 = 0x000000e7535fd000<br>
r12 = 0x000000e7535ff8e0 r13 = 0x000000e7535ff8d0<br>
r14 = 0x000000e7535ff900 r15 = 0x0000000000000000<br>
rip = 0x00007ffa227a9a84<br>
Found by: given as instruction pointer in context<br>
1 USER32.dll + 0x21cad<br>
rsp = 0x000000e7535ff7f0 rip = 0x00007ffa23a31cad<br>
Found by: stack scanning<br>
2 electron.exe!base::internal::TaskTracker::IsShutdownComplete() [task_tracker.cc : 478 + 0x16]<br>
rsp = 0x000000e7535ff820 rip = 0x00007ff69f846373<br>
Found by: stack scanning<br>
3 electron.exe!base::internal::WorkerThread::RunWorker() [worker_thread.cc : 316 + 0x9]<br>
rsp = 0x000000e7535ff880 rip = 0x00007ff69f84eb33<br>
Found by: call frame info<br>
4 electron.exe!base::internal::WorkerThread::RunSharedCOMWorker() [worker_thread.cc : 260 + 0x5]<br>
rsp = 0x000000e7535ff980 rip = 0x00007ff69f84e770<br>
Found by: call frame info<br>
5 electron.exe!static unsigned long base::`anonymous namespace'::ThreadFunc(void *) [platform_thread_win.cc : 102 + 0x8]<br>
rsp = 0x000000e7535ff9c0 rip = 0x00007ff69f857391<br>
Found by: call frame info<br>
6 KERNEL32.DLL + 0x17bd4<br>
rsp = 0x000000e7535ffa40 rip = 0x00007ffa247f7bd4<br>
Found by: call frame info<br>
7 ntdll.dll + 0x6ced1<br>
rsp = 0x000000e7535ffa70 rip = 0x00007ffa24acced1<br>
Found by: stack scanning</p>
</code><p dir="auto"><code class="notranslate">Loaded modules:<br>
0x10000000 - 0x1013bfff Resource.dll 0.0.0.0<br>
0x7ff69d9f0000 - 0x7ff6a3ea4fff electron.exe 3.0.0.0 (main)<br>
0x7ff9d2a30000 - 0x7ff9d2d61fff ffmpeg.dll 0.0.0.0<br>
0x7ff9e4d40000 - 0x7ff9e4f06fff d3d9.dll 10.0.18362.387<br>
0x7ff9f5190000 - 0x7ff9f53f8fff PicFace64.dll 1.1.0.1859<br>
0x7ff9f57c0000 - 0x7ff9f6036fff SogouPy.ime 9.3.0.3129 (WARNING: No symbols, SogouPy64.pdb, 9E1FE08F3DC04E878393600237A7BC7C1c)<br>
0x7ff9f6260000 - 0x7ff9f6448fff sogoutsf.ime 9.3.0.3129<br>
0x7ff9fc1e0000 - 0x7ff9fc44ffff UIAutomationCore.DLL 7.2.18362.693<br>
0x7ffa06ae0000 - 0x7ffa06b80fff twinapi.dll 10.0.18362.628 (WARNING: No symbols, twinapi.pdb, C719F12CC8833390F8E254445725B8761)<br>
0x7ffa0a270000 - 0x7ffa0a2d4fff OLEACC.dll 7.2.18362.1<br>
0x7ffa0a920000 - 0x7ffa0a942fff dxva2.dll 10.0.18362.1<br>
0x7ffa0d3a0000 - 0x7ffa0d3abfff Secur32.dll 10.0.18362.1<br>
0x7ffa0ef80000 - 0x7ffa0f204fff COMCTL32.dll 6.10.18362.720<br>
0x7ffa13700000 - 0x7ffa138d4fff urlmon.dll 11.0.18362.693<br>
0x7ffa15e40000 - 0x7ffa15e49fff VERSION.dll 10.0.18362.1<br>
0x7ffa160c0000 - 0x7ffa16365fff iertutil.dll 11.0.18362.693<br>
0x7ffa16d00000 - 0x7ffa16ffdfff DWrite.dll 10.0.18362.476<br>
0x7ffa175e0000 - 0x7ffa175f8fff USP10.dll 10.0.18362.476<br>
0x7ffa188b0000 - 0x7ffa189a0fff WINHTTP.dll 10.0.18362.693<br>
0x7ffa1b2f0000 - 0x7ffa1b409fff InputHost.dll 10.0.18362.387<br>
0x7ffa1ba10000 - 0x7ffa1ba2bfff NLAapi.dll 10.0.18362.693<br>
0x7ffa1ba70000 - 0x7ffa1ba8bfff dhcpcsvc.DLL 10.0.18362.267<br>
0x7ffa1bac0000 - 0x7ffa1bad5fff dhcpcsvc6.DLL 10.0.18362.267<br>
0x7ffa1c230000 - 0x7ffa1c380fff Windows.UI.dll 10.0.18362.387<br>
0x7ffa1c690000 - 0x7ffa1c72dfff TextInputFramework.dll 10.0.18362.693<br>
0x7ffa1c730000 - 0x7ffa1ca59fff CoreUIComponents.dll 10.0.18362.207<br>
0x7ffa1cad0000 - 0x7ffa1cb41fff MMDevApi.dll 10.0.18362.387<br>
0x7ffa1d5b0000 - 0x7ffa1d702fff wintypes.dll 10.0.18362.693<br>
0x7ffa1d730000 - 0x7ffa1d736fff MSIMG32.dll 10.0.18362.719<br>
0x7ffa1d810000 - 0x7ffa1d826fff ColorAdapterClient.dll 10.0.18362.267<br>
0x7ffa1d830000 - 0x7ffa1d8ddfff mscms.dll 10.0.18362.267<br>
0x7ffa1db20000 - 0x7ffa1dba8fff WINSPOOL.DRV 10.0.18362.693<br>
0x7ffa1df80000 - 0x7ffa1e06efff PROPSYS.dll 7.0.18362.267<br>
0x7ffa1e0d0000 - 0x7ffa1e0e2fff WTSAPI32.dll 10.0.18362.1<br>
0x7ffa1e150000 - 0x7ffa1e167fff VoiceInput64.dll 1.0.0.162<br>
0x7ffa1e1c0000 - 0x7ffa1e41afff d3d11.dll 10.0.18362.387<br>
0x7ffa1f1d0000 - 0x7ffa1f429fff twinapi.appcore.dll 10.0.18362.693<br>
0x7ffa1f430000 - 0x7ffa1f45cfff winmmbase.dll 10.0.18362.1<br>
0x7ffa1f8d0000 - 0x7ffa1f8f3fff WINMM.dll 10.0.18362.1<br>
0x7ffa1f9f0000 - 0x7ffa1fac3fff CoreMessaging.dll 10.0.18362.1<br>
0x7ffa1fd60000 - 0x7ffa1fd88fff RMCLIENT.dll 10.0.18362.267<br>
0x7ffa1fe50000 - 0x7ffa1fee8fff UxTheme.dll 10.0.18362.449<br>
0x7ffa1ff60000 - 0x7ffa1ff8cfff dwmapi.dll 10.0.18362.267<br>
0x7ffa201c0000 - 0x7ffa201cdfff HID.DLL 10.0.18362.1<br>
0x7ffa20340000 - 0x7ffa20533fff dbghelp.dll 10.0.18362.1<br>
0x7ffa20540000 - 0x7ffa2055ffff dxcore.dll 10.0.18362.1<br>
0x7ffa20580000 - 0x7ffa2066afff dxgi.dll 10.0.18362.693<br>
0x7ffa20920000 - 0x7ffa20950fff ntmarta.dll 10.0.18362.1<br>
0x7ffa20e10000 - 0x7ffa20e49fff IPHLPAPI.DLL 10.0.18362.1<br>
0x7ffa20e50000 - 0x7ffa20f19fff DNSAPI.dll 10.0.18362.267<br>
0x7ffa21100000 - 0x7ffa21166fff mswsock.dll 10.0.18362.1<br>
0x7ffa212d0000 - 0x7ffa212dbfff CRYPTBASE.DLL 10.0.18362.1<br>
0x7ffa21390000 - 0x7ffa213cafff NTASN1.dll 10.0.18362.1<br>
0x7ffa213d0000 - 0x7ffa213f5fff ncrypt.dll 10.0.18362.1<br>
0x7ffa216a0000 - 0x7ffa216c9fff DEVOBJ.dll 10.0.18362.387<br>
0x7ffa217b0000 - 0x7ffa2180bfff WINSTA.dll 10.0.18362.53<br>
0x7ffa21810000 - 0x7ffa21834fff USERENV.dll 10.0.18362.387<br>
0x7ffa21840000 - 0x7ffa2186efff SSPICLI.DLL 10.0.18362.1<br>
0x7ffa21920000 - 0x7ffa2192ffff UMPDC.dll 0.0.0.0<br>
0x7ffa21930000 - 0x7ffa21979fff powrprof.dll 10.0.18362.1<br>
0x7ffa21980000 - 0x7ffa219a2fff profapi.dll 10.0.18362.693<br>
0x7ffa219b0000 - 0x7ffa219c0fff kernel.appcore.dll 10.0.18362.1<br>
0x7ffa219d0000 - 0x7ffa219e1fff MSASN1.dll 10.0.18362.1<br>
0x7ffa219f0000 - 0x7ffa2216ffff windows.storage.dll 10.0.18362.719<br>
0x7ffa22170000 - 0x7ffa222b8fff CRYPT32.dll 10.0.18362.592<br>
0x7ffa222c0000 - 0x7ffa223b9fff ucrtbase.dll 10.0.18362.387<br>
0x7ffa223c0000 - 0x7ffa22409fff cfgmgr32.dll 10.0.18362.387<br>
0x7ffa22410000 - 0x7ffa224adfff msvcp_win.dll 10.0.18362.387<br>
0x7ffa224b0000 - 0x7ffa2252ffff bcryptPrimitives.dll 10.0.18362.295<br>
0x7ffa22530000 - 0x7ffa226c3fff gdi32full.dll 10.0.18362.719<br>
0x7ffa22780000 - 0x7ffa22796fff cryptsp.dll 10.0.18362.1<br>
0x7ffa227a0000 - 0x7ffa227c0fff win32u.dll 10.0.18362.719 (WARNING: No symbols, win32u.pdb, BC2E49ABE46D2E93B278B4DECFCA62A81)<br>
0x7ffa227d0000 - 0x7ffa22a72fff KERNELBASE.dll 10.0.18362.719 (WARNING: No symbols, kernelbase.pdb, 72AFCB6A7AD8DF33ABE4D3B1AE4331C91)<br>
0x7ffa22a80000 - 0x7ffa22aa5fff bcrypt.dll 10.0.18362.267<br>
0x7ffa22b10000 - 0x7ffa22bb8fff shcore.dll 10.0.18362.1<br>
0x7ffa22bc0000 - 0x7ffa22ef5fff combase.dll 10.0.18362.693 (WARNING: No symbols, combase.pdb, CF9D0255843693B86CDA897C7FEC8E981)<br>
0x7ffa22f00000 - 0x7ffa22f51fff shlwapi.dll 10.0.18362.1<br>
0x7ffa23060000 - 0x7ffa2308dfff IMM32.dll 10.0.18362.387<br>
0x7ffa230f0000 - 0x7ffa237d4fff SHELL32.dll 10.0.18362.719<br>
0x7ffa237e0000 - 0x7ffa2387dfff msvcrt.dll 7.0.18362.1<br>
0x7ffa23880000 - 0x7ffa2399ffff RPCRT4.dll 10.0.18362.628<br>
0x7ffa239a0000 - 0x7ffa23a0efff WS2_32.dll 10.0.18362.387<br>
0x7ffa23a10000 - 0x7ffa23ba3fff USER32.dll 10.0.18362.719 (WARNING: No symbols, user32.pdb, 4F37391105E550777C303557FB2124DD1)<br>
0x7ffa23bb0000 - 0x7ffa23bb7fff NSI.dll 10.0.18362.449<br>
0x7ffa23c30000 - 0x7ffa23cd2fff advapi32.dll 10.0.18362.329<br>
0x7ffa23ce0000 - 0x7ffa23ce7fff PSAPI.DLL 10.0.18362.1<br>
0x7ffa24160000 - 0x7ffa242b6fff ole32.dll 10.0.18362.693<br>
0x7ffa242c0000 - 0x7ffa242e5fff GDI32.dll 10.0.18362.1<br>
0x7ffa24530000 - 0x7ffa245f3fff OLEAUT32.dll 10.0.18362.693<br>
0x7ffa24600000 - 0x7ffa24735fff MSCTF.dll 10.0.18362.693<br>
0x7ffa24740000 - 0x7ffa247d6fff sechost.dll 10.0.18362.693<br>
0x7ffa247e0000 - 0x7ffa24891fff KERNEL32.DLL 10.0.18362.329 (WARNING: No symbols, kernel32.pdb, 5A77DE8CE8D58731F0EA38F1C92F48D81)<br>
0x7ffa248a0000 - 0x7ffa24941fff clbcatq.dll 2001.12.10941.16384<br>
0x7ffa24950000 - 0x7ffa24a1ffff COMDLG32.dll 10.0.18362.693<br>
0x7ffa24a60000 - 0x7ffa24c4ffff ntdll.dll 10.0.18362.719 (WARNING: No symbols, ntdll.pdb, FB60D3E08B5E4960376A4E73BD35F24E1)<br>
</code></p></pre><p dir="auto"></p>
</details> | <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">Clicking on a Slack update notification on macOS sometimes results in an system level crash on exit. Clicking the update notification normally quits the app and applies the update before restarting. Not happening with a normal quit through the main app menu or with Clear Cache & Restart from the Help menu.</p>
<ul dir="auto">
<li><strong>Electron Version:</strong>
<ul dir="auto">
<li>8.x</li>
</ul>
</li>
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>macOS 10.10.5 Yosemite +</li>
</ul>
</li>
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li>7.x</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">No system level crash on exit.</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">System level crash on exit.</p>
<h3 dir="auto">Additional Information</h3>
<details>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Process: Slack [490]
Path: /Applications/Slack.app/Contents/MacOS/Slack
Identifier: com.tinyspeck.slackmacgap
Version: 4.6.0-alpha1200316 (6291)
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: Slack [490]
User ID: 503
Date/Time: 2020-03-24 13:28:42.348 -0700
OS Version: Mac OS X 10.10.5 (14F2511)
Report Version: 11
Anonymous UUID: F655004E-3871-F403-6DD9-90E239D3FA6A
Time Awake Since Boot: 4600 seconds
Crashed Thread: 0 CrBrowserMain Dispatch queue: com.apple.main-thread
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Application Specific Information:
abort() called
*** error for object 0x7fc32370d8c0: pointer being freed was not allocated
Thread 0 Crashed:: CrBrowserMain Dispatch queue: com.apple.main-thread
0 libsystem_kernel.dylib 0x00007fff8c115286 __pthread_kill + 10
1 libsystem_c.dylib 0x00007fff88bfc9a3 abort + 129
2 libsystem_malloc.dylib 0x00007fff85d4c1cb free + 428
3 com.github.Electron.framework 0x000000010265a9ce 0x100100000 + 39168462
4 com.github.Electron.framework 0x000000010265aa95 0x100100000 + 39168661
5 com.github.Electron.framework 0x000000010265a772 0x100100000 + 39167858
6 com.github.Electron.framework 0x00000001026596dd 0x100100000 + 39163613
7 com.github.Electron.framework 0x00000001001fe5c0 0x100100000 + 1041856
8 com.github.Electron.framework 0x0000000101dff2b4 0x100100000 + 30405300
9 com.github.Electron.framework 0x00000001001eeed9 0x100100000 + 978649
10 com.github.Electron.framework 0x00000001001b951c 0x100100000 + 759068
11 com.github.Electron.framework 0x0000000101fc3648 0x100100000 + 32257608
12 com.github.Electron.framework 0x0000000101fc35f4 0x100100000 + 32257524
13 com.github.Electron.framework 0x0000000101fe284b 0x100100000 + 32385099
14 com.github.Electron.framework 0x0000000101fe272e 0x100100000 + 32384814
15 com.github.Electron.framework 0x0000000101fc2f92 0x100100000 + 32255890
16 com.github.Electron.framework 0x0000000101fccea7 0x100100000 + 32296615
17 com.github.Electron.framework 0x0000000101b55a3d 0x100100000 + 27613757
18 com.github.Electron.framework 0x0000000101b55b89 0x100100000 + 27614089
19 com.github.Electron.framework 0x00000001001d0fc9 0x100100000 + 856009
20 com.github.Electron.framework 0x00000001001bbdac 0x100100000 + 769452
21 com.github.Electron.framework 0x00000001001bd2dc 0x100100000 + 774876
22 com.github.Electron.framework 0x0000000100161e48 0x100100000 + 400968
23 com.github.Electron.framework 0x0000000100163a0e 0x100100000 + 408078
24 com.github.Electron.framework 0x0000000100163ad2 0x100100000 + 408274
25 com.github.Electron.framework 0x0000000100df4cec 0x100100000 + 13585644
26 com.github.Electron.framework 0x0000000100df41ea 0x100100000 + 13582826
27 com.github.Electron.framework 0x0000000100df37c2 0x100100000 + 13580226
28 com.github.Electron.framework 0x00000001017f6b59 0x100100000 + 24079193
29 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
30 com.github.Electron.framework 0x000000010178ec3a 0x100100000 + 23653434
31 com.github.Electron.framework 0x00000001018668b4 0x100100000 + 24537268
32 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
33 com.github.Electron.framework 0x0000000101783efa 0x100100000 + 23609082
34 com.github.Electron.framework 0x0000000101783cd8 0x100100000 + 23608536
35 com.github.Electron.framework 0x0000000100eada98 0x100100000 + 14342808
36 com.github.Electron.framework 0x0000000100ead68e v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*) + 206
37 com.github.Electron.framework 0x0000000101128ece 0x100100000 + 16944846
38 com.github.Electron.framework 0x00000001011289da v8::internal::Object::GetProperty(v8::internal::LookupIterator*, bool) + 426
39 com.github.Electron.framework 0x0000000100faaa30 0x100100000 + 15378992
40 com.github.Electron.framework 0x0000000100fb385e 0x100100000 + 15415390
41 com.github.Electron.framework 0x00000001017f6a79 0x100100000 + 24078969
42 com.github.Electron.framework 0x00000001018668b4 0x100100000 + 24537268
43 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
44 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
45 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
46 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
47 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
48 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
49 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
50 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
51 com.github.Electron.framework 0x000000010177fff9 0x100100000 + 23592953
52 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
53 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
54 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
55 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
56 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
57 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
58 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
59 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
60 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
61 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
62 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
63 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
64 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
65 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
66 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
67 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
68 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
69 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
70 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
71 com.github.Electron.framework 0x00000001017d5f12 0x100100000 + 23944978
72 com.github.Electron.framework 0x00000001017a64a8 0x100100000 + 23749800
73 com.github.Electron.framework 0x0000000101783e58 0x100100000 + 23608920
74 com.github.Electron.framework 0x0000000100ead9a0 0x100100000 + 14342560
75 com.github.Electron.framework 0x0000000100eadfa3 0x100100000 + 14344099
76 com.github.Electron.framework 0x0000000100eae06d 0x100100000 + 14344301
77 com.github.Electron.framework 0x0000000100ed0077 v8::internal::MicrotaskQueue::RunMicrotasks(v8::internal::Isolate*) + 407
78 com.github.Electron.framework 0x00000001058fefe4 node::InternalCallbackScope::Close() + 260
79 com.github.Electron.framework 0x00000001058ff2d5 0x100100000 + 92271317
80 com.github.Electron.framework 0x000000010590d9f1 0x100100000 + 92330481
81 com.github.Electron.framework 0x0000000105984e66 0x100100000 + 92819046
82 com.github.Electron.framework 0x00000001059851e2 0x100100000 + 92819938
83 com.github.Electron.framework 0x0000000105a6b458 0x100100000 + 93762648
84 com.github.Electron.framework 0x0000000105a6f3f4 0x100100000 + 93778932
85 com.github.Electron.framework 0x0000000105a806c0 0x100100000 + 93849280
86 com.github.Electron.framework 0x0000000105a6f8c1 uv_run + 497
87 com.github.Electron.framework 0x0000000105933f69 0x100100000 + 92487529
88 com.github.Electron.framework 0x000000010593411e 0x100100000 + 92487966
89 com.github.Electron.framework 0x0000000105901d4e node::FreeEnvironment(node::Environment*) + 14
90 com.github.Electron.framework 0x00000001001be5a2 0x100100000 + 779682
91 com.github.Electron.framework 0x00000001001be68e 0x100100000 + 779918
92 com.github.Electron.framework 0x0000000101b701a0 0x100100000 + 27722144
93 com.github.Electron.framework 0x0000000101b702ae 0x100100000 + 27722414
94 com.github.Electron.framework 0x0000000101b743a2 0x100100000 + 27739042
95 com.github.Electron.framework 0x0000000101b6fd36 0x100100000 + 27721014
96 com.github.Electron.framework 0x0000000101a0b0b4 0x100100000 + 26259636
97 com.github.Electron.framework 0x0000000101a0adbe 0x100100000 + 26258878
98 com.github.Electron.framework 0x0000000103c50bc4 0x100100000 + 62196676
99 com.github.Electron.framework 0x0000000100cc8b64 0x100100000 + 12356452
100 com.github.Electron.framework 0x0000000100102854 ElectronMain + 84
101 com.tinyspeck.slackmacgap 0x00000001000c79b0 0x1000c7000 + 2480
102 libdyld.dylib 0x00007fff8456c5c9 start + 1
Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0 libsystem_kernel.dylib 0x00007fff8c116232 kevent64 + 10
1 libdispatch.dylib 0x00007fff874bc26e _dispatch_mgr_thread + 52
Thread 2:: ThreadPoolBackgroundWorker
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.github.Electron.framework 0x00000001023aaec6 0x100100000 + 36351686
3 com.github.Electron.framework 0x0000000102368b18 0x100100000 + 36080408
4 com.github.Electron.framework 0x000000010236939a 0x100100000 + 36082586
5 com.github.Electron.framework 0x0000000102368ff4 0x100100000 + 36081652
6 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
7 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
9 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 3:
0 libsystem_kernel.dylib 0x00007fff8c11621a kevent + 10
1 com.github.Electron.framework 0x0000000105a6f8c1 uv_run + 497
2 com.github.Electron.framework 0x00000001059e8226 0x100100000 + 93225510
3 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
4 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
5 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 4:
0 libsystem_kernel.dylib 0x00007fff8c115136 __psynch_cvwait + 10
1 com.github.Electron.framework 0x0000000105a7b509 uv_cond_wait + 9
2 com.github.Electron.framework 0x00000001059e8428 0x100100000 + 93226024
3 com.github.Electron.framework 0x00000001059e600b 0x100100000 + 93216779
4 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 5:
0 libsystem_kernel.dylib 0x00007fff8c115136 __psynch_cvwait + 10
1 com.github.Electron.framework 0x0000000105a7b509 uv_cond_wait + 9
2 com.github.Electron.framework 0x00000001059e8428 0x100100000 + 93226024
3 com.github.Electron.framework 0x00000001059e600b 0x100100000 + 93216779
4 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 6:
0 libsystem_kernel.dylib 0x00007fff8c115136 __psynch_cvwait + 10
1 com.github.Electron.framework 0x0000000105a7b509 uv_cond_wait + 9
2 com.github.Electron.framework 0x00000001059e8428 0x100100000 + 93226024
3 com.github.Electron.framework 0x00000001059e600b 0x100100000 + 93216779
4 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 7:
0 libsystem_kernel.dylib 0x00007fff8c11051a semaphore_wait_trap + 10
1 com.github.Electron.framework 0x0000000105a7ba70 uv_sem_wait + 16
2 com.github.Electron.framework 0x0000000105a33832 0x100100000 + 93534258
3 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
4 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
5 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 8:
0 libsystem_kernel.dylib 0x00007fff8c115136 __psynch_cvwait + 10
1 com.github.Electron.framework 0x0000000105a7b509 uv_cond_wait + 9
2 com.github.Electron.framework 0x0000000105a6b759 0x100100000 + 93763417
3 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
4 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
5 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 9:
0 libsystem_kernel.dylib 0x00007fff8c115136 __psynch_cvwait + 10
1 com.github.Electron.framework 0x0000000105a7b509 uv_cond_wait + 9
2 com.github.Electron.framework 0x0000000105a6b759 0x100100000 + 93763417
3 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
4 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
5 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 10:
0 libsystem_kernel.dylib 0x00007fff8c115136 __psynch_cvwait + 10
1 com.github.Electron.framework 0x0000000105a7b509 uv_cond_wait + 9
2 com.github.Electron.framework 0x0000000105a6b759 0x100100000 + 93763417
3 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
4 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
5 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 11:
0 libsystem_kernel.dylib 0x00007fff8c115136 __psynch_cvwait + 10
1 com.github.Electron.framework 0x0000000105a7b509 uv_cond_wait + 9
2 com.github.Electron.framework 0x0000000105a6b759 0x100100000 + 93763417
3 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
4 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
5 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 12:: NetworkConfigWatcher
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff92ffacd4 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff92ffa19b __CFRunLoopRun + 1371
4 com.apple.CoreFoundation 0x00007fff92ff99f8 CFRunLoopRunSpecific + 296
5 com.apple.Foundation 0x00007fff84dbcaf9 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
6 com.github.Electron.framework 0x00000001023a65f1 0x100100000 + 36333041
7 com.github.Electron.framework 0x00000001023a5352 0x100100000 + 36328274
8 com.github.Electron.framework 0x0000000102357db7 0x100100000 + 36011447
9 com.github.Electron.framework 0x00000001023300a7 0x100100000 + 35848359
10 com.github.Electron.framework 0x000000010236e724 0x100100000 + 36103972
11 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
12 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
13 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
14 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 13:: CrShutdownDetector
0 libsystem_kernel.dylib 0x00007fff8c116682 read + 10
1 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
2 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
3 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
4 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 14:: ThreadPoolForegroundWorker
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.github.Electron.framework 0x00000001023aaec6 0x100100000 + 36351686
3 com.github.Electron.framework 0x0000000102368b18 0x100100000 + 36080408
4 com.github.Electron.framework 0x000000010236939a 0x100100000 + 36082586
5 com.github.Electron.framework 0x0000000102369084 0x100100000 + 36081796
6 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
7 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
9 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 15:: ThreadPoolForegroundWorker
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.github.Electron.framework 0x00000001023aaec6 0x100100000 + 36351686
3 com.github.Electron.framework 0x0000000102368b18 0x100100000 + 36080408
4 com.github.Electron.framework 0x000000010236939a 0x100100000 + 36082586
5 com.github.Electron.framework 0x0000000102369084 0x100100000 + 36081796
6 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
7 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
9 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 16:
0 libsystem_kernel.dylib 0x00007fff8c11051a semaphore_wait_trap + 10
1 com.github.Electron.framework 0x0000000105a7ba70 uv_sem_wait + 16
2 com.github.Electron.framework 0x0000000100260f38 0x100100000 + 1445688
3 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
4 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
5 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 17:
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff92ffacd4 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff92ffa19b __CFRunLoopRun + 1371
4 com.apple.CoreFoundation 0x00007fff92ff99f8 CFRunLoopRunSpecific + 296
5 com.apple.AppKit 0x00007fff8f30c56b _NSEventThread + 137
6 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
7 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
8 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 18:
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.github.Electron.framework 0x00000001033c5dbe 0x100100000 + 53239230
3 com.github.Electron.framework 0x00000001033c6039 0x100100000 + 53239865
4 com.github.Electron.framework 0x00000001033c1ec8 0x100100000 + 53223112
5 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
6 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
7 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 19:: CacheThread_BlockFile
0 libsystem_kernel.dylib 0x00007fff8c116232 kevent64 + 10
1 com.github.Electron.framework 0x00000001023b57a6 0x100100000 + 36394918
2 com.github.Electron.framework 0x0000000102357db7 0x100100000 + 36011447
3 com.github.Electron.framework 0x00000001023300a7 0x100100000 + 35848359
4 com.github.Electron.framework 0x000000010236e724 0x100100000 + 36103972
5 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
6 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
7 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
8 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 20:: ThreadPoolSingleThreadSharedBackgroundBlocking1
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.github.Electron.framework 0x00000001023aaec6 0x100100000 + 36351686
3 com.github.Electron.framework 0x00000001023aacdf 0x100100000 + 36351199
4 com.github.Electron.framework 0x0000000102368b0a 0x100100000 + 36080394
5 com.github.Electron.framework 0x000000010236916e 0x100100000 + 36082030
6 com.github.Electron.framework 0x0000000102369024 0x100100000 + 36081700
7 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
8 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
9 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
10 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 21:
0 libsystem_kernel.dylib 0x00007fff8c11594a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8c7763dd start_wqthread + 13
Thread 22:
0 libsystem_kernel.dylib 0x00007fff8c11594a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8c7763dd start_wqthread + 13
Thread 23:: com.apple.NSURLConnectionLoader
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff92ffacd4 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff92ffa19b __CFRunLoopRun + 1371
4 com.apple.CoreFoundation 0x00007fff92ff99f8 CFRunLoopRunSpecific + 296
5 com.apple.CFNetwork 0x00007fff91934420 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
6 com.apple.Foundation 0x00007fff84d6ae62 __NSThread__main__ + 1345
7 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
9 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 24:: com.apple.CFSocket.private
0 libsystem_kernel.dylib 0x00007fff8c1153fa __select + 10
1 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
2 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
3 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 25:
0 libsystem_kernel.dylib 0x00007fff8c11594a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8c7763dd start_wqthread + 13
Thread 26:
0 libsystem_kernel.dylib 0x00007fff8c11594a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8c7763dd start_wqthread + 13
Thread 27:
Thread 28:: ThreadPoolForegroundWorker
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.github.Electron.framework 0x00000001023aaec6 0x100100000 + 36351686
3 com.github.Electron.framework 0x0000000102368b18 0x100100000 + 36080408
4 com.github.Electron.framework 0x000000010236939a 0x100100000 + 36082586
5 com.github.Electron.framework 0x0000000102369084 0x100100000 + 36081796
6 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
7 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
9 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 29:: ThreadPoolBackgroundWorker
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.github.Electron.framework 0x00000001023aaec6 0x100100000 + 36351686
3 com.github.Electron.framework 0x0000000102368b18 0x100100000 + 36080408
4 com.github.Electron.framework 0x000000010236916e 0x100100000 + 36082030
5 com.github.Electron.framework 0x0000000102368ff4 0x100100000 + 36081652
6 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
7 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
9 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 30:: ThreadPoolForegroundWorker
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.github.Electron.framework 0x00000001023aaec6 0x100100000 + 36351686
3 com.github.Electron.framework 0x0000000102368b18 0x100100000 + 36080408
4 com.github.Electron.framework 0x000000010236916e 0x100100000 + 36082030
5 com.github.Electron.framework 0x0000000102369084 0x100100000 + 36081796
6 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
7 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
9 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 31:: NetworkConfigWatcher
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff92ffacd4 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff92ffa19b __CFRunLoopRun + 1371
4 com.apple.CoreFoundation 0x00007fff92ff99f8 CFRunLoopRunSpecific + 296
5 com.apple.Foundation 0x00007fff84dbcaf9 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
6 com.github.Electron.framework 0x00000001023a65f1 0x100100000 + 36333041
7 com.github.Electron.framework 0x00000001023a5352 0x100100000 + 36328274
8 com.github.Electron.framework 0x0000000102357db7 0x100100000 + 36011447
9 com.github.Electron.framework 0x00000001023300a7 0x100100000 + 35848359
10 com.github.Electron.framework 0x000000010236e724 0x100100000 + 36103972
11 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
12 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
13 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
14 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x0000000000000006 rcx: 0x00007fff5fb2d868 rdx: 0x0000000000000000
rdi: 0x000000000000130f rsi: 0x0000000000000006 rbp: 0x00007fff5fb2d890 rsp: 0x00007fff5fb2d868
r8: 0x0000000000000001 r9: 0x0000000000000000 r10: 0x0000000008000000 r11: 0x0000000000000206
r12: 0x00000001000fe000 r13: 0x0000000000000005 r14: 0x00007fff7566f300 r15: 0x0000000000000000
rip: 0x00007fff8c115286 rfl: 0x0000000000000206 cr2: 0x00007fff74dbffd8
Logical CPU: 0
Error Code: 0x02000148
Trap Number: 133
Binary Images:
0x1000c7000 - 0x1000efff3 +com.tinyspeck.slackmacgap (4.6.0-alpha1200316 - 6291) <596191EB-2C06-339C-917C-D986342C029E> /Applications/Slack.app/Contents/MacOS/Slack
0x100100000 - 0x106831f0f +com.github.Electron.framework (8.1.1) <9F4062FB-F726-3DBC-9F46-7443B9F03E5E> /Applications/Slack.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework
0x107129000 - 0x10712dff7 com.apple.LocalAuthentication (1.0 - 67.20.1.14) <49C6C703-081D-35FA-91B6-FB0297F10525> /System/Library/Frameworks/LocalAuthentication.framework/Versions/A/LocalAuthentication
0x10713a000 - 0x107146fff com.apple.StoreKit (1.0 - 376.29) <6341E873-19A4-3937-8D59-182F8720FC2C> /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit
0x10715d000 - 0x107178fff +com.github.Squirrel (1.0 - 1) <E4398068-33D3-3A00-9DBE-5ACC9B022501> /Applications/Slack.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel
0x1071a2000 - 0x107205ff7 +org.reactivecocoa.ReactiveCocoa (1.0 - 1) <701B20DE-3ADD-3643-B52A-E05744C30DB3> /Applications/Slack.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa
0x10727f000 - 0x107293fff +org.mantle.Mantle (1.0 - ???) <31915DD6-48E6-3706-A076-C9D4CE17F4F6> /Applications/Slack.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle
0x1072af000 - 0x1072b1ff7 libpmenergy.dylib (86.20.14) <D78A3543-4C7E-3995-A7B3-C0389F692DFB> /usr/lib/libpmenergy.dylib
0x1072b8000 - 0x1072baff7 libpmsample.dylib (86.20.14) <3B3F4B18-4AE3-3029-BFBE-F011F759CA60> /usr/lib/libpmsample.dylib
0x1072c0000 - 0x1072f7fff com.apple.audio.midi.CoreMIDI (1.10 - 88) <4BBCD304-C28F-3C03-AEB8-5E3D5D030602> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
0x107323000 - 0x107325fff com.apple.ForceFeedback (1.0.6 - 1.0.6) <A411AA46-5DB6-3C6C-B4B4-613EC1EF33C3> /System/Library/Frameworks/ForceFeedback.framework/Versions/A/ForceFeedback
0x10732c000 - 0x10733afff com.apple.GameController (1.0 - 1) <283B203F-CC87-3385-AFA3-07AA5EF8F709> /System/Library/Frameworks/GameController.framework/Versions/A/GameController
0x107351000 - 0x1075eaff7 +libffmpeg.dylib (0) <BDF5F45C-91E0-32D4-8E2F-02D2DBC1A860> /Applications/Slack.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libffmpeg.dylib
0x107941000 - 0x107949fff com.apple.CoreAuthentication.SharedInternals (1.0 - 67.20.1.14) <4ADC3448-660E-373D-B0E4-B731E00F5138> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedInternals.framework/Versions/A/SharedInternals
0x107f69000 - 0x107f69ffe +cl_kernels (???) <DE14F870-2E33-46BD-9745-D9356E9C5EF2> cl_kernels
0x107f6d000 - 0x107f6dfef +cl_kernels (???) <B069AE1D-EDFF-45E4-B0FB-A0E66A250AFB> cl_kernels
0x107f6f000 - 0x107f74ff7 libgermantok.dylib (17) <47EF3D93-B111-3218-AF60-E33F506D57E8> /usr/lib/libgermantok.dylib
0x10a44c000 - 0x10a44cfef +cl_kernels (???) <F95DC4CA-8CCB-4617-B457-12260B7FC82E> cl_kernels
0x10a45b000 - 0x10a45bff5 +cl_kernels (???) <E9AB3BE9-D69A-4CE5-AD55-55F3B45DC755> cl_kernels
0x10bf8c000 - 0x10bf8dfff +notificationstate.node (0) <590E5AC3-1E1D-3033-A783-487BC398B4E8> /Applications/Slack.app/Contents/Resources/app.asar.unpacked/node_modules/macos-notification-state/build/Release/notificationstate.node
0x1101f5000 - 0x110210ff3 com.apple.security.csparser (3.0 - 57031.40.9) <F8DB6988-BEA0-3756-AC88-9E2C416A097B> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/MacOS/csparser
0x11842c000 - 0x118437fff com.apple.iokit.IOHIDLib (2.0.0 - 2.0.0) <A195F7DC-2B88-31B8-9E31-9FE140823276> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Contents/MacOS/IOHIDLib
0x118db5000 - 0x118db7fff +keymapping.node (0) <FD68737B-3286-3048-920E-CE350F477048> /Applications/Slack.app/Contents/Resources/app.asar.unpacked/node_modules/native-keymap/build/Release/keymapping.node
0x118eea000 - 0x118fd0fef unorm8_bgra.dylib (2.4.5) <3C5E3A0E-0A5F-3C1A-B079-BE01F3682D71> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib
0x7fff64c1a000 - 0x7fff64c5092f dyld (353.2.4) <3C068A0D-69D5-3AD6-86D9-6261D3B1564E> /usr/lib/dyld
0x7fff842ec000 - 0x7fff84302ff7 libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
0x7fff8435e000 - 0x7fff843a8fff com.apple.HIServices (1.22 - 523) <99ADA325-53C8-368E-A5FA-3F913CD2245A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff843a9000 - 0x7fff843d1fff libRIP.A.dylib (790) <55EB0B9D-15AE-35E9-9C9E-99637A4E3B13> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x7fff843d2000 - 0x7fff84443ffb com.apple.ApplicationServices.ATS (360 - 375.4) <888FE0B1-835C-30B1-80AD-5066CADB0364> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff84444000 - 0x7fff8444cfff libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
0x7fff844a8000 - 0x7fff844baff7 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
0x7fff844bb000 - 0x7fff84508ff3 com.apple.CoreMediaIO (601.0 - 4760) <209CD9FF-28A0-3792-B548-3A59E79F3E79> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fff84509000 - 0x7fff84542fff com.apple.AirPlaySupport (2.0 - 215.18) <A7730005-A538-30E8-815B-727957D74C89> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySupport
0x7fff84569000 - 0x7fff8456cff7 libdyld.dylib (353.2.4) <224F35C5-6E35-3EC4-A97C-80949CE444E7> /usr/lib/system/libdyld.dylib
0x7fff8456d000 - 0x7fff84575ff7 com.apple.AppleSRP (5.0 - 1) <68F0C577-ED96-34F2-B701-CE3023367D4D> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff84576000 - 0x7fff845a8ff3 com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x7fff845a9000 - 0x7fff845ceff7 libPng.dylib (1248) <0D88B42A-FEDC-3F51-ADC3-2A426699CC1A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff845cf000 - 0x7fff84641fff com.apple.framework.IOKit (2.0.2 - 1050.20.2) <09C0518C-90DF-3FC3-96D6-34D35F72C8EF> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff84678000 - 0x7fff846f0ff7 com.apple.SystemConfiguration (1.14.4 - 1.14) <B835C014-901E-37B7-BD09-2EFF5FFEB910> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff846f1000 - 0x7fff8470bff3 com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
0x7fff84723000 - 0x7fff8473cff7 com.apple.CFOpenDirectory (10.10 - 187) <F1805A0F-D5CC-35A8-9349-042D58D128B0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff84751000 - 0x7fff84835fff libcrypto.0.9.8.dylib (52.40.1) <D123FC57-E2EB-3E08-A51B-6C317EA83EB5> /usr/lib/libcrypto.0.9.8.dylib
0x7fff84836000 - 0x7fff848cbff7 com.apple.ColorSync (4.9.0 - 4.9.0) <9150C2B7-2E6E-3509-96EA-7B3F959F049E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff84927000 - 0x7fff84929ff7 libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
0x7fff8492a000 - 0x7fff84a6eff7 com.apple.QTKit (7.7.3 - 2890.10) <3578818E-5894-3A6B-86D7-C7C817268634> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff84a6f000 - 0x7fff84a8bfff com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff84a8c000 - 0x7fff84a93fff com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics
0x7fff84d2c000 - 0x7fff8505dff7 com.apple.Foundation (6.9 - 1154.20) <3D37F9B8-96CC-324B-9062-0A7E4ABCDC1F> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff8505e000 - 0x7fff85067fff libGFXShared.dylib (11.1.6) <10DBFA0B-1484-3723-BFD3-7D184CC5A2E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff85068000 - 0x7fff8509fffb com.apple.LDAPFramework (2.4.28 - 194.5) <CAFB9695-000F-34EA-8DF5-09996929C26A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x7fff850a0000 - 0x7fff850e1fff libGLU.dylib (11.1.6) <4BC6579D-A6D0-3A19-880E-E29FAEA698E7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff850e2000 - 0x7fff850eaffb libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
0x7fff850eb000 - 0x7fff850ecfff liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
0x7fff851e5000 - 0x7fff85215ff3 com.apple.GSS (4.0 - 2.0) <97F2A028-44CF-3188-B863-F4EEB39CBDBD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff85221000 - 0x7fff85226fff com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff85227000 - 0x7fff85359ff7 com.apple.MediaControlSender (2.0 - 215.18) <88726256-A71E-33A8-A56C-ABA208951C92> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender
0x7fff85402000 - 0x7fff8540fff7 com.apple.SpeechRecognitionCore (2.1.2 - 2.1.2) <551322E2-C1E4-3378-A218-F362985E3E3C> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff85438000 - 0x7fff8552cfff libFontParser.dylib (134.11) <798C2BA2-B3D3-39B5-981C-20B42258BAB1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff8552d000 - 0x7fff85578ff7 com.apple.CloudDocs (1.0 - 321.10) <A8221290-A2A5-3767-BB26-CC57AC18D4DC> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
0x7fff855af000 - 0x7fff85a9ffff com.apple.MediaToolbox (1.0 - 1562.240) <FF703691-A69A-3D24-8004-0E1B77D36861> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff85aa0000 - 0x7fff85ab6ff7 com.apple.CoreMediaAuthoring (2.2 - 951) <F11B0447-3E6D-35BA-BC7C-1A60820843D8> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fff85ab7000 - 0x7fff85ab9fff com.apple.EFILogin (2.0 - 2) <3BA837D8-94F5-3240-9CF7-E40DC2808446> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x7fff85aba000 - 0x7fff85ad4ff7 com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff85ad5000 - 0x7fff85af5ff7 com.apple.MultitouchSupport.framework (264.6 - 264.6) <79E327E8-AA72-346D-8B5E-8BAC56FC17A5> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff85b10000 - 0x7fff85bb7fff com.apple.PDFKit (3.1 - 3.1) <D410CE57-6227-31D8-9F39-92583E552EA8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x7fff85c30000 - 0x7fff85d47fe7 libvDSP.dylib (516) <DFEDB210-49D1-3803-88A2-C61DB6A45C3D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff85d48000 - 0x7fff85d64ff7 libsystem_malloc.dylib (53.30.1) <DDA8928B-CC0D-3255-BD8A-3FEA0982B890> /usr/lib/system/libsystem_malloc.dylib
0x7fff85d88000 - 0x7fff85d97fff 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
0x7fff85d98000 - 0x7fff85df2ff7 com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff85e8d000 - 0x7fff85e8dfff com.apple.Accelerate (1.10 - Accelerate 1.10) <F1B96A61-7E4B-31BD-A35B-BA7EF1F16EF4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff85e8e000 - 0x7fff85ebdfff com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
0x7fff85f00000 - 0x7fff85f31fff libtidy.A.dylib (15.15) <37FC944D-271A-386A-9ADD-FA33AD48F96D> /usr/lib/libtidy.A.dylib
0x7fff85f32000 - 0x7fff85f35ff7 com.apple.Mangrove (1.0 - 1) <6326024D-5C8D-3F59-9468-ACA1E01BC70C> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff85fc3000 - 0x7fff85fdefff com.apple.AppleVPAFramework (1.4.5 - 1.4.5) <313A0FA8-C12F-30C1-A33D-9A48E3C0594E> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
0x7fff8600d000 - 0x7fff8600fff7 com.apple.diagnosticlogcollection (10.0 - 1000) <1DB05D1A-636A-3672-BCB6-E3759852F5E2> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/DiagnosticLogCollection
0x7fff86048000 - 0x7fff8604dffb libheimdal-asn1.dylib (398.40.1) <7D2BE3DE-60F7-3A6E-A92E-DA0EF9D3417E> /usr/lib/libheimdal-asn1.dylib
0x7fff8604e000 - 0x7fff860bafff com.apple.framework.CoreWLAN (5.0 - 500.35.2) <03697149-1CDD-32FF-B564-1C1EF5E9E5C3> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff86103000 - 0x7fff86408ff3 com.apple.HIToolbox (2.1.1 - 758.7) <B1188DED-5E71-3AB4-9E57-67F84C116ECE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff86409000 - 0x7fff8642dff7 com.apple.Sharing (328.17 - 328.17) <AD5E243A-B79F-3D7B-800B-A2C99A1CFEF1> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff8642e000 - 0x7fff8658ffff com.apple.avfoundation (2.0 - 889.210) <F4D3414E-4EA6-33EA-8F2A-CA4A8663B5D5> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff86590000 - 0x7fff86592fff com.apple.marco (10.0 - 1000) <F8551365-5638-3012-B8CB-B87A80695EAC> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
0x7fff86593000 - 0x7fff865cbfff com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff865cc000 - 0x7fff865cefff com.apple.SecCodeWrapper (4.0 - 238.20.2) <C6C126F0-6BF4-3E29-A9B7-7BAD8D17EE4F> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
0x7fff865cf000 - 0x7fff865d8ff3 com.apple.CommonAuth (4.0 - 2.0) <9A484EE6-0003-3AB1-AE4F-AA543BBBF53F> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff865d9000 - 0x7fff865dffff 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
0x7fff865e0000 - 0x7fff865e7ff7 com.apple.phonenumbers (1.1.1 - 105) <AE39B6FE-05AB-3181-BB2A-4D50A8B392F2> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
0x7fff865f3000 - 0x7fff86618ff7 libJPEG.dylib (1248) <412D7F98-5ED5-3D61-BE45-1BE267C7B3D7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff86619000 - 0x7fff8675cfff libsqlite3.dylib (168.2) <BCB1F77E-2484-3EC4-A1D5-1AE90A407A23> /usr/lib/libsqlite3.dylib
0x7fff8675d000 - 0x7fff8675dfff com.apple.quartzframework (1.5 - 1.5) <26C982A3-2FC3-3F50-B5F4-3C545C3BAC10> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x7fff86763000 - 0x7fff86765fff libsystem_configuration.dylib (699.40.2) <56F94DCE-DBDE-3615-8F07-DE6270D9F8BE> /usr/lib/system/libsystem_configuration.dylib
0x7fff86780000 - 0x7fff867a1fff com.apple.framework.Apple80211 (10.3 - 1030.71.6) <C0A17391-5C8B-34B1-BD46-8D644AB57DE0> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff867a2000 - 0x7fff86862ff7 com.apple.backup.framework (1.6.5 - 1.6.5) <86396038-33EA-3046-9F70-093A3D6407D4> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff86863000 - 0x7fff8687dff7 libextension.dylib (55.2) <3BB019CA-199A-36AC-AA22-14B562138545> /usr/lib/libextension.dylib
0x7fff8687e000 - 0x7fff86889ff7 libkxld.dylib (2782.70.3) <F5F0305E-A7D5-37CA-945E-E2FB1F8568AC> /usr/lib/system/libkxld.dylib
0x7fff86893000 - 0x7fff86ad8ff7 com.apple.AddressBook.framework (9.0 - 1579) <A31956C5-AA13-35E6-B553-6BDF33F35103> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
0x7fff86ad9000 - 0x7fff86ae4fff com.apple.CommerceCore (1.0 - 376.29) <1058502F-8C78-36E1-914A-6403A2231FBA> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x7fff86af8000 - 0x7fff86b21ff3 libxslt.1.dylib (13.13) <18F488CB-AA53-3503-A199-044CA7664DE5> /usr/lib/libxslt.1.dylib
0x7fff86c58000 - 0x7fff86c5aff7 libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
0x7fff86c9c000 - 0x7fff86dd9fff com.apple.ImageIO.framework (3.3.0 - 1247) <001CB61C-6BDE-30A1-ACB7-C537E0043DF6> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff86dfb000 - 0x7fff86f89fff libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff86f9d000 - 0x7fff86fceff7 com.apple.ProtectedCloudStorage (1.0 - 1) <9D76F2E0-C28A-3DBC-A91F-E87888D46BF0> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
0x7fff86fcf000 - 0x7fff870c1ff7 libxml2.2.dylib (26.15) <B587DA25-360B-3742-BE9A-04B171504D79> /usr/lib/libxml2.2.dylib
0x7fff870c2000 - 0x7fff87158ff7 com.apple.cloudkit.CloudKit (283.67.4 - 283.67.4) <EA6E4B2C-A3AA-3636-B9C3-F61D3EFFB82B> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
0x7fff87159000 - 0x7fff8715aff7 libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
0x7fff8715b000 - 0x7fff8742aff3 com.apple.CoreImage (10.3.5) <0224F5A6-636A-374B-B46C-13E066596725> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff8742c000 - 0x7fff874b5ff7 com.apple.CoreSymbolication (3.1 - 57020.2) <FDAF88F6-7D11-37BC-B758-4B835FA657BA> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff874b6000 - 0x7fff874e0ff7 libdispatch.dylib (442.50.1) <A61E703C-784A-3698-B513-75DD12AAD6DC> /usr/lib/system/libdispatch.dylib
0x7fff874e1000 - 0x7fff874e5fff com.apple.TCC (1.0 - 1) <CCA42EE2-3400-3444-9486-BC454E60D944> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff8758b000 - 0x7fff875d7ff7 libcups.2.dylib (408.2) <E8AD18F9-61E4-3791-B840-504468C25556> /usr/lib/libcups.2.dylib
0x7fff8769b000 - 0x7fff876e1ff7 libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
0x7fff876e2000 - 0x7fff876e9ff7 libCGCMS.A.dylib (790) <64ACC63D-93FC-3D11-AF9C-A2A84A34FE35> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
0x7fff876ea000 - 0x7fff87768fff com.apple.CoreServices.OSServices (640.4 - 640.4) <9D175CD9-B27F-3529-8269-66D8AA83582E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff87a07000 - 0x7fff87a0bfff libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
0x7fff87a0c000 - 0x7fff87a18ff7 com.apple.OpenDirectory (10.10 - 187) <22FF4721-03D8-381B-AA83-2B07D690C777> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff87a19000 - 0x7fff87a41fff libsystem_info.dylib (459.40.1) <2E16C4B3-A327-3957-9C41-143911979A1E> /usr/lib/system/libsystem_info.dylib
0x7fff87a42000 - 0x7fff87a5fffb libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
0x7fff87a60000 - 0x7fff87cdfff7 com.apple.CoreData (111 - 526.3) <5A27E0D8-5E5A-335B-B3F6-2601C7B976FA> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff87ce0000 - 0x7fff87cecfff com.apple.HelpData (2.1.4 - 90) <02C6B7E6-1CC4-30E8-AD04-2794BECCF99C> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
0x7fff87ced000 - 0x7fff87fd4ffb com.apple.CoreServices.CarbonCore (1108.6 - 1108.6) <8953580E-7857-33B2-AA64-98296830D3A8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff87fd5000 - 0x7fff87fe0ff7 com.apple.CrashReporterSupport (10.10 - 631) <C44259AC-0A1C-3EC5-99AC-48CB520A709D> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff87fe1000 - 0x7fff88111fff com.apple.UIFoundation (1.0 - 1) <466BDFA8-0B9F-3AB0-989D-F9779422926A> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff88112000 - 0x7fff88121ff7 com.apple.ToneLibrary (1.0 - 1) <179C7D61-CB88-3CE3-9F06-4D60D13D616C> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
0x7fff88122000 - 0x7fff8815bff3 com.apple.datadetectors (5.0 - 286.13) <F2EC0715-1AD3-39C3-9B2D-D45336C73BFC> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetectors
0x7fff8815c000 - 0x7fff88167ff7 com.apple.SafariServices.framework (10603 - 10603.3.8) <AB7B27D0-6D50-3CC0-8CC3-1B1039A78950> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariServices
0x7fff88aae000 - 0x7fff88ab4ff7 com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
0x7fff88ab5000 - 0x7fff88ae1fff libc++abi.dylib (125.1) <B8E6BB31-E27E-3B80-9BA2-73B5AB7E42E1> /usr/lib/libc++abi.dylib
0x7fff88ae2000 - 0x7fff88af3ff3 libsystem_coretls.dylib (35.40.1) <155DA0A9-2046-332E-BFA3-D7974A51F731> /usr/lib/system/libsystem_coretls.dylib
0x7fff88af4000 - 0x7fff88b13fff com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
0x7fff88b14000 - 0x7fff88b4effb com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff88b4f000 - 0x7fff88b9eff7 libcurl.4.dylib (83.40.2) <AE97ED1E-A58F-3EF0-8E88-DDC6AD409BCE> /usr/lib/libcurl.4.dylib
0x7fff88b9f000 - 0x7fff88c2bfef libsystem_c.dylib (1044.40.3) <2E673D96-E334-37D2-833A-E57383BBA377> /usr/lib/system/libsystem_c.dylib
0x7fff88c2c000 - 0x7fff88c3eff7 com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol
0x7fff88c42000 - 0x7fff88c53fff libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
0x7fff88c54000 - 0x7fff88ecafff com.apple.security (7.0 - 57031.40.9) <8D9CB878-BB71-3CF1-88CE-9E6FAC4043ED> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff88fa9000 - 0x7fff88fb0ff7 libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
0x7fff88fb1000 - 0x7fff894c6fff com.apple.JavaScriptCore (10600 - 10600.8.7.1) <4C48FD32-ACA3-358F-95D9-05DBB56A1DED> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x7fff89574000 - 0x7fff8957aff7 libsystem_networkextension.dylib (167.40.3) <BA58B30B-8377-3B0A-8AE3-4F84021D9D4E> /usr/lib/system/libsystem_networkextension.dylib
0x7fff8957b000 - 0x7fff895b3fff libsystem_network.dylib (412.20.3) <6105C134-6722-3C0A-A4CE-5E1261E2E1CC> /usr/lib/system/libsystem_network.dylib
0x7fff895b4000 - 0x7fff896a6ff7 libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
0x7fff896a7000 - 0x7fff896adfff libsystem_trace.dylib (72.20.1) <840F5301-B55A-3078-90B9-FEFFD6CD741A> /usr/lib/system/libsystem_trace.dylib
0x7fff896ae000 - 0x7fff896aeff7 liblaunch.dylib (559.40.1) <4F81CA3A-D2CE-3030-A89D-42F3DAD7BA8F> /usr/lib/system/liblaunch.dylib
0x7fff89702000 - 0x7fff8970bfff com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x7fff8970c000 - 0x7fff8970cfff com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff8970d000 - 0x7fff8970dfff libOpenScriptingUtil.dylib (162.2) <D6A2216D-ADB2-3F24-AD30-F6D00829F545> /usr/lib/libOpenScriptingUtil.dylib
0x7fff8970e000 - 0x7fff89792fff com.apple.PerformanceAnalysis (1.0 - 1) <8CC3D6CB-2328-32A5-B70E-174AD408E892> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff89793000 - 0x7fff897dffff com.apple.corelocation (1486.17 - 1615.24) <8825B3E2-E053-3E01-AE31-793443962D06> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
0x7fff89816000 - 0x7fff89a80ff7 com.apple.imageKit (2.6.1 - 850) <612201FE-768E-386B-82E3-764038B40120> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x7fff89a81000 - 0x7fff89a83fff com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging
0x7fff89a84000 - 0x7fff89a8dff7 libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
0x7fff89abe000 - 0x7fff89ad0ff7 libsasl2.2.dylib (194.1) <35371406-75EF-304A-A073-956C40373555> /usr/lib/libsasl2.2.dylib
0x7fff89ad6000 - 0x7fff89b16ff7 libGLImage.dylib (11.1.6) <D6DDC014-2C74-34B3-970A-26F211FF76EF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff89b17000 - 0x7fff89b52fff com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff89b53000 - 0x7fff89b57fff libspindump.dylib (182.4) <A70D9FF6-75CC-320A-91A0-CF6143255814> /usr/lib/libspindump.dylib
0x7fff8a21b000 - 0x7fff8a21efff 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
0x7fff8a225000 - 0x7fff8a2e0ff7 com.apple.DiscRecording (9.0 - 9000.4.2) <4655B4B8-523D-3AE6-92A0-8486A2258B3B> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff8a2e1000 - 0x7fff8a2eefff libxar.1.dylib (255) <7CD69BB5-97BA-3858-8A8B-2F33F129E6E7> /usr/lib/libxar.1.dylib
0x7fff8a38f000 - 0x7fff8a3aaff7 com.apple.aps.framework (4.0 - 4.0) <EAC8C347-55F4-3769-995E-B140C95553F6> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
0x7fff8a3ab000 - 0x7fff8a3feffb libAVFAudio.dylib (118.6) <2441D4C1-D8FB-3DA9-9DD7-914E03413882> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib
0x7fff8a4f9000 - 0x7fff8a504fff libcommonCrypto.dylib (60061.30.1) <E789748D-F9A7-3CFF-B317-90DF348B1E95> /usr/lib/system/libcommonCrypto.dylib
0x7fff8a528000 - 0x7fff8a528fff com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff8a5a7000 - 0x7fff8a604fff com.apple.QuickLookFramework (5.0 - 675.43) <506D60B4-B188-3D0A-9187-0404A60A9B06> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x7fff8a605000 - 0x7fff8a629ff7 com.apple.facetimeservices (10.0 - 1000) <E2AB7900-5171-3DE0-9DBF-2CC14512B40A> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
0x7fff8a62a000 - 0x7fff8ab53ff7 com.apple.QuartzComposer (5.1 - 332.1) <64399385-0768-3590-B4EF-1BD0F8A35CB3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x7fff8ab54000 - 0x7fff8ad4e46f libobjc.A.dylib (647) <759E155D-BC42-3D4E-869B-6F57D477177C> /usr/lib/libobjc.A.dylib
0x7fff8ad50000 - 0x7fff8ad65fff com.apple.ToneKit (1.0 - 1) <25D0FF56-B802-359D-9CA1-D530F4890D87> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
0x7fff8ad68000 - 0x7fff8adaeff7 libFontRegistry.dylib (134.1) <CE41D8C2-BEED-345C-BC4F-3775CC06C672> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff8adaf000 - 0x7fff8adbbff7 com.apple.commonutilities (8.0 - 900) <E5E018A7-FB3C-37A2-9769-49AFAC89FDE8> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
0x7fff8ae08000 - 0x7fff8b25bfc7 com.apple.vImage (8.0 - 8.0) <33BE7B31-72DB-3364-B37E-C322A32748C5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff8b25c000 - 0x7fff8b280ff7 com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x7fff8b281000 - 0x7fff8b2a9fff libxpc.dylib (559.40.1) <5C829202-962E-3744-8B50-00D38CC88E84> /usr/lib/system/libxpc.dylib
0x7fff8b33f000 - 0x7fff8b44eff3 com.apple.desktopservices (1.9.3 - 1.9.3) <FEE11342-5BC4-37A7-8169-DA48BE17B9C9> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff8b451000 - 0x7fff8b454fff com.apple.xpc.ServiceManagement (1.0 - 1) <A95A15CD-3B21-3513-AFF8-1D7DE3DBFA12> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff8b4e9000 - 0x7fff8b526ff3 com.apple.bom (14.0 - 193.6) <3CE5593D-DB28-3BFD-943E-6261006FA292> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x7fff8b527000 - 0x7fff8b6d7ffb com.apple.QuartzCore (1.10 - 361.19) <973C2AD1-9D22-3F1F-A291-84B1F677C50D> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff8b6d8000 - 0x7fff8b76cfff 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
0x7fff8b773000 - 0x7fff8b775fff libCVMSPluginSupport.dylib (11.1.6) <4F965D25-2BC4-372B-BAE1-E833A3C4C3D5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff8b7c6000 - 0x7fff8b854fff com.apple.CorePDF (4.0 - 4) <19F4CB03-189E-3271-8F7A-A7D0DB3ACE49> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x7fff8b855000 - 0x7fff8b881fff libsandbox.1.dylib (358.20.5) <C95C61A4-C9C1-3B3C-A9A9-77DB7400598F> /usr/lib/libsandbox.1.dylib
0x7fff8b882000 - 0x7fff8b890ff7 com.apple.opengl (11.1.6 - 11.1.6) <81B00A5C-ED8A-341F-A11E-1079F7781C21> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff8b9f9000 - 0x7fff8b9f9fff com.apple.CoreServices (62 - 62) <C69DA8A7-B536-34BF-A93F-1C170E2C6D58> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff8bb2f000 - 0x7fff8bb33ff7 libGIF.dylib (1248) <C0BB32AD-9E76-3DF1-ABD7-C856D44E7C23> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff8bd93000 - 0x7fff8c0fefff com.apple.VideoToolbox (1.0 - 1562.240) <BEBDEB83-618F-38BE-B7A7-5E096B428DFA> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff8c0ff000 - 0x7fff8c11cfff libsystem_kernel.dylib (2782.70.3) <79B806D6-AEEF-3663-BAE3-2D8A4A0A7A92> /usr/lib/system/libsystem_kernel.dylib
0x7fff8c131000 - 0x7fff8c19bfff com.apple.imfoundation (10.0 - 1000) <842F39B6-0BE2-3B9B-9166-D40031C80C89> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundation
0x7fff8c19c000 - 0x7fff8c2e4ff7 com.apple.WebKitLegacy (10600 - 10600.8.9) <9F1ED8A5-1AB9-333C-B1A1-E13485F12E53> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy
0x7fff8c2e5000 - 0x7fff8c6bcfe7 com.apple.CoreAUC (211.1.0 - 211.1.0) <12645629-E065-388E-A6B5-094A240578CE> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff8c6bd000 - 0x7fff8c6c2ff7 com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff8c775000 - 0x7fff8c77efff libsystem_pthread.dylib (105.40.1) <ACE90967-ECD0-3251-AEEB-461E3C6414F7> /usr/lib/system/libsystem_pthread.dylib
0x7fff8c77f000 - 0x7fff8c782ff7 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <BCC15965-7869-34F4-9019-9D0A41DD6AFF> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fff8c783000 - 0x7fff8c788ff7 libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
0x7fff8c81c000 - 0x7fff8c877ff7 libTIFF.dylib (1248) <29AC482A-800E-3E0D-BC91-8211559111C0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff8c878000 - 0x7fff8c8a8fff libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
0x7fff8cc19000 - 0x7fff8cc87ff3 com.apple.Heimdal (4.0 - 2.0) <8D1667CF-D454-3E07-A58E-E15591B5A95E> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff8cc88000 - 0x7fff8ccabff7 com.apple.idsfoundation (10.0 - 1000) <79DAA5F6-E054-3CC9-B317-65044A95B567> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundation
0x7fff8cda4000 - 0x7fff8cdaefff com.apple.IntlPreferences (2.0 - 150.1) <29687F33-EE4C-3530-8AB9-5B36DBAF4485> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences
0x7fff8cdaf000 - 0x7fff8cdcaff7 libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
0x7fff8ce0f000 - 0x7fff8ce26ff7 libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff8ce64000 - 0x7fff8ce84fff com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff8ce85000 - 0x7fff8cf06ff7 com.apple.CoreUtils (1.1 - 110.1) <3808CBC5-1DF1-3821-8AAE-57C30D4F514B> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff8cf07000 - 0x7fff8d76affb com.apple.CoreGraphics (1.600.0 - 790) <7BD274D8-73CC-32DE-BCA5-96C047A3B97B> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff8d76b000 - 0x7fff8d79aff7 com.apple.CoreServicesInternal (221.7.2 - 221.7.2) <B93D4775-149C-3698-B38C-9C50673D455C> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff8d826000 - 0x7fff8d8bdfff com.apple.CoreMedia (1.0 - 1562.240) <CCAF850F-B2E8-3F3B-9DE9-2BB469403EDF> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff8d940000 - 0x7fff8d942fff libRadiance.dylib (1248) <28ECEEB1-E6FD-3152-9344-9786F586A325> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff8d943000 - 0x7fff8d94efff com.apple.AppSandbox (4.0 - 238.20.2) <BEFAB7F2-B189-391B-9B2D-FFF3EE2B77B6> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
0x7fff8da0c000 - 0x7fff8da19ff7 libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
0x7fff8da1a000 - 0x7fff8da6bfff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <8E6AE326-9F3E-3182-BD9E-FDF561211E2E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff8da6c000 - 0x7fff8da6dffb libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
0x7fff8da6e000 - 0x7fff8dda1ff7 libmecabra.dylib (666.7) <0ED8AE5E-7A5B-34A6-A2EE-2B852E60E1E2> /usr/lib/libmecabra.dylib
0x7fff8dda2000 - 0x7fff8de16ffb com.apple.securityfoundation (6.0 - 55126) <7BC5EB97-2BC8-390D-AC93-C36C456F1126> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff8de17000 - 0x7fff8de66ff7 com.apple.opencl (2.4.2 - 2.4.2) <BF5E999C-5710-362E-95E8-86EE7BEA357C> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff8de67000 - 0x7fff8de9afff com.apple.MediaKit (16 - 757.2) <2912E5C2-085F-3FE2-8531-23B6E894B0F0> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff8dea0000 - 0x7fff8ee63ff3 com.apple.WebCore (10600 - 10600.8.9) <A5400B08-6067-370E-B224-14890DA39857> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
0x7fff8eea4000 - 0x7fff8f089ff7 libicucore.A.dylib (531.51) <5AFEE55D-9BDD-362C-8A3C-A42237A96169> /usr/lib/libicucore.A.dylib
0x7fff8f08a000 - 0x7fff8f1b2ff7 com.apple.coreui (2.1 - 308.6) <9E0E9C6A-68F5-34C1-A17C-96226D401D4D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff8f1b3000 - 0x7fff8fd34ff7 com.apple.AppKit (6.9 - 1348.17) <E485D56D-3E72-34B7-99BB-BFDEE2D07BF5> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff8fd35000 - 0x7fff8fd37ff7 com.apple.securityhi (9.0 - 55006) <15D38919-9697-3E3A-BCB9-4E3271BC2C7E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff8fd38000 - 0x7fff8fd63ffb libarchive.2.dylib (30.50.1.1.1) <3E66E4A5-B992-3D94-9218-839B34BDAAA8> /usr/lib/libarchive.2.dylib
0x7fff8fd7e000 - 0x7fff8fd93ff7 com.apple.AppContainer (4.0 - 238.20.2) <2AA2EF49-9F38-31F6-8B08-8CC7C26F57F3> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
0x7fff8fd94000 - 0x7fff8fd95fff com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff8fd96000 - 0x7fff8fd96fff com.apple.Carbon (154 - 157) <9BF51672-1684-3FDE-A561-FC59A2864EF8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff8fd97000 - 0x7fff8fd9fff7 com.apple.icloud.FindMyDevice (1.0 - 1) <9CE67F85-2BA8-3093-97BA-07BF5C04A5D6> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice
0x7fff8fe00000 - 0x7fff8fe0bff7 com.apple.DirectoryService.Framework (10.10 - 187) <F5B30ACE-57D9-31EA-82F9-98F175B277D1> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x7fff8fe0c000 - 0x7fff8fe0dfff libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
0x7fff8fe30000 - 0x7fff8fe32fff libquarantine.dylib (76.20.1) <7AF90041-2768-378A-925A-D83161863642> /usr/lib/system/libquarantine.dylib
0x7fff8fe8d000 - 0x7fff8fe92ff7 libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
0x7fff8fe93000 - 0x7fff8fe9bfff libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
0x7fff8ff94000 - 0x7fff8ff98fff 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
0x7fff8ff99000 - 0x7fff9008cff7 libJP2.dylib (1248) <292199E7-9008-3AB6-9BF2-9C91FF1989BA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff9008d000 - 0x7fff900abff7 com.apple.addressbook.vCard (9.0 - 1579) <C4CDDC8B-AE35-39B8-820A-763E9C5D1794> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
0x7fff900b5000 - 0x7fff900bfff7 com.apple.NetAuth (5.2 - 5.2) <2BBD749A-8E18-35B8-8E48-A90347C1CCA7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff900c0000 - 0x7fff9012cff3 com.apple.MMCS (1.3 - 327.5) <FC998246-ED60-334D-9E94-453F35EF9C78> /System/Library/PrivateFrameworks/MMCS.framework/Versions/A/MMCS
0x7fff9012d000 - 0x7fff90135fe7 libcldcpuengine.dylib (2.4.5) <9AA2661D-B5B3-3B9A-A1A0-F25CB80446F3> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
0x7fff90136000 - 0x7fff901c7ff7 libCoreStorage.dylib (471.30.1) <9D95399F-1AC5-325F-8337-6E13AD99E44B> /usr/lib/libCoreStorage.dylib
0x7fff901c8000 - 0x7fff90447ffb com.apple.RawCamera.bundle (6.06 - 819) <EDA3D142-24EC-3661-87EB-B35F8E858A9D> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x7fff90448000 - 0x7fff9046ffff com.apple.shortcut (2.14 - 2.14) <0E9228EC-E688-3E83-9516-5211FFEA923E> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
0x7fff90470000 - 0x7fff90733ff7 com.apple.WebKit (10600 - 10600.8.9) <8EE5A9F9-DE98-3202-92C0-23F6E6E5E274> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
0x7fff90734000 - 0x7fff90788fff libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
0x7fff9079e000 - 0x7fff907c4fff com.apple.ChunkingLibrary (2.1 - 163.6) <29D4CB95-42EF-34C6-8182-BDB6F7BB1E79> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff90822000 - 0x7fff90c52fff com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff90c53000 - 0x7fff91060ff7 libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff918ea000 - 0x7fff91917fff com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff91918000 - 0x7fff91918fff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <B92888D0-ED3F-3430-8F3A-6E56FD16C5F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff91919000 - 0x7fff9192aff7 libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
0x7fff9192b000 - 0x7fff91b3bff7 com.apple.CFNetwork (720.5.7 - 720.5.7) <A47D7DD2-5903-39D0-8D27-5A7E2D119D84> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff91b3c000 - 0x7fff91b8dff7 com.apple.AppleVAFramework (5.0.31 - 5.0.31) <2DC09ADA-F618-3F35-9DA1-F8D7A08FE58F> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff91b8e000 - 0x7fff91cb2ff7 com.apple.LaunchServices (644.56 - 644.56) <20AABB1C-9319-3E4D-A024-51B0DD5FCD3B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff91cdf000 - 0x7fff91cecff3 com.apple.ProtocolBuffer (1 - 228.0.1) <3429EB06-9F0E-355F-B9AB-F72879177398> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff91cf5000 - 0x7fff91d0fff7 liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
0x7fff91d10000 - 0x7fff91d4bfff com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff91d4c000 - 0x7fff91d4cfff com.apple.audio.units.AudioUnit (1.12 - 1.12) <E5335492-7EFE-31EA-BE72-4A9CEE68D58E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff91d4d000 - 0x7fff91eb4ffb com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5678FC94-456A-3F5F-BA9A-10EB6E462997> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff91eb5000 - 0x7fff91ee5ff3 com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff91ee6000 - 0x7fff91ee9fff com.apple.IOSurface (97.5 - 97.5) <D09F4452-874E-391D-AAEC-A64F4DD5049E> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff91eea000 - 0x7fff91f03ff3 com.apple.openscripting (1.6.4 - 162.2) <BF79207B-C762-346D-8FF0-3DDCECC9E9E2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff91f04000 - 0x7fff91feeff7 com.apple.QuickLookUIFramework (5.0 - 675.43) <011DEB49-0FB3-3E44-9D99-D89ADD59A3CC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x7fff91fef000 - 0x7fff9205efff com.apple.SearchKit (1.4.0 - 1.4.0) <80883BD1-C9BA-3794-A20E-476F94DD89A9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff9205f000 - 0x7fff92178ff3 com.apple.CoreText (454.11 - 454.14) <B3B308C3-F4B8-3776-9B78-8E94D4E74D0A> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff92179000 - 0x7fff92218e27 com.apple.AppleJPEG (1.0 - 1) <6627DDD9-A8FE-3968-B23A-B6A29AA3919A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff92219000 - 0x7fff92219ff7 libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
0x7fff92251000 - 0x7fff9225dfff com.apple.speech.synthesis.framework (5.3.11 - 5.3.11) <DFC7FD85-F1B0-317C-8513-722570CB8FB9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff9225e000 - 0x7fff9225fff7 com.apple.AddressBook.ContactsData (9.0 - 1579) <FF9C31DD-7839-35FB-AE66-21AEF63583EF> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsData
0x7fff922c7000 - 0x7fff922dfff7 libexpat.1.dylib (12) <C5FE8836-E277-3162-9D15-6735321CB2C6> /usr/lib/libexpat.1.dylib
0x7fff92470000 - 0x7fff92478ff3 com.apple.CoreServices.FSEvents (1210.20.1 - 1210.20.1) <84F79D3E-7B5E-3C93-8479-35794A3F125E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff9247b000 - 0x7fff924c9ff7 com.apple.ImageCaptureCore (6.3 - 6.3) <75B5043C-9EF0-3CD2-875D-12813F0A73D3> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x7fff924ca000 - 0x7fff9254eff7 com.apple.ViewBridge (105.1 - 105.1) <98E9733F-D863-30CE-BF25-E6768C73AF21> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
0x7fff9254f000 - 0x7fff92550ff3 libSystem.B.dylib (1213) <4B24B5BE-45F2-355A-9A35-D438A516D140> /usr/lib/libSystem.B.dylib
0x7fff92566000 - 0x7fff925c5fff com.apple.AE (681.5 - 681.7) <2BF39455-1CDD-392C-824A-9972C6B1FB57> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff925c6000 - 0x7fff92664fff com.apple.Metadata (10.7.0 - 917.36) <00C4CB5D-E723-3612-84E0-439098392CDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff92690000 - 0x7fff92694fff libCoreVMClient.dylib (79.1) <201EF6DF-5074-3CB7-A361-398CF957A264> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff92695000 - 0x7fff92698ffb libCGXType.A.dylib (790) <A87FDE11-B3BE-3C78-B777-293BF25F5E43> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x7fff926e8000 - 0x7fff927beff3 com.apple.DiskImagesFramework (10.10.5 - 398) <05774334-36DF-3912-AD3C-07167ED83FE4> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
0x7fff927bf000 - 0x7fff92838fe7 libcorecrypto.dylib (233.30.1) <5779FFA0-4D9A-3AD4-B7F2-618227621DC8> /usr/lib/system/libcorecrypto.dylib
0x7fff92839000 - 0x7fff92849ff7 libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
0x7fff9284a000 - 0x7fff928afff7 com.apple.ids (10.0 - 1000) <B7FB9598-02E5-341D-A019-3F20AE7E1B4D> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
0x7fff9292b000 - 0x7fff929eeff7 libvMisc.dylib (516) <21497A28-8DCB-3EB8-BDAC-93C93382B0AA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff929ef000 - 0x7fff929f1fff com.apple.loginsupport (1.0 - 1) <DAAD7013-A19D-3858-BFF7-DE1DAF664401> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff929f2000 - 0x7fff929fafff libsystem_dnssd.dylib (576.50.2) <9EC5AF92-D0D2-3BDE-92B6-D3730D3865C8> /usr/lib/system/libsystem_dnssd.dylib
0x7fff92bab000 - 0x7fff92bb6fff libGL.dylib (11.1.6) <38B3FF9A-5660-3080-9DB8-1CAE0E8CD739> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff92bb7000 - 0x7fff92bb7ff7 libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
0x7fff92bb8000 - 0x7fff92c1fffb com.apple.datadetectorscore (6.0 - 396.1.2) <7D88DC30-2583-35A6-8342-425201FE7044> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff92c20000 - 0x7fff92c6dff7 com.apple.print.framework.PrintCore (10.3 - 451.1) <DE992474-0841-38A1-B4F6-46D653E454D5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff92c6e000 - 0x7fff92f70ffb com.apple.GeoServices (1.0 - 1077.0.18) <2BBF8B44-DD46-3432-8C84-6D6AA004C233> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
0x7fff92f71000 - 0x7fff92f73fff libsystem_sandbox.dylib (358.20.5) <3F5E973F-C702-31AC-97BC-05F5C195683C> /usr/lib/system/libsystem_sandbox.dylib
0x7fff92f74000 - 0x7fff92f87ff7 com.apple.CoreBluetooth (1.0 - 1) <8D7BA9BA-EB36-307A-9119-0B3D9732C953> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff92f88000 - 0x7fff93320ff7 com.apple.CoreFoundation (6.9 - 1153.31) <4151A95B-66CA-3E6F-9FB2-DF1D8F3E606A> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff93321000 - 0x7fff93322fff libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff93323000 - 0x7fff9338aff7 com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff9338b000 - 0x7fff93399fff com.apple.AddressBook.ContactsFoundation (9.0 - 1579) <34ED9046-0157-399F-9742-2FC2D098E368> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation
0x7fff9339a000 - 0x7fff933c5ff7 com.apple.DictionaryServices (1.2 - 229.1) <62EC3E1B-5A28-3252-90FF-C2E9999C2A2A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff934c7000 - 0x7fff934d6fd3 com.apple.AppleFSCompression (68.30.1 - 1.0) <FC7A4084-8DBF-31DD-A2A4-97F719AA4F23> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff934d7000 - 0x7fff934d8ff7 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
0x7fff93509000 - 0x7fff93514ff7 libcsfde.dylib (471.30.1) <A62AE3D8-E2A6-314A-BF45-804003BE0AC9> /usr/lib/libcsfde.dylib
0x7fff93515000 - 0x7fff93519fff libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
0x7fff93568000 - 0x7fff9360afff com.apple.Bluetooth (4.3.6 - 4.3.6f4) <D9286207-FC6A-36B7-A10D-830F6B1A2E8F> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff9360b000 - 0x7fff93610fff libsystem_stats.dylib (163.30.2) <4F79A38D-3C9C-3578-8E38-7697F7300CB2> /usr/lib/system/libsystem_stats.dylib
0x7fff93f71000 - 0x7fff93f78fff com.apple.NetFS (6.0 - 4.0) <C263C8F8-F284-3101-AC82-A97A81716063> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 2
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: 1078
thread_create: 0
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=359.1M resident=113.9M(32%) swapped_out_or_unallocated=245.2M(68%)
Writable regions: Total=267.1M written=44.2M(17%) resident=47.9M(18%) swapped_out=20.7M(8%) unallocated=219.3M(82%)
REGION TYPE VIRTUAL
=========== =======
Activity Tracing 2048K
CG backing stores 1148K
CG image 564K
CG shared images 400K
CoreAnimation 608K
CoreGraphics 12K
CoreImage 8K
CoreUI image data 188K
Dispatch continuations 4096K
Foundation 4K
IOKit 420K
Image IO 16K
Kernel Alloc Once 8K
MALLOC 55.8M
MALLOC (admin) 32K
Mach message 4K
Memory Tag 242 12K
Memory Tag 251 16K
Memory Tag 255 145.6M
OpenCL 32K
STACK GUARD 56.1M
Stack 164.4M
Stack (reserved) 520K reserved VM address space (unallocated)
VM_ALLOCATE 17.2M
__DATA 33.5M
__IMAGE 528K
__LINKEDIT 75.9M
__TEXT 283.2M
__UNICODE 552K
mapped file 155.6M
shared memory 4K
=========== =======
TOTAL 998.3M
TOTAL, minus reserved VM space 997.8M
"><pre class="notranslate"><code class="notranslate">Process: Slack [490]
Path: /Applications/Slack.app/Contents/MacOS/Slack
Identifier: com.tinyspeck.slackmacgap
Version: 4.6.0-alpha1200316 (6291)
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: Slack [490]
User ID: 503
Date/Time: 2020-03-24 13:28:42.348 -0700
OS Version: Mac OS X 10.10.5 (14F2511)
Report Version: 11
Anonymous UUID: F655004E-3871-F403-6DD9-90E239D3FA6A
Time Awake Since Boot: 4600 seconds
Crashed Thread: 0 CrBrowserMain Dispatch queue: com.apple.main-thread
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Application Specific Information:
abort() called
*** error for object 0x7fc32370d8c0: pointer being freed was not allocated
Thread 0 Crashed:: CrBrowserMain Dispatch queue: com.apple.main-thread
0 libsystem_kernel.dylib 0x00007fff8c115286 __pthread_kill + 10
1 libsystem_c.dylib 0x00007fff88bfc9a3 abort + 129
2 libsystem_malloc.dylib 0x00007fff85d4c1cb free + 428
3 com.github.Electron.framework 0x000000010265a9ce 0x100100000 + 39168462
4 com.github.Electron.framework 0x000000010265aa95 0x100100000 + 39168661
5 com.github.Electron.framework 0x000000010265a772 0x100100000 + 39167858
6 com.github.Electron.framework 0x00000001026596dd 0x100100000 + 39163613
7 com.github.Electron.framework 0x00000001001fe5c0 0x100100000 + 1041856
8 com.github.Electron.framework 0x0000000101dff2b4 0x100100000 + 30405300
9 com.github.Electron.framework 0x00000001001eeed9 0x100100000 + 978649
10 com.github.Electron.framework 0x00000001001b951c 0x100100000 + 759068
11 com.github.Electron.framework 0x0000000101fc3648 0x100100000 + 32257608
12 com.github.Electron.framework 0x0000000101fc35f4 0x100100000 + 32257524
13 com.github.Electron.framework 0x0000000101fe284b 0x100100000 + 32385099
14 com.github.Electron.framework 0x0000000101fe272e 0x100100000 + 32384814
15 com.github.Electron.framework 0x0000000101fc2f92 0x100100000 + 32255890
16 com.github.Electron.framework 0x0000000101fccea7 0x100100000 + 32296615
17 com.github.Electron.framework 0x0000000101b55a3d 0x100100000 + 27613757
18 com.github.Electron.framework 0x0000000101b55b89 0x100100000 + 27614089
19 com.github.Electron.framework 0x00000001001d0fc9 0x100100000 + 856009
20 com.github.Electron.framework 0x00000001001bbdac 0x100100000 + 769452
21 com.github.Electron.framework 0x00000001001bd2dc 0x100100000 + 774876
22 com.github.Electron.framework 0x0000000100161e48 0x100100000 + 400968
23 com.github.Electron.framework 0x0000000100163a0e 0x100100000 + 408078
24 com.github.Electron.framework 0x0000000100163ad2 0x100100000 + 408274
25 com.github.Electron.framework 0x0000000100df4cec 0x100100000 + 13585644
26 com.github.Electron.framework 0x0000000100df41ea 0x100100000 + 13582826
27 com.github.Electron.framework 0x0000000100df37c2 0x100100000 + 13580226
28 com.github.Electron.framework 0x00000001017f6b59 0x100100000 + 24079193
29 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
30 com.github.Electron.framework 0x000000010178ec3a 0x100100000 + 23653434
31 com.github.Electron.framework 0x00000001018668b4 0x100100000 + 24537268
32 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
33 com.github.Electron.framework 0x0000000101783efa 0x100100000 + 23609082
34 com.github.Electron.framework 0x0000000101783cd8 0x100100000 + 23608536
35 com.github.Electron.framework 0x0000000100eada98 0x100100000 + 14342808
36 com.github.Electron.framework 0x0000000100ead68e v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*) + 206
37 com.github.Electron.framework 0x0000000101128ece 0x100100000 + 16944846
38 com.github.Electron.framework 0x00000001011289da v8::internal::Object::GetProperty(v8::internal::LookupIterator*, bool) + 426
39 com.github.Electron.framework 0x0000000100faaa30 0x100100000 + 15378992
40 com.github.Electron.framework 0x0000000100fb385e 0x100100000 + 15415390
41 com.github.Electron.framework 0x00000001017f6a79 0x100100000 + 24078969
42 com.github.Electron.framework 0x00000001018668b4 0x100100000 + 24537268
43 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
44 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
45 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
46 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
47 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
48 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
49 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
50 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
51 com.github.Electron.framework 0x000000010177fff9 0x100100000 + 23592953
52 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
53 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
54 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
55 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
56 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
57 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
58 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
59 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
60 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
61 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
62 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
63 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
64 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
65 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
66 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
67 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
68 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
69 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
70 com.github.Electron.framework 0x00000001017865f8 0x100100000 + 23619064
71 com.github.Electron.framework 0x00000001017d5f12 0x100100000 + 23944978
72 com.github.Electron.framework 0x00000001017a64a8 0x100100000 + 23749800
73 com.github.Electron.framework 0x0000000101783e58 0x100100000 + 23608920
74 com.github.Electron.framework 0x0000000100ead9a0 0x100100000 + 14342560
75 com.github.Electron.framework 0x0000000100eadfa3 0x100100000 + 14344099
76 com.github.Electron.framework 0x0000000100eae06d 0x100100000 + 14344301
77 com.github.Electron.framework 0x0000000100ed0077 v8::internal::MicrotaskQueue::RunMicrotasks(v8::internal::Isolate*) + 407
78 com.github.Electron.framework 0x00000001058fefe4 node::InternalCallbackScope::Close() + 260
79 com.github.Electron.framework 0x00000001058ff2d5 0x100100000 + 92271317
80 com.github.Electron.framework 0x000000010590d9f1 0x100100000 + 92330481
81 com.github.Electron.framework 0x0000000105984e66 0x100100000 + 92819046
82 com.github.Electron.framework 0x00000001059851e2 0x100100000 + 92819938
83 com.github.Electron.framework 0x0000000105a6b458 0x100100000 + 93762648
84 com.github.Electron.framework 0x0000000105a6f3f4 0x100100000 + 93778932
85 com.github.Electron.framework 0x0000000105a806c0 0x100100000 + 93849280
86 com.github.Electron.framework 0x0000000105a6f8c1 uv_run + 497
87 com.github.Electron.framework 0x0000000105933f69 0x100100000 + 92487529
88 com.github.Electron.framework 0x000000010593411e 0x100100000 + 92487966
89 com.github.Electron.framework 0x0000000105901d4e node::FreeEnvironment(node::Environment*) + 14
90 com.github.Electron.framework 0x00000001001be5a2 0x100100000 + 779682
91 com.github.Electron.framework 0x00000001001be68e 0x100100000 + 779918
92 com.github.Electron.framework 0x0000000101b701a0 0x100100000 + 27722144
93 com.github.Electron.framework 0x0000000101b702ae 0x100100000 + 27722414
94 com.github.Electron.framework 0x0000000101b743a2 0x100100000 + 27739042
95 com.github.Electron.framework 0x0000000101b6fd36 0x100100000 + 27721014
96 com.github.Electron.framework 0x0000000101a0b0b4 0x100100000 + 26259636
97 com.github.Electron.framework 0x0000000101a0adbe 0x100100000 + 26258878
98 com.github.Electron.framework 0x0000000103c50bc4 0x100100000 + 62196676
99 com.github.Electron.framework 0x0000000100cc8b64 0x100100000 + 12356452
100 com.github.Electron.framework 0x0000000100102854 ElectronMain + 84
101 com.tinyspeck.slackmacgap 0x00000001000c79b0 0x1000c7000 + 2480
102 libdyld.dylib 0x00007fff8456c5c9 start + 1
Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0 libsystem_kernel.dylib 0x00007fff8c116232 kevent64 + 10
1 libdispatch.dylib 0x00007fff874bc26e _dispatch_mgr_thread + 52
Thread 2:: ThreadPoolBackgroundWorker
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.github.Electron.framework 0x00000001023aaec6 0x100100000 + 36351686
3 com.github.Electron.framework 0x0000000102368b18 0x100100000 + 36080408
4 com.github.Electron.framework 0x000000010236939a 0x100100000 + 36082586
5 com.github.Electron.framework 0x0000000102368ff4 0x100100000 + 36081652
6 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
7 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
9 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 3:
0 libsystem_kernel.dylib 0x00007fff8c11621a kevent + 10
1 com.github.Electron.framework 0x0000000105a6f8c1 uv_run + 497
2 com.github.Electron.framework 0x00000001059e8226 0x100100000 + 93225510
3 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
4 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
5 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 4:
0 libsystem_kernel.dylib 0x00007fff8c115136 __psynch_cvwait + 10
1 com.github.Electron.framework 0x0000000105a7b509 uv_cond_wait + 9
2 com.github.Electron.framework 0x00000001059e8428 0x100100000 + 93226024
3 com.github.Electron.framework 0x00000001059e600b 0x100100000 + 93216779
4 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 5:
0 libsystem_kernel.dylib 0x00007fff8c115136 __psynch_cvwait + 10
1 com.github.Electron.framework 0x0000000105a7b509 uv_cond_wait + 9
2 com.github.Electron.framework 0x00000001059e8428 0x100100000 + 93226024
3 com.github.Electron.framework 0x00000001059e600b 0x100100000 + 93216779
4 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 6:
0 libsystem_kernel.dylib 0x00007fff8c115136 __psynch_cvwait + 10
1 com.github.Electron.framework 0x0000000105a7b509 uv_cond_wait + 9
2 com.github.Electron.framework 0x00000001059e8428 0x100100000 + 93226024
3 com.github.Electron.framework 0x00000001059e600b 0x100100000 + 93216779
4 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 7:
0 libsystem_kernel.dylib 0x00007fff8c11051a semaphore_wait_trap + 10
1 com.github.Electron.framework 0x0000000105a7ba70 uv_sem_wait + 16
2 com.github.Electron.framework 0x0000000105a33832 0x100100000 + 93534258
3 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
4 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
5 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 8:
0 libsystem_kernel.dylib 0x00007fff8c115136 __psynch_cvwait + 10
1 com.github.Electron.framework 0x0000000105a7b509 uv_cond_wait + 9
2 com.github.Electron.framework 0x0000000105a6b759 0x100100000 + 93763417
3 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
4 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
5 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 9:
0 libsystem_kernel.dylib 0x00007fff8c115136 __psynch_cvwait + 10
1 com.github.Electron.framework 0x0000000105a7b509 uv_cond_wait + 9
2 com.github.Electron.framework 0x0000000105a6b759 0x100100000 + 93763417
3 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
4 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
5 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 10:
0 libsystem_kernel.dylib 0x00007fff8c115136 __psynch_cvwait + 10
1 com.github.Electron.framework 0x0000000105a7b509 uv_cond_wait + 9
2 com.github.Electron.framework 0x0000000105a6b759 0x100100000 + 93763417
3 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
4 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
5 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 11:
0 libsystem_kernel.dylib 0x00007fff8c115136 __psynch_cvwait + 10
1 com.github.Electron.framework 0x0000000105a7b509 uv_cond_wait + 9
2 com.github.Electron.framework 0x0000000105a6b759 0x100100000 + 93763417
3 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
4 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
5 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 12:: NetworkConfigWatcher
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff92ffacd4 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff92ffa19b __CFRunLoopRun + 1371
4 com.apple.CoreFoundation 0x00007fff92ff99f8 CFRunLoopRunSpecific + 296
5 com.apple.Foundation 0x00007fff84dbcaf9 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
6 com.github.Electron.framework 0x00000001023a65f1 0x100100000 + 36333041
7 com.github.Electron.framework 0x00000001023a5352 0x100100000 + 36328274
8 com.github.Electron.framework 0x0000000102357db7 0x100100000 + 36011447
9 com.github.Electron.framework 0x00000001023300a7 0x100100000 + 35848359
10 com.github.Electron.framework 0x000000010236e724 0x100100000 + 36103972
11 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
12 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
13 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
14 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 13:: CrShutdownDetector
0 libsystem_kernel.dylib 0x00007fff8c116682 read + 10
1 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
2 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
3 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
4 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 14:: ThreadPoolForegroundWorker
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.github.Electron.framework 0x00000001023aaec6 0x100100000 + 36351686
3 com.github.Electron.framework 0x0000000102368b18 0x100100000 + 36080408
4 com.github.Electron.framework 0x000000010236939a 0x100100000 + 36082586
5 com.github.Electron.framework 0x0000000102369084 0x100100000 + 36081796
6 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
7 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
9 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 15:: ThreadPoolForegroundWorker
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.github.Electron.framework 0x00000001023aaec6 0x100100000 + 36351686
3 com.github.Electron.framework 0x0000000102368b18 0x100100000 + 36080408
4 com.github.Electron.framework 0x000000010236939a 0x100100000 + 36082586
5 com.github.Electron.framework 0x0000000102369084 0x100100000 + 36081796
6 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
7 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
9 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 16:
0 libsystem_kernel.dylib 0x00007fff8c11051a semaphore_wait_trap + 10
1 com.github.Electron.framework 0x0000000105a7ba70 uv_sem_wait + 16
2 com.github.Electron.framework 0x0000000100260f38 0x100100000 + 1445688
3 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
4 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
5 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 17:
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff92ffacd4 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff92ffa19b __CFRunLoopRun + 1371
4 com.apple.CoreFoundation 0x00007fff92ff99f8 CFRunLoopRunSpecific + 296
5 com.apple.AppKit 0x00007fff8f30c56b _NSEventThread + 137
6 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
7 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
8 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 18:
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.github.Electron.framework 0x00000001033c5dbe 0x100100000 + 53239230
3 com.github.Electron.framework 0x00000001033c6039 0x100100000 + 53239865
4 com.github.Electron.framework 0x00000001033c1ec8 0x100100000 + 53223112
5 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
6 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
7 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 19:: CacheThread_BlockFile
0 libsystem_kernel.dylib 0x00007fff8c116232 kevent64 + 10
1 com.github.Electron.framework 0x00000001023b57a6 0x100100000 + 36394918
2 com.github.Electron.framework 0x0000000102357db7 0x100100000 + 36011447
3 com.github.Electron.framework 0x00000001023300a7 0x100100000 + 35848359
4 com.github.Electron.framework 0x000000010236e724 0x100100000 + 36103972
5 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
6 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
7 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
8 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 20:: ThreadPoolSingleThreadSharedBackgroundBlocking1
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.github.Electron.framework 0x00000001023aaec6 0x100100000 + 36351686
3 com.github.Electron.framework 0x00000001023aacdf 0x100100000 + 36351199
4 com.github.Electron.framework 0x0000000102368b0a 0x100100000 + 36080394
5 com.github.Electron.framework 0x000000010236916e 0x100100000 + 36082030
6 com.github.Electron.framework 0x0000000102369024 0x100100000 + 36081700
7 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
8 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
9 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
10 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 21:
0 libsystem_kernel.dylib 0x00007fff8c11594a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8c7763dd start_wqthread + 13
Thread 22:
0 libsystem_kernel.dylib 0x00007fff8c11594a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8c7763dd start_wqthread + 13
Thread 23:: com.apple.NSURLConnectionLoader
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff92ffacd4 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff92ffa19b __CFRunLoopRun + 1371
4 com.apple.CoreFoundation 0x00007fff92ff99f8 CFRunLoopRunSpecific + 296
5 com.apple.CFNetwork 0x00007fff91934420 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
6 com.apple.Foundation 0x00007fff84d6ae62 __NSThread__main__ + 1345
7 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
9 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 24:: com.apple.CFSocket.private
0 libsystem_kernel.dylib 0x00007fff8c1153fa __select + 10
1 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
2 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
3 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 25:
0 libsystem_kernel.dylib 0x00007fff8c11594a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8c7763dd start_wqthread + 13
Thread 26:
0 libsystem_kernel.dylib 0x00007fff8c11594a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff8c7763dd start_wqthread + 13
Thread 27:
Thread 28:: ThreadPoolForegroundWorker
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.github.Electron.framework 0x00000001023aaec6 0x100100000 + 36351686
3 com.github.Electron.framework 0x0000000102368b18 0x100100000 + 36080408
4 com.github.Electron.framework 0x000000010236939a 0x100100000 + 36082586
5 com.github.Electron.framework 0x0000000102369084 0x100100000 + 36081796
6 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
7 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
9 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 29:: ThreadPoolBackgroundWorker
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.github.Electron.framework 0x00000001023aaec6 0x100100000 + 36351686
3 com.github.Electron.framework 0x0000000102368b18 0x100100000 + 36080408
4 com.github.Electron.framework 0x000000010236916e 0x100100000 + 36082030
5 com.github.Electron.framework 0x0000000102368ff4 0x100100000 + 36081652
6 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
7 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
9 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 30:: ThreadPoolForegroundWorker
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.github.Electron.framework 0x00000001023aaec6 0x100100000 + 36351686
3 com.github.Electron.framework 0x0000000102368b18 0x100100000 + 36080408
4 com.github.Electron.framework 0x000000010236916e 0x100100000 + 36082030
5 com.github.Electron.framework 0x0000000102369084 0x100100000 + 36081796
6 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
7 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
9 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 31:: NetworkConfigWatcher
0 libsystem_kernel.dylib 0x00007fff8c1104de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8c10f64f mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff92ffacd4 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff92ffa19b __CFRunLoopRun + 1371
4 com.apple.CoreFoundation 0x00007fff92ff99f8 CFRunLoopRunSpecific + 296
5 com.apple.Foundation 0x00007fff84dbcaf9 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
6 com.github.Electron.framework 0x00000001023a65f1 0x100100000 + 36333041
7 com.github.Electron.framework 0x00000001023a5352 0x100100000 + 36328274
8 com.github.Electron.framework 0x0000000102357db7 0x100100000 + 36011447
9 com.github.Electron.framework 0x00000001023300a7 0x100100000 + 35848359
10 com.github.Electron.framework 0x000000010236e724 0x100100000 + 36103972
11 com.github.Electron.framework 0x00000001023a02c7 0x100100000 + 36307655
12 libsystem_pthread.dylib 0x00007fff8c77905a _pthread_body + 131
13 libsystem_pthread.dylib 0x00007fff8c778fd7 _pthread_start + 176
14 libsystem_pthread.dylib 0x00007fff8c7763ed thread_start + 13
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x0000000000000006 rcx: 0x00007fff5fb2d868 rdx: 0x0000000000000000
rdi: 0x000000000000130f rsi: 0x0000000000000006 rbp: 0x00007fff5fb2d890 rsp: 0x00007fff5fb2d868
r8: 0x0000000000000001 r9: 0x0000000000000000 r10: 0x0000000008000000 r11: 0x0000000000000206
r12: 0x00000001000fe000 r13: 0x0000000000000005 r14: 0x00007fff7566f300 r15: 0x0000000000000000
rip: 0x00007fff8c115286 rfl: 0x0000000000000206 cr2: 0x00007fff74dbffd8
Logical CPU: 0
Error Code: 0x02000148
Trap Number: 133
Binary Images:
0x1000c7000 - 0x1000efff3 +com.tinyspeck.slackmacgap (4.6.0-alpha1200316 - 6291) <596191EB-2C06-339C-917C-D986342C029E> /Applications/Slack.app/Contents/MacOS/Slack
0x100100000 - 0x106831f0f +com.github.Electron.framework (8.1.1) <9F4062FB-F726-3DBC-9F46-7443B9F03E5E> /Applications/Slack.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework
0x107129000 - 0x10712dff7 com.apple.LocalAuthentication (1.0 - 67.20.1.14) <49C6C703-081D-35FA-91B6-FB0297F10525> /System/Library/Frameworks/LocalAuthentication.framework/Versions/A/LocalAuthentication
0x10713a000 - 0x107146fff com.apple.StoreKit (1.0 - 376.29) <6341E873-19A4-3937-8D59-182F8720FC2C> /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit
0x10715d000 - 0x107178fff +com.github.Squirrel (1.0 - 1) <E4398068-33D3-3A00-9DBE-5ACC9B022501> /Applications/Slack.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel
0x1071a2000 - 0x107205ff7 +org.reactivecocoa.ReactiveCocoa (1.0 - 1) <701B20DE-3ADD-3643-B52A-E05744C30DB3> /Applications/Slack.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa
0x10727f000 - 0x107293fff +org.mantle.Mantle (1.0 - ???) <31915DD6-48E6-3706-A076-C9D4CE17F4F6> /Applications/Slack.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle
0x1072af000 - 0x1072b1ff7 libpmenergy.dylib (86.20.14) <D78A3543-4C7E-3995-A7B3-C0389F692DFB> /usr/lib/libpmenergy.dylib
0x1072b8000 - 0x1072baff7 libpmsample.dylib (86.20.14) <3B3F4B18-4AE3-3029-BFBE-F011F759CA60> /usr/lib/libpmsample.dylib
0x1072c0000 - 0x1072f7fff com.apple.audio.midi.CoreMIDI (1.10 - 88) <4BBCD304-C28F-3C03-AEB8-5E3D5D030602> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
0x107323000 - 0x107325fff com.apple.ForceFeedback (1.0.6 - 1.0.6) <A411AA46-5DB6-3C6C-B4B4-613EC1EF33C3> /System/Library/Frameworks/ForceFeedback.framework/Versions/A/ForceFeedback
0x10732c000 - 0x10733afff com.apple.GameController (1.0 - 1) <283B203F-CC87-3385-AFA3-07AA5EF8F709> /System/Library/Frameworks/GameController.framework/Versions/A/GameController
0x107351000 - 0x1075eaff7 +libffmpeg.dylib (0) <BDF5F45C-91E0-32D4-8E2F-02D2DBC1A860> /Applications/Slack.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libffmpeg.dylib
0x107941000 - 0x107949fff com.apple.CoreAuthentication.SharedInternals (1.0 - 67.20.1.14) <4ADC3448-660E-373D-B0E4-B731E00F5138> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedInternals.framework/Versions/A/SharedInternals
0x107f69000 - 0x107f69ffe +cl_kernels (???) <DE14F870-2E33-46BD-9745-D9356E9C5EF2> cl_kernels
0x107f6d000 - 0x107f6dfef +cl_kernels (???) <B069AE1D-EDFF-45E4-B0FB-A0E66A250AFB> cl_kernels
0x107f6f000 - 0x107f74ff7 libgermantok.dylib (17) <47EF3D93-B111-3218-AF60-E33F506D57E8> /usr/lib/libgermantok.dylib
0x10a44c000 - 0x10a44cfef +cl_kernels (???) <F95DC4CA-8CCB-4617-B457-12260B7FC82E> cl_kernels
0x10a45b000 - 0x10a45bff5 +cl_kernels (???) <E9AB3BE9-D69A-4CE5-AD55-55F3B45DC755> cl_kernels
0x10bf8c000 - 0x10bf8dfff +notificationstate.node (0) <590E5AC3-1E1D-3033-A783-487BC398B4E8> /Applications/Slack.app/Contents/Resources/app.asar.unpacked/node_modules/macos-notification-state/build/Release/notificationstate.node
0x1101f5000 - 0x110210ff3 com.apple.security.csparser (3.0 - 57031.40.9) <F8DB6988-BEA0-3756-AC88-9E2C416A097B> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/MacOS/csparser
0x11842c000 - 0x118437fff com.apple.iokit.IOHIDLib (2.0.0 - 2.0.0) <A195F7DC-2B88-31B8-9E31-9FE140823276> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Contents/MacOS/IOHIDLib
0x118db5000 - 0x118db7fff +keymapping.node (0) <FD68737B-3286-3048-920E-CE350F477048> /Applications/Slack.app/Contents/Resources/app.asar.unpacked/node_modules/native-keymap/build/Release/keymapping.node
0x118eea000 - 0x118fd0fef unorm8_bgra.dylib (2.4.5) <3C5E3A0E-0A5F-3C1A-B079-BE01F3682D71> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib
0x7fff64c1a000 - 0x7fff64c5092f dyld (353.2.4) <3C068A0D-69D5-3AD6-86D9-6261D3B1564E> /usr/lib/dyld
0x7fff842ec000 - 0x7fff84302ff7 libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
0x7fff8435e000 - 0x7fff843a8fff com.apple.HIServices (1.22 - 523) <99ADA325-53C8-368E-A5FA-3F913CD2245A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff843a9000 - 0x7fff843d1fff libRIP.A.dylib (790) <55EB0B9D-15AE-35E9-9C9E-99637A4E3B13> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x7fff843d2000 - 0x7fff84443ffb com.apple.ApplicationServices.ATS (360 - 375.4) <888FE0B1-835C-30B1-80AD-5066CADB0364> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff84444000 - 0x7fff8444cfff libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
0x7fff844a8000 - 0x7fff844baff7 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
0x7fff844bb000 - 0x7fff84508ff3 com.apple.CoreMediaIO (601.0 - 4760) <209CD9FF-28A0-3792-B548-3A59E79F3E79> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fff84509000 - 0x7fff84542fff com.apple.AirPlaySupport (2.0 - 215.18) <A7730005-A538-30E8-815B-727957D74C89> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySupport
0x7fff84569000 - 0x7fff8456cff7 libdyld.dylib (353.2.4) <224F35C5-6E35-3EC4-A97C-80949CE444E7> /usr/lib/system/libdyld.dylib
0x7fff8456d000 - 0x7fff84575ff7 com.apple.AppleSRP (5.0 - 1) <68F0C577-ED96-34F2-B701-CE3023367D4D> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff84576000 - 0x7fff845a8ff3 com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x7fff845a9000 - 0x7fff845ceff7 libPng.dylib (1248) <0D88B42A-FEDC-3F51-ADC3-2A426699CC1A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff845cf000 - 0x7fff84641fff com.apple.framework.IOKit (2.0.2 - 1050.20.2) <09C0518C-90DF-3FC3-96D6-34D35F72C8EF> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff84678000 - 0x7fff846f0ff7 com.apple.SystemConfiguration (1.14.4 - 1.14) <B835C014-901E-37B7-BD09-2EFF5FFEB910> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff846f1000 - 0x7fff8470bff3 com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
0x7fff84723000 - 0x7fff8473cff7 com.apple.CFOpenDirectory (10.10 - 187) <F1805A0F-D5CC-35A8-9349-042D58D128B0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff84751000 - 0x7fff84835fff libcrypto.0.9.8.dylib (52.40.1) <D123FC57-E2EB-3E08-A51B-6C317EA83EB5> /usr/lib/libcrypto.0.9.8.dylib
0x7fff84836000 - 0x7fff848cbff7 com.apple.ColorSync (4.9.0 - 4.9.0) <9150C2B7-2E6E-3509-96EA-7B3F959F049E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff84927000 - 0x7fff84929ff7 libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
0x7fff8492a000 - 0x7fff84a6eff7 com.apple.QTKit (7.7.3 - 2890.10) <3578818E-5894-3A6B-86D7-C7C817268634> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff84a6f000 - 0x7fff84a8bfff com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff84a8c000 - 0x7fff84a93fff com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics
0x7fff84d2c000 - 0x7fff8505dff7 com.apple.Foundation (6.9 - 1154.20) <3D37F9B8-96CC-324B-9062-0A7E4ABCDC1F> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff8505e000 - 0x7fff85067fff libGFXShared.dylib (11.1.6) <10DBFA0B-1484-3723-BFD3-7D184CC5A2E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff85068000 - 0x7fff8509fffb com.apple.LDAPFramework (2.4.28 - 194.5) <CAFB9695-000F-34EA-8DF5-09996929C26A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x7fff850a0000 - 0x7fff850e1fff libGLU.dylib (11.1.6) <4BC6579D-A6D0-3A19-880E-E29FAEA698E7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff850e2000 - 0x7fff850eaffb libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
0x7fff850eb000 - 0x7fff850ecfff liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
0x7fff851e5000 - 0x7fff85215ff3 com.apple.GSS (4.0 - 2.0) <97F2A028-44CF-3188-B863-F4EEB39CBDBD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff85221000 - 0x7fff85226fff com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff85227000 - 0x7fff85359ff7 com.apple.MediaControlSender (2.0 - 215.18) <88726256-A71E-33A8-A56C-ABA208951C92> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender
0x7fff85402000 - 0x7fff8540fff7 com.apple.SpeechRecognitionCore (2.1.2 - 2.1.2) <551322E2-C1E4-3378-A218-F362985E3E3C> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff85438000 - 0x7fff8552cfff libFontParser.dylib (134.11) <798C2BA2-B3D3-39B5-981C-20B42258BAB1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff8552d000 - 0x7fff85578ff7 com.apple.CloudDocs (1.0 - 321.10) <A8221290-A2A5-3767-BB26-CC57AC18D4DC> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
0x7fff855af000 - 0x7fff85a9ffff com.apple.MediaToolbox (1.0 - 1562.240) <FF703691-A69A-3D24-8004-0E1B77D36861> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff85aa0000 - 0x7fff85ab6ff7 com.apple.CoreMediaAuthoring (2.2 - 951) <F11B0447-3E6D-35BA-BC7C-1A60820843D8> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fff85ab7000 - 0x7fff85ab9fff com.apple.EFILogin (2.0 - 2) <3BA837D8-94F5-3240-9CF7-E40DC2808446> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x7fff85aba000 - 0x7fff85ad4ff7 com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff85ad5000 - 0x7fff85af5ff7 com.apple.MultitouchSupport.framework (264.6 - 264.6) <79E327E8-AA72-346D-8B5E-8BAC56FC17A5> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff85b10000 - 0x7fff85bb7fff com.apple.PDFKit (3.1 - 3.1) <D410CE57-6227-31D8-9F39-92583E552EA8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x7fff85c30000 - 0x7fff85d47fe7 libvDSP.dylib (516) <DFEDB210-49D1-3803-88A2-C61DB6A45C3D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff85d48000 - 0x7fff85d64ff7 libsystem_malloc.dylib (53.30.1) <DDA8928B-CC0D-3255-BD8A-3FEA0982B890> /usr/lib/system/libsystem_malloc.dylib
0x7fff85d88000 - 0x7fff85d97fff 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
0x7fff85d98000 - 0x7fff85df2ff7 com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff85e8d000 - 0x7fff85e8dfff com.apple.Accelerate (1.10 - Accelerate 1.10) <F1B96A61-7E4B-31BD-A35B-BA7EF1F16EF4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff85e8e000 - 0x7fff85ebdfff com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
0x7fff85f00000 - 0x7fff85f31fff libtidy.A.dylib (15.15) <37FC944D-271A-386A-9ADD-FA33AD48F96D> /usr/lib/libtidy.A.dylib
0x7fff85f32000 - 0x7fff85f35ff7 com.apple.Mangrove (1.0 - 1) <6326024D-5C8D-3F59-9468-ACA1E01BC70C> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff85fc3000 - 0x7fff85fdefff com.apple.AppleVPAFramework (1.4.5 - 1.4.5) <313A0FA8-C12F-30C1-A33D-9A48E3C0594E> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
0x7fff8600d000 - 0x7fff8600fff7 com.apple.diagnosticlogcollection (10.0 - 1000) <1DB05D1A-636A-3672-BCB6-E3759852F5E2> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/DiagnosticLogCollection
0x7fff86048000 - 0x7fff8604dffb libheimdal-asn1.dylib (398.40.1) <7D2BE3DE-60F7-3A6E-A92E-DA0EF9D3417E> /usr/lib/libheimdal-asn1.dylib
0x7fff8604e000 - 0x7fff860bafff com.apple.framework.CoreWLAN (5.0 - 500.35.2) <03697149-1CDD-32FF-B564-1C1EF5E9E5C3> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff86103000 - 0x7fff86408ff3 com.apple.HIToolbox (2.1.1 - 758.7) <B1188DED-5E71-3AB4-9E57-67F84C116ECE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff86409000 - 0x7fff8642dff7 com.apple.Sharing (328.17 - 328.17) <AD5E243A-B79F-3D7B-800B-A2C99A1CFEF1> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff8642e000 - 0x7fff8658ffff com.apple.avfoundation (2.0 - 889.210) <F4D3414E-4EA6-33EA-8F2A-CA4A8663B5D5> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff86590000 - 0x7fff86592fff com.apple.marco (10.0 - 1000) <F8551365-5638-3012-B8CB-B87A80695EAC> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
0x7fff86593000 - 0x7fff865cbfff com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff865cc000 - 0x7fff865cefff com.apple.SecCodeWrapper (4.0 - 238.20.2) <C6C126F0-6BF4-3E29-A9B7-7BAD8D17EE4F> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
0x7fff865cf000 - 0x7fff865d8ff3 com.apple.CommonAuth (4.0 - 2.0) <9A484EE6-0003-3AB1-AE4F-AA543BBBF53F> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff865d9000 - 0x7fff865dffff 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
0x7fff865e0000 - 0x7fff865e7ff7 com.apple.phonenumbers (1.1.1 - 105) <AE39B6FE-05AB-3181-BB2A-4D50A8B392F2> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
0x7fff865f3000 - 0x7fff86618ff7 libJPEG.dylib (1248) <412D7F98-5ED5-3D61-BE45-1BE267C7B3D7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff86619000 - 0x7fff8675cfff libsqlite3.dylib (168.2) <BCB1F77E-2484-3EC4-A1D5-1AE90A407A23> /usr/lib/libsqlite3.dylib
0x7fff8675d000 - 0x7fff8675dfff com.apple.quartzframework (1.5 - 1.5) <26C982A3-2FC3-3F50-B5F4-3C545C3BAC10> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x7fff86763000 - 0x7fff86765fff libsystem_configuration.dylib (699.40.2) <56F94DCE-DBDE-3615-8F07-DE6270D9F8BE> /usr/lib/system/libsystem_configuration.dylib
0x7fff86780000 - 0x7fff867a1fff com.apple.framework.Apple80211 (10.3 - 1030.71.6) <C0A17391-5C8B-34B1-BD46-8D644AB57DE0> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff867a2000 - 0x7fff86862ff7 com.apple.backup.framework (1.6.5 - 1.6.5) <86396038-33EA-3046-9F70-093A3D6407D4> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff86863000 - 0x7fff8687dff7 libextension.dylib (55.2) <3BB019CA-199A-36AC-AA22-14B562138545> /usr/lib/libextension.dylib
0x7fff8687e000 - 0x7fff86889ff7 libkxld.dylib (2782.70.3) <F5F0305E-A7D5-37CA-945E-E2FB1F8568AC> /usr/lib/system/libkxld.dylib
0x7fff86893000 - 0x7fff86ad8ff7 com.apple.AddressBook.framework (9.0 - 1579) <A31956C5-AA13-35E6-B553-6BDF33F35103> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
0x7fff86ad9000 - 0x7fff86ae4fff com.apple.CommerceCore (1.0 - 376.29) <1058502F-8C78-36E1-914A-6403A2231FBA> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x7fff86af8000 - 0x7fff86b21ff3 libxslt.1.dylib (13.13) <18F488CB-AA53-3503-A199-044CA7664DE5> /usr/lib/libxslt.1.dylib
0x7fff86c58000 - 0x7fff86c5aff7 libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
0x7fff86c9c000 - 0x7fff86dd9fff com.apple.ImageIO.framework (3.3.0 - 1247) <001CB61C-6BDE-30A1-ACB7-C537E0043DF6> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff86dfb000 - 0x7fff86f89fff libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff86f9d000 - 0x7fff86fceff7 com.apple.ProtectedCloudStorage (1.0 - 1) <9D76F2E0-C28A-3DBC-A91F-E87888D46BF0> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
0x7fff86fcf000 - 0x7fff870c1ff7 libxml2.2.dylib (26.15) <B587DA25-360B-3742-BE9A-04B171504D79> /usr/lib/libxml2.2.dylib
0x7fff870c2000 - 0x7fff87158ff7 com.apple.cloudkit.CloudKit (283.67.4 - 283.67.4) <EA6E4B2C-A3AA-3636-B9C3-F61D3EFFB82B> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
0x7fff87159000 - 0x7fff8715aff7 libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
0x7fff8715b000 - 0x7fff8742aff3 com.apple.CoreImage (10.3.5) <0224F5A6-636A-374B-B46C-13E066596725> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff8742c000 - 0x7fff874b5ff7 com.apple.CoreSymbolication (3.1 - 57020.2) <FDAF88F6-7D11-37BC-B758-4B835FA657BA> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff874b6000 - 0x7fff874e0ff7 libdispatch.dylib (442.50.1) <A61E703C-784A-3698-B513-75DD12AAD6DC> /usr/lib/system/libdispatch.dylib
0x7fff874e1000 - 0x7fff874e5fff com.apple.TCC (1.0 - 1) <CCA42EE2-3400-3444-9486-BC454E60D944> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff8758b000 - 0x7fff875d7ff7 libcups.2.dylib (408.2) <E8AD18F9-61E4-3791-B840-504468C25556> /usr/lib/libcups.2.dylib
0x7fff8769b000 - 0x7fff876e1ff7 libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
0x7fff876e2000 - 0x7fff876e9ff7 libCGCMS.A.dylib (790) <64ACC63D-93FC-3D11-AF9C-A2A84A34FE35> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
0x7fff876ea000 - 0x7fff87768fff com.apple.CoreServices.OSServices (640.4 - 640.4) <9D175CD9-B27F-3529-8269-66D8AA83582E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff87a07000 - 0x7fff87a0bfff libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
0x7fff87a0c000 - 0x7fff87a18ff7 com.apple.OpenDirectory (10.10 - 187) <22FF4721-03D8-381B-AA83-2B07D690C777> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff87a19000 - 0x7fff87a41fff libsystem_info.dylib (459.40.1) <2E16C4B3-A327-3957-9C41-143911979A1E> /usr/lib/system/libsystem_info.dylib
0x7fff87a42000 - 0x7fff87a5fffb libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
0x7fff87a60000 - 0x7fff87cdfff7 com.apple.CoreData (111 - 526.3) <5A27E0D8-5E5A-335B-B3F6-2601C7B976FA> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff87ce0000 - 0x7fff87cecfff com.apple.HelpData (2.1.4 - 90) <02C6B7E6-1CC4-30E8-AD04-2794BECCF99C> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
0x7fff87ced000 - 0x7fff87fd4ffb com.apple.CoreServices.CarbonCore (1108.6 - 1108.6) <8953580E-7857-33B2-AA64-98296830D3A8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff87fd5000 - 0x7fff87fe0ff7 com.apple.CrashReporterSupport (10.10 - 631) <C44259AC-0A1C-3EC5-99AC-48CB520A709D> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff87fe1000 - 0x7fff88111fff com.apple.UIFoundation (1.0 - 1) <466BDFA8-0B9F-3AB0-989D-F9779422926A> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff88112000 - 0x7fff88121ff7 com.apple.ToneLibrary (1.0 - 1) <179C7D61-CB88-3CE3-9F06-4D60D13D616C> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
0x7fff88122000 - 0x7fff8815bff3 com.apple.datadetectors (5.0 - 286.13) <F2EC0715-1AD3-39C3-9B2D-D45336C73BFC> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetectors
0x7fff8815c000 - 0x7fff88167ff7 com.apple.SafariServices.framework (10603 - 10603.3.8) <AB7B27D0-6D50-3CC0-8CC3-1B1039A78950> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariServices
0x7fff88aae000 - 0x7fff88ab4ff7 com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
0x7fff88ab5000 - 0x7fff88ae1fff libc++abi.dylib (125.1) <B8E6BB31-E27E-3B80-9BA2-73B5AB7E42E1> /usr/lib/libc++abi.dylib
0x7fff88ae2000 - 0x7fff88af3ff3 libsystem_coretls.dylib (35.40.1) <155DA0A9-2046-332E-BFA3-D7974A51F731> /usr/lib/system/libsystem_coretls.dylib
0x7fff88af4000 - 0x7fff88b13fff com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
0x7fff88b14000 - 0x7fff88b4effb com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff88b4f000 - 0x7fff88b9eff7 libcurl.4.dylib (83.40.2) <AE97ED1E-A58F-3EF0-8E88-DDC6AD409BCE> /usr/lib/libcurl.4.dylib
0x7fff88b9f000 - 0x7fff88c2bfef libsystem_c.dylib (1044.40.3) <2E673D96-E334-37D2-833A-E57383BBA377> /usr/lib/system/libsystem_c.dylib
0x7fff88c2c000 - 0x7fff88c3eff7 com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol
0x7fff88c42000 - 0x7fff88c53fff libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
0x7fff88c54000 - 0x7fff88ecafff com.apple.security (7.0 - 57031.40.9) <8D9CB878-BB71-3CF1-88CE-9E6FAC4043ED> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff88fa9000 - 0x7fff88fb0ff7 libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
0x7fff88fb1000 - 0x7fff894c6fff com.apple.JavaScriptCore (10600 - 10600.8.7.1) <4C48FD32-ACA3-358F-95D9-05DBB56A1DED> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x7fff89574000 - 0x7fff8957aff7 libsystem_networkextension.dylib (167.40.3) <BA58B30B-8377-3B0A-8AE3-4F84021D9D4E> /usr/lib/system/libsystem_networkextension.dylib
0x7fff8957b000 - 0x7fff895b3fff libsystem_network.dylib (412.20.3) <6105C134-6722-3C0A-A4CE-5E1261E2E1CC> /usr/lib/system/libsystem_network.dylib
0x7fff895b4000 - 0x7fff896a6ff7 libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
0x7fff896a7000 - 0x7fff896adfff libsystem_trace.dylib (72.20.1) <840F5301-B55A-3078-90B9-FEFFD6CD741A> /usr/lib/system/libsystem_trace.dylib
0x7fff896ae000 - 0x7fff896aeff7 liblaunch.dylib (559.40.1) <4F81CA3A-D2CE-3030-A89D-42F3DAD7BA8F> /usr/lib/system/liblaunch.dylib
0x7fff89702000 - 0x7fff8970bfff com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x7fff8970c000 - 0x7fff8970cfff com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff8970d000 - 0x7fff8970dfff libOpenScriptingUtil.dylib (162.2) <D6A2216D-ADB2-3F24-AD30-F6D00829F545> /usr/lib/libOpenScriptingUtil.dylib
0x7fff8970e000 - 0x7fff89792fff com.apple.PerformanceAnalysis (1.0 - 1) <8CC3D6CB-2328-32A5-B70E-174AD408E892> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff89793000 - 0x7fff897dffff com.apple.corelocation (1486.17 - 1615.24) <8825B3E2-E053-3E01-AE31-793443962D06> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
0x7fff89816000 - 0x7fff89a80ff7 com.apple.imageKit (2.6.1 - 850) <612201FE-768E-386B-82E3-764038B40120> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x7fff89a81000 - 0x7fff89a83fff com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging
0x7fff89a84000 - 0x7fff89a8dff7 libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
0x7fff89abe000 - 0x7fff89ad0ff7 libsasl2.2.dylib (194.1) <35371406-75EF-304A-A073-956C40373555> /usr/lib/libsasl2.2.dylib
0x7fff89ad6000 - 0x7fff89b16ff7 libGLImage.dylib (11.1.6) <D6DDC014-2C74-34B3-970A-26F211FF76EF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff89b17000 - 0x7fff89b52fff com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff89b53000 - 0x7fff89b57fff libspindump.dylib (182.4) <A70D9FF6-75CC-320A-91A0-CF6143255814> /usr/lib/libspindump.dylib
0x7fff8a21b000 - 0x7fff8a21efff 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
0x7fff8a225000 - 0x7fff8a2e0ff7 com.apple.DiscRecording (9.0 - 9000.4.2) <4655B4B8-523D-3AE6-92A0-8486A2258B3B> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff8a2e1000 - 0x7fff8a2eefff libxar.1.dylib (255) <7CD69BB5-97BA-3858-8A8B-2F33F129E6E7> /usr/lib/libxar.1.dylib
0x7fff8a38f000 - 0x7fff8a3aaff7 com.apple.aps.framework (4.0 - 4.0) <EAC8C347-55F4-3769-995E-B140C95553F6> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
0x7fff8a3ab000 - 0x7fff8a3feffb libAVFAudio.dylib (118.6) <2441D4C1-D8FB-3DA9-9DD7-914E03413882> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib
0x7fff8a4f9000 - 0x7fff8a504fff libcommonCrypto.dylib (60061.30.1) <E789748D-F9A7-3CFF-B317-90DF348B1E95> /usr/lib/system/libcommonCrypto.dylib
0x7fff8a528000 - 0x7fff8a528fff com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff8a5a7000 - 0x7fff8a604fff com.apple.QuickLookFramework (5.0 - 675.43) <506D60B4-B188-3D0A-9187-0404A60A9B06> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x7fff8a605000 - 0x7fff8a629ff7 com.apple.facetimeservices (10.0 - 1000) <E2AB7900-5171-3DE0-9DBF-2CC14512B40A> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
0x7fff8a62a000 - 0x7fff8ab53ff7 com.apple.QuartzComposer (5.1 - 332.1) <64399385-0768-3590-B4EF-1BD0F8A35CB3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x7fff8ab54000 - 0x7fff8ad4e46f libobjc.A.dylib (647) <759E155D-BC42-3D4E-869B-6F57D477177C> /usr/lib/libobjc.A.dylib
0x7fff8ad50000 - 0x7fff8ad65fff com.apple.ToneKit (1.0 - 1) <25D0FF56-B802-359D-9CA1-D530F4890D87> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
0x7fff8ad68000 - 0x7fff8adaeff7 libFontRegistry.dylib (134.1) <CE41D8C2-BEED-345C-BC4F-3775CC06C672> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff8adaf000 - 0x7fff8adbbff7 com.apple.commonutilities (8.0 - 900) <E5E018A7-FB3C-37A2-9769-49AFAC89FDE8> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
0x7fff8ae08000 - 0x7fff8b25bfc7 com.apple.vImage (8.0 - 8.0) <33BE7B31-72DB-3364-B37E-C322A32748C5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff8b25c000 - 0x7fff8b280ff7 com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x7fff8b281000 - 0x7fff8b2a9fff libxpc.dylib (559.40.1) <5C829202-962E-3744-8B50-00D38CC88E84> /usr/lib/system/libxpc.dylib
0x7fff8b33f000 - 0x7fff8b44eff3 com.apple.desktopservices (1.9.3 - 1.9.3) <FEE11342-5BC4-37A7-8169-DA48BE17B9C9> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff8b451000 - 0x7fff8b454fff com.apple.xpc.ServiceManagement (1.0 - 1) <A95A15CD-3B21-3513-AFF8-1D7DE3DBFA12> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff8b4e9000 - 0x7fff8b526ff3 com.apple.bom (14.0 - 193.6) <3CE5593D-DB28-3BFD-943E-6261006FA292> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x7fff8b527000 - 0x7fff8b6d7ffb com.apple.QuartzCore (1.10 - 361.19) <973C2AD1-9D22-3F1F-A291-84B1F677C50D> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff8b6d8000 - 0x7fff8b76cfff 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
0x7fff8b773000 - 0x7fff8b775fff libCVMSPluginSupport.dylib (11.1.6) <4F965D25-2BC4-372B-BAE1-E833A3C4C3D5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff8b7c6000 - 0x7fff8b854fff com.apple.CorePDF (4.0 - 4) <19F4CB03-189E-3271-8F7A-A7D0DB3ACE49> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x7fff8b855000 - 0x7fff8b881fff libsandbox.1.dylib (358.20.5) <C95C61A4-C9C1-3B3C-A9A9-77DB7400598F> /usr/lib/libsandbox.1.dylib
0x7fff8b882000 - 0x7fff8b890ff7 com.apple.opengl (11.1.6 - 11.1.6) <81B00A5C-ED8A-341F-A11E-1079F7781C21> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff8b9f9000 - 0x7fff8b9f9fff com.apple.CoreServices (62 - 62) <C69DA8A7-B536-34BF-A93F-1C170E2C6D58> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff8bb2f000 - 0x7fff8bb33ff7 libGIF.dylib (1248) <C0BB32AD-9E76-3DF1-ABD7-C856D44E7C23> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff8bd93000 - 0x7fff8c0fefff com.apple.VideoToolbox (1.0 - 1562.240) <BEBDEB83-618F-38BE-B7A7-5E096B428DFA> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff8c0ff000 - 0x7fff8c11cfff libsystem_kernel.dylib (2782.70.3) <79B806D6-AEEF-3663-BAE3-2D8A4A0A7A92> /usr/lib/system/libsystem_kernel.dylib
0x7fff8c131000 - 0x7fff8c19bfff com.apple.imfoundation (10.0 - 1000) <842F39B6-0BE2-3B9B-9166-D40031C80C89> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundation
0x7fff8c19c000 - 0x7fff8c2e4ff7 com.apple.WebKitLegacy (10600 - 10600.8.9) <9F1ED8A5-1AB9-333C-B1A1-E13485F12E53> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy
0x7fff8c2e5000 - 0x7fff8c6bcfe7 com.apple.CoreAUC (211.1.0 - 211.1.0) <12645629-E065-388E-A6B5-094A240578CE> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff8c6bd000 - 0x7fff8c6c2ff7 com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff8c775000 - 0x7fff8c77efff libsystem_pthread.dylib (105.40.1) <ACE90967-ECD0-3251-AEEB-461E3C6414F7> /usr/lib/system/libsystem_pthread.dylib
0x7fff8c77f000 - 0x7fff8c782ff7 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <BCC15965-7869-34F4-9019-9D0A41DD6AFF> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fff8c783000 - 0x7fff8c788ff7 libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
0x7fff8c81c000 - 0x7fff8c877ff7 libTIFF.dylib (1248) <29AC482A-800E-3E0D-BC91-8211559111C0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff8c878000 - 0x7fff8c8a8fff libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
0x7fff8cc19000 - 0x7fff8cc87ff3 com.apple.Heimdal (4.0 - 2.0) <8D1667CF-D454-3E07-A58E-E15591B5A95E> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff8cc88000 - 0x7fff8ccabff7 com.apple.idsfoundation (10.0 - 1000) <79DAA5F6-E054-3CC9-B317-65044A95B567> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundation
0x7fff8cda4000 - 0x7fff8cdaefff com.apple.IntlPreferences (2.0 - 150.1) <29687F33-EE4C-3530-8AB9-5B36DBAF4485> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences
0x7fff8cdaf000 - 0x7fff8cdcaff7 libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
0x7fff8ce0f000 - 0x7fff8ce26ff7 libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff8ce64000 - 0x7fff8ce84fff com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff8ce85000 - 0x7fff8cf06ff7 com.apple.CoreUtils (1.1 - 110.1) <3808CBC5-1DF1-3821-8AAE-57C30D4F514B> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff8cf07000 - 0x7fff8d76affb com.apple.CoreGraphics (1.600.0 - 790) <7BD274D8-73CC-32DE-BCA5-96C047A3B97B> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff8d76b000 - 0x7fff8d79aff7 com.apple.CoreServicesInternal (221.7.2 - 221.7.2) <B93D4775-149C-3698-B38C-9C50673D455C> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff8d826000 - 0x7fff8d8bdfff com.apple.CoreMedia (1.0 - 1562.240) <CCAF850F-B2E8-3F3B-9DE9-2BB469403EDF> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff8d940000 - 0x7fff8d942fff libRadiance.dylib (1248) <28ECEEB1-E6FD-3152-9344-9786F586A325> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff8d943000 - 0x7fff8d94efff com.apple.AppSandbox (4.0 - 238.20.2) <BEFAB7F2-B189-391B-9B2D-FFF3EE2B77B6> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
0x7fff8da0c000 - 0x7fff8da19ff7 libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
0x7fff8da1a000 - 0x7fff8da6bfff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <8E6AE326-9F3E-3182-BD9E-FDF561211E2E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff8da6c000 - 0x7fff8da6dffb libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
0x7fff8da6e000 - 0x7fff8dda1ff7 libmecabra.dylib (666.7) <0ED8AE5E-7A5B-34A6-A2EE-2B852E60E1E2> /usr/lib/libmecabra.dylib
0x7fff8dda2000 - 0x7fff8de16ffb com.apple.securityfoundation (6.0 - 55126) <7BC5EB97-2BC8-390D-AC93-C36C456F1126> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff8de17000 - 0x7fff8de66ff7 com.apple.opencl (2.4.2 - 2.4.2) <BF5E999C-5710-362E-95E8-86EE7BEA357C> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff8de67000 - 0x7fff8de9afff com.apple.MediaKit (16 - 757.2) <2912E5C2-085F-3FE2-8531-23B6E894B0F0> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff8dea0000 - 0x7fff8ee63ff3 com.apple.WebCore (10600 - 10600.8.9) <A5400B08-6067-370E-B224-14890DA39857> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
0x7fff8eea4000 - 0x7fff8f089ff7 libicucore.A.dylib (531.51) <5AFEE55D-9BDD-362C-8A3C-A42237A96169> /usr/lib/libicucore.A.dylib
0x7fff8f08a000 - 0x7fff8f1b2ff7 com.apple.coreui (2.1 - 308.6) <9E0E9C6A-68F5-34C1-A17C-96226D401D4D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff8f1b3000 - 0x7fff8fd34ff7 com.apple.AppKit (6.9 - 1348.17) <E485D56D-3E72-34B7-99BB-BFDEE2D07BF5> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff8fd35000 - 0x7fff8fd37ff7 com.apple.securityhi (9.0 - 55006) <15D38919-9697-3E3A-BCB9-4E3271BC2C7E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff8fd38000 - 0x7fff8fd63ffb libarchive.2.dylib (30.50.1.1.1) <3E66E4A5-B992-3D94-9218-839B34BDAAA8> /usr/lib/libarchive.2.dylib
0x7fff8fd7e000 - 0x7fff8fd93ff7 com.apple.AppContainer (4.0 - 238.20.2) <2AA2EF49-9F38-31F6-8B08-8CC7C26F57F3> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
0x7fff8fd94000 - 0x7fff8fd95fff com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff8fd96000 - 0x7fff8fd96fff com.apple.Carbon (154 - 157) <9BF51672-1684-3FDE-A561-FC59A2864EF8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff8fd97000 - 0x7fff8fd9fff7 com.apple.icloud.FindMyDevice (1.0 - 1) <9CE67F85-2BA8-3093-97BA-07BF5C04A5D6> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice
0x7fff8fe00000 - 0x7fff8fe0bff7 com.apple.DirectoryService.Framework (10.10 - 187) <F5B30ACE-57D9-31EA-82F9-98F175B277D1> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x7fff8fe0c000 - 0x7fff8fe0dfff libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
0x7fff8fe30000 - 0x7fff8fe32fff libquarantine.dylib (76.20.1) <7AF90041-2768-378A-925A-D83161863642> /usr/lib/system/libquarantine.dylib
0x7fff8fe8d000 - 0x7fff8fe92ff7 libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
0x7fff8fe93000 - 0x7fff8fe9bfff libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
0x7fff8ff94000 - 0x7fff8ff98fff 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
0x7fff8ff99000 - 0x7fff9008cff7 libJP2.dylib (1248) <292199E7-9008-3AB6-9BF2-9C91FF1989BA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff9008d000 - 0x7fff900abff7 com.apple.addressbook.vCard (9.0 - 1579) <C4CDDC8B-AE35-39B8-820A-763E9C5D1794> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
0x7fff900b5000 - 0x7fff900bfff7 com.apple.NetAuth (5.2 - 5.2) <2BBD749A-8E18-35B8-8E48-A90347C1CCA7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff900c0000 - 0x7fff9012cff3 com.apple.MMCS (1.3 - 327.5) <FC998246-ED60-334D-9E94-453F35EF9C78> /System/Library/PrivateFrameworks/MMCS.framework/Versions/A/MMCS
0x7fff9012d000 - 0x7fff90135fe7 libcldcpuengine.dylib (2.4.5) <9AA2661D-B5B3-3B9A-A1A0-F25CB80446F3> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
0x7fff90136000 - 0x7fff901c7ff7 libCoreStorage.dylib (471.30.1) <9D95399F-1AC5-325F-8337-6E13AD99E44B> /usr/lib/libCoreStorage.dylib
0x7fff901c8000 - 0x7fff90447ffb com.apple.RawCamera.bundle (6.06 - 819) <EDA3D142-24EC-3661-87EB-B35F8E858A9D> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x7fff90448000 - 0x7fff9046ffff com.apple.shortcut (2.14 - 2.14) <0E9228EC-E688-3E83-9516-5211FFEA923E> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
0x7fff90470000 - 0x7fff90733ff7 com.apple.WebKit (10600 - 10600.8.9) <8EE5A9F9-DE98-3202-92C0-23F6E6E5E274> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
0x7fff90734000 - 0x7fff90788fff libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
0x7fff9079e000 - 0x7fff907c4fff com.apple.ChunkingLibrary (2.1 - 163.6) <29D4CB95-42EF-34C6-8182-BDB6F7BB1E79> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff90822000 - 0x7fff90c52fff com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff90c53000 - 0x7fff91060ff7 libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff918ea000 - 0x7fff91917fff com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff91918000 - 0x7fff91918fff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <B92888D0-ED3F-3430-8F3A-6E56FD16C5F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff91919000 - 0x7fff9192aff7 libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
0x7fff9192b000 - 0x7fff91b3bff7 com.apple.CFNetwork (720.5.7 - 720.5.7) <A47D7DD2-5903-39D0-8D27-5A7E2D119D84> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff91b3c000 - 0x7fff91b8dff7 com.apple.AppleVAFramework (5.0.31 - 5.0.31) <2DC09ADA-F618-3F35-9DA1-F8D7A08FE58F> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff91b8e000 - 0x7fff91cb2ff7 com.apple.LaunchServices (644.56 - 644.56) <20AABB1C-9319-3E4D-A024-51B0DD5FCD3B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff91cdf000 - 0x7fff91cecff3 com.apple.ProtocolBuffer (1 - 228.0.1) <3429EB06-9F0E-355F-B9AB-F72879177398> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff91cf5000 - 0x7fff91d0fff7 liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
0x7fff91d10000 - 0x7fff91d4bfff com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff91d4c000 - 0x7fff91d4cfff com.apple.audio.units.AudioUnit (1.12 - 1.12) <E5335492-7EFE-31EA-BE72-4A9CEE68D58E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff91d4d000 - 0x7fff91eb4ffb com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5678FC94-456A-3F5F-BA9A-10EB6E462997> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff91eb5000 - 0x7fff91ee5ff3 com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff91ee6000 - 0x7fff91ee9fff com.apple.IOSurface (97.5 - 97.5) <D09F4452-874E-391D-AAEC-A64F4DD5049E> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff91eea000 - 0x7fff91f03ff3 com.apple.openscripting (1.6.4 - 162.2) <BF79207B-C762-346D-8FF0-3DDCECC9E9E2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff91f04000 - 0x7fff91feeff7 com.apple.QuickLookUIFramework (5.0 - 675.43) <011DEB49-0FB3-3E44-9D99-D89ADD59A3CC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x7fff91fef000 - 0x7fff9205efff com.apple.SearchKit (1.4.0 - 1.4.0) <80883BD1-C9BA-3794-A20E-476F94DD89A9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff9205f000 - 0x7fff92178ff3 com.apple.CoreText (454.11 - 454.14) <B3B308C3-F4B8-3776-9B78-8E94D4E74D0A> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff92179000 - 0x7fff92218e27 com.apple.AppleJPEG (1.0 - 1) <6627DDD9-A8FE-3968-B23A-B6A29AA3919A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff92219000 - 0x7fff92219ff7 libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
0x7fff92251000 - 0x7fff9225dfff com.apple.speech.synthesis.framework (5.3.11 - 5.3.11) <DFC7FD85-F1B0-317C-8513-722570CB8FB9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff9225e000 - 0x7fff9225fff7 com.apple.AddressBook.ContactsData (9.0 - 1579) <FF9C31DD-7839-35FB-AE66-21AEF63583EF> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsData
0x7fff922c7000 - 0x7fff922dfff7 libexpat.1.dylib (12) <C5FE8836-E277-3162-9D15-6735321CB2C6> /usr/lib/libexpat.1.dylib
0x7fff92470000 - 0x7fff92478ff3 com.apple.CoreServices.FSEvents (1210.20.1 - 1210.20.1) <84F79D3E-7B5E-3C93-8479-35794A3F125E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff9247b000 - 0x7fff924c9ff7 com.apple.ImageCaptureCore (6.3 - 6.3) <75B5043C-9EF0-3CD2-875D-12813F0A73D3> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x7fff924ca000 - 0x7fff9254eff7 com.apple.ViewBridge (105.1 - 105.1) <98E9733F-D863-30CE-BF25-E6768C73AF21> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
0x7fff9254f000 - 0x7fff92550ff3 libSystem.B.dylib (1213) <4B24B5BE-45F2-355A-9A35-D438A516D140> /usr/lib/libSystem.B.dylib
0x7fff92566000 - 0x7fff925c5fff com.apple.AE (681.5 - 681.7) <2BF39455-1CDD-392C-824A-9972C6B1FB57> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff925c6000 - 0x7fff92664fff com.apple.Metadata (10.7.0 - 917.36) <00C4CB5D-E723-3612-84E0-439098392CDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff92690000 - 0x7fff92694fff libCoreVMClient.dylib (79.1) <201EF6DF-5074-3CB7-A361-398CF957A264> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff92695000 - 0x7fff92698ffb libCGXType.A.dylib (790) <A87FDE11-B3BE-3C78-B777-293BF25F5E43> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x7fff926e8000 - 0x7fff927beff3 com.apple.DiskImagesFramework (10.10.5 - 398) <05774334-36DF-3912-AD3C-07167ED83FE4> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
0x7fff927bf000 - 0x7fff92838fe7 libcorecrypto.dylib (233.30.1) <5779FFA0-4D9A-3AD4-B7F2-618227621DC8> /usr/lib/system/libcorecrypto.dylib
0x7fff92839000 - 0x7fff92849ff7 libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
0x7fff9284a000 - 0x7fff928afff7 com.apple.ids (10.0 - 1000) <B7FB9598-02E5-341D-A019-3F20AE7E1B4D> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
0x7fff9292b000 - 0x7fff929eeff7 libvMisc.dylib (516) <21497A28-8DCB-3EB8-BDAC-93C93382B0AA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff929ef000 - 0x7fff929f1fff com.apple.loginsupport (1.0 - 1) <DAAD7013-A19D-3858-BFF7-DE1DAF664401> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff929f2000 - 0x7fff929fafff libsystem_dnssd.dylib (576.50.2) <9EC5AF92-D0D2-3BDE-92B6-D3730D3865C8> /usr/lib/system/libsystem_dnssd.dylib
0x7fff92bab000 - 0x7fff92bb6fff libGL.dylib (11.1.6) <38B3FF9A-5660-3080-9DB8-1CAE0E8CD739> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff92bb7000 - 0x7fff92bb7ff7 libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
0x7fff92bb8000 - 0x7fff92c1fffb com.apple.datadetectorscore (6.0 - 396.1.2) <7D88DC30-2583-35A6-8342-425201FE7044> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff92c20000 - 0x7fff92c6dff7 com.apple.print.framework.PrintCore (10.3 - 451.1) <DE992474-0841-38A1-B4F6-46D653E454D5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff92c6e000 - 0x7fff92f70ffb com.apple.GeoServices (1.0 - 1077.0.18) <2BBF8B44-DD46-3432-8C84-6D6AA004C233> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
0x7fff92f71000 - 0x7fff92f73fff libsystem_sandbox.dylib (358.20.5) <3F5E973F-C702-31AC-97BC-05F5C195683C> /usr/lib/system/libsystem_sandbox.dylib
0x7fff92f74000 - 0x7fff92f87ff7 com.apple.CoreBluetooth (1.0 - 1) <8D7BA9BA-EB36-307A-9119-0B3D9732C953> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff92f88000 - 0x7fff93320ff7 com.apple.CoreFoundation (6.9 - 1153.31) <4151A95B-66CA-3E6F-9FB2-DF1D8F3E606A> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff93321000 - 0x7fff93322fff libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff93323000 - 0x7fff9338aff7 com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff9338b000 - 0x7fff93399fff com.apple.AddressBook.ContactsFoundation (9.0 - 1579) <34ED9046-0157-399F-9742-2FC2D098E368> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation
0x7fff9339a000 - 0x7fff933c5ff7 com.apple.DictionaryServices (1.2 - 229.1) <62EC3E1B-5A28-3252-90FF-C2E9999C2A2A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff934c7000 - 0x7fff934d6fd3 com.apple.AppleFSCompression (68.30.1 - 1.0) <FC7A4084-8DBF-31DD-A2A4-97F719AA4F23> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff934d7000 - 0x7fff934d8ff7 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
0x7fff93509000 - 0x7fff93514ff7 libcsfde.dylib (471.30.1) <A62AE3D8-E2A6-314A-BF45-804003BE0AC9> /usr/lib/libcsfde.dylib
0x7fff93515000 - 0x7fff93519fff libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
0x7fff93568000 - 0x7fff9360afff com.apple.Bluetooth (4.3.6 - 4.3.6f4) <D9286207-FC6A-36B7-A10D-830F6B1A2E8F> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff9360b000 - 0x7fff93610fff libsystem_stats.dylib (163.30.2) <4F79A38D-3C9C-3578-8E38-7697F7300CB2> /usr/lib/system/libsystem_stats.dylib
0x7fff93f71000 - 0x7fff93f78fff com.apple.NetFS (6.0 - 4.0) <C263C8F8-F284-3101-AC82-A97A81716063> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 2
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: 1078
thread_create: 0
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=359.1M resident=113.9M(32%) swapped_out_or_unallocated=245.2M(68%)
Writable regions: Total=267.1M written=44.2M(17%) resident=47.9M(18%) swapped_out=20.7M(8%) unallocated=219.3M(82%)
REGION TYPE VIRTUAL
=========== =======
Activity Tracing 2048K
CG backing stores 1148K
CG image 564K
CG shared images 400K
CoreAnimation 608K
CoreGraphics 12K
CoreImage 8K
CoreUI image data 188K
Dispatch continuations 4096K
Foundation 4K
IOKit 420K
Image IO 16K
Kernel Alloc Once 8K
MALLOC 55.8M
MALLOC (admin) 32K
Mach message 4K
Memory Tag 242 12K
Memory Tag 251 16K
Memory Tag 255 145.6M
OpenCL 32K
STACK GUARD 56.1M
Stack 164.4M
Stack (reserved) 520K reserved VM address space (unallocated)
VM_ALLOCATE 17.2M
__DATA 33.5M
__IMAGE 528K
__LINKEDIT 75.9M
__TEXT 283.2M
__UNICODE 552K
mapped file 155.6M
shared memory 4K
=========== =======
TOTAL 998.3M
TOTAL, minus reserved VM space 997.8M
</code></pre></div>
</details>
<details>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ 00 ] mojo::internal::MultiplexRouter::~MultiplexRouter
[ 01 ] non-virtual thunk to mojo::internal::MultiplexRouter::~MultiplexRouter
[ 02 ] mojo::internal::MultiplexRouter::OnPipeConnectionError
[ 03 ] mojo::internal::InterfacePtrStateBase::~InterfacePtrStateBase
[ 04 ] SystemNetworkContextManager::OnNetworkServiceCreated
[ 05 ] content::GetNetworkService
[ 06 ] electron::NetworkContextService::CreateNetworkContext
[ 07 ] electron::ElectronBrowserClient::CreateNetworkContext
[ 08 ] content::StoragePartitionImpl::InitNetworkContext
[ 09 ] content::StoragePartitionImpl::GetNetworkContext
[ 10 ] content::URLLoaderFactoryGetter::HandleNetworkFactoryRequestOnUIThread
[ 11 ] content::URLLoaderFactoryGetter::Initialize
[ 12 ] content::StoragePartitionImpl::Initialize
[ 13 ] content::StoragePartitionImplMap::Get
[ 14 ] content::(anonymous namespace)::GetStoragePartitionFromConfig
[ 15 ] content::BrowserContext::GetDefaultStoragePartition
[ 16 ] electron::CookieChangeNotifier::StartListening
[ 17 ] electron::ElectronBrowserContext::ElectronBrowserContext
[ 18 ] electron::ElectronBrowserContext::From
[ 19 ] electron::api::Session::FromPartition
[ 20 ] (anonymous namespace)::FromPartition
[ 21 ] mate::internal::Dispatcher<v8::Local<v8::Value> (std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, mate::Arguments*)>::DispatchToCallback
[ 22 ] v8::internal::FunctionCallbackArguments::Call
[ 23 ] v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>
[ 24 ] v8::internal::Builtin_Impl_HandleApiCall
[ 25 ] Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit
[ 26 ] Builtins_LoadIC_NoFeedback
[ 27 ] Builtins_JSEntryTrampoline
[ 28 ] Builtins_JSEntry"><pre class="notranslate"><code class="notranslate">[ 00 ] mojo::internal::MultiplexRouter::~MultiplexRouter
[ 01 ] non-virtual thunk to mojo::internal::MultiplexRouter::~MultiplexRouter
[ 02 ] mojo::internal::MultiplexRouter::OnPipeConnectionError
[ 03 ] mojo::internal::InterfacePtrStateBase::~InterfacePtrStateBase
[ 04 ] SystemNetworkContextManager::OnNetworkServiceCreated
[ 05 ] content::GetNetworkService
[ 06 ] electron::NetworkContextService::CreateNetworkContext
[ 07 ] electron::ElectronBrowserClient::CreateNetworkContext
[ 08 ] content::StoragePartitionImpl::InitNetworkContext
[ 09 ] content::StoragePartitionImpl::GetNetworkContext
[ 10 ] content::URLLoaderFactoryGetter::HandleNetworkFactoryRequestOnUIThread
[ 11 ] content::URLLoaderFactoryGetter::Initialize
[ 12 ] content::StoragePartitionImpl::Initialize
[ 13 ] content::StoragePartitionImplMap::Get
[ 14 ] content::(anonymous namespace)::GetStoragePartitionFromConfig
[ 15 ] content::BrowserContext::GetDefaultStoragePartition
[ 16 ] electron::CookieChangeNotifier::StartListening
[ 17 ] electron::ElectronBrowserContext::ElectronBrowserContext
[ 18 ] electron::ElectronBrowserContext::From
[ 19 ] electron::api::Session::FromPartition
[ 20 ] (anonymous namespace)::FromPartition
[ 21 ] mate::internal::Dispatcher<v8::Local<v8::Value> (std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, mate::Arguments*)>::DispatchToCallback
[ 22 ] v8::internal::FunctionCallbackArguments::Call
[ 23 ] v8::internal::MaybeHandle<v8::internal::Object> v8::internal::(anonymous namespace)::HandleApiCallHelper<false>
[ 24 ] v8::internal::Builtin_Impl_HandleApiCall
[ 25 ] Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit
[ 26 ] Builtins_LoadIC_NoFeedback
[ 27 ] Builtins_JSEntryTrampoline
[ 28 ] Builtins_JSEntry
</code></pre></div>
</details> | 1 |
<p dir="auto">Would anyone be interested in a PR for bundling ES6 modules into single IFFE-scoped files? (a la <a href="http://rollupjs.org/" rel="nofollow">rollup.js</a>) This would allow bundling for those who don't wish to rely on AMD/System, and remove at least one build step in many scenarios.</p>
<p dir="auto">(Apologies if duplicate. Search/FAQ didn't come up with anything. If additional details are desired, I can put those together as well)</p>
<p dir="auto">Example below (modified from rollupjs's website):</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="//main.ts (source)
import * as x from './maths';
var z : number = 3;
console.log( x.cube( 5 ) + z ); "><pre class="notranslate"><span class="pl-c">//main.ts (source)</span>
<span class="pl-k">import</span> <span class="pl-c1">*</span> <span class="pl-k">as</span> <span class="pl-s1">x</span> <span class="pl-k">from</span> <span class="pl-s">'./maths'</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">z</span> : <span class="pl-smi">number</span> <span class="pl-c1">=</span> <span class="pl-c1">3</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span> <span class="pl-s1">x</span><span class="pl-kos">.</span><span class="pl-en">cube</span><span class="pl-kos">(</span> <span class="pl-c1">5</span> <span class="pl-kos">)</span> <span class="pl-c1">+</span> <span class="pl-s1">z</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> </pre></div>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="//maths.ts (source)
//variable namespacing could be accomplished by appending, as seen here, or via internal IFFEs
var z : number = 0;
export function square ( x : number ): number {
return x * x + z;
}
//unreferenced functions intelligently culled
export function cube ( x : number ): number {
return x * x * x + z;
}"><pre class="notranslate"><span class="pl-c">//maths.ts (source)</span>
<span class="pl-c">//variable namespacing could be accomplished by appending, as seen here, or via internal IFFEs</span>
<span class="pl-k">var</span> <span class="pl-s1">z</span> : <span class="pl-smi">number</span> <span class="pl-c1">=</span> <span class="pl-c1">0</span><span class="pl-kos">;</span>
<span class="pl-k">export</span> <span class="pl-k">function</span> <span class="pl-en">square</span> <span class="pl-kos">(</span> <span class="pl-s1">x</span> : <span class="pl-smi">number</span> <span class="pl-kos">)</span>: <span class="pl-smi">number</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-c1">+</span> <span class="pl-s1">z</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-c">//unreferenced functions intelligently culled</span>
<span class="pl-k">export</span> <span class="pl-k">function</span> <span class="pl-en">cube</span> <span class="pl-kos">(</span> <span class="pl-s1">x</span> : <span class="pl-smi">number</span> <span class="pl-kos">)</span>: <span class="pl-smi">number</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-c1">*</span> <span class="pl-s1">x</span> <span class="pl-c1">+</span> <span class="pl-s1">z</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="//main.js (outFile)
(function () {
'use strict';
//variable namespacing could be accomplished by appending, as seen here, or via internal IFFEs
var z$1 = 0;
//unreferenced functions intelligently culled
function cube ( x ) {
return x * x * x + z$1;
}
var z = 3;
console.log( cube( 5 ) + z );
}());"><pre class="notranslate"><span class="pl-c">//main.js (outFile)</span>
<span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s">'use strict'</span><span class="pl-kos">;</span>
<span class="pl-c">//variable namespacing could be accomplished by appending, as seen here, or via internal IFFEs</span>
<span class="pl-k">var</span> <span class="pl-s1">z$1</span> <span class="pl-c1">=</span> <span class="pl-c1">0</span><span class="pl-kos">;</span>
<span class="pl-c">//unreferenced functions intelligently culled</span>
<span class="pl-k">function</span> <span class="pl-en">cube</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-c1">*</span> <span class="pl-s1">x</span> <span class="pl-c1">+</span> <span class="pl-s1">z$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-c1">3</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span> <span class="pl-en">cube</span><span class="pl-kos">(</span> <span class="pl-c1">5</span> <span class="pl-kos">)</span> <span class="pl-c1">+</span> <span class="pl-s1">z</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">Relates to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="74445037" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript/issues/3089" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/3089/hovercard" href="https://github.com/microsoft/TypeScript/issues/3089">#3089</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="68134267" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript/issues/2743" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/2743/hovercard" href="https://github.com/microsoft/TypeScript/issues/2743">#2743</a>, and <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="37906625" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript/issues/17" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/17/hovercard" href="https://github.com/microsoft/TypeScript/issues/17">#17</a>.</p>
<h1 dir="auto">Goals</h1>
<ul dir="auto">
<li>Bundle <em>js emit</em> for TS projects while preserving internal modular structure (complete with ES6 semantics and <em>despite</em> being concatenated into a single file), <em>but not exposing it publicly</em> and wrapping the chosen entrypoint with a loader for the desired external module system.</li>
</ul>
<h1 dir="auto">Proposal</h1>
<p dir="auto">When all of <code class="notranslate">--bundle</code>, <code class="notranslate">--module</code> and <code class="notranslate">--out</code> are specified, the TS compiler should emit a single amalgamated <code class="notranslate">js</code> file as output. <code class="notranslate">--bundle</code> is a new compiler flag, indicating that the modules used should be concatenated into the output file and loaded with a microloader at runtime. The semantics of this microloader should preserve ES6 module semantics, <em>but may not support TS-specific ES6 module semantics, such as <code class="notranslate">import a = require</code> or <code class="notranslate">exports =</code></em>. This is a major point of discussion, as to if these TS-specific syntax extensions are worth continuing to support with new language features. Additionally, this should wrap the result file with <code class="notranslate">--module</code>-specific declaration wrappers, if need be.</p>
<p dir="auto">Supporting ES6 semantics is some effort - some rewriting/moving and declaration hoisting needs to be done to support circular references between internal modules.</p>
<p dir="auto">Most of the effort involved here involves the design of the microloader and emit for said microloader - since this is compile time, and we don't want to register any new external dependencies at runtime (with this loader), I expect we can make some optimizations compared to, say, using an internal copy of systemjs.</p>
<p dir="auto">Additionally, we need to decide if we want to make further optimizations based on the chosen <code class="notranslate">--module</code> - if the system chosen supports asynchronous module resolution (so not <code class="notranslate">commonjs</code>), then we can potentially use a more lazy, async dependency resolver internally, too.</p>
<p dir="auto">So, to give an example of the emit (let's say we use a system-like thing internally and are emitting a system module):</p>
<p dir="auto">Given:<br>
<code class="notranslate">a.ts</code>:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="export * from './b';
export * from './c';"><pre class="notranslate"><span class="pl-k">export</span> <span class="pl-c1">*</span> <span class="pl-k">from</span> <span class="pl-s">'./b'</span><span class="pl-kos">;</span>
<span class="pl-k">export</span> <span class="pl-c1">*</span> <span class="pl-k">from</span> <span class="pl-s">'./c'</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><code class="notranslate">b.ts</code>:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="export interface Foo {}
export class Bar {
constructor() {
console.log('');
}
do(): Foo { throw new Error('Not implemented.'); }
}"><pre class="notranslate"><span class="pl-k">export</span> <span class="pl-k">interface</span> <span class="pl-smi">Foo</span> <span class="pl-kos">{</span><span class="pl-kos">}</span>
<span class="pl-k">export</span> <span class="pl-k">class</span> <span class="pl-smi">Bar</span> <span class="pl-kos">{</span>
<span class="pl-en">constructor</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">''</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-en">do</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: <span class="pl-smi">Foo</span> <span class="pl-kos">{</span> <span class="pl-k">throw</span> <span class="pl-k">new</span> <span class="pl-smi">Error</span><span class="pl-kos">(</span><span class="pl-s">'Not implemented.'</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"><code class="notranslate">c.ts</code>:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="export class Baz {}
export interface Foo {}"><pre class="notranslate"><span class="pl-k">export</span> <span class="pl-k">class</span> <span class="pl-smi">Baz</span> <span class="pl-kos">{</span><span class="pl-kos">}</span>
<span class="pl-k">export</span> <span class="pl-k">interface</span> <span class="pl-smi">Foo</span> <span class="pl-kos">{</span><span class="pl-kos">}</span></pre></div>
<p dir="auto">Hypothetically, with <code class="notranslate">--out appLib.js</code>, <code class="notranslate">--bundle a.ts</code> and <code class="notranslate">--module system</code> arguments, we should get something like<br>
<code class="notranslate">appLib.js</code>:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="System.register([], function (exports_1) {
var __system = /* loader code */;
//a.ts
__system.register('./a', ['./b', './c'], function(exports_1) {
function exportStar_1(m) {
var exports = {};
for(var n in m) {
if (n !== "default") exports[n] = m[n];
}
exports_1(exports);
}
return {
setters:[
function (_b_1) {
exportStar_1(_b_1);
},
function (_c_1) {
exportStar_1(_c_1);
}],
execute: function() {
}
}
});
//b.ts
__system.register('./b', [], function(exports_1) {
var Bar;
return {
setters:[],
execute: function() {
Bar = (function () {
function Bar() {
console.log('');
}
Bar.prototype.do = function () { throw new Error('Not implemented.'); };
return Bar;
})();
exports_1("Bar", Bar);
}
}
});
//c.ts
__system.register('./c', [], function(exports_1) {
var Baz;
return {
setters:[],
execute: function() {
Baz = (function () {
function Baz() {
}
return Baz;
})();
exports_1("Baz", Baz);
}
}
});
function exportStar_1(m) {
var exports = {};
for(var n in m) {
if (n !== "default") exports[n] = m[n];
}
exports_1(exports);
}
return {
setters: [],
execute: function() {
__system.import('./a').then(function (_pub_1) {
exportStar_1(_pub_1);
});
};
});"><pre class="notranslate"><span class="pl-v">System</span><span class="pl-kos">.</span><span class="pl-en">register</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">function</span> <span class="pl-kos">(</span><span class="pl-s1">exports_1</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">__system</span> <span class="pl-c1">=</span> <span class="pl-c">/* loader code */</span><span class="pl-kos">;</span>
<span class="pl-c">//a.ts</span>
<span class="pl-s1">__system</span><span class="pl-kos">.</span><span class="pl-en">register</span><span class="pl-kos">(</span><span class="pl-s">'./a'</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s">'./b'</span><span class="pl-kos">,</span> <span class="pl-s">'./c'</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">exports_1</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">function</span> <span class="pl-en">exportStar_1</span><span class="pl-kos">(</span><span class="pl-s1">m</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">exports</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">n</span> <span class="pl-k">in</span> <span class="pl-s1">m</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">n</span> <span class="pl-c1">!==</span> <span class="pl-s">"default"</span><span class="pl-kos">)</span> <span class="pl-s1">exports</span><span class="pl-kos">[</span><span class="pl-s1">n</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">m</span><span class="pl-kos">[</span><span class="pl-s1">n</span><span class="pl-kos">]</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-s1">exports_1</span><span class="pl-kos">(</span><span class="pl-s1">exports</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-kos">{</span>
<span class="pl-c1">setters</span>:<span class="pl-kos">[</span>
<span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">_b_1</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">exportStar_1</span><span class="pl-kos">(</span><span class="pl-s1">_b_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-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">_c_1</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">exportStar_1</span><span class="pl-kos">(</span><span class="pl-s1">_c_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-en">execute</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">//b.ts</span>
<span class="pl-s1">__system</span><span class="pl-kos">.</span><span class="pl-en">register</span><span class="pl-kos">(</span><span class="pl-s">'./b'</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">function</span><span class="pl-kos">(</span><span class="pl-s1">exports_1</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-v">Bar</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-kos">{</span>
<span class="pl-c1">setters</span>:<span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-en">execute</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-v">Bar</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">function</span> <span class="pl-v">Bar</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">''</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-v">Bar</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">.</span><span class="pl-en">do</span> <span class="pl-c1">=</span> <span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">throw</span> <span class="pl-k">new</span> <span class="pl-v">Error</span><span class="pl-kos">(</span><span class="pl-s">'Not implemented.'</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-v">Bar</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-s1">exports_1</span><span class="pl-kos">(</span><span class="pl-s">"Bar"</span><span class="pl-kos">,</span> <span class="pl-v">Bar</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">//c.ts</span>
<span class="pl-s1">__system</span><span class="pl-kos">.</span><span class="pl-en">register</span><span class="pl-kos">(</span><span class="pl-s">'./c'</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">function</span><span class="pl-kos">(</span><span class="pl-s1">exports_1</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-v">Baz</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-kos">{</span>
<span class="pl-c1">setters</span>:<span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-en">execute</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-v">Baz</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">function</span> <span class="pl-v">Baz</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-v">Baz</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-s1">exports_1</span><span class="pl-kos">(</span><span class="pl-s">"Baz"</span><span class="pl-kos">,</span> <span class="pl-v">Baz</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">function</span> <span class="pl-en">exportStar_1</span><span class="pl-kos">(</span><span class="pl-s1">m</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">exports</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">n</span> <span class="pl-k">in</span> <span class="pl-s1">m</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">n</span> <span class="pl-c1">!==</span> <span class="pl-s">"default"</span><span class="pl-kos">)</span> <span class="pl-s1">exports</span><span class="pl-kos">[</span><span class="pl-s1">n</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">m</span><span class="pl-kos">[</span><span class="pl-s1">n</span><span class="pl-kos">]</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-s1">exports_1</span><span class="pl-kos">(</span><span class="pl-s1">exports</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-kos">{</span>
<span class="pl-c1">setters</span>: <span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-en">execute</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">__system</span><span class="pl-kos">.</span><span class="pl-en">import</span><span class="pl-kos">(</span><span class="pl-s">'./a'</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">then</span><span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">_pub_1</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">exportStar_1</span><span class="pl-kos">(</span><span class="pl-s1">_pub_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-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> | 1 |
<p dir="auto">If I want a terminal for vs code, inputBox is not well for input.</p> | <p dir="auto">It would be great if vscode has integrated terminal feature refer vim or atom <a href="https://atom.io/packages/term3" rel="nofollow">https://atom.io/packages/term3</a></p>
<p dir="auto">I saw this suggestion pending in uservoice(<a href="https://visualstudio.uservoice.com/forums/293070-visual-studio-code/suggestions/7752357-integrated-terminal" rel="nofollow">https://visualstudio.uservoice.com/forums/293070-visual-studio-code/suggestions/7752357-integrated-terminal</a>) and repost here since it has specific repo</p> | 1 |
<p dir="auto">Source is very simple.</p>
<p dir="auto">//<br>
//<br>
static F : Box< Fn(i32) -> i32 > = Box::new(move |x:i32| x);</p>
<p dir="auto">fn main() {<br>
}<br>
//<br>
//</p>
<p dir="auto">this code generate fault as follows.</p>
<p dir="auto">src\main.rs:2:34: 2:58 error: function calls in statics are limited to struct an<br>
d enum constructors [E0015]<br>
src\main.rs:2 static F : Box<Fn(i32) -> i32> = Box::new(move |x:i32| x);<br>
^~~~~~~~~~~~~~~~~~~~~~~~<br>
error: internal compiler error: unexpected panic<br>
note: the compiler unexpectedly panicked. this is a bug.<br>
note: we would appreciate a bug report: <a href="https://github.com/rust-lang/rust/blob/m">https://github.com/rust-lang/rust/blob/m</a><br>
aster/CONTRIBUTING.md#bug-reports<br>
note: run with <code class="notranslate">RUST_BACKTRACE=1</code> for a backtrace<br>
thread 'rustc' panicked at 'assertion failed: self.mode == Mode::Var', C:/bot/sl<br>
ave/beta-dist-rustc-win-64/build/src/librustc\middle\check_const.rs:232</p>
<p dir="auto">Could not compile <code class="notranslate">hello_world</code>.</p>
<p dir="auto">To learn more, run the command again with --verbose.</p> | <p dir="auto">If I try to create a <code class="notranslate">const &'static Fn(u32)</code>, I trigger an ICE:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error: internal compiler error: unexpected panic
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 'assertion failed: self.mode == Mode::Var', /home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/librustc/middle/check_const.rs:254
error code 101"><pre class="notranslate"><code class="notranslate">error: internal compiler error: unexpected panic
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 'assertion failed: self.mode == Mode::Var', /home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/librustc/middle/check_const.rs:254
error code 101
</code></pre></div>
<p dir="auto">A small example code snippet is on the playpen (see <a href="http://is.gd/U0DmxV" rel="nofollow">http://is.gd/U0DmxV</a>):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const x: &'static Fn() = &|| println!("ICE here"); //ICE
fn main() {}"><pre class="notranslate"><code class="notranslate">const x: &'static Fn() = &|| println!("ICE here"); //ICE
fn main() {}
</code></pre></div> | 1 |
<h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Feature Idea</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">module lineinfile</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2.3.0.0"><pre class="notranslate"><code class="notranslate">2.3.0.0
</code></pre></div>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="---
- hosts: 127.0.0.1
tasks:
- name:
lineinfile:
dest: foo.txt
regexp: "msgid aaaa\nmsgstr bbbbb\n"
line: "msgid aaaa\nmsgstr bbbbb\n""><pre class="notranslate">---
- <span class="pl-ent">hosts</span>: <span class="pl-s">127.0.0.1</span>
<span class="pl-ent">tasks</span>:
- <span class="pl-ent">name</span>:
<span class="pl-ent">lineinfile</span>:
<span class="pl-ent">dest</span>: <span class="pl-s">foo.txt</span>
<span class="pl-ent">regexp</span>: <span class="pl-s"><span class="pl-pds">"</span>msgid aaaa<span class="pl-cce">\n</span>msgstr bbbbb<span class="pl-cce">\n</span><span class="pl-pds">"</span></span>
<span class="pl-ent">line</span>: <span class="pl-s"><span class="pl-pds">"</span>msgid aaaa<span class="pl-cce">\n</span>msgstr bbbbb<span class="pl-cce">\n</span><span class="pl-pds">"</span></span></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# echo > foo.txt
# ansible-playbook aa.yaml
# ansible-playbook aa.yaml
# ansible-playbook aa.yaml
# cat foo.txt
msgid aaaa
msgstr bbbbb
msgid aaaa
msgstr bbbbb
msgid aaaa
msgstr bbbbb"><pre class="notranslate"><code class="notranslate"># echo > foo.txt
# ansible-playbook aa.yaml
# ansible-playbook aa.yaml
# ansible-playbook aa.yaml
# cat foo.txt
msgid aaaa
msgstr bbbbb
msgid aaaa
msgstr bbbbb
msgid aaaa
msgstr bbbbb
</code></pre></div> | <h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">Role dependencies</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.2.0.0
config file = /home/kyle/.ansible.cfg
configured module search path = Default w/o overrides"><pre class="notranslate"><code class="notranslate">ansible 2.2.0.0
config file = /home/kyle/.ansible.cfg
configured module search path = Default w/o overrides
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[defaults]
inventory = ~/.ansible/hosts
ansible_managed = Managed by ansible. All changes will be overwritten
ssh_args = -o ControlMaster=auto -o ControlPersist=60s StrictHostKeyChecking=no
ask_vault_pass = yes
retry_files_enabled = False"><pre class="notranslate"><code class="notranslate">[defaults]
inventory = ~/.ansible/hosts
ansible_managed = Managed by ansible. All changes will be overwritten
ssh_args = -o ControlMaster=auto -o ControlPersist=60s StrictHostKeyChecking=no
ask_vault_pass = yes
retry_files_enabled = False
</code></pre></div>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">Debian Stretch and Debian Sid managing Debian Stretch</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">I have roles: <code class="notranslate">example_1</code>, <code class="notranslate">example_2</code>, <code class="notranslate">dependency_1</code> and <code class="notranslate">dependency_2</code>. <code class="notranslate">dependency_1</code> is set to be duplicated (<code class="notranslate">allow_duplicates: yes</code>) and <code class="notranslate">dependency_2</code> also depends on <code class="notranslate">dependency_1</code>.</p>
<p dir="auto">When a playbook host has the roles <code class="notranslate">example_1</code> and <code class="notranslate">example_2</code> the following is executed:</p>
<ol dir="auto">
<li><code class="notranslate">dependency_1</code> (for <code class="notranslate">dependency_2</code>)</li>
<li><code class="notranslate">dependency_2</code> (for <code class="notranslate">example_1</code>)</li>
<li><code class="notranslate">dependency_1</code> (for <code class="notranslate">example_1</code>)</li>
<li><code class="notranslate">example_1</code></li>
<li><code class="notranslate">dependency_1</code> (for <code class="notranslate">dependency_2</code>)</li>
<li><code class="notranslate">dependency_1</code> (for <code class="notranslate">example_2</code>)</li>
<li><code class="notranslate">example_2</code></li>
</ol>
<p dir="auto">Step 5 is redundant and shouldn't run, as <code class="notranslate">dependency_2</code> is only run once and its dependencies should only be run once.</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="./site.yml
---
- hosts: example.com
remote_user: user
roles:
- example_1
- example_2"><pre class="notranslate"><span class="pl-s">./site.yml</span>
---
- <span class="pl-ent">hosts</span>: <span class="pl-s">example.com</span>
<span class="pl-ent">remote_user</span>: <span class="pl-s">user</span>
<span class="pl-ent">roles</span>:
- <span class="pl-s">example_1</span>
- <span class="pl-s">example_2</span></pre></div>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="./roles/example_{1,2}/meta/main.yml
---
dependencies:
- role: dependency_2
- role: dependency_1"><pre class="notranslate"><span class="pl-s">./roles/example_{1,2}/meta/main.yml</span>
---
<span class="pl-ent">dependencies</span>:
- <span class="pl-ent">role</span>: <span class="pl-s">dependency_2</span>
- <span class="pl-ent">role</span>: <span class="pl-s">dependency_1</span></pre></div>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="./roles/dependency_1/meta/main.yml
---
allow_duplicates: yes"><pre class="notranslate"><span class="pl-s">./roles/dependency_1/meta/main.yml</span>
---
<span class="pl-ent">allow_duplicates</span>: <span class="pl-s">yes</span></pre></div>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="./roles/dependency_2/meta/main.yml
---
dependencies:
- role: dependency_1"><pre class="notranslate"><span class="pl-s">./roles/dependency_2/meta/main.yml</span>
---
<span class="pl-ent">dependencies</span>:
- <span class="pl-ent">role</span>: <span class="pl-s">dependency_1</span></pre></div>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="./roles/{example_1,example_2,dependency_1,dependency_2}/tasks/main.yml
---
- name: display role
debug:
msg: this is role {{ role_path }}"><pre class="notranslate"><span class="pl-s">./roles/{example_1,example_2,dependency_1,dependency_2}/tasks/main.yml</span>
---
- <span class="pl-ent">name</span>: <span class="pl-s">display role</span>
<span class="pl-ent">debug</span>:
<span class="pl-ent">msg</span>: <span class="pl-s">this is role {{ role_path }}</span></pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ ansible-playbook site.yml
PLAY [example.com] ***************************************************
TASK [setup] *******************************************************************
ok: [example.com]
TASK [dependency_1 : display role] *********************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/dependency_1"
}
TASK [dependency_2 : display role] *********************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/dependency_2"
}
TASK [dependency_1 : display role] *********************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/dependency_1"
}
TASK [example_1 : display role] ************************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/example_1"
}
TASK [dependency_1 : display role] *********************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/dependency_1"
}
TASK [example_2 : display role] ************************************************
ok: [example.com] => {
"msg": "this is role /home/kyle/user/ansible/roles/example_2"
}
PLAY RECAP *********************************************************************
example.com : ok=8 changed=0 unreachable=0 failed=0"><pre class="notranslate"><code class="notranslate">$ ansible-playbook site.yml
PLAY [example.com] ***************************************************
TASK [setup] *******************************************************************
ok: [example.com]
TASK [dependency_1 : display role] *********************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/dependency_1"
}
TASK [dependency_2 : display role] *********************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/dependency_2"
}
TASK [dependency_1 : display role] *********************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/dependency_1"
}
TASK [example_1 : display role] ************************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/example_1"
}
TASK [dependency_1 : display role] *********************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/dependency_1"
}
TASK [example_2 : display role] ************************************************
ok: [example.com] => {
"msg": "this is role /home/kyle/user/ansible/roles/example_2"
}
PLAY RECAP *********************************************************************
example.com : ok=8 changed=0 unreachable=0 failed=0
</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 site.yml
PLAY [example.com] ***************************************************
TASK [setup] *******************************************************************
ok: [example.com]
TASK [dependency_1 : display role] *********************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/dependency_1"
}
TASK [dependency_2 : display role] *********************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/dependency_2"
}
TASK [dependency_1 : display role] *********************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/dependency_1"
}
TASK [example_1 : display role] ************************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/example_1"
}
TASK [dependency_1 : display role] *********************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/dependency_1"
}
TASK [dependency_1 : display role] *********************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/dependency_1"
}
TASK [example_2 : display role] ************************************************
ok: [example.com] => {
"msg": "this is role /home/kyle/user/ansible/roles/example_2"
}
PLAY RECAP *********************************************************************
example.com : ok=8 changed=0 unreachable=0 failed=0"><pre class="notranslate"><code class="notranslate">$ ansible-playbook site.yml
PLAY [example.com] ***************************************************
TASK [setup] *******************************************************************
ok: [example.com]
TASK [dependency_1 : display role] *********************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/dependency_1"
}
TASK [dependency_2 : display role] *********************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/dependency_2"
}
TASK [dependency_1 : display role] *********************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/dependency_1"
}
TASK [example_1 : display role] ************************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/example_1"
}
TASK [dependency_1 : display role] *********************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/dependency_1"
}
TASK [dependency_1 : display role] *********************************************
ok: [example.com] => {
"msg": "this is role /home/user/ansible/roles/dependency_1"
}
TASK [example_2 : display role] ************************************************
ok: [example.com] => {
"msg": "this is role /home/kyle/user/ansible/roles/example_2"
}
PLAY RECAP *********************************************************************
example.com : ok=8 changed=0 unreachable=0 failed=0
</code></pre></div> | 0 |
<h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 10.0.18362.295
Windows Terminal version: 0.4.2382.0
Other Software: WSL1 Ubuntu 18.04"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: 10.0.18362.295
Windows Terminal version: 0.4.2382.0
Other Software: WSL1 Ubuntu 18.04
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">Open Windows Terminal. Open new Ubuntu tab.</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">Tab title should be the profile name</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">Tab title still shows current directory.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/26459044/64196166-88a40900-ce83-11e9-9d99-108ab479d492.PNG"><img src="https://user-images.githubusercontent.com/26459044/64196166-88a40900-ce83-11e9-9d99-108ab479d492.PNG" alt="tabTitle" style="max-width: 100%;"></a></p>
<h1 dir="auto">Note</h1>
<p dir="auto">I did also try to change the title via the settings, but it had no effect.<br>
<a href="https://github.com/microsoft/terminal/files/3570781/profiles.txt">profiles.txt</a></p> | <h1 dir="auto">Environment</h1>
<p dir="auto">Microsoft Windows [version 10.0.18362.175]</p>
<p dir="auto">Terminal Version:0.2.17150</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: [run "ver" at a command prompt]
Windows Terminal version (if applicable):
Any other software?"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: [run "ver" at a command prompt]
Windows Terminal version (if applicable):
Any other software?
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<h1 dir="auto">Expected behavior</h1>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">After the cmd window is dragged to change the size, some of the text positions inside can be restored without being restored, such as the SET command.</p> | 0 |
<p dir="auto">Describe what you were doing when the bug occurred:</p>
<ol dir="auto">
<li>Open the Profiler after playing a while with some React Application</li>
<li>Try to reach some snap with the player</li>
<li>This happens</li>
</ol>
<hr>
<h2 dir="auto">Please do not remove the text below this line</h2>
<p dir="auto">DevTools version: 4.6.0-6cceaeb67</p>
<p dir="auto">Call stack: at j (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:162825)<br>
at N (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:161772)<br>
at e.getCommitTree (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:164582)<br>
at ec (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:339280)<br>
at ci (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:59620)<br>
at nl (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:69923)<br>
at Ll (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:110996)<br>
at qc (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:102381)<br>
at Hc (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:102306)<br>
at Vc (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:102171)</p>
<p dir="auto">Component stack: in ec<br>
in div<br>
in div<br>
in div<br>
in So<br>
in Unknown<br>
in n<br>
in Unknown<br>
in div<br>
in div<br>
in rl<br>
in Ze<br>
in fn<br>
in Ga<br>
in _s</p> | <h3 dir="auto">Describe what you were doing when the bug occurred:</h3>
<ol dir="auto">
<li>I did profiling on a list, that gets updated on each pagination api call.</li>
<li>Once the profiling was done, I moved around in the Profiler to view the Flamegraph</li>
<li>Moving to second capture, the Profiler crashed.</li>
</ol>
<p dir="auto"><strong>DevTools version</strong>: 4.6.0-6cceaeb67</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Component stack: in ec
in div
in div
in div
in So
in Unknown
in n
in Unknown
in div
in div
in rl
in Ze
in fn
in Ga
in _s"><pre class="notranslate"><code class="notranslate">Component stack: in ec
in div
in div
in div
in So
in Unknown
in n
in Unknown
in div
in div
in rl
in Ze
in fn
in Ga
in _s
</code></pre></div> | 1 |
<p dir="auto">The Geometric and Harmonic means have two sets of test cases in <code class="notranslate">test_stats</code>. Ideally, the tests for related functions should occur in one place, not spread across multiple suites. I think these tests should be reviewed and combined into a single test suit where possible.</p>
<p dir="auto">For reference, the tests covering the geometric mean are <code class="notranslate">TestGMean</code> and <code class="notranslate">GeoMeanTestCase</code> / <code class="notranslate">TestGeoMean(GeoMeanTestCase)</code>. And for the harmonic mean <code class="notranslate">TestHMean</code> and <code class="notranslate">HarMeanTestCase</code> / <code class="notranslate">TestHarMean(HarMeanTestCase)</code></p> | <p dir="auto">Currently, <code class="notranslate">scipy.stats</code> has a function <code class="notranslate">variation</code>, which computes the coefficient of variation (<code class="notranslate">std/mean</code>).</p>
<p dir="auto">However, there is a closely-related function called the Fano factor (<a href="http://en.wikipedia.org/wiki/Fano_factor" rel="nofollow">http://en.wikipedia.org/wiki/Fano_factor</a>). While the coefficient of variation is <code class="notranslate">std/mean</code>, the Fano factor is <code class="notranslate">var/mean</code>. Different random distributions have different Fano factors. It is particular important as a measure of how well similar a random process is to a Poisson process (which is important for everything from particle detectors to neurons), since a purely Poisson process has a Fano factor of 1.</p>
<p dir="auto">So I think it would be good to have a <code class="notranslate">fano</code> function in <code class="notranslate">scipy.stats</code>, to give the counterpart to the <code class="notranslate">variation</code> function but more importantly because Poisson processes are critically important to many fields.</p> | 0 |
<p dir="auto">I have 3 screens connected to my PC, 1 on the internal graphic card, 2 on external USB-C dock.<br>
When I move the Terminal windows from screens on my external to the screen on my internal GC, the program crash (Version: 0.6.2951.0) :<br>
Exception non gérée à 0x00007FF8FEF42DC0 (Windows.UI.Xaml.dll) dans WindowsTerminal.exe : 0xC000027B: Une exception interne de l’application s’est produite (paramètres : 0x000001A4EF7FDD90, #0x0000000000000001).</p> | <h1 dir="auto">Description of the new feature/enhancement</h1>
<p dir="auto">I like having my console sessions start with a dump of pertinent version information. I was hoping to find an easy way to get the version info of the Windows Terminal session. I'd add it to my <code class="notranslate">profile.ps1</code>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""- posh-git version/path: $($m = Get-Module posh-git; '{0} {1} {2}' -f $m.Version,$m.PrivateData.PSData.Prerelease,$m.ModuleBase.Replace($HOME,'~'))`n- PowerShell version: $($PSVersionTable.PSVersion)`n- $(
git --version)`n- OS: $([System.Environment]::OSVersion)`n- Terminal: ($([System.Environment]::WindowsTerminalVersion)""><pre class="notranslate"><code class="notranslate">"- posh-git version/path: $($m = Get-Module posh-git; '{0} {1} {2}' -f $m.Version,$m.PrivateData.PSData.Prerelease,$m.ModuleBase.Replace($HOME,'~'))`n- PowerShell version: $($PSVersionTable.PSVersion)`n- $(
git --version)`n- OS: $([System.Environment]::OSVersion)`n- Terminal: ($([System.Environment]::WindowsTerminalVersion)"
</code></pre></div>
<p dir="auto">Seems the best place to do this is in an environment variable as I've shown above (<code class="notranslate">- Terminal: ($([System.Environment]::WindowsTerminalVersion)</code>).</p> | 0 |
<h4 dir="auto">Description</h4>
<p dir="auto">Please refer to the link below<br>
<a href="https://stackoverflow.com/questions/49848932/sklearn-load-svmlight-file-overflowerror-python-int-too-large-to-convert-to-c-lo" rel="nofollow">https://stackoverflow.com/questions/49848932/sklearn-load-svmlight-file-overflowerror-python-int-too-large-to-convert-to-c-lo</a></p>
<p dir="auto">My data format is libsvm below. " label <feature_index>:<feature_value>". The data type of feature_index is uint64. I got the error here</p>
<p dir="auto">File "sklearn/datasets/_svmlight_format.pyx", line 97, in sklearn.datasets._svmlight_format._load_svmlight_file<br>
OverflowError: Python int too large to convert to C long</p>
<h4 dir="auto">Steps/Code to Reproduce</h4>
<p dir="auto">X_all, y_all = load_svmlight_file(libsvm_filename, dtype=np.float64)<br>
or<br>
X_all, y_all = load_svmlight_file(libsvm_filename, dtype=np.uint64)</p>
<h4 dir="auto">Expected Results</h4>
<h4 dir="auto">Actual Results</h4>
<p dir="auto">Fail to load</p>
<h4 dir="auto">Versions</h4>
<blockquote>
<blockquote>
<blockquote>
<p dir="auto">import platform; print(platform.platform())<br>
Linux-3.10.106-1-tlinux2-0044-x86_64-with-centos-7.2-Final<br>
import sys; print("Python", sys.version)<br>
Python 3.5.4 (default, Apr 11 2018, 20:14:45)<br>
[GCC 4.8.5 20150623 (Red Hat 4.8.5-4)]<br>
import numpy; print("NumPy", numpy.<strong>version</strong>)<br>
NumPy 1.14.2<br>
import scipy; print("SciPy", scipy.<strong>version</strong>)<br>
SciPy 1.0.1<br>
import sklearn; print("Scikit-Learn", sklearn.<strong>version</strong>)<br>
Scikit-Learn 0.19.1</p>
</blockquote>
</blockquote>
</blockquote> | <h4 dir="auto">Description</h4>
<p dir="auto">I am using scikit-learn (0.19.1) in the following setup: Ubuntu 17.10 (x86_64) with numpy-1.14.1 and scipy-1.0.0</p>
<p dir="auto">When I tried loading a big libsvm file (1696462087 rows) like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from sklearn.datasets import load_svmlight_file
X_train, y_train = load_svmlight_file('/home/user_name/sets/big_dataset.txt')"><pre class="notranslate"><code class="notranslate">from sklearn.datasets import load_svmlight_file
X_train, y_train = load_svmlight_file('/home/user_name/sets/big_dataset.txt')
</code></pre></div>
<p dir="auto">I got the following error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="...
File "sklearn/datasets/_svmlight_format.pyx", line 114, in sklearn.datasets._svmlight_format._load_svmlight_file
OverflowError: signed integer is greater than maximum"><pre class="notranslate"><code class="notranslate">...
File "sklearn/datasets/_svmlight_format.pyx", line 114, in sklearn.datasets._svmlight_format._load_svmlight_file
OverflowError: signed integer is greater than maximum
</code></pre></div>
<p dir="auto">I googled around and found a similar <a href="https://github.com/scikit-learn/scikit-learn/issues/5269" data-hovercard-type="issue" data-hovercard-url="/scikit-learn/scikit-learn/issues/5269/hovercard">issue </a>which, however, was related to the <code class="notranslate">query_id</code> parameter. By looking at the <code class="notranslate">_svmlight_format.pyx</code> <a href="https://github.com/scikit-learn/scikit-learn/blob/master/sklearn/datasets/_svmlight_format.pyx">function </a> I can see that both <code class="notranslate">indices </code>and <code class="notranslate">indptr </code> arrays are of type interger and the overflow error occurs when the following assignment is attempted:</p>
<p dir="auto"><code class="notranslate">indptr[len(indptr) - 1] = len(data)</code></p>
<p dir="auto">Any remedy for such a problem? Would the <a href="https://github.com/olologin/scikit-learn/commit/7f0682ac22987c2875334c19a4916aa3a0b1f446">fix</a> be the same as in the previous issue?</p>
<p dir="auto">P.S. I would like to avoid splitting a big libsvm file into many small chunks.</p> | 1 |
<h5 dir="auto">Issue Type:</h5>
<p dir="auto">I'm getting "ERROR: Syntax Error while loading YAML script," when a tasks/main.yml file in my role doesn't start with '---', this is optional in YAML and works in previous versions.</p>
<h5 dir="auto">Ansible Version:</h5>
<p dir="auto">ansible 1.6 (devel <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/ansible/ansible/commit/5f3ea7512f493c4cd74e683c8a31481a5de51ced/hovercard" href="https://github.com/ansible/ansible/commit/5f3ea7512f493c4cd74e683c8a31481a5de51ced"><tt>5f3ea75</tt></a>)</p>
<h5 dir="auto">Environment:</h5>
<p dir="auto">Ubuntu 12, 13 and Gentoo</p>
<h5 dir="auto">Summary:</h5>
<p dir="auto">Over eager syntax checking</p>
<h5 dir="auto">Steps To Reproduce:</h5>
<p dir="auto">create a role with a tasks/main.yml w/o starting with ---</p>
<h5 dir="auto">Expected Results:</h5>
<p dir="auto">file works w/o error</p>
<h5 dir="auto">Actual Results:</h5>
<p dir="auto">"ERROR: Syntax Error while loading YAML script,"</p> | <h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
<li>Documentation Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">apt 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.2.3.0
config file = /home/heartsucker/code/freedomofpress/securedrop/ansible.cfg
configured module search path = Default w/o overrides
"><pre class="notranslate"><code class="notranslate">ansible 2.2.3.0
config file = /home/heartsucker/code/freedomofpress/securedrop/ansible.cfg
configured module search path = Default w/o overrides
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<p dir="auto">n/a</p>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">n/a</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">In the <a href="https://docs.ansible.com/ansible/latest/apt_module.html" rel="nofollow">online ansible documentation</a>, the section for <code class="notranslate">force</code> says only this</p>
<blockquote>
<p dir="auto">If yes, force installs/removes.</p>
</blockquote>
<p dir="auto">By looking at the code, it passes <code class="notranslate">--force-yes</code> to <code class="notranslate">apt-get</code></p>
<p dir="auto">From <code class="notranslate">man apt-get</code>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="--force-yes
Force yes; this is a dangerous option that will cause apt to continue without prompting if it is doing something potentially harmful. It should
not be used except in very special situations. Using force-yes can potentially destroy your system! Configuration Item: APT::Get::force-yes.
This is deprecated and replaced by --allow-downgrades, --allow-remove-essential, --allow-change-held-packages in 1.1."><pre class="notranslate"><code class="notranslate">--force-yes
Force yes; this is a dangerous option that will cause apt to continue without prompting if it is doing something potentially harmful. It should
not be used except in very special situations. Using force-yes can potentially destroy your system! Configuration Item: APT::Get::force-yes.
This is deprecated and replaced by --allow-downgrades, --allow-remove-essential, --allow-change-held-packages in 1.1.
</code></pre></div>
<p dir="auto">This is two things: deprecated and extremely dangerous.</p>
<p dir="auto">Also, the key phrase here:</p>
<blockquote>
<p dir="auto">It should not be used except in very special situations. Using force-yes can potentially destroy your system!</p>
</blockquote>
<p dir="auto">At the very least, the ansible docs should also use the phrase "Using force-yes can potentially destroy your system."</p>
<p dir="auto">Additionally, it is the direct cause of this security breach: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="268119059" data-permission-text="Title is private" data-url="https://github.com/freedomofpress/securedrop/issues/2472" data-hovercard-type="issue" data-hovercard-url="/freedomofpress/securedrop/issues/2472/hovercard" href="https://github.com/freedomofpress/securedrop/issues/2472">freedomofpress/securedrop#2472</a></p>
<p dir="auto">The code in question has been reviewed multiple times by highly qualified pentesters and was not revealed in their audits. It has been present in the code since 2015. This means it is very, very likely many people are also making this dangerous mistake.</p>
<p dir="auto">In fact, <a href="https://github.com/search?l=YAML&q=%22force%3A+yes%22+apt&type=Code&utf8=%E2%9C%93">github search agrees</a>.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/3998464/31958779-1a59b5f0-b8f3-11e7-8374-037ba0ff7434.png"><img src="https://user-images.githubusercontent.com/3998464/31958779-1a59b5f0-b8f3-11e7-8374-037ba0ff7434.png" alt="screenshot_2017-10-24_19-39-00" style="max-width: 100%;"></a></p>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">If a flag/arg/module can do something harmful to the system (like install unauthenticated packages), then it should be made clear in the documentation.</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<p dir="auto">The documentation did not state the dangers of using <code class="notranslate">force: yes</code></p> | 0 |
<p dir="auto">Copying comment from <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="19774558" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/4887" data-hovercard-type="pull_request" data-hovercard-url="/pandas-dev/pandas/pull/4887/hovercard" href="https://github.com/pandas-dev/pandas/pull/4887">#4887</a> to a new issue for discussion purposes:</p>
<p dir="auto">While testing pandas-master, hit a method not in the new groupby dispatch whitelist: <code class="notranslate">value_counts</code> (on a <code class="notranslate">SeriesGroupBy</code> object). Another possible addition: <code class="notranslate">shift</code>, as used in this <a href="http://stackoverflow.com/a/17406083/243434" rel="nofollow">SO answer</a>.</p>
<p dir="auto">Tried to generate a list of blacklisted methods for DataFrame and Series, see below -- needs further filtering, but may reveal useful blocked methods. any thoughts on the remaining methods?</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [18]: sorted([x for x in set(dir(pd.DataFrame)) - pd.core.groupby._apply_whitelist - set(dir(pd.core.groupby.GroupBy)) if not x.startswith(('_', 'T', 'to', 'from', 'as'))])
Out[18]: ['abs', 'add', 'add_prefix', 'add_suffix', 'align', 'all', 'any', 'append', 'applymap', 'at', 'at_time', 'axes', 'between_time', 'bfill', 'blocks', 'bool', 'clip', 'clip_lower', 'clip_upper', 'columns', 'combine', 'combineAdd', 'combineMult', 'combine_first', 'compound', 'consolidate', 'convert_objects', 'copy', 'corr', 'corrwith', 'cov', 'delevel', 'diff', 'div', 'divide', 'dot', 'drop', 'drop_duplicates', 'dropna', 'dtypes', 'duplicated', 'empty', 'eq', 'eval', 'ffill', 'filter', 'first_valid_index', 'floordiv', 'ftypes', 'ge', 'get', 'get_dtype_counts', 'get_ftype_counts', 'get_value', 'get_values', 'groupby', 'gt', 'iat', 'icol', 'idxmax', 'idxmin', 'iget_value', 'iloc', 'index', 'info', 'insert', 'interpolate', 'irow', 'isin', 'isnull', 'iteritems', 'iterkv', 'iterrows', 'itertuples', 'ix', 'join', 'keys', 'kurt', 'kurtosis', 'last_valid_index', 'le', 'load', 'loc', 'lookup', 'lt', 'mad', 'mask', 'merge', 'mod', 'mode', 'mul', 'multiply', 'ndim', 'ne', 'notnull', 'pct_change', 'pivot', 'pivot_table', 'pop', 'pow', 'product', 'query', 'radd', 'rdiv', 'reindex', 'reindex_axis', 'reindex_like', 'rename', 'rename_axis', 'reorder_levels', 'replace', 'reset_index', 'rfloordiv', 'rmod', 'rmul', 'rpow', 'rsub', 'rtruediv', 'save', 'select', 'set_index', 'set_value', 'shape', 'shift', 'skew', 'sort', 'sort_index', 'sortlevel', 'squeeze', 'stack', 'sub', 'subtract', 'swapaxes', 'swaplevel', 'take', 'transpose', 'truediv', 'truncate', 'tshift', 'tz_convert', 'tz_localize', 'unstack', 'update', 'values', 'where', 'xs']
In [19]: sorted([x for x in set(dir(pd.Series)) - pd.core.groupby._apply_whitelist - set(dir(pd.core.groupby.GroupBy)) if not x.startswith(('_', 'T', 'to', 'from', 'as'))])
Out[19]: ['abs', 'add', 'add_prefix', 'add_suffix', 'align', 'all', 'any', 'append', 'argmax', 'argmin', 'argsort', 'at', 'at_time', 'autocorr', 'axes', 'base', 'between', 'between_time', 'bfill', 'blocks', 'bool', 'clip', 'clip_lower', 'clip_upper', 'combine', 'combine_first', 'compound', 'consolidate', 'convert_objects', 'copy', 'corr', 'cov', 'data', 'diff', 'div', 'divide', 'dot', 'drop', 'drop_duplicates', 'dropna', 'duplicated', 'empty', 'eq', 'ffill', 'filter', 'first_valid_index', 'flags', 'floordiv', 'ftype', 'ge', 'get', 'get_dtype_counts', 'get_ftype_counts', 'get_value', 'get_values', 'groupby', 'gt', 'iat', 'idxmax', 'idxmin', 'iget', 'iget_value', 'iloc', 'imag', 'index', 'interpolate', 'irow', 'is_time_series', 'isin', 'isnull', 'item', 'iteritems', 'iterkv', 'ix', 'keys', 'kurt', 'kurtosis', 'last_valid_index', 'le', 'load', 'loc', 'lt', 'mad', 'map', 'mask', 'mod', 'mode', 'mul', 'multiply', 'ndim', 'ne', 'nonzero', 'notnull', 'nunique', 'order', 'pct_change', 'pop', 'pow', 'product', 'ptp', 'put', 'radd', 'ravel', 'rdiv', 'real', 'reindex', 'reindex_axis', 'reindex_like', 'rename', 'rename_axis', 'reorder_levels', 'repeat', 'replace', 'reset_index', 'reshape', 'rfloordiv', 'rmod', 'rmul', 'round', 'rpow', 'rsub', 'rtruediv', 'save', 'select', 'set_value', 'shape', 'shift', 'skew', 'sort', 'sort_index', 'sortlevel', 'squeeze', 'str', 'strides', 'sub', 'subtract', 'swapaxes', 'swaplevel', 'take', 'transpose', 'truediv', 'truncate', 'tshift', 'tz_convert', 'tz_localize', 'unique', 'unstack', 'update', 'valid', 'value_counts', 'values', 'view', 'weekday', 'where', 'xs']"><pre class="notranslate"><code class="notranslate">In [18]: sorted([x for x in set(dir(pd.DataFrame)) - pd.core.groupby._apply_whitelist - set(dir(pd.core.groupby.GroupBy)) if not x.startswith(('_', 'T', 'to', 'from', 'as'))])
Out[18]: ['abs', 'add', 'add_prefix', 'add_suffix', 'align', 'all', 'any', 'append', 'applymap', 'at', 'at_time', 'axes', 'between_time', 'bfill', 'blocks', 'bool', 'clip', 'clip_lower', 'clip_upper', 'columns', 'combine', 'combineAdd', 'combineMult', 'combine_first', 'compound', 'consolidate', 'convert_objects', 'copy', 'corr', 'corrwith', 'cov', 'delevel', 'diff', 'div', 'divide', 'dot', 'drop', 'drop_duplicates', 'dropna', 'dtypes', 'duplicated', 'empty', 'eq', 'eval', 'ffill', 'filter', 'first_valid_index', 'floordiv', 'ftypes', 'ge', 'get', 'get_dtype_counts', 'get_ftype_counts', 'get_value', 'get_values', 'groupby', 'gt', 'iat', 'icol', 'idxmax', 'idxmin', 'iget_value', 'iloc', 'index', 'info', 'insert', 'interpolate', 'irow', 'isin', 'isnull', 'iteritems', 'iterkv', 'iterrows', 'itertuples', 'ix', 'join', 'keys', 'kurt', 'kurtosis', 'last_valid_index', 'le', 'load', 'loc', 'lookup', 'lt', 'mad', 'mask', 'merge', 'mod', 'mode', 'mul', 'multiply', 'ndim', 'ne', 'notnull', 'pct_change', 'pivot', 'pivot_table', 'pop', 'pow', 'product', 'query', 'radd', 'rdiv', 'reindex', 'reindex_axis', 'reindex_like', 'rename', 'rename_axis', 'reorder_levels', 'replace', 'reset_index', 'rfloordiv', 'rmod', 'rmul', 'rpow', 'rsub', 'rtruediv', 'save', 'select', 'set_index', 'set_value', 'shape', 'shift', 'skew', 'sort', 'sort_index', 'sortlevel', 'squeeze', 'stack', 'sub', 'subtract', 'swapaxes', 'swaplevel', 'take', 'transpose', 'truediv', 'truncate', 'tshift', 'tz_convert', 'tz_localize', 'unstack', 'update', 'values', 'where', 'xs']
In [19]: sorted([x for x in set(dir(pd.Series)) - pd.core.groupby._apply_whitelist - set(dir(pd.core.groupby.GroupBy)) if not x.startswith(('_', 'T', 'to', 'from', 'as'))])
Out[19]: ['abs', 'add', 'add_prefix', 'add_suffix', 'align', 'all', 'any', 'append', 'argmax', 'argmin', 'argsort', 'at', 'at_time', 'autocorr', 'axes', 'base', 'between', 'between_time', 'bfill', 'blocks', 'bool', 'clip', 'clip_lower', 'clip_upper', 'combine', 'combine_first', 'compound', 'consolidate', 'convert_objects', 'copy', 'corr', 'cov', 'data', 'diff', 'div', 'divide', 'dot', 'drop', 'drop_duplicates', 'dropna', 'duplicated', 'empty', 'eq', 'ffill', 'filter', 'first_valid_index', 'flags', 'floordiv', 'ftype', 'ge', 'get', 'get_dtype_counts', 'get_ftype_counts', 'get_value', 'get_values', 'groupby', 'gt', 'iat', 'idxmax', 'idxmin', 'iget', 'iget_value', 'iloc', 'imag', 'index', 'interpolate', 'irow', 'is_time_series', 'isin', 'isnull', 'item', 'iteritems', 'iterkv', 'ix', 'keys', 'kurt', 'kurtosis', 'last_valid_index', 'le', 'load', 'loc', 'lt', 'mad', 'map', 'mask', 'mod', 'mode', 'mul', 'multiply', 'ndim', 'ne', 'nonzero', 'notnull', 'nunique', 'order', 'pct_change', 'pop', 'pow', 'product', 'ptp', 'put', 'radd', 'ravel', 'rdiv', 'real', 'reindex', 'reindex_axis', 'reindex_like', 'rename', 'rename_axis', 'reorder_levels', 'repeat', 'replace', 'reset_index', 'reshape', 'rfloordiv', 'rmod', 'rmul', 'round', 'rpow', 'rsub', 'rtruediv', 'save', 'select', 'set_value', 'shape', 'shift', 'skew', 'sort', 'sort_index', 'sortlevel', 'squeeze', 'str', 'strides', 'sub', 'subtract', 'swapaxes', 'swaplevel', 'take', 'transpose', 'truediv', 'truncate', 'tshift', 'tz_convert', 'tz_localize', 'unique', 'unstack', 'update', 'valid', 'value_counts', 'values', 'view', 'weekday', 'where', 'xs']
</code></pre></div> | <p dir="auto">I am not sure anymore if <code class="notranslate">DataFrame.pivot</code> actually supports multiple columns to set as <code class="notranslate">index</code>/<code class="notranslate">columns</code> (it should), but in any case this error is very confusing:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [1]: df = pd.DataFrame({'lev1': [1, 1, 1, 1,2, 2, 2,2], 'lev2': [1, 1, 2, 2, 1, 1, 2, 2], 'lev3': [1, 2, 1, 2, 1, 2, 1, 2], 'values': range(8)})
In [2]: df
Out[2]:
lev1 lev2 lev3 values
0 1 1 1 0
1 1 1 2 1
2 1 2 1 2
3 1 2 2 3
4 2 1 1 4
5 2 1 2 5
6 2 2 1 6
7 2 2 2 7
In [3]: df.pivot(index=['lev1', 'lev2'], columns='lev3', values='values')
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-3-2fef29f9fd39> in <module>()
----> 1 df.pivot(index=['lev1', 'lev2'], columns='lev3', values='values')
~/scipy/pandas/pandas/core/frame.py in pivot(self, index, columns, values)
5191 """
5192 from pandas.core.reshape.reshape import pivot
-> 5193 return pivot(self, index=index, columns=columns, values=values)
5194
5195 _shared_docs['pivot_table'] = """
~/scipy/pandas/pandas/core/reshape/reshape.py in pivot(self, index, columns, values)
406 else:
407 indexed = self._constructor_sliced(self[values].values,
--> 408 index=index)
409 return indexed.unstack(columns)
410
~/scipy/pandas/pandas/core/series.py in __init__(self, data, index, dtype, name, copy, fastpath)
260 'Length of passed values is {val}, '
261 'index implies {ind}'
--> 262 .format(val=len(data), ind=len(index)))
263 except TypeError:
264 pass
ValueError: Length of passed values is 8, index implies 2
"><pre class="notranslate"><code class="notranslate">In [1]: df = pd.DataFrame({'lev1': [1, 1, 1, 1,2, 2, 2,2], 'lev2': [1, 1, 2, 2, 1, 1, 2, 2], 'lev3': [1, 2, 1, 2, 1, 2, 1, 2], 'values': range(8)})
In [2]: df
Out[2]:
lev1 lev2 lev3 values
0 1 1 1 0
1 1 1 2 1
2 1 2 1 2
3 1 2 2 3
4 2 1 1 4
5 2 1 2 5
6 2 2 1 6
7 2 2 2 7
In [3]: df.pivot(index=['lev1', 'lev2'], columns='lev3', values='values')
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-3-2fef29f9fd39> in <module>()
----> 1 df.pivot(index=['lev1', 'lev2'], columns='lev3', values='values')
~/scipy/pandas/pandas/core/frame.py in pivot(self, index, columns, values)
5191 """
5192 from pandas.core.reshape.reshape import pivot
-> 5193 return pivot(self, index=index, columns=columns, values=values)
5194
5195 _shared_docs['pivot_table'] = """
~/scipy/pandas/pandas/core/reshape/reshape.py in pivot(self, index, columns, values)
406 else:
407 indexed = self._constructor_sliced(self[values].values,
--> 408 index=index)
409 return indexed.unstack(columns)
410
~/scipy/pandas/pandas/core/series.py in __init__(self, data, index, dtype, name, copy, fastpath)
260 'Length of passed values is {val}, '
261 'index implies {ind}'
--> 262 .format(val=len(data), ind=len(index)))
263 except TypeError:
264 pass
ValueError: Length of passed values is 8, index implies 2
</code></pre></div> | 0 |
<p dir="auto">Safari throws the following error on page load. Chrome + Firefox work fine.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[Error] TypeError: undefined is not a function (evaluating '$__2.next()')
from (traceur-runtime.js, line 2738)
values (angular2.js, line 4710)
_createListOfBindings (angular2.js, line 23646)
resolve (angular2.js, line 24265)
resolveAndCreate (angular2.js, line 24269)
(anonymous function) (dev.minds.io, line 45)
global code (dev.minds.io, line 61)
appendChild ([native code], line 0)
doEval (system.src.js, line 2347)
__eval (system.src.js, line 2317)
exec (system.src.js, line 339)
execute (system.src.js, line 1222)
linkDynamicModule (system.src.js, line 669)
getModule (system.src.js, line 637)
(anonymous function) (system.src.js, line 673)
(anonymous function) (dev.minds.io, line 17)
global code (dev.minds.io, line 52)
appendChild ([native code], line 0)
doEval (system.src.js, line 2347)
__eval (system.src.js, line 2317)
exec (system.src.js, line 339)
execute (system.src.js, line 1222)
linkDynamicModule (system.src.js, line 669)
getModule (system.src.js, line 637)
(anonymous function) (system.src.js, line 673)
(anonymous function) (dev.minds.io, line 15)
global code (dev.minds.io, line 56)
appendChild ([native code], line 0)
doEval (system.src.js, line 2347)
__eval (system.src.js, line 2317)
exec (system.src.js, line 339)
execute (system.src.js, line 1222)
linkDynamicModule (system.src.js, line 669)
link (system.src.js, line 528)
execute (system.src.js, line 852)
o (es6-module-loader-sans-promises.js, line 7)
p (es6-module-loader-sans-promises.js, line 7)
j (es6-module-loader-sans-promises.js, line 7)
k (es6-module-loader-sans-promises.js, line 7)
(anonymous function) (es6-module-loader-sans-promises.js, line 7)
run (zone.js, line 113)
zoneBoundFn (zone.js, line 86)
PromiseResolutionHandlerFunction ([native code], line 0)
[Error] Error evaluating http://dev.io/src/services/session.js
TypeError: undefined is not a function (evaluating '$__2.next()')
__eval (system.src.js, line 2325)
exec (system.src.js, line 339)
execute (system.src.js, line 1222)
linkDynamicModule (system.src.js, line 669)
getModule (system.src.js, line 637)
(anonymous function) (system.src.js, line 673)
(anonymous function) (dev.minds.io, line 17)
global code (dev.minds.io, line 52)
appendChild ([native code], line 0)
doEval (system.src.js, line 2347)
__eval (system.src.js, line 2317)
exec (system.src.js, line 339)
execute (system.src.js, line 1222)
linkDynamicModule (system.src.js, line 669)
getModule (system.src.js, line 637)
(anonymous function) (system.src.js, line 673)
(anonymous function) (dev.minds.io, line 15)
global code (dev.minds.io, line 56)
appendChild ([native code], line 0)
doEval (system.src.js, line 2347)
__eval (system.src.js, line 2317)
exec (system.src.js, line 339)
execute (system.src.js, line 1222)
linkDynamicModule (system.src.js, line 669)
link (system.src.js, line 528)
execute (system.src.js, line 852)
o (es6-module-loader-sans-promises.js, line 7)
p (es6-module-loader-sans-promises.js, line 7)
j (es6-module-loader-sans-promises.js, line 7)
k (es6-module-loader-sans-promises.js, line 7)
(anonymous function) (es6-module-loader-sans-promises.js, line 7)
run (zone.js, line 113)
zoneBoundFn (zone.js, line 86)
PromiseResolutionHandlerFunction ([native code], line 0)
[Error] Error evaluating http://dev.minds.io/src/components/topbar.js
Error evaluating http://dev.minds.io/src/services/session.js
TypeError: undefined is not a function (evaluating '$__2.next()')"><pre class="notranslate"><code class="notranslate">[Error] TypeError: undefined is not a function (evaluating '$__2.next()')
from (traceur-runtime.js, line 2738)
values (angular2.js, line 4710)
_createListOfBindings (angular2.js, line 23646)
resolve (angular2.js, line 24265)
resolveAndCreate (angular2.js, line 24269)
(anonymous function) (dev.minds.io, line 45)
global code (dev.minds.io, line 61)
appendChild ([native code], line 0)
doEval (system.src.js, line 2347)
__eval (system.src.js, line 2317)
exec (system.src.js, line 339)
execute (system.src.js, line 1222)
linkDynamicModule (system.src.js, line 669)
getModule (system.src.js, line 637)
(anonymous function) (system.src.js, line 673)
(anonymous function) (dev.minds.io, line 17)
global code (dev.minds.io, line 52)
appendChild ([native code], line 0)
doEval (system.src.js, line 2347)
__eval (system.src.js, line 2317)
exec (system.src.js, line 339)
execute (system.src.js, line 1222)
linkDynamicModule (system.src.js, line 669)
getModule (system.src.js, line 637)
(anonymous function) (system.src.js, line 673)
(anonymous function) (dev.minds.io, line 15)
global code (dev.minds.io, line 56)
appendChild ([native code], line 0)
doEval (system.src.js, line 2347)
__eval (system.src.js, line 2317)
exec (system.src.js, line 339)
execute (system.src.js, line 1222)
linkDynamicModule (system.src.js, line 669)
link (system.src.js, line 528)
execute (system.src.js, line 852)
o (es6-module-loader-sans-promises.js, line 7)
p (es6-module-loader-sans-promises.js, line 7)
j (es6-module-loader-sans-promises.js, line 7)
k (es6-module-loader-sans-promises.js, line 7)
(anonymous function) (es6-module-loader-sans-promises.js, line 7)
run (zone.js, line 113)
zoneBoundFn (zone.js, line 86)
PromiseResolutionHandlerFunction ([native code], line 0)
[Error] Error evaluating http://dev.io/src/services/session.js
TypeError: undefined is not a function (evaluating '$__2.next()')
__eval (system.src.js, line 2325)
exec (system.src.js, line 339)
execute (system.src.js, line 1222)
linkDynamicModule (system.src.js, line 669)
getModule (system.src.js, line 637)
(anonymous function) (system.src.js, line 673)
(anonymous function) (dev.minds.io, line 17)
global code (dev.minds.io, line 52)
appendChild ([native code], line 0)
doEval (system.src.js, line 2347)
__eval (system.src.js, line 2317)
exec (system.src.js, line 339)
execute (system.src.js, line 1222)
linkDynamicModule (system.src.js, line 669)
getModule (system.src.js, line 637)
(anonymous function) (system.src.js, line 673)
(anonymous function) (dev.minds.io, line 15)
global code (dev.minds.io, line 56)
appendChild ([native code], line 0)
doEval (system.src.js, line 2347)
__eval (system.src.js, line 2317)
exec (system.src.js, line 339)
execute (system.src.js, line 1222)
linkDynamicModule (system.src.js, line 669)
link (system.src.js, line 528)
execute (system.src.js, line 852)
o (es6-module-loader-sans-promises.js, line 7)
p (es6-module-loader-sans-promises.js, line 7)
j (es6-module-loader-sans-promises.js, line 7)
k (es6-module-loader-sans-promises.js, line 7)
(anonymous function) (es6-module-loader-sans-promises.js, line 7)
run (zone.js, line 113)
zoneBoundFn (zone.js, line 86)
PromiseResolutionHandlerFunction ([native code], line 0)
[Error] Error evaluating http://dev.minds.io/src/components/topbar.js
Error evaluating http://dev.minds.io/src/services/session.js
TypeError: undefined is not a function (evaluating '$__2.next()')
</code></pre></div>
<p dir="auto">Topbar.ts:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import { Component, View, NgIf} from 'angular2/angular2';
import { RouterLink } from 'angular2/router';
import { Material } from 'src/directives/material';
import { Storage } from 'src/services/storage';
import { Sidebar } from 'src/services/ui/sidebar';
import { SessionFactory } from 'src/services/session';
@Component({
selector: 'topbar',
viewInjector: [ Storage, Sidebar ]
})
@View({
templateUrl: 'templates/components/topbar.html',
directives: [ NgIf, RouterLink, Material ]
})
export class Topbar {
loggedin = false;
session = SessionFactory.build();
constructor(public storage: Storage, public sidebar : Sidebar){
this.showLogin();
}
/**
* Determine if login button should be shown
*/
showLogin(){
var self = this;
this.loggedin = this.session.isLoggedIn((loggedin) => {
console.log(loggedin)
self.loggedin = loggedin;
});
}
/**
* Open the navigation
*/
openNav(){
this.sidebar.open();
}
}"><pre class="notranslate"><code class="notranslate">import { Component, View, NgIf} from 'angular2/angular2';
import { RouterLink } from 'angular2/router';
import { Material } from 'src/directives/material';
import { Storage } from 'src/services/storage';
import { Sidebar } from 'src/services/ui/sidebar';
import { SessionFactory } from 'src/services/session';
@Component({
selector: 'topbar',
viewInjector: [ Storage, Sidebar ]
})
@View({
templateUrl: 'templates/components/topbar.html',
directives: [ NgIf, RouterLink, Material ]
})
export class Topbar {
loggedin = false;
session = SessionFactory.build();
constructor(public storage: Storage, public sidebar : Sidebar){
this.showLogin();
}
/**
* Determine if login button should be shown
*/
showLogin(){
var self = this;
this.loggedin = this.session.isLoggedIn((loggedin) => {
console.log(loggedin)
self.loggedin = loggedin;
});
}
/**
* Open the navigation
*/
openNav(){
this.sidebar.open();
}
}
</code></pre></div>
<p dir="auto">Session.ts:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/**
* Sesions
*/
import { EventEmitter, Injector, bind } from 'angular2/angular2';
export class Session {
loggedinEmitter = new EventEmitter();
userEmitter = new EventEmitter();
/**
* Return if loggedin, with an optional listener
*/
isLoggedIn(observe: any = null){
if(observe){
this.loggedinEmitter.observer({next: (is) => {
if(is)
observe(true);
else
observe(false);
}
});
}
if(window.Minds.LoggedIn)
return true;
return false
}
/**
* Get the loggedin user
*/
getLoggedInUser(observe: any = null){
if(observe){
this.userEmitter.observer({next: (user) => {
observe(user);
}});
}
if(window.Minds.user)
return window.Minds.user;
return false;
}
/**
* Emit login event
*/
login(user : any = null){
this.loggedinEmitter.next(true);
this.userEmitter.next(user);
}
/**
* Emit logout event
*/
logout(){
this.loggedinEmitter.next(false);
this.userEmitter.next(null);
}
}
var injector = Injector.resolveAndCreate([
bind(Session).toFactory(() => {
return new Session();
})
]);
export class SessionFactory {
static build(){
return injector.get(Session);
}
}"><pre class="notranslate"><code class="notranslate">/**
* Sesions
*/
import { EventEmitter, Injector, bind } from 'angular2/angular2';
export class Session {
loggedinEmitter = new EventEmitter();
userEmitter = new EventEmitter();
/**
* Return if loggedin, with an optional listener
*/
isLoggedIn(observe: any = null){
if(observe){
this.loggedinEmitter.observer({next: (is) => {
if(is)
observe(true);
else
observe(false);
}
});
}
if(window.Minds.LoggedIn)
return true;
return false
}
/**
* Get the loggedin user
*/
getLoggedInUser(observe: any = null){
if(observe){
this.userEmitter.observer({next: (user) => {
observe(user);
}});
}
if(window.Minds.user)
return window.Minds.user;
return false;
}
/**
* Emit login event
*/
login(user : any = null){
this.loggedinEmitter.next(true);
this.userEmitter.next(user);
}
/**
* Emit logout event
*/
logout(){
this.loggedinEmitter.next(false);
this.userEmitter.next(null);
}
}
var injector = Injector.resolveAndCreate([
bind(Session).toFactory(() => {
return new Session();
})
]);
export class SessionFactory {
static build(){
return injector.get(Session);
}
}
</code></pre></div> | <p dir="auto">To repro: Load the hello world example in safari.<br>
Stack trace: <a href="https://gist.github.com/jteplitz602/26f330e39b60d99a69d3">https://gist.github.com/jteplitz602/26f330e39b60d99a69d3</a></p> | 1 |
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/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">npm install next should work without any errors</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">When running npm install next I get the following error</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ npm install --save next
npm WARN deprecated [email protected]: this package has been reintegrated into npm and is now out of date with respect to npm
npm WARN deprecated @semantic-release/[email protected]: Use @semantic-release/npm instead
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: timed-out@^4.0.1 (node_modules/got/node_modules/timed-out):
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: No valid versions available for timed-out
npm ERR! code ENOVERSIONS
npm ERR! No valid versions available for duplexer3
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/sgore/.npm/_logs/2018-01-06T19_02_46_815Z-debug.log
"><pre class="notranslate">$ npm install --save next
npm WARN deprecated [email protected]: this package has been reintegrated into npm and is now out of date with respect to npm
npm WARN deprecated @semantic-release/[email protected]: Use @semantic-release/npm instead
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: timed-out@^4.0.1 (node_modules/got/node_modules/timed-out):
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: No valid versions available <span class="pl-k">for</span> timed-out
npm ERR<span class="pl-k">!</span> code ENOVERSIONS
npm ERR<span class="pl-k">!</span> No valid versions available <span class="pl-k">for</span> duplexer3
npm ERR<span class="pl-k">!</span> A <span class="pl-c1">complete</span> log of this run can be found in:
npm ERR<span class="pl-k">!</span> /Users/sgore/.npm/_logs/2018-01-06T19_02_46_815Z-debug.log
</pre></div>
<p dir="auto">Additionally, When I check at npmjs.org there is no duplexer3 package listed.</p>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<ol dir="auto">
<li>Following the steps from getting started - <a href="https://learnnextjs.com/basics/getting-started/setup" rel="nofollow">https://learnnextjs.com/basics/getting-started/setup</a></li>
<li>npm install --save next</li>
<li></li>
<li></li>
</ol>
<h2 dir="auto">Context</h2>
<p dir="auto">I am unable to get started with next</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></td>
</tr>
<tr>
<td>node</td>
<td>9.3.0</td>
</tr>
<tr>
<td>npm</td>
<td>5.5.1</td>
</tr>
<tr>
<td>OS</td>
<td>MacOS X El Capitan 10.11.6</td>
</tr>
<tr>
<td>browser</td>
<td>Chrome</td>
</tr>
<tr>
<td>etc</td>
<td></td>
</tr>
</tbody>
</table> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues?q=is%3Aissue">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Overview</h2>
<p dir="auto">React 16.3 will include a utility for ref forwarding called <code class="notranslate">React.forwardRef</code>. <a href="https://github.com/reactjs/rfcs/pull/30" data-hovercard-type="pull_request" data-hovercard-url="/reactjs/rfcs/pull/30/hovercard">Its RFC</a> has been ratified and the initial implementation is available in alpha builds of 16.3.</p>
<p dir="auto">The <code class="notranslate">typeof</code> objects returned by <code class="notranslate">forwardRef</code> happens to be <code class="notranslate">"object"</code>, not <code class="notranslate">"function"</code>, which means that if you wrap your Page component in a HOC that uses <code class="notranslate">forwardRef</code>, it will fail the overly-aggressive <a href="https://github.com/zeit/next.js/blob/01f05d8cbc0333dd629f3c6bb180d73c41fed968/lib/app.js#L36-L40">test here</a>.</p>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">If I wrap a top-level Page component with <code class="notranslate">React.forwardRef</code>, I expect Next.js to render it without issue.</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">If I wrap a top-level Page component with <code class="notranslate">React.forwardRef</code>, Next.js throws the following error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Error: The default export is not a React Component in page: ..."><pre class="notranslate"><code class="notranslate">Error: The default export is not a React Component in page: ...
</code></pre></div>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<p dir="auto">For any Page component in a Next.js app, add the following lines:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// ...
const MyPage = () => (...);
export default React.forwardRef((props, ref) => <MyPage {...props} forwardedRef={ref} />);"><pre class="notranslate"><span class="pl-c">// ...</span>
<span class="pl-k">const</span> <span class="pl-v">MyPage</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-kos">)</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">export</span> <span class="pl-s1">default</span> <span class="pl-v">React</span><span class="pl-kos">.</span><span class="pl-en">forwardRef</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">props</span><span class="pl-kos">,</span> <span class="pl-s1">ref</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-c1"><</span><span class="pl-v">MyPage</span> <span class="pl-kos">{</span>...<span class="pl-s1">props</span><span class="pl-kos">}</span> <span class="pl-c1">forwardedRef</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-s1">ref</span><span class="pl-kos">}</span> <span class="pl-c1">/</span><span class="pl-c1">></span><span class="pl-kos">)</span><span class="pl-kos"></span><span class="pl-kos">;</span></pre></div>
<h2 dir="auto">Context</h2>
<p dir="auto">As soon as the <code class="notranslate">forwardRef</code> API is released, library that expose HOCs are going to start using it to provide a standard way of accessing the ref of the wrapped component. (Prior to this, each HOC library would take a slightly different approach.)</p>
<p dir="auto">As more libraries and apps are updated, the number of people impacted will grow. I expect this to happen fairly rapidly, at least for actively-maintained libraries.</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.1-canary.17</td>
</tr>
</tbody>
</table> | 0 |
<h4 dir="auto">Currently, pd.DataFrame does not have a <code class="notranslate">.nunique</code> method</h4>
<p dir="auto"><code class="notranslate">DataFrames</code> have various aggregation methods that they share with <code class="notranslate">series</code>, examples being <code class="notranslate">.sum</code>, <code class="notranslate">.count</code> etc. Likewise with <code class="notranslate">DataFrame.groupby</code>-objects.</p>
<p dir="auto">In many cases, a <code class="notranslate">.nunique</code> would be useful as on <code class="notranslate">DataFrame</code> and <code class="notranslate">DataFrame.groupby</code>-objects, for example when you're trying to assess the diversity of data in a DataFrame.</p>
<h4 dir="auto">Expected Output</h4>
<p dir="auto">When you're using <code class="notranslate">DataFrame.nunique</code>, with <code class="notranslate">n</code> columns, you should get back a <code class="notranslate">series</code> where the index values are the dataframe.columns values, and the series values are the count of unique values, for each column.</p> | <p dir="auto">When exploring a data set, I often need to <code class="notranslate">df.apply(pd.Series.nunique)</code> or <code class="notranslate">df.apply(lambda x: x.nunique())</code>. How about adding this as <code class="notranslate">nunique()</code>-method parallel to <code class="notranslate">DataFrame.count()</code> (<code class="notranslate">count</code> and <code class="notranslate">unique</code> are also the two most basic infos displayed by <code class="notranslate">DataFrame.describe()</code>)?</p>
<p dir="auto">I think there are also use cases for this as a <code class="notranslate">groupby</code>-method, for example when checking a candidate primary key for different lines (values):</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> import pandas as pd
>>> df = pd.DataFrame({'id': ['spam', 'eggs', 'eggs', 'spam'], 'value': [1, 5, 5, 2]})
>>> df.groupby('id').filter(lambda g: (g.apply(pd.Series.nunique) > 1).any())
id value
0 spam 1
3 spam 2"><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span>
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>({<span class="pl-s">'id'</span>: [<span class="pl-s">'spam'</span>, <span class="pl-s">'eggs'</span>, <span class="pl-s">'eggs'</span>, <span class="pl-s">'spam'</span>], <span class="pl-s">'value'</span>: [<span class="pl-c1">1</span>, <span class="pl-c1">5</span>, <span class="pl-c1">5</span>, <span class="pl-c1">2</span>]})
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">df</span>.<span class="pl-en">groupby</span>(<span class="pl-s">'id'</span>).<span class="pl-en">filter</span>(<span class="pl-k">lambda</span> <span class="pl-s1">g</span>: (<span class="pl-s1">g</span>.<span class="pl-en">apply</span>(<span class="pl-s1">pd</span>.<span class="pl-v">Series</span>.<span class="pl-s1">nunique</span>) <span class="pl-c1">></span> <span class="pl-c1">1</span>).<span class="pl-en">any</span>())
<span class="pl-s1">id</span> <span class="pl-s1">value</span>
<span class="pl-c1">0</span> <span class="pl-s1">spam</span> <span class="pl-c1">1</span>
<span class="pl-c1">3</span> <span class="pl-s1">spam</span> <span class="pl-c1">2</span></pre></div> | 1 |
<p dir="auto">In addition to "launch" and "attach" we should support any request, e.g. "listen"<br>
(php-debug uses a "listen" model).</p> | <p dir="auto">The actual code editor should be extracted and made into its own separate project outside of VSCode itself. The editor would be massively useful in a variety of other projects that need to embed an editor and many could benefit from this separation. It would also provide a nice 3rd alternative to the other two well-established editors of Ace and CodeMirror.</p> | 0 |
<h1 dir="auto">Environment</h1>
<p dir="auto">Windows build number: Microsoft Windows [Version 10.0.18362.175]<br>
Windows Terminal version (if applicable):0.0.1.0</p>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">Login to WSL, use nano to edit a file, mark a text that has at least a linebreak, and paste it on another line. For example in my local Deb Mirror, i mark this<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/37312505/59615267-e3528200-912a-11e9-9422-cfe4ee58acb8.png"><img src="https://user-images.githubusercontent.com/37312505/59615267-e3528200-912a-11e9-9422-cfe4ee58acb8.png" alt="image" style="max-width: 100%;"></a></p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">The expectet behavior like wsl command line, would be to paste the text exactly as copied with right click on the selected one, with all line-breaks<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/37312505/59616899-016db180-912e-11e9-9e0d-124975392fef.png"><img src="https://user-images.githubusercontent.com/37312505/59616899-016db180-912e-11e9-9e0d-124975392fef.png" alt="image" style="max-width: 100%;"></a></p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">The actual behavior is that it copies it without preserving any linebreak and tries to do it in one line<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/37312505/59615381-109f3000-912b-11e9-82d2-4d2a74045d22.png"><img src="https://user-images.githubusercontent.com/37312505/59615381-109f3000-912b-11e9-82d2-4d2a74045d22.png" alt="image" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/37312505/59615416-1c8af200-912b-11e9-8282-e54d4fd87a71.png"><img src="https://user-images.githubusercontent.com/37312505/59615416-1c8af200-912b-11e9-8282-e54d4fd87a71.png" alt="image" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/37312505/59615433-26acf080-912b-11e9-9872-57847fdea5d4.png"><img src="https://user-images.githubusercontent.com/37312505/59615433-26acf080-912b-11e9-9872-57847fdea5d4.png" alt="image" style="max-width: 100%;"></a></p> | <p dir="auto">I can't switch to Chinese input method after update, current version is 0.3.2142.0.</p> | 0 |
<p dir="auto">by <strong>izmalych</strong>:</p>
<pre class="notranslate">What steps will reproduce the problem?
package main
import (
"fmt"
"json"
)
func main() {
o := &JsonObject{ 1, 2, 3 }
b, e := json.Marshal(o)
if e != nil { panic("json panic") }
fmt.Printf(string(b))
}
type JsonObject struct {
UpperCase int
camelCase int
lowercase int
}
What is the expected output?
{"UpperCase":1,"camelCase":2,"lowercase":3}
What do you see instead?
{"uppercase":1,"camelcase":2,"lowercase":3}
What is your $GOOS? $GOARCH?
$GOARCH
386
$GOOS
linux
Which revision are you using? (hg identify)
#hg identify
f98f784927ab tip</pre> | <p dir="auto">by <strong>kullmann.daniel</strong>:</p>
<pre class="notranslate">Go to tour.golang.org. Enter following code:
package main
import (
"fmt"
"time"
)
func main() {
fmt.Println(time.Now())
}
Run the code. It prints:
2009-11-10 23:00:00 +0000 UTC
This a minor issue, but it breaks item 43 of the tour, "Switch".</pre> | 0 |
<p dir="auto">While trying to benchmark JuMP solvers on M1, we found that JuMP requires a compiler feature that is apparently not available on aarch64:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ julia --project=. bench.jl
ERROR: LoadError: cfunction: closures are not supported on this platform
Stacktrace:
[1] _set_callback
@ ~/.julia/dev/GLPK/src/MOI_wrapper/MOI_wrapper.jl:259 [inlined]
[2] empty!(model::GLPK.Optimizer)
@ GLPK ~/.julia/dev/GLPK/src/MOI_wrapper/MOI_wrapper.jl:290
[3] GLPK.Optimizer(; want_infeasibility_certificates::Bool, method::GLPK.MethodEnum, kwargs::Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})
@ GLPK ~/.julia/dev/GLPK/src/MOI_wrapper/MOI_wrapper.jl:206
[4] Optimizer
@ ~/.julia/dev/GLPK/src/MOI_wrapper/MOI_wrapper.jl:171 [inlined]
[5] _instantiate_and_check(optimizer_constructor::Type{GLPK.Optimizer})
@ MathOptInterface ~/.julia/packages/MathOptInterface/YDdD3/src/instantiate.jl:62
[6] instantiate(optimizer_constructor::Type; with_bridge_type::Type{Float64}, with_names::Bool)
@ MathOptInterface ~/.julia/packages/MathOptInterface/YDdD3/src/instantiate.jl:120
[7] set_optimizer(model::Model, optimizer_constructor::Type; bridge_constraints::Bool)
@ JuMP ~/.julia/packages/JuMP/klrjG/src/optimizer_interface.jl:109
[8] Model(optimizer_factory::Type; bridge_constraints::Bool, kwargs::Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})
@ JuMP ~/.julia/packages/JuMP/klrjG/src/JuMP.jl:287
[9] Model
@ ~/.julia/packages/JuMP/klrjG/src/JuMP.jl:286 [inlined]
[10] example_factory_schedule(factory::Type)
@ Main ~/mlp_bench/bench.jl:557
[11] top-level scope
@ ~/mlp_bench/bench.jl:605
in expression starting at /Users/sabae/mlp_bench/bench.jl:602"><pre class="notranslate"><code class="notranslate">$ julia --project=. bench.jl
ERROR: LoadError: cfunction: closures are not supported on this platform
Stacktrace:
[1] _set_callback
@ ~/.julia/dev/GLPK/src/MOI_wrapper/MOI_wrapper.jl:259 [inlined]
[2] empty!(model::GLPK.Optimizer)
@ GLPK ~/.julia/dev/GLPK/src/MOI_wrapper/MOI_wrapper.jl:290
[3] GLPK.Optimizer(; want_infeasibility_certificates::Bool, method::GLPK.MethodEnum, kwargs::Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})
@ GLPK ~/.julia/dev/GLPK/src/MOI_wrapper/MOI_wrapper.jl:206
[4] Optimizer
@ ~/.julia/dev/GLPK/src/MOI_wrapper/MOI_wrapper.jl:171 [inlined]
[5] _instantiate_and_check(optimizer_constructor::Type{GLPK.Optimizer})
@ MathOptInterface ~/.julia/packages/MathOptInterface/YDdD3/src/instantiate.jl:62
[6] instantiate(optimizer_constructor::Type; with_bridge_type::Type{Float64}, with_names::Bool)
@ MathOptInterface ~/.julia/packages/MathOptInterface/YDdD3/src/instantiate.jl:120
[7] set_optimizer(model::Model, optimizer_constructor::Type; bridge_constraints::Bool)
@ JuMP ~/.julia/packages/JuMP/klrjG/src/optimizer_interface.jl:109
[8] Model(optimizer_factory::Type; bridge_constraints::Bool, kwargs::Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})
@ JuMP ~/.julia/packages/JuMP/klrjG/src/JuMP.jl:287
[9] Model
@ ~/.julia/packages/JuMP/klrjG/src/JuMP.jl:286 [inlined]
[10] example_factory_schedule(factory::Type)
@ Main ~/mlp_bench/bench.jl:557
[11] top-level scope
@ ~/mlp_bench/bench.jl:605
in expression starting at /Users/sabae/mlp_bench/bench.jl:602
</code></pre></div>
<p dir="auto">The relevant code can be found here: <a href="https://github.com/jump-dev/GLPK.jl/blob/ebc73abbf0c8352c0509932aa1ad57a69716a2e6/src/MOI_wrapper/MOI_wrapper.jl#L242-L259">https://github.com/jump-dev/GLPK.jl/blob/ebc73abbf0c8352c0509932aa1ad57a69716a2e6/src/MOI_wrapper/MOI_wrapper.jl#L242-L259</a></p>
<p dir="auto">Reading through the docs, it appears <a href="https://docs.julialang.org/en/v1/manual/calling-c-and-fortran-code/#Closure-cfunctions" rel="nofollow">this is advertised</a>, but since such a prominent package uses them internally, it seems like we might want to see if there's a workaround we can use.</p> | <p dir="auto">Hi!</p>
<p dir="auto">I've discovered that many (runtime) performance issues with broadcasting are caused by inlining not working with the highly recursive broadcasting code. It turns out that defining more methods can actually help here. Here is a piece of code you can evaluate in REPL to see that:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
struct RecursiveInliningEnforcerA{T}
makeargs::T
end
struct RecursiveInliningEnforcerB{TMT,TMH,TT,TH,TF}
makeargs_tail::TMT
makeargs_head::TMH
headargs::TH
tailargs::TT
f::TF
end
for UB in [Any, RecursiveInliningEnforcerA]
@eval @inline function (bb::RecursiveInliningEnforcerB{TMT,TMH,TT,TH,TF})(args::Vararg{Any,N}) where {N,TMT,TMH<:$UB,TT,TH,TF}
args1 = bb.makeargs_head(args...)
a = bb.headargs(args1...)
b = bb.makeargs_tail(bb.tailargs(args1...)...)
return (bb.f(a...), b...)
end
end
for UB in [Any, RecursiveInliningEnforcerB]
@eval @inline (a::RecursiveInliningEnforcerA{TTA})(head::TH, tail::Vararg{Any,N}) where {TTA<:$UB,TH,N} = (head, a.makeargs(tail...)...)
end
@inline function Broadcast.make_makeargs(makeargs_tail::TT, t::Tuple) where TT
return RecursiveInliningEnforcerA(Broadcast.make_makeargs(makeargs_tail, Base.tail(t)))
end
function Broadcast.make_makeargs(makeargs_tail, t::Tuple{<:Broadcast.Broadcasted, Vararg{Any}})
bc = t[1]
# c.f. the same expression in the function on leaf nodes above. Here
# we recurse into siblings in the broadcast tree.
let makeargs_tail = Broadcast.make_makeargs(makeargs_tail, Base.tail(t)),
# Here we recurse into children. It would be valid to pass in makeargs_tail
# here, and not use it below. However, in that case, our recursion is no
# longer purely structural because we're building up one argument (the closure)
# while destructuing another.
makeargs_head = Broadcast.make_makeargs((args...)->args, bc.args),
f = bc.f
# Create two functions, one that splits of the first length(bc.args)
# elements from the tuple and one that yields the remaining arguments.
# N.B. We can't call headargs on `args...` directly because
# args is flattened (i.e. our children have not been evaluated
# yet).
headargs, tailargs = Broadcast.make_headargs(bc.args), Broadcast.make_tailargs(bc.args)
return RecursiveInliningEnforcerB(makeargs_tail, makeargs_head, headargs, tailargs, f)
end
end"><pre class="notranslate"><span class="pl-k">struct</span> RecursiveInliningEnforcerA{T}
makeargs<span class="pl-k">::</span><span class="pl-c1">T</span>
<span class="pl-k">end</span>
<span class="pl-k">struct</span> RecursiveInliningEnforcerB{TMT,TMH,TT,TH,TF}
makeargs_tail<span class="pl-k">::</span><span class="pl-c1">TMT</span>
makeargs_head<span class="pl-k">::</span><span class="pl-c1">TMH</span>
headargs<span class="pl-k">::</span><span class="pl-c1">TH</span>
tailargs<span class="pl-k">::</span><span class="pl-c1">TT</span>
f<span class="pl-k">::</span><span class="pl-c1">TF</span>
<span class="pl-k">end</span>
<span class="pl-k">for</span> UB <span class="pl-k">in</span> [Any, RecursiveInliningEnforcerA]
<span class="pl-c1">@eval</span> <span class="pl-c1">@inline</span> <span class="pl-k">function</span> (bb<span class="pl-k">::</span><span class="pl-c1">RecursiveInliningEnforcerB{TMT,TMH,TT,TH,TF}</span>)(args<span class="pl-k">::</span><span class="pl-c1">Vararg{Any,N}</span>) <span class="pl-k">where</span> {N,TMT,TMH<span class="pl-k"><:</span><span class="pl-c1">$UB</span>,TT,TH,TF}
args1 <span class="pl-k">=</span> bb<span class="pl-k">.</span><span class="pl-c1">makeargs_head</span>(args<span class="pl-k">...</span>)
a <span class="pl-k">=</span> bb<span class="pl-k">.</span><span class="pl-c1">headargs</span>(args1<span class="pl-k">...</span>)
b <span class="pl-k">=</span> bb<span class="pl-k">.</span><span class="pl-c1">makeargs_tail</span>(bb<span class="pl-k">.</span><span class="pl-c1">tailargs</span>(args1<span class="pl-k">...</span>)<span class="pl-k">...</span>)
<span class="pl-k">return</span> (bb<span class="pl-k">.</span><span class="pl-c1">f</span>(a<span class="pl-k">...</span>), b<span class="pl-k">...</span>)
<span class="pl-k">end</span>
<span class="pl-k">end</span>
<span class="pl-k">for</span> UB <span class="pl-k">in</span> [Any, RecursiveInliningEnforcerB]
<span class="pl-c1">@eval</span> <span class="pl-c1">@inline</span> (a<span class="pl-k">::</span><span class="pl-c1">RecursiveInliningEnforcerA{TTA}</span>)(head<span class="pl-k">::</span><span class="pl-c1">TH</span>, tail<span class="pl-k">::</span><span class="pl-c1">Vararg{Any,N}</span>) <span class="pl-k">where</span> {TTA<span class="pl-k"><:</span><span class="pl-c1">$UB</span>,TH,N} <span class="pl-k">=</span> (head, a<span class="pl-k">.</span><span class="pl-c1">makeargs</span>(tail<span class="pl-k">...</span>)<span class="pl-k">...</span>)
<span class="pl-k">end</span>
<span class="pl-c1">@inline</span> <span class="pl-k">function</span> Broadcast<span class="pl-k">.</span><span class="pl-en">make_makeargs</span>(makeargs_tail<span class="pl-k">::</span><span class="pl-c1">TT</span>, t<span class="pl-k">::</span><span class="pl-c1">Tuple</span>) <span class="pl-k">where</span> TT
<span class="pl-k">return</span> <span class="pl-c1">RecursiveInliningEnforcerA</span>(Broadcast<span class="pl-k">.</span><span class="pl-c1">make_makeargs</span>(makeargs_tail, Base<span class="pl-k">.</span><span class="pl-c1">tail</span>(t)))
<span class="pl-k">end</span>
<span class="pl-k">function</span> Broadcast<span class="pl-k">.</span><span class="pl-en">make_makeargs</span>(makeargs_tail, t<span class="pl-k">::</span><span class="pl-c1">Tuple{<:Broadcast.Broadcasted, Vararg{Any}}</span>)
bc <span class="pl-k">=</span> t[<span class="pl-c1">1</span>]
<span class="pl-c"><span class="pl-c">#</span> c.f. the same expression in the function on leaf nodes above. Here</span>
<span class="pl-c"><span class="pl-c">#</span> we recurse into siblings in the broadcast tree.</span>
<span class="pl-k">let</span> makeargs_tail <span class="pl-k">=</span> Broadcast<span class="pl-k">.</span><span class="pl-c1">make_makeargs</span>(makeargs_tail, Base<span class="pl-k">.</span><span class="pl-c1">tail</span>(t)),
<span class="pl-c"><span class="pl-c">#</span> Here we recurse into children. It would be valid to pass in makeargs_tail</span>
<span class="pl-c"><span class="pl-c">#</span> here, and not use it below. However, in that case, our recursion is no</span>
<span class="pl-c"><span class="pl-c">#</span> longer purely structural because we're building up one argument (the closure)</span>
<span class="pl-c"><span class="pl-c">#</span> while destructuing another.</span>
makeargs_head <span class="pl-k">=</span> Broadcast<span class="pl-k">.</span><span class="pl-c1">make_makeargs</span>((args<span class="pl-k">...</span>)<span class="pl-k">-></span>args, bc<span class="pl-k">.</span>args),
f <span class="pl-k">=</span> bc<span class="pl-k">.</span>f
<span class="pl-c"><span class="pl-c">#</span> Create two functions, one that splits of the first length(bc.args)</span>
<span class="pl-c"><span class="pl-c">#</span> elements from the tuple and one that yields the remaining arguments.</span>
<span class="pl-c"><span class="pl-c">#</span> N.B. We can't call headargs on `args...` directly because</span>
<span class="pl-c"><span class="pl-c">#</span> args is flattened (i.e. our children have not been evaluated</span>
<span class="pl-c"><span class="pl-c">#</span> yet).</span>
headargs, tailargs <span class="pl-k">=</span> Broadcast<span class="pl-k">.</span><span class="pl-c1">make_headargs</span>(bc<span class="pl-k">.</span>args), Broadcast<span class="pl-k">.</span><span class="pl-c1">make_tailargs</span>(bc<span class="pl-k">.</span>args)
<span class="pl-k">return</span> <span class="pl-c1">RecursiveInliningEnforcerB</span>(makeargs_tail, makeargs_head, headargs, tailargs, f)
<span class="pl-k">end</span>
<span class="pl-k">end</span></pre></div>
<p dir="auto">This effectively duplicates these two functions: </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/abbb220b89ebcec87efd9fbf6c0ccae4f2a3ef4a/base/broadcast.jl#L380-L384">julia/base/broadcast.jl</a>
</p>
<p class="mb-0 color-fg-muted">
Lines 380 to 384
in
<a data-pjax="true" class="commit-tease-sha" href="/JuliaLang/julia/commit/abbb220b89ebcec87efd9fbf6c0ccae4f2a3ef4a">abbb220</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="L380" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="380"></td>
<td id="LC380" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">return</span> <span class="pl-c1">@inline</span> <span class="pl-k">function</span>(args<span class="pl-k">::</span><span class="pl-c1">Vararg{Any,N}</span>) <span class="pl-k">where</span> N </td>
</tr>
<tr class="border-0">
<td id="L381" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="381"></td>
<td id="LC381" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> args1 <span class="pl-k">=</span> <span class="pl-c1">makeargs_head</span>(args<span class="pl-k">...</span>) </td>
</tr>
<tr class="border-0">
<td id="L382" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="382"></td>
<td id="LC382" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> a, b <span class="pl-k">=</span> <span class="pl-c1">headargs</span>(args1<span class="pl-k">...</span>), <span class="pl-c1">makeargs_tail</span>(<span class="pl-c1">tailargs</span>(args1<span class="pl-k">...</span>)<span class="pl-k">...</span>) </td>
</tr>
<tr class="border-0">
<td id="L383" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="383"></td>
<td id="LC383" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> (<span class="pl-c1">f</span>(a<span class="pl-k">...</span>), b<span class="pl-k">...</span>) </td>
</tr>
<tr class="border-0">
<td id="L384" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="384"></td>
<td id="LC384" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">end</span> </td>
</tr>
</tbody></table>
</div>
</div>
and <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/abbb220b89ebcec87efd9fbf6c0ccae4f2a3ef4a/base/broadcast.jl#L361">julia/base/broadcast.jl</a>
</p>
<p class="mb-0 color-fg-muted">
Line 361
in
<a data-pjax="true" class="commit-tease-sha" href="/JuliaLang/julia/commit/abbb220b89ebcec87efd9fbf6c0ccae4f2a3ef4a">abbb220</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="L361" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="361"></td>
<td id="LC361" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> (head, tail<span class="pl-k">...</span>)<span class="pl-k">-></span>(head, <span class="pl-c1">makeargs</span>(tail<span class="pl-k">...</span>)<span class="pl-k">...</span>) </td>
</tr>
</tbody></table>
</div>
</div>
for different argument types.<p></p>
<p dir="auto">It turns out that it's sufficient to fix the following issues:<br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="388288356" data-permission-text="Title is private" data-url="https://github.com/JuliaArrays/StaticArrays.jl/issues/560" data-hovercard-type="issue" data-hovercard-url="/JuliaArrays/StaticArrays.jl/issues/560/hovercard" href="https://github.com/JuliaArrays/StaticArrays.jl/issues/560">JuliaArrays/StaticArrays.jl#560</a><br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="514047184" data-permission-text="Title is private" data-url="https://github.com/JuliaArrays/StaticArrays.jl/issues/682" data-hovercard-type="issue" data-hovercard-url="/JuliaArrays/StaticArrays.jl/issues/682/hovercard" href="https://github.com/JuliaArrays/StaticArrays.jl/issues/682">JuliaArrays/StaticArrays.jl#682</a><br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="449690176" data-permission-text="Title is private" data-url="https://github.com/JuliaArrays/StaticArrays.jl/issues/609" data-hovercard-type="issue" data-hovercard-url="/JuliaArrays/StaticArrays.jl/issues/609/hovercard" href="https://github.com/JuliaArrays/StaticArrays.jl/issues/609">JuliaArrays/StaticArrays.jl#609</a><br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="631076890" data-permission-text="Title is private" data-url="https://github.com/JuliaArrays/StaticArrays.jl/issues/797" data-hovercard-type="issue" data-hovercard-url="/JuliaArrays/StaticArrays.jl/issues/797/hovercard" href="https://github.com/JuliaArrays/StaticArrays.jl/issues/797">JuliaArrays/StaticArrays.jl#797</a></p>
<p dir="auto">What do you think about it?</p> | 0 |
<p dir="auto">popover gets misplaced from its target icon when screen is rotated</p> | <p dir="auto">Chrome for Mac. Taken from the docs.</p>
<p dir="auto">To repro:</p>
<ol dir="auto">
<li>Zoom at 90%. (ctrl + <code class="notranslate">-</code>)</li>
<li>Notice the tooltip arrow has this line of whitespace.</li>
</ol>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/93eb174dea23b026bfdf6cef14edbda779f157d8875daf4b673b275af14a3c98/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3733313734332f3936333734382f62366363623335652d303530382d313165332d393265392d3865643261376638383863622e706e67"><img src="https://camo.githubusercontent.com/93eb174dea23b026bfdf6cef14edbda779f157d8875daf4b673b275af14a3c98/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3733313734332f3936333734382f62366363623335652d303530382d313165332d393265392d3865643261376638383863622e706e67" alt="screen shot 2013-08-14 at 18 41 06" data-canonical-src="https://f.cloud.github.com/assets/731743/963748/b6ccb35e-0508-11e3-92e9-8ed2a7f888cb.png" style="max-width: 100%;"></a></p> | 1 |
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="s = pd.Series(x)
m = s.groupby().count() # does not work
m = s.groupby(s.values).count() # works"><pre class="notranslate"><code class="notranslate">s = pd.Series(x)
m = s.groupby().count() # does not work
m = s.groupby(s.values).count() # works
</code></pre></div>
<p dir="auto">In <code class="notranslate">https://github.com/pydata/pandas/blob/master/pandas/core/generic.py</code>, <code class="notranslate">by=None</code> should be corrected to just <code class="notranslate">by</code> as <code class="notranslate">None</code> always leads to an error.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" def groupby(self, by=None, axis=0, level=None, as_index=True, sort=True,
group_keys=True, squeeze=False):
from pandas.core.groupby import groupby
axis = self._get_axis_number(axis)
return groupby(self, by, axis=axis, level=level, as_index=as_index,
sort=sort, group_keys=group_keys, squeeze=squeeze)"><pre class="notranslate"><code class="notranslate"> def groupby(self, by=None, axis=0, level=None, as_index=True, sort=True,
group_keys=True, squeeze=False):
from pandas.core.groupby import groupby
axis = self._get_axis_number(axis)
return groupby(self, by, axis=axis, level=level, as_index=as_index,
sort=sort, group_keys=group_keys, squeeze=squeeze)
</code></pre></div>
<p dir="auto">See this <a href="http://stackoverflow.com/questions/17929426/groupby-for-pandas-series-not-working" rel="nofollow">http://stackoverflow.com/questions/17929426/groupby-for-pandas-series-not-working</a></p> | <h4 dir="auto">Code Sample, a copy-pastable example if possible</h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="pd.read_sql(
'''
SELECT CountryCode, ShortName,LatestPopulationCensus
FROM Country
WHERE Region = 'South Asia'
UNION
SELECT CountryCode, LatestPopulationCensus, LongName
FROM Country
WHERE Region = 'North America'
'''
,con=conn)"><pre class="notranslate"><code class="notranslate">pd.read_sql(
'''
SELECT CountryCode, ShortName,LatestPopulationCensus
FROM Country
WHERE Region = 'South Asia'
UNION
SELECT CountryCode, LatestPopulationCensus, LongName
FROM Country
WHERE Region = 'North America'
'''
,con=conn)
</code></pre></div>
<h4 dir="auto">Problem description</h4>
<p dir="auto">I noticed that when doing UNION of two datasets. The result depends on the order of selected columns and unites data according to this order and not to underlying labels. That doesn't look right.</p>
<p dir="auto">CountryCode ShortName LatestPopulationCensus<br>
0 AFG Afghanistan 1979<br>
1 BGD Bangladesh 2011<br>
2 BMU 2010 The Bermudas<br>
3 BTN Bhutan 2005<br>
4 CAN 2011 Canada<br>
5 IND India 2011</p>
<p dir="auto">Is there a way to correct it withing pandas or is it SQL issue?</p>
<p dir="auto"><strong>Note</strong>: We receive a lot of issues on our GitHub tracker, so it is very possible that your issue has been posted before. Please check first before submitting so that we do not have to handle and close duplicates!</p>
<p dir="auto"><strong>Note</strong>: Many problems can be resolved by simply upgrading <code class="notranslate">pandas</code> to the latest version. Before submitting, please check if that solution works for you. If possible, you may want to check if <code class="notranslate">master</code> addresses this issue, but that is not necessary.</p>
<p dir="auto">For documentation-related issues, you can check the latest versions of the docs on <code class="notranslate">master</code> here:</p>
<p dir="auto"><a href="https://pandas-docs.github.io/pandas-docs-travis/" rel="nofollow">https://pandas-docs.github.io/pandas-docs-travis/</a></p>
<p dir="auto">If the issue has not been resolved there, go ahead and file it in the issue tracker.</p>
<h4 dir="auto">Expected Output</h4>
<h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4>
<details>
<p dir="auto">[paste the output of <code class="notranslate">pd.show_versions()</code> here below this line]</p>
</details> | 0 |
<p dir="auto">Right now we need to cast to floats in order to print them out.</p> | <p dir="auto">This code I used to compile fine with a version of Rust that was about 9 days old. All the comments in the code have been there before, now the code fails to compile at the lines <code class="notranslate">assert_eq!(Foo::id(), "FOO");</code> and <code class="notranslate">assert_eq!(Bar::id(), "BAR");</code>:</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="#[test]
fn type_aliases() {
struct Foo {
a: u32,
};
impl Foo {
fn bark(&self) {
println!("Wuff {}", self.a);
}
fn id() -> &'static str {
"FOO"
}
}
assert_eq!(Foo::id(), "FOO");
let f = Foo { a: 1 };
f.bark();
type Bar = Foo;
// assert_eq!(!Bar::id(), "FOO");
// error: unresolved name `Bar::id`
// tests/lang.rs:628 assert_eq!(!Bar::id(), "FOO");
let b = Bar { a: 2 };
b.bark(); // this works though
impl Bar {
// This would add a similarly named implementation, that is difficult to call
// due to ambiguity.
// Interestingly, it also affects Foo, as well as Bar !!
// fn bark(&self) {
// println!("Grrrr {}", self.a);
// }
fn id() -> &'static str {
"BAR"
}
}
// b.bark(); // or f.bark();
// error: multiple applicable methods in scope [E0034]
// tests/lang.rs:625 f.bark();
// ^~~~~~
// tests/lang.rs:615:9: 617:10 note: candidate #1 is defined in an impl for the type `type_aliases::Foo`
// tests/lang.rs:615 fn bark(&self) {
// tests/lang.rs:616 println!("Wuff {}", self.a);
// tests/lang.rs:617 }
// tests/lang.rs:637:9: 639:10 note: candidate #2 is defined in an impl for the type `type_aliases::Foo`
// tests/lang.rs:637 fn bark(&self) {
// tests/lang.rs:638 println!("Grrrr {}", self.a);
assert_eq!(Bar::id(), "BAR");
}"><pre class="notranslate"><span class="pl-c1">#<span class="pl-kos">[</span>test<span class="pl-kos">]</span></span>
<span class="pl-k">fn</span> <span class="pl-en">type_aliases</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">struct</span> <span class="pl-smi">Foo</span> <span class="pl-kos">{</span>
<span class="pl-c1">a</span><span class="pl-kos">:</span> <span class="pl-smi">u32</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-smi">Foo</span> <span class="pl-kos">{</span>
<span class="pl-k">fn</span> <span class="pl-en">bark</span><span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-smi">self</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">println</span><span class="pl-en">!</span><span class="pl-kos">(</span><span class="pl-s">"Wuff {}"</span>, <span class="pl-smi">self</span>.a<span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">fn</span> <span class="pl-en">id</span><span class="pl-kos">(</span><span class="pl-kos">)</span> -> <span class="pl-c1">&</span><span class="pl-c1">'</span><span class="pl-ent">static</span> <span class="pl-smi">str</span> <span class="pl-kos">{</span>
<span class="pl-s">"FOO"</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-en">assert_eq</span><span class="pl-en">!</span><span class="pl-kos">(</span><span class="pl-v">Foo</span>::id<span class="pl-kos">(</span><span class="pl-kos">)</span>, <span class="pl-s">"FOO"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> f = <span class="pl-smi">Foo</span> <span class="pl-kos">{</span> <span class="pl-c1">a</span><span class="pl-kos">:</span> <span class="pl-c1">1</span> <span class="pl-kos">}</span><span class="pl-kos">;</span>
f<span class="pl-kos">.</span><span class="pl-en">bark</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">type</span> <span class="pl-smi">Bar</span> = <span class="pl-smi">Foo</span><span class="pl-kos">;</span>
<span class="pl-c">// assert_eq!(!Bar::id(), "FOO");</span>
<span class="pl-c">// error: unresolved name `Bar::id`</span>
<span class="pl-c">// tests/lang.rs:628 assert_eq!(!Bar::id(), "FOO");</span>
<span class="pl-k">let</span> b = <span class="pl-smi">Bar</span> <span class="pl-kos">{</span> <span class="pl-c1">a</span><span class="pl-kos">:</span> <span class="pl-c1">2</span> <span class="pl-kos">}</span><span class="pl-kos">;</span>
b<span class="pl-kos">.</span><span class="pl-en">bark</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// this works though</span>
<span class="pl-k">impl</span> <span class="pl-smi">Bar</span> <span class="pl-kos">{</span>
<span class="pl-c">// This would add a similarly named implementation, that is difficult to call</span>
<span class="pl-c">// due to ambiguity.</span>
<span class="pl-c">// Interestingly, it also affects Foo, as well as Bar !!</span>
<span class="pl-c">// fn bark(&self) {</span>
<span class="pl-c">// println!("Grrrr {}", self.a);</span>
<span class="pl-c">// }</span>
<span class="pl-k">fn</span> <span class="pl-en">id</span><span class="pl-kos">(</span><span class="pl-kos">)</span> -> <span class="pl-c1">&</span><span class="pl-c1">'</span><span class="pl-ent">static</span> <span class="pl-smi">str</span> <span class="pl-kos">{</span>
<span class="pl-s">"BAR"</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-c">// b.bark(); // or f.bark();</span>
<span class="pl-c">// error: multiple applicable methods in scope [E0034]</span>
<span class="pl-c">// tests/lang.rs:625 f.bark();</span>
<span class="pl-c">// ^~~~~~</span>
<span class="pl-c">// tests/lang.rs:615:9: 617:10 note: candidate #1 is defined in an impl for the type `type_aliases::Foo`</span>
<span class="pl-c">// tests/lang.rs:615 fn bark(&self) {</span>
<span class="pl-c">// tests/lang.rs:616 println!("Wuff {}", self.a);</span>
<span class="pl-c">// tests/lang.rs:617 }</span>
<span class="pl-c">// tests/lang.rs:637:9: 639:10 note: candidate #2 is defined in an impl for the type `type_aliases::Foo`</span>
<span class="pl-c">// tests/lang.rs:637 fn bark(&self) {</span>
<span class="pl-c">// tests/lang.rs:638 println!("Grrrr {}", self.a);</span>
<span class="pl-en">assert_eq</span><span class="pl-en">!</span><span class="pl-kos">(</span><span class="pl-v">Bar</span>::id<span class="pl-kos">(</span><span class="pl-kos">)</span>, <span class="pl-s">"BAR"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">When compiling this now, I get this error, which seems wrong as <code class="notranslate">Bar</code> affects <code class="notranslate">Foo</code>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="tests/lang.rs:636:16: 636:23 error: multiple applicable methods in scope [E0034]
tests/lang.rs:636 assert_eq!(Foo::id(), "FOO");
^~~~~~~
<std macros>:1:1: 9:39 note: in expansion of assert_eq!
tests/lang.rs:636:5: 636:34 note: expansion site
tests/lang.rs:632:9: 634:10 note: candidate #1 is defined in an impl for the type `type_aliases::Foo`
tests/lang.rs:632 fn id() -> &'static str {
tests/lang.rs:633 "FOO"
tests/lang.rs:634 }
tests/lang.rs:655:9: 657:10 note: candidate #2 is defined in an impl for the type `type_aliases::Foo`
tests/lang.rs:655 fn id() -> &'static str {
tests/lang.rs:656 "BAR"
tests/lang.rs:657 }
<std macros>:5:10: 5:20 error: the type of this value must be known in this context
<std macros>:5 if ! ( ( * left_val == * right_val ) && ( * right_val == * left_val ) ) {
^~~~~~~~~~
<std macros>:1:1: 9:39 note: in expansion of assert_eq!
tests/lang.rs:636:5: 636:34 note: expansion site
<std macros>:5:24: 5:35 error: the type of this value must be known in this context
<std macros>:5 if ! ( ( * left_val == * right_val ) && ( * right_val == * left_val ) ) {
^~~~~~~~~~~
<std macros>:1:1: 9:39 note: in expansion of assert_eq!
tests/lang.rs:636:5: 636:34 note: expansion site
tests/lang.rs:670:16: 670:23 error: multiple applicable methods in scope [E0034]
tests/lang.rs:670 assert_eq!(Bar::id(), "BAR");
^~~~~~~
<std macros>:1:1: 9:39 note: in expansion of assert_eq!
tests/lang.rs:670:5: 670:34 note: expansion site
tests/lang.rs:632:9: 634:10 note: candidate #1 is defined in an impl for the type `type_aliases::Foo`
tests/lang.rs:632 fn id() -> &'static str {
tests/lang.rs:633 "FOO"
tests/lang.rs:634 }
tests/lang.rs:655:9: 657:10 note: candidate #2 is defined in an impl for the type `type_aliases::Foo`
tests/lang.rs:655 fn id() -> &'static str {
tests/lang.rs:656 "BAR"
tests/lang.rs:657 }
<std macros>:5:10: 5:20 error: the type of this value must be known in this context
<std macros>:5 if ! ( ( * left_val == * right_val ) && ( * right_val == * left_val ) ) {
^~~~~~~~~~
<std macros>:1:1: 9:39 note: in expansion of assert_eq!
tests/lang.rs:670:5: 670:34 note: expansion site
<std macros>:5:24: 5:35 error: the type of this value must be known in this context
<std macros>:5 if ! ( ( * left_val == * right_val ) && ( * right_val == * left_val ) ) {
^~~~~~~~~~~
<std macros>:1:1: 9:39 note: in expansion of assert_eq!
tests/lang.rs:670:5: 670:34 note: expansion site"><pre class="notranslate"><code class="notranslate">tests/lang.rs:636:16: 636:23 error: multiple applicable methods in scope [E0034]
tests/lang.rs:636 assert_eq!(Foo::id(), "FOO");
^~~~~~~
<std macros>:1:1: 9:39 note: in expansion of assert_eq!
tests/lang.rs:636:5: 636:34 note: expansion site
tests/lang.rs:632:9: 634:10 note: candidate #1 is defined in an impl for the type `type_aliases::Foo`
tests/lang.rs:632 fn id() -> &'static str {
tests/lang.rs:633 "FOO"
tests/lang.rs:634 }
tests/lang.rs:655:9: 657:10 note: candidate #2 is defined in an impl for the type `type_aliases::Foo`
tests/lang.rs:655 fn id() -> &'static str {
tests/lang.rs:656 "BAR"
tests/lang.rs:657 }
<std macros>:5:10: 5:20 error: the type of this value must be known in this context
<std macros>:5 if ! ( ( * left_val == * right_val ) && ( * right_val == * left_val ) ) {
^~~~~~~~~~
<std macros>:1:1: 9:39 note: in expansion of assert_eq!
tests/lang.rs:636:5: 636:34 note: expansion site
<std macros>:5:24: 5:35 error: the type of this value must be known in this context
<std macros>:5 if ! ( ( * left_val == * right_val ) && ( * right_val == * left_val ) ) {
^~~~~~~~~~~
<std macros>:1:1: 9:39 note: in expansion of assert_eq!
tests/lang.rs:636:5: 636:34 note: expansion site
tests/lang.rs:670:16: 670:23 error: multiple applicable methods in scope [E0034]
tests/lang.rs:670 assert_eq!(Bar::id(), "BAR");
^~~~~~~
<std macros>:1:1: 9:39 note: in expansion of assert_eq!
tests/lang.rs:670:5: 670:34 note: expansion site
tests/lang.rs:632:9: 634:10 note: candidate #1 is defined in an impl for the type `type_aliases::Foo`
tests/lang.rs:632 fn id() -> &'static str {
tests/lang.rs:633 "FOO"
tests/lang.rs:634 }
tests/lang.rs:655:9: 657:10 note: candidate #2 is defined in an impl for the type `type_aliases::Foo`
tests/lang.rs:655 fn id() -> &'static str {
tests/lang.rs:656 "BAR"
tests/lang.rs:657 }
<std macros>:5:10: 5:20 error: the type of this value must be known in this context
<std macros>:5 if ! ( ( * left_val == * right_val ) && ( * right_val == * left_val ) ) {
^~~~~~~~~~
<std macros>:1:1: 9:39 note: in expansion of assert_eq!
tests/lang.rs:670:5: 670:34 note: expansion site
<std macros>:5:24: 5:35 error: the type of this value must be known in this context
<std macros>:5 if ! ( ( * left_val == * right_val ) && ( * right_val == * left_val ) ) {
^~~~~~~~~~~
<std macros>:1:1: 9:39 note: in expansion of assert_eq!
tests/lang.rs:670:5: 670:34 note: expansion site
</code></pre></div>
<p dir="auto">Even if this is now desired, I think the compiler message could be improved - it looks similar for the two candidates, and if it wasn't for the code shown below it, I would look like it means the same thing.</p>
<h3 dir="auto">Meta</h3>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ rustc --verbose --version
rustc 1.0.0-nightly (4db0b3246 2015-02-25) (built 2015-02-25)
binary: rustc
commit-hash: 4db0b32467535d718d6474de7ae8d1007d900818
commit-date: 2015-02-25
build-date: 2015-02-25
host: x86_64-apple-darwin
release: 1.0.0-nightly"><pre class="notranslate">$ rustc --verbose --version
rustc 1.0.0-nightly (4db0b3246 2015-02-25) (built 2015-02-25)
binary: rustc
commit-hash: 4db0b32467535d718d6474de7ae8d1007d900818
commit-date: 2015-02-25
build-date: 2015-02-25
host: x86_64-apple-darwin
release: 1.0.0-nightly</pre></div> | 0 |
<p dir="auto">I assumed <code class="notranslate">macroexpand</code> is supposed to produce the same code whether or not if it expands all the macros at once or sequentially expands macros with <code class="notranslate">recursive = false</code> option.</p>
<p dir="auto">Here is a MRE where <code class="notranslate">macroexpand(m, ex; recursive = true)</code> produces valid code while sequential application of <code class="notranslate">macroexpand(m, ex; recursive = false)</code> leads to different code (and invalid code as a consequence).</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="using Test
ex = :(@test_warn "foo" println(stderr::IO, "foo"))
fully_expanded = macroexpand(@__MODULE__, ex)
Core.eval(@__MODULE__, fully_expanded) # runs w/o any problem
partially_expanded = macroexpand(@__MODULE__, ex; recursive = false) # expand `@test_warn`
partially_expanded2 = macroexpand(@__MODULE__, partially_expanded; recursive = false) # expand `@test`
Core.eval(@__MODULE__, partially_expanded2) # leads to syntax error
Core.eval(@__MODULE__, partially_expanded) # this also leads to syntax error"><pre class="notranslate"><span class="pl-k">using</span> Test
ex <span class="pl-k">=</span> :(<span class="pl-c1">@test_warn</span> <span class="pl-s"><span class="pl-pds">"</span>foo<span class="pl-pds">"</span></span> <span class="pl-c1">println</span>(<span class="pl-c1">stderr</span><span class="pl-k">::</span><span class="pl-c1">IO</span>, <span class="pl-s"><span class="pl-pds">"</span>foo<span class="pl-pds">"</span></span>))
fully_expanded <span class="pl-k">=</span> <span class="pl-c1">macroexpand</span>(<span class="pl-c1">@__MODULE__</span>, ex)
Core<span class="pl-k">.</span><span class="pl-c1">eval</span>(<span class="pl-c1">@__MODULE__</span>, fully_expanded) <span class="pl-c"><span class="pl-c">#</span> runs w/o any problem</span>
partially_expanded <span class="pl-k">=</span> <span class="pl-c1">macroexpand</span>(<span class="pl-c1">@__MODULE__</span>, ex; recursive <span class="pl-k">=</span> <span class="pl-c1">false</span>) <span class="pl-c"><span class="pl-c">#</span> expand `@test_warn`</span>
partially_expanded2 <span class="pl-k">=</span> <span class="pl-c1">macroexpand</span>(<span class="pl-c1">@__MODULE__</span>, partially_expanded; recursive <span class="pl-k">=</span> <span class="pl-c1">false</span>) <span class="pl-c"><span class="pl-c">#</span> expand `@test`</span>
Core<span class="pl-k">.</span><span class="pl-c1">eval</span>(<span class="pl-c1">@__MODULE__</span>, partially_expanded2) <span class="pl-c"><span class="pl-c">#</span> leads to syntax error</span>
Core<span class="pl-k">.</span><span class="pl-c1">eval</span>(<span class="pl-c1">@__MODULE__</span>, partially_expanded) <span class="pl-c"><span class="pl-c">#</span> this also leads to syntax error</span></pre></div> | <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia> macro foo()
f = esc(:f); :(let $f(x) = x; $f(3); end)
end
@foo (macro with 1 method)
julia> @foo
ERROR: syntax: invalid function name "(escape f)"
julia> macroexpand(:(@foo))
:($(Expr(:error, "invalid function name \"(escape f)\"")))"><pre class="notranslate">julia<span class="pl-k">></span> <span class="pl-k">macro</span> <span class="pl-en">foo</span>()
f <span class="pl-k">=</span> <span class="pl-en">esc</span>(<span class="pl-c1">:f</span>); :(<span class="pl-k">let</span> <span class="pl-k">$</span><span class="pl-en">f</span>(x) <span class="pl-k">=</span> x; <span class="pl-k">$</span><span class="pl-c1">f</span>(<span class="pl-c1">3</span>); <span class="pl-k">end</span>)
<span class="pl-k">end</span>
<span class="pl-c1">@foo</span> (<span class="pl-k">macro</span> with <span class="pl-c1">1</span> method)
julia<span class="pl-k">></span> <span class="pl-c1">@foo</span>
ERROR<span class="pl-k">:</span> syntax<span class="pl-k">:</span> invalid <span class="pl-k">function</span> name <span class="pl-s"><span class="pl-pds">"</span>(escape f)<span class="pl-pds">"</span></span>
julia<span class="pl-k">></span> <span class="pl-c1">macroexpand</span>(:(<span class="pl-c1">@foo</span>))
:(<span class="pl-k">$</span>(<span class="pl-c1">Expr</span>(<span class="pl-c1">:error</span>, <span class="pl-s"><span class="pl-pds">"</span>invalid function name <span class="pl-cce">\"</span>(escape f)<span class="pl-cce">\"</span><span class="pl-pds">"</span></span>)))</pre></div>
<p dir="auto">It looks like <code class="notranslate">macroexpand.scm</code> is forgetting to unescape somewhere. <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/JeffBezanson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/JeffBezanson">@JeffBezanson</a>, any ideas?</p>
<p dir="auto">(I'm running into this when trying to fix a bug I found in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="202254218" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/20164" data-hovercard-type="pull_request" data-hovercard-url="/JuliaLang/julia/pull/20164/hovercard" href="https://github.com/JuliaLang/julia/pull/20164">#20164</a>.)</p> | 1 |
<p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/scipy/ticket/1764" rel="nofollow">http://projects.scipy.org/scipy/ticket/1764</a> on 2012-11-03 by trac user theyoud, assigned to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pv/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pv">@pv</a>.</em></p>
<p dir="auto">Interpolation (and spline) functions, such as interpolation.interp1d, currently require the array of independent variables (x values) be given in ascending order. These functions could be enhanced to also accept descending order. Such a modification would avoid unnecessary reversing of arrays. Also it would make the routines harder to break.</p>
<p dir="auto">Currently if an array in descending order is specified for x, the behavior is problematic. The interpolation function is created without error, but when you try to evaluate the interpolation function (at an x value that is in range) you get an error message that the x value is out of range.</p>
<p dir="auto">The following code illustrates the problem I describe above:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import numpy as np
from scipy.interpolate import interp1d
xa = np.arange(10)[::-1]
ya = xa**2
f = interp1d(xa , ya)
f(5.5)"><pre class="notranslate"><code class="notranslate">import numpy as np
from scipy.interpolate import interp1d
xa = np.arange(10)[::-1]
ya = xa**2
f = interp1d(xa , ya)
f(5.5)
</code></pre></div>
<p dir="auto">While the interpolation fn. f is created, there is an error on the attempted evaluation.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ValueError: A value in x_new is below the interpolation range."><pre class="notranslate"><code class="notranslate">ValueError: A value in x_new is below the interpolation range.
</code></pre></div>
<p dir="auto">It's probably a "bug" to create a non-functioning interpolation fn. The better "enhancement" is probably to accept both ascending and descending order.</p> | <h3 dir="auto">Describe your issue.</h3>
<p dir="auto">Hi all,</p>
<p dir="auto">Our Valgrind CICD run broke after upgrading to Scipy >= 1.9.2 from 1.9.1.<br>
The error does not occur without valgrind.</p>
<p dir="auto">Due to the valgrind involvement making an MRE is though. If needed I can create a MRE repo and add a maintainer.</p>
<p dir="auto">Some additional info:</p>
<ul dir="auto">
<li>OS: Ubuntu-latest</li>
<li>valgrind amd64 1:3.15.0-1ubuntu9.1</li>
</ul>
<p dir="auto">Bindings and generator:</p>
<ul dir="auto">
<li>Pybind11 v2.10.1</li>
<li>ninja v1.10.2.4</li>
</ul>
<p dir="auto">Extension does include a number of Numpy headers but nothing special.</p>
<p dir="auto">Valgrind is run with:</p>
<p dir="auto"><code class="notranslate">PYTHONMALLOC=malloc valgrind --leak-check=yes --track-origins=yes python -m pytest</code></p>
<p dir="auto">See <a href="https://github.com/RUrlus/ModelMetricUncertainty/blob/stable/.github/workflows/valgrind.yml">Workflow file</a> for details.</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 scipy.stats"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">scipy</span>.<span class="pl-s1">stats</span></pre></div>
<h3 dir="auto">Error message</h3>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="/opt/hostedtoolcache/Python/3.10.7/x64/lib/python3.10/site-packages/sklearn/utils/fixes.py:19: in <module>
import scipy.stats
/opt/hostedtoolcache/Python/3.10.7/x64/lib/python3.10/site-packages/scipy/stats/__init__.py:467: in <module>
from ._stats_py import *
/opt/hostedtoolcache/Python/3.10.7/x64/lib/python3.10/site-packages/scipy/stats/_stats_py.py:46: in <module>
from . import distributions
/opt/hostedtoolcache/Python/3.10.7/x64/lib/python3.10/site-packages/scipy/stats/distributions.py:10: in <module>
from . import _continuous_distns
/opt/hostedtoolcache/Python/3.10.7/x64/lib/python3.10/site-packages/scipy/stats/_continuous_distns.py:31: in <module>
import scipy.stats._boost as _boost
/opt/hostedtoolcache/Python/3.10.7/x64/lib/python3.10/site-packages/scipy/stats/_boost/__init__.py:1: in <module>
from scipy.stats._boost.beta_ufunc import (
E SystemError: initialization of beta_ufunc raised unreported exception"><pre class="notranslate">/opt/hostedtoolcache/Python/3.10.7/x64/lib/python3.10/site-packages/sklearn/utils/fixes.py:19: <span class="pl-k">in</span> <span class="pl-k"><</span>module<span class="pl-k">></span>
import scipy.stats
/opt/hostedtoolcache/Python/3.10.7/x64/lib/python3.10/site-packages/scipy/stats/__init__.py:467: <span class="pl-k">in</span> <span class="pl-k"><</span>module<span class="pl-k">></span>
from ._stats_py import <span class="pl-k">*</span>
/opt/hostedtoolcache/Python/3.10.7/x64/lib/python3.10/site-packages/scipy/stats/_stats_py.py:46: <span class="pl-k">in</span> <span class="pl-k"><</span>module<span class="pl-k">></span>
from <span class="pl-c1">.</span> import distributions
/opt/hostedtoolcache/Python/3.10.7/x64/lib/python3.10/site-packages/scipy/stats/distributions.py:10: <span class="pl-k">in</span> <span class="pl-k"><</span>module<span class="pl-k">></span>
from <span class="pl-c1">.</span> import _continuous_distns
/opt/hostedtoolcache/Python/3.10.7/x64/lib/python3.10/site-packages/scipy/stats/_continuous_distns.py:31: <span class="pl-k">in</span> <span class="pl-k"><</span>module<span class="pl-k">></span>
import scipy.stats._boost as _boost
/opt/hostedtoolcache/Python/3.10.7/x64/lib/python3.10/site-packages/scipy/stats/_boost/__init__.py:1: <span class="pl-k">in</span> <span class="pl-k"><</span>module<span class="pl-k">></span>
from scipy.stats._boost.beta_ufunc import (
E SystemError: initialization of beta_ufunc raised unreported exception</pre></div>
<h3 dir="auto">SciPy/NumPy/Python version information</h3>
<p dir="auto">1.9.3 1.23.3 sys.version_info(major=3, minor=10, micro=7, releaselevel='final', serial=0)</p> | 0 |
<p dir="auto">Docker does a credential check when pulling images, but not when using them. It will let you run an image that is already pulled even if you don't present credentials.</p>
<p dir="auto">That is reasonable behavior from the standpoint of the docker tool since it is not trying to be multi-user.</p>
<p dir="auto">However, it makes it hard to make Kubernetes multi-user. If an image is already pulled, (e.g. using <code class="notranslate">imagePullSecrets</code>, then anyone else can use that image by setting pull policy to <code class="notranslate">IfNotPresent</code>, even if they lack proper credentials.</p>
<p dir="auto">We could try to fix this by disallowing <code class="notranslate">IfNotPresent</code> pull policy on all pods, thus forcing a docker pull before each docker run, and failing the pod if the docker pull failed. We would need to implement and e2e test that.</p> | <h1 dir="auto">Problem statement</h1>
<p dir="auto">Some images require pull secrets in order to be used by the Kubelet. Pull secrets are per namespace. Imagine the following scenario:</p>
<ol dir="auto">
<li>If a pod in namespaceA has valid pull secrets for <code class="notranslate">foo/bar:stable</code>, when it is scheduled to a given node, the Kubelet uses the pull secrets to pull the image to the node</li>
<li>If a pod in namespaceB also refers to <code class="notranslate">foo/bar:stable</code> but does not have valid pull secrets for it, if it happens to be scheduled to the same node as the pod in step 1, the Kubelet respects the image pull policy</li>
<li>Because the image already exists on the node, if the pull policy is Never or IfNotPresent, the Kubelet runs the pod, even though namespaceB shouldn't be able to use that image.</li>
</ol>
<h1 dir="auto">Proposed solutions</h1>
<h2 dir="auto">Option 1 - Kubelet flag to ignore pull policy and always try to pull</h2>
<p dir="auto">Add a flag to the kubelet, <code class="notranslate">--always-pull-images</code> (or something similarly named) that, if true, would force the Kubelet to attempt to pull every image prior to running a pod, regardless of the image's pull policy.</p>
<p dir="auto">Pros:</p>
<ul dir="auto">
<li>Easy to implement</li>
<li>Guarantees that a namespace is allowed to use an image</li>
</ul>
<p dir="auto">Cons:</p>
<ul dir="auto">
<li>Overrides user-specified intent in image pull policy</li>
<li>Requires remote registry to be online to check authorization</li>
<li>Introduces small amount of latency to pod startup time (because of the additional network requests to the registry)</li>
</ul>
<h2 dir="auto">Option 2 - Keep an in-memory cache of which namespaces are allowed to use which images</h2>
<p dir="auto">After an image has been successfully pulled, record the mapping from namespace to image in an in-memory cache in the Kubelet. Subsequent attempts by pods in the same namespace to use the same image would respect the image pull policy. Any attempts by pods in other namespaces to use this image would ignore the image pull policy and instead force a pull attempt.</p>
<p dir="auto">Pros:</p>
<ul dir="auto">
<li>Doesn't override user-specified intent in image pull policy</li>
<li>No added latency to pod startup time</li>
</ul>
<p dir="auto">Cons:</p>
<ul dir="auto">
<li>Doesn't handle authorization revocation; if the credentials to pull an image have changed in the remote registry, there is no way to evict an entry from the cache, possibly allowing access to an image that would otherwise fail with option 1. This could be mitigated if the entries in the cache have a TTL.</li>
</ul>
<h1 dir="auto">Suggested path forward</h1>
<p dir="auto">Looking for feedback from the community on this one. I'd like to implement option 1 in the short term, with the default being false (so image pull policy is respected) to keep the status quo. If we can come to an agreement on option 2, I'd like to move to that eventually.</p>
<p dir="auto">@kubernetes/goog-node @kubernetes/rh-cluster-infra @kubernetes/sig-node</p> | 1 |
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1692009/52613881-8e34f580-2e44-11e9-8331-5f7210e34b2b.png"><img width="1031" alt="screenshot 2019-02-11 at 21 32 27" src="https://user-images.githubusercontent.com/1692009/52613881-8e34f580-2e44-11e9-8331-5f7210e34b2b.png" style="max-width: 100%;"></a></p>
<p dir="auto"><a href="https://github.com/JuliaLang/julia/blob/master/doc/src/manual/mathematical-operations.md#vectorized-dot-operatorsid-man-dot-operators">https://github.com/JuliaLang/julia/blob/master/doc/src/manual/mathematical-operations.md#vectorized-dot-operatorsid-man-dot-operators</a></p> | <p dir="auto">I suggest changing the monospace font used by the PDF documentation, so the special Unicode strings displayed in e.g. Manual -> Strings -> Unicode and UTF-8.</p> | 1 |
<h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 4.0.0</li>
<li>Operating System / Platform => Android</li>
<li>Compiler => Cmake</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="123866379" data-permission-text="Title is private" data-url="https://github.com/opencv/opencv_contrib/issues/490" data-hovercard-type="issue" data-hovercard-url="/opencv/opencv_contrib/issues/490/hovercard" href="https://github.com/opencv/opencv_contrib/issues/490">opencv/opencv_contrib#490</a> as per optimisation related changes implemented for x86 processor with the use of OpenCL and MKL Blas. Can i optimise the same dnn module with OpenBlas library for arm platforms?.</p>
<p dir="auto">Because in my reading of the CMakeLists.txt, I came on to this line</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="OCV_OPTION(WITH_OPENCL "Include OpenCL Runtime support" (NOT ANDROID AND NOT CV_DISABLE_OPTIMIZATION)
VISIBLE_IF NOT IOS AND NOT WINRT
VERIFY HAVE_OPENCL)"><pre class="notranslate"><code class="notranslate">OCV_OPTION(WITH_OPENCL "Include OpenCL Runtime support" (NOT ANDROID AND NOT CV_DISABLE_OPTIMIZATION)
VISIBLE_IF NOT IOS AND NOT WINRT
VERIFY HAVE_OPENCL)
</code></pre></div>
<p dir="auto">which i think even if i turn on OPENCL flag from terminal, it will not gonna be accepted.</p> | <h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 4.0.0</li>
<li>Operating System / Platform => ubuntu - docker image (jupyter/datascience-notebook:14fdfbf9cfc1)</li>
<li>Compiler => gcc version 7.3.0 (Ubuntu 7.3.0-27ubuntu1~18.04)</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">Building CXX object 3rdparty/protobuf/CMakeFiles/libprotobuf.dir/src/google/protobuf/arena.cc.o failes with:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="...
Scanning dependencies of target libprotobuf
[ 14%] Building CXX object 3rdparty/protobuf/CMakeFiles/libprotobuf.dir/src/google/protobuf/arena.cc.o
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:51:29: error: ‘SequenceNumber’ in namespace ‘google::protobuf::internal’ does not name a type
google::protobuf::internal::SequenceNumber ArenaImpl::lifecycle_id_generator_;
^~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘void google::protobuf::internal::ArenaImpl::Init()’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:68:43: error: ‘struct std::atomic<long int>’ has no member named ‘GetNext’
lifecycle_id_ = lifecycle_id_generator_.GetNext();
^~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:69:31: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(&hint_, 0);
^~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:70:31: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(&threads_, 0);
^~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:76:5: error: ‘InitBlock’ was not declared in this scope
InitBlock(initial_block_, &thread_cache(), options_.initial_block_size);
^~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:76:5: note: suggested alternative: ‘NewBlock’
InitBlock(initial_block_, &thread_cache(), options_.initial_block_size);
..."><pre class="notranslate">...
Scanning dependencies of target libprotobuf
[ 14%] Building CXX object 3rdparty/protobuf/CMakeFiles/libprotobuf.dir/src/google/protobuf/arena.cc.o
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:51:29: error: ‘SequenceNumber’ <span class="pl-k">in</span> namespace ‘google::protobuf::internal’ does not name a <span class="pl-c1">type</span>
google::protobuf::internal::SequenceNumber ArenaImpl::lifecycle_id_generator_<span class="pl-k">;</span>
^~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member <span class="pl-k">function</span> <span class="pl-en">‘void</span> <span class="pl-en">google::protobuf::internal::ArenaImpl::Init</span>()’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:68:43: error: ‘struct std::atomic<span class="pl-k"><</span>long int<span class="pl-k">></span>’ has no member named ‘GetNext’
lifecycle_id_ = <span class="pl-en">lifecycle_id_generator_.GetNext</span>();
^~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:69:31: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(<span class="pl-k">&</span>hint_, 0)<span class="pl-k">;</span>
^~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:70:31: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(<span class="pl-k">&</span>threads_, 0)<span class="pl-k">;</span>
^~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:76:5: error: ‘InitBlock’ was not declared <span class="pl-k">in</span> this scope
InitBlock(initial_block_, <span class="pl-k">&</span><span class="pl-en">thread_cache</span>(), options_.initial_block_size);
^~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:76:5: note: suggested alternative: ‘NewBlock’
InitBlock(initial_block_, <span class="pl-k">&</span><span class="pl-en">thread_cache</span>(), options_.initial_block_size);
...</pre></div>
<details>
<summary>cmake output</summary>
<p dir="auto">
</p><p dir="auto">Cmake Warnings</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="CMake Warning at cmake/OpenCVDetectPython.cmake:81 (message):
CMake's 'find_host_package(PythonInterp 2.7)' founds wrong Python version:
PYTHON_EXECUTABLE=/opt/conda/bin/python
PYTHON_VERSION_STRING=3.6.6
Consider specify 'PYTHON2_EXECUTABLE' variable via CMake command line or
environment variables
Call Stack (most recent call first):
cmake/OpenCVDetectPython.cmake:275 (find_python)
CMakeLists.txt:553 (include)
CMake Warning at cmake/OpenCVUtils.cmake:1336 (add_library):
Cannot generate a safe runtime search path for target opencv_core because
files in some directories may conflict with libraries in implicit
directories:
runtime library [libz.so.1] in /usr/lib/x86_64-linux-gnu may be hidden by files in:
/opt/conda/lib
Some of these libraries may not be found correctly.
Call Stack (most recent call first):
cmake/OpenCVModule.cmake:924 (ocv_add_library)
cmake/OpenCVModule.cmake:849 (_ocv_create_module)
modules/core/CMakeLists.txt:72 (ocv_create_module)"><pre class="notranslate">CMake Warning at cmake/OpenCVDetectPython.cmake:81 (message):
CMake<span class="pl-s"><span class="pl-pds">'</span>s <span class="pl-pds">'</span></span>find_host_package(PythonInterp 2.7)<span class="pl-s"><span class="pl-pds">'</span> founds wrong Python version:</span>
<span class="pl-s"></span>
<span class="pl-s"> PYTHON_EXECUTABLE=/opt/conda/bin/python</span>
<span class="pl-s"></span>
<span class="pl-s"> PYTHON_VERSION_STRING=3.6.6</span>
<span class="pl-s"></span>
<span class="pl-s"> Consider specify <span class="pl-pds">'</span></span>PYTHON2_EXECUTABLE<span class="pl-s"><span class="pl-pds">'</span> variable via CMake command line or</span>
<span class="pl-s"> environment variables</span>
<span class="pl-s"></span>
<span class="pl-s">Call Stack (most recent call first):</span>
<span class="pl-s"> cmake/OpenCVDetectPython.cmake:275 (find_python)</span>
<span class="pl-s"> CMakeLists.txt:553 (include)</span>
<span class="pl-s"></span>
<span class="pl-s"></span>
<span class="pl-s">CMake Warning at cmake/OpenCVUtils.cmake:1336 (add_library):</span>
<span class="pl-s"> Cannot generate a safe runtime search path for target opencv_core because</span>
<span class="pl-s"> files in some directories may conflict with libraries in implicit</span>
<span class="pl-s"> directories:</span>
<span class="pl-s"></span>
<span class="pl-s"> runtime library [libz.so.1] in /usr/lib/x86_64-linux-gnu may be hidden by files in:</span>
<span class="pl-s"> /opt/conda/lib</span>
<span class="pl-s"></span>
<span class="pl-s"> Some of these libraries may not be found correctly.</span>
<span class="pl-s">Call Stack (most recent call first):</span>
<span class="pl-s"> cmake/OpenCVModule.cmake:924 (ocv_add_library)</span>
<span class="pl-s"> cmake/OpenCVModule.cmake:849 (_ocv_create_module)</span>
<span class="pl-s"> modules/core/CMakeLists.txt:72 (ocv_create_module)</span></pre></div>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="-- The CXX compiler identification is GNU 7.3.0
-- The C compiler identification is GNU 7.3.0
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Found PythonInterp: /opt/conda/bin/python (found suitable version "3.6.6", minimum required is "2.7")
-- Consider using CMake 3.12+ for better Python support
-- Found PythonInterp: /opt/conda/bin/python3 (found suitable version "3.6.6", minimum required is "3.2")
-- Found PythonLibs: /opt/conda/lib/libpython3.6m.so (found suitable exact version "3.6.6")
-- Looking for ccache - not found
-- Performing Test HAVE_CXX_FSIGNED_CHAR
-- Performing Test HAVE_CXX_FSIGNED_CHAR - Success
-- Performing Test HAVE_C_FSIGNED_CHAR
-- Performing Test HAVE_C_FSIGNED_CHAR - Success
-- Performing Test HAVE_CXX_W
-- Performing Test HAVE_CXX_W - Success
-- Performing Test HAVE_C_W
-- Performing Test HAVE_C_W - Success
-- Performing Test HAVE_CXX_WALL
-- Performing Test HAVE_CXX_WALL - Success
-- Performing Test HAVE_C_WALL
-- Performing Test HAVE_C_WALL - Success
-- Performing Test HAVE_CXX_WERROR_RETURN_TYPE
-- Performing Test HAVE_CXX_WERROR_RETURN_TYPE - Success
-- Performing Test HAVE_C_WERROR_RETURN_TYPE
-- Performing Test HAVE_C_WERROR_RETURN_TYPE - Success
-- Performing Test HAVE_CXX_WERROR_NON_VIRTUAL_DTOR
-- Performing Test HAVE_CXX_WERROR_NON_VIRTUAL_DTOR - Success
-- Performing Test HAVE_C_WERROR_NON_VIRTUAL_DTOR
-- Performing Test HAVE_C_WERROR_NON_VIRTUAL_DTOR - Success
-- Performing Test HAVE_CXX_WERROR_ADDRESS
-- Performing Test HAVE_CXX_WERROR_ADDRESS - Success
-- Performing Test HAVE_C_WERROR_ADDRESS
-- Performing Test HAVE_C_WERROR_ADDRESS - Success
-- Performing Test HAVE_CXX_WERROR_SEQUENCE_POINT
-- Performing Test HAVE_CXX_WERROR_SEQUENCE_POINT - Success
-- Performing Test HAVE_C_WERROR_SEQUENCE_POINT
-- Performing Test HAVE_C_WERROR_SEQUENCE_POINT - Success
-- Performing Test HAVE_CXX_WFORMAT
-- Performing Test HAVE_CXX_WFORMAT - Success
-- Performing Test HAVE_C_WFORMAT
-- Performing Test HAVE_C_WFORMAT - Success
-- Performing Test HAVE_CXX_WERROR_FORMAT_SECURITY
-- Performing Test HAVE_CXX_WERROR_FORMAT_SECURITY - Success
-- Performing Test HAVE_C_WERROR_FORMAT_SECURITY
-- Performing Test HAVE_C_WERROR_FORMAT_SECURITY - Success
-- Performing Test HAVE_CXX_WMISSING_DECLARATIONS
-- Performing Test HAVE_CXX_WMISSING_DECLARATIONS - Success
-- Performing Test HAVE_C_WMISSING_DECLARATIONS
-- Performing Test HAVE_C_WMISSING_DECLARATIONS - Success
-- Performing Test HAVE_CXX_WMISSING_PROTOTYPES
-- Performing Test HAVE_CXX_WMISSING_PROTOTYPES - Failed
-- Performing Test HAVE_C_WMISSING_PROTOTYPES
-- Performing Test HAVE_C_WMISSING_PROTOTYPES - Success
-- Performing Test HAVE_CXX_WSTRICT_PROTOTYPES
-- Performing Test HAVE_CXX_WSTRICT_PROTOTYPES - Failed
-- Performing Test HAVE_C_WSTRICT_PROTOTYPES
-- Performing Test HAVE_C_WSTRICT_PROTOTYPES - Success
-- Performing Test HAVE_CXX_WUNDEF
-- Performing Test HAVE_CXX_WUNDEF - Success
-- Performing Test HAVE_C_WUNDEF
-- Performing Test HAVE_C_WUNDEF - Success
-- Performing Test HAVE_CXX_WINIT_SELF
-- Performing Test HAVE_CXX_WINIT_SELF - Success
-- Performing Test HAVE_C_WINIT_SELF
-- Performing Test HAVE_C_WINIT_SELF - Success
-- Performing Test HAVE_CXX_WPOINTER_ARITH
-- Performing Test HAVE_CXX_WPOINTER_ARITH - Success
-- Performing Test HAVE_C_WPOINTER_ARITH
-- Performing Test HAVE_C_WPOINTER_ARITH - Success
-- Performing Test HAVE_CXX_WSHADOW
-- Performing Test HAVE_CXX_WSHADOW - Success
-- Performing Test HAVE_C_WSHADOW
-- Performing Test HAVE_C_WSHADOW - Success
-- Performing Test HAVE_CXX_WSIGN_PROMO
-- Performing Test HAVE_CXX_WSIGN_PROMO - Success
-- Performing Test HAVE_C_WSIGN_PROMO
-- Performing Test HAVE_C_WSIGN_PROMO - Failed
-- Performing Test HAVE_CXX_WUNINITIALIZED
-- Performing Test HAVE_CXX_WUNINITIALIZED - Success
-- Performing Test HAVE_C_WUNINITIALIZED
-- Performing Test HAVE_C_WUNINITIALIZED - Success
-- Performing Test HAVE_CXX_WNO_NARROWING
-- Performing Test HAVE_CXX_WNO_NARROWING - Success
-- Performing Test HAVE_C_WNO_NARROWING
-- Performing Test HAVE_C_WNO_NARROWING - Success
-- Performing Test HAVE_CXX_WNO_DELETE_NON_VIRTUAL_DTOR
-- Performing Test HAVE_CXX_WNO_DELETE_NON_VIRTUAL_DTOR - Success
-- Performing Test HAVE_C_WNO_DELETE_NON_VIRTUAL_DTOR
-- Performing Test HAVE_C_WNO_DELETE_NON_VIRTUAL_DTOR - Failed
-- Performing Test HAVE_CXX_WNO_UNNAMED_TYPE_TEMPLATE_ARGS
-- Performing Test HAVE_CXX_WNO_UNNAMED_TYPE_TEMPLATE_ARGS - Failed
-- Performing Test HAVE_C_WNO_UNNAMED_TYPE_TEMPLATE_ARGS
-- Performing Test HAVE_C_WNO_UNNAMED_TYPE_TEMPLATE_ARGS - Failed
-- Performing Test HAVE_CXX_WNO_COMMENT
-- Performing Test HAVE_CXX_WNO_COMMENT - Success
-- Performing Test HAVE_C_WNO_COMMENT
-- Performing Test HAVE_C_WNO_COMMENT - Success
-- Performing Test HAVE_CXX_WIMPLICIT_FALLTHROUGH_3
-- Performing Test HAVE_CXX_WIMPLICIT_FALLTHROUGH_3 - Success
-- Performing Test HAVE_C_WIMPLICIT_FALLTHROUGH_3
-- Performing Test HAVE_C_WIMPLICIT_FALLTHROUGH_3 - Success
-- Performing Test HAVE_CXX_WNO_STRICT_OVERFLOW
-- Performing Test HAVE_CXX_WNO_STRICT_OVERFLOW - Success
-- Performing Test HAVE_C_WNO_STRICT_OVERFLOW
-- Performing Test HAVE_C_WNO_STRICT_OVERFLOW - Success
-- Performing Test HAVE_CXX_FDIAGNOSTICS_SHOW_OPTION
-- Performing Test HAVE_CXX_FDIAGNOSTICS_SHOW_OPTION - Success
-- Performing Test HAVE_C_FDIAGNOSTICS_SHOW_OPTION
-- Performing Test HAVE_C_FDIAGNOSTICS_SHOW_OPTION - Success
-- Performing Test HAVE_CXX_WNO_LONG_LONG
-- Performing Test HAVE_CXX_WNO_LONG_LONG - Success
-- Performing Test HAVE_C_WNO_LONG_LONG
-- Performing Test HAVE_C_WNO_LONG_LONG - Success
-- Performing Test HAVE_CXX_PTHREAD
-- Performing Test HAVE_CXX_PTHREAD - Success
-- Performing Test HAVE_C_PTHREAD
-- Performing Test HAVE_C_PTHREAD - Success
-- Performing Test HAVE_CXX_FOMIT_FRAME_POINTER
-- Performing Test HAVE_CXX_FOMIT_FRAME_POINTER - Success
-- Performing Test HAVE_C_FOMIT_FRAME_POINTER
-- Performing Test HAVE_C_FOMIT_FRAME_POINTER - Success
-- Performing Test HAVE_CXX_FFUNCTION_SECTIONS
-- Performing Test HAVE_CXX_FFUNCTION_SECTIONS - Success
-- Performing Test HAVE_C_FFUNCTION_SECTIONS
-- Performing Test HAVE_C_FFUNCTION_SECTIONS - Success
-- Performing Test HAVE_CXX_FDATA_SECTIONS
-- Performing Test HAVE_CXX_FDATA_SECTIONS - Success
-- Performing Test HAVE_C_FDATA_SECTIONS
-- Performing Test HAVE_C_FDATA_SECTIONS - Success
-- Performing Test HAVE_CXX_MSSE (check file: cmake/checks/cpu_sse.cpp)
-- Performing Test HAVE_CXX_MSSE - Success
-- Performing Test HAVE_CXX_MSSE2 (check file: cmake/checks/cpu_sse2.cpp)
-- Performing Test HAVE_CXX_MSSE2 - Success
-- Performing Test HAVE_CXX_MSSE3 (check file: cmake/checks/cpu_sse3.cpp)
-- Performing Test HAVE_CXX_MSSE3 - Success
-- Performing Test HAVE_CXX_MSSSE3 (check file: cmake/checks/cpu_ssse3.cpp)
-- Performing Test HAVE_CXX_MSSSE3 - Success
-- Performing Test HAVE_CXX_MSSE4_1 (check file: cmake/checks/cpu_sse41.cpp)
-- Performing Test HAVE_CXX_MSSE4_1 - Success
-- Performing Test HAVE_CXX_MPOPCNT (check file: cmake/checks/cpu_popcnt.cpp)
-- Performing Test HAVE_CXX_MPOPCNT - Success
-- Performing Test HAVE_CXX_MSSE4_2 (check file: cmake/checks/cpu_sse42.cpp)
-- Performing Test HAVE_CXX_MSSE4_2 - Success
-- Performing Test HAVE_CXX_MF16C (check file: cmake/checks/cpu_fp16.cpp)
-- Performing Test HAVE_CXX_MF16C - Success
-- Performing Test HAVE_CXX_MFMA
-- Performing Test HAVE_CXX_MFMA - Success
-- Performing Test HAVE_CXX_MAVX (check file: cmake/checks/cpu_avx.cpp)
-- Performing Test HAVE_CXX_MAVX - Success
-- Performing Test HAVE_CXX_MAVX2 (check file: cmake/checks/cpu_avx2.cpp)
-- Performing Test HAVE_CXX_MAVX2 - Success
-- Performing Test HAVE_CXX_MAVX512F (check file: cmake/checks/cpu_avx512.cpp)
-- Performing Test HAVE_CXX_MAVX512F - Success
-- Performing Test HAVE_CXX_MAVX512F_MAVX512CD_MAVX512VL_MAVX512BW_MAVX512DQ (check file: cmake/checks/cpu_avx512skx.cpp)
-- Performing Test HAVE_CXX_MAVX512F_MAVX512CD_MAVX512VL_MAVX512BW_MAVX512DQ - Success
-- Performing Test HAVE_CPU_BASELINE_FLAGS
-- Performing Test HAVE_CPU_BASELINE_FLAGS - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_SSE4_1
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_SSE4_1 - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_SSE4_2
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_SSE4_2 - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_FP16
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_FP16 - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX2
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX2 - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX512_SKX
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX512_SKX - Success
-- Performing Test HAVE_CXX_FVISIBILITY_HIDDEN
-- Performing Test HAVE_CXX_FVISIBILITY_HIDDEN - Success
-- Performing Test HAVE_C_FVISIBILITY_HIDDEN
-- Performing Test HAVE_C_FVISIBILITY_HIDDEN - Success
-- Performing Test HAVE_CXX_FVISIBILITY_INLINES_HIDDEN
-- Performing Test HAVE_CXX_FVISIBILITY_INLINES_HIDDEN - Success
-- Performing Test HAVE_C_FVISIBILITY_INLINES_HIDDEN
-- Performing Test HAVE_C_FVISIBILITY_INLINES_HIDDEN - Failed
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for posix_memalign
-- Looking for posix_memalign - found
-- Looking for malloc.h
-- Looking for malloc.h - found
-- Looking for memalign
-- Looking for memalign - found
-- Check if the system is big endian
-- Searching 16 bit integer
-- Looking for sys/types.h
-- Looking for sys/types.h - found
-- Looking for stdint.h
-- Looking for stdint.h - found
-- Looking for stddef.h
-- Looking for stddef.h - found
-- Check size of unsigned short
-- Check size of unsigned short - done
-- Using unsigned short
-- Check if the system is big endian - little endian
-- Found ZLIB: /usr/lib/x86_64-linux-gnu/libz.so (found suitable version "1.2.11", minimum required is "1.2.3")
-- Found JPEG: /usr/lib/x86_64-linux-gnu/libjpeg.so
-- Found TIFF: /usr/lib/x86_64-linux-gnu/libtiff.so (found version "4.0.9")
-- Performing Test HAVE_C_WNO_UNUSED_VARIABLE
-- Performing Test HAVE_C_WNO_UNUSED_VARIABLE - Success
-- Performing Test HAVE_C_WNO_UNUSED_FUNCTION
-- Performing Test HAVE_C_WNO_UNUSED_FUNCTION - Success
-- Performing Test HAVE_C_WNO_SHADOW
-- Performing Test HAVE_C_WNO_SHADOW - Success
-- Performing Test HAVE_C_WNO_MAYBE_UNINITIALIZED
-- Performing Test HAVE_C_WNO_MAYBE_UNINITIALIZED - Success
-- Performing Test HAVE_C_WNO_MISSING_PROTOTYPES
-- Performing Test HAVE_C_WNO_MISSING_PROTOTYPES - Success
-- Performing Test HAVE_C_WNO_MISSING_DECLARATIONS
-- Performing Test HAVE_C_WNO_MISSING_DECLARATIONS - Success
-- Performing Test HAVE_C_WNO_IMPLICIT_FALLTHROUGH
-- Performing Test HAVE_C_WNO_IMPLICIT_FALLTHROUGH - Success
-- Could NOT find Jasper (missing: JASPER_LIBRARIES JASPER_INCLUDE_DIR)
-- Performing Test HAVE_C_WNO_IMPLICIT_FUNCTION_DECLARATION
-- Performing Test HAVE_C_WNO_IMPLICIT_FUNCTION_DECLARATION - Success
-- Performing Test HAVE_C_WNO_UNINITIALIZED
-- Performing Test HAVE_C_WNO_UNINITIALIZED - Success
-- Performing Test HAVE_C_WNO_UNUSED_BUT_SET_PARAMETER
-- Performing Test HAVE_C_WNO_UNUSED_BUT_SET_PARAMETER - Success
-- Performing Test HAVE_C_WNO_UNUSED
-- Performing Test HAVE_C_WNO_UNUSED - Success
-- Performing Test HAVE_C_WNO_SIGN_COMPARE
-- Performing Test HAVE_C_WNO_SIGN_COMPARE - Success
-- Performing Test HAVE_C_WNO_POINTER_COMPARE
-- Performing Test HAVE_C_WNO_POINTER_COMPARE - Success
-- Performing Test HAVE_C_WNO_ABSOLUTE_VALUE
-- Performing Test HAVE_C_WNO_ABSOLUTE_VALUE - Failed
-- Performing Test HAVE_C_WNO_UNUSED_PARAMETER
-- Performing Test HAVE_C_WNO_UNUSED_PARAMETER - Success
-- Performing Test HAVE_C_WNO_STRICT_PROTOTYPES
-- Performing Test HAVE_C_WNO_STRICT_PROTOTYPES - Success
-- Found ZLIB: /usr/lib/x86_64-linux-gnu/libz.so (found version "1.2.11")
-- Found PNG: /usr/lib/x86_64-linux-gnu/libpng.so (found version "1.6.34")
-- Looking for /usr/include/libpng/png.h
-- Looking for /usr/include/libpng/png.h - found
-- Looking for semaphore.h
-- Looking for semaphore.h - found
-- Performing Test HAVE_CXX_WNO_SHADOW
-- Performing Test HAVE_CXX_WNO_SHADOW - Success
-- Performing Test HAVE_CXX_WNO_UNUSED
-- Performing Test HAVE_CXX_WNO_UNUSED - Success
-- Performing Test HAVE_CXX_WNO_SIGN_COMPARE
-- Performing Test HAVE_CXX_WNO_SIGN_COMPARE - Success
-- Performing Test HAVE_CXX_WNO_UNDEF
-- Performing Test HAVE_CXX_WNO_UNDEF - Success
-- Performing Test HAVE_CXX_WNO_MISSING_DECLARATIONS
-- Performing Test HAVE_CXX_WNO_MISSING_DECLARATIONS - Success
-- Performing Test HAVE_CXX_WNO_UNINITIALIZED
-- Performing Test HAVE_CXX_WNO_UNINITIALIZED - Success
-- Performing Test HAVE_CXX_WNO_SWITCH
-- Performing Test HAVE_CXX_WNO_SWITCH - Success
-- Performing Test HAVE_CXX_WNO_PARENTHESES
-- Performing Test HAVE_CXX_WNO_PARENTHESES - Success
-- Performing Test HAVE_CXX_WNO_ARRAY_BOUNDS
-- Performing Test HAVE_CXX_WNO_ARRAY_BOUNDS - Success
-- Performing Test HAVE_CXX_WNO_EXTRA
-- Performing Test HAVE_CXX_WNO_EXTRA - Success
-- Performing Test HAVE_CXX_WNO_DEPRECATED_DECLARATIONS
-- Performing Test HAVE_CXX_WNO_DEPRECATED_DECLARATIONS - Success
-- Performing Test HAVE_CXX_WNO_MISLEADING_INDENTATION
-- Performing Test HAVE_CXX_WNO_MISLEADING_INDENTATION - Success
-- Performing Test HAVE_CXX_WNO_DEPRECATED
-- Performing Test HAVE_CXX_WNO_DEPRECATED - Success
-- Performing Test HAVE_CXX_WNO_SUGGEST_OVERRIDE
-- Performing Test HAVE_CXX_WNO_SUGGEST_OVERRIDE - Success
-- Performing Test HAVE_CXX_WNO_INCONSISTENT_MISSING_OVERRIDE
-- Performing Test HAVE_CXX_WNO_INCONSISTENT_MISSING_OVERRIDE - Failed
-- Performing Test HAVE_CXX_WNO_IMPLICIT_FALLTHROUGH
-- Performing Test HAVE_CXX_WNO_IMPLICIT_FALLTHROUGH - Success
-- Checking for module 'gtk+-3.0'
-- No package 'gtk+-3.0' found
-- Checking for module 'gtk+-2.0'
-- No package 'gtk+-2.0' found
-- Checking for module 'gthread-2.0'
-- No package 'gthread-2.0' found
-- Checking for module 'gstreamer-base-1.0'
-- No package 'gstreamer-base-1.0' found
-- Checking for module 'gstreamer-video-1.0'
-- No package 'gstreamer-video-1.0' found
-- Checking for module 'gstreamer-app-1.0'
-- No package 'gstreamer-app-1.0' found
-- Checking for module 'gstreamer-riff-1.0'
-- No package 'gstreamer-riff-1.0' found
-- Checking for module 'gstreamer-pbutils-1.0'
-- No package 'gstreamer-pbutils-1.0' found
-- Checking for module 'gstreamer-base-0.10'
-- No package 'gstreamer-base-0.10' found
-- Checking for module 'gstreamer-video-0.10'
-- No package 'gstreamer-video-0.10' found
-- Checking for module 'gstreamer-app-0.10'
-- No package 'gstreamer-app-0.10' found
-- Checking for module 'gstreamer-riff-0.10'
-- No package 'gstreamer-riff-0.10' found
-- Checking for module 'gstreamer-pbutils-0.10'
-- No package 'gstreamer-pbutils-0.10' found
-- Checking for module 'libdc1394-2'
-- No package 'libdc1394-2' found
-- Checking for module 'libdc1394'
-- No package 'libdc1394' found
-- Looking for linux/videodev2.h
-- Looking for linux/videodev2.h - found
-- Looking for sys/videoio.h
-- Looking for sys/videoio.h - not found
-- Checking for modules 'libavcodec;libavformat;libavutil;libswscale'
-- Found libavcodec, version 57.107.100
-- Found libavformat, version 57.83.100
-- Found libavutil, version 55.78.100
-- Found libswscale, version 4.8.100
-- Checking for module 'libavresample'
-- No package 'libavresample' found
-- IPPICV: Download: ippicv_2019_lnx_intel64_general_20180723.tgz
-- found Intel IPP (ICV version): 2019.0.0 [2019.0.0 Gold]
-- at: /home/jovyan/opencv-4.0.0/cmake_binary/3rdparty/ippicv/ippicv_lnx/icv
-- found Intel IPP Integration Wrappers sources: 2019.0.0
-- at: /home/jovyan/opencv-4.0.0/cmake_binary/3rdparty/ippicv/ippicv_lnx/iw
-- Could not find OpenBLAS include. Turning OpenBLAS_FOUND off
-- Could not find OpenBLAS lib. Turning OpenBLAS_FOUND off
-- Could NOT find Atlas (missing: Atlas_BLAS_LIBRARY)
-- Looking for sgemm_
-- Looking for sgemm_ - found
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - found
-- Found Threads: TRUE
-- A library with BLAS API found.
-- Looking for cheev_
-- Looking for cheev_ - found
-- A library with LAPACK API found.
-- LAPACK(LAPACK/Generic): LAPACK_LIBRARIES: /opt/conda/lib/libopenblas.so;/opt/conda/lib/libopenblas.so
-- LAPACK(LAPACK/Generic): Support is enabled.
-- Performing Test HAVE_CXX_WNO_MISSING_PROTOTYPES
-- Performing Test HAVE_CXX_WNO_MISSING_PROTOTYPES - Failed
-- Performing Test HAVE_CXX_WNO_UNUSED_PARAMETER
-- Performing Test HAVE_CXX_WNO_UNUSED_PARAMETER - Success
-- Performing Test HAVE_CXX_WNO_UNUSED_LOCAL_TYPEDEFS
-- Performing Test HAVE_CXX_WNO_UNUSED_LOCAL_TYPEDEFS - Success
-- Performing Test HAVE_CXX_WNO_SIGN_PROMO
-- Performing Test HAVE_CXX_WNO_SIGN_PROMO - Success
-- Performing Test HAVE_CXX_WNO_TAUTOLOGICAL_UNDEFINED_COMPARE
-- Performing Test HAVE_CXX_WNO_TAUTOLOGICAL_UNDEFINED_COMPARE - Failed
-- Performing Test HAVE_CXX_WNO_IGNORED_QUALIFIERS
-- Performing Test HAVE_CXX_WNO_IGNORED_QUALIFIERS - Success
-- Performing Test HAVE_CXX_WNO_UNUSED_FUNCTION
-- Performing Test HAVE_CXX_WNO_UNUSED_FUNCTION - Success
-- Performing Test HAVE_CXX_WNO_UNUSED_CONST_VARIABLE
-- Performing Test HAVE_CXX_WNO_UNUSED_CONST_VARIABLE - Success
-- Performing Test HAVE_CXX_WNO_SHORTEN_64_TO_32
-- Performing Test HAVE_CXX_WNO_SHORTEN_64_TO_32 - Failed
-- Performing Test HAVE_CXX_WNO_INVALID_OFFSETOF
-- Performing Test HAVE_CXX_WNO_INVALID_OFFSETOF - Success
-- Performing Test HAVE_CXX_WNO_ENUM_COMPARE_SWITCH
-- Performing Test HAVE_CXX_WNO_ENUM_COMPARE_SWITCH - Failed
-- Could NOT find JNI (missing: JAVA_AWT_LIBRARY JAVA_JVM_LIBRARY JAVA_INCLUDE_PATH JAVA_INCLUDE_PATH2 JAVA_AWT_INCLUDE_PATH)
-- Could NOT find Pylint (missing: PYLINT_EXECUTABLE)
-- Could NOT find Flake8 (missing: FLAKE8_EXECUTABLE)
-- VTK is not found. Please set -DVTK_DIR in CMake to VTK build directory, or to VTK install subdirectory with VTKConfig.cmake file
-- Looking for dlerror in dl
-- Looking for dlerror in dl - found
-- Performing Test HAVE_C_WNO_UNDEF
-- Performing Test HAVE_C_WNO_UNDEF - Success
-- ADE: Download: v0.1.1d.zip
-- OpenCV Python: during development append to PYTHONPATH: /home/jovyan/opencv-4.0.0/cmake_binary/python_loader
-- Performing Test HAVE_CXX_WNO_OVERLOADED_VIRTUAL
-- Performing Test HAVE_CXX_WNO_OVERLOADED_VIRTUAL - Success
-- Performing Test HAVE_CXX_WNO_UNUSED_PRIVATE_FIELD
-- Performing Test HAVE_CXX_WNO_UNUSED_PRIVATE_FIELD - Failed
-- OpenCL samples are skipped: OpenCL SDK is required
--
-- General configuration for OpenCV 4.0.0 =====================================
-- Version control: unknown
--
-- Platform:
-- Timestamp: 2018-11-29T09:51:17Z
-- Host: Linux 4.9.125-linuxkit x86_64
-- CMake: 3.10.2
-- CMake generator: Unix Makefiles
-- CMake build tool: /usr/bin/make
-- Configuration: RELEASE
--
-- CPU/HW features:
-- Baseline: SSE SSE2 SSE3
-- requested: SSE3
-- Dispatched code generation: SSE4_1 SSE4_2 FP16 AVX AVX2 AVX512_SKX
-- requested: SSE4_1 SSE4_2 AVX FP16 AVX2 AVX512_SKX
-- SSE4_1 (7 files): + SSSE3 SSE4_1
-- SSE4_2 (2 files): + SSSE3 SSE4_1 POPCNT SSE4_2
-- FP16 (1 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 AVX
-- AVX (5 files): + SSSE3 SSE4_1 POPCNT SSE4_2 AVX
-- AVX2 (13 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 FMA3 AVX AVX2
-- AVX512_SKX (1 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 FMA3 AVX AVX2 AVX_512F AVX512_SKX
--
-- C/C++:
-- Built as dynamic libs?: YES
-- C++ Compiler: /usr/bin/c++ (ver 7.3.0)
-- C++ flags (Release): -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wundef -Winit-self -Wpointer-arith -Wshadow -Wsign-promo -Wuninitialized -Winit-self -Wno-narrowing -Wno-delete-non-virtual-dtor -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -fvisibility-inlines-hidden -O3 -DNDEBUG -DNDEBUG
-- C++ flags (Debug): -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wundef -Winit-self -Wpointer-arith -Wshadow -Wsign-promo -Wuninitialized -Winit-self -Wno-narrowing -Wno-delete-non-virtual-dtor -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -fvisibility-inlines-hidden -g -O0 -DDEBUG -D_DEBUG
-- C Compiler: /usr/bin/cc
-- C flags (Release): -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Winit-self -Wno-narrowing -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG
-- C flags (Debug): -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Winit-self -Wno-narrowing -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -g -O0 -DDEBUG -D_DEBUG
-- Linker flags (Release):
-- Linker flags (Debug):
-- ccache: NO
-- Precompiled headers: YES
-- Extra dependencies: dl m pthread rt
-- 3rdparty dependencies:
--
-- OpenCV modules:
-- To be built: calib3d core dnn features2d flann gapi highgui imgcodecs imgproc java_bindings_generator ml objdetect photo python3 python_bindings_generator stitching ts video videoio
-- Disabled: world
-- Disabled by dependency: -
-- Unavailable: java js python2
-- Applications: tests perf_tests examples apps
-- Documentation: NO
-- Non-free algorithms: NO
--
-- GUI:
-- GTK+: NO
-- VTK support: NO
--
-- Media I/O:
-- ZLib: /usr/lib/x86_64-linux-gnu/libz.so (ver 1.2.11)
-- JPEG: /usr/lib/x86_64-linux-gnu/libjpeg.so (ver 80)
-- WEBP: build (ver encoder: 0x020e)
-- PNG: /usr/lib/x86_64-linux-gnu/libpng.so (ver 1.6.34)
-- TIFF: /usr/lib/x86_64-linux-gnu/libtiff.so (ver 42 / 4.0.9)
-- JPEG 2000: build (ver 1.900.1)
-- OpenEXR: build (ver 1.7.1)
-- HDR: YES
-- SUNRASTER: YES
-- PXM: YES
-- PFM: YES
--
-- Video I/O:
-- DC1394: NO
-- FFMPEG: YES
-- avcodec: YES (ver 57.107.100)
-- avformat: YES (ver 57.83.100)
-- avutil: YES (ver 55.78.100)
-- swscale: YES (ver 4.8.100)
-- avresample: NO
-- GStreamer: NO
-- v4l/v4l2: linux/videodev2.h
--
-- Parallel framework: pthreads
--
-- Trace: YES (with Intel ITT)
--
-- Other third-party libraries:
-- Intel IPP: 2019.0.0 Gold [2019.0.0]
-- at: /home/jovyan/opencv-4.0.0/cmake_binary/3rdparty/ippicv/ippicv_lnx/icv
-- Intel IPP IW: sources (2019.0.0)
-- at: /home/jovyan/opencv-4.0.0/cmake_binary/3rdparty/ippicv/ippicv_lnx/iw
-- Lapack: YES (/opt/conda/lib/libopenblas.so /opt/conda/lib/libopenblas.so)
-- Eigen: NO
-- Custom HAL: NO
-- Protobuf: build (3.5.1)
--
-- OpenCL: YES (no extra features)
-- Include path: /home/jovyan/opencv-4.0.0/3rdparty/include/opencl/1.2
-- Link libraries: Dynamic load
--
-- Python 3:
-- Interpreter: /opt/conda/bin/python3 (ver 3.6.6)
-- Libraries: /opt/conda/lib/libpython3.6m.so (ver 3.6.6)
-- numpy: /opt/conda/lib/python3.6/site-packages/numpy/core/include (ver 1.13.3)
-- packages path: lib/python3.6/site-packages
--
-- Python (for build): /opt/conda/bin/python3
--
-- Java:
-- ant: NO
-- JNI: NO
-- Java wrappers: NO
-- Java tests: NO
--
-- Install to: /opt/conda
-- -----------------------------------------------------------------
--
-- Configuring done
-- Generating done
-- Build files have been written to: /home/jovyan/opencv-4.0.0/cmake_binary"><pre class="notranslate">-- The CXX compiler identification is GNU 7.3.0
-- The C compiler identification is GNU 7.3.0
-- Check <span class="pl-k">for</span> working CXX compiler: /usr/bin/c++
-- Check <span class="pl-k">for</span> working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - <span class="pl-k">done</span>
-- Detecting CXX compile features
-- Detecting CXX compile features - <span class="pl-k">done</span>
-- Check <span class="pl-k">for</span> working C compiler: /usr/bin/cc
-- Check <span class="pl-k">for</span> working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - <span class="pl-k">done</span>
-- Detecting C compile features
-- Detecting C compile features - <span class="pl-k">done</span>
-- Found PythonInterp: /opt/conda/bin/python (found suitable version <span class="pl-s"><span class="pl-pds">"</span>3.6.6<span class="pl-pds">"</span></span>, minimum required is <span class="pl-s"><span class="pl-pds">"</span>2.7<span class="pl-pds">"</span></span>)
-- Consider using CMake 3.12+ <span class="pl-k">for</span> better Python support
-- Found PythonInterp: /opt/conda/bin/python3 (found suitable version <span class="pl-s"><span class="pl-pds">"</span>3.6.6<span class="pl-pds">"</span></span>, minimum required is <span class="pl-s"><span class="pl-pds">"</span>3.2<span class="pl-pds">"</span></span>)
-- Found PythonLibs: /opt/conda/lib/libpython3.6m.so (found suitable exact version <span class="pl-s"><span class="pl-pds">"</span>3.6.6<span class="pl-pds">"</span></span>)
-- Looking <span class="pl-k">for</span> ccache - not found
-- Performing Test HAVE_CXX_FSIGNED_CHAR
-- Performing Test HAVE_CXX_FSIGNED_CHAR - Success
-- Performing Test HAVE_C_FSIGNED_CHAR
-- Performing Test HAVE_C_FSIGNED_CHAR - Success
-- Performing Test HAVE_CXX_W
-- Performing Test HAVE_CXX_W - Success
-- Performing Test HAVE_C_W
-- Performing Test HAVE_C_W - Success
-- Performing Test HAVE_CXX_WALL
-- Performing Test HAVE_CXX_WALL - Success
-- Performing Test HAVE_C_WALL
-- Performing Test HAVE_C_WALL - Success
-- Performing Test HAVE_CXX_WERROR_RETURN_TYPE
-- Performing Test HAVE_CXX_WERROR_RETURN_TYPE - Success
-- Performing Test HAVE_C_WERROR_RETURN_TYPE
-- Performing Test HAVE_C_WERROR_RETURN_TYPE - Success
-- Performing Test HAVE_CXX_WERROR_NON_VIRTUAL_DTOR
-- Performing Test HAVE_CXX_WERROR_NON_VIRTUAL_DTOR - Success
-- Performing Test HAVE_C_WERROR_NON_VIRTUAL_DTOR
-- Performing Test HAVE_C_WERROR_NON_VIRTUAL_DTOR - Success
-- Performing Test HAVE_CXX_WERROR_ADDRESS
-- Performing Test HAVE_CXX_WERROR_ADDRESS - Success
-- Performing Test HAVE_C_WERROR_ADDRESS
-- Performing Test HAVE_C_WERROR_ADDRESS - Success
-- Performing Test HAVE_CXX_WERROR_SEQUENCE_POINT
-- Performing Test HAVE_CXX_WERROR_SEQUENCE_POINT - Success
-- Performing Test HAVE_C_WERROR_SEQUENCE_POINT
-- Performing Test HAVE_C_WERROR_SEQUENCE_POINT - Success
-- Performing Test HAVE_CXX_WFORMAT
-- Performing Test HAVE_CXX_WFORMAT - Success
-- Performing Test HAVE_C_WFORMAT
-- Performing Test HAVE_C_WFORMAT - Success
-- Performing Test HAVE_CXX_WERROR_FORMAT_SECURITY
-- Performing Test HAVE_CXX_WERROR_FORMAT_SECURITY - Success
-- Performing Test HAVE_C_WERROR_FORMAT_SECURITY
-- Performing Test HAVE_C_WERROR_FORMAT_SECURITY - Success
-- Performing Test HAVE_CXX_WMISSING_DECLARATIONS
-- Performing Test HAVE_CXX_WMISSING_DECLARATIONS - Success
-- Performing Test HAVE_C_WMISSING_DECLARATIONS
-- Performing Test HAVE_C_WMISSING_DECLARATIONS - Success
-- Performing Test HAVE_CXX_WMISSING_PROTOTYPES
-- Performing Test HAVE_CXX_WMISSING_PROTOTYPES - Failed
-- Performing Test HAVE_C_WMISSING_PROTOTYPES
-- Performing Test HAVE_C_WMISSING_PROTOTYPES - Success
-- Performing Test HAVE_CXX_WSTRICT_PROTOTYPES
-- Performing Test HAVE_CXX_WSTRICT_PROTOTYPES - Failed
-- Performing Test HAVE_C_WSTRICT_PROTOTYPES
-- Performing Test HAVE_C_WSTRICT_PROTOTYPES - Success
-- Performing Test HAVE_CXX_WUNDEF
-- Performing Test HAVE_CXX_WUNDEF - Success
-- Performing Test HAVE_C_WUNDEF
-- Performing Test HAVE_C_WUNDEF - Success
-- Performing Test HAVE_CXX_WINIT_SELF
-- Performing Test HAVE_CXX_WINIT_SELF - Success
-- Performing Test HAVE_C_WINIT_SELF
-- Performing Test HAVE_C_WINIT_SELF - Success
-- Performing Test HAVE_CXX_WPOINTER_ARITH
-- Performing Test HAVE_CXX_WPOINTER_ARITH - Success
-- Performing Test HAVE_C_WPOINTER_ARITH
-- Performing Test HAVE_C_WPOINTER_ARITH - Success
-- Performing Test HAVE_CXX_WSHADOW
-- Performing Test HAVE_CXX_WSHADOW - Success
-- Performing Test HAVE_C_WSHADOW
-- Performing Test HAVE_C_WSHADOW - Success
-- Performing Test HAVE_CXX_WSIGN_PROMO
-- Performing Test HAVE_CXX_WSIGN_PROMO - Success
-- Performing Test HAVE_C_WSIGN_PROMO
-- Performing Test HAVE_C_WSIGN_PROMO - Failed
-- Performing Test HAVE_CXX_WUNINITIALIZED
-- Performing Test HAVE_CXX_WUNINITIALIZED - Success
-- Performing Test HAVE_C_WUNINITIALIZED
-- Performing Test HAVE_C_WUNINITIALIZED - Success
-- Performing Test HAVE_CXX_WNO_NARROWING
-- Performing Test HAVE_CXX_WNO_NARROWING - Success
-- Performing Test HAVE_C_WNO_NARROWING
-- Performing Test HAVE_C_WNO_NARROWING - Success
-- Performing Test HAVE_CXX_WNO_DELETE_NON_VIRTUAL_DTOR
-- Performing Test HAVE_CXX_WNO_DELETE_NON_VIRTUAL_DTOR - Success
-- Performing Test HAVE_C_WNO_DELETE_NON_VIRTUAL_DTOR
-- Performing Test HAVE_C_WNO_DELETE_NON_VIRTUAL_DTOR - Failed
-- Performing Test HAVE_CXX_WNO_UNNAMED_TYPE_TEMPLATE_ARGS
-- Performing Test HAVE_CXX_WNO_UNNAMED_TYPE_TEMPLATE_ARGS - Failed
-- Performing Test HAVE_C_WNO_UNNAMED_TYPE_TEMPLATE_ARGS
-- Performing Test HAVE_C_WNO_UNNAMED_TYPE_TEMPLATE_ARGS - Failed
-- Performing Test HAVE_CXX_WNO_COMMENT
-- Performing Test HAVE_CXX_WNO_COMMENT - Success
-- Performing Test HAVE_C_WNO_COMMENT
-- Performing Test HAVE_C_WNO_COMMENT - Success
-- Performing Test HAVE_CXX_WIMPLICIT_FALLTHROUGH_3
-- Performing Test HAVE_CXX_WIMPLICIT_FALLTHROUGH_3 - Success
-- Performing Test HAVE_C_WIMPLICIT_FALLTHROUGH_3
-- Performing Test HAVE_C_WIMPLICIT_FALLTHROUGH_3 - Success
-- Performing Test HAVE_CXX_WNO_STRICT_OVERFLOW
-- Performing Test HAVE_CXX_WNO_STRICT_OVERFLOW - Success
-- Performing Test HAVE_C_WNO_STRICT_OVERFLOW
-- Performing Test HAVE_C_WNO_STRICT_OVERFLOW - Success
-- Performing Test HAVE_CXX_FDIAGNOSTICS_SHOW_OPTION
-- Performing Test HAVE_CXX_FDIAGNOSTICS_SHOW_OPTION - Success
-- Performing Test HAVE_C_FDIAGNOSTICS_SHOW_OPTION
-- Performing Test HAVE_C_FDIAGNOSTICS_SHOW_OPTION - Success
-- Performing Test HAVE_CXX_WNO_LONG_LONG
-- Performing Test HAVE_CXX_WNO_LONG_LONG - Success
-- Performing Test HAVE_C_WNO_LONG_LONG
-- Performing Test HAVE_C_WNO_LONG_LONG - Success
-- Performing Test HAVE_CXX_PTHREAD
-- Performing Test HAVE_CXX_PTHREAD - Success
-- Performing Test HAVE_C_PTHREAD
-- Performing Test HAVE_C_PTHREAD - Success
-- Performing Test HAVE_CXX_FOMIT_FRAME_POINTER
-- Performing Test HAVE_CXX_FOMIT_FRAME_POINTER - Success
-- Performing Test HAVE_C_FOMIT_FRAME_POINTER
-- Performing Test HAVE_C_FOMIT_FRAME_POINTER - Success
-- Performing Test HAVE_CXX_FFUNCTION_SECTIONS
-- Performing Test HAVE_CXX_FFUNCTION_SECTIONS - Success
-- Performing Test HAVE_C_FFUNCTION_SECTIONS
-- Performing Test HAVE_C_FFUNCTION_SECTIONS - Success
-- Performing Test HAVE_CXX_FDATA_SECTIONS
-- Performing Test HAVE_CXX_FDATA_SECTIONS - Success
-- Performing Test HAVE_C_FDATA_SECTIONS
-- Performing Test HAVE_C_FDATA_SECTIONS - Success
-- Performing Test HAVE_CXX_MSSE (check file: cmake/checks/cpu_sse.cpp)
-- Performing Test HAVE_CXX_MSSE - Success
-- Performing Test HAVE_CXX_MSSE2 (check file: cmake/checks/cpu_sse2.cpp)
-- Performing Test HAVE_CXX_MSSE2 - Success
-- Performing Test HAVE_CXX_MSSE3 (check file: cmake/checks/cpu_sse3.cpp)
-- Performing Test HAVE_CXX_MSSE3 - Success
-- Performing Test HAVE_CXX_MSSSE3 (check file: cmake/checks/cpu_ssse3.cpp)
-- Performing Test HAVE_CXX_MSSSE3 - Success
-- Performing Test HAVE_CXX_MSSE4_1 (check file: cmake/checks/cpu_sse41.cpp)
-- Performing Test HAVE_CXX_MSSE4_1 - Success
-- Performing Test HAVE_CXX_MPOPCNT (check file: cmake/checks/cpu_popcnt.cpp)
-- Performing Test HAVE_CXX_MPOPCNT - Success
-- Performing Test HAVE_CXX_MSSE4_2 (check file: cmake/checks/cpu_sse42.cpp)
-- Performing Test HAVE_CXX_MSSE4_2 - Success
-- Performing Test HAVE_CXX_MF16C (check file: cmake/checks/cpu_fp16.cpp)
-- Performing Test HAVE_CXX_MF16C - Success
-- Performing Test HAVE_CXX_MFMA
-- Performing Test HAVE_CXX_MFMA - Success
-- Performing Test HAVE_CXX_MAVX (check file: cmake/checks/cpu_avx.cpp)
-- Performing Test HAVE_CXX_MAVX - Success
-- Performing Test HAVE_CXX_MAVX2 (check file: cmake/checks/cpu_avx2.cpp)
-- Performing Test HAVE_CXX_MAVX2 - Success
-- Performing Test HAVE_CXX_MAVX512F (check file: cmake/checks/cpu_avx512.cpp)
-- Performing Test HAVE_CXX_MAVX512F - Success
-- Performing Test HAVE_CXX_MAVX512F_MAVX512CD_MAVX512VL_MAVX512BW_MAVX512DQ (check file: cmake/checks/cpu_avx512skx.cpp)
-- Performing Test HAVE_CXX_MAVX512F_MAVX512CD_MAVX512VL_MAVX512BW_MAVX512DQ - Success
-- Performing Test HAVE_CPU_BASELINE_FLAGS
-- Performing Test HAVE_CPU_BASELINE_FLAGS - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_SSE4_1
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_SSE4_1 - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_SSE4_2
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_SSE4_2 - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_FP16
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_FP16 - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX2
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX2 - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX512_SKX
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX512_SKX - Success
-- Performing Test HAVE_CXX_FVISIBILITY_HIDDEN
-- Performing Test HAVE_CXX_FVISIBILITY_HIDDEN - Success
-- Performing Test HAVE_C_FVISIBILITY_HIDDEN
-- Performing Test HAVE_C_FVISIBILITY_HIDDEN - Success
-- Performing Test HAVE_CXX_FVISIBILITY_INLINES_HIDDEN
-- Performing Test HAVE_CXX_FVISIBILITY_INLINES_HIDDEN - Success
-- Performing Test HAVE_C_FVISIBILITY_INLINES_HIDDEN
-- Performing Test HAVE_C_FVISIBILITY_INLINES_HIDDEN - Failed
-- Looking <span class="pl-k">for</span> pthread.h
-- Looking <span class="pl-k">for</span> pthread.h - found
-- Looking <span class="pl-k">for</span> posix_memalign
-- Looking <span class="pl-k">for</span> posix_memalign - found
-- Looking <span class="pl-k">for</span> malloc.h
-- Looking <span class="pl-k">for</span> malloc.h - found
-- Looking <span class="pl-k">for</span> memalign
-- Looking <span class="pl-k">for</span> memalign - found
-- Check <span class="pl-k">if</span> the system is big endian
-- Searching 16 bit integer
-- Looking <span class="pl-k">for</span> sys/types.h
-- Looking <span class="pl-k">for</span> sys/types.h - found
-- Looking <span class="pl-k">for</span> stdint.h
-- Looking <span class="pl-k">for</span> stdint.h - found
-- Looking <span class="pl-k">for</span> stddef.h
-- Looking <span class="pl-k">for</span> stddef.h - found
-- Check size of unsigned short
-- Check size of unsigned short - <span class="pl-k">done</span>
-- Using unsigned short
-- Check <span class="pl-k">if</span> the system is big endian - little endian
-- Found ZLIB: /usr/lib/x86_64-linux-gnu/libz.so (found suitable version <span class="pl-s"><span class="pl-pds">"</span>1.2.11<span class="pl-pds">"</span></span>, minimum required is <span class="pl-s"><span class="pl-pds">"</span>1.2.3<span class="pl-pds">"</span></span>)
-- Found JPEG: /usr/lib/x86_64-linux-gnu/libjpeg.so
-- Found TIFF: /usr/lib/x86_64-linux-gnu/libtiff.so (found version <span class="pl-s"><span class="pl-pds">"</span>4.0.9<span class="pl-pds">"</span></span>)
-- Performing Test HAVE_C_WNO_UNUSED_VARIABLE
-- Performing Test HAVE_C_WNO_UNUSED_VARIABLE - Success
-- Performing Test HAVE_C_WNO_UNUSED_FUNCTION
-- Performing Test HAVE_C_WNO_UNUSED_FUNCTION - Success
-- Performing Test HAVE_C_WNO_SHADOW
-- Performing Test HAVE_C_WNO_SHADOW - Success
-- Performing Test HAVE_C_WNO_MAYBE_UNINITIALIZED
-- Performing Test HAVE_C_WNO_MAYBE_UNINITIALIZED - Success
-- Performing Test HAVE_C_WNO_MISSING_PROTOTYPES
-- Performing Test HAVE_C_WNO_MISSING_PROTOTYPES - Success
-- Performing Test HAVE_C_WNO_MISSING_DECLARATIONS
-- Performing Test HAVE_C_WNO_MISSING_DECLARATIONS - Success
-- Performing Test HAVE_C_WNO_IMPLICIT_FALLTHROUGH
-- Performing Test HAVE_C_WNO_IMPLICIT_FALLTHROUGH - Success
-- Could NOT find Jasper (missing: JASPER_LIBRARIES JASPER_INCLUDE_DIR)
-- Performing Test HAVE_C_WNO_IMPLICIT_FUNCTION_DECLARATION
-- Performing Test HAVE_C_WNO_IMPLICIT_FUNCTION_DECLARATION - Success
-- Performing Test HAVE_C_WNO_UNINITIALIZED
-- Performing Test HAVE_C_WNO_UNINITIALIZED - Success
-- Performing Test HAVE_C_WNO_UNUSED_BUT_SET_PARAMETER
-- Performing Test HAVE_C_WNO_UNUSED_BUT_SET_PARAMETER - Success
-- Performing Test HAVE_C_WNO_UNUSED
-- Performing Test HAVE_C_WNO_UNUSED - Success
-- Performing Test HAVE_C_WNO_SIGN_COMPARE
-- Performing Test HAVE_C_WNO_SIGN_COMPARE - Success
-- Performing Test HAVE_C_WNO_POINTER_COMPARE
-- Performing Test HAVE_C_WNO_POINTER_COMPARE - Success
-- Performing Test HAVE_C_WNO_ABSOLUTE_VALUE
-- Performing Test HAVE_C_WNO_ABSOLUTE_VALUE - Failed
-- Performing Test HAVE_C_WNO_UNUSED_PARAMETER
-- Performing Test HAVE_C_WNO_UNUSED_PARAMETER - Success
-- Performing Test HAVE_C_WNO_STRICT_PROTOTYPES
-- Performing Test HAVE_C_WNO_STRICT_PROTOTYPES - Success
-- Found ZLIB: /usr/lib/x86_64-linux-gnu/libz.so (found version <span class="pl-s"><span class="pl-pds">"</span>1.2.11<span class="pl-pds">"</span></span>)
-- Found PNG: /usr/lib/x86_64-linux-gnu/libpng.so (found version <span class="pl-s"><span class="pl-pds">"</span>1.6.34<span class="pl-pds">"</span></span>)
-- Looking <span class="pl-k">for</span> /usr/include/libpng/png.h
-- Looking <span class="pl-k">for</span> /usr/include/libpng/png.h - found
-- Looking <span class="pl-k">for</span> semaphore.h
-- Looking <span class="pl-k">for</span> semaphore.h - found
-- Performing Test HAVE_CXX_WNO_SHADOW
-- Performing Test HAVE_CXX_WNO_SHADOW - Success
-- Performing Test HAVE_CXX_WNO_UNUSED
-- Performing Test HAVE_CXX_WNO_UNUSED - Success
-- Performing Test HAVE_CXX_WNO_SIGN_COMPARE
-- Performing Test HAVE_CXX_WNO_SIGN_COMPARE - Success
-- Performing Test HAVE_CXX_WNO_UNDEF
-- Performing Test HAVE_CXX_WNO_UNDEF - Success
-- Performing Test HAVE_CXX_WNO_MISSING_DECLARATIONS
-- Performing Test HAVE_CXX_WNO_MISSING_DECLARATIONS - Success
-- Performing Test HAVE_CXX_WNO_UNINITIALIZED
-- Performing Test HAVE_CXX_WNO_UNINITIALIZED - Success
-- Performing Test HAVE_CXX_WNO_SWITCH
-- Performing Test HAVE_CXX_WNO_SWITCH - Success
-- Performing Test HAVE_CXX_WNO_PARENTHESES
-- Performing Test HAVE_CXX_WNO_PARENTHESES - Success
-- Performing Test HAVE_CXX_WNO_ARRAY_BOUNDS
-- Performing Test HAVE_CXX_WNO_ARRAY_BOUNDS - Success
-- Performing Test HAVE_CXX_WNO_EXTRA
-- Performing Test HAVE_CXX_WNO_EXTRA - Success
-- Performing Test HAVE_CXX_WNO_DEPRECATED_DECLARATIONS
-- Performing Test HAVE_CXX_WNO_DEPRECATED_DECLARATIONS - Success
-- Performing Test HAVE_CXX_WNO_MISLEADING_INDENTATION
-- Performing Test HAVE_CXX_WNO_MISLEADING_INDENTATION - Success
-- Performing Test HAVE_CXX_WNO_DEPRECATED
-- Performing Test HAVE_CXX_WNO_DEPRECATED - Success
-- Performing Test HAVE_CXX_WNO_SUGGEST_OVERRIDE
-- Performing Test HAVE_CXX_WNO_SUGGEST_OVERRIDE - Success
-- Performing Test HAVE_CXX_WNO_INCONSISTENT_MISSING_OVERRIDE
-- Performing Test HAVE_CXX_WNO_INCONSISTENT_MISSING_OVERRIDE - Failed
-- Performing Test HAVE_CXX_WNO_IMPLICIT_FALLTHROUGH
-- Performing Test HAVE_CXX_WNO_IMPLICIT_FALLTHROUGH - Success
-- Checking <span class="pl-k">for</span> module <span class="pl-s"><span class="pl-pds">'</span>gtk+-3.0<span class="pl-pds">'</span></span>
-- No package <span class="pl-s"><span class="pl-pds">'</span>gtk+-3.0<span class="pl-pds">'</span></span> found
-- Checking <span class="pl-k">for</span> module <span class="pl-s"><span class="pl-pds">'</span>gtk+-2.0<span class="pl-pds">'</span></span>
-- No package <span class="pl-s"><span class="pl-pds">'</span>gtk+-2.0<span class="pl-pds">'</span></span> found
-- Checking <span class="pl-k">for</span> module <span class="pl-s"><span class="pl-pds">'</span>gthread-2.0<span class="pl-pds">'</span></span>
-- No package <span class="pl-s"><span class="pl-pds">'</span>gthread-2.0<span class="pl-pds">'</span></span> found
-- Checking <span class="pl-k">for</span> module <span class="pl-s"><span class="pl-pds">'</span>gstreamer-base-1.0<span class="pl-pds">'</span></span>
-- No package <span class="pl-s"><span class="pl-pds">'</span>gstreamer-base-1.0<span class="pl-pds">'</span></span> found
-- Checking <span class="pl-k">for</span> module <span class="pl-s"><span class="pl-pds">'</span>gstreamer-video-1.0<span class="pl-pds">'</span></span>
-- No package <span class="pl-s"><span class="pl-pds">'</span>gstreamer-video-1.0<span class="pl-pds">'</span></span> found
-- Checking <span class="pl-k">for</span> module <span class="pl-s"><span class="pl-pds">'</span>gstreamer-app-1.0<span class="pl-pds">'</span></span>
-- No package <span class="pl-s"><span class="pl-pds">'</span>gstreamer-app-1.0<span class="pl-pds">'</span></span> found
-- Checking <span class="pl-k">for</span> module <span class="pl-s"><span class="pl-pds">'</span>gstreamer-riff-1.0<span class="pl-pds">'</span></span>
-- No package <span class="pl-s"><span class="pl-pds">'</span>gstreamer-riff-1.0<span class="pl-pds">'</span></span> found
-- Checking <span class="pl-k">for</span> module <span class="pl-s"><span class="pl-pds">'</span>gstreamer-pbutils-1.0<span class="pl-pds">'</span></span>
-- No package <span class="pl-s"><span class="pl-pds">'</span>gstreamer-pbutils-1.0<span class="pl-pds">'</span></span> found
-- Checking <span class="pl-k">for</span> module <span class="pl-s"><span class="pl-pds">'</span>gstreamer-base-0.10<span class="pl-pds">'</span></span>
-- No package <span class="pl-s"><span class="pl-pds">'</span>gstreamer-base-0.10<span class="pl-pds">'</span></span> found
-- Checking <span class="pl-k">for</span> module <span class="pl-s"><span class="pl-pds">'</span>gstreamer-video-0.10<span class="pl-pds">'</span></span>
-- No package <span class="pl-s"><span class="pl-pds">'</span>gstreamer-video-0.10<span class="pl-pds">'</span></span> found
-- Checking <span class="pl-k">for</span> module <span class="pl-s"><span class="pl-pds">'</span>gstreamer-app-0.10<span class="pl-pds">'</span></span>
-- No package <span class="pl-s"><span class="pl-pds">'</span>gstreamer-app-0.10<span class="pl-pds">'</span></span> found
-- Checking <span class="pl-k">for</span> module <span class="pl-s"><span class="pl-pds">'</span>gstreamer-riff-0.10<span class="pl-pds">'</span></span>
-- No package <span class="pl-s"><span class="pl-pds">'</span>gstreamer-riff-0.10<span class="pl-pds">'</span></span> found
-- Checking <span class="pl-k">for</span> module <span class="pl-s"><span class="pl-pds">'</span>gstreamer-pbutils-0.10<span class="pl-pds">'</span></span>
-- No package <span class="pl-s"><span class="pl-pds">'</span>gstreamer-pbutils-0.10<span class="pl-pds">'</span></span> found
-- Checking <span class="pl-k">for</span> module <span class="pl-s"><span class="pl-pds">'</span>libdc1394-2<span class="pl-pds">'</span></span>
-- No package <span class="pl-s"><span class="pl-pds">'</span>libdc1394-2<span class="pl-pds">'</span></span> found
-- Checking <span class="pl-k">for</span> module <span class="pl-s"><span class="pl-pds">'</span>libdc1394<span class="pl-pds">'</span></span>
-- No package <span class="pl-s"><span class="pl-pds">'</span>libdc1394<span class="pl-pds">'</span></span> found
-- Looking <span class="pl-k">for</span> linux/videodev2.h
-- Looking <span class="pl-k">for</span> linux/videodev2.h - found
-- Looking <span class="pl-k">for</span> sys/videoio.h
-- Looking <span class="pl-k">for</span> sys/videoio.h - not found
-- Checking <span class="pl-k">for</span> modules <span class="pl-s"><span class="pl-pds">'</span>libavcodec;libavformat;libavutil;libswscale<span class="pl-pds">'</span></span>
-- Found libavcodec, version 57.107.100
-- Found libavformat, version 57.83.100
-- Found libavutil, version 55.78.100
-- Found libswscale, version 4.8.100
-- Checking <span class="pl-k">for</span> module <span class="pl-s"><span class="pl-pds">'</span>libavresample<span class="pl-pds">'</span></span>
-- No package <span class="pl-s"><span class="pl-pds">'</span>libavresample<span class="pl-pds">'</span></span> found
-- IPPICV: Download: ippicv_2019_lnx_intel64_general_20180723.tgz
-- found Intel IPP (ICV version): 2019.0.0 [2019.0.0 Gold]
-- at: /home/jovyan/opencv-4.0.0/cmake_binary/3rdparty/ippicv/ippicv_lnx/icv
-- found Intel IPP Integration Wrappers sources: 2019.0.0
-- at: /home/jovyan/opencv-4.0.0/cmake_binary/3rdparty/ippicv/ippicv_lnx/iw
-- Could not find OpenBLAS include. Turning OpenBLAS_FOUND off
-- Could not find OpenBLAS lib. Turning OpenBLAS_FOUND off
-- Could NOT find Atlas (missing: Atlas_BLAS_LIBRARY)
-- Looking <span class="pl-k">for</span> sgemm_
-- Looking <span class="pl-k">for</span> sgemm_ - found
-- Looking <span class="pl-k">for</span> pthread.h
-- Looking <span class="pl-k">for</span> pthread.h - found
-- Looking <span class="pl-k">for</span> pthread_create
-- Looking <span class="pl-k">for</span> pthread_create - found
-- Found Threads: TRUE
-- A library with BLAS API found.
-- Looking <span class="pl-k">for</span> cheev_
-- Looking <span class="pl-k">for</span> cheev_ - found
-- A library with LAPACK API found.
-- LAPACK(LAPACK/Generic): LAPACK_LIBRARIES: /opt/conda/lib/libopenblas.so<span class="pl-k">;</span>/opt/conda/lib/libopenblas.so
-- LAPACK(LAPACK/Generic): Support is enabled.
-- Performing Test HAVE_CXX_WNO_MISSING_PROTOTYPES
-- Performing Test HAVE_CXX_WNO_MISSING_PROTOTYPES - Failed
-- Performing Test HAVE_CXX_WNO_UNUSED_PARAMETER
-- Performing Test HAVE_CXX_WNO_UNUSED_PARAMETER - Success
-- Performing Test HAVE_CXX_WNO_UNUSED_LOCAL_TYPEDEFS
-- Performing Test HAVE_CXX_WNO_UNUSED_LOCAL_TYPEDEFS - Success
-- Performing Test HAVE_CXX_WNO_SIGN_PROMO
-- Performing Test HAVE_CXX_WNO_SIGN_PROMO - Success
-- Performing Test HAVE_CXX_WNO_TAUTOLOGICAL_UNDEFINED_COMPARE
-- Performing Test HAVE_CXX_WNO_TAUTOLOGICAL_UNDEFINED_COMPARE - Failed
-- Performing Test HAVE_CXX_WNO_IGNORED_QUALIFIERS
-- Performing Test HAVE_CXX_WNO_IGNORED_QUALIFIERS - Success
-- Performing Test HAVE_CXX_WNO_UNUSED_FUNCTION
-- Performing Test HAVE_CXX_WNO_UNUSED_FUNCTION - Success
-- Performing Test HAVE_CXX_WNO_UNUSED_CONST_VARIABLE
-- Performing Test HAVE_CXX_WNO_UNUSED_CONST_VARIABLE - Success
-- Performing Test HAVE_CXX_WNO_SHORTEN_64_TO_32
-- Performing Test HAVE_CXX_WNO_SHORTEN_64_TO_32 - Failed
-- Performing Test HAVE_CXX_WNO_INVALID_OFFSETOF
-- Performing Test HAVE_CXX_WNO_INVALID_OFFSETOF - Success
-- Performing Test HAVE_CXX_WNO_ENUM_COMPARE_SWITCH
-- Performing Test HAVE_CXX_WNO_ENUM_COMPARE_SWITCH - Failed
-- Could NOT find JNI (missing: JAVA_AWT_LIBRARY JAVA_JVM_LIBRARY JAVA_INCLUDE_PATH JAVA_INCLUDE_PATH2 JAVA_AWT_INCLUDE_PATH)
-- Could NOT find Pylint (missing: PYLINT_EXECUTABLE)
-- Could NOT find Flake8 (missing: FLAKE8_EXECUTABLE)
-- VTK is not found. Please <span class="pl-c1">set</span> -DVTK_DIR <span class="pl-k">in</span> CMake to VTK build directory, or to VTK install subdirectory with VTKConfig.cmake file
-- Looking <span class="pl-k">for</span> <span class="pl-smi">dlerror</span> <span class="pl-k">in</span> dl
-- Looking <span class="pl-k">for</span> <span class="pl-smi">dlerror</span> <span class="pl-k">in</span> dl - found
-- Performing Test HAVE_C_WNO_UNDEF
-- Performing Test HAVE_C_WNO_UNDEF - Success
-- ADE: Download: v0.1.1d.zip
-- OpenCV Python: during development append to PYTHONPATH: /home/jovyan/opencv-4.0.0/cmake_binary/python_loader
-- Performing Test HAVE_CXX_WNO_OVERLOADED_VIRTUAL
-- Performing Test HAVE_CXX_WNO_OVERLOADED_VIRTUAL - Success
-- Performing Test HAVE_CXX_WNO_UNUSED_PRIVATE_FIELD
-- Performing Test HAVE_CXX_WNO_UNUSED_PRIVATE_FIELD - Failed
-- OpenCL samples are skipped: OpenCL SDK is required
--
-- General configuration <span class="pl-k">for</span> OpenCV 4.0.0 =====================================
-- Version control: unknown
--
-- Platform:
-- Timestamp: 2018-11-29T09:51:17Z
-- Host: Linux 4.9.125-linuxkit x86_64
-- CMake: 3.10.2
-- CMake generator: Unix Makefiles
-- CMake build tool: /usr/bin/make
-- Configuration: RELEASE
--
-- CPU/HW features:
-- Baseline: SSE SSE2 SSE3
-- requested: SSE3
-- Dispatched code generation: SSE4_1 SSE4_2 FP16 AVX AVX2 AVX512_SKX
-- requested: SSE4_1 SSE4_2 AVX FP16 AVX2 AVX512_SKX
-- SSE4_1 (7 files): + SSSE3 SSE4_1
-- SSE4_2 (2 files): + SSSE3 SSE4_1 POPCNT SSE4_2
-- FP16 (1 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 AVX
-- AVX (5 files): + SSSE3 SSE4_1 POPCNT SSE4_2 AVX
-- AVX2 (13 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 FMA3 AVX AVX2
-- AVX512_SKX (1 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 FMA3 AVX AVX2 AVX_512F AVX512_SKX
--
-- C/C++:
-- Built as dynamic libs<span class="pl-k">?</span>: YES
-- C++ Compiler: /usr/bin/c++ (ver 7.3.0)
-- C++ flags (Release): -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wundef -Winit-self -Wpointer-arith -Wshadow -Wsign-promo -Wuninitialized -Winit-self -Wno-narrowing -Wno-delete-non-virtual-dtor -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -fvisibility-inlines-hidden -O3 -DNDEBUG -DNDEBUG
-- C++ flags (Debug): -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wundef -Winit-self -Wpointer-arith -Wshadow -Wsign-promo -Wuninitialized -Winit-self -Wno-narrowing -Wno-delete-non-virtual-dtor -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -fvisibility-inlines-hidden -g -O0 -DDEBUG -D_DEBUG
-- C Compiler: /usr/bin/cc
-- C flags (Release): -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Winit-self -Wno-narrowing -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG
-- C flags (Debug): -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Winit-self -Wno-narrowing -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -g -O0 -DDEBUG -D_DEBUG
-- Linker flags (Release):
-- Linker flags (Debug):
-- ccache: NO
-- Precompiled headers: YES
-- Extra dependencies: dl m pthread rt
-- 3rdparty dependencies:
--
-- OpenCV modules:
-- To be built: calib3d core dnn features2d flann gapi highgui imgcodecs imgproc java_bindings_generator ml objdetect photo python3 python_bindings_generator stitching ts video videoio
-- Disabled: world
-- Disabled by dependency: -
-- Unavailable: java js python2
-- Applications: tests perf_tests examples apps
-- Documentation: NO
-- Non-free algorithms: NO
--
-- GUI:
-- GTK+: NO
-- VTK support: NO
--
-- Media I/O:
-- ZLib: /usr/lib/x86_64-linux-gnu/libz.so (ver 1.2.11)
-- JPEG: /usr/lib/x86_64-linux-gnu/libjpeg.so (ver 80)
-- WEBP: build (ver encoder: 0x020e)
-- PNG: /usr/lib/x86_64-linux-gnu/libpng.so (ver 1.6.34)
-- TIFF: /usr/lib/x86_64-linux-gnu/libtiff.so (ver 42 / 4.0.9)
-- JPEG 2000: build (ver 1.900.1)
-- OpenEXR: build (ver 1.7.1)
-- HDR: YES
-- SUNRASTER: YES
-- PXM: YES
-- PFM: YES
--
-- Video I/O:
-- DC1394: NO
-- FFMPEG: YES
-- avcodec: YES (ver 57.107.100)
-- avformat: YES (ver 57.83.100)
-- avutil: YES (ver 55.78.100)
-- swscale: YES (ver 4.8.100)
-- avresample: NO
-- GStreamer: NO
-- v4l/v4l2: linux/videodev2.h
--
-- Parallel framework: pthreads
--
-- Trace: YES (with Intel ITT)
--
-- Other third-party libraries:
-- Intel IPP: 2019.0.0 Gold [2019.0.0]
-- at: /home/jovyan/opencv-4.0.0/cmake_binary/3rdparty/ippicv/ippicv_lnx/icv
-- Intel IPP IW: sources (2019.0.0)
-- at: /home/jovyan/opencv-4.0.0/cmake_binary/3rdparty/ippicv/ippicv_lnx/iw
-- Lapack: YES (/opt/conda/lib/libopenblas.so /opt/conda/lib/libopenblas.so)
-- Eigen: NO
-- Custom HAL: NO
-- Protobuf: build (3.5.1)
--
-- OpenCL: YES (no extra features)
-- Include path: /home/jovyan/opencv-4.0.0/3rdparty/include/opencl/1.2
-- Link libraries: Dynamic load
--
-- Python 3:
-- Interpreter: /opt/conda/bin/python3 (ver 3.6.6)
-- Libraries: /opt/conda/lib/libpython3.6m.so (ver 3.6.6)
-- numpy: /opt/conda/lib/python3.6/site-packages/numpy/core/include (ver 1.13.3)
-- packages path: lib/python3.6/site-packages
--
-- Python (for build): /opt/conda/bin/python3
--
-- Java:
-- ant: NO
-- JNI: NO
-- Java wrappers: NO
-- Java tests: NO
--
-- Install to: /opt/conda
-- -----------------------------------------------------------------
--
-- Configuring <span class="pl-k">done</span>
-- Generating <span class="pl-k">done</span>
-- Build files have been written to: /home/jovyan/opencv-4.0.0/cmake_binary</pre></div>
<p dir="auto"></p></details>
<details>
<summary>Build output</summary>
<p dir="auto">
</p><div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="root@b32f60382b10:~/opencv-4.0.0/cmake_binary# make clean install
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/alpha_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/buffer_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/frame_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/idec_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/io_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/quant_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/tree_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/vp8_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/vp8l_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/webp_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/demux/anim_decode.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/demux/demux.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/alpha_processing.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/alpha_processing_mips_dsp_r2.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/alpha_processing_neon.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/alpha_processing_sse2.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/alpha_processing_sse41.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/cost.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/cost_mips32.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/cost_mips_dsp_r2.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/cost_sse2.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/cpu.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec_clip_tables.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec_mips32.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec_mips_dsp_r2.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec_msa.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec_neon.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec_sse2.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec_sse41.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc_avx2.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc_mips32.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc_mips_dsp_r2.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc_msa.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc_neon.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc_sse2.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc_sse41.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/filters.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/filters_mips_dsp_r2.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/filters_msa.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/filters_neon.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/filters_sse2.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_enc.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_enc_mips32.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_enc_mips_dsp_r2.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_enc_msa.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_enc_neon.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_enc_sse2.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_enc_sse41.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_mips_dsp_r2.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_msa.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_neon.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_sse2.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/rescaler.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/rescaler_mips32.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/rescaler_mips_dsp_r2.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/rescaler_msa.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/rescaler_neon.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/rescaler_sse2.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/ssim.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/ssim_sse2.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/upsampling.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/upsampling_mips_dsp_r2.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/upsampling_msa.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/upsampling_neon.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/upsampling_sse2.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/upsampling_sse41.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/yuv.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/yuv_mips32.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/yuv_mips_dsp_r2.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/yuv_neon.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/yuv_sse2.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/yuv_sse41.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/alpha_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/analysis_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/backward_references_cost_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/backward_references_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/config_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/cost_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/filter_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/frame_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/histogram_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/iterator_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/near_lossless_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/picture_csp_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/picture_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/picture_psnr_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/picture_rescale_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/picture_tools_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/predictor_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/quant_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/syntax_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/token_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/tree_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/vp8l_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/webp_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/mux/anim_encode.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/mux/muxedit.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/mux/muxinternal.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/mux/muxread.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/bit_reader_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/bit_writer_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/color_cache_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/filters_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/huffman_encode_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/huffman_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/quant_levels_dec_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/quant_levels_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/random_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/rescaler_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/thread_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/utils.c.o
[ 6%] Linking C static library ../lib/liblibwebp.a
[ 6%] Built target libwebp
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_cm.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_debug.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_getopt.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_icc.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_iccdata.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_image.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_init.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_malloc.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_seq.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_stream.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_string.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_tmr.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_tvp.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_version.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jp2_cod.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jp2_dec.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jp2_enc.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_bs.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_cs.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_dec.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_enc.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_math.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_mct.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_mqcod.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_mqdec.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_mqenc.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_qmfb.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_t1cod.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_t1dec.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_t1enc.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_t2cod.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_t2dec.c.o
[ 8%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_t2enc.c.o
[ 8%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_tagtree.c.o
[ 8%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_tsfb.c.o
[ 8%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_util.c.o
[ 8%] Linking C static library ../lib/liblibjasper.a
[ 8%] Built target libjasper
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Half/half.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Iex/IexBaseExc.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Iex/IexThrowErrnoExc.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThread.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThreadMutex.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThreadMutexPosix.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThreadPool.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThreadPosix.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThreadSemaphore.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThreadSemaphorePosix.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThreadSemaphorePosixCompat.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Imath/ImathColorAlgo.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Imath/ImathFun.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Imath/ImathMatrixAlgo.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Imath/ImathRandom.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Imath/ImathVec.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfAcesFile.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfB44Compressor.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfBoxAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfCRgbaFile.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfChannelList.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfChannelListAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfChromaticities.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfChromaticitiesAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfCompressionAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfCompressor.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfConvert.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfDoubleAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfEnvmap.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfEnvmapAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfFloatAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfFrameBuffer.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfFramesPerSecond.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfHeader.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfHuf.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfIO.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfInputFile.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfIntAttribute.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfKeyCode.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfKeyCodeAttribute.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfLineOrderAttribute.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfLut.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfMatrixAttribute.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfMisc.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfMultiView.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfOpaqueAttribute.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfOutputFile.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfPizCompressor.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfPreviewImage.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfPreviewImageAttribute.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfPxr24Compressor.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfRational.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfRationalAttribute.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfRgbaFile.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfRgbaYca.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfRleCompressor.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfScanLineInputFile.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfStandardAttributes.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfStdIO.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfStringAttribute.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfStringVectorAttribute.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTestFile.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfThreading.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTileDescriptionAttribute.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTileOffsets.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTiledInputFile.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTiledMisc.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTiledOutputFile.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTiledRgbaFile.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTimeCode.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTimeCodeAttribute.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfVecAttribute.cpp.o
[ 12%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfVersion.cpp.o
[ 12%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfWav.cpp.o
[ 12%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfZipCompressor.cpp.o
[ 12%] Linking CXX static library ../lib/libIlmImf.a
[ 12%] Built target IlmImf
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_core.c.o
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image.c.o
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_color_convert_all.c.o
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_color_convert_rgbs.c.o
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_bilateral.c.o
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_box.c.o
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_canny.c.o
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_gaussian.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_general.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_laplacian.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_morphology.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_scharr.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_sobel.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_copy.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_copy_channel.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_copy_make_border.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_copy_merge.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_copy_split.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_scale.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_set.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_set_channel.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_swap_channels.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_transform_mirror.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_transform_resize.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_transform_rotate.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_transform_warpaffine.c.o
[ 14%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_own.c.o
[ 14%] Linking C static library ../lib/libippiw.a
[ 14%] Built target ippiw
[ 14%] Building CXX object 3rdparty/protobuf/CMakeFiles/libprotobuf.dir/src/google/protobuf/arena.cc.o
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:51:29: error: ‘SequenceNumber’ in namespace ‘google::protobuf::internal’ does not name a type
google::protobuf::internal::SequenceNumber ArenaImpl::lifecycle_id_generator_;
^~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘void google::protobuf::internal::ArenaImpl::Init()’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:68:43: error: ‘struct std::atomic<long int>’ has no member named ‘GetNext’
lifecycle_id_ = lifecycle_id_generator_.GetNext();
^~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:69:31: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(&hint_, 0);
^~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:70:31: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(&threads_, 0);
^~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:76:5: error: ‘InitBlock’ was not declared in this scope
InitBlock(initial_block_, &thread_cache(), options_.initial_block_size);
^~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:76:5: note: suggested alternative: ‘NewBlock’
InitBlock(initial_block_, &thread_cache(), options_.initial_block_size);
^~~~~~~~~
NewBlock
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:77:5: error: ‘ThreadInfo’ was not declared in this scope
ThreadInfo* info = NewThreadInfo(initial_block_);
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:77:5: note: suggested alternative: ‘threads_’
ThreadInfo* info = NewThreadInfo(initial_block_);
^~~~~~~~~~
threads_
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:77:17: error: ‘info’ was not declared in this scope
ThreadInfo* info = NewThreadInfo(initial_block_);
^~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:77:17: note: suggested alternative: ‘int8’
ThreadInfo* info = NewThreadInfo(initial_block_);
^~~~
int8
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:77:24: error: ‘NewThreadInfo’ was not declared in this scope
ThreadInfo* info = NewThreadInfo(initial_block_);
^~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:79:33: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(&threads_,
^~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:80:80: error: ‘AtomicWord’ in namespace ‘google::protobuf::internal’ does not name a type
reinterpret_cast<google::protobuf::internal::AtomicWord>(info));
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:81:33: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(&space_allocated_,
^~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:83:5: error: ‘CacheBlock’ was not declared in this scope
CacheBlock(initial_block_);
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:83:5: note: suggested alternative: ‘FreeBlocks’
CacheBlock(initial_block_);
^~~~~~~~~~
FreeBlocks
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:85:33: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(&space_allocated_, 0);
^~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: At global scope:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:106:19: error: prototype for ‘google::protobuf::internal::ArenaImpl::Block* google::protobuf::internal::ArenaImpl::NewBlock(void*, google::protobuf::internal::ArenaImpl::Block*, size_t)’ does not match any in class ‘google::protobuf::internal::ArenaImpl’
ArenaImpl::Block* ArenaImpl::NewBlock(void* me, Block* my_last_block,
^~~~~~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:291:10: error: candidate is: google::protobuf::internal::ArenaImpl::Block* google::protobuf::internal::ArenaImpl::NewBlock(google::protobuf::internal::ArenaImpl::Block*, size_t)
Block* NewBlock(Block* last_block, size_t min_bytes);
^~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:106:12: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context ArenaImpl::Block* ArenaImpl::NewBlock(void* me, Block* my_last_block,
^~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:215:28: note: declared private here
class LIBPROTOBUF_EXPORT Block {
^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:125:58: error: no ‘void google::protobuf::internal::ArenaImpl::InitBlock(google::protobuf::internal::ArenaImpl::Block*, void*, size_t)’ member function declared in class ‘google::protobuf::internal::ArenaImpl’
void ArenaImpl::InitBlock(Block* b, void *me, size_t size) {
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:125:27: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context void ArenaImpl::InitBlock(Block* b, void *me, size_t size) {
^~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:215:28: note: declared private here
class LIBPROTOBUF_EXPORT Block {
^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:139:63: error: no ‘google::protobuf::internal::ArenaImpl::CleanupChunk* google::protobuf::internal::ArenaImpl::ExpandCleanupList(google::protobuf::internal::ArenaImpl::CleanupChunk*, google::protobuf::internal::ArenaImpl::Block*)’ member function declared in class ‘google::protobuf::internal::ArenaImpl’
Block* b) {
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:138:12: error: ‘struct google::protobuf::internal::ArenaImpl::CleanupChunk’ is private within this context
ArenaImpl::CleanupChunk* ArenaImpl::ExpandCleanupList(CleanupChunk* cleanup,
^~~~~~~~~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:128:10: note: declared private here
struct CleanupChunk {
^~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:139:55: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context
Block* b) {
^~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:215:28: note: declared private here
class LIBPROTOBUF_EXPORT Block {
^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:157:46: error: no ‘void google::protobuf::internal::ArenaImpl::AddCleanupInBlock(google::protobuf::internal::ArenaImpl::Block*, void*, void (*)(void*))’ member function declared in class ‘google::protobuf::internal::ArenaImpl’
Block* b, void* elem, void (*func)(void*)) {
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:157:5: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context
Block* b, void* elem, void (*func)(void*)) {
^~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:215:28: note: declared private here
class LIBPROTOBUF_EXPORT Block {
^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘void google::protobuf::internal::ArenaImpl::AddCleanup(void*, void (*)(void*) ’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:170:28: error: ‘GetBlock’ was not declared in this scope
return AddCleanupInBlock(GetBlock(0), elem, cleanup);
^~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:170:28: note: suggested alternative: ‘NewBlock’
return AddCleanupInBlock(GetBlock(0), elem, cleanup);
^~~~~~~~
NewBlock
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:170:10: error: ‘AddCleanupInBlock’ was not declared in this scope
return AddCleanupInBlock(GetBlock(0), elem, cleanup);
^~~~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:170:10: note: suggested alternative: ‘AddCleanupFallback’
return AddCleanupInBlock(GetBlock(0), elem, cleanup);
^~~~~~~~~~~~~~~~~
AddCleanupFallback
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:170:54: error: return-statement with a value, in function returning 'void' [-fpermissive]
return AddCleanupInBlock(GetBlock(0), elem, cleanup);
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘void* google::protobuf::internal::ArenaImpl::AllocateAligned(size_t)’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:176:25: error: ‘GetBlock’ was not declared in this scope
return AllocFromBlock(GetBlock(n), n);
^~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:176:25: note: suggested alternative: ‘NewBlock’
return AllocFromBlock(GetBlock(n), n);
^~~~~~~~
NewBlock
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:176:10: error: ‘AllocFromBlock’ was not declared in this scope
return AllocFromBlock(GetBlock(n), n);
^~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘void* google::protobuf::internal::ArenaImpl::AllocateAlignedAndAddCleanup(size_t, void (*)(void*))’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:183:14: error: ‘GetBlock’ was not declared in this scope
Block* b = GetBlock(n);
^~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:183:14: note: suggested alternative: ‘NewBlock’
Block* b = GetBlock(n);
^~~~~~~~
NewBlock
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:184:15: error: ‘AllocFromBlock’ was not declared in this scope
void* mem = AllocFromBlock(b, n);
^~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:185:3: error: ‘AddCleanupInBlock’ was not declared in this scope
AddCleanupInBlock(b, mem, cleanup);
^~~~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:185:3: note: suggested alternative: ‘AddCleanupFallback’
AddCleanupInBlock(b, mem, cleanup);
^~~~~~~~~~~~~~~~~
AddCleanupFallback
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: At global scope:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:190:47: error: no ‘google::protobuf::internal::ArenaImpl::Block* google::protobuf::internal::ArenaImpl::GetBlock(size_t)’ member function declared in class ‘google::protobuf::internal::ArenaImpl’
ArenaImpl::Block* ArenaImpl::GetBlock(size_t n) {
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:190:12: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context ArenaImpl::Block* ArenaImpl::GetBlock(size_t n) {
^~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:215:28: note: declared private here
class LIBPROTOBUF_EXPORT Block {
^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:218:51: error: no ‘void* google::protobuf::internal::ArenaImpl::AllocFromBlock(google::protobuf::internal::ArenaImpl::Block*, size_t)’ member function declared in class ‘google::protobuf::internal::ArenaImpl’
void* ArenaImpl::AllocFromBlock(Block* b, size_t n) {
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:218:33: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context void* ArenaImpl::AllocFromBlock(Block* b, size_t n) {
^~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:215:28: note: declared private here
class LIBPROTOBUF_EXPORT Block {
^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:231:51: error: no ‘google::protobuf::internal::ArenaImpl::Block* google::protobuf::internal::ArenaImpl::GetBlockSlow(void*, google::protobuf::internal::ArenaImpl::Block*, size_t)’ member function declared in class ‘google::protobuf::internal::ArenaImpl’
size_t n) {
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:230:12: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context ArenaImpl::Block* ArenaImpl::GetBlockSlow(void* me, Block* my_full_block,
^~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:215:28: note: declared private here
class LIBPROTOBUF_EXPORT Block {
^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘google::protobuf::uint64 google::protobuf::internal::ArenaImpl::SpaceAllocated() const’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:248:38: error: ‘NoBarrier_Load’ is not a member of ‘google::protobuf::internal’
return google::protobuf::internal::NoBarrier_Load(&space_allocated_);
^~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘google::protobuf::uint64 google::protobuf::internal::ArenaImpl::SpaceUsed() const’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:252:3: error: ‘ThreadInfo’ was not declared in this scope
ThreadInfo* info =
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:252:3: note: suggested alternative: ‘threads_’
ThreadInfo* info =
^~~~~~~~~~
threads_
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:252:15: error: ‘info’ was not declared in this scope
ThreadInfo* info =
^~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:252:15: note: suggested alternative: ‘int8’
ThreadInfo* info =
^~~~
int8
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:253:24: error: ‘ThreadInfo’ does not name a type; did you mean ‘ThreadCache’?
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::Acquire_Load(&threads_));
^~~~~~~~~~
ThreadCache
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:253:34: error: expected ‘>’ before ‘*’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::Acquire_Load(&threads_));
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:253:34: error: expected ‘(’ before ‘*’ token
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:253:35: error: expected primary-expression before ‘>’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::Acquire_Load(&threads_));
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:253:65: error: ‘Acquire_Load’ is not a member of ‘google::protobuf::internal’
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::Acquire_Load(&threads_));
^~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:253:89: error: expected ‘)’ before ‘;’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::Acquire_Load(&threads_));
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:259:43: error: cannot convert ‘google::protobuf::internal::ArenaImpl::Block::next’ from type ‘google::protobuf::internal::ArenaImpl::Block* (google::protobuf::internal::ArenaImpl::Block::)() const’ to type ‘google::protobuf::internal::ArenaImpl::Block*’
for (Block* b = info->head; b; b = b->next) {
^~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:260:31: error: ‘kHeaderSize’ was not declared in this scope
space_used += (b->pos - kHeaderSize);
^~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:260:31: note: suggested alternative: ‘kBlockHeaderSize’
space_used += (b->pos - kHeaderSize);
^~~~~~~~~~~
kBlockHeaderSize
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘google::protobuf::uint64 google::protobuf::internal::ArenaImpl::FreeBlocks()’:/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:271:3: error: ‘ThreadInfo’ was not declared in this scope
ThreadInfo* info =
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:271:3: note: suggested alternative: ‘threads_’
ThreadInfo* info =
^~~~~~~~~~
threads_
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:271:15: error: ‘info’ was not declared in this scope
ThreadInfo* info =
^~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:271:15: note: suggested alternative: ‘int8’
ThreadInfo* info =
^~~~
int8
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:272:24: error: ‘ThreadInfo’ does not name a type; did you mean ‘ThreadCache’?
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^~~~~~~~~~
ThreadCache
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:272:34: error: expected ‘>’ before ‘*’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:272:34: error: expected ‘(’ before ‘*’ token
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:272:35: error: expected primary-expression before ‘>’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:272:65: error: ‘NoBarrier_Load’ is not a member of ‘google::protobuf::internal’
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:272:91: error: expected ‘)’ before ‘;’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:276:17: error: ‘next_info’ was not declared in this scope
ThreadInfo* next_info = info->next;
^~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:279:30: error: cannot convert ‘google::protobuf::internal::ArenaImpl::Block::next’ from type ‘google::protobuf::internal::ArenaImpl::Block* (google::protobuf::internal::ArenaImpl::Block::)() const’ to type ‘google::protobuf::internal::ArenaImpl::Block*’
Block* next_block = b->next;
^~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:280:30: error: invalid use of member function ‘size_t google::protobuf::internal::ArenaImpl::Block::size() const’ (did you forget the ‘()’ ?)
space_allocated += (b->size);
~~~~^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:280:34: error: in evaluation of ‘operator+=(google::protobuf::uint64 {aka long unsigned int}, <unresolved overloaded function type>)’
space_allocated += (b->size);
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:289:42: error: cannot convert ‘google::protobuf::internal::ArenaImpl::Block::size’ from type ‘size_t (google::protobuf::internal::ArenaImpl::Block::)() const {aka long unsigned int (google::protobuf::internal::ArenaImpl::Block::)() const}’ to type ‘size_t {aka long unsigned int}’
options_.block_dealloc(b, b->size);
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘void google::protobuf::internal::ArenaImpl::CleanupList()’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:303:3: error: ‘ThreadInfo’ was not declared in this scope
ThreadInfo* info =
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:303:3: note: suggested alternative: ‘threads_’
ThreadInfo* info =
^~~~~~~~~~
threads_
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:303:15: error: ‘info’ was not declared in this scope
ThreadInfo* info =
^~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:303:15: note: suggested alternative: ‘int8’
ThreadInfo* info =
^~~~
int8
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:304:24: error: ‘ThreadInfo’ does not name a type; did you mean ‘ThreadCache’?
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^~~~~~~~~~
ThreadCache
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:304:34: error: expected ‘>’ before ‘*’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:304:34: error: expected ‘(’ before ‘*’ token
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:304:35: error: expected primary-expression before ‘>’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:304:65: error: ‘NoBarrier_Load’ is not a member of ‘google::protobuf::internal’
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:304:91: error: expected ‘)’ before ‘;’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:309:24: error: ‘struct google::protobuf::internal::ArenaImpl::CleanupChunk’ has no member named ‘len’
size_t n = list->len;
^~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:310:46: error: ‘struct google::protobuf::internal::ArenaImpl::CleanupChunk’ has no member named ‘len’
CleanupNode* node = &list->nodes[list->len - 1];
^~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: At global scope:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:319:12: error: ‘ThreadInfo’ in ‘class google::protobuf::internal::ArenaImpl’ does not name a type
ArenaImpl::ThreadInfo* ArenaImpl::NewThreadInfo(Block* b) {
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:330:12: error: ‘ThreadInfo’ in ‘class google::protobuf::internal::ArenaImpl’ does not name a type
ArenaImpl::ThreadInfo* ArenaImpl::FindThreadInfo(void* me) {
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:342:12: error: ‘ThreadInfo’ in ‘class google::protobuf::internal::ArenaImpl’ does not name a type
ArenaImpl::ThreadInfo* ArenaImpl::GetThreadInfo(void* me, size_t n) {
^~~~~~~~~~
3rdparty/protobuf/CMakeFiles/libprotobuf.dir/build.make:62: recipe for target '3rdparty/protobuf/CMakeFiles/libprotobuf.dir/src/google/protobuf/arena.cc.o' failed
make[2]: *** [3rdparty/protobuf/CMakeFiles/libprotobuf.dir/src/google/protobuf/arena.cc.o] Error 1
CMakeFiles/Makefile2:509: recipe for target '3rdparty/protobuf/CMakeFiles/libprotobuf.dir/all' failed
make[1]: *** [3rdparty/protobuf/CMakeFiles/libprotobuf.dir/all] Error 2
Makefile:162: recipe for target 'all' failed
make: *** [all] Error 2"><pre class="notranslate">root@b32f60382b10:<span class="pl-k">~</span>/opencv-4.0.0/cmake_binary# make clean install
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/alpha_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/buffer_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/frame_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/idec_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/io_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/quant_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/tree_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/vp8_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/vp8l_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/webp_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/demux/anim_decode.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/demux/demux.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/alpha_processing.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/alpha_processing_mips_dsp_r2.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/alpha_processing_neon.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/alpha_processing_sse2.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/alpha_processing_sse41.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/cost.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/cost_mips32.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/cost_mips_dsp_r2.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/cost_sse2.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/cpu.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec_clip_tables.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec_mips32.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec_mips_dsp_r2.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec_msa.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec_neon.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec_sse2.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec_sse41.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc_avx2.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc_mips32.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc_mips_dsp_r2.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc_msa.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc_neon.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc_sse2.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc_sse41.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/filters.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/filters_mips_dsp_r2.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/filters_msa.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/filters_neon.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/filters_sse2.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_enc.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_enc_mips32.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_enc_mips_dsp_r2.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_enc_msa.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_enc_neon.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_enc_sse2.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_enc_sse41.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_mips_dsp_r2.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_msa.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_neon.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_sse2.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/rescaler.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/rescaler_mips32.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/rescaler_mips_dsp_r2.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/rescaler_msa.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/rescaler_neon.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/rescaler_sse2.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/ssim.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/ssim_sse2.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/upsampling.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/upsampling_mips_dsp_r2.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/upsampling_msa.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/upsampling_neon.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/upsampling_sse2.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/upsampling_sse41.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/yuv.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/yuv_mips32.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/yuv_mips_dsp_r2.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/yuv_neon.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/yuv_sse2.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/yuv_sse41.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/alpha_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/analysis_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/backward_references_cost_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/backward_references_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/config_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/cost_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/filter_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/frame_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/histogram_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/iterator_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/near_lossless_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/picture_csp_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/picture_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/picture_psnr_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/picture_rescale_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/picture_tools_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/predictor_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/quant_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/syntax_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/token_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/tree_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/vp8l_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/webp_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/mux/anim_encode.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/mux/muxedit.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/mux/muxinternal.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/mux/muxread.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/bit_reader_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/bit_writer_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/color_cache_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/filters_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/huffman_encode_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/huffman_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/quant_levels_dec_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/quant_levels_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/random_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/rescaler_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/thread_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/utils.c.o
[ 6%] Linking C static library ../lib/liblibwebp.a
[ 6%] Built target libwebp
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_cm.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_debug.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_getopt.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_icc.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_iccdata.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_image.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_init.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_malloc.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_seq.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_stream.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_string.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_tmr.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_tvp.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_version.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jp2_cod.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jp2_dec.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jp2_enc.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_bs.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_cs.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_dec.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_enc.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_math.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_mct.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_mqcod.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_mqdec.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_mqenc.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_qmfb.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_t1cod.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_t1dec.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_t1enc.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_t2cod.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_t2dec.c.o
[ 8%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_t2enc.c.o
[ 8%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_tagtree.c.o
[ 8%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_tsfb.c.o
[ 8%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_util.c.o
[ 8%] Linking C static library ../lib/liblibjasper.a
[ 8%] Built target libjasper
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Half/half.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Iex/IexBaseExc.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Iex/IexThrowErrnoExc.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThread.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThreadMutex.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThreadMutexPosix.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThreadPool.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThreadPosix.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThreadSemaphore.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThreadSemaphorePosix.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThreadSemaphorePosixCompat.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Imath/ImathColorAlgo.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Imath/ImathFun.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Imath/ImathMatrixAlgo.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Imath/ImathRandom.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Imath/ImathVec.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfAcesFile.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfB44Compressor.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfBoxAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfCRgbaFile.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfChannelList.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfChannelListAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfChromaticities.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfChromaticitiesAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfCompressionAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfCompressor.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfConvert.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfDoubleAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfEnvmap.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfEnvmapAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfFloatAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfFrameBuffer.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfFramesPerSecond.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfHeader.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfHuf.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfIO.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfInputFile.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfIntAttribute.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfKeyCode.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfKeyCodeAttribute.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfLineOrderAttribute.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfLut.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfMatrixAttribute.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfMisc.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfMultiView.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfOpaqueAttribute.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfOutputFile.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfPizCompressor.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfPreviewImage.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfPreviewImageAttribute.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfPxr24Compressor.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfRational.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfRationalAttribute.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfRgbaFile.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfRgbaYca.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfRleCompressor.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfScanLineInputFile.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfStandardAttributes.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfStdIO.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfStringAttribute.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfStringVectorAttribute.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTestFile.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfThreading.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTileDescriptionAttribute.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTileOffsets.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTiledInputFile.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTiledMisc.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTiledOutputFile.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTiledRgbaFile.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTimeCode.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTimeCodeAttribute.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfVecAttribute.cpp.o
[ 12%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfVersion.cpp.o
[ 12%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfWav.cpp.o
[ 12%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfZipCompressor.cpp.o
[ 12%] Linking CXX static library ../lib/libIlmImf.a
[ 12%] Built target IlmImf
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_core.c.o
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image.c.o
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_color_convert_all.c.o
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_color_convert_rgbs.c.o
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_bilateral.c.o
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_box.c.o
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_canny.c.o
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_gaussian.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_general.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_laplacian.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_morphology.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_scharr.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_sobel.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_copy.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_copy_channel.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_copy_make_border.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_copy_merge.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_copy_split.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_scale.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_set.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_set_channel.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_swap_channels.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_transform_mirror.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_transform_resize.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_transform_rotate.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_transform_warpaffine.c.o
[ 14%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_own.c.o
[ 14%] Linking C static library ../lib/libippiw.a
[ 14%] Built target ippiw
[ 14%] Building CXX object 3rdparty/protobuf/CMakeFiles/libprotobuf.dir/src/google/protobuf/arena.cc.o
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:51:29: error: ‘SequenceNumber’ <span class="pl-k">in</span> namespace ‘google::protobuf::internal’ does not name a <span class="pl-c1">type</span>
google::protobuf::internal::SequenceNumber ArenaImpl::lifecycle_id_generator_<span class="pl-k">;</span>
^~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member <span class="pl-k">function</span> <span class="pl-en">‘void</span> <span class="pl-en">google::protobuf::internal::ArenaImpl::Init</span>()’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:68:43: error: ‘struct std::atomic<span class="pl-k"><</span>long int<span class="pl-k">></span>’ has no member named ‘GetNext’
lifecycle_id_ = <span class="pl-en">lifecycle_id_generator_.GetNext</span>();
^~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:69:31: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(<span class="pl-k">&</span>hint_, 0)<span class="pl-k">;</span>
^~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:70:31: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(<span class="pl-k">&</span>threads_, 0)<span class="pl-k">;</span>
^~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:76:5: error: ‘InitBlock’ was not declared <span class="pl-k">in</span> this scope
InitBlock(initial_block_, <span class="pl-k">&</span><span class="pl-en">thread_cache</span>(), options_.initial_block_size);
^~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:76:5: note: suggested alternative: ‘NewBlock’
InitBlock(initial_block_, <span class="pl-k">&</span><span class="pl-en">thread_cache</span>(), options_.initial_block_size);
^~~~~~~~~
NewBlock
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:77:5: error: ‘ThreadInfo’ was not declared <span class="pl-k">in</span> this scope
ThreadInfo<span class="pl-k">*</span> info = NewThreadInfo(initial_block_)<span class="pl-k">;</span>
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:77:5: note: suggested alternative: ‘threads_’
ThreadInfo<span class="pl-k">*</span> info = NewThreadInfo(initial_block_)<span class="pl-k">;</span>
^~~~~~~~~~
threads_
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:77:17: error: ‘info’ was not declared <span class="pl-k">in</span> this scope
ThreadInfo<span class="pl-k">*</span> info = NewThreadInfo(initial_block_)<span class="pl-k">;</span>
^~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:77:17: note: suggested alternative: ‘int8’
ThreadInfo<span class="pl-k">*</span> info = NewThreadInfo(initial_block_)<span class="pl-k">;</span>
^~~~
int8
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:77:24: error: ‘NewThreadInfo’ was not declared <span class="pl-k">in</span> this scope
ThreadInfo<span class="pl-k">*</span> info = NewThreadInfo(initial_block_)<span class="pl-k">;</span>
^~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:79:33: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(<span class="pl-k">&</span>threads_,
^~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:80:80: error: ‘AtomicWord’ <span class="pl-k">in</span> namespace ‘google::protobuf::internal’ does not name a <span class="pl-c1">type</span>
reinterpret_cast<span class="pl-k"><</span>google::protobuf::internal::AtomicWord<span class="pl-s"><span class="pl-pds">>(</span>info<span class="pl-pds">)</span></span>)<span class="pl-k">;</span>
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:81:33: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(<span class="pl-k">&</span>space_allocated_,
^~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:83:5: error: ‘CacheBlock’ was not declared <span class="pl-k">in</span> this scope
CacheBlock(initial_block_)<span class="pl-k">;</span>
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:83:5: note: suggested alternative: ‘FreeBlocks’
CacheBlock(initial_block_)<span class="pl-k">;</span>
^~~~~~~~~~
FreeBlocks
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:85:33: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(<span class="pl-k">&</span>space_allocated_, 0)<span class="pl-k">;</span>
^~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: At global scope:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:106:19: error: prototype <span class="pl-k">for</span> <span class="pl-smi">‘google::protobuf::internal::ArenaImpl::Block* google::protobuf::internal::ArenaImpl::NewBlock(void*, google::protobuf::internal::ArenaImpl::Block*, size_t)’ does not match any</span> <span class="pl-k">in</span> class ‘google::protobuf::internal::ArenaImpl’
ArenaImpl::Block<span class="pl-k">*</span> ArenaImpl::NewBlock(void<span class="pl-k">*</span> me, Block<span class="pl-k">*</span> my_last_block,
^~~~~~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:291:10: error: candidate is: google::protobuf::internal::ArenaImpl::Block<span class="pl-k">*</span> google::protobuf::internal::ArenaImpl::NewBlock(google::protobuf::internal::ArenaImpl::Block<span class="pl-k">*</span>, size_t)
Block<span class="pl-k">*</span> NewBlock(Block<span class="pl-k">*</span> last_block, size_t min_bytes)<span class="pl-k">;</span>
^~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:106:12: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context ArenaImpl::Block<span class="pl-k">*</span> ArenaImpl::NewBlock(void<span class="pl-k">*</span> me, Block<span class="pl-k">*</span> my_last_block,
^~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:215:28: note: declared private here
class LIBPROTOBUF_EXPORT Block {
^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:125:58: error: no ‘void google::protobuf::internal::ArenaImpl::InitBlock(google::protobuf::internal::ArenaImpl::Block<span class="pl-k">*</span>, void<span class="pl-k">*</span>, size_t)’ member <span class="pl-k">function</span> <span class="pl-en">declared</span> <span class="pl-k">in</span> class ‘google::protobuf::internal::ArenaImpl’
void ArenaImpl::InitBlock(Block<span class="pl-k">*</span> b, void <span class="pl-k">*</span>me, size_t size) {
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:125:27: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context void ArenaImpl::InitBlock(Block<span class="pl-k">*</span> b, void <span class="pl-k">*</span>me, size_t size) {
^~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:215:28: note: declared private here
class LIBPROTOBUF_EXPORT Block {
^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:139:63: error: no ‘google::protobuf::internal::ArenaImpl::CleanupChunk<span class="pl-k">*</span> google::protobuf::internal::ArenaImpl::ExpandCleanupList(google::protobuf::internal::ArenaImpl::CleanupChunk<span class="pl-k">*</span>, google::protobuf::internal::ArenaImpl::Block<span class="pl-k">*</span>)’ member <span class="pl-k">function</span> <span class="pl-en">declared</span> <span class="pl-k">in</span> class ‘google::protobuf::internal::ArenaImpl’
Block<span class="pl-k">*</span> b) {
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:138:12: error: ‘struct google::protobuf::internal::ArenaImpl::CleanupChunk’ is private within this context
ArenaImpl::CleanupChunk<span class="pl-k">*</span> ArenaImpl::ExpandCleanupList(CleanupChunk<span class="pl-k">*</span> cleanup,
^~~~~~~~~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:128:10: note: declared private here
struct CleanupChunk {
^~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:139:55: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context
Block<span class="pl-k">*</span> b) {
^~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:215:28: note: declared private here
class LIBPROTOBUF_EXPORT Block {
^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:157:46: error: no ‘void google::protobuf::internal::ArenaImpl::AddCleanupInBlock(google::protobuf::internal::ArenaImpl::Block<span class="pl-k">*</span>, void<span class="pl-k">*</span>, void (<span class="pl-k">*</span>)(void<span class="pl-k">*</span>))’ member <span class="pl-k">function</span> <span class="pl-en">declared</span> <span class="pl-k">in</span> class ‘google::protobuf::internal::ArenaImpl’
Block<span class="pl-k">*</span> b, void<span class="pl-k">*</span> elem, void (<span class="pl-k">*</span>func)(void<span class="pl-k">*</span>)) {
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:157:5: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context
Block<span class="pl-k">*</span> b, void<span class="pl-k">*</span> elem, void (<span class="pl-k">*</span>func)(void<span class="pl-k">*</span>)) {
^~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:215:28: note: declared private here
class LIBPROTOBUF_EXPORT Block {
^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member <span class="pl-k">function</span> <span class="pl-en">‘void</span> google::protobuf::internal::ArenaImpl::AddCleanup(void<span class="pl-k">*</span>, void (<span class="pl-k">*</span>)(void<span class="pl-k">*</span>) ’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:170:28: error: ‘GetBlock’ was not declared <span class="pl-k">in</span> this scope
<span class="pl-k">return</span> AddCleanupInBlock(GetBlock(0), elem, cleanup)<span class="pl-k">;</span>
^~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:170:28: note: suggested alternative: ‘NewBlock’
<span class="pl-k">return</span> AddCleanupInBlock(GetBlock(0), elem, cleanup)<span class="pl-k">;</span>
^~~~~~~~
NewBlock
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:170:10: error: ‘AddCleanupInBlock’ was not declared <span class="pl-k">in</span> this scope
<span class="pl-k">return</span> AddCleanupInBlock(GetBlock(0), elem, cleanup)<span class="pl-k">;</span>
^~~~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:170:10: note: suggested alternative: ‘AddCleanupFallback’
<span class="pl-k">return</span> AddCleanupInBlock(GetBlock(0), elem, cleanup)<span class="pl-k">;</span>
^~~~~~~~~~~~~~~~~
AddCleanupFallback
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:170:54: error: return-statement with a value, <span class="pl-k">in</span> <span class="pl-k">function</span> <span class="pl-en">returning</span> <span class="pl-s"><span class="pl-pds">'</span>void<span class="pl-pds">'</span></span> [-fpermissive]
<span class="pl-k">return</span> AddCleanupInBlock(GetBlock(0), elem, cleanup)<span class="pl-k">;</span>
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member <span class="pl-k">function</span> <span class="pl-en">‘void*</span> google::protobuf::internal::ArenaImpl::AllocateAligned(size_t)’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:176:25: error: ‘GetBlock’ was not declared <span class="pl-k">in</span> this scope
<span class="pl-k">return</span> AllocFromBlock(GetBlock(n), n)<span class="pl-k">;</span>
^~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:176:25: note: suggested alternative: ‘NewBlock’
<span class="pl-k">return</span> AllocFromBlock(GetBlock(n), n)<span class="pl-k">;</span>
^~~~~~~~
NewBlock
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:176:10: error: ‘AllocFromBlock’ was not declared <span class="pl-k">in</span> this scope
<span class="pl-k">return</span> AllocFromBlock(GetBlock(n), n)<span class="pl-k">;</span>
^~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member <span class="pl-k">function</span> <span class="pl-en">‘void*</span> google::protobuf::internal::ArenaImpl::AllocateAlignedAndAddCleanup(size_t, void (<span class="pl-k">*</span>)(void<span class="pl-k">*</span>))’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:183:14: error: ‘GetBlock’ was not declared <span class="pl-k">in</span> this scope
Block<span class="pl-k">*</span> b = GetBlock(n)<span class="pl-k">;</span>
^~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:183:14: note: suggested alternative: ‘NewBlock’
Block<span class="pl-k">*</span> b = GetBlock(n)<span class="pl-k">;</span>
^~~~~~~~
NewBlock
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:184:15: error: ‘AllocFromBlock’ was not declared <span class="pl-k">in</span> this scope
void<span class="pl-k">*</span> mem = AllocFromBlock(b, n)<span class="pl-k">;</span>
^~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:185:3: error: ‘AddCleanupInBlock’ was not declared <span class="pl-k">in</span> this scope
AddCleanupInBlock(b, mem, cleanup)<span class="pl-k">;</span>
^~~~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:185:3: note: suggested alternative: ‘AddCleanupFallback’
AddCleanupInBlock(b, mem, cleanup)<span class="pl-k">;</span>
^~~~~~~~~~~~~~~~~
AddCleanupFallback
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: At global scope:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:190:47: error: no ‘google::protobuf::internal::ArenaImpl::Block<span class="pl-k">*</span> google::protobuf::internal::ArenaImpl::GetBlock(size_t)’ member <span class="pl-k">function</span> <span class="pl-en">declared</span> <span class="pl-k">in</span> class ‘google::protobuf::internal::ArenaImpl’
ArenaImpl::Block<span class="pl-k">*</span> ArenaImpl::GetBlock(size_t n) {
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:190:12: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context ArenaImpl::Block<span class="pl-k">*</span> ArenaImpl::GetBlock(size_t n) {
^~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:215:28: note: declared private here
class LIBPROTOBUF_EXPORT Block {
^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:218:51: error: no ‘void<span class="pl-k">*</span> google::protobuf::internal::ArenaImpl::AllocFromBlock(google::protobuf::internal::ArenaImpl::Block<span class="pl-k">*</span>, size_t)’ member <span class="pl-k">function</span> <span class="pl-en">declared</span> <span class="pl-k">in</span> class ‘google::protobuf::internal::ArenaImpl’
void<span class="pl-k">*</span> ArenaImpl::AllocFromBlock(Block<span class="pl-k">*</span> b, size_t n) {
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:218:33: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context void<span class="pl-k">*</span> ArenaImpl::AllocFromBlock(Block<span class="pl-k">*</span> b, size_t n) {
^~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:215:28: note: declared private here
class LIBPROTOBUF_EXPORT Block {
^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:231:51: error: no ‘google::protobuf::internal::ArenaImpl::Block<span class="pl-k">*</span> google::protobuf::internal::ArenaImpl::GetBlockSlow(void<span class="pl-k">*</span>, google::protobuf::internal::ArenaImpl::Block<span class="pl-k">*</span>, size_t)’ member <span class="pl-k">function</span> <span class="pl-en">declared</span> <span class="pl-k">in</span> class ‘google::protobuf::internal::ArenaImpl’
size_t n) {
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:230:12: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context ArenaImpl::Block<span class="pl-k">*</span> ArenaImpl::GetBlockSlow(void<span class="pl-k">*</span> me, Block<span class="pl-k">*</span> my_full_block,
^~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:215:28: note: declared private here
class LIBPROTOBUF_EXPORT Block {
^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member <span class="pl-k">function</span> <span class="pl-en">‘google::protobuf::uint64</span> <span class="pl-en">google::protobuf::internal::ArenaImpl::SpaceAllocated</span>() const’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:248:38: error: ‘NoBarrier_Load’ is not a member of ‘google::protobuf::internal’
<span class="pl-k">return</span> google::protobuf::internal::NoBarrier_Load(<span class="pl-k">&</span>space_allocated_)<span class="pl-k">;</span>
^~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member <span class="pl-k">function</span> <span class="pl-en">‘google::protobuf::uint64</span> <span class="pl-en">google::protobuf::internal::ArenaImpl::SpaceUsed</span>() const’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:252:3: error: ‘ThreadInfo’ was not declared <span class="pl-k">in</span> this scope
ThreadInfo<span class="pl-k">*</span> info =
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:252:3: note: suggested alternative: ‘threads_’
ThreadInfo<span class="pl-k">*</span> info =
^~~~~~~~~~
threads_
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:252:15: error: ‘info’ was not declared <span class="pl-k">in</span> this scope
ThreadInfo<span class="pl-k">*</span> info =
^~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:252:15: note: suggested alternative: ‘int8’
ThreadInfo<span class="pl-k">*</span> info =
^~~~
int8
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:253:24: error: ‘ThreadInfo’ does not name a <span class="pl-c1">type</span><span class="pl-k">;</span> did you mean ‘ThreadCache’<span class="pl-k">?</span>
reinterpret_cast<span class="pl-k"><</span>ThreadInfo<span class="pl-k">*</span><span class="pl-s"><span class="pl-pds">>(</span>google::protobuf::internal::Acquire_Load(<span class="pl-k">&</span>threads_)<span class="pl-pds">)</span></span><span class="pl-k">;</span>
^~~~~~~~~~
ThreadCache
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:253:34: error: expected ‘<span class="pl-k">></span>’ before ‘<span class="pl-k">*</span>’ token
reinterpret_cast<span class="pl-k"><</span>ThreadInfo<span class="pl-k">*</span><span class="pl-s"><span class="pl-pds">>(</span>google::protobuf::internal::Acquire_Load(<span class="pl-k">&</span>threads_)<span class="pl-pds">)</span></span><span class="pl-k">;</span>
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:253:34: error: expected ‘(’ before ‘<span class="pl-k">*</span>’ token
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:253:35: error: expected primary-expression before ‘<span class="pl-k">></span>’ token
reinterpret_cast<span class="pl-k"><</span>ThreadInfo<span class="pl-k">*</span><span class="pl-s"><span class="pl-pds">>(</span>google::protobuf::internal::Acquire_Load(<span class="pl-k">&</span>threads_)<span class="pl-pds">)</span></span><span class="pl-k">;</span>
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:253:65: error: ‘Acquire_Load’ is not a member of ‘google::protobuf::internal’
reinterpret_cast<span class="pl-k"><</span>ThreadInfo<span class="pl-k">*</span><span class="pl-s"><span class="pl-pds">>(</span>google::protobuf::internal::Acquire_Load(<span class="pl-k">&</span>threads_)<span class="pl-pds">)</span></span><span class="pl-k">;</span>
^~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:253:89: error: expected ‘)’ before ‘<span class="pl-k">;</span>’ token
reinterpret_cast<span class="pl-k"><</span>ThreadInfo<span class="pl-k">*</span><span class="pl-s"><span class="pl-pds">>(</span>google::protobuf::internal::Acquire_Load(<span class="pl-k">&</span>threads_)<span class="pl-pds">)</span></span><span class="pl-k">;</span>
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:259:43: error: cannot convert ‘google::protobuf::internal::ArenaImpl::Block::next’ from <span class="pl-c1">type</span> ‘google::protobuf::internal::ArenaImpl::Block<span class="pl-k">*</span> (google::protobuf::internal::ArenaImpl::Block::)() const’ to <span class="pl-c1">type</span> ‘google::protobuf::internal::ArenaImpl::Block<span class="pl-k">*</span>’
<span class="pl-k">for</span> (Block<span class="pl-k">*</span> b = info-<span class="pl-k">></span>head<span class="pl-k">;</span> b<span class="pl-k">;</span> b = b-<span class="pl-k">></span>next) {
^~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:260:31: error: ‘kHeaderSize’ was not declared <span class="pl-k">in</span> this scope
space_used += (b-<span class="pl-k">></span>pos - kHeaderSize)<span class="pl-k">;</span>
^~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:260:31: note: suggested alternative: ‘kBlockHeaderSize’
space_used += (b-<span class="pl-k">></span>pos - kHeaderSize)<span class="pl-k">;</span>
^~~~~~~~~~~
kBlockHeaderSize
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member <span class="pl-k">function</span> <span class="pl-en">‘google::protobuf::uint64</span> <span class="pl-en">google::protobuf::internal::ArenaImpl::FreeBlocks</span>()’:/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:271:3: error: ‘ThreadInfo’ was not declared <span class="pl-k">in</span> this scope
ThreadInfo<span class="pl-k">*</span> info =
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:271:3: note: suggested alternative: ‘threads_’
ThreadInfo<span class="pl-k">*</span> info =
^~~~~~~~~~
threads_
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:271:15: error: ‘info’ was not declared <span class="pl-k">in</span> this scope
ThreadInfo<span class="pl-k">*</span> info =
^~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:271:15: note: suggested alternative: ‘int8’
ThreadInfo<span class="pl-k">*</span> info =
^~~~
int8
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:272:24: error: ‘ThreadInfo’ does not name a <span class="pl-c1">type</span><span class="pl-k">;</span> did you mean ‘ThreadCache’<span class="pl-k">?</span>
reinterpret_cast<span class="pl-k"><</span>ThreadInfo<span class="pl-k">*</span><span class="pl-s"><span class="pl-pds">>(</span>google::protobuf::internal::NoBarrier_Load(<span class="pl-k">&</span>threads_)<span class="pl-pds">)</span></span><span class="pl-k">;</span>
^~~~~~~~~~
ThreadCache
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:272:34: error: expected ‘<span class="pl-k">></span>’ before ‘<span class="pl-k">*</span>’ token
reinterpret_cast<span class="pl-k"><</span>ThreadInfo<span class="pl-k">*</span><span class="pl-s"><span class="pl-pds">>(</span>google::protobuf::internal::NoBarrier_Load(<span class="pl-k">&</span>threads_)<span class="pl-pds">)</span></span><span class="pl-k">;</span>
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:272:34: error: expected ‘(’ before ‘<span class="pl-k">*</span>’ token
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:272:35: error: expected primary-expression before ‘<span class="pl-k">></span>’ token
reinterpret_cast<span class="pl-k"><</span>ThreadInfo<span class="pl-k">*</span><span class="pl-s"><span class="pl-pds">>(</span>google::protobuf::internal::NoBarrier_Load(<span class="pl-k">&</span>threads_)<span class="pl-pds">)</span></span><span class="pl-k">;</span>
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:272:65: error: ‘NoBarrier_Load’ is not a member of ‘google::protobuf::internal’
reinterpret_cast<span class="pl-k"><</span>ThreadInfo<span class="pl-k">*</span><span class="pl-s"><span class="pl-pds">>(</span>google::protobuf::internal::NoBarrier_Load(<span class="pl-k">&</span>threads_)<span class="pl-pds">)</span></span><span class="pl-k">;</span>
^~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:272:91: error: expected ‘)’ before ‘<span class="pl-k">;</span>’ token
reinterpret_cast<span class="pl-k"><</span>ThreadInfo<span class="pl-k">*</span><span class="pl-s"><span class="pl-pds">>(</span>google::protobuf::internal::NoBarrier_Load(<span class="pl-k">&</span>threads_)<span class="pl-pds">)</span></span><span class="pl-k">;</span>
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:276:17: error: ‘next_info’ was not declared <span class="pl-k">in</span> this scope
ThreadInfo<span class="pl-k">*</span> next_info = info-<span class="pl-k">></span>next<span class="pl-k">;</span>
^~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:279:30: error: cannot convert ‘google::protobuf::internal::ArenaImpl::Block::next’ from <span class="pl-c1">type</span> ‘google::protobuf::internal::ArenaImpl::Block<span class="pl-k">*</span> (google::protobuf::internal::ArenaImpl::Block::)() const’ to <span class="pl-c1">type</span> ‘google::protobuf::internal::ArenaImpl::Block<span class="pl-k">*</span>’
Block<span class="pl-k">*</span> next_block = b-<span class="pl-k">></span>next<span class="pl-k">;</span>
^~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:280:30: error: invalid use of member <span class="pl-k">function</span> <span class="pl-en">‘size_t</span> <span class="pl-en">google::protobuf::internal::ArenaImpl::Block::size</span>() const’ (did you forget the <span class="pl-en">‘</span>()’ <span class="pl-k">?</span>)
space_allocated += (b-<span class="pl-k">></span>size)<span class="pl-k">;</span>
<span class="pl-k">~</span>~~~^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:280:34: error: <span class="pl-k">in</span> evaluation of ‘operator+=(google::protobuf::uint64 {aka long unsigned int}, <span class="pl-k"><</span>unresolved overloaded <span class="pl-k">function</span> <span class="pl-en">type>)’</span>
space_allocated += (b-<span class="pl-k">></span>size)<span class="pl-k">;</span>
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:289:42: error: cannot convert ‘google::protobuf::internal::ArenaImpl::Block::size’ from <span class="pl-c1">type</span> ‘size_t (google::protobuf::internal::ArenaImpl::Block::)() const {aka long unsigned int (google::protobuf::internal::ArenaImpl::Block::)() const}’ to <span class="pl-c1">type</span> ‘size_t {aka long unsigned int}’
options_.block_dealloc(b, b-<span class="pl-k">></span>size)<span class="pl-k">;</span>
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member <span class="pl-k">function</span> <span class="pl-en">‘void</span> <span class="pl-en">google::protobuf::internal::ArenaImpl::CleanupList</span>()’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:303:3: error: ‘ThreadInfo’ was not declared <span class="pl-k">in</span> this scope
ThreadInfo<span class="pl-k">*</span> info =
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:303:3: note: suggested alternative: ‘threads_’
ThreadInfo<span class="pl-k">*</span> info =
^~~~~~~~~~
threads_
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:303:15: error: ‘info’ was not declared <span class="pl-k">in</span> this scope
ThreadInfo<span class="pl-k">*</span> info =
^~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:303:15: note: suggested alternative: ‘int8’
ThreadInfo<span class="pl-k">*</span> info =
^~~~
int8
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:304:24: error: ‘ThreadInfo’ does not name a <span class="pl-c1">type</span><span class="pl-k">;</span> did you mean ‘ThreadCache’<span class="pl-k">?</span>
reinterpret_cast<span class="pl-k"><</span>ThreadInfo<span class="pl-k">*</span><span class="pl-s"><span class="pl-pds">>(</span>google::protobuf::internal::NoBarrier_Load(<span class="pl-k">&</span>threads_)<span class="pl-pds">)</span></span><span class="pl-k">;</span>
^~~~~~~~~~
ThreadCache
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:304:34: error: expected ‘<span class="pl-k">></span>’ before ‘<span class="pl-k">*</span>’ token
reinterpret_cast<span class="pl-k"><</span>ThreadInfo<span class="pl-k">*</span><span class="pl-s"><span class="pl-pds">>(</span>google::protobuf::internal::NoBarrier_Load(<span class="pl-k">&</span>threads_)<span class="pl-pds">)</span></span><span class="pl-k">;</span>
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:304:34: error: expected ‘(’ before ‘<span class="pl-k">*</span>’ token
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:304:35: error: expected primary-expression before ‘<span class="pl-k">></span>’ token
reinterpret_cast<span class="pl-k"><</span>ThreadInfo<span class="pl-k">*</span><span class="pl-s"><span class="pl-pds">>(</span>google::protobuf::internal::NoBarrier_Load(<span class="pl-k">&</span>threads_)<span class="pl-pds">)</span></span><span class="pl-k">;</span>
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:304:65: error: ‘NoBarrier_Load’ is not a member of ‘google::protobuf::internal’
reinterpret_cast<span class="pl-k"><</span>ThreadInfo<span class="pl-k">*</span><span class="pl-s"><span class="pl-pds">>(</span>google::protobuf::internal::NoBarrier_Load(<span class="pl-k">&</span>threads_)<span class="pl-pds">)</span></span><span class="pl-k">;</span>
^~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:304:91: error: expected ‘)’ before ‘<span class="pl-k">;</span>’ token
reinterpret_cast<span class="pl-k"><</span>ThreadInfo<span class="pl-k">*</span><span class="pl-s"><span class="pl-pds">>(</span>google::protobuf::internal::NoBarrier_Load(<span class="pl-k">&</span>threads_)<span class="pl-pds">)</span></span><span class="pl-k">;</span>
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:309:24: error: ‘struct google::protobuf::internal::ArenaImpl::CleanupChunk’ has no member named ‘len’
size_t n = list-<span class="pl-k">></span>len<span class="pl-k">;</span>
^~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:310:46: error: ‘struct google::protobuf::internal::ArenaImpl::CleanupChunk’ has no member named ‘len’
CleanupNode<span class="pl-k">*</span> node = <span class="pl-k">&</span>list-<span class="pl-k">></span>nodes[list-<span class="pl-k">></span>len - 1]<span class="pl-k">;</span>
^~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: At global scope:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:319:12: error: ‘ThreadInfo’ <span class="pl-k">in</span> ‘class google::protobuf::internal::ArenaImpl’ does not name a <span class="pl-c1">type</span>
ArenaImpl::ThreadInfo<span class="pl-k">*</span> ArenaImpl::NewThreadInfo(Block<span class="pl-k">*</span> b) {
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:330:12: error: ‘ThreadInfo’ <span class="pl-k">in</span> ‘class google::protobuf::internal::ArenaImpl’ does not name a <span class="pl-c1">type</span>
ArenaImpl::ThreadInfo<span class="pl-k">*</span> ArenaImpl::FindThreadInfo(void<span class="pl-k">*</span> me) {
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:342:12: error: ‘ThreadInfo’ <span class="pl-k">in</span> ‘class google::protobuf::internal::ArenaImpl’ does not name a <span class="pl-c1">type</span>
ArenaImpl::ThreadInfo<span class="pl-k">*</span> ArenaImpl::GetThreadInfo(void<span class="pl-k">*</span> me, size_t n) {
^~~~~~~~~~
3rdparty/protobuf/CMakeFiles/libprotobuf.dir/build.make:62: recipe <span class="pl-k">for</span> target <span class="pl-s"><span class="pl-pds">'</span>3rdparty/protobuf/CMakeFiles/libprotobuf.dir/src/google/protobuf/arena.cc.o<span class="pl-pds">'</span></span> failed
make[2]: <span class="pl-k">***</span> [3rdparty/protobuf/CMakeFiles/libprotobuf.dir/src/google/protobuf/arena.cc.o] Error 1
CMakeFiles/Makefile2:509: recipe <span class="pl-k">for</span> target <span class="pl-s"><span class="pl-pds">'</span>3rdparty/protobuf/CMakeFiles/libprotobuf.dir/all<span class="pl-pds">'</span></span> failed
make[1]: <span class="pl-k">***</span> [3rdparty/protobuf/CMakeFiles/libprotobuf.dir/all] Error 2
Makefile:162: recipe <span class="pl-k">for</span> target <span class="pl-s"><span class="pl-pds">'</span>all<span class="pl-pds">'</span></span> failed
make: <span class="pl-k">***</span> [all] Error 2</pre></div>
<p dir="auto"></p></details>
<h5 dir="auto">Steps to reproduce</h5>
<p dir="auto">run jupyter/datascience-notebook:14fdfbf9cfc1 with <code class="notranslate">docker run --rm -it -u root jupyter/datascience-notebook:14fdfbf9cfc1 /bin/bash</code></p>
<p dir="auto">Enter following commands:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="apt-get update && \
apt-get install -y \
build-essential \
cmake \
git \
wget \
unzip \
yasm \
pkg-config \
libswscale-dev \
libtbb2 \
libtbb-dev \
libjpeg-dev \
libpng-dev \
libtiff-dev \
libavformat-dev \
libpq-dev
OPENCV_VERSION=4.0.0
wget -O opencv.zip https://github.com/opencv/opencv/archive/${OPENCV_VERSION}.zip \
&& unzip opencv.zip \
&& mkdir opencv-${OPENCV_VERSION}/cmake_binary \
&& cd opencv-${OPENCV_VERSION}/cmake_binary
cmake \
-D CMAKE_BUILD_TYPE=RELEASE \
-D CMAKE_INSTALL_PREFIX=/usr/local \
-D INSTALL_PYTHON_EXAMPLES=ON \
-D INSTALL_C_EXAMPLES=OFF \
-D BUILD_EXAMPLES=ON \
-D PYTHON_EXECUTABLE=$(which python) \
-D PYTHON_INCLUDE_DIR=$(python -c "from distutils.sysconfig import get_python_inc; print(get_python_inc())") \
-D PYTHON_PACKAGES_PATH=$(python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())") \
-D CMAKE_INSTALL_PREFIX=$(python -c "import sys; print(sys.prefix)") \
..
make install"><pre class="notranslate">apt-get update <span class="pl-k">&&</span> \
apt-get install -y \
build-essential \
cmake \
git \
wget \
unzip \
yasm \
pkg-config \
libswscale-dev \
libtbb2 \
libtbb-dev \
libjpeg-dev \
libpng-dev \
libtiff-dev \
libavformat-dev \
libpq-dev
OPENCV_VERSION=4.0.0
wget -O opencv.zip https://github.com/opencv/opencv/archive/<span class="pl-smi">${OPENCV_VERSION}</span>.zip \
<span class="pl-k">&&</span> unzip opencv.zip \
<span class="pl-k">&&</span> mkdir opencv-<span class="pl-smi">${OPENCV_VERSION}</span>/cmake_binary \
<span class="pl-k">&&</span> <span class="pl-c1">cd</span> opencv-<span class="pl-smi">${OPENCV_VERSION}</span>/cmake_binary
cmake \
-D CMAKE_BUILD_TYPE=RELEASE \
-D CMAKE_INSTALL_PREFIX=/usr/local \
-D INSTALL_PYTHON_EXAMPLES=ON \
-D INSTALL_C_EXAMPLES=OFF \
-D BUILD_EXAMPLES=ON \
-D PYTHON_EXECUTABLE=<span class="pl-s"><span class="pl-pds">$(</span>which python<span class="pl-pds">)</span></span> \
-D PYTHON_INCLUDE_DIR=<span class="pl-s"><span class="pl-pds">$(</span>python -c <span class="pl-s"><span class="pl-pds">"</span>from distutils.sysconfig import get_python_inc; print(get_python_inc())<span class="pl-pds">"</span></span><span class="pl-pds">)</span></span> \
-D PYTHON_PACKAGES_PATH=<span class="pl-s"><span class="pl-pds">$(</span>python -c <span class="pl-s"><span class="pl-pds">"</span>from distutils.sysconfig import get_python_lib; print(get_python_lib())<span class="pl-pds">"</span></span><span class="pl-pds">)</span></span> \
-D CMAKE_INSTALL_PREFIX=<span class="pl-s"><span class="pl-pds">$(</span>python -c <span class="pl-s"><span class="pl-pds">"</span>import sys; print(sys.prefix)<span class="pl-pds">"</span></span><span class="pl-pds">)</span></span> \
..
make install</pre></div>
<p dir="auto">Thank you for the support</p>
<p dir="auto">Regards</p> | 0 |
<h1 dir="auto">Checklist</h1>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> This has already been asked to the <a href="https://groups.google.com/forum/#!forum/celery-users" rel="nofollow">discussion group</a> first.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the relevant section in the<br>
<a href="http://docs.celeryproject.org/en/latest/contributing.html#other-bugs" rel="nofollow">contribution guide</a><br>
on reporting bugs.</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/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Bug+Report%22+-label%3A%22Category%3A+Documentation%22">issues list</a><br>
for similar or identical bug reports.</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/celery/celery/pulls?q=is%3Apr+label%3A%22PR+Type%3A+Bugfix%22+-label%3A%22Category%3A+Documentation%22">pull requests list</a><br>
for existing proposed fixes.</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/celery/celery/commits/master">commit log</a><br>
to find out if the bug was already fixed in the master branch.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all related issues and possible duplicate issues<br>
in this issue (If there are none, check this box anyway).</li>
</ul>
<h2 dir="auto">Mandatory Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have included the output of <code class="notranslate">celery -A proj report</code> in the issue.<br>
(if you are not able to do this, then at least specify the Celery<br>
version affected).</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included the contents of <code class="notranslate">pip freeze</code> in the issue.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all the versions of all the external dependencies required<br>
to reproduce this bug.</li>
</ul>
<h2 dir="auto">Optional Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one Python version<br>
and/or implementation.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one message broker and/or<br>
result backend.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one version of the message<br>
broker and/or result backend.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one operating system.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one workers pool.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue with autoscaling, retries,<br>
ETA/Countdown & rate limits disabled.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue after downgrading<br>
and/or upgrading Celery and its dependencies.</li>
</ul>
<h2 dir="auto">Related Issues and Possible Duplicates</h2>
<h4 dir="auto">Related Issues</h4>
<ul dir="auto">
<li>In <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="473592737" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/5661" data-hovercard-type="pull_request" data-hovercard-url="/celery/celery/pull/5661/hovercard" href="https://github.com/celery/celery/pull/5661">#5661</a> PR result encoding was removed from <code class="notranslate">_store_result</code> call.</li>
<li>In <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="549465310" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/5918" data-hovercard-type="pull_request" data-hovercard-url="/celery/celery/pull/5918/hovercard" href="https://github.com/celery/celery/pull/5918">#5918</a> PR missing result encoding on storing has been attempted to be resolved by adding <code class="notranslate">encode</code> call on <code class="notranslate">decode</code> call.</li>
</ul>
<h4 dir="auto">Possible Duplicates</h4>
<ul dir="auto">
<li>None</li>
</ul>
<h2 dir="auto">Environment & Settings</h2>
<p dir="auto"><strong>Celery version</strong>:</p>
<details>
<summary><b><code class="notranslate">celery report</code> Output:</b></summary>
<p dir="auto">
</p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Steps to Reproduce</h1>
<h2 dir="auto">Required Dependencies</h2>
<ul dir="auto">
<li><strong>Minimal Python Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Celery Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Kombu Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Broker Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Result Backend Version</strong>: N/A or Unknown</li>
<li><strong>Minimal OS and/or Kernel Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Broker Client Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Result Backend Client Version</strong>: N/A or Unknown</li>
</ul>
<h3 dir="auto">Python Packages</h3>
<details>
<summary><b><code class="notranslate">pip freeze</code> Output:</b></summary>
<p dir="auto">
</p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div>
<p dir="auto"></p>
</details>
<h3 dir="auto">Other Dependencies</h3>
<details>
<p dir="auto">
N/A
</p>
</details>
<h2 dir="auto">Minimally Reproducible Test Case</h2>
<details>
<p dir="auto">
</p><div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"></pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Expected Behavior</h1>
<p dir="auto"><code class="notranslate">store_result</code> uses <code class="notranslate">serializer</code>.</p>
<h1 dir="auto">Actual Behavior</h1>
<p dir="auto"><code class="notranslate">store_result</code> ignores <code class="notranslate">serializer</code>, so getting serialization errors for data types that are compatible with chosen serializer.</p>
<p dir="auto">For more details please refer to tests in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="667975068" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/6259" data-hovercard-type="pull_request" data-hovercard-url="/celery/celery/pull/6259/hovercard" href="https://github.com/celery/celery/pull/6259">#6259</a></p> | <p dir="auto">Hello all<br>
We use Celery 3.0.21 with Redis backend (AWS ElastiCache) and recently I discovered huge memory usage by Redis node. After dumping Redis database and inspecting it I found that there are many reply pidboxes (~40) with 1 big element in array (about 16MB) in which there are many duplicated scheduled tasks (more than thousand).</p>
<p dir="auto">I think duplicated tasks is a different issue connected with visibility timeout. So could anybody clarify approach to delete unused reply pidboxes? I've checked number of reply pidboxes with members of _kombu.binding.reply.celery.pidbox hash and found inconsistency (41 in bindings versus 77 at all).</p>
<p dir="auto">And I would much appreciate it if anybody explaine case when these orphaned pidboxes could appear.</p> | 0 |
<p dir="auto">Had started on a page that references this page. Have filed an issue against the parent but part of its resolution involves fixing this page too:</p>
<p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="135128955" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/21631" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/21631/hovercard" href="https://github.com/kubernetes/kubernetes/issues/21631">#21631</a></p>
<p dir="auto">The page:</p>
<p dir="auto"><a href="http://kubernetes.io/v1.1/examples/https-nginx/README.html" rel="nofollow">http://kubernetes.io/v1.1/examples/https-nginx/README.html</a></p>
<p dir="auto"><a href="https://github.com/kubernetes/kubernetes/blob/release-1.1/examples/https-nginx/README.md">https://github.com/kubernetes/kubernetes/blob/release-1.1/examples/https-nginx/README.md</a></p>
<p dir="auto">Provides instructions on generating a secret. It was not immediately obvious from this page (I linked directly to it to a 1. Download/build the code, 2. You should have a "make" command....) that there's an assumption that the reader will have downloaded Kubernetes/examples sources. The make command obviously won't work as the correct "make" command won't exist:</p>
<p dir="auto">make keys secret KEY=/tmp/nginx.key CERT=/tmp/nginx.crt SECRET=/tmp/secret.json</p>
<p dir="auto">After attempting and failing to download/build the sources, I believe that this script no longer works:<br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="108337767" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/14558" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/14558/hovercard" href="https://github.com/kubernetes/kubernetes/issues/14558">#14558</a></p>
<p dir="auto">Ironically, I found generate-secrets-from-file on the following page and, through grokking this and the make_secret.go file, I was able to muddle through and create a secret.json file for Kubernetes.</p>
<p dir="auto"><a href="https://tectonic.com/enterprise/docs/latest/deployer/tls.html" rel="nofollow">https://tectonic.com/enterprise/docs/latest/deployer/tls.html</a></p>
<p dir="auto">Recommend:</p>
<p dir="auto">Add documentation that explicitly documents (separately) how to generate a Kuberenetes secret from self-signed certificates.</p>
<p dir="auto">Please add (if there's not already) an easier way to submit bugs against kubernetes.io by helping the reader reference the github source directly. I googled for duplicates to find the correct github page.</p> | <p dir="auto">Forked from the discussion in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="169417586" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/30083" data-hovercard-type="pull_request" data-hovercard-url="/kubernetes/kubernetes/pull/30083/hovercard" href="https://github.com/kubernetes/kubernetes/pull/30083">#30083</a> for implementing against CRI. I remember there is an old issue for this, but couldn't find it anyway.</p>
<p dir="auto">It's worth noted that changing the container naming format is likely to cause one-time backward compatibility issues during upgrades, and may need non-trivial effort to ensure nothing would break. We'll need to determine whether it's worth the efforts to overhaul the naming logic right now. However, it shouldn't be a blocker for the ongoing kuberuntime implementation. We can use this issue to discuss what naming format to use and whether we want to make the change and/or make it backward compatible.</p>
<p dir="auto">Kubelet embeds a lot of information in the (docker) container name itself so that it can retrieve the information easily. The current format:<br>
<code class="notranslate">k8s_<container_name>.<hash_of_container>_<pod_name>_<pod_namespace>_<pod_UID>_<random_ID></code></p>
<ul dir="auto">
<li>kubelet detects whether a container meets the desired spec by checking the hash of the container.</li>
<li>As for the random ID, it's used to ensure each name is unique since kubelet creates a new instance of the container every time a container terminates (i.e., restarting).</li>
<li>The "k8s_" prefix is used to detect whether this container is managed by kubelet or not.</li>
</ul>
<p dir="auto">E.g.,</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="pod name: heapster-v1.1.0-527143062-67der
pod namespace: kube-system
container name: heapster-nanny
The docker container name:
k8s_heapster-nanny.1a2e29e8_heapster-v1.1.0-527143062-67der_kube-system_b288c37f-58d9-11e6-a5b5-42010af00002_d4cdbac9"><pre class="notranslate"><code class="notranslate">pod name: heapster-v1.1.0-527143062-67der
pod namespace: kube-system
container name: heapster-nanny
The docker container name:
k8s_heapster-nanny.1a2e29e8_heapster-v1.1.0-527143062-67der_kube-system_b288c37f-58d9-11e6-a5b5-42010af00002_d4cdbac9
</code></pre></div>
<p dir="auto">With CRI, there is no need to construct a super long container name. We could either rely more on the labels, or potentially rely on the runtime to provide more information.<br>
However, we still need to 1) make container name meaningful and user-friendly, and 2) generate unique name</p>
<p dir="auto">IMO, we can write the <code class="notranslate"><hash_of_container></code> as a label and remove it from the name. The pod UID, though useful in some cases (when pods get recreated), is too long and should be omitted. The new name will look like:<br>
<code class="notranslate">k8s_<container_name>_<pod_name>_<pod_namespace>_<random_ID></code></p>
<p dir="auto">@kubernetes/sig-node <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thockin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thockin">@thockin</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dchen1107/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dchen1107">@dchen1107</a></p> | 0 |
<p dir="auto">[Enter steps to reproduce below:]</p>
<ol dir="auto">
<li>...</li>
<li>...</li>
</ol>
<p dir="auto"><strong>Atom Version</strong>: 1.0.0<br>
<strong>System</strong>: Unknown Windows Version<br>
<strong>Thrown From</strong>: Atom Core</p>
<h3 dir="auto">Stack Trace</h3>
<p dir="auto">Uncaught Error: Cannot find module './context-menu'<br>
Error: Cannot find module './context-menu'<br>
at Function.Module._resolveFilename (module.js:328:15)<br>
at Function.Module._load (module.js:270:25)<br>
at Module.require (module.js:357:17)<br>
at require (module.js:376:17)<br>
at BrowserWindow. (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\app.asar\src\browser\atom-window.js:149:27)<br>
at emitOne (events.js:77:13)<br>
at BrowserWindow.emit (events.js:166:7)<br>
at callFunction (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)<br>
at EventEmitter. (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)<br>
at emitMany (events.js:108:13)</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\atom.asar\renderer\api\lib\remote.js:77
Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at Function.Module._load (module.js:270:25)
at Module.require (module.js:357:17)
at require (module.js:376:17)
at BrowserWindow.<anonymous> (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\app.asar\src\browser\atom-window.js:149:27)
at emitOne (events.js:77:13)
at BrowserWindow.emit (events.js:166:7)
at callFunction (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)
at emitMany (events.js:108:13)
at metaToValue (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\atom.asar\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\atom.asar\renderer\api\lib\remote.js:111:26)
at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\app.asar\src\context-menu-manager.js:170:31)
at HTMLDocument.<anonymous> (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\app.asar\src\window-event-handler.js:150:33)
at HTMLDocument.handler (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\app.asar\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9)
at HTMLDocument.elemData.handle (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46)"><pre class="notranslate"><code class="notranslate">At C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\atom.asar\renderer\api\lib\remote.js:77
Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at Function.Module._load (module.js:270:25)
at Module.require (module.js:357:17)
at require (module.js:376:17)
at BrowserWindow.<anonymous> (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\app.asar\src\browser\atom-window.js:149:27)
at emitOne (events.js:77:13)
at BrowserWindow.emit (events.js:166:7)
at callFunction (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)
at emitMany (events.js:108:13)
at metaToValue (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\atom.asar\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\atom.asar\renderer\api\lib\remote.js:111:26)
at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\app.asar\src\context-menu-manager.js:170:31)
at HTMLDocument.<anonymous> (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\app.asar\src\window-event-handler.js:150:33)
at HTMLDocument.handler (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\app.asar\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9)
at HTMLDocument.elemData.handle (C:\Users\Kolf\AppData\Local\atom\app-1.0.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46)
</code></pre></div>
<h3 dir="auto">Commands</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div>
<h3 dir="auto">Config</h3>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"core": {
"themes": [
"seti-ui",
"seti-syntax"
],
"excludeVcsIgnoredPaths": false
},
"editor": {
"invisibles": {},
"fontFamily": "YaHei Consolas Hybrid",
"softWrap": true,
"showIndentGuide": true,
"softWrapAtPreferredLineLength": true,
"tabLength": 4
}
}"><pre class="notranslate">{
<span class="pl-ent">"core"</span>: {
<span class="pl-ent">"themes"</span>: [
<span class="pl-s"><span class="pl-pds">"</span>seti-ui<span class="pl-pds">"</span></span>,
<span class="pl-s"><span class="pl-pds">"</span>seti-syntax<span class="pl-pds">"</span></span>
],
<span class="pl-ent">"excludeVcsIgnoredPaths"</span>: <span class="pl-c1">false</span>
},
<span class="pl-ent">"editor"</span>: {
<span class="pl-ent">"invisibles"</span>: {},
<span class="pl-ent">"fontFamily"</span>: <span class="pl-s"><span class="pl-pds">"</span>YaHei Consolas Hybrid<span class="pl-pds">"</span></span>,
<span class="pl-ent">"softWrap"</span>: <span class="pl-c1">true</span>,
<span class="pl-ent">"showIndentGuide"</span>: <span class="pl-c1">true</span>,
<span class="pl-ent">"softWrapAtPreferredLineLength"</span>: <span class="pl-c1">true</span>,
<span class="pl-ent">"tabLength"</span>: <span class="pl-c1">4</span>
}
}</pre></div>
<h3 dir="auto">Installed Packages</h3>
<div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User
color-picker, v2.0.7
emmet, v2.3.11
seti-syntax, v0.4.0
seti-ui, v0.7.1
# Dev
No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span>
color<span class="pl-k">-</span>picker, v2.<span class="pl-ii">0</span>.<span class="pl-ii">7</span>
emmet, v2.<span class="pl-ii">3</span>.<span class="pl-ii">11</span>
seti<span class="pl-k">-</span>syntax, v0.<span class="pl-ii">4</span>.<span class="pl-ii">0</span>
seti<span class="pl-k">-</span>ui, v0.<span class="pl-ii">7</span>.<span class="pl-ii">1</span>
<span class="pl-c"><span class="pl-c">#</span> Dev</span>
<span class="pl-en">No</span> <span class="pl-en">dev</span> packages</pre></div> | <p dir="auto">I right-clicked on a folder in the tree view</p>
<p dir="auto"><strong>Atom Version</strong>: 0.194.0<br>
<strong>System</strong>: Windows 7 Entreprise<br>
<strong>Thrown From</strong>: Atom Core</p>
<h3 dir="auto">Stack Trace</h3>
<p dir="auto">Uncaught Error: Cannot find module './context-menu'<br>
Error: Cannot find module './context-menu'<br>
at Function.Module._resolveFilename (module.js:328:15)<br>
at Function.Module._load (module.js:270:25)<br>
at Module.require (module.js:357:17)<br>
at require (module.js:376:17)<br>
at BrowserWindow. (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27)<br>
at emitOne (events.js:77:13)<br>
at BrowserWindow.emit (events.js:166:7)<br>
at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)<br>
at EventEmitter. (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)<br>
at emitMany (events.js:108:13)</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77
Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at Function.Module._load (module.js:270:25)
at Module.require (module.js:357:17)
at require (module.js:376:17)
at BrowserWindow.<anonymous> (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27)
at emitOne (events.js:77:13)
at BrowserWindow.emit (events.js:166:7)
at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)
at emitMany (events.js:108:13)
at metaToValue (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:111:26)
at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\context-menu-manager.js:170:31)
at HTMLDocument.<anonymous> (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\window-event-handler.js:149:33)
at HTMLDocument.handler (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9)
at HTMLDocument.elemData.handle (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46)
"><pre class="notranslate"><code class="notranslate">At C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77
Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at Function.Module._load (module.js:270:25)
at Module.require (module.js:357:17)
at require (module.js:376:17)
at BrowserWindow.<anonymous> (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27)
at emitOne (events.js:77:13)
at BrowserWindow.emit (events.js:166:7)
at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)
at emitMany (events.js:108:13)
at metaToValue (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:111:26)
at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\context-menu-manager.js:170:31)
at HTMLDocument.<anonymous> (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\window-event-handler.js:149:33)
at HTMLDocument.handler (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9)
at HTMLDocument.elemData.handle (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46)
</code></pre></div>
<h3 dir="auto">Commands</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" -4:55.5.0 editor:checkout-head-revision (atom-text-editor.editor.is-focused)
2x -3:41.6.0 window:focus-pane-on-right (atom-text-editor.editor)
-3:17.5.0 application:add-project-folder (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel)
-2:47.4.0 editor:newline (atom-text-editor.editor.is-focused)
-2:38.2.0 core:cut (atom-text-editor.editor)
-2:36.5.0 core:paste (atom-text-editor.editor.is-focused)
-2:26.6.0 core:save (atom-text-editor.editor.is-focused)
-2:20.6.0 core:move-down (atom-text-editor.editor)
-2:20.4.0 autocomplete-plus:confirm (atom-text-editor.editor)
-2:15.8.0 core:save (atom-text-editor.editor)
-2:08.7.0 core:copy (atom-text-editor.editor.is-focused)
-2:01.2.0 core:paste (atom-text-editor.editor.is-focused)
-1:59.7.0 core:save (atom-text-editor.editor.is-focused)
-1:52.2.0 core:paste (atom-text-editor.editor.is-focused)
-1:51.6.0 core:save (atom-text-editor.editor.is-focused)
-1:30.6.0 core:backspace (atom-text-editor.editor)"><pre class="notranslate"><code class="notranslate"> -4:55.5.0 editor:checkout-head-revision (atom-text-editor.editor.is-focused)
2x -3:41.6.0 window:focus-pane-on-right (atom-text-editor.editor)
-3:17.5.0 application:add-project-folder (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel)
-2:47.4.0 editor:newline (atom-text-editor.editor.is-focused)
-2:38.2.0 core:cut (atom-text-editor.editor)
-2:36.5.0 core:paste (atom-text-editor.editor.is-focused)
-2:26.6.0 core:save (atom-text-editor.editor.is-focused)
-2:20.6.0 core:move-down (atom-text-editor.editor)
-2:20.4.0 autocomplete-plus:confirm (atom-text-editor.editor)
-2:15.8.0 core:save (atom-text-editor.editor)
-2:08.7.0 core:copy (atom-text-editor.editor.is-focused)
-2:01.2.0 core:paste (atom-text-editor.editor.is-focused)
-1:59.7.0 core:save (atom-text-editor.editor.is-focused)
-1:52.2.0 core:paste (atom-text-editor.editor.is-focused)
-1:51.6.0 core:save (atom-text-editor.editor.is-focused)
-1:30.6.0 core:backspace (atom-text-editor.editor)
</code></pre></div>
<h3 dir="auto">Config</h3>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"core": {
"ignoredNames": [
"node_modules"
],
"themes": [
"atom-dark-ui",
"seti-syntax"
],
"disabledPackages": [
"Tern"
],
"projectHome": "Y:\\app-tfoumax"
},
"editor": {
"invisibles": {},
"softWrap": true,
"showIndentGuide": true
}
}"><pre class="notranslate">{
<span class="pl-ent">"core"</span>: {
<span class="pl-ent">"ignoredNames"</span>: [
<span class="pl-s"><span class="pl-pds">"</span>node_modules<span class="pl-pds">"</span></span>
],
<span class="pl-ent">"themes"</span>: [
<span class="pl-s"><span class="pl-pds">"</span>atom-dark-ui<span class="pl-pds">"</span></span>,
<span class="pl-s"><span class="pl-pds">"</span>seti-syntax<span class="pl-pds">"</span></span>
],
<span class="pl-ent">"disabledPackages"</span>: [
<span class="pl-s"><span class="pl-pds">"</span>Tern<span class="pl-pds">"</span></span>
],
<span class="pl-ent">"projectHome"</span>: <span class="pl-s"><span class="pl-pds">"</span>Y:<span class="pl-cce">\\</span>app-tfoumax<span class="pl-pds">"</span></span>
},
<span class="pl-ent">"editor"</span>: {
<span class="pl-ent">"invisibles"</span>: {},
<span class="pl-ent">"softWrap"</span>: <span class="pl-c1">true</span>,
<span class="pl-ent">"showIndentGuide"</span>: <span class="pl-c1">true</span>
}
}</pre></div>
<h3 dir="auto">Installed Packages</h3>
<div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User
autocomplete-plus, v2.12.0
autocomplete-snippets, v1.2.0
javascript-snippets, v1.0.0
jshint, v1.3.5
language-ejs, v0.1.0
linter, v0.12.1
pretty-json, v0.3.3
save-session, v0.14.0
Search, v0.4.0
seti-syntax, v0.4.0
# Dev
No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span>
autocomplete<span class="pl-k">-</span>plus, v2.<span class="pl-ii">12</span>.<span class="pl-ii">0</span>
autocomplete<span class="pl-k">-</span>snippets, v1.<span class="pl-ii">2</span>.<span class="pl-ii">0</span>
javascript<span class="pl-k">-</span>snippets, v1.<span class="pl-ii">0</span>.<span class="pl-ii">0</span>
jshint, v1.<span class="pl-ii">3</span>.<span class="pl-ii">5</span>
language<span class="pl-k">-</span>ejs, v0.<span class="pl-ii">1</span>.<span class="pl-ii">0</span>
linter, v0.<span class="pl-ii">12</span>.<span class="pl-ii">1</span>
pretty<span class="pl-k">-</span>json, v0.<span class="pl-ii">3</span>.<span class="pl-ii">3</span>
save<span class="pl-k">-</span>session, v0.<span class="pl-ii">14</span>.<span class="pl-ii">0</span>
Search, v0.<span class="pl-ii">4</span>.<span class="pl-ii">0</span>
seti<span class="pl-k">-</span>syntax, v0.<span class="pl-ii">4</span>.<span class="pl-ii">0</span>
<span class="pl-c"><span class="pl-c">#</span> Dev</span>
<span class="pl-en">No</span> <span class="pl-en">dev</span> packages</pre></div> | 1 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=cbeams" rel="nofollow">Chris Beams</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-5499?redirect=false" rel="nofollow">SPR-5499</a></strong> and commented</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.0.5</p>
<p dir="auto">This issue is a sub-task of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398085251" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/9097" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/9097/hovercard" href="https://github.com/spring-projects/spring-framework/issues/9097">#9097</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="398109203" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12474" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12474/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12474">#12474</a> Use of semicolon delimited lists in REST URIs (<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/2201dd8c45051230ad1a5a0e895cb5951edbfb74/hovercard" href="https://github.com/spring-projects/spring-framework/commit/2201dd8c45051230ad1a5a0e895cb5951edbfb74"><tt>2201dd8</tt></a></p>
<p dir="auto">8 votes, 12 watchers</p> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=nebhale" rel="nofollow">nebhale</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-2704?redirect=false" rel="nofollow">SPR-2704</a></strong> and commented</p>
<p dir="auto">Create and upload Maven Source and Javadoc Bundles for Spring 2.0 per user request</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 2.0 final</p>
<p dir="auto"><strong>Attachments:</strong></p>
<ul dir="auto">
<li><a href="https://jira.spring.io/secure/attachment/12228/SPR-2704.patch" rel="nofollow">SPR-2704.patch</a> (<em>19.66 kB</em>)</li>
</ul>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398060714" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/6083" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/6083/hovercard" href="https://github.com/spring-projects/spring-framework/issues/6083">#6083</a> add version number to jars and produce separate source jars for modules [build.xml patch] (<em><strong>"depends on"</strong></em>)</li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398074579" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/7725" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/7725/hovercard" href="https://github.com/spring-projects/spring-framework/issues/7725">#7725</a> Maven 2 Support - Source Jars (<em><strong>"is duplicated by"</strong></em>)</li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398075756" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/7883" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/7883/hovercard" href="https://github.com/spring-projects/spring-framework/issues/7883">#7883</a> Create javadoc and source jars for seperate modules (Maven friendliness) (<em><strong>"is duplicated by"</strong></em>)</li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398067851" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/6929" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/6929/hovercard" href="https://github.com/spring-projects/spring-framework/issues/6929">#6929</a> Provide source code and maven2 poms at ibiblio (<em><strong>"is duplicated by"</strong></em>)</li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398060714" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/6083" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/6083/hovercard" href="https://github.com/spring-projects/spring-framework/issues/6083">#6083</a> add version number to jars and produce separate source jars for modules [build.xml patch] (<em><strong>"is duplicated by"</strong></em>)</li>
</ul>
<p dir="auto">28 votes, 23 watchers</p> | 0 |
<h2 dir="auto">Make scrapy.selector into a separate project.</h2>
<p dir="auto">When we're scraping web pages, the most common task you need to perform is to extract data from the HTML source. There are several libraries available to achieve this: <strong>BeautifulSoup</strong>, <strong>lxml</strong>.<br>
And although scrapy selectors are built over the lxml library, it is a better way to extract data from HTML source. In my opinion, people will prefer <strong>selector</strong> to <strong>BeautifulSoup</strong> and <strong>lxml</strong> , if make the scrapy.selectors into a separate project,</p> | <p dir="auto">What do you think about adding response.follow_all shortcut, which returns a list of requests? This is inspired by this note in docs:</p>
<blockquote>
<p dir="auto"><code class="notranslate">response.follow(response.css('li.next a'))</code> is not valid because response.css returns a list-like object with selectors for all results, not a single selector. A for loop like in the example above, or response.follow(response.css('li.next a')[0]) is fine.</p>
</blockquote>
<p dir="auto">So instead of</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="for href in response.css('li.next a::attr(href)'):
yield response.follow(href, callback=self.parse)"><pre class="notranslate"><span class="pl-k">for</span> <span class="pl-s1">href</span> <span class="pl-c1">in</span> <span class="pl-s1">response</span>.<span class="pl-en">css</span>(<span class="pl-s">'li.next a::attr(href)'</span>):
<span class="pl-k">yield</span> <span class="pl-s1">response</span>.<span class="pl-en">follow</span>(<span class="pl-s1">href</span>, <span class="pl-s1">callback</span><span class="pl-c1">=</span><span class="pl-s1">self</span>.<span class="pl-s1">parse</span>)</pre></div>
<p dir="auto">users would be able to write (in Python 3)</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="yield from response.follow_all(response.css('li.next a::attr(href)'), self.parse)"><pre class="notranslate"><span class="pl-k">yield</span> <span class="pl-k">from</span> <span class="pl-s1">response</span>.<span class="pl-en">follow_all</span>(<span class="pl-s1">response</span>.<span class="pl-en">css</span>(<span class="pl-s">'li.next a::attr(href)'</span>), <span class="pl-s1">self</span>.<span class="pl-s1">parse</span>)</pre></div>
<p dir="auto">We can also add 'css' and 'xpath' support to it, as keyword arguments; it would shorten the code to this:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="yield from response.follow_all(css='li.next a::attr(href)', callback=self.parse)"><pre class="notranslate"><span class="pl-k">yield</span> <span class="pl-k">from</span> <span class="pl-s1">response</span>.<span class="pl-en">follow_all</span>(<span class="pl-s1">css</span><span class="pl-c1">=</span><span class="pl-s">'li.next a::attr(href)'</span>, <span class="pl-s1">callback</span><span class="pl-c1">=</span><span class="pl-s1">self</span>.<span class="pl-s1">parse</span>)</pre></div>
<p dir="auto">(this is a follow-up to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="149624295" data-permission-text="Title is private" data-url="https://github.com/scrapy/scrapy/issues/1940" data-hovercard-type="issue" data-hovercard-url="/scrapy/scrapy/issues/1940/hovercard" href="https://github.com/scrapy/scrapy/issues/1940">#1940</a> and <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="205755827" data-permission-text="Title is private" data-url="https://github.com/scrapy/scrapy/issues/2540" data-hovercard-type="pull_request" data-hovercard-url="/scrapy/scrapy/pull/2540/hovercard" href="https://github.com/scrapy/scrapy/pull/2540">#2540</a>)</p> | 0 |
<p dir="auto">A long time ago I also did an small tool for renaming files. I also thought about implementing some sophisticated search and replace. But then it came to my mind that 1.) there is always too many exceptions and using rules is too unhandy 2.) a good text editor already has all these sophisticated features already build in<br>
1.) So my idea: take the list of selected files or all files from Windows Explorer<br>
2.) Open an UI with a powerful text editor, e.g. the Avalon editor control is great!<br>
3.) Each file name is one line. Can't add lines or delete lines<br>
4.) Edit the file names using the editor and all the power of a great editor.<br>
5.) When saving apply the new file names.<br>
That would turn out much more useful.<br>
6.) Prio B: implement a file preview pane. When selecting a file name show a preview of the file. This is espacially useful when changing the automatically created names of images from a camera.</p> | <h1 dir="auto">Summary of the new feature/enhancement</h1>
<p dir="auto">Import external file list of new names that will be used on the current queue.</p>
<p dir="auto">Some people just want to rename with a specific list of custom names, not following the Power Rename configuration tool that consider only sequencial names and strings. for example: I have a list of files that I export from a web based application. I'd like to keep the original name or change the name to original date of file, so I export the names to an external file list.</p>
<h1 dir="auto">Proposed technical implementation details (optional)</h1>
<p dir="auto">Download files has a sequence to be list on file system. It depends of the timestamp applied when download was completed. When you load the files you want to PowerRename the list of files follow this rule. But to make it understandable to general users we need to adapt:</p>
<ol dir="auto">
<li>Be able to reorder the file list queue</li>
<li>Be able to reorder the new name file list</li>
<li>Be able to load an external file to make new name list column</li>
<li>Follow the system order list to make the origin file list (queue)</li>
</ol>
<p dir="auto">Import external file list making possible customize the name of bulk rename process.</p> | 1 |
<p dir="auto">I input any String type eg:"eee", It is accepted's.</p>
<p dir="auto">**React 15.1.0 windows 10/ chrome 51</p> | <p dir="auto">A controlled number input, without a corresponding <code class="notranslate">setState</code> function, still allows <code class="notranslate">e</code>, <code class="notranslate">-</code> and <code class="notranslate">.</code> to be entered (and numbers can be inputted afterwards). I could be incorrect but I don't believe this is the desired behavior.</p>
<p dir="auto"><a href="https://jsfiddle.net/vervujhm/" rel="nofollow">Here's a JSFiddle</a> demonstrating the issue.</p> | 1 |
<p dir="auto">Code as of <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/microsoft/terminal/commit/6088134832b851c553af791ee17a9b5c0d808385/hovercard" href="https://github.com/microsoft/terminal/commit/6088134832b851c553af791ee17a9b5c0d808385"><tt>6088134</tt></a></p>
<ul dir="auto">
<li>
<p dir="auto">Your Windows build number: Microsoft Windows [Version 10.0.18362.86]</p>
</li>
<li>
<p dir="auto">What you're doing and what's happening:</p>
</li>
</ul>
<ol dir="auto">
<li>Clicked the dropdown in the upper right corner</li>
<li>Clicked Settings</li>
<li>Code launched with profiles.json in a compact form</li>
<li>Formatted the JSON so I could more easily read and edit it</li>
<li>Saved the file</li>
<li>File is immediately reloaded and put back into compact, unformatted form, making it difficult to edit again.</li>
</ol>
<ul dir="auto">
<li>What's wrong / what should be happening instead:</li>
</ul>
<ol dir="auto">
<li>Expect formatting to persist after saving a change or if the app needs to modify it after detecting a change to at least format it with indentation / beautify / formatter</li>
</ol> | <p dir="auto">The contents of <code class="notranslate">profile.json</code> are all in the same line, marks its readability very low. Maybe it's better to change the default format of it?<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/2afddd8daa45c884eb3c8d6203a52ccdee9a1dd63315604640f4ef0c427000a8/68747470733a2f2f3873706376672e626e2e66696c65732e316472762e636f6d2f79346d55676b5053684874705568436c7573664c5f617571456b793335645948476a4a453664656d594d65554762446565496b566935376e31767955364469515a485a2d54435870612d5035505a306d554b693338737968726e6237734a574741574b4d6454644959344848637747586d7578315874716e334b6630324a77505a54377243662d597471764e466632646c4e706c47526c524f7238645a784c31704c6b56336f7461434755354b38526f6c346261794b784546374d32756b7941313042546d366b6f527478525f476a71675f393154574458673f77696474683d31393230266865696768743d313038302663726f706d6f64653d6e6f6e65"><img src="https://camo.githubusercontent.com/2afddd8daa45c884eb3c8d6203a52ccdee9a1dd63315604640f4ef0c427000a8/68747470733a2f2f3873706376672e626e2e66696c65732e316472762e636f6d2f79346d55676b5053684874705568436c7573664c5f617571456b793335645948476a4a453664656d594d65554762446565496b566935376e31767955364469515a485a2d54435870612d5035505a306d554b693338737968726e6237734a574741574b4d6454644959344848637747586d7578315874716e334b6630324a77505a54377243662d597471764e466632646c4e706c47526c524f7238645a784c31704c6b56336f7461434755354b38526f6c346261794b784546374d32756b7941313042546d366b6f527478525f476a71675f393154574458673f77696474683d31393230266865696768743d313038302663726f706d6f64653d6e6f6e65" alt="profile_screenshot" data-canonical-src="https://8spcvg.bn.files.1drv.com/y4mUgkPShHtpUhClusfL_auqEky35dYHGjJE6demYMeUGbDeeIkVi57n1vyU6DiQZHZ-TCXpa-P5PZ0mUKi38syhrnb7sJWGAWKMdTdIY4HHcwGXmux1Xtqn3Kf02JwPZT7rCf-YtqvNFf2dlNplGRlROr8dZxL1pLkV3otaCGU5K8Rol4bayKxEF7M2ukyA10BTm6koRtxR_Gjqg_91TWDXg?width=1920&height=1080&cropmode=none" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto">This may exist so apologies if I couldn't find it and am duplicating here:</p>
<p dir="auto">Would it be possible to break out the code for a client only API that doesn't include the entire elastic search code base?</p>
<p dir="auto">Currently we have a lot of modular web services modules that make calls to elastic search and because we want to include the advantages of the transport client we have to use the full elastic search codebase. This means that each web service war file is +30 megabytes.</p>
<p dir="auto">Ideally we'd like a client jar file that only includes the API and the transport code.</p> | <p dir="auto">This may exist so apologies if I couldn't find it and am duplicating here:</p>
<p dir="auto">Would it be possible to break out the code for a client only API that doesn't include the entire elastic search code base?</p>
<p dir="auto">Currently we have a lot of modular web services modules that make calls to elastic search and because we want to include the advantages of the transport client we have to use the full elastic search codebase. This means that each web service war file is +30 megabytes.</p>
<p dir="auto">Ideally we'd like a client jar file that only includes the API and the transport code.</p> | 1 |
<h3 dir="auto">Describe your issue.</h3>
<p dir="auto">This may be a duplicate of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1058958328" data-permission-text="Title is private" data-url="https://github.com/scipy/scipy/issues/15072" data-hovercard-type="issue" data-hovercard-url="/scipy/scipy/issues/15072/hovercard" href="https://github.com/scipy/scipy/issues/15072">gh-15072</a>, but 1) I don't have a big array (50 values), and 2) this method did not return any NaN's, just unexpected large (negative or positive) values.</p>
<p dir="auto">I finally caught the issue when I realized I had switched from scipy==1.4.1 to scipy==1.7.3 (before, it was working)</p>
<p dir="auto">I'm attaching two plots made with the same code example, but each with a different scipy version. In the 1.4.1 one, the decimate result is correct and independent of the type of array, and in the 1.7.3, it's wrong for the float32 array:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/33642154/148854466-45337928-ee14-4f75-a977-21e32278a9f5.png"><img src="https://user-images.githubusercontent.com/33642154/148854466-45337928-ee14-4f75-a977-21e32278a9f5.png" alt="scipy1" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/33642154/148854486-6cd0f9bf-de69-427a-ba98-add71b779041.png"><img src="https://user-images.githubusercontent.com/33642154/148854486-6cd0f9bf-de69-427a-ba98-add71b779041.png" alt="scipy2" style="max-width: 100%;"></a></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 scipy.signal as ssi
import matplotlib.pyplot as plt
import numpy as np
np.random.seed(1)
n = 50
p = np.random.rand(n)
q = 20
p_d1 = ssi.decimate(np.asarray(p, dtype='float32'), q)
p_d2 = ssi.decimate(np.asarray(p, dtype='float64'), q)
print('max p_d1 (float32): ', max(p_d1)) # scipy==1.4.1: 0.526 / scipy==1.7.3: 5279 <- wrong
print('max p_d2 (float64): ', max(p_d2)) # scipy==1.4.1: 0.526 / scipy==1.7.3: 0.526
# Optionally plot
t = list(range(n))
t_d = [t[i * q] for i in range(len(p_d1))]
plt.plot(t, p, marker='o')
plt.plot(t_d, p_d1, marker='s')
plt.plot(t_d, p_d2, marker='x')
plt.legend(['float32', 'float32 > decimated', 'float64 > decimated'], loc='upper right')
plt.title('scipy==1.4.1') # scipy==1.4.1 / scipy==1.7.3 (latest to date)
plt.show()"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">scipy</span>.<span class="pl-s1">signal</span> <span class="pl-k">as</span> <span class="pl-s1">ssi</span>
<span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span>
<span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">seed</span>(<span class="pl-c1">1</span>)
<span class="pl-s1">n</span> <span class="pl-c1">=</span> <span class="pl-c1">50</span>
<span class="pl-s1">p</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">rand</span>(<span class="pl-s1">n</span>)
<span class="pl-s1">q</span> <span class="pl-c1">=</span> <span class="pl-c1">20</span>
<span class="pl-s1">p_d1</span> <span class="pl-c1">=</span> <span class="pl-s1">ssi</span>.<span class="pl-en">decimate</span>(<span class="pl-s1">np</span>.<span class="pl-en">asarray</span>(<span class="pl-s1">p</span>, <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s">'float32'</span>), <span class="pl-s1">q</span>)
<span class="pl-s1">p_d2</span> <span class="pl-c1">=</span> <span class="pl-s1">ssi</span>.<span class="pl-en">decimate</span>(<span class="pl-s1">np</span>.<span class="pl-en">asarray</span>(<span class="pl-s1">p</span>, <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s">'float64'</span>), <span class="pl-s1">q</span>)
<span class="pl-en">print</span>(<span class="pl-s">'max p_d1 (float32): '</span>, <span class="pl-en">max</span>(<span class="pl-s1">p_d1</span>)) <span class="pl-c"># scipy==1.4.1: 0.526 / scipy==1.7.3: 5279 <- wrong</span>
<span class="pl-en">print</span>(<span class="pl-s">'max p_d2 (float64): '</span>, <span class="pl-en">max</span>(<span class="pl-s1">p_d2</span>)) <span class="pl-c"># scipy==1.4.1: 0.526 / scipy==1.7.3: 0.526</span>
<span class="pl-c"># Optionally plot</span>
<span class="pl-s1">t</span> <span class="pl-c1">=</span> <span class="pl-en">list</span>(<span class="pl-en">range</span>(<span class="pl-s1">n</span>))
<span class="pl-s1">t_d</span> <span class="pl-c1">=</span> [<span class="pl-s1">t</span>[<span class="pl-s1">i</span> <span class="pl-c1">*</span> <span class="pl-s1">q</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-en">len</span>(<span class="pl-s1">p_d1</span>))]
<span class="pl-s1">plt</span>.<span class="pl-en">plot</span>(<span class="pl-s1">t</span>, <span class="pl-s1">p</span>, <span class="pl-s1">marker</span><span class="pl-c1">=</span><span class="pl-s">'o'</span>)
<span class="pl-s1">plt</span>.<span class="pl-en">plot</span>(<span class="pl-s1">t_d</span>, <span class="pl-s1">p_d1</span>, <span class="pl-s1">marker</span><span class="pl-c1">=</span><span class="pl-s">'s'</span>)
<span class="pl-s1">plt</span>.<span class="pl-en">plot</span>(<span class="pl-s1">t_d</span>, <span class="pl-s1">p_d2</span>, <span class="pl-s1">marker</span><span class="pl-c1">=</span><span class="pl-s">'x'</span>)
<span class="pl-s1">plt</span>.<span class="pl-en">legend</span>([<span class="pl-s">'float32'</span>, <span class="pl-s">'float32 > decimated'</span>, <span class="pl-s">'float64 > decimated'</span>], <span class="pl-s1">loc</span><span class="pl-c1">=</span><span class="pl-s">'upper right'</span>)
<span class="pl-s1">plt</span>.<span class="pl-en">title</span>(<span class="pl-s">'scipy==1.4.1'</span>) <span class="pl-c"># scipy==1.4.1 / scipy==1.7.3 (latest to date)</span>
<span class="pl-s1">plt</span>.<span class="pl-en">show</span>()</pre></div>
<h3 dir="auto">Error message</h3>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="None!!"><pre class="notranslate">None<span class="pl-k">!!</span></pre></div>
<h3 dir="auto">SciPy/NumPy/Python version information</h3>
<p dir="auto">No issue with scipy==1.4.1; Issue with scipy==1.7.3</p> | <p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/scipy/ticket/1269" rel="nofollow">http://projects.scipy.org/scipy/ticket/1269</a> on 2010-08-30 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/josef-pkt/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/josef-pkt">@josef-pkt</a>, assigned to unknown.</em></p>
<p dir="auto">I don't think including the old fuzz tests in test_distributions are necessary anymore.</p>
<p dir="auto">They could be replaced by the new tests, which use a seed, and reuse the random variables, which should speed up the tests a bit.</p>
<p dir="auto">For occasional use, a full fuzz-testing script could be added to the source tree, but with naming so it doesn't run automatically</p> | 0 |
<p dir="auto">I am running Julia in parallel, i.e. I am starting several Julia interpreters simultaneously. Usually this works fine. When a package is outdated, both will recompile it.</p>
<p dir="auto">However, I just encountered this error. It went away when I tried again, so I assume it is a race condition.</p>
<p dir="auto">This is with the release branch of Julia 0.4.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ mpirun -np 2 ~/julia/bin/julia 06-cman-transport.jl MPI
INFO: Recompiling stale cache file /Users/eschnett/.julia/lib/v0.4/MPI.ji for module MPI.
INFO: Recompiling stale cache file /Users/eschnett/.julia/lib/v0.4/MPI.ji for module MPI.
ERROR: LoadError: unlink: no such file or directory (ENOENT)
in unlink at fs.jl:102
in rm at file.jl:59
in create_expr_cache at loading.jl:330
in recompile_stale at loading.jl:461
in _require_from_serialized at loading.jl:83
in _require_from_serialized at /Users/eschnett/julia/lib/julia/sys.dylib
in require at /Users/eschnett/julia/lib/julia/sys.dylib
in include at /Users/eschnett/julia/lib/julia/sys.dylib
in include_from_node1 at /Users/eschnett/julia/lib/julia/sys.dylib
in process_options at /Users/eschnett/julia/lib/julia/sys.dylib
in _start at /Users/eschnett/julia/lib/julia/sys.dylib
while loading /Users/eschnett/.julia/v0.4/MPI/examples/06-cman-transport.jl, in expression starting on line 1
-------------------------------------------------------
Primary job terminated normally, but 1 process returned
a non-zero exit code.. Per user-direction, the job has been aborted.
-------------------------------------------------------"><pre class="notranslate"><code class="notranslate">$ mpirun -np 2 ~/julia/bin/julia 06-cman-transport.jl MPI
INFO: Recompiling stale cache file /Users/eschnett/.julia/lib/v0.4/MPI.ji for module MPI.
INFO: Recompiling stale cache file /Users/eschnett/.julia/lib/v0.4/MPI.ji for module MPI.
ERROR: LoadError: unlink: no such file or directory (ENOENT)
in unlink at fs.jl:102
in rm at file.jl:59
in create_expr_cache at loading.jl:330
in recompile_stale at loading.jl:461
in _require_from_serialized at loading.jl:83
in _require_from_serialized at /Users/eschnett/julia/lib/julia/sys.dylib
in require at /Users/eschnett/julia/lib/julia/sys.dylib
in include at /Users/eschnett/julia/lib/julia/sys.dylib
in include_from_node1 at /Users/eschnett/julia/lib/julia/sys.dylib
in process_options at /Users/eschnett/julia/lib/julia/sys.dylib
in _start at /Users/eschnett/julia/lib/julia/sys.dylib
while loading /Users/eschnett/.julia/v0.4/MPI/examples/06-cman-transport.jl, in expression starting on line 1
-------------------------------------------------------
Primary job terminated normally, but 1 process returned
a non-zero exit code.. Per user-direction, the job has been aborted.
-------------------------------------------------------
</code></pre></div>
<p dir="auto">The standard way to handle this in Unix is to write to a temporary file (<code class="notranslate">$output.tmp</code>), and then use an atomic rename to update the cache (<code class="notranslate">mv("$output.tmp", output)</code>). Removing the file beforehand is not necessary, and can't be done safely unless one locks the directory.</p> | <p dir="auto">Hi all,</p>
<p dir="auto">I am trying to run julia from multiple machines (bash launches multiple julia instances from various machines) and all share the same home dir.</p>
<p dir="auto">The issue is that each machine recompiles the stale cache. (All are share the same package dir). Is this an issue? Is this a known issue? Is there a solution?</p>
<p dir="auto">Thanks</p> | 1 |
<p dir="auto">Do we intend to support prior versions of APIs? E.g. Should we<br>
support v1beta1 inputs once we support v1beta2? To do that properly<br>
we need to version the whole API, not just individual structures, and<br>
we probably want version-specific code that translates old inputs to<br>
"most modern" form well isolated. And Then do we support old versions<br>
on output?</p>
<p dir="auto">To do this "right" is very intensive.</p>
<p dir="auto">We also need to write up a policy statement regarding API changes and deprecation policies.</p> | <p dir="auto">BUG REPORT<br>
<strong>Kubernetes version</strong><br>
v1.4.3+coreos.0</p>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>:<br>
Bare metal CoreOS installation. 3 management nodes + 2 worker nodes.</li>
<li><strong>OS</strong> (e.g. from /etc/os-release):<br>
<code class="notranslate">CoreOS stable (1185.3.0)</code></li>
<li><strong>Kernel</strong><br>
<code class="notranslate">4.7.3-coreos-r2</code></li>
</ul>
<p dir="auto"><strong>What happened</strong>:<br>
DaemonSet pods randomly fail to start on management nodes after nodes reboot.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="> kubectl get pods -o wide -a -l app=ds-gluster-slow-01
NAME READY STATUS RESTARTS AGE IP NODE
gluster-slow-01-fgpk3 1/1 Running 0 19h 10.54.147.5 10.54.147.5
gluster-slow-01-payvs 0/1 MatchNodeSelector 0 10h <none> 10.54.147.6
gluster-slow-01-zdr0t 1/1 Running 0 19h 10.54.147.4 10.54.147.4"><pre class="notranslate"><code class="notranslate">> kubectl get pods -o wide -a -l app=ds-gluster-slow-01
NAME READY STATUS RESTARTS AGE IP NODE
gluster-slow-01-fgpk3 1/1 Running 0 19h 10.54.147.5 10.54.147.5
gluster-slow-01-payvs 0/1 MatchNodeSelector 0 10h <none> 10.54.147.6
gluster-slow-01-zdr0t 1/1 Running 0 19h 10.54.147.4 10.54.147.4
</code></pre></div>
<p dir="auto">10.54.147.4, 10.54.147.5, 10.54.147.6 are the management nodes.<br>
The only way to start the pod again is to delete the pod. The <code class="notranslate">MatchNodeSelector</code> happens once every 2-3 reboots. For remaining reboots the pods are started properly.</p>
<p dir="auto"><strong>How to reproduce it</strong>:<br>
Create a DaemonSet and assign it to management nodes based on user defined labels.<br>
Here is our configuration:</p>
<p dir="auto">Hosts labels:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="NAME STATUS AGE LABELS
10.54.147.10 Ready 52d beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,kubernetes.io/hostname=10.54.147.10,type=infra
10.54.147.11 Ready 52d beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,kubernetes.io/hostname=10.54.147.11,type=infra
10.54.147.4 Ready 53d beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,gluster=slow-01,kubernetes.io/hostname=10.54.147.4,type=management
10.54.147.5 Ready 53d beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,gluster=slow-01,kubernetes.io/hostname=10.54.147.5,type=management
10.54.147.6 Ready,SchedulingDisabled 47d beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,gluster=slow-01,kubernetes.io/hostname=10.54.147.6,type=management"><pre class="notranslate"><code class="notranslate">NAME STATUS AGE LABELS
10.54.147.10 Ready 52d beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,kubernetes.io/hostname=10.54.147.10,type=infra
10.54.147.11 Ready 52d beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,kubernetes.io/hostname=10.54.147.11,type=infra
10.54.147.4 Ready 53d beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,gluster=slow-01,kubernetes.io/hostname=10.54.147.4,type=management
10.54.147.5 Ready 53d beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,gluster=slow-01,kubernetes.io/hostname=10.54.147.5,type=management
10.54.147.6 Ready,SchedulingDisabled 47d beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,gluster=slow-01,kubernetes.io/hostname=10.54.147.6,type=management
</code></pre></div>
<p dir="auto">DaemonSet definition:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
labels:
name: gluster-slow-01
name: gluster-slow-01
namespace: default
spec:
selector:
matchLabels:
app: ds-gluster-slow-01
template:
metadata:
labels:
app: ds-gluster-slow-01
spec:
containers:
- image: internal-registry/mic/infra/glusterfs:1
name: gluster-slow-01
livenessProbe:
tcpSocket:
port: 24007
initialDelaySeconds: 30
timeoutSeconds: 1
securityContext:
privileged: true
volumeMounts:
- mountPath: /mnt/localdisk
name: gluster-localdisk
- mountPath: /var/lib/glusterd
name: gluster-varlib
- mountPath: /dev
name: gluster-dev
- mountPath: /sys/fs/cgroup
name: gluster-cgroup
dnsPolicy: ClusterFirst
hostNetwork: true
nodeSelector:
gluster: slow-01
restartPolicy: Always
securityContext: {}
terminationGracePeriodSeconds: 1
volumes:
- hostPath:
path: /mnt/localdisk
name: gluster-localdisk
- hostPath:
path: /dev
name: gluster-dev
- hostPath:
path: /sys/fs/cgroup
name: gluster-cgroup
- hostPath:
path: /var/lib/glusterd
name: gluster-varlib"><pre class="notranslate"><code class="notranslate">apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
labels:
name: gluster-slow-01
name: gluster-slow-01
namespace: default
spec:
selector:
matchLabels:
app: ds-gluster-slow-01
template:
metadata:
labels:
app: ds-gluster-slow-01
spec:
containers:
- image: internal-registry/mic/infra/glusterfs:1
name: gluster-slow-01
livenessProbe:
tcpSocket:
port: 24007
initialDelaySeconds: 30
timeoutSeconds: 1
securityContext:
privileged: true
volumeMounts:
- mountPath: /mnt/localdisk
name: gluster-localdisk
- mountPath: /var/lib/glusterd
name: gluster-varlib
- mountPath: /dev
name: gluster-dev
- mountPath: /sys/fs/cgroup
name: gluster-cgroup
dnsPolicy: ClusterFirst
hostNetwork: true
nodeSelector:
gluster: slow-01
restartPolicy: Always
securityContext: {}
terminationGracePeriodSeconds: 1
volumes:
- hostPath:
path: /mnt/localdisk
name: gluster-localdisk
- hostPath:
path: /dev
name: gluster-dev
- hostPath:
path: /sys/fs/cgroup
name: gluster-cgroup
- hostPath:
path: /var/lib/glusterd
name: gluster-varlib
</code></pre></div>
<p dir="auto"><strong>Anything else do we need to know</strong>:<br>
The kube-scheduler yaml file for managment nodes is defined as follows:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="apiVersion: v1
kind: Pod
metadata:
name: kube-scheduler
namespace: kube-system
spec:
hostNetwork: true
containers:
- name: kube-scheduler
image: quay.io/coreos/hyperkube:v1.4.3_coreos.0
command:
- /hyperkube
- scheduler
- --master=http://127.0.0.1:8080
- --leader-elect=true
livenessProbe:
httpGet:
host: 127.0.0.1
path: /healthz
port: 10251
initialDelaySeconds: 15
timeoutSeconds: 1"><pre class="notranslate"><code class="notranslate">apiVersion: v1
kind: Pod
metadata:
name: kube-scheduler
namespace: kube-system
spec:
hostNetwork: true
containers:
- name: kube-scheduler
image: quay.io/coreos/hyperkube:v1.4.3_coreos.0
command:
- /hyperkube
- scheduler
- --master=http://127.0.0.1:8080
- --leader-elect=true
livenessProbe:
httpGet:
host: 127.0.0.1
path: /healthz
port: 10251
initialDelaySeconds: 15
timeoutSeconds: 1
</code></pre></div>
<p dir="auto">The top log lines from the kube-scheduler pod are:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="E1109 06:51:42.487688 1 leaderelection.go:252] error retrieving endpoint: Get http://127.0.0.1:8080/api/v1/namespaces/kube-system/endpoints/kube-scheduler: dial tcp 127.0.0.1:8080: getsockopt: connection refused
E1109 06:51:42.662848 1 reflector.go:214] k8s.io/kubernetes/plugin/pkg/scheduler/factory/factory.go:394: Failed to list *api.Node: Get http://127.0.0.1:8080/api/v1/nodes?resourceVersion=0: dial tcp 127.0.0.1:8080: getsockopt: connection refused
E1109 06:51:42.662918 1 reflector.go:214] k8s.io/kubernetes/plugin/pkg/scheduler/factory/factory.go:404: Failed to list *api.Service: Get http://127.0.0.1:8080/api/v1/services?resourceVersion=0: dial tcp 127.0.0.1:8080: getsockopt: connection refused
E1109 06:51:42.662958 1 reflector.go:214] k8s.io/kubernetes/plugin/pkg/scheduler/factory/factory.go:391: Failed to list *api.Pod: Get http://127.0.0.1:8080/api/v1/pods?fieldSelector=spec.nodeName%21%3D%2Cstatus.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&resourceVersion=0: dial tcp 127.0.0.1:8080: getsockopt: connection refused
E1109 06:51:42.663004 1 reflector.go:214] k8s.io/kubernetes/plugin/pkg/scheduler/factory/factory.go:388: Failed to list *api.Pod: Get http://127.0.0.1:8080/api/v1/pods?fieldSelector=spec.nodeName%3D%2Cstatus.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&resourceVersion=0: dial tcp 127.0.0.1:8080: getsockopt: connection refused
E1109 06:51:42.663124 1 reflector.go:214] k8s.io/kubernetes/plugin/pkg/scheduler/factory/factory.go:414: Failed to list *extensions.ReplicaSet: Get http://127.0.0.1:8080/apis/extensions/v1beta1/replicasets?resourceVersion=0: dial tcp 127.0.0.1:8080: getsockopt: connection refused
E1109 06:51:42.663170 1 reflector.go:214] k8s.io/kubernetes/plugin/pkg/scheduler/factory/factory.go:409: Failed to list *api.ReplicationController: Get http://127.0.0.1:8080/api/v1/replicationcontrollers?resourceVersion=0: dial tcp 127.0.0.1:8080: getsockopt: connection refused
E1109 06:51:42.663212 1 reflector.go:214] k8s.io/kubernetes/plugin/pkg/scheduler/factory/factory.go:399: Failed to list *api.PersistentVolumeClaim: Get http://127.0.0.1:8080/api/v1/persistentvolumeclaims?resourceVersion=0: dial tcp 127.0.0.1:8080: getsockopt: connection refused
E1109 06:51:42.663257 1 reflector.go:214] k8s.io/kubernetes/plugin/pkg/scheduler/factory/factory.go:398: Failed to list *api.PersistentVolume: Get http://127.0.0.1:8080/api/v1/persistentvolumes?resourceVersion=0: dial tcp 127.0.0.1:8080: getsockopt: connection refused
I1109 06:51:45.940628 1 leaderelection.go:295] lock is held by sid-kb-004 and has not yet expired
I1109 06:51:48.664098 1 leaderelection.go:295] lock is held by sid-kb-004 and has not yet expired"><pre class="notranslate"><code class="notranslate">E1109 06:51:42.487688 1 leaderelection.go:252] error retrieving endpoint: Get http://127.0.0.1:8080/api/v1/namespaces/kube-system/endpoints/kube-scheduler: dial tcp 127.0.0.1:8080: getsockopt: connection refused
E1109 06:51:42.662848 1 reflector.go:214] k8s.io/kubernetes/plugin/pkg/scheduler/factory/factory.go:394: Failed to list *api.Node: Get http://127.0.0.1:8080/api/v1/nodes?resourceVersion=0: dial tcp 127.0.0.1:8080: getsockopt: connection refused
E1109 06:51:42.662918 1 reflector.go:214] k8s.io/kubernetes/plugin/pkg/scheduler/factory/factory.go:404: Failed to list *api.Service: Get http://127.0.0.1:8080/api/v1/services?resourceVersion=0: dial tcp 127.0.0.1:8080: getsockopt: connection refused
E1109 06:51:42.662958 1 reflector.go:214] k8s.io/kubernetes/plugin/pkg/scheduler/factory/factory.go:391: Failed to list *api.Pod: Get http://127.0.0.1:8080/api/v1/pods?fieldSelector=spec.nodeName%21%3D%2Cstatus.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&resourceVersion=0: dial tcp 127.0.0.1:8080: getsockopt: connection refused
E1109 06:51:42.663004 1 reflector.go:214] k8s.io/kubernetes/plugin/pkg/scheduler/factory/factory.go:388: Failed to list *api.Pod: Get http://127.0.0.1:8080/api/v1/pods?fieldSelector=spec.nodeName%3D%2Cstatus.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&resourceVersion=0: dial tcp 127.0.0.1:8080: getsockopt: connection refused
E1109 06:51:42.663124 1 reflector.go:214] k8s.io/kubernetes/plugin/pkg/scheduler/factory/factory.go:414: Failed to list *extensions.ReplicaSet: Get http://127.0.0.1:8080/apis/extensions/v1beta1/replicasets?resourceVersion=0: dial tcp 127.0.0.1:8080: getsockopt: connection refused
E1109 06:51:42.663170 1 reflector.go:214] k8s.io/kubernetes/plugin/pkg/scheduler/factory/factory.go:409: Failed to list *api.ReplicationController: Get http://127.0.0.1:8080/api/v1/replicationcontrollers?resourceVersion=0: dial tcp 127.0.0.1:8080: getsockopt: connection refused
E1109 06:51:42.663212 1 reflector.go:214] k8s.io/kubernetes/plugin/pkg/scheduler/factory/factory.go:399: Failed to list *api.PersistentVolumeClaim: Get http://127.0.0.1:8080/api/v1/persistentvolumeclaims?resourceVersion=0: dial tcp 127.0.0.1:8080: getsockopt: connection refused
E1109 06:51:42.663257 1 reflector.go:214] k8s.io/kubernetes/plugin/pkg/scheduler/factory/factory.go:398: Failed to list *api.PersistentVolume: Get http://127.0.0.1:8080/api/v1/persistentvolumes?resourceVersion=0: dial tcp 127.0.0.1:8080: getsockopt: connection refused
I1109 06:51:45.940628 1 leaderelection.go:295] lock is held by sid-kb-004 and has not yet expired
I1109 06:51:48.664098 1 leaderelection.go:295] lock is held by sid-kb-004 and has not yet expired
</code></pre></div>
<p dir="auto">I suspect it is a race condition during the management pods initialization. The <code class="notranslate">kube-scheduler</code> is started before the <code class="notranslate">kube-apiserver</code> pod. It may not be handling well the fact that it can't connect to the Kubernetes api service.<br>
I tried to workaround it by adding the <code class="notranslate">init-containers</code> section:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="apiVersion: v1
kind: Pod
metadata:
name: kube-scheduler
namespace: kube-system
annotations:
pod.beta.kubernetes.io/init-containers: '[
{
"image": "quay.io/coreos/hyperkube:v1.4.3_coreos.0",
"name": "wait-for-master",
"command": [ "/bin/bash", "-c", "while ! timeout 1 bash -c \"/kubectl --server=http://127.0.0.1:8080/ cluster-info\"; do sleep 1; done" ]
}
]'
spec:
hostNetwork: true
containers:
- name: kube-scheduler
image: quay.io/coreos/hyperkube:v1.4.3_coreos.0
command:
- /hyperkube
- scheduler
- --master=http://127.0.0.1:8080
- --leader-elect=true
livenessProbe:
httpGet:
host: 127.0.0.1
path: /healthz
port: 10251
initialDelaySeconds: 15
timeoutSeconds: 1"><pre class="notranslate"><code class="notranslate">apiVersion: v1
kind: Pod
metadata:
name: kube-scheduler
namespace: kube-system
annotations:
pod.beta.kubernetes.io/init-containers: '[
{
"image": "quay.io/coreos/hyperkube:v1.4.3_coreos.0",
"name": "wait-for-master",
"command": [ "/bin/bash", "-c", "while ! timeout 1 bash -c \"/kubectl --server=http://127.0.0.1:8080/ cluster-info\"; do sleep 1; done" ]
}
]'
spec:
hostNetwork: true
containers:
- name: kube-scheduler
image: quay.io/coreos/hyperkube:v1.4.3_coreos.0
command:
- /hyperkube
- scheduler
- --master=http://127.0.0.1:8080
- --leader-elect=true
livenessProbe:
httpGet:
host: 127.0.0.1
path: /healthz
port: 10251
initialDelaySeconds: 15
timeoutSeconds: 1
</code></pre></div>
<p dir="auto">but it looks like init-containers only executes during POD creation. When the POD is restarted it does not execute.</p>
<p dir="auto">My bug is similar to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="172472665" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/31123" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/31123/hovercard" href="https://github.com/kubernetes/kubernetes/issues/31123">#31123</a>, but provides more data.</p> | 0 |
<p dir="auto">Ubuntu 12.04, vscode 0.10.1</p>
<p dir="auto">Currently when you run <code class="notranslate">Code</code> if there is an instances already running (or shift clicking the app icon in Windows/Ubuntu) it will activate the currently opened window. This should open a new instance, the same goes for opening a new instance of <code class="notranslate">Code</code> with a folder as an argument when an instance is already open.</p>
<p dir="auto">It's a very common use case for many developers to have multiple editors with the same folder open.</p>
<p dir="auto"><strong>Repro:</strong></p>
<ol dir="auto">
<li><code class="notranslate">Code</code> (open instance of vscode)</li>
<li><code class="notranslate">Code</code></li>
</ol>
<p dir="auto"><strong>Expected:</strong><br>
A new instance of vscode is opened</p>
<p dir="auto"><strong>Actual:</strong><br>
The current instance of vscode is activated</p> | <ul dir="auto">
<li>VSCode Version: 1.1.1</li>
<li>OS Version: current OSX</li>
</ul>
<p dir="auto">Steps to Reproduce:<br>
Vscode with github</p>
<ol dir="auto">
<li>create a file</li>
<li>add content in the file, but don't save it. Stay on it in the editor.</li>
<li>delete file (move to trash) from tree file browser</li>
</ol>
<p dir="auto">File still shows in working files as unsaved file, and on screen. This is confusing, as 'save all' might recreate the deleted file. A deleted file, even if unsaved, should be removed from:</p>
<ul dir="auto">
<li>File browser, both tree and working files</li>
<li>editor</li>
</ul> | 0 |
<ul dir="auto">
<li>
<p dir="auto">Windows build number: 10.0.18362.30</p>
</li>
<li>
<p dir="auto">What you're doing and what's happening: When having one tab (no matter what type of terminal used) open and type <code class="notranslate">exit</code>, the terminal doesn't close and the cursor just blinks. However, when having more than one tabs open, the terminal tab closes just fine.</p>
</li>
<li>
<p dir="auto">What's wrong / what should be happening instead: When typing <code class="notranslate">exit</code> in the last tab, the Windows Terminal should close alongside the open tab.</p>
</li>
</ul> | <h1 dir="auto">Description of the new feature/enhancement</h1>
<p dir="auto">Basically I want (hopefully I am not alone) a mode for the Terminal where it is just a blank canvas.</p>
<p dir="auto">This would allow me to run a Terminal for informational purposes (for example: htop on WSL, or <a href="https://github.com/sqshq/sampler">sampler</a>) to see stuff at a glance.<br>
Since this is the only way this Terminal Window would be used (on a secondary monitor for example), it would be nice to reduce the space it takes up and make it more visually appealing by removing the title bar and window controls.</p>
<p dir="auto">Linux users can achieve this through their window manager, and I have attached a screenshot of someone's config (it's i3 on Linux) to illustrate what I mean.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://raw.githubusercontent.com/da-edra/dotfiles/master/.images/terminals.png"><img src="https://raw.githubusercontent.com/da-edra/dotfiles/master/.images/terminals.png" alt="screenshot" style="max-width: 100%;"></a></p>
<h1 dir="auto">Proposed technical implementation details (optional)</h1>
<p dir="auto">Mind you, I have not done Windows App development in ages, and I am not sure wether it is even possible to remove the window controls here (Looking for feedback from the devs!).</p>
<p dir="auto">If it is though, it could be exposed through a toggle with a customizable keybinding.</p>
<h1 dir="auto">Quick Note</h1>
<p dir="auto">I know this is like a super superficial feature, and definitely the last thing that should be implemented once <em>everything</em> else is running smoothly. Just thought I'd document here that I think this should be a thing.</p> | 0 |
<h4 dir="auto">Description</h4>
<p dir="auto">the result of kmeans.labels_ when n_jobs=1 is different from n_jobs > 1</p>
<h4 dir="auto">Steps/Code to Reproduce</h4>
<p dir="auto">from sklearn.cluster import KMeans<br>
import numpy as np<br>
X = np.array([[1, 2], [1, 4], [1, 0],<br>
[4, 2], [4, 4], [4, 0]])<br>
kmeans = KMeans(n_clusters=2, random_state=0, n_jobs=1).fit(X)<br>
kmeans.labels_</p>
<blockquote>
<p dir="auto">array([0, 0, 0, 1, 1, 1], dtype=int32)</p>
</blockquote>
<p dir="auto">kmeans = KMeans(n_clusters=2, random_state=0, n_jobs=2).fit(X)<br>
kmeans.labels_</p>
<blockquote>
<p dir="auto">array([1, 0, 1, 0, 0, 1], dtype=int32)</p>
</blockquote>
<h4 dir="auto">Expected Results</h4>
<p dir="auto">array([0, 0, 0, 1, 1, 1], dtype=int32)</p>
<h4 dir="auto">Actual Results</h4>
<p dir="auto">array([1, 0, 1, 0, 0, 1], dtype=int32)</p>
<h4 dir="auto">Versions</h4>
<blockquote>
<blockquote>
<blockquote>
<p dir="auto">import platform; print(platform.platform())<br>
Darwin-16.6.0-x86_64-i386-64bit<br>
import sys; print("Python", sys.version)<br>
Python 3.6.1 |Continuum Analytics, Inc.| (default, May 11 2017, 13:04:09)<br>
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.57)]<br>
import numpy; print("NumPy", numpy.<strong>version</strong>)<br>
NumPy 1.13.0<br>
import scipy; print("SciPy", scipy.<strong>version</strong>)<br>
SciPy 0.19.1<br>
import sklearn; print("Scikit-Learn", sklearn.<strong>version</strong>)<br>
Scikit-Learn 0.19.dev0</p>
</blockquote>
</blockquote>
</blockquote>
<p dir="auto">I found the issues maybe because the radom_state for n_job= 1 is different from n_jobs > 1.<br>
I have a proposal to solve this if you think this issue needs to be fixed.<br>
Thank you.</p> | <h4 dir="auto">Description</h4>
<p dir="auto">I noticed that <code class="notranslate">cluster.KMeans</code> gives a slightly different result depending on if <code class="notranslate">n_jobs=1</code> or <code class="notranslate">n_jobs>1</code>.</p>
<h4 dir="auto">Steps/Code to Reproduce</h4>
<p dir="auto">Below is the code I used to run the same <code class="notranslate">KMeans</code> clustering on a varying number of jobs.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from sklearn.cluster import KMeans
from sklearn.datasets import make_blobs
# Generate some data
X, y = make_blobs(n_samples=10000, centers=10, n_features=2, random_state=2)
# Run KMeans with various n_jobs values
for n_jobs in range(1, 5):
kmeans = KMeans(n_clusters=10, random_state=2, n_jobs=n_jobs)
kmeans.fit(X)
print(f'(n_jobs={n_jobs}) kmeans.inertia_ = {kmeans.inertia_}')"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">sklearn</span>.<span class="pl-s1">cluster</span> <span class="pl-k">import</span> <span class="pl-v">KMeans</span>
<span class="pl-k">from</span> <span class="pl-s1">sklearn</span>.<span class="pl-s1">datasets</span> <span class="pl-k">import</span> <span class="pl-s1">make_blobs</span>
<span class="pl-c"># Generate some data</span>
<span class="pl-v">X</span>, <span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-en">make_blobs</span>(<span class="pl-s1">n_samples</span><span class="pl-c1">=</span><span class="pl-c1">10000</span>, <span class="pl-s1">centers</span><span class="pl-c1">=</span><span class="pl-c1">10</span>, <span class="pl-s1">n_features</span><span class="pl-c1">=</span><span class="pl-c1">2</span>, <span class="pl-s1">random_state</span><span class="pl-c1">=</span><span class="pl-c1">2</span>)
<span class="pl-c"># Run KMeans with various n_jobs values</span>
<span class="pl-k">for</span> <span class="pl-s1">n_jobs</span> <span class="pl-c1">in</span> <span class="pl-en">range</span>(<span class="pl-c1">1</span>, <span class="pl-c1">5</span>):
<span class="pl-s1">kmeans</span> <span class="pl-c1">=</span> <span class="pl-v">KMeans</span>(<span class="pl-s1">n_clusters</span><span class="pl-c1">=</span><span class="pl-c1">10</span>, <span class="pl-s1">random_state</span><span class="pl-c1">=</span><span class="pl-c1">2</span>, <span class="pl-s1">n_jobs</span><span class="pl-c1">=</span><span class="pl-s1">n_jobs</span>)
<span class="pl-s1">kmeans</span>.<span class="pl-en">fit</span>(<span class="pl-v">X</span>)
<span class="pl-en">print</span>(<span class="pl-s">f'(n_jobs=<span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">n_jobs</span><span class="pl-kos">}</span></span>) kmeans.inertia_ = <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">kmeans</span>.<span class="pl-s1">inertia_</span><span class="pl-kos">}</span></span>'</span>)</pre></div>
<h4 dir="auto">Expected Results</h4>
<p dir="auto">Should expect the the clustering result (e.g. the inertia) to be the same regardless of how many jobs are run in parallel.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="(n_jobs=1) kmeans.inertia_ = 17815.060435554242
(n_jobs=2) kmeans.inertia_ = 17815.060435554242
(n_jobs=3) kmeans.inertia_ = 17815.060435554242
(n_jobs=4) kmeans.inertia_ = 17815.060435554242"><pre class="notranslate"><code class="notranslate">(n_jobs=1) kmeans.inertia_ = 17815.060435554242
(n_jobs=2) kmeans.inertia_ = 17815.060435554242
(n_jobs=3) kmeans.inertia_ = 17815.060435554242
(n_jobs=4) kmeans.inertia_ = 17815.060435554242
</code></pre></div>
<h4 dir="auto">Actual Results</h4>
<p dir="auto">The <code class="notranslate">n_jobs=1</code> case has a (slightly) different inertia than the parallel cases.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="(n_jobs=1) kmeans.inertia_ = 17815.004991244623
(n_jobs=2) kmeans.inertia_ = 17815.060435554242
(n_jobs=3) kmeans.inertia_ = 17815.060435554242
(n_jobs=4) kmeans.inertia_ = 17815.060435554242"><pre class="notranslate"><code class="notranslate">(n_jobs=1) kmeans.inertia_ = 17815.004991244623
(n_jobs=2) kmeans.inertia_ = 17815.060435554242
(n_jobs=3) kmeans.inertia_ = 17815.060435554242
(n_jobs=4) kmeans.inertia_ = 17815.060435554242
</code></pre></div>
<h4 dir="auto">Versions</h4>
<p dir="auto">Darwin-16.7.0-x86_64-i386-64bit<br>
Python 3.6.1 |Continuum Analytics, Inc.| (default, May 11 2017, 13:04:09)<br>
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.57)]<br>
NumPy 1.13.1<br>
SciPy 0.19.1<br>
Scikit-Learn 0.20.dev0</p> | 1 |
<p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong><br>
Bug</p>
<p dir="auto"><strong>What is the current behavior?</strong><br>
When you have an unexpected prop in a component but that prop is not meant to be generated on the HTML DOM so that is set to {null}, React triggers this warning:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Warning: Unknown prop `activeClassName` on <h1> tag. Remove this prop from the element. For details, see https://fb.me/react-unknown-prop
in h1 (created by HelloWorldComponent)
in HelloWorldComponent"><pre class="notranslate"><code class="notranslate">Warning: Unknown prop `activeClassName` on <h1> tag. Remove this prop from the element. For details, see https://fb.me/react-unknown-prop
in h1 (created by HelloWorldComponent)
in HelloWorldComponent
</code></pre></div>
<p dir="auto">The actual use case is to have a reusable component called <code class="notranslate"><Anchor></code> and it'd be either <code class="notranslate"><Link activeClassName="'is-active" /></code> or <code class="notranslate"><a activeClassName={null} /></code>. <a href="https://github.com/worona/worona-dashboard/blob/dev/client/packages/bulma-dashboard-theme-worona/src/components/Header/MenuItem.jsx#L25">Here's our actual code.</a><br>
In the HTML output, there's no any activeClassName attribute for the second case, so there shouldn't be any react warning.</p>
<p dir="auto"><strong>Example reproducing it</strong><br>
I've reproduced the issue in a simple example here:<br>
<a href="https://jsbin.com/bozuwuq/edit?html,js,console,output" rel="nofollow">https://jsbin.com/bozuwuq/edit?html,js,console,output</a></p>
<p dir="auto"><strong>What is the expected behavior?</strong><br>
Don't warn when a prop is defined to {null} and, therefore, never generated in the DOM.</p>
<p dir="auto"><strong>Which versions of React, and which browser / OS are affected by this issue? Did this work in previous versions of React?</strong><br>
React version: 15.3.0<br>
OS: Ubuntu and Mac OS X. Chromium and Google Chrome.</p> | <p dir="auto"><code class="notranslate">Warning: Unknown prop ... on ... tag. Remove this prop from the element.</code></p>
<p dir="auto">These are emitted even if the property value is <code class="notranslate">undefined</code>. Should <code class="notranslate">undefined</code> perhaps be treated as not existing perhaps? That's how it is intended AFAIK.</p> | 1 |
<p dir="auto">I've upgraded from 0.10.3 to 0.10.5, and the javascript syntax highlighting doesn't work as well as before (OSX El Capitan):</p>
<p dir="auto">from this:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/120693/11912441/d67bc7b2-a63c-11e5-9ab1-05bfc22ee527.png"><img width="264" alt="screen shot 2015-12-19 at 10 36 26" src="https://cloud.githubusercontent.com/assets/120693/11912441/d67bc7b2-a63c-11e5-9ab1-05bfc22ee527.png" style="max-width: 100%;"></a></p>
<p dir="auto">to this:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/120693/11912442/d9c21f2a-a63c-11e5-9a76-2e90f76c8b41.png"><img width="230" alt="screen shot 2015-12-19 at 10 38 59" src="https://cloud.githubusercontent.com/assets/120693/11912442/d9c21f2a-a63c-11e5-9a76-2e90f76c8b41.png" style="max-width: 100%;"></a></p>
<p dir="auto">I also removed any extension I've installed, but it didn't fix it...</p> | <ul dir="auto">
<li>VSCode Version: 0.10.11</li>
<li>OS Version: Windows 7</li>
</ul>
<p dir="auto">Steps to Reproduce:</p>
<ol dir="auto">
<li>Enter function call <code class="notranslate">fn("{};");</code> anywhere in a C++ file</li>
<li>Syntax higlighting for the rest of the file gets confused - the string is not ended correctly</li>
</ol>
<p dir="auto">However string literal in an expression works fine, e.g. <code class="notranslate">a = "{}";</code></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/996834/13977709/9d06a9d2-f0cb-11e5-846f-d909eb02fffb.png"><img src="https://cloud.githubusercontent.com/assets/996834/13977709/9d06a9d2-f0cb-11e5-846f-d909eb02fffb.png" alt="image" style="max-width: 100%;"></a></p> | 0 |
<p dir="auto">When the number of layers in the GRU and the number of layers in the hidden size do not match, the GPU throws an error while the CPU does not.</p>
<p dir="auto">The following snippet to illustrates the same:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" rnn = torch.nn.GRU(input_size=5,hidden_size=4)
x = torch.randn(3, 4, 5)
hidden = torch.autograd.Variable(torch.randn(2, 4, 4))
x = torch.autograd.Variable(x)
if torch.cuda.is_available():
rnn = rnn.cuda()
x = x.cuda()
hidden = hidden.cuda()
rnn(x, hidden)"><pre lang="import" class="notranslate"><code class="notranslate"> rnn = torch.nn.GRU(input_size=5,hidden_size=4)
x = torch.randn(3, 4, 5)
hidden = torch.autograd.Variable(torch.randn(2, 4, 4))
x = torch.autograd.Variable(x)
if torch.cuda.is_available():
rnn = rnn.cuda()
x = x.cuda()
hidden = hidden.cuda()
rnn(x, hidden)
</code></pre></div> | <p dir="auto">I run RNN sucessfully with the code.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="rnn = nn.RNN(features, hidden_size, num_layers)
o, hidden = rnn(x, hidden)"><pre class="notranslate"><code class="notranslate">rnn = nn.RNN(features, hidden_size, num_layers)
o, hidden = rnn(x, hidden)
</code></pre></div>
<p dir="auto">and I run embedding example. Then, got RuntimeError.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="RuntimeError: inconsistent tensor size, expected r_ [5 x 25], t [5 x 25] and src [2 x 25] to
have thesame number of elements, but got 125, 125 and 50 elements respectively at
/opt/conda/conda-bld/pytorch_1503970438496/work/torch/lib/TH/generic/THTensorMath.c:887"><pre class="notranslate"><code class="notranslate">RuntimeError: inconsistent tensor size, expected r_ [5 x 25], t [5 x 25] and src [2 x 25] to
have thesame number of elements, but got 125, 125 and 50 elements respectively at
/opt/conda/conda-bld/pytorch_1503970438496/work/torch/lib/TH/generic/THTensorMath.c:887
</code></pre></div>
<p dir="auto">I set <code class="notranslate">batch_first=True</code> to use <code class="notranslate">Embedding</code></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="x.size is [5, 8, 15]
hidden_size is [5, 2, 25]"><pre class="notranslate"><code class="notranslate">x.size is [5, 8, 15]
hidden_size is [5, 2, 25]
</code></pre></div>
<p dir="auto">nothing seems wrong.<br>
And the error info seems not the dim problem?<br>
The error is so strange.</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">ansible-playbook</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.4.0.0
config file = /etc/ansible/ansible.cfg
configured module search path = [u'/home/sean/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /usr/lib/python2.7/dist-packages/ansible
executable location = /usr/bin/ansible
python version = 2.7.12 (default, Nov 19 2016, 06:48:10) [GCC 5.4.0 20160609]"><pre class="notranslate"><code class="notranslate">ansible 2.4.0.0
config file = /etc/ansible/ansible.cfg
configured module search path = [u'/home/sean/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /usr/lib/python2.7/dist-packages/ansible
executable location = /usr/bin/ansible
python version = 2.7.12 (default, Nov 19 2016, 06:48:10) [GCC 5.4.0 20160609]
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<p dir="auto">No settings changed, confirmed with "ansible-config dump --only-changed" outputting nothing.</p>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">Ubuntu 16.04 managing Ubuntu 16.04</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">Exception when running playbook: "ERROR! Unexpected Exception, this is probably a bug: 'CallbackModule' object has no attribute 'set_options'"</p>
<p dir="auto">A coworker with a Mac host runs the same playbook without issue.</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<ol dir="auto">
<li>Create a playbook. I created one that just prints a debug message and nothing else.</li>
<li>Attempt to run the playbook with <code class="notranslate">ansible-playbook --inventory-file=/path/to/inventory -vvv main.yml</code></li>
</ol>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="#main.yml
- hosts: development
become: yes
gather_facts: no
tasks:
- name: print debug msg
debug:
msg: 'Hello, World!' "><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span>main.yml</span>
- <span class="pl-ent">hosts</span>: <span class="pl-s">development </span>
<span class="pl-ent">become</span>: <span class="pl-s">yes </span>
<span class="pl-ent">gather_facts</span>: <span class="pl-s">no </span>
<span class="pl-ent">tasks</span>:
- <span class="pl-ent">name</span>: <span class="pl-s">print debug msg </span>
<span class="pl-ent">debug</span>:
<span class="pl-ent">msg</span>: <span class="pl-s"><span class="pl-pds">'</span>Hello, World!<span class="pl-pds">'</span></span> </pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">The playbook would run normally.</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible-playbook 2.4.0.0
config file = /etc/ansible/ansible.cfg
configured module search path = [u'/home/sean/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /usr/lib/python2.7/dist-packages/ansible
executable location = /usr/bin/ansible-playbook
python version = 2.7.12 (default, Nov 19 2016, 06:48:10) [GCC 5.4.0 20160609]
Using /etc/ansible/ansible.cfg as config file
Parsed /path/to/inventory inventory source with ini plugin
ERROR! Unexpected Exception, this is probably a bug: 'CallbackModule' object has no attribute 'set_options'
the full traceback was:
Traceback (most recent call last):
File "/usr/bin/ansible-playbook", line 106, in <module>
exit_code = cli.run()
File "/usr/lib/python2.7/dist-packages/ansible/cli/playbook.py", line 130, in run
results = pbex.run()
File "/usr/lib/python2.7/dist-packages/ansible/executor/playbook_executor.py", line 90, in run
self._tqm.load_callbacks()
File "/usr/lib/python2.7/dist-packages/ansible/executor/task_queue_manager.py", line 203, in load_callbacks
callback_obj .set_options(C.config.get_plugin_options('callback', callback_plugin._load_name))
AttributeError: 'CallbackModule' object has no attribute 'set_options'
Ansible failed to complete successfully. Any error output should be
visible above. Please fix these errors and try again."><pre class="notranslate"><code class="notranslate">ansible-playbook 2.4.0.0
config file = /etc/ansible/ansible.cfg
configured module search path = [u'/home/sean/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /usr/lib/python2.7/dist-packages/ansible
executable location = /usr/bin/ansible-playbook
python version = 2.7.12 (default, Nov 19 2016, 06:48:10) [GCC 5.4.0 20160609]
Using /etc/ansible/ansible.cfg as config file
Parsed /path/to/inventory inventory source with ini plugin
ERROR! Unexpected Exception, this is probably a bug: 'CallbackModule' object has no attribute 'set_options'
the full traceback was:
Traceback (most recent call last):
File "/usr/bin/ansible-playbook", line 106, in <module>
exit_code = cli.run()
File "/usr/lib/python2.7/dist-packages/ansible/cli/playbook.py", line 130, in run
results = pbex.run()
File "/usr/lib/python2.7/dist-packages/ansible/executor/playbook_executor.py", line 90, in run
self._tqm.load_callbacks()
File "/usr/lib/python2.7/dist-packages/ansible/executor/task_queue_manager.py", line 203, in load_callbacks
callback_obj .set_options(C.config.get_plugin_options('callback', callback_plugin._load_name))
AttributeError: 'CallbackModule' object has no attribute 'set_options'
Ansible failed to complete successfully. Any error output should be
visible above. Please fix these errors and try again.
</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>CallBackModule</li>
</ul>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ ansible --version
ansible 2.4.0.0
config file = /Users/<REDACTED>/ansible.cfg
configured module search path = [u'/Users/<REDACTED>/ansible-lib/library']
ansible python module location = /usr/local/lib/python2.7/site-packages/ansible
executable location = /usr/local/bin/ansible
python version = 2.7.13 (default, Aug 7 2017, 22:02:14) [GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.28.1)]"><pre class="notranslate"><code class="notranslate">$ ansible --version
ansible 2.4.0.0
config file = /Users/<REDACTED>/ansible.cfg
configured module search path = [u'/Users/<REDACTED>/ansible-lib/library']
ansible python module location = /usr/local/lib/python2.7/site-packages/ansible
executable location = /usr/local/bin/ansible
python version = 2.7.13 (default, Aug 7 2017, 22:02:14) [GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.28.1)]
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ANSIBLE_SSH_CONTROL_PATH(/Users/<REDACTED>/ansible.cfg) = %(directory)s/%%h-%%r
ANSIBLE_SSH_PIPELINING(/Users/<REDACTED>/ansible.cfg) = False
DEFAULT_ACTION_PLUGIN_PATH(/Users/<REDACTED>/ansible.cfg) = [u'/Users/<REDACTED>/ansible-lib/action_plugins']
DEFAULT_CALLBACK_PLUGIN_PATH(/Users/<REDACTED>/ansible.cfg) = [u'/Users/<REDACTED>/ansible-lib/callback_plugins']
DEFAULT_CALLBACK_WHITELIST(/Users/<REDACTED>/ansible.cfg) = ['log_plays_capture', 'mail', 'actionable', 'skippy', 'task_timer', 'version_recorder']
DEFAULT_CONNECTION_PLUGIN_PATH(/Users/<REDACTED>/ansible.cfg) = [u'/Users/<REDACTED>/ansible-lib/connection_plugins']
DEFAULT_FILTER_PLUGIN_PATH(/Users/<REDACTED>/ansible.cfg) = [u'/Users/<REDACTED>/ansible-lib/filter']
DEFAULT_HASH_BEHAVIOUR(/Users/<REDACTED>/ansible.cfg) = merge
DEFAULT_LOOKUP_PLUGIN_PATH(/Users/<REDACTED>/ansible.cfg) = [u'/Users/<REDACTED>/ansible-lib/lookup_plugins']
DEFAULT_MODULE_PATH(/Users/<REDACTED>/ansible.cfg) = [u'/Users/<REDACTED>/ansible-lib/library']
DEFAULT_REMOTE_TMP(/Users/<REDACTED>/ansible.cfg) = $HOME/.ansible/tmp
DEFAULT_STDOUT_CALLBACK(/Users/<REDACTED>/ansible.cfg) = skippy
DEFAULT_TRANSPORT(/Users/<REDACTED>/ansible.cfg) = smart
DEPRECATION_WARNINGS(/Users/<REDACTED>/ansible.cfg) = False
DISPLAY_SKIPPED_HOSTS(/Users/<REDACTED>/ansible.cfg) = False
HOST_KEY_CHECKING(/Users/<REDACTED>/ansible.cfg) = False"><pre class="notranslate"><code class="notranslate">ANSIBLE_SSH_CONTROL_PATH(/Users/<REDACTED>/ansible.cfg) = %(directory)s/%%h-%%r
ANSIBLE_SSH_PIPELINING(/Users/<REDACTED>/ansible.cfg) = False
DEFAULT_ACTION_PLUGIN_PATH(/Users/<REDACTED>/ansible.cfg) = [u'/Users/<REDACTED>/ansible-lib/action_plugins']
DEFAULT_CALLBACK_PLUGIN_PATH(/Users/<REDACTED>/ansible.cfg) = [u'/Users/<REDACTED>/ansible-lib/callback_plugins']
DEFAULT_CALLBACK_WHITELIST(/Users/<REDACTED>/ansible.cfg) = ['log_plays_capture', 'mail', 'actionable', 'skippy', 'task_timer', 'version_recorder']
DEFAULT_CONNECTION_PLUGIN_PATH(/Users/<REDACTED>/ansible.cfg) = [u'/Users/<REDACTED>/ansible-lib/connection_plugins']
DEFAULT_FILTER_PLUGIN_PATH(/Users/<REDACTED>/ansible.cfg) = [u'/Users/<REDACTED>/ansible-lib/filter']
DEFAULT_HASH_BEHAVIOUR(/Users/<REDACTED>/ansible.cfg) = merge
DEFAULT_LOOKUP_PLUGIN_PATH(/Users/<REDACTED>/ansible.cfg) = [u'/Users/<REDACTED>/ansible-lib/lookup_plugins']
DEFAULT_MODULE_PATH(/Users/<REDACTED>/ansible.cfg) = [u'/Users/<REDACTED>/ansible-lib/library']
DEFAULT_REMOTE_TMP(/Users/<REDACTED>/ansible.cfg) = $HOME/.ansible/tmp
DEFAULT_STDOUT_CALLBACK(/Users/<REDACTED>/ansible.cfg) = skippy
DEFAULT_TRANSPORT(/Users/<REDACTED>/ansible.cfg) = smart
DEPRECATION_WARNINGS(/Users/<REDACTED>/ansible.cfg) = False
DISPLAY_SKIPPED_HOSTS(/Users/<REDACTED>/ansible.cfg) = False
HOST_KEY_CHECKING(/Users/<REDACTED>/ansible.cfg) = False
</code></pre></div>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ sw_vers
ProductName: Mac OS X
ProductVersion: 10.13
BuildVersion: 17A362a"><pre class="notranslate"><code class="notranslate">$ sw_vers
ProductName: Mac OS X
ProductVersion: 10.13
BuildVersion: 17A362a
</code></pre></div>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">After upgrading from Ansible 2.3.2 to Ansible 2.4.0.0 (via pip2), We have a bunch of custom libraries, plugins (action, filter and lookup); I see exceptions in playbook runs.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="the full traceback was:
Traceback (most recent call last):
File "/usr/local/bin/ansible-playbook", line 106, in <module>
exit_code = cli.run()
File "/usr/local/lib/python2.7/site-packages/ansible/cli/playbook.py", line 130, in run
results = pbex.run()
File "/usr/local/lib/python2.7/site-packages/ansible/executor/playbook_executor.py", line 90, in run
self._tqm.load_callbacks()
File "/usr/local/lib/python2.7/site-packages/ansible/executor/task_queue_manager.py", line 203, in load_callbacks
callback_obj .set_options(C.config.get_plugin_options('callback', callback_plugin._load_name))
AttributeError: 'CallbackModule' object has no attribute 'set_options'
"><pre class="notranslate"><code class="notranslate">the full traceback was:
Traceback (most recent call last):
File "/usr/local/bin/ansible-playbook", line 106, in <module>
exit_code = cli.run()
File "/usr/local/lib/python2.7/site-packages/ansible/cli/playbook.py", line 130, in run
results = pbex.run()
File "/usr/local/lib/python2.7/site-packages/ansible/executor/playbook_executor.py", line 90, in run
self._tqm.load_callbacks()
File "/usr/local/lib/python2.7/site-packages/ansible/executor/task_queue_manager.py", line 203, in load_callbacks
callback_obj .set_options(C.config.get_plugin_options('callback', callback_plugin._load_name))
AttributeError: 'CallbackModule' object has no attribute 'set_options'
</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 -i env/qa -u <REDACTED> provision.yml --extra-vars="state=reloaded release=e4" --ask-become-pass --become --become-user=<REDACTED> --vault-password-file=~/.vault_pass --limit=<REDACTED> -vvvv
ansible-playbook 2.4.0.0
config file = /Users/<REDACTED>/ansible.cfg
configured module search path = [u'/Users/<REDACTED>/ansible-lib/library']
ansible python module location = /usr/local/lib/python2.7/site-packages/ansible
executable location = /usr/local/bin/ansible-playbook
python version = 2.7.13 (default, Aug 7 2017, 22:02:14) [GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.28.1)]
Using /Users/<REDACTED>/ansible.cfg as config file
SUDO password:
setting up inventory plugins
Parsed /Users/<REDACTED>/env/qa/inventory inventory source with ini plugin
Loading callback plugin skippy of type stdout, v2.0 from /usr/local/lib/python2.7/site-packages/ansible/plugins/callback/__init__.pyc
ERROR! Unexpected Exception, this is probably a bug: 'CallbackModule' object has no attribute 'set_options'
the full traceback was:
Traceback (most recent call last):
File "/usr/local/bin/ansible-playbook", line 106, in <module>
exit_code = cli.run()
File "/usr/local/lib/python2.7/site-packages/ansible/cli/playbook.py", line 130, in run
results = pbex.run()
File "/usr/local/lib/python2.7/site-packages/ansible/executor/playbook_executor.py", line 90, in run
self._tqm.load_callbacks()
File "/usr/local/lib/python2.7/site-packages/ansible/executor/task_queue_manager.py", line 203, in load_callbacks
callback_obj .set_options(C.config.get_plugin_options('callback', callback_plugin._load_name))
AttributeError: 'CallbackModule' object has no attribute 'set_options'"><pre class="notranslate"><code class="notranslate"> $ ansible-playbook -i env/qa -u <REDACTED> provision.yml --extra-vars="state=reloaded release=e4" --ask-become-pass --become --become-user=<REDACTED> --vault-password-file=~/.vault_pass --limit=<REDACTED> -vvvv
ansible-playbook 2.4.0.0
config file = /Users/<REDACTED>/ansible.cfg
configured module search path = [u'/Users/<REDACTED>/ansible-lib/library']
ansible python module location = /usr/local/lib/python2.7/site-packages/ansible
executable location = /usr/local/bin/ansible-playbook
python version = 2.7.13 (default, Aug 7 2017, 22:02:14) [GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.28.1)]
Using /Users/<REDACTED>/ansible.cfg as config file
SUDO password:
setting up inventory plugins
Parsed /Users/<REDACTED>/env/qa/inventory inventory source with ini plugin
Loading callback plugin skippy of type stdout, v2.0 from /usr/local/lib/python2.7/site-packages/ansible/plugins/callback/__init__.pyc
ERROR! Unexpected Exception, this is probably a bug: 'CallbackModule' object has no attribute 'set_options'
the full traceback was:
Traceback (most recent call last):
File "/usr/local/bin/ansible-playbook", line 106, in <module>
exit_code = cli.run()
File "/usr/local/lib/python2.7/site-packages/ansible/cli/playbook.py", line 130, in run
results = pbex.run()
File "/usr/local/lib/python2.7/site-packages/ansible/executor/playbook_executor.py", line 90, in run
self._tqm.load_callbacks()
File "/usr/local/lib/python2.7/site-packages/ansible/executor/task_queue_manager.py", line 203, in load_callbacks
callback_obj .set_options(C.config.get_plugin_options('callback', callback_plugin._load_name))
AttributeError: 'CallbackModule' object has no attribute 'set_options'
</code></pre></div> | 1 |
<p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/" rel="nofollow">http://kubernetes.io/docs/troubleshooting/</a>.): No</p>
<p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.): <code class="notranslate">kubectl</code> <code class="notranslate">apply</code> <code class="notranslate">unexpected</code> <code class="notranslate">signal</code> <code class="notranslate">during</code> <code class="notranslate">runtime</code> <code class="notranslate">execution</code></p>
<hr>
<p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one): <strong>BUG REPORT</strong></p>
<p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Client Version: version.Info{Major:"1", Minor:"3", GitVersion:"v1.3.7", GitCommit:"a2cba278cba1f6881bb0a7704d9cac6fca6ed435", GitTreeState:"clean", BuildDate:"2016-09-12T23:15:30Z", GoVersion:"go1.6.2", Compiler:"gc", Platform:"darwin/amd64"}
Server Version: version.Info{Major:"1", Minor:"3", GitVersion:"v1.3.5", GitCommit:"b0deb2eb8f4037421077f77cb163dbb4c0a2a9f5", GitTreeState:"dirty", BuildDate:"1970-01-01T00:00:00Z", GoVersion:"go1.6", Compiler:"gc", Platform:"linux/amd64"}"><pre class="notranslate"><code class="notranslate">Client Version: version.Info{Major:"1", Minor:"3", GitVersion:"v1.3.7", GitCommit:"a2cba278cba1f6881bb0a7704d9cac6fca6ed435", GitTreeState:"clean", BuildDate:"2016-09-12T23:15:30Z", GoVersion:"go1.6.2", Compiler:"gc", Platform:"darwin/amd64"}
Server Version: version.Info{Major:"1", Minor:"3", GitVersion:"v1.3.5", GitCommit:"b0deb2eb8f4037421077f77cb163dbb4c0a2a9f5", GitTreeState:"dirty", BuildDate:"1970-01-01T00:00:00Z", GoVersion:"go1.6", Compiler:"gc", Platform:"linux/amd64"}
</code></pre></div>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>: Minikube on VMWare Fusion</li>
<li><strong>OS</strong> (e.g. from /etc/os-release): macOS 11.11</li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>): Darwin Kernel Version 16.0.0 x86_64</li>
<li><strong>Install tools</strong>:</li>
<li><strong>Others</strong>:</li>
</ul>
<p dir="auto"><strong>What happened</strong>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ kubectl apply -f frontend-deployment.yaml -f frontend-service.yaml -f frontend-ingress.yaml --record
fatal error: unexpected signal during runtime execution
[signal 0xb code=0x1 addr=0x16b709653040 pc=0xecfb]
runtime stack:
runtime.throw(0x1a4b1e0, 0x2a)
/usr/local/go/src/runtime/panic.go:547 +0x90
runtime.sigpanic()
/usr/local/go/src/runtime/sigpanic_unix.go:12 +0x5a
runtime.unlock(0x234b320)
/usr/local/go/src/runtime/lock_sema.go:107 +0x14b
runtime.(*mheap).alloc_m(0x234b320, 0x20, 0x100000000, 0x26ebeb0)
/usr/local/go/src/runtime/mheap.go:492 +0x314
runtime.(*mheap).alloc.func1()
/usr/local/go/src/runtime/mheap.go:502 +0x41
runtime.systemstack(0xc82016dee0)
/usr/local/go/src/runtime/asm_amd64.s:307 +0xab
runtime.(*mheap).alloc(0x234b320, 0x20, 0x10100000000, 0x1)
/usr/local/go/src/runtime/mheap.go:503 +0x63
runtime.largeAlloc(0x3fe00, 0x1, 0x26ebeb0)
/usr/local/go/src/runtime/malloc.go:766 +0xb3
runtime.mallocgc.func3()
/usr/local/go/src/runtime/malloc.go:664 +0x33
runtime.systemstack(0xc8204a8040)
/usr/local/go/src/runtime/asm_amd64.s:291 +0x79
runtime.mstart()
/usr/local/go/src/runtime/proc.go:1051
goroutine 1 [running]:
runtime.systemstack_switch()
/usr/local/go/src/runtime/asm_amd64.s:245 fp=0xc820579958 sp=0xc820579950
runtime.mallocgc(0x3fe00, 0x1210780, 0x1, 0x11524d)
/usr/local/go/src/runtime/malloc.go:665 +0x9eb fp=0xc820579a30 sp=0xc820579958
runtime.newarray(0x1210780, 0x3fe00, 0x115ae)
/usr/local/go/src/runtime/malloc.go:798 +0xc9 fp=0xc820579a70 sp=0xc820579a30
runtime.makeslice(0x11e4520, 0x1fe00, 0x3fe00, 0x0, 0x0, 0x0)
/usr/local/go/src/runtime/slice.go:32 +0x165 fp=0xc820579ac0 sp=0xc820579a70
encoding/json.(*Decoder).refill(0xc82010e1a0, 0x0, 0x0)
/usr/local/go/src/encoding/json/stream.go:146 +0x161 fp=0xc820579b78 sp=0xc820579ac0
encoding/json.(*Decoder).readValue(0xc82010e1a0, 0x1, 0x0, 0x0)
/usr/local/go/src/encoding/json/stream.go:128 +0x413 fp=0xc820579c28 sp=0xc820579b78
encoding/json.(*Decoder).Decode(0xc82010e1a0, 0x11c34c0, 0xc8205721c0, 0x0, 0x0)
/usr/local/go/src/encoding/json/stream.go:57 +0x159 fp=0xc820579ca8 sp=0xc820579c28
k8s.io/kubernetes/vendor/github.com/emicklei/go-restful/swagger.(*ModelList).UnmarshalJSON(0xc82005f988, 0xc8205b15dd, 0x211ab, 0x213ae, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/emicklei/go-restful/swagger/model_list.go:74 +0x1f7 fp=0xc820579e78 sp=0xc820579ca8
encoding/json.(*decodeState).object(0xc8205005a0, 0x15f5960, 0xc82005f988, 0x199)
/usr/local/go/src/encoding/json/decode.go:560 +0x143 fp=0xc82057a220 sp=0xc820579e78
encoding/json.(*decodeState).value(0xc8205005a0, 0x15f5960, 0xc82005f988, 0x199)
/usr/local/go/src/encoding/json/decode.go:367 +0x3a1 fp=0xc82057a2f8 sp=0xc82057a220
encoding/json.(*decodeState).object(0xc8205005a0, 0x16f3080, 0xc82005f930, 0x199)
/usr/local/go/src/encoding/json/decode.go:684 +0x116a fp=0xc82057a6a0 sp=0xc82057a2f8
encoding/json.(*decodeState).value(0xc8205005a0, 0x11a8700, 0xc82005f930, 0x16)
/usr/local/go/src/encoding/json/decode.go:367 +0x3a1 fp=0xc82057a778 sp=0xc82057a6a0
encoding/json.(*decodeState).unmarshal(0xc8205005a0, 0x11a8700, 0xc82005f930, 0x0, 0x0)
/usr/local/go/src/encoding/json/decode.go:168 +0x196 fp=0xc82057a850 sp=0xc82057a778
encoding/json.Unmarshal(0xc82057c000, 0x5678b, 0x5698b, 0x11a8700, 0xc82005f930, 0x0, 0x0)
/usr/local/go/src/encoding/json/decode.go:96 +0x12b fp=0xc82057a8c0 sp=0xc82057a850
k8s.io/kubernetes/pkg/api/validation.NewSwaggerSchemaFromBytes(0xc82057c000, 0x5678b, 0x5698b, 0x28c3838, 0xc8200aa2d0, 0x0, 0x0, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/api/validation/schema.go:72 +0xbb fp=0xc82057a930 sp=0xc82057a8c0
k8s.io/kubernetes/pkg/kubectl/cmd/util.getSchemaAndValidate(0x28c3ad0, 0xc82027c3c0, 0xc82045eb40, 0x205, 0x240, 0x18365f0, 0x5, 0xc820194ce0, 0x12, 0xc82022ae00, ...)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/cmd/util/factory.go:1012 +0x3c9 fp=0xc82057aa88 sp=0xc82057a930
k8s.io/kubernetes/pkg/kubectl/cmd/util.(*clientSwaggerSchema).ValidateBytes(0xc8200aa2d0, 0xc82045eb40, 0x205, 0x240, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/cmd/util/factory.go:1099 +0x2bfb fp=0xc82057b3a0 sp=0xc82057aa88
k8s.io/kubernetes/pkg/kubectl/resource.ValidateSchema(0xc82045eb40, 0x205, 0x240, 0x28c3838, 0xc8200aa2d0, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/visitor.go:214 +0x1e4 fp=0xc82057b470 sp=0xc82057b3a0
k8s.io/kubernetes/pkg/kubectl/resource.(*StreamVisitor).Visit(0xc820011980, 0xc820194060, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/visitor.go:530 +0x304 fp=0xc82057b5d8 sp=0xc82057b470
k8s.io/kubernetes/pkg/kubectl/resource.(*FileVisitor).Visit(0xc82022b940, 0xc820194060, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/visitor.go:489 +0x12d fp=0xc82057b658 sp=0xc82057b5d8
k8s.io/kubernetes/pkg/kubectl/resource.EagerVisitorList.Visit(0xc820011b40, 0x3, 0x4, 0xc820395920, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/visitor.go:190 +0x12c fp=0xc82057b748 sp=0xc82057b658
k8s.io/kubernetes/pkg/kubectl/resource.(*EagerVisitorList).Visit(0xc82022bdc0, 0xc820395920, 0x0, 0x0)
<autogenerated>:116 +0xb7 fp=0xc82057b780 sp=0xc82057b748
k8s.io/kubernetes/pkg/kubectl/resource.FlattenListVisitor.Visit(0x28c39e0, 0xc82022bdc0, 0xc820011900, 0xc820011c40, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/visitor.go:409 +0xaa fp=0xc82057b7c0 sp=0xc82057b780
k8s.io/kubernetes/pkg/kubectl/resource.(*FlattenListVisitor).Visit(0xc82022be80, 0xc820011c40, 0x0, 0x0)
<autogenerated>:131 +0xb7 fp=0xc82057b7f8 sp=0xc82057b7c0
k8s.io/kubernetes/pkg/kubectl/resource.DecoratedVisitor.Visit(0x28c3a08, 0xc82022be80, 0xc82022bf40, 0x3, 0x4, 0xc820194020, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/visitor.go:317 +0xf0 fp=0xc82057b860 sp=0xc82057b7f8
k8s.io/kubernetes/pkg/kubectl/resource.(*DecoratedVisitor).Visit(0xc820395440, 0xc820194020, 0x0, 0x0)
<autogenerated>:150 +0xae fp=0xc82057b8a8 sp=0xc82057b860
k8s.io/kubernetes/pkg/kubectl/resource.ContinueOnErrorVisitor.Visit(0x28c3a30, 0xc820395440, 0xc8203bd7a0, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/visitor.go:335 +0x12f fp=0xc82057b998 sp=0xc82057b8a8
k8s.io/kubernetes/pkg/kubectl/resource.(*ContinueOnErrorVisitor).Visit(0xc82033cf40, 0xc8203bd7a0, 0x0, 0x0)
<autogenerated>:145 +0xae fp=0xc82057b9d0 sp=0xc82057b998
k8s.io/kubernetes/pkg/kubectl/resource.(*Result).Visit(0xc8203bd730, 0xc8203bd7a0, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/result.go:80 +0x6d fp=0xc82057ba30 sp=0xc82057b9d0
k8s.io/kubernetes/pkg/kubectl/cmd.RunApply(0xc82017c200, 0xc8202b2200, 0x26e61c0, 0xc820030010, 0xc82029d3a0, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/cmd/apply.go:191 +0x754 fp=0xc82057bbc8 sp=0xc82057ba30
k8s.io/kubernetes/pkg/kubectl/cmd.NewCmdApply.func1(0xc8202b2200, 0xc8203bc000, 0x0, 0x7)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/cmd/apply.go:77 +0xf8 fp=0xc82057bc38 sp=0xc82057bbc8
k8s.io/kubernetes/vendor/github.com/spf13/cobra.(*Command).execute(0xc8202b2200, 0xc8203db880, 0x7, 0x7, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/spf13/cobra/command.go:565 +0x85a fp=0xc82057bd50 sp=0xc82057bc38
k8s.io/kubernetes/vendor/github.com/spf13/cobra.(*Command).ExecuteC(0xc8200a2000, 0xc8202b2200, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/spf13/cobra/command.go:651 +0x55c fp=0xc82057be60 sp=0xc82057bd50
k8s.io/kubernetes/vendor/github.com/spf13/cobra.(*Command).Execute(0xc8200a2000, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/spf13/cobra/command.go:610 +0x2d fp=0xc82057be88 sp=0xc82057be60
k8s.io/kubernetes/cmd/kubectl/app.Run(0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/cmd/kubectl/app/kubectl.go:32 +0xf0 fp=0xc82057bf08 sp=0xc82057be88
main.main()
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/cmd/kubectl/kubectl.go:28 +0x28 fp=0xc82057bf30 sp=0xc82057bf08
runtime.main()
/usr/local/go/src/runtime/proc.go:188 +0x2b0 fp=0xc82057bf80 sp=0xc82057bf30
runtime.goexit()
/usr/local/go/src/runtime/asm_amd64.s:1998 +0x1 fp=0xc82057bf88 sp=0xc82057bf80
goroutine 5 [chan receive]:
k8s.io/kubernetes/vendor/github.com/golang/glog.(*loggingT).flushDaemon(0x23421e0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/golang/glog/glog.go:879 +0x67
created by k8s.io/kubernetes/vendor/github.com/golang/glog.init.1
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/golang/glog/glog.go:410 +0x297
goroutine 38 [syscall]:
os/signal.signal_recv(0xc820314b40)
/usr/local/go/src/runtime/sigqueue.go:116 +0x132
os/signal.loop()
/usr/local/go/src/os/signal/signal_unix.go:22 +0x18
created by os/signal.init.1
/usr/local/go/src/os/signal/signal_unix.go:28 +0x37
goroutine 9 [IO wait]:
net.runtime_pollWait(0x26f06b8, 0x72, 0xc8204ea000)
/usr/local/go/src/runtime/netpoll.go:160 +0x60
net.(*pollDesc).Wait(0xc820328610, 0x72, 0x0, 0x0)
/usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a
net.(*pollDesc).WaitRead(0xc820328610, 0x0, 0x0)
/usr/local/go/src/net/fd_poll_runtime.go:78 +0x36
net.(*netFD).Read(0xc8203285b0, 0xc8204ea000, 0x800, 0x800, 0x0, 0x26e2050, 0xc820016160)
/usr/local/go/src/net/fd_unix.go:250 +0x23a
net.(*conn).Read(0xc820178358, 0xc8204ea000, 0x800, 0x800, 0x0, 0x0, 0x0)
/usr/local/go/src/net/net.go:172 +0xe4
crypto/tls.(*block).readFromUntil(0xc8202a87e0, 0x26f07c8, 0xc820178358, 0x5, 0x0, 0x0)
/usr/local/go/src/crypto/tls/conn.go:460 +0xcc
crypto/tls.(*Conn).readRecord(0xc8201ac300, 0x1bd8817, 0x0, 0x0)
/usr/local/go/src/crypto/tls/conn.go:562 +0x2d1
crypto/tls.(*Conn).Read(0xc8201ac300, 0xc82048f000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
/usr/local/go/src/crypto/tls/conn.go:939 +0x167
net/http.noteEOFReader.Read(0x26f0c58, 0xc8201ac300, 0xc8201974b8, 0xc82048f000, 0x1000, 0x1000, 0x4cd3, 0x0, 0x0)
/usr/local/go/src/net/http/transport.go:1687 +0x67
net/http.(*noteEOFReader).Read(0xc820471200, 0xc82048f000, 0x1000, 0x1000, 0xc820169d0d, 0x0, 0x0)
<autogenerated>:284 +0xd0
bufio.(*Reader).fill(0xc820315c20)
/usr/local/go/src/bufio/bufio.go:97 +0x1e9
bufio.(*Reader).Peek(0xc820315c20, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0)
/usr/local/go/src/bufio/bufio.go:132 +0xcc
net/http.(*persistConn).readLoop(0xc820197450)
/usr/local/go/src/net/http/transport.go:1073 +0x177
created by net/http.(*Transport).dialConn
/usr/local/go/src/net/http/transport.go:857 +0x10a6
goroutine 10 [select]:
net/http.(*persistConn).writeLoop(0xc820197450)
/usr/local/go/src/net/http/transport.go:1277 +0x472
created by net/http.(*Transport).dialConn
/usr/local/go/src/net/http/transport.go:858 +0x10cb"><pre class="notranslate"><code class="notranslate">$ kubectl apply -f frontend-deployment.yaml -f frontend-service.yaml -f frontend-ingress.yaml --record
fatal error: unexpected signal during runtime execution
[signal 0xb code=0x1 addr=0x16b709653040 pc=0xecfb]
runtime stack:
runtime.throw(0x1a4b1e0, 0x2a)
/usr/local/go/src/runtime/panic.go:547 +0x90
runtime.sigpanic()
/usr/local/go/src/runtime/sigpanic_unix.go:12 +0x5a
runtime.unlock(0x234b320)
/usr/local/go/src/runtime/lock_sema.go:107 +0x14b
runtime.(*mheap).alloc_m(0x234b320, 0x20, 0x100000000, 0x26ebeb0)
/usr/local/go/src/runtime/mheap.go:492 +0x314
runtime.(*mheap).alloc.func1()
/usr/local/go/src/runtime/mheap.go:502 +0x41
runtime.systemstack(0xc82016dee0)
/usr/local/go/src/runtime/asm_amd64.s:307 +0xab
runtime.(*mheap).alloc(0x234b320, 0x20, 0x10100000000, 0x1)
/usr/local/go/src/runtime/mheap.go:503 +0x63
runtime.largeAlloc(0x3fe00, 0x1, 0x26ebeb0)
/usr/local/go/src/runtime/malloc.go:766 +0xb3
runtime.mallocgc.func3()
/usr/local/go/src/runtime/malloc.go:664 +0x33
runtime.systemstack(0xc8204a8040)
/usr/local/go/src/runtime/asm_amd64.s:291 +0x79
runtime.mstart()
/usr/local/go/src/runtime/proc.go:1051
goroutine 1 [running]:
runtime.systemstack_switch()
/usr/local/go/src/runtime/asm_amd64.s:245 fp=0xc820579958 sp=0xc820579950
runtime.mallocgc(0x3fe00, 0x1210780, 0x1, 0x11524d)
/usr/local/go/src/runtime/malloc.go:665 +0x9eb fp=0xc820579a30 sp=0xc820579958
runtime.newarray(0x1210780, 0x3fe00, 0x115ae)
/usr/local/go/src/runtime/malloc.go:798 +0xc9 fp=0xc820579a70 sp=0xc820579a30
runtime.makeslice(0x11e4520, 0x1fe00, 0x3fe00, 0x0, 0x0, 0x0)
/usr/local/go/src/runtime/slice.go:32 +0x165 fp=0xc820579ac0 sp=0xc820579a70
encoding/json.(*Decoder).refill(0xc82010e1a0, 0x0, 0x0)
/usr/local/go/src/encoding/json/stream.go:146 +0x161 fp=0xc820579b78 sp=0xc820579ac0
encoding/json.(*Decoder).readValue(0xc82010e1a0, 0x1, 0x0, 0x0)
/usr/local/go/src/encoding/json/stream.go:128 +0x413 fp=0xc820579c28 sp=0xc820579b78
encoding/json.(*Decoder).Decode(0xc82010e1a0, 0x11c34c0, 0xc8205721c0, 0x0, 0x0)
/usr/local/go/src/encoding/json/stream.go:57 +0x159 fp=0xc820579ca8 sp=0xc820579c28
k8s.io/kubernetes/vendor/github.com/emicklei/go-restful/swagger.(*ModelList).UnmarshalJSON(0xc82005f988, 0xc8205b15dd, 0x211ab, 0x213ae, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/emicklei/go-restful/swagger/model_list.go:74 +0x1f7 fp=0xc820579e78 sp=0xc820579ca8
encoding/json.(*decodeState).object(0xc8205005a0, 0x15f5960, 0xc82005f988, 0x199)
/usr/local/go/src/encoding/json/decode.go:560 +0x143 fp=0xc82057a220 sp=0xc820579e78
encoding/json.(*decodeState).value(0xc8205005a0, 0x15f5960, 0xc82005f988, 0x199)
/usr/local/go/src/encoding/json/decode.go:367 +0x3a1 fp=0xc82057a2f8 sp=0xc82057a220
encoding/json.(*decodeState).object(0xc8205005a0, 0x16f3080, 0xc82005f930, 0x199)
/usr/local/go/src/encoding/json/decode.go:684 +0x116a fp=0xc82057a6a0 sp=0xc82057a2f8
encoding/json.(*decodeState).value(0xc8205005a0, 0x11a8700, 0xc82005f930, 0x16)
/usr/local/go/src/encoding/json/decode.go:367 +0x3a1 fp=0xc82057a778 sp=0xc82057a6a0
encoding/json.(*decodeState).unmarshal(0xc8205005a0, 0x11a8700, 0xc82005f930, 0x0, 0x0)
/usr/local/go/src/encoding/json/decode.go:168 +0x196 fp=0xc82057a850 sp=0xc82057a778
encoding/json.Unmarshal(0xc82057c000, 0x5678b, 0x5698b, 0x11a8700, 0xc82005f930, 0x0, 0x0)
/usr/local/go/src/encoding/json/decode.go:96 +0x12b fp=0xc82057a8c0 sp=0xc82057a850
k8s.io/kubernetes/pkg/api/validation.NewSwaggerSchemaFromBytes(0xc82057c000, 0x5678b, 0x5698b, 0x28c3838, 0xc8200aa2d0, 0x0, 0x0, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/api/validation/schema.go:72 +0xbb fp=0xc82057a930 sp=0xc82057a8c0
k8s.io/kubernetes/pkg/kubectl/cmd/util.getSchemaAndValidate(0x28c3ad0, 0xc82027c3c0, 0xc82045eb40, 0x205, 0x240, 0x18365f0, 0x5, 0xc820194ce0, 0x12, 0xc82022ae00, ...)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/cmd/util/factory.go:1012 +0x3c9 fp=0xc82057aa88 sp=0xc82057a930
k8s.io/kubernetes/pkg/kubectl/cmd/util.(*clientSwaggerSchema).ValidateBytes(0xc8200aa2d0, 0xc82045eb40, 0x205, 0x240, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/cmd/util/factory.go:1099 +0x2bfb fp=0xc82057b3a0 sp=0xc82057aa88
k8s.io/kubernetes/pkg/kubectl/resource.ValidateSchema(0xc82045eb40, 0x205, 0x240, 0x28c3838, 0xc8200aa2d0, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/visitor.go:214 +0x1e4 fp=0xc82057b470 sp=0xc82057b3a0
k8s.io/kubernetes/pkg/kubectl/resource.(*StreamVisitor).Visit(0xc820011980, 0xc820194060, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/visitor.go:530 +0x304 fp=0xc82057b5d8 sp=0xc82057b470
k8s.io/kubernetes/pkg/kubectl/resource.(*FileVisitor).Visit(0xc82022b940, 0xc820194060, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/visitor.go:489 +0x12d fp=0xc82057b658 sp=0xc82057b5d8
k8s.io/kubernetes/pkg/kubectl/resource.EagerVisitorList.Visit(0xc820011b40, 0x3, 0x4, 0xc820395920, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/visitor.go:190 +0x12c fp=0xc82057b748 sp=0xc82057b658
k8s.io/kubernetes/pkg/kubectl/resource.(*EagerVisitorList).Visit(0xc82022bdc0, 0xc820395920, 0x0, 0x0)
<autogenerated>:116 +0xb7 fp=0xc82057b780 sp=0xc82057b748
k8s.io/kubernetes/pkg/kubectl/resource.FlattenListVisitor.Visit(0x28c39e0, 0xc82022bdc0, 0xc820011900, 0xc820011c40, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/visitor.go:409 +0xaa fp=0xc82057b7c0 sp=0xc82057b780
k8s.io/kubernetes/pkg/kubectl/resource.(*FlattenListVisitor).Visit(0xc82022be80, 0xc820011c40, 0x0, 0x0)
<autogenerated>:131 +0xb7 fp=0xc82057b7f8 sp=0xc82057b7c0
k8s.io/kubernetes/pkg/kubectl/resource.DecoratedVisitor.Visit(0x28c3a08, 0xc82022be80, 0xc82022bf40, 0x3, 0x4, 0xc820194020, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/visitor.go:317 +0xf0 fp=0xc82057b860 sp=0xc82057b7f8
k8s.io/kubernetes/pkg/kubectl/resource.(*DecoratedVisitor).Visit(0xc820395440, 0xc820194020, 0x0, 0x0)
<autogenerated>:150 +0xae fp=0xc82057b8a8 sp=0xc82057b860
k8s.io/kubernetes/pkg/kubectl/resource.ContinueOnErrorVisitor.Visit(0x28c3a30, 0xc820395440, 0xc8203bd7a0, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/visitor.go:335 +0x12f fp=0xc82057b998 sp=0xc82057b8a8
k8s.io/kubernetes/pkg/kubectl/resource.(*ContinueOnErrorVisitor).Visit(0xc82033cf40, 0xc8203bd7a0, 0x0, 0x0)
<autogenerated>:145 +0xae fp=0xc82057b9d0 sp=0xc82057b998
k8s.io/kubernetes/pkg/kubectl/resource.(*Result).Visit(0xc8203bd730, 0xc8203bd7a0, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/resource/result.go:80 +0x6d fp=0xc82057ba30 sp=0xc82057b9d0
k8s.io/kubernetes/pkg/kubectl/cmd.RunApply(0xc82017c200, 0xc8202b2200, 0x26e61c0, 0xc820030010, 0xc82029d3a0, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/cmd/apply.go:191 +0x754 fp=0xc82057bbc8 sp=0xc82057ba30
k8s.io/kubernetes/pkg/kubectl/cmd.NewCmdApply.func1(0xc8202b2200, 0xc8203bc000, 0x0, 0x7)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/kubectl/cmd/apply.go:77 +0xf8 fp=0xc82057bc38 sp=0xc82057bbc8
k8s.io/kubernetes/vendor/github.com/spf13/cobra.(*Command).execute(0xc8202b2200, 0xc8203db880, 0x7, 0x7, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/spf13/cobra/command.go:565 +0x85a fp=0xc82057bd50 sp=0xc82057bc38
k8s.io/kubernetes/vendor/github.com/spf13/cobra.(*Command).ExecuteC(0xc8200a2000, 0xc8202b2200, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/spf13/cobra/command.go:651 +0x55c fp=0xc82057be60 sp=0xc82057bd50
k8s.io/kubernetes/vendor/github.com/spf13/cobra.(*Command).Execute(0xc8200a2000, 0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/spf13/cobra/command.go:610 +0x2d fp=0xc82057be88 sp=0xc82057be60
k8s.io/kubernetes/cmd/kubectl/app.Run(0x0, 0x0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/cmd/kubectl/app/kubectl.go:32 +0xf0 fp=0xc82057bf08 sp=0xc82057be88
main.main()
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/cmd/kubectl/kubectl.go:28 +0x28 fp=0xc82057bf30 sp=0xc82057bf08
runtime.main()
/usr/local/go/src/runtime/proc.go:188 +0x2b0 fp=0xc82057bf80 sp=0xc82057bf30
runtime.goexit()
/usr/local/go/src/runtime/asm_amd64.s:1998 +0x1 fp=0xc82057bf88 sp=0xc82057bf80
goroutine 5 [chan receive]:
k8s.io/kubernetes/vendor/github.com/golang/glog.(*loggingT).flushDaemon(0x23421e0)
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/golang/glog/glog.go:879 +0x67
created by k8s.io/kubernetes/vendor/github.com/golang/glog.init.1
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/golang/glog/glog.go:410 +0x297
goroutine 38 [syscall]:
os/signal.signal_recv(0xc820314b40)
/usr/local/go/src/runtime/sigqueue.go:116 +0x132
os/signal.loop()
/usr/local/go/src/os/signal/signal_unix.go:22 +0x18
created by os/signal.init.1
/usr/local/go/src/os/signal/signal_unix.go:28 +0x37
goroutine 9 [IO wait]:
net.runtime_pollWait(0x26f06b8, 0x72, 0xc8204ea000)
/usr/local/go/src/runtime/netpoll.go:160 +0x60
net.(*pollDesc).Wait(0xc820328610, 0x72, 0x0, 0x0)
/usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a
net.(*pollDesc).WaitRead(0xc820328610, 0x0, 0x0)
/usr/local/go/src/net/fd_poll_runtime.go:78 +0x36
net.(*netFD).Read(0xc8203285b0, 0xc8204ea000, 0x800, 0x800, 0x0, 0x26e2050, 0xc820016160)
/usr/local/go/src/net/fd_unix.go:250 +0x23a
net.(*conn).Read(0xc820178358, 0xc8204ea000, 0x800, 0x800, 0x0, 0x0, 0x0)
/usr/local/go/src/net/net.go:172 +0xe4
crypto/tls.(*block).readFromUntil(0xc8202a87e0, 0x26f07c8, 0xc820178358, 0x5, 0x0, 0x0)
/usr/local/go/src/crypto/tls/conn.go:460 +0xcc
crypto/tls.(*Conn).readRecord(0xc8201ac300, 0x1bd8817, 0x0, 0x0)
/usr/local/go/src/crypto/tls/conn.go:562 +0x2d1
crypto/tls.(*Conn).Read(0xc8201ac300, 0xc82048f000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
/usr/local/go/src/crypto/tls/conn.go:939 +0x167
net/http.noteEOFReader.Read(0x26f0c58, 0xc8201ac300, 0xc8201974b8, 0xc82048f000, 0x1000, 0x1000, 0x4cd3, 0x0, 0x0)
/usr/local/go/src/net/http/transport.go:1687 +0x67
net/http.(*noteEOFReader).Read(0xc820471200, 0xc82048f000, 0x1000, 0x1000, 0xc820169d0d, 0x0, 0x0)
<autogenerated>:284 +0xd0
bufio.(*Reader).fill(0xc820315c20)
/usr/local/go/src/bufio/bufio.go:97 +0x1e9
bufio.(*Reader).Peek(0xc820315c20, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0)
/usr/local/go/src/bufio/bufio.go:132 +0xcc
net/http.(*persistConn).readLoop(0xc820197450)
/usr/local/go/src/net/http/transport.go:1073 +0x177
created by net/http.(*Transport).dialConn
/usr/local/go/src/net/http/transport.go:857 +0x10a6
goroutine 10 [select]:
net/http.(*persistConn).writeLoop(0xc820197450)
/usr/local/go/src/net/http/transport.go:1277 +0x472
created by net/http.(*Transport).dialConn
/usr/local/go/src/net/http/transport.go:858 +0x10cb
</code></pre></div>
<p dir="auto"><strong>What you expected to happen</strong>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="deployment "docker-registry-frontend" created
service "docker-registry-frontend" created
ingress "docker-registry-frontend" created"><pre class="notranslate"><code class="notranslate">deployment "docker-registry-frontend" created
service "docker-registry-frontend" created
ingress "docker-registry-frontend" created
</code></pre></div>
<p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):</p>
<p dir="auto">Hard to say, this is some kind of race condition in my experience.</p>
<p dir="auto"><strong>Anything else do we need to know</strong>:</p> | <p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Client Version: version.Info{Major:"1", Minor:"3", GitVersion:"v1.3.6", GitCommit:"ae4550cc9c89a593bcda6678df201db1b208133b", GitTreeState:"clean", BuildDate:"2016-08-26T18:13:23Z", GoVersion:"go1.6.2", Compiler:"gc", Platform:"darwin/amd64"}"><pre class="notranslate"><code class="notranslate">Client Version: version.Info{Major:"1", Minor:"3", GitVersion:"v1.3.6", GitCommit:"ae4550cc9c89a593bcda6678df201db1b208133b", GitTreeState:"clean", BuildDate:"2016-08-26T18:13:23Z", GoVersion:"go1.6.2", Compiler:"gc", Platform:"darwin/amd64"}
</code></pre></div>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>: Apple MacBook Pro</li>
<li><strong>OS</strong> (e.g. from /etc/os-release): MacOS Sierra</li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>): Darwin 16.0.0</li>
<li><strong>Install tools</strong>: <code class="notranslate">gcloud components install kubectl</code>, <code class="notranslate">brew install kubernetes-cli</code>, or download from release</li>
<li><strong>Others</strong>:<br>
Tested on both a GKE cluster and minikube to be sure. Also tested with running kubectl from Google Cloud Shell and a Docker container, and <code class="notranslate">kubectl</code> works as expected on both Kubernetes environments from these client environments.</li>
</ul>
<p dir="auto"><strong>What happened</strong>:<br>
<code class="notranslate">kubectl</code> has unpredictable errors performing any operations. There's no single error. Sometimes the process hangs, sometimes it panics, sometimes there's connection issues to the cluster.</p>
<p dir="auto"><strong>What you expected to happen</strong>:<br>
<code class="notranslate">kubectl</code> commands to run as expected, without hangs, segfaults, or network issues.</p>
<p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):</p>
<ol dir="auto">
<li>Upgrade to MacOS Sierra</li>
<li>Use kubectl</li>
</ol>
<p dir="auto"><strong>Anything else do we need to know</strong>:<br>
Compiling kubectl for OSX with Go 1.7.x will fix this, as fixes for MacOS Sierra are in Go 1.7.</p>
<p dir="auto">I compiled a version of kubectl from master with version:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Client Version: version.Info{Major:"1", Minor:"5+", GitVersion:"v1.5.0-alpha.0.598+ff1cec99ccdecf", GitCommit:"ff1cec99ccdecfda7f4fedd1fd97ad1f44fd4010", GitTreeState:"clean", BuildDate:"2016-09-12T07:24:10Z", GoVersion:"go1.7.1", Compiler:"gc", Platform:"darwin/amd64"}"><pre class="notranslate"><code class="notranslate">Client Version: version.Info{Major:"1", Minor:"5+", GitVersion:"v1.5.0-alpha.0.598+ff1cec99ccdecf", GitCommit:"ff1cec99ccdecfda7f4fedd1fd97ad1f44fd4010", GitTreeState:"clean", BuildDate:"2016-09-12T07:24:10Z", GoVersion:"go1.7.1", Compiler:"gc", Platform:"darwin/amd64"}
</code></pre></div>
<p dir="auto">and it works as expected.</p>
<p dir="auto">I'm happy to pull request something to fix this, but I don't want to make the assumption that everything needs to be updated to Go 1.7. Also, I'm not sure how the gcloud <code class="notranslate">kubectl</code> component is related or diverges from the release build version, so if I can understand the nuances I can put something together to fix this.</p> | 1 |
<p dir="auto">Pods with RestartPolicyNever are leaving behind infra pods. Those infra pods should be nuked as soon as the last successful run is completed.</p>
<p dir="auto">For people with lots of successful / failed never pods this consumes IP addresses which is bad when IP addresses are in use.</p>
<p dir="auto">I suspect this is because we don't have another marker that the pod has completed, but we probably need to get that fixed before 1.0.</p> | <p dir="auto">I have noticed it a couple of times that when I am trying to export a resource, selflinks stay around and the namespace is not part of the link anymore.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[mkargaki@dhcp129-211 kubernetes.github.io]$ kc get quota -o yaml
apiVersion: v1
items:
- apiVersion: v1
kind: ResourceQuota
metadata:
creationTimestamp: 2016-09-29T16:53:38Z
name: object-counts
namespace: default
resourceVersion: "63"
selfLink: /api/v1/namespaces/default/resourcequotas/object-counts
uid: 4494594b-8665-11e6-9fad-68f72840e7df
spec:
hard:
pods: "2"
status:
hard:
pods: "2"
used:
pods: "0"
kind: List
metadata: {}
$ kc get quota object-counts --export -o yaml
apiVersion: v1
kind: ResourceQuota
metadata:
creationTimestamp: null
name: object-counts
selfLink: /api/v1/namespaces//resourcequotas/object-counts
spec:
hard:
pods: "2"
status: {}"><pre class="notranslate"><code class="notranslate">[mkargaki@dhcp129-211 kubernetes.github.io]$ kc get quota -o yaml
apiVersion: v1
items:
- apiVersion: v1
kind: ResourceQuota
metadata:
creationTimestamp: 2016-09-29T16:53:38Z
name: object-counts
namespace: default
resourceVersion: "63"
selfLink: /api/v1/namespaces/default/resourcequotas/object-counts
uid: 4494594b-8665-11e6-9fad-68f72840e7df
spec:
hard:
pods: "2"
status:
hard:
pods: "2"
used:
pods: "0"
kind: List
metadata: {}
$ kc get quota object-counts --export -o yaml
apiVersion: v1
kind: ResourceQuota
metadata:
creationTimestamp: null
name: object-counts
selfLink: /api/v1/namespaces//resourcequotas/object-counts
spec:
hard:
pods: "2"
status: {}
</code></pre></div>
<p dir="auto">We could maybe have this issue as a duplicate of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="151339064" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/24855" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/24855/hovercard" href="https://github.com/kubernetes/kubernetes/issues/24855">#24855</a> but I thought we already cleaned up object meta.</p>
<p dir="auto">@kubernetes/sig-apps</p> | 0 |
<p dir="auto">Seaborn rugplot plot nothing in version 0.10.0</p>
<p dir="auto">Same code works fine under 0.9.0 and I checked <a href="https://seaborn.pydata.org/whatsnew.html" rel="nofollow">https://seaborn.pydata.org/whatsnew.html</a> to find out if there was an update regarding rugplot but there wasn't.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import seaborn
from matplotlib import pyplot
iris = seaborn.load_dataset('iris')
x = iris.petal_length.values
seaborn.rugplot(x)
pyplot.show()"><pre class="notranslate"><code class="notranslate">import seaborn
from matplotlib import pyplot
iris = seaborn.load_dataset('iris')
x = iris.petal_length.values
seaborn.rugplot(x)
pyplot.show()
</code></pre></div>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/32084214/79833302-18340300-83e6-11ea-8563-f4fd4a0b0920.png"><img src="https://user-images.githubusercontent.com/32084214/79833302-18340300-83e6-11ea-8563-f4fd4a0b0920.png" alt="2" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/32084214/79833313-19fdc680-83e6-11ea-9515-3472603628a8.png"><img src="https://user-images.githubusercontent.com/32084214/79833313-19fdc680-83e6-11ea-9515-3472603628a8.png" alt="1" style="max-width: 100%;"></a></p> | <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import seaborn as sns
a = [1, 2, 4]
sns.rugplot(a)"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">seaborn</span> <span class="pl-k">as</span> <span class="pl-s1">sns</span>
<span class="pl-s1">a</span> <span class="pl-c1">=</span> [<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">4</span>]
<span class="pl-s1">sns</span>.<span class="pl-en">rugplot</span>(<span class="pl-s1">a</span>)</pre></div>
<p dir="auto">With matplotlib 3.1.2:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/315810/78386766-2bed0600-75ac-11ea-81e2-81ad3058434b.png"><img src="https://user-images.githubusercontent.com/315810/78386766-2bed0600-75ac-11ea-81e2-81ad3058434b.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">With matplotlib 3.2.1:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/315810/78386799-3b6c4f00-75ac-11ea-8be1-0ed4a6be51ab.png"><img src="https://user-images.githubusercontent.com/315810/78386799-3b6c4f00-75ac-11ea-8be1-0ed4a6be51ab.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">I assume this is related to autoscaling changes in matplotlib 3.2 but don't know if it's a bug or if we were previously relying on undefined behavior.</p>
<p dir="auto">See also <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="591891009" data-permission-text="Title is private" data-url="https://github.com/mwaskom/seaborn/issues/2013" data-hovercard-type="issue" data-hovercard-url="/mwaskom/seaborn/issues/2013/hovercard" href="https://github.com/mwaskom/seaborn/issues/2013">#2013</a></p> | 1 |
<p dir="auto">Matlab has <code class="notranslate">cholupdate</code> for rank 1 updates and downdates to Cholesky factorizations. It would be nice to have something similar, but perhaps with better syntax.</p>
<p dir="auto">LINPACK had these, but LAPACK left out the Cholesky update/downdate capabilities.</p>
<p dir="auto"><a href="http://icl.cs.utk.edu/lapack-forum/viewtopic.php?f=2&t=2646" rel="nofollow">http://icl.cs.utk.edu/lapack-forum/viewtopic.php?f=2&t=2646</a></p>
<p dir="auto">For the dense case, perhaps these should be implemented in julia. For the sparse case, I believe that CHOLMOD does provide these capabilities.</p>
<p dir="auto">Updated by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/andreasnoack/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/andreasnoack">@andreasnoack</a>:</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Dense Cholesky</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Sparse Cholesky</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Dense QR (actually there are three different storage schemes)</li>
</ul> | <p dir="auto">I'm still seeing regression in line number coverage. I've seen this in a number of instances. Below is a partial list:</p>
<ul dir="auto">
<li><code class="notranslate">convert(::Type{BigInt},::Int64)</code></li>
<li><code class="notranslate">finalizer(::Any,::Ptr{Void})</code></li>
</ul> | 0 |
<h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">modules/cloud/vmware/vmware_guest.py</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.4.1.0
config file = /home/jzimmett/.ansible.cfg
configured module search path = [u'/home/jzimmett/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /usr/lib/python2.7/site-packages/ansible
executable location = /usr/bin/ansible
python version = 2.7.5 (default, May 3 2017, 07:55:04) [GCC 4.8.5 20150623 (Red Hat 4.8.5-14)]
"><pre class="notranslate"><code class="notranslate">ansible 2.4.1.0
config file = /home/jzimmett/.ansible.cfg
configured module search path = [u'/home/jzimmett/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /usr/lib/python2.7/site-packages/ansible
executable location = /usr/bin/ansible
python version = 2.7.5 (default, May 3 2017, 07:55:04) [GCC 4.8.5 20150623 (Red Hat 4.8.5-14)]
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<p dir="auto">DEFAULT_ROLES_PATH(env: ANSIBLE_ROLES_PATH) = [u'/home/xxxx/workspace/devops/platform-roles<br>
HOST_KEY_CHECKING(/home/xxxx/.ansible.cfg) = False<br>
RETRY_FILES_ENABLED(/home/xxxx/.ansible.cfg) = False</p>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">Red Hat 7.4</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">Same issue as <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="260413355" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible/issues/30879" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible/issues/30879/hovercard" href="https://github.com/ansible/ansible/issues/30879">#30879</a>. vmware_guest is not handling the "cluster" option correctly and fails that it can not find the data store.</p>
<p dir="auto">I have modified the vmware_guest.py to work properly and will do a pull request.</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="- name: "Create DHCP VM {{ vm_name }}"
vmware_guest:
hostname: "{{ vc_hostname }}"
username: "{{ vc_user }}"
password: "{{ vc_pass }}"
cluster: "{{ vc_cluster }}"
datacenter: "{{ vc_datacenter }}"
template: "{{ vm_template }}"
name: "{{ vm_name }}"
networks:
- vlan: "{{ vm_vlan }}"
type: "dhcp"
annotation: "{{ vm_notes }}"
folder: "{{ vc_folder }}"
disk:
- size_gb: 30
type: thin
datastore: "{{ vm_datastore }}"
hardware:
memory_mb: "{{ vm_memory }}"
num_cpus: "{{ vm_cpu }}"
customization:
hostname: "{{ vm_name }}"
domain: "{{ vm_domain }}"
customvalues:
- { key: "Created By", value: "Ansible" }
- { key: "Department", value: "Engineering" }
- { key: "Requested By", value: "Jeff Yates" }
- { key: "Date Created", value: "{{ ansible_date_time.date }}" }
state: poweredon
validate_certs: no
force: yes
wait_for_ip_address: "{{ vm_wait_for | default('yes') }}"
register: newvm
"><pre class="notranslate">- <span class="pl-ent">name</span>: <span class="pl-s"><span class="pl-pds">"</span>Create DHCP VM {{ vm_name }}<span class="pl-pds">"</span></span>
<span class="pl-ent">vmware_guest</span>:
<span class="pl-ent">hostname</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vc_hostname }}<span class="pl-pds">"</span></span>
<span class="pl-ent">username</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vc_user }}<span class="pl-pds">"</span></span>
<span class="pl-ent">password</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vc_pass }}<span class="pl-pds">"</span></span>
<span class="pl-ent">cluster</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vc_cluster }}<span class="pl-pds">"</span></span>
<span class="pl-ent">datacenter</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vc_datacenter }}<span class="pl-pds">"</span></span>
<span class="pl-ent">template</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vm_template }}<span class="pl-pds">"</span></span>
<span class="pl-ent">name</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vm_name }}<span class="pl-pds">"</span></span>
<span class="pl-ent">networks</span>:
- <span class="pl-ent">vlan</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vm_vlan }}<span class="pl-pds">"</span></span>
<span class="pl-ent">type</span>: <span class="pl-s"><span class="pl-pds">"</span>dhcp<span class="pl-pds">"</span></span>
<span class="pl-ent">annotation</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vm_notes }}<span class="pl-pds">"</span></span>
<span class="pl-ent">folder</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vc_folder }}<span class="pl-pds">"</span></span>
<span class="pl-ent">disk</span>:
- <span class="pl-ent">size_gb</span>: <span class="pl-c1">30</span>
<span class="pl-ent">type</span>: <span class="pl-s">thin</span>
<span class="pl-ent">datastore</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vm_datastore }}<span class="pl-pds">"</span></span>
<span class="pl-ent">hardware</span>:
<span class="pl-ent">memory_mb</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vm_memory }}<span class="pl-pds">"</span></span>
<span class="pl-ent">num_cpus</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vm_cpu }}<span class="pl-pds">"</span></span>
<span class="pl-ent">customization</span>:
<span class="pl-ent">hostname</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vm_name }}<span class="pl-pds">"</span></span>
<span class="pl-ent">domain</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vm_domain }}<span class="pl-pds">"</span></span>
<span class="pl-ent">customvalues</span>:
- <span class="pl-s">{ key: "Created By", value: "Ansible" }</span>
- <span class="pl-s">{ key: "Department", value: "Engineering" }</span>
- <span class="pl-s">{ key: "Requested By", value: "Jeff Yates" }</span>
- <span class="pl-s">{ key: "Date Created", value: "{{ ansible_date_time.date }}" }</span>
<span class="pl-ent">state</span>: <span class="pl-s">poweredon</span>
<span class="pl-ent">validate_certs</span>: <span class="pl-s">no</span>
<span class="pl-ent">force</span>: <span class="pl-s">yes</span>
<span class="pl-ent">wait_for_ip_address</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vm_wait_for | default('yes') }}<span class="pl-pds">"</span></span>
<span class="pl-ent">register</span>: <span class="pl-s">newvm</span>
</pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">Handle the Cluster option properly</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Unable to access the virtual machine configuration: Unable to access file [Tintri-UAT-RPM]
"><pre class="notranslate"><code class="notranslate">Unable to access the virtual machine configuration: Unable to access file [Tintri-UAT-RPM]
</code></pre></div> | <h5 dir="auto">Issue Type:</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">Ansible Version:</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ ansible --version
ansible 2.1.0 (devel b2a6784a9f) last updated 2016/03/03 23:00:55 (GMT +000)
lib/ansible/modules/core: (detached HEAD 0bbb7ba38d) last updated 2016/03/03 23:00:59 (GMT +000)
lib/ansible/modules/extras: (detached HEAD 39e4040685) last updated 2016/03/03 23:01:00 (GMT +000)
config file =
configured module search path = /opt/ansible/ansible/library"><pre class="notranslate"><code class="notranslate">$ ansible --version
ansible 2.1.0 (devel b2a6784a9f) last updated 2016/03/03 23:00:55 (GMT +000)
lib/ansible/modules/core: (detached HEAD 0bbb7ba38d) last updated 2016/03/03 23:00:59 (GMT +000)
lib/ansible/modules/extras: (detached HEAD 39e4040685) last updated 2016/03/03 23:01:00 (GMT +000)
config file =
configured module search path = /opt/ansible/ansible/library
</code></pre></div>
<h5 dir="auto">Ansible Configuration:</h5>
<ul dir="auto">
<li><code class="notranslate">N/A</code>: No <code class="notranslate">ansible.cfg</code> / No settings changed from default</li>
<li><code class="notranslate">source</code>d included ENV script from: <code class="notranslate">/opt/ansible/ansible/hacking/env-setup</code></li>
<li><code class="notranslate">ANSIBLE_HOME=/opt/ansible/ansible</code></li>
<li><code class="notranslate">PYTHONPATH=/opt/ansible/ansible/lib:</code></li>
</ul>
<h5 dir="auto">Environment:</h5>
<p dir="auto">OS running Docker build from: <a href="https://travis-ci.org/trinitronx/ansible-docker-base/jobs/113524091#L14-L18" rel="nofollow"><code class="notranslate">Ubuntu 14.04.3 LTS</code></a><br>
OS running Ansible from: <code class="notranslate">CentOS Linux 7</code> (from: Docker image: <a href="https://hub.docker.com/_/centos/" rel="nofollow">centos:7</a>)<br>
OS managing: <code class="notranslate">N/A</code></p>
<h5 dir="auto">Summary:</h5>
<p dir="auto">Integration tests for <code class="notranslate">parsing</code> make target (playbook: <code class="notranslate">/opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/main.yml:29</code>) fail on current <a href="https://github.com/ansible/ansible/tree/b2a6784a9f/test">ansible/ansible@devel</a> branch. Not sure whether to trust that this Ansible build is ok for production use, so I'm blocked on updating my <a href="https://hub.docker.com/r/trinitronx/ansible-base/" rel="nofollow">built container</a> to benefit from fixes since it was last built.</p>
<h5 dir="auto">Steps To Reproduce:</h5>
<ol dir="auto">
<li>Install <a href="https://github.com/ansible/ansible/tree/b2a6784a9f/test">ansible/ansible@b2a6784a9f</a> to <code class="notranslate">/opt/ansible/ansible</code> on a test host</li>
<li>Run the included <code class="notranslate">hacking/env-setup</code> script: <code class="notranslate">source /opt/ansible/ansible/hacking/env-setup</code></li>
<li>Run the included integration tests with <code class="notranslate">cd /opt/ansible/ansible && make -j 1 parsing test_var_precedence test_templating_settings includes test_hash test_handlers test_group_by</code></li>
<li><code class="notranslate">test_bad_parsing</code> fails at <code class="notranslate">/opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/main.yml:29</code></li>
</ol>
<p dir="auto">Error looks like:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="An exception occurred during task execution. The full traceback is:
Traceback (most recent call last):
File "/root/.ansible/tmp/ansible-tmp-1457046096.64-209878160685501/file", line 2491, in <module>
main()
File "/root/.ansible/tmp/ansible-tmp-1457046096.64-209878160685501/file", line 409, in main
open(path, 'w').close()
IOError: [Errno 2] No such file or directory: '/root/ansible_testing/ansible_test_file'
fatal: [testhost]: FAILED! => {"changed": false, "failed": true, "invocation": {"module_name": "file"}, "parsed": false}"><pre class="notranslate"><code class="notranslate">An exception occurred during task execution. The full traceback is:
Traceback (most recent call last):
File "/root/.ansible/tmp/ansible-tmp-1457046096.64-209878160685501/file", line 2491, in <module>
main()
File "/root/.ansible/tmp/ansible-tmp-1457046096.64-209878160685501/file", line 409, in main
open(path, 'w').close()
IOError: [Errno 2] No such file or directory: '/root/ansible_testing/ansible_test_file'
fatal: [testhost]: FAILED! => {"changed": false, "failed": true, "invocation": {"module_name": "file"}, "parsed": false}
</code></pre></div>
<h5 dir="auto">Expected Results:</h5>
<p dir="auto">Tests should pass, <a href="https://travis-ci.org/trinitronx/ansible-docker-base/jobs/110899113#L3792-L3822" rel="nofollow">output</a> should look like:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TASK [test_bad_parsing : file] *************************************************
task path: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/main.yml:29
ESTABLISH LOCAL CONNECTION FOR USER: root
127.0.0.1 EXEC /bin/sh -c '( umask 22 && mkdir -p "` echo $HOME/.ansible/tmp/ansible-tmp-1456130434.04-39704483789163 `" && echo "` echo $HOME/.ansible/tmp/ansible-tmp-1456130434.04-39704483789163 `" )'
127.0.0.1 PUT /tmp/tmp6K5guK TO /root/.ansible/tmp/ansible-tmp-1456130434.04-39704483789163/file
127.0.0.1 EXEC /bin/sh -c 'LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 /usr/bin/python /root/.ansible/tmp/ansible-tmp-1456130434.04-39704483789163/file; rm -rf "/root/.ansible/tmp/ansible-tmp-1456130434.04-39704483789163/" > /dev/null 2>&1'
changed: [testhost] => {"changed": true, "dest": "/root/ansible_testing/ansible_test_file", "diff": {"after": {"path": "/root/ansible_testing/ansible_test_file", "state": "touch"}, "before": {"path": "/root/ansible_testing/ansible_test_file", "state": "absent"}}, "gid": 0, "group": "root", "invocation": {"module_args": {"backup": null, "content": null, "delimiter": null, "diff_peek": null, "directory_mode": null, "follow": false, "force": false, "group": null, "mode": null, "name": "~/ansible_testing/ansible_test_file", "original_basename": null, "owner": null, "path": "/root/ansible_testing/ansible_test_file", "recurse": false, "regexp": null, "remote_src": null, "selevel": null, "serole": null, "setype": null, "seuser": null, "src": null, "state": "touch", "validate": null}, "module_name": "file"}, "mode": "0644", "owner": "root", "size": 0, "state": "file", "uid": 0}
TASK [test_bad_parsing : include test that we cannot insert arguments] *********
task path: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/main.yml:32
included: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/scenario1.yml for testhost
TASK [test_bad_parsing : include test that we cannot duplicate arguments] ******
task path: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/main.yml:36
included: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/scenario2.yml for testhost
TASK [test_bad_parsing : include test that we can't do this for the shell module] ***
task path: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/main.yml:40
included: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/scenario3.yml for testhost
TASK [test_bad_parsing : include test that we can't go all Little Bobby Droptables on a quoted var to add more] ***
task path: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/main.yml:44
included: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/scenario4.yml for testhost
TASK [test_bad_parsing : test that a missing/malformed jinja2 filter fails] ****
task path: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/main.yml:48
fatal: [testhost]: FAILED! => {"failed": true, "msg": "template error while templating string: no filter named 'badfiltername'. String: {{output_dir|badfiltername}}"}
...ignoring
PLAY RECAP *********************************************************************
testhost : ok=9 changed=2 unreachable=0 failed=0"><pre class="notranslate"><code class="notranslate">TASK [test_bad_parsing : file] *************************************************
task path: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/main.yml:29
ESTABLISH LOCAL CONNECTION FOR USER: root
127.0.0.1 EXEC /bin/sh -c '( umask 22 && mkdir -p "` echo $HOME/.ansible/tmp/ansible-tmp-1456130434.04-39704483789163 `" && echo "` echo $HOME/.ansible/tmp/ansible-tmp-1456130434.04-39704483789163 `" )'
127.0.0.1 PUT /tmp/tmp6K5guK TO /root/.ansible/tmp/ansible-tmp-1456130434.04-39704483789163/file
127.0.0.1 EXEC /bin/sh -c 'LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 /usr/bin/python /root/.ansible/tmp/ansible-tmp-1456130434.04-39704483789163/file; rm -rf "/root/.ansible/tmp/ansible-tmp-1456130434.04-39704483789163/" > /dev/null 2>&1'
changed: [testhost] => {"changed": true, "dest": "/root/ansible_testing/ansible_test_file", "diff": {"after": {"path": "/root/ansible_testing/ansible_test_file", "state": "touch"}, "before": {"path": "/root/ansible_testing/ansible_test_file", "state": "absent"}}, "gid": 0, "group": "root", "invocation": {"module_args": {"backup": null, "content": null, "delimiter": null, "diff_peek": null, "directory_mode": null, "follow": false, "force": false, "group": null, "mode": null, "name": "~/ansible_testing/ansible_test_file", "original_basename": null, "owner": null, "path": "/root/ansible_testing/ansible_test_file", "recurse": false, "regexp": null, "remote_src": null, "selevel": null, "serole": null, "setype": null, "seuser": null, "src": null, "state": "touch", "validate": null}, "module_name": "file"}, "mode": "0644", "owner": "root", "size": 0, "state": "file", "uid": 0}
TASK [test_bad_parsing : include test that we cannot insert arguments] *********
task path: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/main.yml:32
included: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/scenario1.yml for testhost
TASK [test_bad_parsing : include test that we cannot duplicate arguments] ******
task path: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/main.yml:36
included: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/scenario2.yml for testhost
TASK [test_bad_parsing : include test that we can't do this for the shell module] ***
task path: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/main.yml:40
included: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/scenario3.yml for testhost
TASK [test_bad_parsing : include test that we can't go all Little Bobby Droptables on a quoted var to add more] ***
task path: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/main.yml:44
included: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/scenario4.yml for testhost
TASK [test_bad_parsing : test that a missing/malformed jinja2 filter fails] ****
task path: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/main.yml:48
fatal: [testhost]: FAILED! => {"failed": true, "msg": "template error while templating string: no filter named 'badfiltername'. String: {{output_dir|badfiltername}}"}
...ignoring
PLAY RECAP *********************************************************************
testhost : ok=9 changed=2 unreachable=0 failed=0
</code></pre></div>
<h5 dir="auto">Actual Results:</h5>
<p dir="auto"><a href="https://travis-ci.org/trinitronx/ansible-docker-base/jobs/113524091#L3801-L3813" rel="nofollow">Build + integration tests</a> failed with error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TASK [test_bad_parsing : file] *************************************************
task path: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/main.yml:29
ESTABLISH LOCAL CONNECTION FOR USER: root
127.0.0.1 EXEC /bin/sh -c '( umask 22 && mkdir -p "` echo $HOME/.ansible/tmp/ansible-tmp-1457046096.64-209878160685501 `" && echo "` echo $HOME/.ansible/tmp/ansible-tmp-1457046096.64-209878160685501 `" )'
127.0.0.1 PUT /tmp/tmpXbN09c TO /root/.ansible/tmp/ansible-tmp-1457046096.64-209878160685501/file
127.0.0.1 EXEC /bin/sh -c 'LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 /usr/bin/python /root/.ansible/tmp/ansible-tmp-1457046096.64-209878160685501/file; rm -rf "/root/.ansible/tmp/ansible-tmp-1457046096.64-209878160685501/" > /dev/null 2>&1'
An exception occurred during task execution. The full traceback is:
Traceback (most recent call last):
File "/root/.ansible/tmp/ansible-tmp-1457046096.64-209878160685501/file", line 2491, in <module>
main()
File "/root/.ansible/tmp/ansible-tmp-1457046096.64-209878160685501/file", line 409, in main
open(path, 'w').close()
IOError: [Errno 2] No such file or directory: '/root/ansible_testing/ansible_test_file'
fatal: [testhost]: FAILED! => {"changed": false, "failed": true, "invocation": {"module_name": "file"}, "parsed": false}
NO MORE HOSTS LEFT *************************************************************
to retry, use: --limit @bad_parsing.retry
PLAY RECAP *********************************************************************
testhost : ok=1 changed=0 unreachable=0 failed=1
make: *** [parsing] Error 2"><pre class="notranslate"><code class="notranslate">TASK [test_bad_parsing : file] *************************************************
task path: /opt/ansible/ansible/test/integration/roles/test_bad_parsing/tasks/main.yml:29
ESTABLISH LOCAL CONNECTION FOR USER: root
127.0.0.1 EXEC /bin/sh -c '( umask 22 && mkdir -p "` echo $HOME/.ansible/tmp/ansible-tmp-1457046096.64-209878160685501 `" && echo "` echo $HOME/.ansible/tmp/ansible-tmp-1457046096.64-209878160685501 `" )'
127.0.0.1 PUT /tmp/tmpXbN09c TO /root/.ansible/tmp/ansible-tmp-1457046096.64-209878160685501/file
127.0.0.1 EXEC /bin/sh -c 'LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 /usr/bin/python /root/.ansible/tmp/ansible-tmp-1457046096.64-209878160685501/file; rm -rf "/root/.ansible/tmp/ansible-tmp-1457046096.64-209878160685501/" > /dev/null 2>&1'
An exception occurred during task execution. The full traceback is:
Traceback (most recent call last):
File "/root/.ansible/tmp/ansible-tmp-1457046096.64-209878160685501/file", line 2491, in <module>
main()
File "/root/.ansible/tmp/ansible-tmp-1457046096.64-209878160685501/file", line 409, in main
open(path, 'w').close()
IOError: [Errno 2] No such file or directory: '/root/ansible_testing/ansible_test_file'
fatal: [testhost]: FAILED! => {"changed": false, "failed": true, "invocation": {"module_name": "file"}, "parsed": false}
NO MORE HOSTS LEFT *************************************************************
to retry, use: --limit @bad_parsing.retry
PLAY RECAP *********************************************************************
testhost : ok=1 changed=0 unreachable=0 failed=1
make: *** [parsing] Error 2
</code></pre></div> | 0 |
<p dir="auto">When i run my bootsrap run locally disappears by the gylphicon docs the bottom border. Is this normal?<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/c92d36e5a68c1affc1d73171c965e80662e88f82d78973b95005df10e6797ec1/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f353630323931382f313735393130372f66623430386664362d363639392d313165332d393565612d3238623036393536623766372e706e67"><img src="https://camo.githubusercontent.com/c92d36e5a68c1affc1d73171c965e80662e88f82d78973b95005df10e6797ec1/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f353630323931382f313735393130372f66623430386664362d363639392d313165332d393565612d3238623036393536623766372e706e67" alt="screenshot from 2013-12-16 22 28 08" data-canonical-src="https://f.cloud.github.com/assets/5602918/1759107/fb408fd6-6699-11e3-95ea-28b06956b7f7.png" style="max-width: 100%;"></a></p> | <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/6adbcc1d43a4b3f982970856e316585140621f7b3e8ca158d5fb59058d78bf11/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f353630323931382f313735393035362f30373039666131612d363639392d313165332d383237362d3566653863363161343432372e706e67"><img src="https://camo.githubusercontent.com/6adbcc1d43a4b3f982970856e316585140621f7b3e8ca158d5fb59058d78bf11/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f353630323931382f313735393035362f30373039666131612d363639392d313165332d383237362d3566653863363161343432372e706e67" alt="screenshot from 2013-12-16 22 28 08" data-canonical-src="https://f.cloud.github.com/assets/5602918/1759056/0709fa1a-6699-11e3-8276-5fe8c61a4427.png" style="max-width: 100%;"></a><br>
Hi i'm on a linux 13.04 a,d when i run bootstrap locally the border on the bs-glyphicons won't show. Is this normal?</p> | 1 |
<p dir="auto">Feature gates are generally checked before expansion so feature gates are defeated by code inside macros.</p> | <p dir="auto">This uses the <code class="notranslate">log_syntax!</code> macro without the <code class="notranslate">log_syntax</code> feature gate:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#[feature(macro_rules)];
// This should be required
// #[feature(log_syntax)];
macro_rules! hey ( () => { log_syntax!() } )
fn main() {
hey!()
}"><pre class="notranslate"><code class="notranslate">#[feature(macro_rules)];
// This should be required
// #[feature(log_syntax)];
macro_rules! hey ( () => { log_syntax!() } )
fn main() {
hey!()
}
</code></pre></div>
<p dir="auto">Nominating.</p> | 1 |
<p dir="auto"><strong>Context:</strong></p>
<ul dir="auto">
<li>GOOD Playwright Version: 1.29.0</li>
<li>BAD Playwright Version: 1.35.1</li>
<li>Operating System: Mac</li>
<li>Extra: N/A</li>
</ul>
<p dir="auto"><strong>Code Snippet</strong></p>
<p dir="auto">Minimal repro:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="await page.setContent(`<button style="display:contents">DISPLAY CONTENTS</button>`)
await expect(page.getByRole('button')).toBeVisible()"><pre class="notranslate"><span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">setContent</span><span class="pl-kos">(</span><span class="pl-s">`<button style="display:contents">DISPLAY CONTENTS</button>`</span><span class="pl-kos">)</span>
<span class="pl-k">await</span> <span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">getByRole</span><span class="pl-kos">(</span><span class="pl-s">'button'</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toBeVisible</span><span class="pl-kos">(</span><span class="pl-kos">)</span></pre></div>
<p dir="auto"><strong>Describe the bug</strong></p>
<p dir="auto">Elements that use <code class="notranslate">display: contents;</code> are no longer deemed visible, breaking a lot of our selectors when upgrading. I've found similar issues, however the exact reproduction described in this issue seems to be working fine: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1094592126" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/11202" data-hovercard-type="issue" data-hovercard-url="/microsoft/playwright/issues/11202/hovercard" href="https://github.com/microsoft/playwright/issues/11202">#11202</a></p>
<p dir="auto">This problem seems specific to getByRole.</p>
<p dir="auto">I also was able to reproduce this issue in 1.32.0.</p> | <p dir="auto"><strong>Context:</strong></p>
<ul dir="auto">
<li>GOOD Playwright Version: ? (Fixed less than year ago here <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1279838184" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/15034" data-hovercard-type="issue" data-hovercard-url="/microsoft/playwright/issues/15034/hovercard" href="https://github.com/microsoft/playwright/issues/15034">#15034</a>)</li>
<li>BAD Playwright Version: 1.34.3</li>
<li>Operating System: Mac</li>
<li>Extra: None</li>
</ul>
<p dir="auto"><strong>Code Snippet</strong></p>
<p dir="auto">React code</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="export function App(props) {
return (
<div className='App'>
<h1>Hello React.</h1>
<h2>Start editing to see some magic happen!</h2>
<Table />
</div>
);
}
const contentsStyle = {
color: "red",
display: "contents"
};
function Table() {
return (
<div role="table">
<div role="row" style={contentsStyle}>
<div role="cell">
<p>Cell content</p>
</div>
</div>
<div role="row">
<div role="cell">
<p>Cell content</p>
</div>
</div>
</div>
);
}"><pre class="notranslate"><span class="pl-k">export</span> <span class="pl-k">function</span> <span class="pl-v">App</span><span class="pl-kos">(</span><span class="pl-s1">props</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-kos">(</span>
<span class="pl-c1"><</span><span class="pl-ent">div</span> <span class="pl-c1">className</span><span class="pl-c1">=</span><span class="pl-s">'App'</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">h1</span><span class="pl-c1">></span>Hello React.<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">h1</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">h2</span><span class="pl-c1">></span>Start editing to see some magic happen!<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">h2</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">Table</span> <span class="pl-c1">/</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">div</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">const</span> <span class="pl-s1">contentsStyle</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-c1">color</span>: <span class="pl-s">"red"</span><span class="pl-kos">,</span>
<span class="pl-c1">display</span>: <span class="pl-s">"contents"</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">function</span> <span class="pl-v">Table</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-kos">(</span>
<span class="pl-c1"><</span><span class="pl-ent">div</span> <span class="pl-c1">role</span><span class="pl-c1">=</span><span class="pl-s">"table"</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">div</span> <span class="pl-c1">role</span><span class="pl-c1">=</span><span class="pl-s">"row"</span> <span class="pl-c1">style</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-s1">contentsStyle</span><span class="pl-kos">}</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">div</span> <span class="pl-c1">role</span><span class="pl-c1">=</span><span class="pl-s">"cell"</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">p</span><span class="pl-c1">></span>Cell content<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">p</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">div</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">div</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">div</span> <span class="pl-c1">role</span><span class="pl-c1">=</span><span class="pl-s">"row"</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">div</span> <span class="pl-c1">role</span><span class="pl-c1">=</span><span class="pl-s">"cell"</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">p</span><span class="pl-c1">></span>Cell content<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">p</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">div</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">div</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">div</span><span class="pl-c1">></span>
<span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">Test code to reproduce:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { test, expect } from "@playwright/test";
test("locate table rows", async ({ page }) => {
await page.goto(url);
await expect(page.getByRole("row")).toHaveCount(2);
});
"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">test</span><span class="pl-kos">,</span> <span class="pl-s1">expect</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"@playwright/test"</span><span class="pl-kos">;</span>
<span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-s">"locate table rows"</span><span class="pl-kos">,</span> <span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">{</span> page <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">goto</span><span class="pl-kos">(</span><span class="pl-s1">url</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">getByRole</span><span class="pl-kos">(</span><span class="pl-s">"row"</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toHaveCount</span><span class="pl-kos">(</span><span class="pl-c1">2</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">The <code class="notranslate">page.getByRole('row')</code> can not see element with style <code class="notranslate">display: "contents";</code> applied.</p>
<p dir="auto">In the code example above, there are two rows in table, one of them has no styles and one of them has <code class="notranslate">display: "contents";</code>. The test can locate only one of these two rows.</p>
<p dir="auto">It works fine in Webkit, but not in Chrome and Firefox (see screenshot of test run below).</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer" href="https://user-images.githubusercontent.com/1619732/243371387-f5ea3fe5-b672-453e-872a-60e20fa88ed2.png"><img src="https://user-images.githubusercontent.com/1619732/243371387-f5ea3fe5-b672-453e-872a-60e20fa88ed2.png" alt="Screenshot 2023-06-05 at 15 44 32" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer" href="https://user-images.githubusercontent.com/1619732/243371398-3eb34b79-3439-452c-9183-0ffcfd1e95ab.png"><img src="https://user-images.githubusercontent.com/1619732/243371398-3eb34b79-3439-452c-9183-0ffcfd1e95ab.png" alt="Screenshot 2023-06-05 at 15 44 43" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer" href="https://user-images.githubusercontent.com/1619732/243371405-37d572d9-0343-4468-8c29-08dbdf0a6d56.png"><img src="https://user-images.githubusercontent.com/1619732/243371405-37d572d9-0343-4468-8c29-08dbdf0a6d56.png" alt="Screenshot 2023-06-05 at 15 44 52" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x ] bug report => search github for a similar issue or PR before submitting"><pre class="notranslate"><code class="notranslate">[x ] bug report => search github for a similar issue or PR before submitting
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong></p>
<p dir="auto">I tried to run the live example and it brakes</p>
<p dir="auto"><a href="https://angular.io/docs/ts/latest/cookbook/dynamic-component-loader.html" rel="nofollow">https://angular.io/docs/ts/latest/cookbook/dynamic-component-loader.html</a></p>
<p dir="auto">I downloaded the archive, ran it localy same issue</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Error: (SystemJS) XHR error loading http://localhost:3000/app/ad-banner.component.js
ZoneDelegate.prototype.invokeTask@http://localhost:3000/node_modules/zone.js/dist/zone.js:424:17
Zone.prototype.runTask@http://localhost:3000/node_modules/zone.js/dist/zone.js:191:28
ZoneTask/this.invoke@http://localhost:3000/node_modules/zone.js/dist/zone.js:486:28
Error loading http://localhost:3000/app/ad-banner.component.js as "./ad-banner.component" from http://localhost:3000/app/app.module.js
Trace de la pile :
(SystemJS) XHR error loading http://localhost:3000/app/ad-banner.component.js
ZoneDelegate.prototype.invokeTask@http://localhost:3000/node_modules/zone.js/dist/zone.js:424:17
Zone.prototype.runTask@http://localhost:3000/node_modules/zone.js/dist/zone.js:191:28
ZoneTask/this.invoke@http://localhost:3000/node_modules/zone.js/dist/zone.js:486:28
Error loading http://localhost:3000/app/ad-banner.component.js as "./ad-banner.component" from http://localhost:3000/app/app.module.js"><pre class="notranslate"><code class="notranslate">Error: (SystemJS) XHR error loading http://localhost:3000/app/ad-banner.component.js
ZoneDelegate.prototype.invokeTask@http://localhost:3000/node_modules/zone.js/dist/zone.js:424:17
Zone.prototype.runTask@http://localhost:3000/node_modules/zone.js/dist/zone.js:191:28
ZoneTask/this.invoke@http://localhost:3000/node_modules/zone.js/dist/zone.js:486:28
Error loading http://localhost:3000/app/ad-banner.component.js as "./ad-banner.component" from http://localhost:3000/app/app.module.js
Trace de la pile :
(SystemJS) XHR error loading http://localhost:3000/app/ad-banner.component.js
ZoneDelegate.prototype.invokeTask@http://localhost:3000/node_modules/zone.js/dist/zone.js:424:17
Zone.prototype.runTask@http://localhost:3000/node_modules/zone.js/dist/zone.js:191:28
ZoneTask/this.invoke@http://localhost:3000/node_modules/zone.js/dist/zone.js:486:28
Error loading http://localhost:3000/app/ad-banner.component.js as "./ad-banner.component" from http://localhost:3000/app/app.module.js
</code></pre></div>
<p dir="auto">I injected the code in my angular 4 project, it works partialy, only the first AD is displayed</p>
<p dir="auto">that line does not update the template data all the time</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="(<AdComponent>componentRef.instance).data = adItem.data; "><pre class="notranslate"><code class="notranslate">(<AdComponent>componentRef.instance).data = adItem.data;
</code></pre></div>
<p dir="auto"><strong>Expected behavior</strong><br>
I expect it to run and display the four adds</p>
<p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong><br>
just check the page in the url above and run the live example or download/install/run it</p>
<p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br>
?</p>
<p dir="auto"><strong>Please tell us about your environment:</strong><br>
Windows 7, Wamp 3, Google Crhome</p>
<ul dir="auto">
<li>
<p dir="auto"><strong>Angular version:</strong> 2.0.X<br>
check the live example</p>
</li>
<li>
<p dir="auto">**Browser: Chrome 58</p>
</li>
<li>
<p dir="auto"><strong>Language:</strong> see live example</p>
</li>
</ul> | <h2 dir="auto">I'm submitting a...</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="
[x] Bug report "><pre class="notranslate"><code class="notranslate">
[x] Bug report
</code></pre></div>
<p dir="auto">I believe the image is blocked simply because of its filename. A rename might fix this.</p>
<h2 dir="auto">Current behavior</h2>
<p dir="auto"><a href="https://angular.io/guide/dynamic-component-loader" rel="nofollow">https://angular.io/guide/dynamic-component-loader</a></p>
<p dir="auto">The "final ad banner" at the bottom doesn't render on some browsers when using an ad blocker</p>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">The example should be shown when using an ad blocker.</p>
<h2 dir="auto">Minimal reproduction of the problem with instructions</h2>
<p dir="auto">Install <a href="https://chrome.google.com/webstore/detail/adblock/gighmmpiobklfepjocnamgkkbiglidom/related?hl=en-US" rel="nofollow">https://chrome.google.com/webstore/detail/adblock/gighmmpiobklfepjocnamgkkbiglidom/related?hl=en-US</a><br>
Visit <a href="https://angular.io/guide/dynamic-component-loader" rel="nofollow">https://angular.io/guide/dynamic-component-loader</a><br>
Scroll to the bottom of the page</p> | 1 |
<p dir="auto">Challenge <a href="https://www.freecodecamp.com/challenges/create-a-set-of-checkboxes#?solution=%0A%3Clink%20href%3D%22https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DLobster%22%20rel%3D%22stylesheet%22%20type%3D%22text%2Fcss%22%3E%0A%3Cstyle%3E%0A%20%20.red-text%20%7B%0A%20%20%20%20color%3A%20red%3B%0A%20%20%7D%0A%0A%20%20h2%20%7B%0A%20%20%20%20font-family%3A%20Lobster%2C%20Monospace%3B%0A%20%20%7D%0A%0A%20%20p%20%7B%0A%20%20%20%20font-size%3A%2016px%3B%0A%20%20%20%20font-family%3A%20Monospace%3B%0A%20%20%7D%0A%0A%20%20.thick-green-border%20%7B%0A%20%20%20%20border-color%3A%20green%3B%0A%20%20%20%20border-width%3A%2010px%3B%0A%20%20%20%20border-style%3A%20solid%3B%0A%20%20%20%20border-radius%3A%2050%25%3B%0A%20%20%7D%0A%0A%20%20.smaller-image%20%7B%0A%20%20%20%20width%3A%20100px%3B%0A%20%20%7D%0A%3C%2Fstyle%3E%0A%0A%3Ch2%20class%3D%22red-text%22%3ECatPhotoApp%3C%2Fh2%3E%0A%0A%3Cp%3EClick%20here%20for%20%3Ca%20href%3D%22%23%22%3Ecat%20photos%3C%2Fa%3E.%3C%2Fp%3E%0A%0A%3Ca%20href%3D%22%23%22%3E%3Cimg%20class%3D%22smaller-image%20thick-green-border%22%20alt%3D%22A%20cute%20orange%20cat%20lying%20on%20its%20back.%20%22%20src%3D%22https%3A%2F%2Fbit.ly%2Ffcc-relaxing-cat%22%3E%3C%2Fa%3E%0A%0A%3Cp%3EThings%20cats%20love%3A%3C%2Fp%3E%0A%3Cul%3E%0A%20%20%3Cli%3Ecat%20nip%3C%2Fli%3E%0A%20%20%3Cli%3Elaser%20pointers%3C%2Fli%3E%0A%20%20%3Cli%3Elasagna%3C%2Fli%3E%0A%3C%2Ful%3E%0A%3Cp%3ETop%203%20things%20cats%20hate%3A%3C%2Fp%3E%0A%3Col%3E%0A%20%20%3Cli%3Eflea%20treatment%3C%2Fli%3E%0A%20%20%3Cli%3Ethunder%3C%2Fli%3E%0A%20%20%3Cli%3Eother%20cats%3C%2Fli%3E%0A%3C%2Fol%3E%0A%3Cform%20fccfaa%3D%22%2Fsubmit-cat-photo%22%3E%0A%20%20%3Clabel%3E%3Cinput%20type%3D%22checkbox%22%20name%3D%22personality%22%3E%20Loving%3C%2Flabel%3E%0A%20%20%3Clabel%3E%3Cinput%20type%3D%22checkbox%22%20name%3D%22personality%22%3ELoving%3C%2Flabel%3E%0A%20%20%3Clable%3E%3Cinput%20type%3D%22checkbox%22%20name%3D%22personality%22%3ELoving%3C%2Flable%3E%0A%20%20%3Clabel%3E%3Cinput%20type%3D%22checkbox%22%20name%3D%22personaliy%22%3ELoving%3C%2Flabel%3E%0A%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Clabel%3E%3Cinput%20type%3D%22radio%22%20name%3D%22indoor-outdoor%22%3E%20Indoor%3C%2Flabel%3E%0A%20%20%3Clabel%3E%3Cinput%20type%3D%22radio%22%20name%3D%22indoor-outdoor%22%3E%20Outdoor%3C%2Flabel%3E%0A%20%20%3Cinput%20type%3D%22text%22%20placeholder%3D%22cat%20photo%20URL%22%20required%3E%0A%20%20%3Cbutton%20type%3D%22submit%22%3ESubmit%3C%2Fbutton%3E%0A%3C%2Fform%3E%0A" rel="nofollow">Create a Set of Checkboxes</a> has an issue.<br>
User Agent is: <code class="notranslate">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36</code>.<br>
Please describe how to reproduce this issue, and include links to screenshots if possible.</p>
<p dir="auto">My code:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<style>
.red-text {
color: red;
}
h2 {
font-family: Lobster, Monospace;
}
p {
font-size: 16px;
font-family: Monospace;
}
.thick-green-border {
border-color: green;
border-width: 10px;
border-style: solid;
border-radius: 50%;
}
.smaller-image {
width: 100px;
}
</style>
<h2 class="red-text">CatPhotoApp</h2>
<p>Click here for <a href="#">cat photos</a>.</p>
<a href="#"><img class="smaller-image thick-green-border" alt="A cute orange cat lying on its back. " src="https://bit.ly/fcc-relaxing-cat"></a>
<p>Things cats love:</p>
<ul>
<li>cat nip</li>
<li>laser pointers</li>
<li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
<li>flea treatment</li>
<li>thunder</li>
<li>other cats</li>
</ol>
<form action="/submit-cat-photo">
<label><input type="checkbox" name="personality"> Loving</label>
<label><input type="checkbox" name="personality">Loving</label>
<lable><input type="checkbox" name="personality">Loving</lable>
<label><input type="checkbox" name="personaliy">Loving</label>
<label><input type="radio" name="indoor-outdoor"> Indoor</label>
<label><input type="radio" name="indoor-outdoor"> Outdoor</label>
<input type="text" placeholder="cat photo URL" required>
<button type="submit">Submit</button>
</form>
"><pre class="notranslate"><code class="notranslate">
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<style>
.red-text {
color: red;
}
h2 {
font-family: Lobster, Monospace;
}
p {
font-size: 16px;
font-family: Monospace;
}
.thick-green-border {
border-color: green;
border-width: 10px;
border-style: solid;
border-radius: 50%;
}
.smaller-image {
width: 100px;
}
</style>
<h2 class="red-text">CatPhotoApp</h2>
<p>Click here for <a href="#">cat photos</a>.</p>
<a href="#"><img class="smaller-image thick-green-border" alt="A cute orange cat lying on its back. " src="https://bit.ly/fcc-relaxing-cat"></a>
<p>Things cats love:</p>
<ul>
<li>cat nip</li>
<li>laser pointers</li>
<li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
<li>flea treatment</li>
<li>thunder</li>
<li>other cats</li>
</ol>
<form action="/submit-cat-photo">
<label><input type="checkbox" name="personality"> Loving</label>
<label><input type="checkbox" name="personality">Loving</label>
<lable><input type="checkbox" name="personality">Loving</lable>
<label><input type="checkbox" name="personaliy">Loving</label>
<label><input type="radio" name="indoor-outdoor"> Indoor</label>
<label><input type="radio" name="indoor-outdoor"> Outdoor</label>
<input type="text" placeholder="cat photo URL" required>
<button type="submit">Submit</button>
</form>
</code></pre></div> | <h4 dir="auto">Challenge Name</h4>
<p dir="auto">All</p>
<h4 dir="auto">Issue Description</h4>
<p dir="auto">After passing a few exercises, the display on the phone on the right hand side of the code doesn't work (phone remains blank). Also, the text under run text where it normally shows which criteria have to be met for the code to be accepted is also missing. These issues are fixed after multiple refreshes of the page.</p>
<h4 dir="auto">Browser Information</h4>
<p dir="auto">Same error appears on both Google Chrome (Version 52.0.2743.116 m), and Microsoft Edge (25.10586.0.0). Haven't tried any other browsers.</p>
<ul dir="auto">
<li>Browser Name, Version: Google Chrome (Version 52.0.2743.116 m) and Microsoft Edge (25.10586.0.0)</li>
<li>Operating System: Windows 10 Version 1511</li>
<li>Mobile, Desktop, or Tablet: Desktop</li>
</ul>
<h4 dir="auto">Screenshot</h4>
<p dir="auto"><a href="http://imgur.com/yV3BNJ1" rel="nofollow">http://imgur.com/yV3BNJ1</a></p> | 1 |
<p dir="auto">From this <a href="https://discourse.julialang.org/t/escaping-in-nested-expr/6481/3" rel="nofollow">discourse thread</a>. Here is what I was trying:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="macro color_output(enabled, block)
quote
prev_color = Base.have_color
eval(Base, :(have_color = $$enabled))
$(esc(block))
eval(Base, :(have_color = $prev_color))
end
end"><pre class="notranslate"><code class="notranslate">macro color_output(enabled, block)
quote
prev_color = Base.have_color
eval(Base, :(have_color = $$enabled))
$(esc(block))
eval(Base, :(have_color = $prev_color))
end
end
</code></pre></div>
<p dir="auto">In a nested quotenode, you can use <code class="notranslate">$$var</code> to access <code class="notranslate">var</code> in the outer scope, and I'd expect to be able to use <code class="notranslate">$var</code> to access one level up, but it doesn't seem to work.</p> | <p dir="auto">As seen in:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="macro m()
quote
x = "x"
quote
$x
end
end
end"><pre class="notranslate"><span class="pl-k">macro</span> <span class="pl-en">m</span>()
<span class="pl-k">quote</span>
x <span class="pl-k">=</span> <span class="pl-s"><span class="pl-pds">"</span>x<span class="pl-pds">"</span></span>
<span class="pl-k">quote</span>
<span class="pl-k">$</span>x
<span class="pl-k">end</span>
<span class="pl-k">end</span>
<span class="pl-k">end</span></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> @m()
ERROR: UndefVarError: x not defined
"><pre class="notranslate"><code class="notranslate">julia> @m()
ERROR: UndefVarError: x not defined
</code></pre></div>
<p dir="auto">Tested on today's master and <code class="notranslate">0.4.6</code>.</p>
<p dir="auto">...</p> | 1 |
<p dir="auto">According to Tensorflow 2.0, many important functions are deprecated, such as:<br>
tf.layers.dense()<br>
tf.layers.dropout()<br>
tf.layers.flatten()<br>
tf.layers.batch_normalization()<br>
...<br>
Since these functions are very widely used, and also very helpful for building complicted models, would you please keep them in the future versions?</p> | <h3 dir="auto">System information</h3>
<ul dir="auto">
<li><strong>Have I written custom code (as opposed to using a stock example script provided in TensorFlow)</strong>: Y</li>
<li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04)</strong>: Linux Ubuntu 18.04</li>
<li><strong>TensorFlow installed from (source or binary)</strong>: source</li>
<li><strong>TensorFlow version (use command below)</strong>: ('v1.8.0-4015-g44a1f241bc', '1.9.0-rc0')</li>
<li><strong>Python version</strong>: 2.7.15rc1</li>
<li><strong>Bazel version (if compiling from source)</strong>: 0.15.0</li>
<li><strong>GCC/Compiler version (if compiling from source)</strong>: 6.4.0</li>
<li><strong>CUDA/cuDNN version</strong>: 9.0.176/7.0.5</li>
<li><strong>GPU model and memory</strong>: GeForce GTX 1080 Ti (11GB)</li>
<li><strong>Exact command to reproduce</strong>:</li>
</ul>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import tensorflow as tf
with tf.Session() as sess:
movie_bin = tf.read_file('5205acf1-3d30b48d.mov')
movie = tf.contrib.ffmpeg.decode_video(movie_bin)
movie_ev = movie.eval()
print("****", len(movie_ev))"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">tensorflow</span> <span class="pl-k">as</span> <span class="pl-s1">tf</span>
<span class="pl-k">with</span> <span class="pl-s1">tf</span>.<span class="pl-v">Session</span>() <span class="pl-k">as</span> <span class="pl-s1">sess</span>:
<span class="pl-s1">movie_bin</span> <span class="pl-c1">=</span> <span class="pl-s1">tf</span>.<span class="pl-en">read_file</span>(<span class="pl-s">'5205acf1-3d30b48d.mov'</span>)
<span class="pl-s1">movie</span> <span class="pl-c1">=</span> <span class="pl-s1">tf</span>.<span class="pl-s1">contrib</span>.<span class="pl-s1">ffmpeg</span>.<span class="pl-en">decode_video</span>(<span class="pl-s1">movie_bin</span>)
<span class="pl-s1">movie_ev</span> <span class="pl-c1">=</span> <span class="pl-s1">movie</span>.<span class="pl-en">eval</span>()
<span class="pl-en">print</span>(<span class="pl-s">"****"</span>, <span class="pl-en">len</span>(<span class="pl-s1">movie_ev</span>))</pre></div>
<h3 dir="auto">Describe the problem</h3>
<p dir="auto">The <code class="notranslate">tf.contrib.ffmpeg.decode_video</code> op throws an error and causes a core dump.</p>
<p dir="auto">My ffmpeg version (<code class="notranslate">apt get install ffmpeg</code> on ubuntu 18.04):</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="ffmpeg version 3.4.2-2 Copyright (c) 2000-2018 the FFmpeg developers
built with gcc 7 (Ubuntu 7.3.0-16ubuntu2)
configuration: --prefix=/usr --extra-version=2 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared
libavutil 55. 78.100 / 55. 78.100
libavcodec 57.107.100 / 57.107.100
libavformat 57. 83.100 / 57. 83.100
libavdevice 57. 10.100 / 57. 10.100
libavfilter 6.107.100 / 6.107.100
libavresample 3. 7. 0 / 3. 7. 0
libswscale 4. 8.100 / 4. 8.100
libswresample 2. 9.100 / 2. 9.100
libpostproc 54. 7.100 / 54. 7.100"><pre class="notranslate">ffmpeg version 3.4.2-2 Copyright (c) 2000-2018 the FFmpeg developers
built with gcc 7 (Ubuntu 7.3.0-16ubuntu2)
configuration: --prefix=/usr --extra-version=2 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared
libavutil 55. 78.100 / 55. 78.100
libavcodec 57.107.100 / 57.107.100
libavformat 57. 83.100 / 57. 83.100
libavdevice 57. 10.100 / 57. 10.100
libavfilter 6.107.100 / 6.107.100
libavresample 3. 7. 0 / 3. 7. 0
libswscale 4. 8.100 / 4. 8.100
libswresample 2. 9.100 / 2. 9.100
libpostproc 54. 7.100 / 54. 7.100</pre></div>
<h3 dir="auto">Source code / logs</h3>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="2018-06-27 09:15:22.489692: F tensorflow/contrib/ffmpeg/default/ffmpeg_lib.cc:405] Non-OK-status: ReadInfoFile(stderr_filename, width, height, frames) status: Unknown: Not enough video info returned by FFmpeg [0, 720, 1280, 3]Could not read FFmpeg stderr file: /tmp/tmp_file_tensorflow_3_ILW8Ht.err
Aborted (core dumped)"><pre class="notranslate">2018-06-27 09:15:22.489692: F tensorflow/contrib/ffmpeg/default/ffmpeg_lib.cc:405] Non-OK-status: ReadInfoFile(stderr_filename, width, height, frames) status: Unknown: Not enough video info returned by FFmpeg [0, 720, 1280, 3]Could not <span class="pl-c1">read</span> FFmpeg stderr file: /tmp/tmp_file_tensorflow_3_ILW8Ht.err
Aborted (core dumped)</pre></div> | 0 |
<p dir="auto">When entering a mulit-line input bigger than the available number of lines in the screen window, it becomes impossible to navigate back to the beginning of the input (or it seems kind of possible in a blind way, i.e. the screen is not refreshed accordingly).</p> | <p dir="auto">Dear professor:<br>
i use conda to install like this:conda install -c conda-forge julia<br>
However:</p>
<p dir="auto">Preparing transaction: done<br>
Verifying transaction: done<br>
Executing transaction: / ERROR: Unexpected end of data : jl_oIePR5-download<br>
Installing known registries into <code class="notranslate">~/.julia</code><br>
┌ Warning: could not download <a href="https://pkg.julialang.org/registries" rel="nofollow">https://pkg.julialang.org/registries</a><br>
└ @ Pkg.Types /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:997<br>
ERROR: could not download <a href="https://pkg.julialang.org/registry/23338594-aafe-5451-b93e-139f81909106/d40a4eef5f7d63013a1f5bd8a1265616e6ddd63b" rel="nofollow">https://pkg.julialang.org/registry/23338594-aafe-5451-b93e-139f81909106/d40a4eef5f7d63013a1f5bd8a1265616e6ddd63b</a><br>
Stacktrace:<br>
[1] pkgerror(msg::String)<br>
@ Pkg.Types /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:55<br>
[2] (::Pkg.Types.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1107357" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/82" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/82/hovercard" href="https://github.com/JuliaLang/julia/issues/82">#82</a>#85"{Pkg.Types.Context, String, Pkg.Types.RegistrySpec})(tmp::String)<br>
@ Pkg.Types /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:1035<br>
[3] mktempdir(fn::Pkg.Types.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1107357" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/82" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/82/hovercard" href="https://github.com/JuliaLang/julia/issues/82">#82</a>#85"{Pkg.Types.Context, String, Pkg.Types.RegistrySpec}, parent::String; prefix::String)<br>
@ Base.Filesystem ./file.jl:729<br>
[4] mktempdir (repeats 2 times)<br>
@ ./file.jl:727 [inlined]<br>
[5] clone_or_cp_registries(ctx::Pkg.Types.Context, regs::Vector{Pkg.Types.RegistrySpec}, depot::String)<br>
@ Pkg.Types /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:1027<br>
[6] clone_or_cp_registries<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:1020 [inlined]<br>
[7] clone_default_registries(ctx::Pkg.Types.Context; only_if_empty::Bool)<br>
@ Pkg.Types /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:920<br>
[8] clone_default_registries<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:908 [inlined]<br>
[9] up(ctx::Pkg.Types.Context, pkgs::Vector{Pkg.Types.PackageSpec}; level::Pkg.Types.UpgradeLevel, mode::Pkg.Types.PackageMode, update_registry::Bool, kwargs::Base.Iterators.Pairs{Union{}, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})<br>
@ Pkg.API /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:242<br>
[10] #up#41<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:84 [inlined]<br>
[11] instantiate(ctx::Pkg.Types.Context; manifest::Nothing, update_registry::Bool, verbose::Bool, platform::Base.BinaryPlatforms.Platform, allow_build::Bool, allow_autoprecomp::Bool, kwargs::Base.Iterators.Pairs{Union{}, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})<br>
@ Pkg.API /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:1340<br>
[12] instantiate<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:1325 [inlined]<br>
[13] #instantiate#252<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:1321 [inlined]<br>
[14] instantiate()<br>
@ Pkg.API /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:1321<br>
[15] top-level scope<br>
@ none:1</p>
<p dir="auto">caused by: EOFError: read end of file<br>
Stacktrace:<br>
[1] read_data(tar::Base.Process, file::IOStream; size::Int64, buf::Vector{UInt8}, tee::Base.DevNull)<br>
@ Tar /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/extract.jl:654<br>
[2] <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1079718" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/63" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/63/hovercard" href="https://github.com/JuliaLang/julia/issues/63">#63</a><br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/extract.jl:670 [inlined]<br>
[3] open(f::Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1079718" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/63" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/63/hovercard" href="https://github.com/JuliaLang/julia/issues/63">#63</a>#64"{Int64, Vector{UInt8}, Base.DevNull, Base.Process}, args::String; kwargs::Base.Iterators.Pairs{Symbol, Bool, Tuple{Symbol}, NamedTuple{(:write,), Tuple{Bool}}})<br>
@ Base ./io.jl:330<br>
[4] #read_data#62<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/extract.jl:669 [inlined]<br>
[5] (::Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="971309" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/26" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/26/hovercard" href="https://github.com/JuliaLang/julia/issues/26">#26</a>#28"{Vector{UInt8}, Bool, Base.Process, String})(hdr::Tar.Header, parts::Vector{SubString{String}})<br>
@ Tar /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/extract.jl:71<br>
[6] read_tarball(callback::Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="971309" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/26" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/26/hovercard" href="https://github.com/JuliaLang/julia/issues/26">#26</a>#28"{Vector{UInt8}, Bool, Base.Process, String}, predicate::Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="817954" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/1" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/1/hovercard" href="https://github.com/JuliaLang/julia/issues/1">#1</a>#2", tar::Base.Process; buf::Vector{UInt8}, skeleton::Base.DevNull)<br>
@ Tar /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/extract.jl:347<br>
[7] extract_tarball(predicate::Function, tar::Base.Process, root::String; buf::Vector{UInt8}, skeleton::Base.DevNull, copy_symlinks::Bool)<br>
@ Tar /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/extract.jl:51<br>
[8] (::Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1110997" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/83" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/83/hovercard" href="https://github.com/JuliaLang/julia/issues/83">#83</a>#86"{String, Base.Process, Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="817954" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/1" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/1/hovercard" href="https://github.com/JuliaLang/julia/issues/1">#1</a>#2"})(skeleton::Base.DevNull)<br>
@ Tar /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/Tar.jl:215<br>
[9] arg_write(f::Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1110997" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/83" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/83/hovercard" href="https://github.com/JuliaLang/julia/issues/83">#83</a>#86"{String, Base.Process, Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="817954" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/1" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/1/hovercard" href="https://github.com/JuliaLang/julia/issues/1">#1</a>#2"}, arg::Base.DevNull)<br>
@ ArgTools /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/ArgTools/src/ArgTools.jl:112<br>
[10] <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1107357" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/82" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/82/hovercard" href="https://github.com/JuliaLang/julia/issues/82">#82</a><br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/Tar.jl:214 [inlined]<br>
[11] arg_mkdir(f::Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1107357" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/82" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/82/hovercard" href="https://github.com/JuliaLang/julia/issues/82">#82</a>#85"{Base.Process, Base.DevNull, Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="817954" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/1" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/1/hovercard" href="https://github.com/JuliaLang/julia/issues/1">#1</a>#2"}, arg::String)<br>
@ ArgTools /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/ArgTools/src/ArgTools.jl:163<br>
[12] <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1104820" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/81" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/81/hovercard" href="https://github.com/JuliaLang/julia/issues/81">#81</a><br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/Tar.jl:210 [inlined]<br>
[13] arg_read(f::Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1104820" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/81" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/81/hovercard" href="https://github.com/JuliaLang/julia/issues/81">#81</a>#84"{Base.DevNull, Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="817954" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/1" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/1/hovercard" href="https://github.com/JuliaLang/julia/issues/1">#1</a>#2", String}, arg::Base.Process)<br>
@ ArgTools /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/ArgTools/src/ArgTools.jl:61<br>
[14] extract(predicate::Function, tarball::Base.Process, dir::String; skeleton::Nothing, copy_symlinks::Nothing)<br>
@ Tar /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/Tar.jl:209<br>
[15] #extract#87<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/Tar.jl:231 [inlined]<br>
[16] (::Pkg.PlatformEngines.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="968588" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/24" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/24/hovercard" href="https://github.com/JuliaLang/julia/issues/24">#24</a>#26"{String})(io::Base.Process)<br>
@ Pkg.PlatformEngines /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/PlatformEngines.jl:512<br>
[17] open(::Pkg.PlatformEngines.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="968588" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/24" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/24/hovercard" href="https://github.com/JuliaLang/julia/issues/24">#24</a>#26"{String}, ::Cmd; kwargs::Base.Iterators.Pairs{Union{}, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})<br>
@ Base ./process.jl:393<br>
[18] open<br>
@ ./process.jl:391 [inlined]<br>
[19] download_verify_unpack(url::String, hash::Nothing, dest::String; tarball_path::Nothing, ignore_existence::Bool, force::Bool, verbose::Bool, quiet_download::Bool, io::IOStream)<br>
@ Pkg.PlatformEngines /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/PlatformEngines.jl:511<br>
[20] (::Pkg.Types.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1107357" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/82" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/82/hovercard" href="https://github.com/JuliaLang/julia/issues/82">#82</a>#85"{Pkg.Types.Context, String, Pkg.Types.RegistrySpec})(tmp::String)<br>
@ Pkg.Types /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:1033<br>
[21] mktempdir(fn::Pkg.Types.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1107357" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/82" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/82/hovercard" href="https://github.com/JuliaLang/julia/issues/82">#82</a>#85"{Pkg.Types.Context, String, Pkg.Types.RegistrySpec}, parent::String; prefix::String)<br>
@ Base.Filesystem ./file.jl:729<br>
[22] mktempdir (repeats 2 times)<br>
@ ./file.jl:727 [inlined]<br>
[23] clone_or_cp_registries(ctx::Pkg.Types.Context, regs::Vector{Pkg.Types.RegistrySpec}, depot::String)<br>
@ Pkg.Types /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:1027<br>
[24] clone_or_cp_registries<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:1020 [inlined]<br>
[25] clone_default_registries(ctx::Pkg.Types.Context; only_if_empty::Bool)<br>
@ Pkg.Types /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:920<br>
[26] clone_default_registries<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:908 [inlined]<br>
[27] up(ctx::Pkg.Types.Context, pkgs::Vector{Pkg.Types.PackageSpec}; level::Pkg.Types.UpgradeLevel, mode::Pkg.Types.PackageMode, update_registry::Bool, kwargs::Base.Iterators.Pairs{Union{}, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})<br>
@ Pkg.API /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:242<br>
[28] #up#41<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:84 [inlined]<br>
[29] instantiate(ctx::Pkg.Types.Context; manifest::Nothing, update_registry::Bool, verbose::Bool, platform::Base.BinaryPlatforms.Platform, allow_build::Bool, allow_autoprecomp::Bool, kwargs::Base.Iterators.Pairs{Union{}, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})<br>
@ Pkg.API /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:1340<br>
[30] instantiate<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:1325 [inlined]<br>
[31] #instantiate#252<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:1321 [inlined]<br>
[32] instantiate()<br>
@ Pkg.API /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:1321<br>
[33] top-level scope<br>
@ none:1</p>
<p dir="auto">done<br>
ERROR conda.core.link:_execute(699): An error occurred while installing package 'conda-forge::julia-1.6.2-h438a1c7_3'.<br>
Rolling back transaction: done</p>
<p dir="auto">LinkError: post-link script failed for package conda-forge::julia-1.6.2-h438a1c7_3<br>
location of failed script: /home/agrogene_lq/software/anaconda3/envs/julia/bin/.julia-post-link.sh<br>
==> script messages <==<br>
ERROR: Unexpected end of data : jl_oIePR5-download<br>
Installing known registries into <code class="notranslate">~/.julia</code><br>
┌ Warning: could not download <a href="https://pkg.julialang.org/registries" rel="nofollow">https://pkg.julialang.org/registries</a><br>
└ @ Pkg.Types /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:997<br>
ERROR: could not download <a href="https://pkg.julialang.org/registry/23338594-aafe-5451-b93e-139f81909106/d40a4eef5f7d63013a1f5bd8a1265616e6ddd63b" rel="nofollow">https://pkg.julialang.org/registry/23338594-aafe-5451-b93e-139f81909106/d40a4eef5f7d63013a1f5bd8a1265616e6ddd63b</a><br>
Stacktrace:<br>
[1] pkgerror(msg::String)<br>
@ Pkg.Types /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:55<br>
[2] (::Pkg.Types.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1107357" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/82" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/82/hovercard" href="https://github.com/JuliaLang/julia/issues/82">#82</a>#85"{Pkg.Types.Context, String, Pkg.Types.RegistrySpec})(tmp::String)<br>
@ Pkg.Types /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:1035<br>
[3] mktempdir(fn::Pkg.Types.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1107357" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/82" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/82/hovercard" href="https://github.com/JuliaLang/julia/issues/82">#82</a>#85"{Pkg.Types.Context, String, Pkg.Types.RegistrySpec}, parent::String; prefix::String)<br>
@ Base.Filesystem ./file.jl:729<br>
[4] mktempdir (repeats 2 times)<br>
@ ./file.jl:727 [inlined]<br>
[5] clone_or_cp_registries(ctx::Pkg.Types.Context, regs::Vector{Pkg.Types.RegistrySpec}, depot::String)<br>
@ Pkg.Types /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:1027<br>
[6] clone_or_cp_registries<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:1020 [inlined]<br>
[7] clone_default_registries(ctx::Pkg.Types.Context; only_if_empty::Bool)<br>
@ Pkg.Types /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:920<br>
[8] clone_default_registries<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:908 [inlined]<br>
[9] up(ctx::Pkg.Types.Context, pkgs::Vector{Pkg.Types.PackageSpec}; level::Pkg.Types.UpgradeLevel, mode::Pkg.Types.PackageMode, update_registry::Bool, kwargs::Base.Iterators.Pairs{Union{}, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})<br>
@ Pkg.API /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:242<br>
[10] #up#41<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:84 [inlined]<br>
[11] instantiate(ctx::Pkg.Types.Context; manifest::Nothing, update_registry::Bool, verbose::Bool, platform::Base.BinaryPlatforms.Platform, allow_build::Bool, allow_autoprecomp::Bool, kwargs::Base.Iterators.Pairs{Union{}, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})<br>
@ Pkg.API /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:1340<br>
[12] instantiate<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:1325 [inlined]<br>
[13] #instantiate#252<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:1321 [inlined]<br>
[14] instantiate()<br>
@ Pkg.API /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:1321<br>
[15] top-level scope<br>
@ none:1</p>
<p dir="auto">caused by: EOFError: read end of file<br>
Stacktrace:<br>
[1] read_data(tar::Base.Process, file::IOStream; size::Int64, buf::Vector{UInt8}, tee::Base.DevNull)<br>
@ Tar /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/extract.jl:654<br>
[2] <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1079718" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/63" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/63/hovercard" href="https://github.com/JuliaLang/julia/issues/63">#63</a><br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/extract.jl:670 [inlined]<br>
[3] open(f::Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1079718" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/63" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/63/hovercard" href="https://github.com/JuliaLang/julia/issues/63">#63</a>#64"{Int64, Vector{UInt8}, Base.DevNull, Base.Process}, args::String; kwargs::Base.Iterators.Pairs{Symbol, Bool, Tuple{Symbol}, NamedTuple{(:write,), Tuple{Bool}}})<br>
@ Base ./io.jl:330<br>
[4] #read_data#62<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/extract.jl:669 [inlined]<br>
[5] (::Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="971309" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/26" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/26/hovercard" href="https://github.com/JuliaLang/julia/issues/26">#26</a>#28"{Vector{UInt8}, Bool, Base.Process, String})(hdr::Tar.Header, parts::Vector{SubString{String}})<br>
@ Tar /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/extract.jl:71<br>
[6] read_tarball(callback::Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="971309" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/26" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/26/hovercard" href="https://github.com/JuliaLang/julia/issues/26">#26</a>#28"{Vector{UInt8}, Bool, Base.Process, String}, predicate::Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="817954" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/1" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/1/hovercard" href="https://github.com/JuliaLang/julia/issues/1">#1</a>#2", tar::Base.Process; buf::Vector{UInt8}, skeleton::Base.DevNull)<br>
@ Tar /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/extract.jl:347<br>
[7] extract_tarball(predicate::Function, tar::Base.Process, root::String; buf::Vector{UInt8}, skeleton::Base.DevNull, copy_symlinks::Bool)<br>
@ Tar /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/extract.jl:51<br>
[8] (::Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1110997" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/83" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/83/hovercard" href="https://github.com/JuliaLang/julia/issues/83">#83</a>#86"{String, Base.Process, Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="817954" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/1" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/1/hovercard" href="https://github.com/JuliaLang/julia/issues/1">#1</a>#2"})(skeleton::Base.DevNull)<br>
@ Tar /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/Tar.jl:215<br>
[9] arg_write(f::Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1110997" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/83" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/83/hovercard" href="https://github.com/JuliaLang/julia/issues/83">#83</a>#86"{String, Base.Process, Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="817954" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/1" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/1/hovercard" href="https://github.com/JuliaLang/julia/issues/1">#1</a>#2"}, arg::Base.DevNull)<br>
@ ArgTools /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/ArgTools/src/ArgTools.jl:112<br>
[10] <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1107357" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/82" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/82/hovercard" href="https://github.com/JuliaLang/julia/issues/82">#82</a><br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/Tar.jl:214 [inlined]<br>
[11] arg_mkdir(f::Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1107357" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/82" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/82/hovercard" href="https://github.com/JuliaLang/julia/issues/82">#82</a>#85"{Base.Process, Base.DevNull, Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="817954" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/1" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/1/hovercard" href="https://github.com/JuliaLang/julia/issues/1">#1</a>#2"}, arg::String)<br>
@ ArgTools /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/ArgTools/src/ArgTools.jl:163<br>
[12] <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1104820" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/81" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/81/hovercard" href="https://github.com/JuliaLang/julia/issues/81">#81</a><br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/Tar.jl:210 [inlined]<br>
[13] arg_read(f::Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1104820" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/81" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/81/hovercard" href="https://github.com/JuliaLang/julia/issues/81">#81</a>#84"{Base.DevNull, Tar.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="817954" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/1" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/1/hovercard" href="https://github.com/JuliaLang/julia/issues/1">#1</a>#2", String}, arg::Base.Process)<br>
@ ArgTools /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/ArgTools/src/ArgTools.jl:61<br>
[14] extract(predicate::Function, tarball::Base.Process, dir::String; skeleton::Nothing, copy_symlinks::Nothing)<br>
@ Tar /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/Tar.jl:209<br>
[15] #extract#87<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Tar/src/Tar.jl:231 [inlined]<br>
[16] (::Pkg.PlatformEngines.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="968588" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/24" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/24/hovercard" href="https://github.com/JuliaLang/julia/issues/24">#24</a>#26"{String})(io::Base.Process)<br>
@ Pkg.PlatformEngines /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/PlatformEngines.jl:512<br>
[17] open(::Pkg.PlatformEngines.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="968588" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/24" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/24/hovercard" href="https://github.com/JuliaLang/julia/issues/24">#24</a>#26"{String}, ::Cmd; kwargs::Base.Iterators.Pairs{Union{}, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})<br>
@ Base ./process.jl:393<br>
[18] open<br>
@ ./process.jl:391 [inlined]<br>
[19] download_verify_unpack(url::String, hash::Nothing, dest::String; tarball_path::Nothing, ignore_existence::Bool, force::Bool, verbose::Bool, quiet_download::Bool, io::IOStream)<br>
@ Pkg.PlatformEngines /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/PlatformEngines.jl:511<br>
[20] (::Pkg.Types.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1107357" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/82" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/82/hovercard" href="https://github.com/JuliaLang/julia/issues/82">#82</a>#85"{Pkg.Types.Context, String, Pkg.Types.RegistrySpec})(tmp::String)<br>
@ Pkg.Types /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:1033<br>
[21] mktempdir(fn::Pkg.Types.var"<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1107357" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/82" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/82/hovercard" href="https://github.com/JuliaLang/julia/issues/82">#82</a>#85"{Pkg.Types.Context, String, Pkg.Types.RegistrySpec}, parent::String; prefix::String)<br>
@ Base.Filesystem ./file.jl:729<br>
[22] mktempdir (repeats 2 times)<br>
@ ./file.jl:727 [inlined]<br>
[23] clone_or_cp_registries(ctx::Pkg.Types.Context, regs::Vector{Pkg.Types.RegistrySpec}, depot::String)<br>
@ Pkg.Types /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:1027<br>
[24] clone_or_cp_registries<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:1020 [inlined]<br>
[25] clone_default_registries(ctx::Pkg.Types.Context; only_if_empty::Bool)<br>
@ Pkg.Types /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:920<br>
[26] clone_default_registries<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/Types.jl:908 [inlined]<br>
[27] up(ctx::Pkg.Types.Context, pkgs::Vector{Pkg.Types.PackageSpec}; level::Pkg.Types.UpgradeLevel, mode::Pkg.Types.PackageMode, update_registry::Bool, kwargs::Base.Iterators.Pairs{Union{}, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})<br>
@ Pkg.API /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:242<br>
[28] #up#41<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:84 [inlined]<br>
[29] instantiate(ctx::Pkg.Types.Context; manifest::Nothing, update_registry::Bool, verbose::Bool, platform::Base.BinaryPlatforms.Platform, allow_build::Bool, allow_autoprecomp::Bool, kwargs::Base.Iterators.Pairs{Union{}, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})<br>
@ Pkg.API /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:1340<br>
[30] instantiate<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:1325 [inlined]<br>
[31] #instantiate#252<br>
@ /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:1321 [inlined]<br>
[32] instantiate()<br>
@ Pkg.API /home/conda/feedstock_root/build_artifacts/julia_1632355821063/work/usr/share/julia/stdlib/v1.6/Pkg/src/API.jl:1321<br>
[33] top-level scope<br>
@ none:1</p>
<p dir="auto">==> script output <==<br>
stdout:<br>
stderr:<br>
return code: 1</p>
<p dir="auto">()</p>
<p dir="auto">So what can I do?</p> | 0 |
<p dir="auto">Hello,</p>
<p dir="auto">since the release of VS Code v0.10.1 I cannot use it anymore - yes, I already tried to reinstall it.<br>
It takes minutes to start and all I'm getting is the following:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/7961978/11297744/c5accec8-8f7a-11e5-8bc3-632a0873b1f2.PNG"><img src="https://cloud.githubusercontent.com/assets/7961978/11297744/c5accec8-8f7a-11e5-8bc3-632a0873b1f2.PNG" alt="unbenannt" style="max-width: 100%;"></a></p>
<p dir="auto">I am using Windows 10 Pro on my Microsoft Surface Pro 3.</p> | 0 |
|
<ul dir="auto">
<li>Electron version: 1.6.2</li>
<li>Operating system: macOS 10.12.4 (Sierra)</li>
</ul>
<h3 dir="auto">Expected behavior</h3>
<p dir="auto">A disabled submenu should be grayed out and not open when <code class="notranslate">enabled: false</code> is set. See Finder > Go > Recent Folder if the user has clicked Clear Menu in that submenu.</p>
<h3 dir="auto">Actual behavior</h3>
<p dir="auto">Submenu is not grayed out and can be opened</p>
<h3 dir="auto">How to reproduce</h3>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const template = [
{
label: 'File',
submenu: [
{
label: 'Recent Files',
enabled: false,
submenu: [
{
label: 'test'
}
]
}
]
}
]
const menu = Menu.buildFromTemplate(template)
Menu.setApplicationMenu(menu)
"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">template</span> <span class="pl-c1">=</span> <span class="pl-kos">[</span>
<span class="pl-kos">{</span>
<span class="pl-c1">label</span>: <span class="pl-s">'File'</span><span class="pl-kos">,</span>
<span class="pl-c1">submenu</span>: <span class="pl-kos">[</span>
<span class="pl-kos">{</span>
<span class="pl-c1">label</span>: <span class="pl-s">'Recent Files'</span><span class="pl-kos">,</span>
<span class="pl-c1">enabled</span>: <span class="pl-c1">false</span><span class="pl-kos">,</span>
<span class="pl-c1">submenu</span>: <span class="pl-kos">[</span>
<span class="pl-kos">{</span>
<span class="pl-c1">label</span>: <span class="pl-s">'test'</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">const</span> <span class="pl-s1">menu</span> <span class="pl-c1">=</span> <span class="pl-v">Menu</span><span class="pl-kos">.</span><span class="pl-en">buildFromTemplate</span><span class="pl-kos">(</span><span class="pl-s1">template</span><span class="pl-kos">)</span>
<span class="pl-v">Menu</span><span class="pl-kos">.</span><span class="pl-en">setApplicationMenu</span><span class="pl-kos">(</span><span class="pl-s1">menu</span><span class="pl-kos">)</span></pre></div> | <p dir="auto">When I set ´enabled: false´ to a menu entry which has a submenu with more entries, it doesn't get disabled.</p>
<p dir="auto">Platform: Mac OS X</p> | 1 |
<p dir="auto"><code class="notranslate">jax.experimental.ode.odeint</code> takes a function <code class="notranslate">func(y, t, *args)</code>. A known limitation of <code class="notranslate">odeint</code> is that <code class="notranslate">func</code> cannot close over any tensors, but this information is missing from the documentation.</p> | <p dir="auto">Mypy requires public API of a package being exported using either <code class="notranslate">__all__</code> or <code class="notranslate">import ... as ...</code> syntax.</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="python3 -m venv env
source env/bin/activate
pip install -U pip mypy jax
python -m mypy --install-types --non-interactive --strict -c "from jax import numpy as jnp; xs = jnp.zeros(1)"
<string>:1: error: Module has no attribute "zeros"
Found 1 error in 1 file (checked 1 source file)"><pre class="notranslate">python3 -m venv env
<span class="pl-c1">source</span> env/bin/activate
pip install -U pip mypy jax
python -m mypy --install-types --non-interactive --strict -c <span class="pl-s"><span class="pl-pds">"</span>from jax import numpy as jnp; xs = jnp.zeros(1)<span class="pl-pds">"</span></span>
<span class="pl-k"><</span>string<span class="pl-k">></span>:1: error: Module has no attribute <span class="pl-s"><span class="pl-pds">"</span>zeros<span class="pl-pds">"</span></span>
Found 1 error <span class="pl-k">in</span> 1 file (checked 1 <span class="pl-c1">source</span> file)</pre></div>
<p dir="auto">Currently, projects that are using jax need to set<code class="notranslate">--no-implicit-reexport=False</code>.</p>
<p dir="auto">There are some references on that matter.</p>
<ul dir="auto">
<li><a href="https://www.python.org/dev/peps/pep-0484/#stub-files" rel="nofollow">PEP-0484</a>
<blockquote>
<ul dir="auto">
<li>Modules and variables imported into the stub are not considered exported from the stub unless the import uses the import ... as ... form or the equivalent from ... import ... as ... form.</li>
<li>However, as an exception to the previous bullet, all objects imported into a stub using from ... import * are considered exported.</li>
</ul>
</blockquote>
</li>
<li><a href="https://mypy.readthedocs.io/en/stable/command_line.html#cmdoption-mypy-no-implicit-reexport" rel="nofollow">MyPy docs</a>
<blockquote>
<p dir="auto"><code class="notranslate">--no-implicit-reexport</code> always treated as enabled for stub files.</p>
</blockquote>
</li>
</ul>
<p dir="auto">Is it possible to add a little boilerplate to <code class="notranslate">__init__.py</code> to make it working? :-)</p> | 0 |
<p dir="auto">see <a href="https://groups.google.com/forum/?fromgroups=#!topic/neo4j/CjKNqI5WGhE" rel="nofollow">https://groups.google.com/forum/?fromgroups=#!topic/neo4j/CjKNqI5WGhE</a> for context.</p>
<p dir="auto">I constantly encounter a strange problem when running a relatively simple query on Linux based machines while on Windows 7 I have no problems at all (both from neo4j-shell and from Python using py2neo).</p>
<p dir="auto">I have a database with 7762 nodes and 20730 relationships. I have an index on node property 'venueID'. There are 817 nodes with node property 'venueID:2826' and 1233 nodes wirh 'venueID:2611' (for all the other values of this node property there are few nodes). I created the database using py2neo both on Windows and Linux.</p>
<p dir="auto">If I run the following query</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="START a=node:my_nodes('venueID:2611'), b=node:my_nodes('venueID:2826')
MATCH a-->b
RETURN count(a)"><pre class="notranslate"><code class="notranslate">START a=node:my_nodes('venueID:2611'), b=node:my_nodes('venueID:2826')
MATCH a-->b
RETURN count(a)
</code></pre></div>
<ul dir="auto">
<li>
<p dir="auto">on Windows 7 with Java version 1.7.0_09 using neo4j versions 1.8, 1.9.M01, 1.7.2 I get an answer within 15000ms;</p>
</li>
<li>
<p dir="auto">on Debian-based server (Linux 2.6.32-5-amd64) with Java version 1.6.0-18 using stable neo4j version 1.8 as well as 1.9-SNAPSHOT and 1.9.M02 I constantly get an error</p>
<p dir="auto">"ServerError: Error occurred in server thread; nested exception is:<br>
org.neo4j.helpers.ThisShouldNotHappenError: Developer: Andres claims that: Unexpected traversal state encountered"<br>
In the console log when using 1.9-SNAPSHOT I see the following message<br>
11:18:32.807 [535102763@qtp-423265228-2] ERROR org.mortbay.log - /db/data/cypher<br>
org.neo4j.helpers.ThisShouldNotHappenError: Developer: Andres claims that: Unexpected traversal state encountered<br>
at org.neo4j.cypher.internal.pipes.matching.BidirectionalTraversalMatcher$StepCollisionDetector.includePath(Bidirect$<br>
at org.neo4j.kernel.StandardBranchCollisionDetector.evaluate(StandardBranchCollisionDetector.java:74) ~[neo4j-kernel$<br>
at org.neo4j.kernel.StandardBranchCollisionDetector.evaluate(StandardBranchCollisionDetector.java:37) ~[neo4j-kernel$<br>
at org.neo4j.kernel.impl.traversal.BidirectionalTraverserIterator.fetchNextOrNull(BidirectionalTraverserIterator.jav$<br>
at org.neo4j.kernel.impl.traversal.BidirectionalTraverserIterator.fetchNextOrNull(BidirectionalTraverserIterator.jav$<br>
at org.neo4j.helpers.collection.PrefetchingIterator.hasNext(PrefetchingIterator.java:55) ~[neo4j-kernel-1.9-SNAPSHOT$<br>
at scala.collection.JavaConversions$JIteratorWrapper.hasNext(JavaConversions.scala:574) ~[scala-library-2.9.1-1.jar:$<br>
at scala.collection.Iterator$$anon$21.hasNext(Iterator.scala:371) ~[scala-library-2.9.1-1.jar:na]<br>
at scala.collection.Iterator$$anon$21.hasNext(Iterator.scala:371) ~[scala-library-2.9.1-1.jar:na]<br>
at scala.collection.Iterator$class.foreach(Iterator.scala:660) ~[scala-library-2.9.1-1.jar:na]<br>
at scala.collection.Iterator$$anon$21.foreach(Iterator.scala:368) ~[scala-library-2.9.1-1.jar:na]<br>
at org.neo4j.cypher.internal.pipes.EagerAggregationPipe.createResults(EagerAggregationPipe.scala:76) ~[neo4j-cypher-$<br>
at org.neo4j.cypher.internal.pipes.ColumnFilterPipe.createResults(ColumnFilterPipe.scala:37) ~[neo4j-cypher-1.9-SNAP$<br>
at org.neo4j.cypher.internal.executionplan.ExecutionPlanImpl$$anonfun$6.apply(ExecutionPlanImpl.scala:127) ~[neo4j-c$<br>
at org.neo4j.cypher.internal.executionplan.ExecutionPlanImpl$$anonfun$6.apply(ExecutionPlanImpl.scala:125) ~[neo4j-c$<br>
at org.neo4j.cypher.internal.executionplan.ExecutionPlanImpl.execute(ExecutionPlanImpl.scala:33) ~[neo4j-cypher-1.9-$<br>
at org.neo4j.cypher.ExecutionEngine.execute(ExecutionEngine.scala:59) ~[neo4j-cypher-1.9-SNAPSHOT.jar:1.9-SNAPSHOT]<br>
at org.neo4j.cypher.ExecutionEngine.execute(ExecutionEngine.scala:63) ~[neo4j-cypher-1.9-SNAPSHOT.jar:1.9-SNAPSHOT]<br>
at org.neo4j.cypher.javacompat.ExecutionEngine.execute(ExecutionEngine.java:79) ~[neo4j-cypher-1.9-SNAPSHOT.jar:1.9-</p>
</li>
</ul>
<p dir="auto">When I change the node properties for which I query to the ones which do not exist in the database, the query executes with no problem.</p>
<ul dir="auto">
<li>I tried it out also on virtual Linux Mint installed inside my Windows 7, but I get the same error as on the server.</li>
</ul>
<p dir="auto">Could anyone provide a hint what might be wrong?</p> | <p dir="auto">see <a href="http://console.neo4j.org/?id=258d6g" rel="nofollow">http://console.neo4j.org/?id=258d6g</a> for an example, and <a href="http://stackoverflow.com/questions/13970033/returning-all-relationships-for-a-list-of-nodes" rel="nofollow">http://stackoverflow.com/questions/13970033/returning-all-relationships-for-a-list-of-nodes</a> for the discussion on this.</p> | 1 |
<p dir="auto">Describe what you were doing when the bug occurred:</p>
<ol dir="auto">
<li>While i am using profilter, i got the following error.</li>
</ol>
<hr>
<h2 dir="auto">Please do not remove the text below this line</h2>
<p dir="auto">DevTools version: 4.7.0-23309eb38</p>
<p dir="auto">Call stack: at N (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:164902)<br>
at I (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:163849)<br>
at I (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:163773)<br>
at I (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:163773)<br>
at I (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:163773)<br>
at I (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:163773)<br>
at e.getCommitTree (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:166664)<br>
at Ul (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:342328)<br>
at gi (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:62450)<br>
at tl (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:71793)</p>
<p dir="auto">Component stack: at Ul (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:342099)<br>
at div<br>
at div<br>
at div<br>
at Co (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:263571)<br>
at chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:366677<br>
at n (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:276314)<br>
at chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:278724<br>
at div<br>
at div<br>
at Xi (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:325177)<br>
at Ge (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:207026)<br>
at sn (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:216342)<br>
at Va (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:293773)<br>
at us (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:371869)</p> | <h3 dir="auto">Describe what you were doing when the bug occurred:</h3>
<ol dir="auto">
<li>I did profiling on a list, that gets updated on each pagination api call.</li>
<li>Once the profiling was done, I moved around in the Profiler to view the Flamegraph</li>
<li>Moving to second capture, the Profiler crashed.</li>
</ol>
<p dir="auto"><strong>DevTools version</strong>: 4.6.0-6cceaeb67</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Component stack: in ec
in div
in div
in div
in So
in Unknown
in n
in Unknown
in div
in div
in rl
in Ze
in fn
in Ga
in _s"><pre class="notranslate"><code class="notranslate">Component stack: in ec
in div
in div
in div
in So
in Unknown
in n
in Unknown
in div
in div
in rl
in Ze
in fn
in Ga
in _s
</code></pre></div> | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.