text1
stringlengths 0
536k
| text2
stringlengths 0
536k
| label
int64 0
1
|
---|---|---|
<p dir="auto">Veracode is reporting that all versions of axios (up to and including 0.19.0-beta.1) contain a XSS vulnerability. (CVSSv3: 6.1)</p>
<p dir="auto">Very limited details available:<br>
<a href="https://www.sourceclear.com/vulnerability-database/security/sca/vulnerability/sid-21679/summary" rel="nofollow">https://www.sourceclear.com/vulnerability-database/security/sca/vulnerability/sid-21679/summary</a></p>
<p dir="auto">I suspect it is a false positive based on comments <a href="https://github.com/axios/axios/issues/2447" data-hovercard-type="issue" data-hovercard-url="/axios/axios/issues/2447/hovercard">here</a>. Would value any thoughts / input</p>
<p dir="auto">Thanks</p> | <p dir="auto"><strong>Describe the bug</strong><br>
A Fortify Scan finds a critical Cross-Site Scripting vulnerability in Axios here:</p>
<p dir="auto"><a href="https://github.com/axios/axios/blob/master/lib/helpers/isURLSameOrigin.js#L30">https://github.com/axios/axios/blob/master/lib/helpers/isURLSameOrigin.js#L30</a></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="urlParsingNode.setAttribute('href', href);"><pre class="notranslate"><span class="pl-s1">urlParsingNode</span><span class="pl-kos">.</span><span class="pl-en">setAttribute</span><span class="pl-kos">(</span><span class="pl-s">'href'</span><span class="pl-kos">,</span> <span class="pl-s1">href</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<blockquote>
<p dir="auto">The method resolveURL() sends unvalidated data to a web browser, which can result in the browser executing malicious code.</p>
</blockquote>
<p dir="auto">This issue has been <a href="https://github.com/axios/axios/issues/2165" data-hovercard-type="issue" data-hovercard-url="/axios/axios/issues/2165/hovercard">reported previously</a>, but then it was closed as 0.19.0 was supposed to provide a fix.</p>
<p dir="auto">We ran a Fortify scan on 0.19.0 and got the same error; the source code still contains the problematic line above and the issue remains.</p> | 1 |
<p dir="auto">I've set <code class="notranslate">axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded';</code> and using the same instance doesn't affect at any request at all. It is very annoying because every POST request to API is useless.</p>
<p dir="auto">In addition, v: 0.12.0, no interceptor, pure default + post request.</p> | <h4 dir="auto">Describe the issue</h4>
<p dir="auto">This might be duplicated question, but I have tried all possible research on google and blogs, StackOverflow to get a solution to fix it, but no luck so if you already know the answer please help me.</p>
<p dir="auto">I am trying to send an array of objects to Axios post request, but the payload empty array even if I have the data in array as I checked with console.log</p>
<h4 dir="auto">Example Code</h4>
<p dir="auto">Code snippet to illustrate your question</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="axios.post("/api/videos", {
ytVideosList,
data: {
customFunction: "AddVideoList"
}
})"><pre class="notranslate"><span class="pl-s1">axios</span><span class="pl-kos">.</span><span class="pl-en">post</span><span class="pl-kos">(</span><span class="pl-s">"/api/videos"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span>
ytVideosList<span class="pl-kos">,</span>
<span class="pl-c1">data</span>: <span class="pl-kos">{</span>
<span class="pl-c1">customFunction</span>: <span class="pl-s">"AddVideoList"</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span></pre></div>
<h4 dir="auto">Expected behavior, if applicable</h4>
<p dir="auto">where ytVideoList is [{json-obj1},{json-obj2}, .....] etc which is empty [] at payload side, so i am not able to insert data in my database table. I hope everything is clear if you know the answer please respond as soon as possible.</p>
<h4 dir="auto">Environment</h4>
<ul dir="auto">
<li>Axios Version 0.24.0</li>
<li>Adapter HTTP</li>
<li>Browser Chrome</li>
<li>Browser Version 22+</li>
<li>Node.js Version 13+</li>
<li>React 16.7+</li>
</ul>
<h4 dir="auto">Additional context/Screenshots</h4>
<p dir="auto">It's general simple data sending issue so no need to add screenshot i think so</p> | 0 |
<p dir="auto">The Qhull library used for the Voronoi diagram calculation has floating number imprecision. If the points differ only 5 digits after the decimal point (e.g. geographic coordinates), only one region is determined.<br>
These imprecisions are already mentioned in the <a href="http://www.qhull.org/html/qh-impre.htm" rel="nofollow">Qhull documentation</a>.</p>
<p dir="auto">Is a note/warning in the documentation appropriate? Maybe with a link to the correct Qhull flag Or could a check be added to get a warning, if there are probably imprecison?</p>
<h3 dir="auto">Reproducing code example:</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from scipy.spatial import voronoi_plot_2d, Voronoi
import numpy as np
import matplotlib.pyplot as plt
data_x = 40 + np.random.random(50) / 1000
data_y = 10 + np.random.random(50) / 1000
points = list(zip(data_x, data_y))
vor = Voronoi(points)
voronoi_plot_2d(vor)
plt.show()"><pre class="notranslate"><code class="notranslate">from scipy.spatial import voronoi_plot_2d, Voronoi
import numpy as np
import matplotlib.pyplot as plt
data_x = 40 + np.random.random(50) / 1000
data_y = 10 + np.random.random(50) / 1000
points = list(zip(data_x, data_y))
vor = Voronoi(points)
voronoi_plot_2d(vor)
plt.show()
</code></pre></div>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/15113257/61204212-e4a4a980-a6ec-11e9-895a-e79b40e2af4a.png"><img src="https://user-images.githubusercontent.com/15113257/61204212-e4a4a980-a6ec-11e9-895a-e79b40e2af4a.png" alt="grafik" style="max-width: 100%;"></a></p>
<h3 dir="auto">Scipy/Numpy/Python version information:</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="1.3.0 1.17.0rc1 sys.version_info(major=3, minor=7, micro=3, releaselevel='final', serial=0)"><pre class="notranslate"><code class="notranslate">1.3.0 1.17.0rc1 sys.version_info(major=3, minor=7, micro=3, releaselevel='final', serial=0)
</code></pre></div> | <p dir="auto">A little context: We're trying to use Voronoi diagrams with points in GIS shapefiles, which have coordinates with large numbers like <code class="notranslate">[470121.0, 5118838.0999999996]</code></p>
<p dir="auto">When I run <code class="notranslate">scipy.spatial.Voronoi()</code> on raw points I get:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1063391/21623463/5922aa54-d1b7-11e6-8be1-2a4bed665584.png"><img src="https://cloud.githubusercontent.com/assets/1063391/21623463/5922aa54-d1b7-11e6-8be1-2a4bed665584.png" alt="figure_1" style="max-width: 100%;"></a></p>
<p dir="auto">And this is is weird to me. There are shapes but they are really sparse.</p>
<p dir="auto">If I shift everything closer to the origin and retry I get:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1063391/21623475/6611599a-d1b7-11e6-8052-170861748c86.png"><img src="https://cloud.githubusercontent.com/assets/1063391/21623475/6611599a-d1b7-11e6-8052-170861748c86.png" alt="figure_2" style="max-width: 100%;"></a></p>
<p dir="auto">That second case is what I expect. This is my first time using this library so I'm not 100% sure I'm not at fault here.</p>
<p dir="auto">Is this known behavior? Should I just transform my points every time I want to use this?</p> | 1 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=pavla" rel="nofollow">Pavla Nováková</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-6373?redirect=false" rel="nofollow">SPR-6373</a></strong> and commented</p>
<p dir="auto">It would be useful to be able to use validation groups in spring MVC as specified by JSR-303. With the improvement it should be possible to write something like:</p>
<p dir="auto"><code class="notranslate">@RequestMapping</code>("/foo", method=RequestMethod.POST)<br>
public void processFoo(<code class="notranslate">@Valid</code>(groups={Default.class, MyValidationGroup.class}) Foo foo) { ... }</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.0 RC2</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="398099286" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/11035" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/11035/hovercard" href="https://github.com/spring-projects/spring-framework/issues/11035">#11035</a> Support for 'groups' in addition to <code class="notranslate">@Valid</code> for <code class="notranslate">@MVC</code> Controllers (<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="398104276" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/11722" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/11722/hovercard" href="https://github.com/spring-projects/spring-framework/issues/11722">#11722</a> Add Group Class support to JSR-303 Validation using <code class="notranslate">@Valid</code> (<em><strong>"is duplicated by"</strong></em>)</li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398109410" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12504" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12504/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12504">#12504</a> ValidationUtils: add support for Validation group interfaces</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/00133179df27fc8b2c8c3b5d9377985279122691/hovercard" href="https://github.com/spring-projects/spring-framework/commit/00133179df27fc8b2c8c3b5d9377985279122691"><tt>0013317</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/49a2aaf023e2da5efb0ef49785499053ebd42c61/hovercard" href="https://github.com/spring-projects/spring-framework/commit/49a2aaf023e2da5efb0ef49785499053ebd42c61"><tt>49a2aaf</tt></a></p>
<p dir="auto">54 votes, 53 watchers</p> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=sher" rel="nofollow">Roman Shevchenko</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-3785?redirect=false" rel="nofollow">SPR-3785</a></strong> and commented</p>
<p dir="auto">A defaultObject property of JndiObjectFactoryBean is not available via otherwise perfect jee:jndi-lookup tag and this makes it unusable when looking for optional JNDI settings.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 2.0.6</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="398081935" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/8692" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/8692/hovercard" href="https://github.com/spring-projects/spring-framework/issues/8692">#8692</a> jee:jndi-lookup do not provide a way to define a default object (<em><strong>"duplicates"</strong></em>)</li>
</ul>
<p dir="auto">1 votes, 5 watchers</p> | 0 |
<p dir="auto"><strong>Elasticsearch version</strong>: 2.1.2 or newest</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="PUT store
{
"mappings": {
"performance": {
"_source": {
"enabled": false
},
"properties": {
"host": {
"store": true,
"type": "long"
},
"time": {
"format": "epoch_millis",
"store": true,
"type": "date"
}
}
}
}
}
POST store/performance
{
"host":1234,
"time":1479264717
}
GET store/_search
{
"fields": [
"*",
"_source"
],
"fielddata_fields": [
"time"
]
}"><pre class="notranslate"><code class="notranslate">PUT store
{
"mappings": {
"performance": {
"_source": {
"enabled": false
},
"properties": {
"host": {
"store": true,
"type": "long"
},
"time": {
"format": "epoch_millis",
"store": true,
"type": "date"
}
}
}
}
}
POST store/performance
{
"host":1234,
"time":1479264717
}
GET store/_search
{
"fields": [
"*",
"_source"
],
"fielddata_fields": [
"time"
]
}
</code></pre></div>
<p dir="auto">query result:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""time": [
"1479144300000",
1479144300000
]"><pre class="notranslate"><code class="notranslate">"time": [
"1479144300000",
1479144300000
]
</code></pre></div>
<p dir="auto">But expect result:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""time": [
1479144300000
]"><pre class="notranslate"><code class="notranslate">"time": [
1479144300000
]
</code></pre></div>
<p dir="auto">Yes, setting the store the timestamp field does not make any sense ,but most ES users do not use the<br>
ES very well ,so there is an inappropriate way to use it .However,I think that ES should consider this situation,to tolerate or compatible with this imappropriate use:</p>
<ol dir="auto">
<li>This setting can be ignored when setting the index type mappings.</li>
<li>Or to return to the search results,ignore the duplication of the results, take the value of the field from on place.</li>
</ol>
<p dir="auto">I'm from China, my English is not very good ,can understand what I mean?</p> | <p dir="auto">At least with master (did not check other branches) I see this:</p>
<p dir="auto">[WARNING] Some problems were encountered while building the effective model for org.elasticsearch:elasticsearch:jar:2.0.0-SNAPSHOT<br>
[WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.apache.maven.plugins:maven-resources-plugin @ line 1104, column 21<br>
[WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.apache.maven.plugins:maven-resources-plugin @ line 1367, column 21<br>
[WARNING]<br>
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.<br>
[WARNING]<br>
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.</p> | 0 |
<p dir="auto">Bootstrap components are defined as constructor functions in a private scope. While they are exposed globally within <code class="notranslate">$.fn</code>, they are called with references to those constructors within that private scope.</p>
<p dir="auto">That means that there's no way to replace or wrap the code within the constructor function from 3rd party code. The use case that I'm imagining: modifying the behavior of the stock components without maintaining a fork of Bootstrap.</p>
<p dir="auto">The design that seems appropriate is moving the code from within the constructor functions into an init method on the constructor's prototype, leaving all constructor functions looking something like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="var Affix = function (element, options) {
this.init(element, options);
}"><pre class="notranslate"><code class="notranslate">var Affix = function (element, options) {
this.init(element, options);
}
</code></pre></div>
<p dir="auto">That would allow global access to override the init method, via <code class="notranslate">$.fn.affix.Constructor.init</code> which would also affect the reference to the constructor as <code class="notranslate">Affix</code> within its private scope. The change should not affect any functionality or the API beyond exposing the constructor function for manipulation. If this sounds good, I'll be happy to make a PR.</p>
<p dir="auto">I apologize if this is revisiting an old question that's been resolved - I wasn't able to find historical work on this, but I know that doesn't mean it's not out there!</p> | <p dir="auto">Dropdowns experience the same clipping problems as tooltips, so one solution would be to allow specifying <code class="notranslate">data-container="body"</code>, as you can with tooltips.</p>
<p dir="auto">This means the .dropdown-menu would have to be positioned with JS, like the tooltip, and I don't know what problems would be introduced by shipping the ul.dropdown-menu elsewhere in the DOM, even temporarily.</p>
<p dir="auto">The wrath of overflow: hidden...</p> | 0 |
<p dir="auto">In a PR that only changed docs, TestHandleNodeSelector failed on shippable.<br>
<a href="https://app.shippable.com/builds/5582fe6f152d7e0b0098cd1a" rel="nofollow">https://app.shippable.com/builds/5582fe6f152d7e0b0098cd1a</a><br>
says:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="KUBE_RACE="-race" KUBE_COVER="y" KUBE_GOVERALLS_BIN="$HOME/gopath/bin/goveralls" KUBE_TIMEOUT='-timeout 300s' KUBE_COVERPROCS=8 KUBE_TEST_ETCD_PREFIXES="${KUBE_TEST_ETCD_PREFIXES}" KUBE_TEST_API_VERSIONS="${KUBE_TEST_API_VERSIONS}" ./hack/test-go.sh -- -p=2
Running tests for APIVersion: v1 with etcdPrefix: registry
...
W0618 17:31:57.275251 15439 docker.go:259] found a container with the "k8s" prefix, but too few fields (2): "k8s_unidentified"
I0618 17:31:57.275655 15439 container_gc.go:128] Removing unidentified dead container "/k8s_unidentified" with ID "2876"
I0618 17:31:57.278692 15439 image_manager.go:274] [ImageManager]: Removing image "image-0" to free 1024 bytes
I0618 17:31:57.279295 15439 image_manager.go:274] [ImageManager]: Removing image "image-0" to free 1024 bytes
I0618 17:31:57.279756 15439 image_manager.go:274] [ImageManager]: Removing image "image-0" to free 1024 bytes
I0618 17:31:57.280216 15439 image_manager.go:274] [ImageManager]: Removing image "image-0" to free 1024 bytes
I0618 17:31:57.281203 15439 image_manager.go:212] [ImageManager]: Disk usage on "" () is at 95% which is over the high threshold (90%). Trying to free 150 bytes
I0618 17:31:57.281342 15439 image_manager.go:274] [ImageManager]: Removing image "image-0" to free 450 bytes
I0618 17:31:57.281655 15439 image_manager.go:212] [ImageManager]: Disk usage on "" () is at 95% which is over the high threshold (90%). Trying to free 150 bytes
I0618 17:31:57.281744 15439 image_manager.go:274] [ImageManager]: Removing image "image-0" to free 50 bytes
W0618 17:31:57.307083 15439 kubelet.go:567] Data dir for pod "bothpod" exists in both old and new form, using new
W0618 17:31:57.309383 15439 kubelet.go:622] Data dir for pod "newpod", container "bothctr" exists in both old and new form, using new
I0618 17:31:57.350196 15439 plugins.go:56] Registering credential provider: .dockercfg
E0618 17:31:57.357026 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.423204 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.450256 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.450703 15439 kubelet.go:1835] error getting node: node not found
I0618 17:31:57.588034 15439 plugins.go:56] Registering credential provider: .dockercfg
E0618 17:31:57.589181 15439 kubelet.go:1739] Pod "_": HostPort is already allocated, ignoring: [[0].port: duplicate value '81/']
E0618 17:31:57.591178 15439 kubelet.go:1739] Pod "newpod_foo": HostPort is already allocated, ignoring: [[0].port: duplicate value '80/']
E0618 17:31:57.591468 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.594614 15439 kubelet.go:1835] error getting node: node not found
--- FAIL: TestHandleNodeSelector (0.00s)
kubelet_test.go:2318: status of pod "podA_foo" is not found in the status map
E0618 17:31:57.600623 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.602728 15439 kubelet.go:1739] Pod "pod2_": HostPort is already allocated, ignoring: [[0].port: duplicate value '80/']
E0618 17:31:57.603082 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.603282 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.666564 15439 kubelet.go:2121] Error updating node status, will retry: error getting node "": Node "" not found
E0618 17:31:57.666683 15439 kubelet.go:2121] Error updating node status, will retry: error getting node "": Node "" not found
E0618 17:31:57.666745 15439 kubelet.go:2121] Error updating node status, will retry: error getting node "": Node "" not found
E0618 17:31:57.666810 15439 kubelet.go:2121] Error updating node status, will retry: error getting node "": Node "" not found
E0618 17:31:57.666868 15439 kubelet.go:2121] Error updating node status, will retry: error getting node "": Node "" not found
E0618 17:31:57.690660 15439 kubelet.go:1365] Deleting mirror pod "foo_ns" because it is outdated
E0618 17:31:57.698968 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.714840 15439 kubelet.go:1835] error getting node: node not found
I0618 17:31:57.861009 15439 kubelet.go:872] Node was previously registered
W0618 17:31:57.861717 15439 kubelet.go:958] Port name conflicted, "fooContainer-foo" is defined more than once
W0618 17:31:57.861814 15439 kubelet.go:958] Port name conflicted, "fooContainer-TCP:80" is defined more than once
E0618 17:31:57.920199 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.923393 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.927939 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.932362 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:58.002995 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:58.025981 15439 kubelet.go:1835] error getting node: node not found
I0618 17:31:58.029290 15439 plugins.go:56] Registering credential provider: .dockercfg
I0618 17:31:58.095041 15439 plugins.go:56] Registering credential provider: .dockercfg
I0618 17:31:58.096872 15439 plugins.go:56] Registering credential provider: .dockercfg
I0618 17:31:58.158154 15439 plugins.go:56] Registering credential provider: .dockercfg
W0618 17:31:58.159426 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_foo_new_12345678_0"
W0618 17:31:58.159557 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_foo_new_12345678_0"
W0618 17:31:58.159651 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.159729 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.159908 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.160051 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.160146 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_foo_new_12345678_0"
W0618 17:31:58.160241 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_foo_new_12345678_0"
W0618 17:31:58.160879 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_bar_new_98765_0"
W0618 17:31:58.160981 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_bar_new_98765_0"
W0618 17:31:58.161063 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.161149 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.161322 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_bar_new_98765_0"
W0618 17:31:58.161447 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_bar_new_98765_0"
W0618 17:31:58.161542 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.161633 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.161879 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_bar_new_12345678_0"
W0618 17:31:58.161983 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_bar_new_12345678_0"
W0618 17:31:58.162078 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.162160 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.162298 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.162403 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.162494 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_bar_new_12345678_0"
W0618 17:31:58.162576 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_bar_new_12345678_0"
I0618 17:31:58.164822 15439 plugins.go:56] Registering credential provider: .dockercfg
E0618 17:31:58.165088 15439 kubelet.go:1835] error getting node: node not found
I0618 17:31:58.165618 15439 runonce.go:59] waiting for 1 pods
I0618 17:31:58.166095 15439 runonce.go:145] Container "bar" not running: api.ContainerState{Waiting:(*api.ContainerStateWaiting)(0xc20834c930), Running:(*api.ContainerStateRunning)(nil), Terminated:(*api.ContainerStateTerminated)(nil)}
I0618 17:31:58.166220 15439 runonce.go:111] pod "foo" containers not running: syncing
W0618 17:31:58.173560 15439 docker.go:259] found a container with the "k8s" prefix, but too few fields (5): "k8s_net_foo.new.test_abcdefgh_42"
I0618 17:31:58.173949 15439 runonce.go:124] pod "foo" containers synced, waiting for 1ms
W0618 17:31:58.178447 15439 docker.go:259] found a container with the "k8s" prefix, but too few fields (5): "k8s_net_foo.new.test_abcdefgh_42"
E0618 17:31:58.178664 15439 manager.go:742] Error examining the container: parse docker container name "/k8s_net_foo.new.test_abcdefgh_42" error: Docker container name "k8s_net_foo.new.test_abcdefgh_42" has less parts than expected [k8s net foo.new.test abcdefgh 42]
W0618 17:31:58.179478 15439 docker.go:259] found a container with the "k8s" prefix, but too few fields (5): "k8s_net_foo.new.test_abcdefgh_42"
I0618 17:31:58.179651 15439 runonce.go:107] pod "foo" containers running
I0618 17:31:58.179788 15439 runonce.go:72] started pod "foo"
I0618 17:31:58.179862 15439 runonce.go:81] 1 pods started
W0618 17:31:59.842085 15439 connection.go:126] Stream rejected: Unable to parse '' as a port: strconv.ParseUint: parsing "": invalid syntax
W0618 17:31:59.860739 15439 connection.go:126] Stream rejected: Unable to parse 'abc' as a port: strconv.ParseUint: parsing "abc": invalid syntax
W0618 17:31:59.967321 15439 connection.go:126] Stream rejected: Unable to parse '-1' as a port: strconv.ParseUint: parsing "-1": invalid syntax
W0618 17:32:00.026988 15439 connection.go:126] Stream rejected: Unable to parse '65536' as a port: strconv.ParseUint: parsing "65536": value out of range
W0618 17:32:00.104831 15439 connection.go:126] Stream rejected: Port '0' must be greater than 0
FAIL
coverage: 60.4% of statements
FAIL github.com/GoogleCloudPlatform/kubernetes/pkg/kubelet 3.423s"><pre class="notranslate"><code class="notranslate">KUBE_RACE="-race" KUBE_COVER="y" KUBE_GOVERALLS_BIN="$HOME/gopath/bin/goveralls" KUBE_TIMEOUT='-timeout 300s' KUBE_COVERPROCS=8 KUBE_TEST_ETCD_PREFIXES="${KUBE_TEST_ETCD_PREFIXES}" KUBE_TEST_API_VERSIONS="${KUBE_TEST_API_VERSIONS}" ./hack/test-go.sh -- -p=2
Running tests for APIVersion: v1 with etcdPrefix: registry
...
W0618 17:31:57.275251 15439 docker.go:259] found a container with the "k8s" prefix, but too few fields (2): "k8s_unidentified"
I0618 17:31:57.275655 15439 container_gc.go:128] Removing unidentified dead container "/k8s_unidentified" with ID "2876"
I0618 17:31:57.278692 15439 image_manager.go:274] [ImageManager]: Removing image "image-0" to free 1024 bytes
I0618 17:31:57.279295 15439 image_manager.go:274] [ImageManager]: Removing image "image-0" to free 1024 bytes
I0618 17:31:57.279756 15439 image_manager.go:274] [ImageManager]: Removing image "image-0" to free 1024 bytes
I0618 17:31:57.280216 15439 image_manager.go:274] [ImageManager]: Removing image "image-0" to free 1024 bytes
I0618 17:31:57.281203 15439 image_manager.go:212] [ImageManager]: Disk usage on "" () is at 95% which is over the high threshold (90%). Trying to free 150 bytes
I0618 17:31:57.281342 15439 image_manager.go:274] [ImageManager]: Removing image "image-0" to free 450 bytes
I0618 17:31:57.281655 15439 image_manager.go:212] [ImageManager]: Disk usage on "" () is at 95% which is over the high threshold (90%). Trying to free 150 bytes
I0618 17:31:57.281744 15439 image_manager.go:274] [ImageManager]: Removing image "image-0" to free 50 bytes
W0618 17:31:57.307083 15439 kubelet.go:567] Data dir for pod "bothpod" exists in both old and new form, using new
W0618 17:31:57.309383 15439 kubelet.go:622] Data dir for pod "newpod", container "bothctr" exists in both old and new form, using new
I0618 17:31:57.350196 15439 plugins.go:56] Registering credential provider: .dockercfg
E0618 17:31:57.357026 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.423204 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.450256 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.450703 15439 kubelet.go:1835] error getting node: node not found
I0618 17:31:57.588034 15439 plugins.go:56] Registering credential provider: .dockercfg
E0618 17:31:57.589181 15439 kubelet.go:1739] Pod "_": HostPort is already allocated, ignoring: [[0].port: duplicate value '81/']
E0618 17:31:57.591178 15439 kubelet.go:1739] Pod "newpod_foo": HostPort is already allocated, ignoring: [[0].port: duplicate value '80/']
E0618 17:31:57.591468 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.594614 15439 kubelet.go:1835] error getting node: node not found
--- FAIL: TestHandleNodeSelector (0.00s)
kubelet_test.go:2318: status of pod "podA_foo" is not found in the status map
E0618 17:31:57.600623 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.602728 15439 kubelet.go:1739] Pod "pod2_": HostPort is already allocated, ignoring: [[0].port: duplicate value '80/']
E0618 17:31:57.603082 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.603282 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.666564 15439 kubelet.go:2121] Error updating node status, will retry: error getting node "": Node "" not found
E0618 17:31:57.666683 15439 kubelet.go:2121] Error updating node status, will retry: error getting node "": Node "" not found
E0618 17:31:57.666745 15439 kubelet.go:2121] Error updating node status, will retry: error getting node "": Node "" not found
E0618 17:31:57.666810 15439 kubelet.go:2121] Error updating node status, will retry: error getting node "": Node "" not found
E0618 17:31:57.666868 15439 kubelet.go:2121] Error updating node status, will retry: error getting node "": Node "" not found
E0618 17:31:57.690660 15439 kubelet.go:1365] Deleting mirror pod "foo_ns" because it is outdated
E0618 17:31:57.698968 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.714840 15439 kubelet.go:1835] error getting node: node not found
I0618 17:31:57.861009 15439 kubelet.go:872] Node was previously registered
W0618 17:31:57.861717 15439 kubelet.go:958] Port name conflicted, "fooContainer-foo" is defined more than once
W0618 17:31:57.861814 15439 kubelet.go:958] Port name conflicted, "fooContainer-TCP:80" is defined more than once
E0618 17:31:57.920199 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.923393 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.927939 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:57.932362 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:58.002995 15439 kubelet.go:1835] error getting node: node not found
E0618 17:31:58.025981 15439 kubelet.go:1835] error getting node: node not found
I0618 17:31:58.029290 15439 plugins.go:56] Registering credential provider: .dockercfg
I0618 17:31:58.095041 15439 plugins.go:56] Registering credential provider: .dockercfg
I0618 17:31:58.096872 15439 plugins.go:56] Registering credential provider: .dockercfg
I0618 17:31:58.158154 15439 plugins.go:56] Registering credential provider: .dockercfg
W0618 17:31:58.159426 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_foo_new_12345678_0"
W0618 17:31:58.159557 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_foo_new_12345678_0"
W0618 17:31:58.159651 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.159729 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.159908 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.160051 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.160146 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_foo_new_12345678_0"
W0618 17:31:58.160241 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_foo_new_12345678_0"
W0618 17:31:58.160879 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_bar_new_98765_0"
W0618 17:31:58.160981 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_bar_new_98765_0"
W0618 17:31:58.161063 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.161149 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.161322 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_bar_new_98765_0"
W0618 17:31:58.161447 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_bar_new_98765_0"
W0618 17:31:58.161542 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.161633 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.161879 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_bar_new_12345678_0"
W0618 17:31:58.161983 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_bar_new_12345678_0"
W0618 17:31:58.162078 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.162160 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.162298 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.162403 15439 docker.go:269] invalid container hash "hash123" in container "k8s_POD.hash123_foo_new_12345678_0"
W0618 17:31:58.162494 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_bar_new_12345678_0"
W0618 17:31:58.162576 15439 docker.go:269] invalid container hash "hash123" in container "k8s_bar.hash123_bar_new_12345678_0"
I0618 17:31:58.164822 15439 plugins.go:56] Registering credential provider: .dockercfg
E0618 17:31:58.165088 15439 kubelet.go:1835] error getting node: node not found
I0618 17:31:58.165618 15439 runonce.go:59] waiting for 1 pods
I0618 17:31:58.166095 15439 runonce.go:145] Container "bar" not running: api.ContainerState{Waiting:(*api.ContainerStateWaiting)(0xc20834c930), Running:(*api.ContainerStateRunning)(nil), Terminated:(*api.ContainerStateTerminated)(nil)}
I0618 17:31:58.166220 15439 runonce.go:111] pod "foo" containers not running: syncing
W0618 17:31:58.173560 15439 docker.go:259] found a container with the "k8s" prefix, but too few fields (5): "k8s_net_foo.new.test_abcdefgh_42"
I0618 17:31:58.173949 15439 runonce.go:124] pod "foo" containers synced, waiting for 1ms
W0618 17:31:58.178447 15439 docker.go:259] found a container with the "k8s" prefix, but too few fields (5): "k8s_net_foo.new.test_abcdefgh_42"
E0618 17:31:58.178664 15439 manager.go:742] Error examining the container: parse docker container name "/k8s_net_foo.new.test_abcdefgh_42" error: Docker container name "k8s_net_foo.new.test_abcdefgh_42" has less parts than expected [k8s net foo.new.test abcdefgh 42]
W0618 17:31:58.179478 15439 docker.go:259] found a container with the "k8s" prefix, but too few fields (5): "k8s_net_foo.new.test_abcdefgh_42"
I0618 17:31:58.179651 15439 runonce.go:107] pod "foo" containers running
I0618 17:31:58.179788 15439 runonce.go:72] started pod "foo"
I0618 17:31:58.179862 15439 runonce.go:81] 1 pods started
W0618 17:31:59.842085 15439 connection.go:126] Stream rejected: Unable to parse '' as a port: strconv.ParseUint: parsing "": invalid syntax
W0618 17:31:59.860739 15439 connection.go:126] Stream rejected: Unable to parse 'abc' as a port: strconv.ParseUint: parsing "abc": invalid syntax
W0618 17:31:59.967321 15439 connection.go:126] Stream rejected: Unable to parse '-1' as a port: strconv.ParseUint: parsing "-1": invalid syntax
W0618 17:32:00.026988 15439 connection.go:126] Stream rejected: Unable to parse '65536' as a port: strconv.ParseUint: parsing "65536": value out of range
W0618 17:32:00.104831 15439 connection.go:126] Stream rejected: Port '0' must be greater than 0
FAIL
coverage: 60.4% of statements
FAIL github.com/GoogleCloudPlatform/kubernetes/pkg/kubelet 3.423s
</code></pre></div> | <p dir="auto">A developer accidentally made two deployments with labels that overlapped, such that one of the deployment's selectors matched the pods from both deployments. In the repro below the labels are exactly the same, but this also happened one one set of labels is a subset of another.</p>
<p dir="auto">Expected: An error?</p>
<p dir="auto">Actual: <strong>Cluster CPU went past 100% and everything else broke.</strong> Crazy thrashing with kubernetes shutting down pods & restarting new ones so quickly that we could not even get logs. They never made it past the Pending state.</p>
<p dir="auto">We are running kubernetes 1.2 on GKE. Here's a minimal repro, just apply it (on a cluster you don't need! D: )</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: d1
spec:
replicas: 1
template:
metadata:
labels:
duplicate-key: duplicate-value
spec:
containers:
- image: busybox
name: c1
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: d2
spec:
replicas: 1
template:
metadata:
labels:
duplicate-key: duplicate-value
spec:
containers:
- image: busybox
name: c2"><pre class="notranslate"><code class="notranslate">apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: d1
spec:
replicas: 1
template:
metadata:
labels:
duplicate-key: duplicate-value
spec:
containers:
- image: busybox
name: c1
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: d2
spec:
replicas: 1
template:
metadata:
labels:
duplicate-key: duplicate-value
spec:
containers:
- image: busybox
name: c2
</code></pre></div> | 0 |
<h2 dir="auto"><g-emoji class="g-emoji" alias="bug" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f41b.png">🐛</g-emoji> Bug</h2>
<p dir="auto">The tensor.clamp function returns the upper bound when applied to a nan array on the GPU. On the CPU it returns nan instead.</p>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">Steps to reproduce the behavior:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import numpy as np
import torch
t = torch.FloatTensor([np.nan])
t.clamp(-10, 10)"><pre class="notranslate"><code class="notranslate">import numpy as np
import torch
t = torch.FloatTensor([np.nan])
t.clamp(-10, 10)
</code></pre></div>
<p dir="auto"><code class="notranslate">Out[26]: tensor([nan])</code></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="t.cuda().clamp(-10, 10)"><pre class="notranslate"><code class="notranslate">t.cuda().clamp(-10, 10)
</code></pre></div>
<p dir="auto"><code class="notranslate">Out[25]: tensor([10.], device='cuda:0')</code></p>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">I would expect to have the behavior be agnostic to the computational substrate. Regardless, returning the upper bound on nan is completely arbitrary and can't possibly be the preferred solution.</p>
<h2 dir="auto">Environment</h2>
<p dir="auto">PyTorch version: 1.0.0<br>
Is debug build: No<br>
CUDA used to build PyTorch: 8.0.61</p>
<p dir="auto">OS: Ubuntu 18.10<br>
GCC version: (Ubuntu 8.2.0-7ubuntu1) 8.2.0<br>
CMake version: Could not collect</p>
<p dir="auto">Python version: 3.7<br>
Is CUDA available: Yes<br>
CUDA runtime version: Could not collect<br>
GPU models and configuration: GPU 0: GeForce GTX 1080 Ti<br>
Nvidia driver version: 415.27<br>
cuDNN version: Could not collect</p>
<p dir="auto">Versions of relevant libraries:<br>
[pip3] numpy==1.15.4<br>
[pip3] numpydoc==0.8.0<br>
[pip3] torch==1.0.0<br>
[pip3] torchvision==0.2.1<br>
[conda] blas 1.0 mkl<br>
[conda] cuda80 1.0 0 soumith<br>
[conda] cuda90 1.0 h6433d27_0 pytorch<br>
[conda] cuda91 1.0 h4c16780_0 pytorch<br>
[conda] libmklml 2018.0.3 0<br>
[conda] mkl 2019.1 144<br>
[conda] mkl-dnn 0.14 2 intel<br>
[conda] mkl-service 1.1.2 py37he904b0f_5<br>
[conda] mkl_fft 1.0.6 py37hd81dba3_0<br>
[conda] mkl_random 1.0.2 py37hd81dba3_0<br>
[conda] pytorch 1.0.0 py3.7_cuda8.0.61_cudnn7.1.2_1 [cuda80] pytorch<br>
[conda] torchvision 0.2.1 py_2 pytorch<br>
[conda] torchvision 0.2.1 </p> | <p dir="auto">The behavior of clamp is not consistent on CPU and GPU when nan's are involved. See the following code snippet</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import torch
a = torch.tensor([float('nan')])
print(a.clamp(0, 1)) # prints nan
print(a.cuda().clamp(0, 1)) # prints 1"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">torch</span>
<span class="pl-s1">a</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-en">tensor</span>([<span class="pl-en">float</span>(<span class="pl-s">'nan'</span>)])
<span class="pl-en">print</span>(<span class="pl-s1">a</span>.<span class="pl-en">clamp</span>(<span class="pl-c1">0</span>, <span class="pl-c1">1</span>)) <span class="pl-c"># prints nan</span>
<span class="pl-en">print</span>(<span class="pl-s1">a</span>.<span class="pl-en">cuda</span>().<span class="pl-en">clamp</span>(<span class="pl-c1">0</span>, <span class="pl-c1">1</span>)) <span class="pl-c"># prints 1</span></pre></div>
<p dir="auto">This doesn't happen if we clamp only with a min or max, but only when both are passed.</p>
<p dir="auto">I believe the problem is in </p><div class="Box Box--condensed my-2">
<div class="Box-header f6">
<p class="mb-0 text-bold">
<a href="https://github.com/pytorch/pytorch/blob/517c7c98610402e2746586c78987c64c28e024aa/aten/src/THC/THCTensorMathPointwise.cuh#L309">pytorch/aten/src/THC/THCTensorMathPointwise.cuh</a>
</p>
<p class="mb-0 color-fg-muted">
Line 309
in
<a data-pjax="true" class="commit-tease-sha" href="/pytorch/pytorch/commit/517c7c98610402e2746586c78987c64c28e024aa">517c7c9</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="L309" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="309"></td>
<td id="LC309" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> T val = THCNumerics<T>::<span class="pl-c1">lt</span>(*in, maxValue) ? *in : maxValue; </td>
</tr>
</tbody></table>
</div>
</div>
. If we compare it to the CPU implementation in <div class="Box Box--condensed my-2">
<div class="Box-header f6">
<p class="mb-0 text-bold">
<a href="https://github.com/pytorch/pytorch/blob/517c7c98610402e2746586c78987c64c28e024aa/aten/src/TH/generic/THTensorMath.cpp#L122">pytorch/aten/src/TH/generic/THTensorMath.cpp</a>
</p>
<p class="mb-0 color-fg-muted">
Line 122
in
<a data-pjax="true" class="commit-tease-sha" href="/pytorch/pytorch/commit/517c7c98610402e2746586c78987c64c28e024aa">517c7c9</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="L122" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="122"></td>
<td id="LC122" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> rp[i] = (tp[i] < min_value) ? min_value : (tp[i] > max_value ? max_value : tp[i]); </td>
</tr>
</tbody></table>
</div>
</div>
, we see that the order of the ternary operator is inversed, which doesn't propagate nans on the CUDA case.<p></p>
<p dir="auto">A simple fix would be to invert the order of the ternary operator in the CUDA kernel.</p>
<p dir="auto">Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/fmassa/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/fmassa">@fmassa</a> for helping me out identifying the root cause of the issue.</p> | 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>.):<br>
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.):<br>
"duplicate", "reboot", "restart"</p>
<hr>
<p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one):<br>
bug report</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:"4", GitVersion:"v1.4.4", GitCommit:"3b417cc4ccd1b8f38ff9ec96bb50a81ca0ea9d56", GitTreeState:"clean", BuildDate:"2016-10-21T02:48:38Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.4", GitCommit:"3b417cc4ccd1b8f38ff9ec96bb50a81ca0ea9d56", GitTreeState:"clean", BuildDate:"2016-10-21T02:42:39Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}"><pre class="notranslate"><code class="notranslate">Client Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.4", GitCommit:"3b417cc4ccd1b8f38ff9ec96bb50a81ca0ea9d56", GitTreeState:"clean", BuildDate:"2016-10-21T02:48:38Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.4", GitCommit:"3b417cc4ccd1b8f38ff9ec96bb50a81ca0ea9d56", GitTreeState:"clean", BuildDate:"2016-10-21T02:42:39Z", GoVersion:"go1.6.3", 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>: Hardware configuration</li>
<li><strong>OS</strong> (e.g. from /etc/os-release): Ubuntu 16.04</li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>): <code class="notranslate">Linux radium-control 4.4.0-47-generic #68-Ubuntu SMP Wed Oct 26 19:39:52 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux</code></li>
<li><strong>Install tools</strong>: <code class="notranslate">kubeadm</code></li>
<li><strong>Others</strong>:</li>
</ul>
<p dir="auto"><strong>What happened</strong>:<br>
On a fresh install, I rebooted all the nodes and instead of the pre-existing ones being re-used, it re-created all new ones and left the old ones there.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
ffede927ca21 gcr.io/google_containers/kube-discovery-amd64:1.0 "/usr/local/bin/kube-" 22 minutes ago Up 22 minutes k8s_kube-discovery.95f6cda5_kube-discovery-1150918428-2fuii_kube-system_de8d448f-b397-11e6-ad3d-001b78777574_9ef8ccf2
b633ebb5bdeb gcr.io/google_containers/pause-amd64:3.0 "/pause" 22 minutes ago Up 22 minutes k8s_POD.d8dbe16c_kube-discovery-1150918428-2fuii_kube-system_de8d448f-b397-11e6-ad3d-001b78777574_c8f5e24e
04ff23f8f1f8 weaveworks/weave-npc:1.8.1 "/usr/bin/weave-npc" 22 minutes ago Up 22 minutes k8s_weave-npc.58d9497_weave-net-ge857_kube-system_f5251ff3-b392-11e6-a9de-001b78777574_c6682817
7f9f4f49a4d8 weaveworks/weave-kube:1.8.1 "/home/weave/launch.s" 22 minutes ago Up 22 minutes k8s_weave.92f5ac48_weave-net-ge857_kube-system_f5251ff3-b392-11e6-a9de-001b78777574_d4c483f4
f217ed69e66b gcr.io/google_containers/pause-amd64:3.0 "/pause" 22 minutes ago Up 22 minutes k8s_POD.d8dbe16c_weave-net-ge857_kube-system_f5251ff3-b392-11e6-a9de-001b78777574_cdcd9e35
7475149bd570 gcr.io/google_containers/pause-amd64:3.0 "/pause" 22 minutes ago Up 22 minutes k8s_dummy.3ba1b90_dummy-2088944543-scso2_kube-system_48c16d8c-b392-11e6-a9de-001b78777574_7d76b048
19fe847464ec gcr.io/google_containers/pause-amd64:3.0 "/pause" 22 minutes ago Up 22 minutes k8s_POD.d8dbe16c_dummy-2088944543-scso2_kube-system_48c16d8c-b392-11e6-a9de-001b78777574_615c31b5
fcd05cfaa1f8 gcr.io/google_containers/kube-proxy-amd64:v1.4.4 "kube-proxy --v=2 --k" 22 minutes ago Up 22 minutes k8s_kube-proxy.773bb601_kube-proxy-ucdmq_kube-system_4a7045e5-b392-11e6-a9de-001b78777574_a781a8f6
7b82f47e1aa8 gcr.io/google_containers/pause-amd64:3.0 "/pause" 22 minutes ago Up 22 minutes k8s_POD.d8dbe16c_kube-proxy-ucdmq_kube-system_4a7045e5-b392-11e6-a9de-001b78777574_78c77c8f
3fc4beb8f823 gcr.io/google_containers/kube-controller-manager-amd64:v1.4.4 "kube-controller-mana" 22 minutes ago Up 22 minutes k8s_kube-controller-manager.edfea2a0_kube-controller-manager-radium-control_kube-system_aa642bd88d7c4f8636a7f3d6df731565_9d864923
deca928f2d8d gcr.io/google_containers/etcd-amd64:2.2.5 "etcd --listen-client" 22 minutes ago Up 22 minutes k8s_etcd.5a0e984b_etcd-radium-control_kube-system_a81a848a0bf7f0d38bc5f9b6b3a7140a_7f48caf6
77a4c87502ec gcr.io/google_containers/kube-apiserver-amd64:v1.4.4 "kube-apiserver --v=2" 22 minutes ago Up 22 minutes k8s_kube-apiserver.bfb4d438_kube-apiserver-radium-control_kube-system_6bd1df9a370394cb83058fae4f9381dd_6670a8f1
bb68da396500 gcr.io/google_containers/pause-amd64:3.0 "/pause" 22 minutes ago Up 22 minutes k8s_POD.d8dbe16c_kube-controller-manager-radium-control_kube-system_aa642bd88d7c4f8636a7f3d6df731565_8c94f7a0
0beae50eb6e7 gcr.io/google_containers/pause-amd64:3.0 "/pause" 22 minutes ago Up 22 minutes k8s_POD.d8dbe16c_etcd-radium-control_kube-system_a81a848a0bf7f0d38bc5f9b6b3a7140a_e581ece1
185aafc4201c gcr.io/google_containers/pause-amd64:3.0 "/pause" 22 minutes ago Up 22 minutes k8s_POD.d8dbe16c_kube-apiserver-radium-control_kube-system_6bd1df9a370394cb83058fae4f9381dd_f6b24953
fe1b90d781e6 gcr.io/google_containers/kube-scheduler-amd64:v1.4.4 "kube-scheduler --v=2" 22 minutes ago Up 22 minutes k8s_kube-scheduler.c164d8b1_kube-scheduler-radium-control_kube-system_87687297b5040798a1737ed4061b3dab_cd1a4525
0656dae45c34 gcr.io/google_containers/pause-amd64:3.0 "/pause" 22 minutes ago Up 22 minutes k8s_POD.d8dbe16c_kube-scheduler-radium-control_kube-system_87687297b5040798a1737ed4061b3dab_7fc6d0cb
010fca2aa9ea weaveworks/weave-npc:1.8.1 "/usr/bin/weave-npc" 56 minutes ago Exited (0) 24 minutes ago k8s_weave-npc.58d9497_weave-net-ge857_kube-system_f5251ff3-b392-11e6-a9de-001b78777574_45656cd2
af45cb766550 weaveworks/weave-kube:1.8.1 "/home/weave/launch.s" 57 minutes ago Exited (0) 24 minutes ago k8s_weave.92f5ac48_weave-net-ge857_kube-system_f5251ff3-b392-11e6-a9de-001b78777574_b627f7a9
dd864b73893b gcr.io/google_containers/pause-amd64:3.0 "/pause" 57 minutes ago Exited (0) 24 minutes ago k8s_POD.d8dbe16c_weave-net-ge857_kube-system_f5251ff3-b392-11e6-a9de-001b78777574_d18d6963
c58758f61ece gcr.io/google_containers/kube-proxy-amd64:v1.4.4 "kube-proxy --v=2 --k" About an hour ago Exited (0) 24 minutes ago k8s_kube-proxy.773bb601_kube-proxy-ucdmq_kube-system_4a7045e5-b392-11e6-a9de-001b78777574_c0672a94
d8f03c785fcd gcr.io/google_containers/pause-amd64:3.0 "/pause" About an hour ago Exited (0) 24 minutes ago k8s_POD.d8dbe16c_kube-proxy-ucdmq_kube-system_4a7045e5-b392-11e6-a9de-001b78777574_d6c09a7a
730300be084c gcr.io/google_containers/kube-discovery-amd64:1.0 "/usr/local/bin/kube-" About an hour ago Exited (0) 24 minutes ago k8s_kube-discovery.95f6cda5_kube-discovery-1150918428-y43bp_kube-system_49d67e85-b392-11e6-a9de-001b78777574_e86c70ed
c7787b36ac00 gcr.io/google_containers/pause-amd64:3.0 "/pause" About an hour ago Exited (0) 24 minutes ago k8s_POD.d8dbe16c_kube-discovery-1150918428-y43bp_kube-system_49d67e85-b392-11e6-a9de-001b78777574_bc686f73
716eb3f55c48 gcr.io/google_containers/pause-amd64:3.0 "/pause" About an hour ago Exited (0) 24 minutes ago k8s_dummy.3ba1b90_dummy-2088944543-scso2_kube-system_48c16d8c-b392-11e6-a9de-001b78777574_13b2ea07
fbf59341b61c gcr.io/google_containers/pause-amd64:3.0 "/pause" About an hour ago Exited (0) 24 minutes ago k8s_POD.d8dbe16c_dummy-2088944543-scso2_kube-system_48c16d8c-b392-11e6-a9de-001b78777574_6de04743
faf34c5a8871 gcr.io/google_containers/kube-controller-manager-amd64:v1.4.4 "kube-controller-mana" About an hour ago Exited (0) 24 minutes ago k8s_kube-controller-manager.edfea2a0_kube-controller-manager-radium-control_kube-system_aa642bd88d7c4f8636a7f3d6df731565_d6f31f7e
dc662a196d44 gcr.io/google_containers/kube-apiserver-amd64:v1.4.4 "kube-apiserver --v=2" About an hour ago Exited (0) 24 minutes ago k8s_kube-apiserver.bfb4d438_kube-apiserver-radium-control_kube-system_6bd1df9a370394cb83058fae4f9381dd_0eb00d1c
16c18aa7d375 gcr.io/google_containers/etcd-amd64:2.2.5 "etcd --listen-client" About an hour ago Exited (0) 24 minutes ago k8s_etcd.5a0e984b_etcd-radium-control_kube-system_a81a848a0bf7f0d38bc5f9b6b3a7140a_4a2fc553
362bd205e080 gcr.io/google_containers/pause-amd64:3.0 "/pause" About an hour ago Exited (0) 24 minutes ago k8s_POD.d8dbe16c_kube-controller-manager-radium-control_kube-system_aa642bd88d7c4f8636a7f3d6df731565_5e72e742
0d7cec328920 gcr.io/google_containers/pause-amd64:3.0 "/pause" About an hour ago Exited (0) 24 minutes ago k8s_POD.d8dbe16c_kube-apiserver-radium-control_kube-system_6bd1df9a370394cb83058fae4f9381dd_d774ffdf
6b6ab724f832 gcr.io/google_containers/pause-amd64:3.0 "/pause" About an hour ago Exited (0) 24 minutes ago k8s_POD.d8dbe16c_etcd-radium-control_kube-system_a81a848a0bf7f0d38bc5f9b6b3a7140a_f4a4fe87
f66e44480edb gcr.io/google_containers/kube-scheduler-amd64:v1.4.4 "kube-scheduler --v=2" About an hour ago Exited (0) 24 minutes ago k8s_kube-scheduler.c164d8b1_kube-scheduler-radium-control_kube-system_87687297b5040798a1737ed4061b3dab_81b91d53
99671aaf59c9 gcr.io/google_containers/pause-amd64:3.0 "/pause" About an hour ago Exited (0) 24 minutes ago k8s_POD.d8dbe16c_kube-scheduler-radium-control_kube-system_87687297b5040798a1737ed4061b3dab_0398d187"><pre class="notranslate"><code class="notranslate">CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
ffede927ca21 gcr.io/google_containers/kube-discovery-amd64:1.0 "/usr/local/bin/kube-" 22 minutes ago Up 22 minutes k8s_kube-discovery.95f6cda5_kube-discovery-1150918428-2fuii_kube-system_de8d448f-b397-11e6-ad3d-001b78777574_9ef8ccf2
b633ebb5bdeb gcr.io/google_containers/pause-amd64:3.0 "/pause" 22 minutes ago Up 22 minutes k8s_POD.d8dbe16c_kube-discovery-1150918428-2fuii_kube-system_de8d448f-b397-11e6-ad3d-001b78777574_c8f5e24e
04ff23f8f1f8 weaveworks/weave-npc:1.8.1 "/usr/bin/weave-npc" 22 minutes ago Up 22 minutes k8s_weave-npc.58d9497_weave-net-ge857_kube-system_f5251ff3-b392-11e6-a9de-001b78777574_c6682817
7f9f4f49a4d8 weaveworks/weave-kube:1.8.1 "/home/weave/launch.s" 22 minutes ago Up 22 minutes k8s_weave.92f5ac48_weave-net-ge857_kube-system_f5251ff3-b392-11e6-a9de-001b78777574_d4c483f4
f217ed69e66b gcr.io/google_containers/pause-amd64:3.0 "/pause" 22 minutes ago Up 22 minutes k8s_POD.d8dbe16c_weave-net-ge857_kube-system_f5251ff3-b392-11e6-a9de-001b78777574_cdcd9e35
7475149bd570 gcr.io/google_containers/pause-amd64:3.0 "/pause" 22 minutes ago Up 22 minutes k8s_dummy.3ba1b90_dummy-2088944543-scso2_kube-system_48c16d8c-b392-11e6-a9de-001b78777574_7d76b048
19fe847464ec gcr.io/google_containers/pause-amd64:3.0 "/pause" 22 minutes ago Up 22 minutes k8s_POD.d8dbe16c_dummy-2088944543-scso2_kube-system_48c16d8c-b392-11e6-a9de-001b78777574_615c31b5
fcd05cfaa1f8 gcr.io/google_containers/kube-proxy-amd64:v1.4.4 "kube-proxy --v=2 --k" 22 minutes ago Up 22 minutes k8s_kube-proxy.773bb601_kube-proxy-ucdmq_kube-system_4a7045e5-b392-11e6-a9de-001b78777574_a781a8f6
7b82f47e1aa8 gcr.io/google_containers/pause-amd64:3.0 "/pause" 22 minutes ago Up 22 minutes k8s_POD.d8dbe16c_kube-proxy-ucdmq_kube-system_4a7045e5-b392-11e6-a9de-001b78777574_78c77c8f
3fc4beb8f823 gcr.io/google_containers/kube-controller-manager-amd64:v1.4.4 "kube-controller-mana" 22 minutes ago Up 22 minutes k8s_kube-controller-manager.edfea2a0_kube-controller-manager-radium-control_kube-system_aa642bd88d7c4f8636a7f3d6df731565_9d864923
deca928f2d8d gcr.io/google_containers/etcd-amd64:2.2.5 "etcd --listen-client" 22 minutes ago Up 22 minutes k8s_etcd.5a0e984b_etcd-radium-control_kube-system_a81a848a0bf7f0d38bc5f9b6b3a7140a_7f48caf6
77a4c87502ec gcr.io/google_containers/kube-apiserver-amd64:v1.4.4 "kube-apiserver --v=2" 22 minutes ago Up 22 minutes k8s_kube-apiserver.bfb4d438_kube-apiserver-radium-control_kube-system_6bd1df9a370394cb83058fae4f9381dd_6670a8f1
bb68da396500 gcr.io/google_containers/pause-amd64:3.0 "/pause" 22 minutes ago Up 22 minutes k8s_POD.d8dbe16c_kube-controller-manager-radium-control_kube-system_aa642bd88d7c4f8636a7f3d6df731565_8c94f7a0
0beae50eb6e7 gcr.io/google_containers/pause-amd64:3.0 "/pause" 22 minutes ago Up 22 minutes k8s_POD.d8dbe16c_etcd-radium-control_kube-system_a81a848a0bf7f0d38bc5f9b6b3a7140a_e581ece1
185aafc4201c gcr.io/google_containers/pause-amd64:3.0 "/pause" 22 minutes ago Up 22 minutes k8s_POD.d8dbe16c_kube-apiserver-radium-control_kube-system_6bd1df9a370394cb83058fae4f9381dd_f6b24953
fe1b90d781e6 gcr.io/google_containers/kube-scheduler-amd64:v1.4.4 "kube-scheduler --v=2" 22 minutes ago Up 22 minutes k8s_kube-scheduler.c164d8b1_kube-scheduler-radium-control_kube-system_87687297b5040798a1737ed4061b3dab_cd1a4525
0656dae45c34 gcr.io/google_containers/pause-amd64:3.0 "/pause" 22 minutes ago Up 22 minutes k8s_POD.d8dbe16c_kube-scheduler-radium-control_kube-system_87687297b5040798a1737ed4061b3dab_7fc6d0cb
010fca2aa9ea weaveworks/weave-npc:1.8.1 "/usr/bin/weave-npc" 56 minutes ago Exited (0) 24 minutes ago k8s_weave-npc.58d9497_weave-net-ge857_kube-system_f5251ff3-b392-11e6-a9de-001b78777574_45656cd2
af45cb766550 weaveworks/weave-kube:1.8.1 "/home/weave/launch.s" 57 minutes ago Exited (0) 24 minutes ago k8s_weave.92f5ac48_weave-net-ge857_kube-system_f5251ff3-b392-11e6-a9de-001b78777574_b627f7a9
dd864b73893b gcr.io/google_containers/pause-amd64:3.0 "/pause" 57 minutes ago Exited (0) 24 minutes ago k8s_POD.d8dbe16c_weave-net-ge857_kube-system_f5251ff3-b392-11e6-a9de-001b78777574_d18d6963
c58758f61ece gcr.io/google_containers/kube-proxy-amd64:v1.4.4 "kube-proxy --v=2 --k" About an hour ago Exited (0) 24 minutes ago k8s_kube-proxy.773bb601_kube-proxy-ucdmq_kube-system_4a7045e5-b392-11e6-a9de-001b78777574_c0672a94
d8f03c785fcd gcr.io/google_containers/pause-amd64:3.0 "/pause" About an hour ago Exited (0) 24 minutes ago k8s_POD.d8dbe16c_kube-proxy-ucdmq_kube-system_4a7045e5-b392-11e6-a9de-001b78777574_d6c09a7a
730300be084c gcr.io/google_containers/kube-discovery-amd64:1.0 "/usr/local/bin/kube-" About an hour ago Exited (0) 24 minutes ago k8s_kube-discovery.95f6cda5_kube-discovery-1150918428-y43bp_kube-system_49d67e85-b392-11e6-a9de-001b78777574_e86c70ed
c7787b36ac00 gcr.io/google_containers/pause-amd64:3.0 "/pause" About an hour ago Exited (0) 24 minutes ago k8s_POD.d8dbe16c_kube-discovery-1150918428-y43bp_kube-system_49d67e85-b392-11e6-a9de-001b78777574_bc686f73
716eb3f55c48 gcr.io/google_containers/pause-amd64:3.0 "/pause" About an hour ago Exited (0) 24 minutes ago k8s_dummy.3ba1b90_dummy-2088944543-scso2_kube-system_48c16d8c-b392-11e6-a9de-001b78777574_13b2ea07
fbf59341b61c gcr.io/google_containers/pause-amd64:3.0 "/pause" About an hour ago Exited (0) 24 minutes ago k8s_POD.d8dbe16c_dummy-2088944543-scso2_kube-system_48c16d8c-b392-11e6-a9de-001b78777574_6de04743
faf34c5a8871 gcr.io/google_containers/kube-controller-manager-amd64:v1.4.4 "kube-controller-mana" About an hour ago Exited (0) 24 minutes ago k8s_kube-controller-manager.edfea2a0_kube-controller-manager-radium-control_kube-system_aa642bd88d7c4f8636a7f3d6df731565_d6f31f7e
dc662a196d44 gcr.io/google_containers/kube-apiserver-amd64:v1.4.4 "kube-apiserver --v=2" About an hour ago Exited (0) 24 minutes ago k8s_kube-apiserver.bfb4d438_kube-apiserver-radium-control_kube-system_6bd1df9a370394cb83058fae4f9381dd_0eb00d1c
16c18aa7d375 gcr.io/google_containers/etcd-amd64:2.2.5 "etcd --listen-client" About an hour ago Exited (0) 24 minutes ago k8s_etcd.5a0e984b_etcd-radium-control_kube-system_a81a848a0bf7f0d38bc5f9b6b3a7140a_4a2fc553
362bd205e080 gcr.io/google_containers/pause-amd64:3.0 "/pause" About an hour ago Exited (0) 24 minutes ago k8s_POD.d8dbe16c_kube-controller-manager-radium-control_kube-system_aa642bd88d7c4f8636a7f3d6df731565_5e72e742
0d7cec328920 gcr.io/google_containers/pause-amd64:3.0 "/pause" About an hour ago Exited (0) 24 minutes ago k8s_POD.d8dbe16c_kube-apiserver-radium-control_kube-system_6bd1df9a370394cb83058fae4f9381dd_d774ffdf
6b6ab724f832 gcr.io/google_containers/pause-amd64:3.0 "/pause" About an hour ago Exited (0) 24 minutes ago k8s_POD.d8dbe16c_etcd-radium-control_kube-system_a81a848a0bf7f0d38bc5f9b6b3a7140a_f4a4fe87
f66e44480edb gcr.io/google_containers/kube-scheduler-amd64:v1.4.4 "kube-scheduler --v=2" About an hour ago Exited (0) 24 minutes ago k8s_kube-scheduler.c164d8b1_kube-scheduler-radium-control_kube-system_87687297b5040798a1737ed4061b3dab_81b91d53
99671aaf59c9 gcr.io/google_containers/pause-amd64:3.0 "/pause" About an hour ago Exited (0) 24 minutes ago k8s_POD.d8dbe16c_kube-scheduler-radium-control_kube-system_87687297b5040798a1737ed4061b3dab_0398d187
</code></pre></div>
<p dir="auto"><strong>What you expected to happen</strong>:<br>
I expected kubernetes to re-use the pods or at least clean up after itself.</p>
<p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):</p>
<ul dir="auto">
<li>Fresh install following <a href="http://kubernetes.io/docs/getting-started-guides/kubeadm/" rel="nofollow">http://kubernetes.io/docs/getting-started-guides/kubeadm/</a>.</li>
<li>Install weave net</li>
<li>reboot server</li>
</ul>
<p dir="auto"><strong>Anything else do we need to know</strong>:</p> | <p dir="auto">The <code class="notranslate">extensions</code> group isn't meant to be an incubator group, its intended to hold the things already in it, resources directly related, and <code class="notranslate">thirdpartyresource</code>. We've actually gone to some effort to migrate some types out: <code class="notranslate">HPA</code> and <code class="notranslate">Jobs</code> as a for instance.</p>
<p dir="auto">Different APIs want to move at different cadences and new resources should start off in an alpha version while they sort out what they really need during their implementation phases.</p>
<p dir="auto">We tagged an alpha of 1.4, but I think we should move these resources into their own group. I suspect they'll want new versions at a cadence to match the storage controllers, not a cadence locked to the rest of the <code class="notranslate">extensions</code> API.</p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/childsb/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/childsb">@childsb</a> @kubernetes/rh-cluster-infra @kubernetes/sig-api-machinery</p>
<p dir="auto">Assigned to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/lavalamp/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/lavalamp">@lavalamp</a> so he'll be sure to notice and weigh in here, not as a final destination.</p> | 0 |
<p dir="auto"><strong>System information</strong></p>
<ul dir="auto">
<li>Have I written custom code (as opposed to using a stock example script provided in TensorFlow): Stock example script.</li>
<li>OS Platform and Distribution (e.g., Linux Ubuntu 16.04): CentOS Linux release 7.6.1810 (Core)</li>
<li>Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: On my laptop,</li>
<li>TensorFlow installed from (source or binary): From source for c++ application.</li>
<li>TensorFlow version (use command below): v1.8.0</li>
<li>Python version: 2.7</li>
<li>Bazel version (if compiling from source): 0.15.1</li>
<li>GCC/Compiler version (if compiling from source): g++ (GCC) 4.8.5 20150623 (Red Hat 4.8.5-36)</li>
<li>CUDA/cuDNN version: CPU only</li>
<li>GPU model and memory: None.</li>
</ul>
<p dir="auto"><strong>Describe the current behavior</strong><br>
I have a <a href="https://medium.com/@tomdeore/standalone-c-build-tensorflow-opencv-6dc9d8a1412d" rel="nofollow">Standalone c++ build</a> process for ubuntu and it works fine with my own code as well as with the c++ <a href="https://www.tensorflow.org/guide/extend/cc" rel="nofollow">example code</a> on tensorflow.</p>
<p dir="auto">But when i run the same code on CentOS platform. I get following runtime error message and the executable core dumps:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2019-07-11 10:20:42.027023: F tensorflow/core/framework/function.cc:1329] Check failed: GetOpGradFactory()->insert({op, func}).second Duplicated gradient for MapAccumulate
Aborted (core dumped)"><pre class="notranslate"><code class="notranslate">2019-07-11 10:20:42.027023: F tensorflow/core/framework/function.cc:1329] Check failed: GetOpGradFactory()->insert({op, func}).second Duplicated gradient for MapAccumulate
Aborted (core dumped)
</code></pre></div>
<p dir="auto">My compilation command is as:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="g++ -std=gnu++11 -Wl,-rpath='$ORIGIN/lib' -fPIC -Iinclude -Llib example.cc -ltensorflow_cc -ltensorflow_framework -o example"><pre class="notranslate"><code class="notranslate">g++ -std=gnu++11 -Wl,-rpath='$ORIGIN/lib' -fPIC -Iinclude -Llib example.cc -ltensorflow_cc -ltensorflow_framework -o example
</code></pre></div>
<p dir="auto"><strong>Code to reproduce the issue</strong><br>
Provide a reproducible test case that is the bare minimum necessary to generate the problem.<br>
Please follow the steps provided on <a href="https://medium.com/@tomdeore/standalone-c-build-tensorflow-opencv-6dc9d8a1412d" rel="nofollow">blog</a>.</p> | <p dir="auto"><strong>System information</strong></p>
<ul dir="auto">
<li>OS Platform and Distribution : windows10</li>
<li>TensorFlow installed from : source</li>
<li>TensorFlow version: 1.11.0</li>
<li>Python version: Python 3.6.3 :: Anaconda custom (64-bit)</li>
<li>Installed using virtualenv? pip? conda?: conda</li>
<li>Bazel version (if compiling from source): 0.19.0 not from source</li>
</ul>
<p dir="auto">only cpu version.</p>
<p dir="auto">I followed the instruction from <a href="https://tensorflow.google.cn/install/source_windows#bazel_build" rel="nofollow">tensorflow official site.</a></p>
<p dir="auto">When I entered <code class="notranslate">bazel build --config=opt //tensorflow/tools/pip_package:build_pip_package</code><br>
An error occurred</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="WARNING: The following rc files are no longer being read, please transfer their contents or import their path into one of the standard rc files:
d:\tensorflow-1.11.0/.bazelrc
d:\tensorflow-1.11.0/tools/bazel.rc
ERROR: SymlinkDirectories(C:\Users\Administrator/_bazel_Administrator/install/46e308c2aba33f6ef6ad7b7f2c018098, c:\users\administrator\_bazel_administrator\buk4ctdf/install): CreateJunction:
FATAL: failed to create installation symlink 'c:\users\administrator\_bazel_administrator\buk4ctdf/install': success"><pre class="notranslate"><code class="notranslate">WARNING: The following rc files are no longer being read, please transfer their contents or import their path into one of the standard rc files:
d:\tensorflow-1.11.0/.bazelrc
d:\tensorflow-1.11.0/tools/bazel.rc
ERROR: SymlinkDirectories(C:\Users\Administrator/_bazel_Administrator/install/46e308c2aba33f6ef6ad7b7f2c018098, c:\users\administrator\_bazel_administrator\buk4ctdf/install): CreateJunction:
FATAL: failed to create installation symlink 'c:\users\administrator\_bazel_administrator\buk4ctdf/install': success
</code></pre></div> | 0 |
<p dir="auto">From the logs, it looks like the pod was determined to be <code class="notranslate">terminated</code> before it was started running. There are actually 2 issues here:</p>
<ol dir="auto">
<li>The pod was killed on the before it was started</li>
<li>After killing the pod, kubelet continued to download the image and attempted to bring up the container.</li>
</ol>
<p dir="auto">Relevant log snippets from <a href="https://pantheon.corp.google.com/m/cloudstorage/b/kubernetes-jenkins/o/pr-logs/3c72506f10986713974d403387a51ccf914e8dd3/kubernetes-pull-build-test-e2e-gce/22725/artifacts/104.197.180.217%3A22-kubelet.log" rel="nofollow">kubelet.log</a>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="I0107 20:55:17.628805 3397 manager.go:366] Status for pod "nginx-deployment-7txis-ge6lu_e2e-tests-deployment-jyfed(f3de47bb-b580-11e5-93b1-42010af00002)" updated successfully: {status:{Phase:Pending Conditions:[] Message: Reason: HostIP: PodIP: StartTime:0xc208bb1c60 ContainerStatuses:[]} version:1 podName:nginx-deployment-7txis-ge6lu podNamespace:e2e-tests-deployment-jyfed}
I0107 20:55:17.629165 3397 config.go:252] Setting pods for source api
I0107 20:55:17.738594 3397 config.go:252] Setting pods for source api
I0107 20:55:17.776348 3397 manager.go:377] Pod "nginx-deployment-7txis-ge6lu_e2e-tests-deployment-jyfed(f3de47bb-b580-11e5-93b1-42010af00002)" fully terminated and removed from etcd
I0107 20:55:17.791774 3397 server.go:563] Event(api.ObjectReference{Kind:"Pod", Namespace:"e2e-tests-deployment-mb56s", Name:"nginx-controller-yee2t", UID:"ea4a9603-b580-11e5-93b1-42010af00002", APIVersion:"v1", ResourceVersion:"1019", FieldPath:"spec.containers{nginx}"}): type: 'Normal' reason: 'Started' Started container with docker id 327d0a201fe8
I0107 20:55:17.792989 3397 kubelet.go:2338] SyncLoop (UPDATE, "api"): "nginx-deployment-7txis-ge6lu_e2e-tests-deployment-jyfed(f3de47bb-b580-11e5-93b1-42010af00002)"
I0107 20:55:17.793594 3397 config.go:252] Setting pods for source api
I0107 20:55:17.827530 3397 kubelet.go:2341] SyncLoop (REMOVE, "api"): "nginx-deployment-7txis-ge6lu_e2e-tests-deployment-jyfed(f3de47bb-b580-11e5-93b1-42010af00002)"
...
I0107 20:55:18.083187 3397 manager.go:802] Added container: "/55b4df411b855303ec4383bb23621a64e5ae0acfb8475e18c91ead73069b3af2" (aliases: [k8s_POD.6059dfa2_nginx-deployment-7txis-ge6lu_e2e-tests-deployment-jyfed_f3de47bb-b580-11e5-93b1-42010af00002_ba926a42 55b4df411b855303ec4383bb23621a64e5ae0acfb8475e18c91ead73069b3af2], namespace: "docker")
...
I0107 20:55:18.226164 3397 manager.go:857] Destroyed container: "/55b4df411b855303ec4383bb23621a64e5ae0acfb8475e18c91ead73069b3af2" (aliases: [k8s_POD.6059dfa2_nginx-deployment-7txis-ge6lu_e2e-tests-deployment-jyfed_f3de47bb-b580-11e5-93b1-42010af00002_ba926a42 55b4df411b855303ec4383bb23621a64e5ae0acfb8475e18c91ead73069b3af2], namespace: "docker")
...
I0107 20:55:18.794119 3397 volumes.go:214] Making a volume.Cleaner for volume kubernetes.io~secret/default-token-wjp6m of pod f3de47bb-b580-11e5-93b1-42010af00002
I0107 20:55:18.794143 3397 volumes.go:250] Used volume plugin "kubernetes.io/secret" for f3de47bb-b580-11e5-93b1-42010af00002/kubernetes.io~secret
I0107 20:55:18.794170 3397 kubelet.go:1909] volume "f3c0705a-b580-11e5-93b1-42010af00002/default-token-etatl", still has a container running "f3c0705a-b580-11e5-93b1-42010af00002", skipping teardown
W0107 20:55:18.794190 3397 kubelet.go:1914] Orphaned volume "f3de47bb-b580-11e5-93b1-42010af00002/default-token-wjp6m" found, tearing down volume
I0107 20:55:18.794222 3397 secret.go:202] Tearing down volume default-token-wjp6m for pod f3de47bb-b580-11e5-93b1-42010af00002 at /var/lib/kubelet/pods/f3de47bb-b580-11e5-93b1-42010af00002/volumes/kubernetes.io~secret/default-token-wjp6m
I0107 20:55:18.816071 3397 kubelet.go:1844] Orphaned pod "f3de47bb-b580-11e5-93b1-42010af00002" found, removing
...
E0107 20:55:19.907248 3397 manager.go:1889] Error running pod "nginx-deployment-7txis-ge6lu_e2e-tests-deployment-jyfed(f3de47bb-b580-11e5-93b1-42010af00002)" container "nginx": impossible: cannot find the mounted volumes for pod "nginx-deployment-7txis-ge6lu_e2e-tests-deployment-jyfed(f3de47bb-b580-11e5-93b1-42010af00002)"
I0107 20:55:19.907312 3397 kubelet.go:3112] Generating status for "nginx-deployment-7txis-ge6lu_e2e-tests-deployment-jyfed(f3de47bb-b580-11e5-93b1-42010af00002)"
I0107 20:55:19.907687 3397 server.go:563] Event(api.ObjectReference{Kind:"Pod", Namespace:"e2e-tests-deployment-jyfed", Name:"nginx-deployment-7txis-ge6lu", UID:"f3de47bb-b580-11e5-93b1-42010af00002", APIVersion:"v1", ResourceVersion:"2035", FieldPath:"spec.containers{nginx}"}): type: 'Normal' reason: 'Pulled' Successfully pulled image "nginx"
I0107 20:55:19.934736 3397 manager.go:339] Container inspect result: {ID:55b4df411b855303ec4383bb23621a64e5ae0acfb8475e18c91ead73069b3af2 Created:2016-01-07 20:55:16.836072085 +0000 UTC Path:/pause Args:[] Config:0xc209357040 State:{Running:false Paused:false Restarting:false OOMKilled:false Pid:0 ExitCode:0 Error: StartedAt:2016-01-07 20:55:17.82618655 +0000 UTC FinishedAt:2016-01-07 20:55:18.176860955 +0000 UTC} Image:8950680a606cf7a0b7916dbf4a435b35d28d75c705999847eddb5ed38eb53204 Node:<nil> NetworkSettings:0xc209604b00 SysInitPath: ResolvConfPath:/var/lib/docker/containers/55b4df411b855303ec4383bb23621a64e5ae0acfb8475e18c91ead73069b3af2/resolv.conf HostnamePath:/var/lib/docker/containers/55b4df411b855303ec4383bb23621a64e5ae0acfb8475e18c91ead73069b3af2/hostname HostsPath:/var/lib/docker/containers/55b4df411b855303ec4383bb23621a64e5ae0acfb8475e18c91ead73069b3af2/hosts LogPath:/var/lib/docker/containers/55b4df411b855303ec4383bb23621a64e5ae0acfb8475e18c91ead73069b3af2/55b4df411b855303ec4383bb23621a64e5ae0acfb8475e18c91ead73069b3af2-json.log Name:/k8s_POD.6059dfa2_nginx-deployment-7txis-ge6lu_e2e-tests-deployment-jyfed_f3de47bb-b580-11e5-93b1-42010af00002_ba926a42 Driver:aufs Mounts:[] Volumes:map[] VolumesRW:map[] HostConfig:0xc2082a8c80 ExecIDs:[] RestartCount:0 AppArmorProfile:}
E0107 20:55:19.934991 3397 pod_workers.go:125] Error syncing pod f3de47bb-b580-11e5-93b1-42010af00002, skipping: not all containers have started: 0 != 1
I0107 20:55:19.935295 3397 server.go:563] Event(api.ObjectReference{Kind:"Pod", Namespace:"e2e-tests-deployment-jyfed", Name:"nginx-deployment-7txis-ge6lu", UID:"f3de47bb-b580-11e5-93b1-42010af00002", APIVersion:"v1", ResourceVersion:"2035", FieldPath:""}): type: 'Warning' reason: 'FailedSync' Error syncing pod, skipping: not all containers have started: 0 != 1
I0107 20:55:20.023722 3397 manager.go:346] Pod "nginx-deployment-7txis-ge6lu" (f3de47bb-b580-11e5-93b1-42010af00002) does not exist on the server"><pre class="notranslate"><code class="notranslate">I0107 20:55:17.628805 3397 manager.go:366] Status for pod "nginx-deployment-7txis-ge6lu_e2e-tests-deployment-jyfed(f3de47bb-b580-11e5-93b1-42010af00002)" updated successfully: {status:{Phase:Pending Conditions:[] Message: Reason: HostIP: PodIP: StartTime:0xc208bb1c60 ContainerStatuses:[]} version:1 podName:nginx-deployment-7txis-ge6lu podNamespace:e2e-tests-deployment-jyfed}
I0107 20:55:17.629165 3397 config.go:252] Setting pods for source api
I0107 20:55:17.738594 3397 config.go:252] Setting pods for source api
I0107 20:55:17.776348 3397 manager.go:377] Pod "nginx-deployment-7txis-ge6lu_e2e-tests-deployment-jyfed(f3de47bb-b580-11e5-93b1-42010af00002)" fully terminated and removed from etcd
I0107 20:55:17.791774 3397 server.go:563] Event(api.ObjectReference{Kind:"Pod", Namespace:"e2e-tests-deployment-mb56s", Name:"nginx-controller-yee2t", UID:"ea4a9603-b580-11e5-93b1-42010af00002", APIVersion:"v1", ResourceVersion:"1019", FieldPath:"spec.containers{nginx}"}): type: 'Normal' reason: 'Started' Started container with docker id 327d0a201fe8
I0107 20:55:17.792989 3397 kubelet.go:2338] SyncLoop (UPDATE, "api"): "nginx-deployment-7txis-ge6lu_e2e-tests-deployment-jyfed(f3de47bb-b580-11e5-93b1-42010af00002)"
I0107 20:55:17.793594 3397 config.go:252] Setting pods for source api
I0107 20:55:17.827530 3397 kubelet.go:2341] SyncLoop (REMOVE, "api"): "nginx-deployment-7txis-ge6lu_e2e-tests-deployment-jyfed(f3de47bb-b580-11e5-93b1-42010af00002)"
...
I0107 20:55:18.083187 3397 manager.go:802] Added container: "/55b4df411b855303ec4383bb23621a64e5ae0acfb8475e18c91ead73069b3af2" (aliases: [k8s_POD.6059dfa2_nginx-deployment-7txis-ge6lu_e2e-tests-deployment-jyfed_f3de47bb-b580-11e5-93b1-42010af00002_ba926a42 55b4df411b855303ec4383bb23621a64e5ae0acfb8475e18c91ead73069b3af2], namespace: "docker")
...
I0107 20:55:18.226164 3397 manager.go:857] Destroyed container: "/55b4df411b855303ec4383bb23621a64e5ae0acfb8475e18c91ead73069b3af2" (aliases: [k8s_POD.6059dfa2_nginx-deployment-7txis-ge6lu_e2e-tests-deployment-jyfed_f3de47bb-b580-11e5-93b1-42010af00002_ba926a42 55b4df411b855303ec4383bb23621a64e5ae0acfb8475e18c91ead73069b3af2], namespace: "docker")
...
I0107 20:55:18.794119 3397 volumes.go:214] Making a volume.Cleaner for volume kubernetes.io~secret/default-token-wjp6m of pod f3de47bb-b580-11e5-93b1-42010af00002
I0107 20:55:18.794143 3397 volumes.go:250] Used volume plugin "kubernetes.io/secret" for f3de47bb-b580-11e5-93b1-42010af00002/kubernetes.io~secret
I0107 20:55:18.794170 3397 kubelet.go:1909] volume "f3c0705a-b580-11e5-93b1-42010af00002/default-token-etatl", still has a container running "f3c0705a-b580-11e5-93b1-42010af00002", skipping teardown
W0107 20:55:18.794190 3397 kubelet.go:1914] Orphaned volume "f3de47bb-b580-11e5-93b1-42010af00002/default-token-wjp6m" found, tearing down volume
I0107 20:55:18.794222 3397 secret.go:202] Tearing down volume default-token-wjp6m for pod f3de47bb-b580-11e5-93b1-42010af00002 at /var/lib/kubelet/pods/f3de47bb-b580-11e5-93b1-42010af00002/volumes/kubernetes.io~secret/default-token-wjp6m
I0107 20:55:18.816071 3397 kubelet.go:1844] Orphaned pod "f3de47bb-b580-11e5-93b1-42010af00002" found, removing
...
E0107 20:55:19.907248 3397 manager.go:1889] Error running pod "nginx-deployment-7txis-ge6lu_e2e-tests-deployment-jyfed(f3de47bb-b580-11e5-93b1-42010af00002)" container "nginx": impossible: cannot find the mounted volumes for pod "nginx-deployment-7txis-ge6lu_e2e-tests-deployment-jyfed(f3de47bb-b580-11e5-93b1-42010af00002)"
I0107 20:55:19.907312 3397 kubelet.go:3112] Generating status for "nginx-deployment-7txis-ge6lu_e2e-tests-deployment-jyfed(f3de47bb-b580-11e5-93b1-42010af00002)"
I0107 20:55:19.907687 3397 server.go:563] Event(api.ObjectReference{Kind:"Pod", Namespace:"e2e-tests-deployment-jyfed", Name:"nginx-deployment-7txis-ge6lu", UID:"f3de47bb-b580-11e5-93b1-42010af00002", APIVersion:"v1", ResourceVersion:"2035", FieldPath:"spec.containers{nginx}"}): type: 'Normal' reason: 'Pulled' Successfully pulled image "nginx"
I0107 20:55:19.934736 3397 manager.go:339] Container inspect result: {ID:55b4df411b855303ec4383bb23621a64e5ae0acfb8475e18c91ead73069b3af2 Created:2016-01-07 20:55:16.836072085 +0000 UTC Path:/pause Args:[] Config:0xc209357040 State:{Running:false Paused:false Restarting:false OOMKilled:false Pid:0 ExitCode:0 Error: StartedAt:2016-01-07 20:55:17.82618655 +0000 UTC FinishedAt:2016-01-07 20:55:18.176860955 +0000 UTC} Image:8950680a606cf7a0b7916dbf4a435b35d28d75c705999847eddb5ed38eb53204 Node:<nil> NetworkSettings:0xc209604b00 SysInitPath: ResolvConfPath:/var/lib/docker/containers/55b4df411b855303ec4383bb23621a64e5ae0acfb8475e18c91ead73069b3af2/resolv.conf HostnamePath:/var/lib/docker/containers/55b4df411b855303ec4383bb23621a64e5ae0acfb8475e18c91ead73069b3af2/hostname HostsPath:/var/lib/docker/containers/55b4df411b855303ec4383bb23621a64e5ae0acfb8475e18c91ead73069b3af2/hosts LogPath:/var/lib/docker/containers/55b4df411b855303ec4383bb23621a64e5ae0acfb8475e18c91ead73069b3af2/55b4df411b855303ec4383bb23621a64e5ae0acfb8475e18c91ead73069b3af2-json.log Name:/k8s_POD.6059dfa2_nginx-deployment-7txis-ge6lu_e2e-tests-deployment-jyfed_f3de47bb-b580-11e5-93b1-42010af00002_ba926a42 Driver:aufs Mounts:[] Volumes:map[] VolumesRW:map[] HostConfig:0xc2082a8c80 ExecIDs:[] RestartCount:0 AppArmorProfile:}
E0107 20:55:19.934991 3397 pod_workers.go:125] Error syncing pod f3de47bb-b580-11e5-93b1-42010af00002, skipping: not all containers have started: 0 != 1
I0107 20:55:19.935295 3397 server.go:563] Event(api.ObjectReference{Kind:"Pod", Namespace:"e2e-tests-deployment-jyfed", Name:"nginx-deployment-7txis-ge6lu", UID:"f3de47bb-b580-11e5-93b1-42010af00002", APIVersion:"v1", ResourceVersion:"2035", FieldPath:""}): type: 'Warning' reason: 'FailedSync' Error syncing pod, skipping: not all containers have started: 0 != 1
I0107 20:55:20.023722 3397 manager.go:346] Pod "nginx-deployment-7txis-ge6lu" (f3de47bb-b580-11e5-93b1-42010af00002) does not exist on the server
</code></pre></div>
<p dir="auto">If the timestamps are accurately synced, it looks like a DELETE request went through the API server before the kubelet even started to sync the pod. From <a href="https://pantheon.corp.google.com/m/cloudstorage/b/kubernetes-jenkins/o/pr-logs/3c72506f10986713974d403387a51ccf914e8dd3/kubernetes-pull-build-test-e2e-gce/22725/artifacts/23.236.58.56%3A22-kube-apiserver.log" rel="nofollow">kube-apiserver.log</a>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="I0107 20:55:15.764214 6 handlers.go:130] DELETE /api/v1/namespaces/e2e-tests-deployment-jyfed/pods/nginx-deployment-7txis-ge6lu: (39.143436ms) 200 [[kube-controller-manager/v1.2.0 (linux/amd64) kubernetes/762c4d1/replication-controller] 127.0.0.1:53073]"><pre class="notranslate"><code class="notranslate">I0107 20:55:15.764214 6 handlers.go:130] DELETE /api/v1/namespaces/e2e-tests-deployment-jyfed/pods/nginx-deployment-7txis-ge6lu: (39.143436ms) 200 [[kube-controller-manager/v1.2.0 (linux/amd64) kubernetes/762c4d1/replication-controller] 127.0.0.1:53073]
</code></pre></div>
<p dir="auto">Jenkins report: <a href="http://kubekins.dls.corp.google.com:8081/job/kubernetes-pull-build-test-e2e-gce/22725/" rel="nofollow">http://kubekins.dls.corp.google.com:8081/job/kubernetes-pull-build-test-e2e-gce/22725/</a><br>
Logs gist (incase jenkins results are removed): <a href="https://gist.github.com/timstclair/7a8b573c7d82c092a775">https://gist.github.com/timstclair/7a8b573c7d82c092a775</a></p>
<p dir="auto">/cc @kubernetes/goog-node @kubernetes/goog-control-plane</p> | <p dir="auto">Example failure:<br>
<a href="http://kubekins.dls.corp.google.com:8081/job/kubernetes-pull-build-test-e2e-gce/21458/" rel="nofollow">http://kubekins.dls.corp.google.com:8081/job/kubernetes-pull-build-test-e2e-gce/21458/</a></p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/nikhiljindal/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nikhiljindal">@nikhiljindal</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/janetkuo/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/janetkuo">@janetkuo</a></p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/nikhiljindal/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nikhiljindal">@nikhiljindal</a> - can you please take a look?</p> | 1 |
<p dir="auto">The PDF and CDF functions for the generalized Pareto distribution return nan for any quantile when the shape parameter is zero:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [54]: genpareto.pdf([0, 1, 2.5], 0.0)
Out[54]: array([ nan, nan, nan])
In [55]: genpareto.cdf([0, 1, 2.5], 0.0)
Out[55]: array([ nan, nan, nan])"><pre class="notranslate"><code class="notranslate">In [54]: genpareto.pdf([0, 1, 2.5], 0.0)
Out[54]: array([ nan, nan, nan])
In [55]: genpareto.cdf([0, 1, 2.5], 0.0)
Out[55]: array([ nan, nan, nan])
</code></pre></div>
<p dir="auto">When the shape is not zero, the standard CDF is <code class="notranslate">1 - (1 + c*z)**(-1/c)</code>, but when the shape is 0, the formula for the standard CDF is <code class="notranslate">1 - exp(-z)</code>. See the "Definition" section of <a href="http://en.wikipedia.org/wiki/Generalized_Pareto_distribution" rel="nofollow">http://en.wikipedia.org/wiki/Generalized_Pareto_distribution</a>. The current implementation doesn't handle this special case.</p>
<p dir="auto">The PDF function has the same problem: when the shape is 0, the standard PDF should be <code class="notranslate">exp(-z)</code>.</p> | <p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/scipy/ticket/768" rel="nofollow">http://projects.scipy.org/scipy/ticket/768</a> on 2008-10-31 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pbrod/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pbrod">@pbrod</a>, assigned to unknown.</em></p>
<p dir="auto">The generalized pareto cumulative distribution in standard form [1]_ is defined as:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="F(x;c) = 1-(1-c*x)**(1/c) for c>0 and c<0"><pre class="notranslate"><code class="notranslate">F(x;c) = 1-(1-c*x)**(1/c) for c>0 and c<0
</code></pre></div>
<p dir="auto">where c is the shape parameter.</p>
<p dir="auto">The limiting case as c->0 is the exponential cdf defined as</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="F(x;c=0) = 1-exp(-x)"><pre class="notranslate"><code class="notranslate">F(x;c=0) = 1-exp(-x)
</code></pre></div>
<p dir="auto">and is not implemented in the scipy.stats.distributions.genpareto distribution.</p>
<p dir="auto">To add this limiting case to scipy.stats.distributions.genpareto would<br>
greatly simplify statistical analysis. Through inference on the shape parameter, c, the data themselves determine the most approprate type of tailbehavior and there is no need for making subjective a priori judgement of which individual extremevalue family to adopt.</p>
<p dir="auto">.. [1] Stuart Coles (2000),<br>
"An Introduction to Statistical Modeling of Extreme Values"</p> | 1 |
<h3 dir="auto">Preflight Checklist</h3>
<ul dir="auto">
<li>[ X] I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li>[ X] 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>[ X] I have searched the issue tracker for an issue that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Issue Details</h3>
<ul dir="auto">
<li><strong>Electron Version:</strong>
<ul dir="auto">
<li>7.1.1</li>
</ul>
</li>
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>macOS 10.15.1, Windows 10 (1903)</li>
</ul>
</li>
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li>
</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">window.print() should print every time it is called</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">After the first printing operation, window.print() displays the print dialog, but does not produce any output; no printing, no saving as PDF, no opening in Preview, just nothing.</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto"><a href="https://gist.github.com/f10bd81922f43f0495">Gist</a></p>
<p dir="auto">Click "Print Me" twice.</p>
<p dir="auto">On the first click, the window is printed. On further clicks, the print dialog appears, but no output is generated.</p>
<h3 dir="auto">Screenshots</h3>
<h3 dir="auto">Additional Information</h3> | <h3 dir="auto">Preflight Checklist</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Issue Details</h3>
<ul dir="auto">
<li><strong>Electron Version:</strong><br>
Not working since v7.00.<br>
Tested on:
<ul dir="auto">
<li>v8.0.0-beta.4</li>
<li>v7.0.0</li>
</ul>
</li>
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>macOS 10.14.5</li>
</ul>
</li>
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li>v6.1.5</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">That the <code class="notranslate">window.print()</code> will work, even after the first time.<br>
Like in versions prior to v7.0.0</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">The <code class="notranslate">window.print()</code> function only works one time.<br>
After the first time, it's not working.<br>
The print dialog appears but the actual printing is not.</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">Run <code class="notranslate">window.print()</code> twice.<br>
On the Electron Fiddle app example, click on the Print Page and print.<br>
After that first time, click on the Print Page button again and try to print again.<br>
<a href="https://gist.github.com/ChenAlon/1d2253dc2c5ad1201370700cd200b0fa">Link to the Gist</a></p>
<h3 dir="auto">Screenshots</h3>
<p dir="auto"><a href="https://drive.google.com/file/d/1QfXvhPVGuNv6Zvdn9JkbHGgXAklx2F-N/view?usp=sharing" rel="nofollow">Link to video</a></p> | 1 |
<p dir="auto">When we open three stacked modals a stack problem due to the invocation of enforceFocus function in bootstrap-modal.js file.</p>
<p dir="auto">The following simple html code illustrate the issue.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<a href="#myModal" role="button" class="btn" data-toggle="modal">Launch demo modal</a>
<!-- Modal 1 -->
<div id="myModal" style="width: 700px;" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Modal header 1</h3>
</div>
<div class="modal-body">
<p>One fine body … 1</p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<a href="#myModal2" role="button" class="btn btn-primary" data-toggle="modal">Launch modal 2</a>
</div>
</div>
<!-- Modal 2 -->
<div id="myModal2" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Modal header 2</h3>
</div>
<div class="modal-body">
<p>One fine body … 2</p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<a href="#myModal3" role="button" class="btn btn-primary" data-toggle="modal">Launch modal 3</a>
</div>
</div>
<!-- Modal 3 -->
<div id="myModal3" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Modal header 3</h3>
</div>
<div class="modal-body">
<p>One fine body … 3</p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
</div>
</div>
<script src="jquery.js"></script>
<script src="bootstrap-modal.js"></script>
<script src="bootstrap-transition.js"></script>"><pre class="notranslate"><code class="notranslate"><a href="#myModal" role="button" class="btn" data-toggle="modal">Launch demo modal</a>
<!-- Modal 1 -->
<div id="myModal" style="width: 700px;" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Modal header 1</h3>
</div>
<div class="modal-body">
<p>One fine body … 1</p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<a href="#myModal2" role="button" class="btn btn-primary" data-toggle="modal">Launch modal 2</a>
</div>
</div>
<!-- Modal 2 -->
<div id="myModal2" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Modal header 2</h3>
</div>
<div class="modal-body">
<p>One fine body … 2</p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<a href="#myModal3" role="button" class="btn btn-primary" data-toggle="modal">Launch modal 3</a>
</div>
</div>
<!-- Modal 3 -->
<div id="myModal3" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Modal header 3</h3>
</div>
<div class="modal-body">
<p>One fine body … 3</p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
</div>
</div>
<script src="jquery.js"></script>
<script src="bootstrap-modal.js"></script>
<script src="bootstrap-transition.js"></script>
</code></pre></div> | <p dir="auto">Issue reproducible with: <a href="http://jsbin.com/otuduz/5/" rel="nofollow">http://jsbin.com/otuduz/5/</a></p>
<p dir="auto">Situation:<br>
When using a page involving multiple modals where focus goes from modal 1 -> item within modal 2 without returning to the page itself first an error or crash is recorded (browser dependent).</p>
<p dir="auto">In the above example a button is clicked to open one modal, then a button on that modal opens a 2nd modal. Clicking on the textarea of the 2nd modal causes and issue and possibly crash.</p>
<p dir="auto">The error can either be a Uncaught RangeError: Maximum call stack size exceeded or an in either case it seems that the issue is the enforceFocus method.</p>
<p dir="auto">On line 838:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" , enforceFocus: function () {
var that = this
$(document).on('focusin.modal', function (e) {
if (that.$element[0] !== e.target && !that.$element.has(e.target).length) {
that.$element.focus()
}
})
}"><pre class="notranslate"> <span class="pl-kos">,</span> enforceFocus: <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">var</span> <span class="pl-s1">that</span> <span class="pl-c1">=</span> <span class="pl-smi">this</span>
<span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-smi">document</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">'focusin.modal'</span><span class="pl-kos">,</span> <span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">e</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">that</span><span class="pl-kos">.</span><span class="pl-c1">$element</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-kos">]</span> <span class="pl-c1">!==</span> <span class="pl-s1">e</span><span class="pl-kos">.</span><span class="pl-c1">target</span> <span class="pl-c1">&&</span> <span class="pl-c1">!</span><span class="pl-s1">that</span><span class="pl-kos">.</span><span class="pl-c1">$element</span><span class="pl-kos">.</span><span class="pl-en">has</span><span class="pl-kos">(</span><span class="pl-s1">e</span><span class="pl-kos">.</span><span class="pl-c1">target</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">length</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">that</span><span class="pl-kos">.</span><span class="pl-c1">$element</span><span class="pl-kos">.</span><span class="pl-en">focus</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">I'm trying to write mixed C tensorflow code with python tensorflow code by<br>
embedding the CPython interpreter in my application.</p>
<p dir="auto">I'm mainly doing this because defining the model is only really possible in<br>
Python at the moment due to the lack of gradients (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="195080234" data-permission-text="Title is private" data-url="https://github.com/tensorflow/tensorflow/issues/6268" data-hovercard-type="issue" data-hovercard-url="/tensorflow/tensorflow/issues/6268/hovercard" href="https://github.com/tensorflow/tensorflow/issues/6268">#6268</a>), and I want to define<br>
new models from the C side at speed without needing to invoke or<br>
communicate to an external python process to get a new model.</p>
<p dir="auto">To reproduce the problem is quite straightforward, simply <code class="notranslate">import tensorflow</code><br>
in python after the libtensorflow library has already been dynamically linked.<br>
Here is a quick reproducer in pure python which will not run:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import ctypes
tf_dll = ctypes.CDLL("/usr/local/lib/libtensorflow.so")
import tensorflow"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">ctypes</span>
<span class="pl-s1">tf_dll</span> <span class="pl-c1">=</span> <span class="pl-s1">ctypes</span>.<span class="pl-v">CDLL</span>(<span class="pl-s">"/usr/local/lib/libtensorflow.so"</span>)
<span class="pl-k">import</span> <span class="pl-s1">tensorflow</span></pre></div>
<p dir="auto">libtensorflow can be obtained like so:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TF_TYPE=cpu # Set to gpu for GPU support
TF_OS=linux
curl -L \
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-${TF_OS}-x86_64-1.0.0.tar.gz" |
sudo tar -C /usr/local -xz"><pre class="notranslate"><code class="notranslate">TF_TYPE=cpu # Set to gpu for GPU support
TF_OS=linux
curl -L \
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-${TF_OS}-x86_64-1.0.0.tar.gz" |
sudo tar -C /usr/local -xz
</code></pre></div>
<p dir="auto">Here are two fatal messages I have encountered (the first from the Python reproducer above, the second from a C program):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="F tensorflow/stream_executor/cuda/cuda_platform.cc:180] Check failed: ::perftools::gputools::port::Status::OK() == (MultiPlatformManager::RegisterPlatform(std::move(platform))) (OK vs. Internal: platform is already registered with name: "CUDA")"><pre class="notranslate"><code class="notranslate">F tensorflow/stream_executor/cuda/cuda_platform.cc:180] Check failed: ::perftools::gputools::port::Status::OK() == (MultiPlatformManager::RegisterPlatform(std::move(platform))) (OK vs. Internal: platform is already registered with name: "CUDA")
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="F tensorflow/core/lib/monitoring/collection_registry.cc:77] Cannot register 2 metrics with the same name: /tensorflow/cc/saved_model/load_attempt_count"><pre class="notranslate"><code class="notranslate">F tensorflow/core/lib/monitoring/collection_registry.cc:77] Cannot register 2 metrics with the same name: /tensorflow/cc/saved_model/load_attempt_count
</code></pre></div>
<p dir="auto">I assume the problem is that the <code class="notranslate">_pywrap_tensorflow.so</code> has tensorflow<br>
statically linked into them, so they don't use libtensorflow. Then you have<br>
two shared libraries conflicting with one another.</p>
<p dir="auto">Is there a way to avoid this conflict?</p> | <p dir="auto">Notice that I'm not looking for a tutorial like <a href="https://github.com/jikexueyuanwiki/tensorflow-zh/blob/master/SOURCE/how_tos/adding_an_op/index.md">this</a>.<br>
<strong>What I'm trying to do</strong></p>
<p dir="auto">I'm new to C++ and bazel and I want to make some change on the convolution operation in tensorflow, so I decide that my first step is to create an ops just like it.</p>
<p dir="auto"><strong>What I have done</strong></p>
<p dir="auto">I copied conv_ops.cc from //tensorflow/core/kernels and change the name of the ops registrated in my new_conv_ops.cc. I also changed some name of the functions in the file to avoid duplication. And here is my BUILD file.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/9963412/16803076/c495f610-4936-11e6-9e28-9aa27dd55e4d.png"><img src="https://cloud.githubusercontent.com/assets/9963412/16803076/c495f610-4936-11e6-9e28-9aa27dd55e4d.png" alt="qq 20160713201655" style="max-width: 100%;"></a></p>
<p dir="auto">As you can see, I copy the deps attributes of conv_ops from //tensorflow/core/kernels/BUILD. Then I use "bazel build -c opt //tensorflow/core/user_ops:new_conv_ops.so" to build the new op.</p>
<p dir="auto"><strong>What my problem is</strong></p>
<p dir="auto">Then I got this error.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/9963412/16803048/9b960250-4936-11e6-90ab-7e7cd3b81b96.png"><img src="https://cloud.githubusercontent.com/assets/9963412/16803048/9b960250-4936-11e6-90ab-7e7cd3b81b96.png" alt="" style="max-width: 100%;"></a></p>
<p dir="auto">I tried to delete bounds_check and got same error for the next deps. Then I realize that there is some problem for including h files in //tensorflow/core/kernels from //tensorflow/core/user_ops. So how can I perfectely create a new op excatcly like conv_ops?</p>
<hr> | 0 |
<p dir="auto">This error happens when training several models in a for loop:</p>
<p dir="auto"><code class="notranslate">W tensorflow/core/common_runtime/executor.cc:1076] 0x18ef02bb0 W tensorflow/core/common_runtime/executor.cc:1076] 0x18ef02bb0 Compute status: Resource exhausted: OOM when allocating tensor with shape [[Node: sub_2518 = Sub[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/gpu:0"](sub_2518/x, Variable_1955/read)]] Traceback (most recent call last): File "/media/konet/01D15611945D72C0/Pycharm_ubuntu/deep_neural_network_binary/dnn_127_models_binary.py", line 398, in <module> fited = model.fit(Xtrain, ytrain, nb_epoch=n_epochs, batch_size=batch_size, show_accuracy=True, shuffle=True, validation_split=0.35) File "/usr/local/lib/python2.7/dist-packages/keras/models.py", line 581, in fit shuffle=shuffle, metrics=metrics) File "/usr/local/lib/python2.7/dist-packages/keras/models.py", line 239, in _fit outs = f(ins_batch) File "/usr/local/lib/python2.7/dist-packages/keras/backend/tensorflow_backend.py", line 336, in __call__ updated = session.run(self.outputs + self.updates, feed_dict=feed_dict) File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/client/session.py", line 368, in run results = self._do_run(target_list, unique_fetch_targets, feed_dict_string) File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/client/session.py", line 444, in _do_run e.code) tensorflow.python.framework.errors.ResourceExhaustedError: OOM when allocating tensor with shapedim { size: 3200 } dim { size: 2000 } [[Node: mul_4305 = Mul[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/gpu:0"](Variable_1954/read, Variable_1956/read)]] [[Node: add_3103/_9711 = _Recv[client_terminated=false, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/gpu:0", send_device_incarnation=1, tensor_name="edge_423_add_3103", tensor_type=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"]()]] Caused by op u'mul_4305', defined at: File "/media/konet/01D15611945D72C0/Pycharm_ubuntu/deep_neural_network_binary/dnn_127_models_binary.py", line 387, in <module> model.compile(loss='binary_crossentropy', optimizer='adam', class_mode='binary') File "/usr/local/lib/python2.7/dist-packages/keras/models.py", line 440, in compile train_loss) File "/usr/local/lib/python2.7/dist-packages/keras/optimizers.py", line 262, in get_updates m_t = (self.beta_1 * m) + (1 - self.beta_1) * g File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/ops/variables.py", line 452, in <lambda> setattr(Variable, operator, lambda a, b: Variable._RunOp(operator, a, b)) File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/ops/variables.py", line 467, in _RunOp return getattr(ops.Tensor, operator)(a._AsTensor(), b) File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/ops/math_ops.py", line 426, in binary_op_wrapper return func(x, y, name=name) File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/ops/gen_math_ops.py", line 728, in mul return _op_def_lib.apply_op("Mul", x=x, y=y, name=name) File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/ops/op_def_library.py", line 664, in apply_op op_def=op_def) File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/framework/ops.py", line 1834, in create_op original_op=self._default_original_op, op_def=op_def) File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/framework/ops.py", line 1043, in __init__ self._traceback = _extract_stack() : OOM when allocating tensor with shape [[Node: sub_2518 = Sub[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/gpu:0"](sub_2518/x, Variable_1955/read)]] Traceback (most recent call last): File "/media/konet/01D15611945D72C0/Pycharm_ubuntu/deep_neural_network_binary/dnn_127_models_binary.py", line 398, in <module> fited = model.fit(Xtrain, ytrain, nb_epoch=n_epochs, batch_size=batch_size, show_accuracy=True, shuffle=True, validation_split=0.35) File "/usr/local/lib/python2.7/dist-packages/keras/models.py", line 581, in fit shuffle=shuffle, metrics=metrics) File "/usr/local/lib/python2.7/dist-packages/keras/models.py", line 239, in _fit outs = f(ins_batch) File "/usr/local/lib/python2.7/dist-packages/keras/backend/tensorflow_backend.py", line 336, in __call__ updated = session.run(self.outputs + self.updates, feed_dict=feed_dict) File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/client/session.py", line 368, in run results = self._do_run(target_list, unique_fetch_targets, feed_dict_string) File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/client/session.py", line 444, in _do_run e.code) tensorflow.python.framework.errors.ResourceExhaustedError: OOM when allocating tensor with shapedim { size: 3200 } dim { size: 2000 } [[Node: mul_4305 = Mul[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/gpu:0"](Variable_1954/read, Variable_1956/read)]] [[Node: add_3103/_9711 = _Recv[client_terminated=false, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/gpu:0", send_device_incarnation=1, tensor_name="edge_423_add_3103", tensor_type=DT_FLOAT, _device="/job:localhost/replica:0/task:0/cpu:0"]()]] Caused by op u'mul_4305', defined at: File "/media/konet/01D15611945D72C0/Pycharm_ubuntu/deep_neural_network_binary/dnn_127_models_binary.py", line 387, in <module> model.compile(loss='binary_crossentropy', optimizer='adam', class_mode='binary') File "/usr/local/lib/python2.7/dist-packages/keras/models.py", line 440, in compile train_loss) File "/usr/local/lib/python2.7/dist-packages/keras/optimizers.py", line 262, in get_updates m_t = (self.beta_1 * m) + (1 - self.beta_1) * g File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/ops/variables.py", line 452, in <lambda> setattr(Variable, operator, lambda a, b: Variable._RunOp(operator, a, b)) File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/ops/variables.py", line 467, in _RunOp return getattr(ops.Tensor, operator)(a._AsTensor(), b) File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/ops/math_ops.py", line 426, in binary_op_wrapper return func(x, y, name=name) File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/ops/gen_math_ops.py", line 728, in mul return _op_def_lib.apply_op("Mul", x=x, y=y, name=name) File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/ops/op_def_library.py", line 664, in apply_op op_def=op_def) File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/framework/ops.py", line 1834, in create_op original_op=self._default_original_op, op_def=op_def) File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/framework/ops.py", line 1043, in __init__ self._traceback = _extract_stack() </code></p>
<p dir="auto">Any advice on how to solve this?</p>
<p dir="auto">Thank you</p> | <p dir="auto"><strong>System information</strong></p>
<ul dir="auto">
<li>Have I written custom code: Yes</li>
<li>OS Platform and Distribution: Manjaro testing, x86_64</li>
<li>TensorFlow installed from (source or binary): pypi binary</li>
<li>TensorFlow version (use command below): v2.0.0-rc2-26-g64c3d38 2.0.0</li>
<li>Python version: 3.7.4</li>
</ul>
<p dir="auto"><strong>Describe the current behavior</strong><br>
TensorFlow returns duplicated regularisation losses for layers which hold references to regularised variables built in other layers.</p>
<p dir="auto"><strong>Describe the expected behavior</strong><br>
Return a single regularisation loss per variable.</p>
<p dir="auto"><strong>Code to reproduce the issue</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import tensorflow as tf
class A(tf.keras.layers.Layer):
def __init__(self, layer):
super(A, self).__init__()
self.layer = layer
def call(self, inputs):
return self.layer(inputs)
class B(tf.keras.layers.Layer):
def __init__(self):
super(B, self).__init__()
self.obj = tf.keras.layers.Dense(13, kernel_regularizer=tf.keras.regularizers.l1(5))
self.layerB = A(self.obj)
def call(self, inputs):
return self.layerB(inputs)
model = B()
output = model(tf.ones([5, 10]))
print(len(model.losses))"><pre class="notranslate"><code class="notranslate">import tensorflow as tf
class A(tf.keras.layers.Layer):
def __init__(self, layer):
super(A, self).__init__()
self.layer = layer
def call(self, inputs):
return self.layer(inputs)
class B(tf.keras.layers.Layer):
def __init__(self):
super(B, self).__init__()
self.obj = tf.keras.layers.Dense(13, kernel_regularizer=tf.keras.regularizers.l1(5))
self.layerB = A(self.obj)
def call(self, inputs):
return self.layerB(inputs)
model = B()
output = model(tf.ones([5, 10]))
print(len(model.losses))
</code></pre></div>
<p dir="auto">Once we rename self.obj to obj, i.e. not saving it as a class member, we end up with a single regularisation loss.</p>
<p dir="auto"><strong>Other info / logs</strong><br>
More info and logs in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="503574506" data-permission-text="Title is private" data-url="https://github.com/tensorflow/addons/issues/577" data-hovercard-type="issue" data-hovercard-url="/tensorflow/addons/issues/577/hovercard" href="https://github.com/tensorflow/addons/issues/577">tensorflow/addons#577</a><br>
Plus <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/guillaumekln/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/guillaumekln">@guillaumekln</a> 's response <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="503574506" data-permission-text="Title is private" data-url="https://github.com/tensorflow/addons/issues/577" data-hovercard-type="issue" data-hovercard-url="/tensorflow/addons/issues/577/hovercard?comment_id=539530375&comment_type=issue_comment" href="https://github.com/tensorflow/addons/issues/577#issuecomment-539530375">tensorflow/addons#577 (comment)</a></p> | 0 |
<p dir="auto">Recently I found this piece of code inside bootstrap 3 releases.<br>
This can be a problem for those trying to override css styling on print.<br>
Does anyone have any proposal to fix it?</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="@media print {
* {
color: #000 !important;
text-shadow: none !important;
background: transparent !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
}
}"><pre class="notranslate"><code class="notranslate">@media print {
* {
color: #000 !important;
text-shadow: none !important;
background: transparent !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
}
}
</code></pre></div>
<p dir="auto">Eventually a css sheet dedicated to print would be better.</p>
<p dir="auto">This problem is reported here too : <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="37078862" data-permission-text="Title is private" data-url="https://github.com/twbs/bootstrap/issues/14031" data-hovercard-type="issue" data-hovercard-url="/twbs/bootstrap/issues/14031/hovercard" href="https://github.com/twbs/bootstrap/issues/14031">#14031</a></p> | <p dir="auto">default print media query adds an aggressive * style with !important to it. This makes it impossible to have a print version of the page without manually deleting the media query.<br>
Bootstrap should not make any assumptions about the desired print view of the site.<br>
[should be labeled under "meta"]</p> | 1 |
<p dir="auto"><strong>Description</strong><br>
Hi folks.<br>
Forgive me if this is already possible but I didn't see in the values.yaml file a clear way to specify multiple git repos as sources for dags. If this is possible already great!</p>
<p dir="auto"><strong>Use case / motivation</strong><br>
The use case is when we have teams working on different projects but want a single airflow instance to manage the dags, we'd like to have separate repos for those projects.</p>
<p dir="auto">Check this out; <a href="https://github.com/bitnami/charts/blob/master/bitnami/airflow/values.yaml#L725">https://github.com/bitnami/charts/blob/master/bitnami/airflow/values.yaml#L725</a></p>
<p dir="auto"><strong>Are you willing to submit a PR?</strong><br>
Possibly yes, If I'm feeling brave. Honestly out of my depth atm.</p>
<p dir="auto"><strong>Related Issues</strong></p> | <p dir="auto"><strong>Description</strong></p>
<p dir="auto">Git sync feature with multiple git repositories</p>
<p dir="auto"><strong>Use case / motivation</strong></p>
<p dir="auto">We have a use case where multiple tenants create DAGs and they dont work with common git repository. Its a security issue if we share one customer info with other</p>
<p dir="auto"><strong>What do you want to happen?</strong></p>
<p dir="auto">Airflow should support git-sync of DAG's from multiple git repositories</p>
<p dir="auto"><strong>Are you willing to submit a PR?</strong></p>
<p dir="auto">No</p>
<p dir="auto"><strong>Related Issues</strong><br>
No</p> | 1 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=adam.causey" rel="nofollow">Adam Causey</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-7959?redirect=false" rel="nofollow">SPR-7959</a></strong> and commented</p>
<p dir="auto">The class org.springframework.web.servlet.view.document.AbstractPdfView references the iText PDF library using the package com.lowagie.<strong>. The most recent version of iText uses the package com.itextpdf.</strong> instead of com.lowagie.</p>
<p dir="auto">The current workaround is to use an older version of iText, but it would be nice to have this updated.</p>
<p dir="auto">Thanks.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.0.5</p>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398106558" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12083" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12083/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12083">#12083</a> Update the AbstractPdfView class to point to the renamed itextpdf package names (<em><strong>"is duplicated by"</strong></em>)</li>
</ul>
<p dir="auto">1 votes, 4 watchers</p> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=leok" rel="nofollow">Leo Kim</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-5360?redirect=false" rel="nofollow">SPR-5360</a></strong> and commented</p>
<p dir="auto">I actually wrote to the Wicket mailing list initially about this:<br>
<a href="http://www.nabble.com/SpringBeanLocator-and-%40SpringBean-performance-issue-td20964687.html" rel="nofollow">http://www.nabble.com/SpringBeanLocator-and-%40SpringBean-performance-issue-td20964687.html</a></p>
<p dir="auto">and they suggest that this is a deeper Spring issue. Basically, I'm using Wicket's <code class="notranslate">@SpringBean</code> annotation to inject beans throughout our webapp. When we load tested the app, we found threads blocking for extended periods at this particular point:</p>
<p dir="auto">Object blocked: 145.133 ms, Object wait: 0 ms, CPU wait: 2.118 ms, I/O wait: 9.017 ms, CPU: 73.847 ms</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="* org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton (DefaultSingletonBeanRegistry.java:180, bci=22, server compiler)
o blocked on java.util.concurrent.ConcurrentHashMap (0x000000cd67f9d170)
* org.springframework.beans.factory.support.AbstractBeanFactory.isTypeMatch (AbstractBeanFactory.java:415, bci=41, server compiler)
* org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanNamesForType (DefaultListableBeanFactory.java:223, bci=142, server compiler)
* org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanNamesForType (DefaultListableBeanFactory.java:202, bci=4, server compiler)
* org.springframework.context.support.AbstractApplicationContext.getBeanNamesForType (AbstractApplicationContext.java:933, bci=5, server compiler)
* org.springframework.beans.factory.BeanFactoryUtils.beanNamesForTypeIncludingAncestors (BeanFactoryUtils.java:143, bci=8, server compiler)
* org.apache.wicket.spring.SpringBeanLocator.getBeanNameOfClass (SpringBeanLocator.java:104, bci=2, server compiler)
* org.apache.wicket.spring.SpringBeanLocator.getBeanName (SpringBeanLocator.java:192, bci=29, server compiler)
* org.apache.wicket.spring.SpringBeanLocator.isSingletonBean (SpringBeanLocator.java:133, bci=13, server compiler)
* org.apache.wicket.spring.injection.annot.AnnotProxyFieldValueFactory.getFieldValue (AnnotProxyFieldValueFactory.java:90, bci=46, server compiler)
* org.apache.wicket.injection.Injector.inject (Injector.java:108, bci=87, server compiler)
* org.apache.wicket.injection.ConfigurableInjector.inject (ConfigurableInjector.java:39, bci=6, server compiler)
* org.apache.wicket.injection.ComponentInjector.onInstantiation (ComponentInjector.java:52, bci=5, server compiler)
* org.apache.wicket.Application.notifyComponentInstantiationListeners (Application.java:974, bci=20, server compiler)
* org.apache.wicket.Component.<init> (Component.java:873, bci=35, server compiler)
* org.apache.wicket.MarkupContainer.<init> (MarkupContainer.java:105, bci=2, server compiler)
* org.apache.wicket.markup.html.WebMarkupContainer.<init> (WebMarkupContainer.java:39, bci=2, server compiler)
* org.apache.wicket.markup.html.WebMarkupContainerWithAssociatedMarkup.<init> (WebMarkupContainerWithAssociatedMarkup.java:42, bci=2, server compiler)
* org.apache.wicket.markup.html.panel.Panel.<init> (Panel.java:76, bci=2, server compiler)"><pre class="notranslate"><code class="notranslate">* org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton (DefaultSingletonBeanRegistry.java:180, bci=22, server compiler)
o blocked on java.util.concurrent.ConcurrentHashMap (0x000000cd67f9d170)
* org.springframework.beans.factory.support.AbstractBeanFactory.isTypeMatch (AbstractBeanFactory.java:415, bci=41, server compiler)
* org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanNamesForType (DefaultListableBeanFactory.java:223, bci=142, server compiler)
* org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanNamesForType (DefaultListableBeanFactory.java:202, bci=4, server compiler)
* org.springframework.context.support.AbstractApplicationContext.getBeanNamesForType (AbstractApplicationContext.java:933, bci=5, server compiler)
* org.springframework.beans.factory.BeanFactoryUtils.beanNamesForTypeIncludingAncestors (BeanFactoryUtils.java:143, bci=8, server compiler)
* org.apache.wicket.spring.SpringBeanLocator.getBeanNameOfClass (SpringBeanLocator.java:104, bci=2, server compiler)
* org.apache.wicket.spring.SpringBeanLocator.getBeanName (SpringBeanLocator.java:192, bci=29, server compiler)
* org.apache.wicket.spring.SpringBeanLocator.isSingletonBean (SpringBeanLocator.java:133, bci=13, server compiler)
* org.apache.wicket.spring.injection.annot.AnnotProxyFieldValueFactory.getFieldValue (AnnotProxyFieldValueFactory.java:90, bci=46, server compiler)
* org.apache.wicket.injection.Injector.inject (Injector.java:108, bci=87, server compiler)
* org.apache.wicket.injection.ConfigurableInjector.inject (ConfigurableInjector.java:39, bci=6, server compiler)
* org.apache.wicket.injection.ComponentInjector.onInstantiation (ComponentInjector.java:52, bci=5, server compiler)
* org.apache.wicket.Application.notifyComponentInstantiationListeners (Application.java:974, bci=20, server compiler)
* org.apache.wicket.Component.<init> (Component.java:873, bci=35, server compiler)
* org.apache.wicket.MarkupContainer.<init> (MarkupContainer.java:105, bci=2, server compiler)
* org.apache.wicket.markup.html.WebMarkupContainer.<init> (WebMarkupContainer.java:39, bci=2, server compiler)
* org.apache.wicket.markup.html.WebMarkupContainerWithAssociatedMarkup.<init> (WebMarkupContainerWithAssociatedMarkup.java:42, bci=2, server compiler)
* org.apache.wicket.markup.html.panel.Panel.<init> (Panel.java:76, bci=2, server compiler)
</code></pre></div>
<p dir="auto">[...snip...]</p>
<p dir="auto">We're able to hack around it in our code and avoid this bottleneck, which resulted in us getting 50-75% more requests per second. Looking at some of the Spring 3.0 code, it looks like this class has not changed much so we'll probably run into this problem when we upgrade. Is there a way to make this code path more concurrent? With Spring 3.0 using Java 5, it seems like the use of read/write locks might squeeze more concurrency out of these bean lookups.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 2.5.6</p>
<p dir="auto"><strong>Attachments:</strong></p>
<ul dir="auto">
<li><a href="https://jira.spring.io/secure/attachment/17089/NonBlockingWebApplicationContext.java" rel="nofollow">NonBlockingWebApplicationContext.java</a> (<em>4.05 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="398153593" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/14452" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/14452/hovercard" href="https://github.com/spring-projects/spring-framework/issues/14452">#14452</a> Non-singleton beans performance issue (<em><strong>"duplicates"</strong></em>)</li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398114987" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13410" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13410/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13410">#13410</a> Parallel bean initialization during startup</li>
</ul>
<p dir="auto">10 votes, 14 watchers</p> | 0 |
<p dir="auto">Regarding the docs components with property <code class="notranslate">mdDown</code> should not be shown:</p>
<blockquote>
<p dir="auto">If true, screens this size and down will be hidden.</p>
</blockquote>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/mui-org/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<p dir="auto">maybe related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="257217280" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/8172" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/8172/hovercard" href="https://github.com/mui/material-ui/issues/8172">#8172</a> and <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="226023868" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/6767" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/6767/hovercard" href="https://github.com/mui/material-ui/issues/6767">#6767</a></p>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto"><code class="notranslate"><Hidden mdDown></code> components must not be displayed when <code class="notranslate">withStyles()</code> returns <code class="notranslate">width: "md"</code></p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">Content is shown.<br>
Neither Safari's nor Chrome's "inspect" shows that the media query for class MuiHiddenCss-mdDown is matched.</p>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<p dir="auto"><a href="https://codesandbox.io/s/7wlyw4y8m0" rel="nofollow">https://codesandbox.io/s/7wlyw4y8m0</a></p>
<ol dir="auto">
<li>change window size in project view</li>
</ol>
<h2 dir="auto">Your Environment</h2>
<table role="table">
<thead>
<tr>
<th>Tech</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>Material-UI</td>
<td>1.0.0-beta.2</td>
</tr>
<tr>
<td>React</td>
<td>16.2.0</td>
</tr>
<tr>
<td>browser</td>
<td>Safari 11.0.1, Chrome 64.0.3278.0</td>
</tr>
</tbody>
</table>
<p dir="auto">If you confirm that this is a bug, please give me a hint where to fix it.</p> | <h2 dir="auto">Problem Description</h2>
<p dir="auto">Hi guys,</p>
<p dir="auto">I have been having performance issues that might be related to transition.js dependencies of material-ui.<br>
I have a medium size SPA using redux.<br>
I believe that one of the most CPU consuming process of my app are the ones related with material-ui components.<br>
I don't know if this is a fixable issue, but I'm attaching a snapshot of my chrome cpu profile.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/b6d06a8115a43b5157be54f86c169fcbac30ac4fac7c5d488402bebff93dd0aa/68747470733a2f2f646f63732e676f6f676c652e636f6d2f75633f61757468757365723d302669643d304233462d526e366250756e6257574a47636c46695a334e42516a51266578706f72743d646f776e6c6f6164"><img src="https://camo.githubusercontent.com/b6d06a8115a43b5157be54f86c169fcbac30ac4fac7c5d488402bebff93dd0aa/68747470733a2f2f646f63732e676f6f676c652e636f6d2f75633f61757468757365723d302669643d304233462d526e366250756e6257574a47636c46695a334e42516a51266578706f72743d646f776e6c6f6164" alt="Snapshot" data-canonical-src="https://docs.google.com/uc?authuser=0&id=0B3F-Rn6bPunbWWJGclFiZ3NBQjQ&export=download" style="max-width: 100%;"></a></p>
<h2 dir="auto">Versions</h2>
<ul dir="auto">
<li>Material-UI: "material-ui": "^0.15.0-alpha.2"</li>
<li>React: "react": "^0.14.8"</li>
<li>Browser: Chrome Version 49.0.2623.110 (64-bit)</li>
</ul> | 0 |
<p dir="auto">The following code works:</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" pub fn new(delay: uint, callback: Box<FnMut() -> uint + 'a>, remove_on_drop: bool) -> Timer<'a> {
...
}"><pre class="notranslate"> <span class="pl-k">pub</span> <span class="pl-k">fn</span> <span class="pl-en">new</span><span class="pl-kos">(</span><span class="pl-s1">delay</span><span class="pl-kos">:</span> <span class="pl-smi">uint</span><span class="pl-kos">,</span> <span class="pl-s1">callback</span><span class="pl-kos">:</span> <span class="pl-smi">Box</span><span class="pl-kos"><</span><span class="pl-smi">FnMut</span><span class="pl-kos">(</span><span class="pl-kos">)</span> -> <span class="pl-smi">uint</span> + <span class="pl-c1">'</span><span class="pl-ent">a</span><span class="pl-kos">></span><span class="pl-kos">,</span> <span class="pl-s1">remove_on_drop</span><span class="pl-kos">:</span> <span class="pl-smi">bool</span><span class="pl-kos">)</span> -> <span class="pl-smi">Timer</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-kos">{</span>
..<span class="pl-kos">.</span><span class="pl-c1"></span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">But this doesn't:</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" pub fn new(delay: uint, callback: Box<(FnMut() -> uint) + 'a>, remove_on_drop: bool) -> Timer<'a> {
...
}"><pre class="notranslate"> <span class="pl-k">pub</span> <span class="pl-k">fn</span> <span class="pl-en">new</span><span class="pl-kos">(</span><span class="pl-s1">delay</span><span class="pl-kos">:</span> <span class="pl-smi">uint</span><span class="pl-kos">,</span> <span class="pl-s1">callback</span><span class="pl-kos">:</span> <span class="pl-smi">Box</span><span class="pl-kos"><</span><span class="pl-kos">(</span><span class="pl-smi">FnMut</span><span class="pl-kos">(</span><span class="pl-kos">)</span> -> <span class="pl-smi">uint</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-kos">,</span> <span class="pl-s1">remove_on_drop</span><span class="pl-kos">:</span> <span class="pl-smi">bool</span><span class="pl-kos">)</span> -> <span class="pl-smi">Timer</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-kos">{</span>
..<span class="pl-kos">.</span><span class="pl-c1"></span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto"><code class="notranslate">rustc</code> complains that</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="src/sdl2/timer.rs:33:43: 33:60 error: expected a path on the left-hand side of `+`, not `(FnMut() -> uint)` [E0178]
src/sdl2/timer.rs:33 pub fn new(delay: uint, callback: Box<(FnMut() -> uint) + 'a>, remove_on_drop: bool) -> Timer<'a> {
^~~~~~~~~~~~~~~~~
src/sdl2/timer.rs:33:43: 33:60 note: perhaps you forgot parentheses? (per RFC 438)
src/sdl2/timer.rs:33 pub fn new(delay: uint, callback: Box<(FnMut() -> uint) + 'a>, remove_on_drop: bool) -> Timer<'a> {
^~~~~~~~~~~~~~~~~"><pre class="notranslate"><code class="notranslate">src/sdl2/timer.rs:33:43: 33:60 error: expected a path on the left-hand side of `+`, not `(FnMut() -> uint)` [E0178]
src/sdl2/timer.rs:33 pub fn new(delay: uint, callback: Box<(FnMut() -> uint) + 'a>, remove_on_drop: bool) -> Timer<'a> {
^~~~~~~~~~~~~~~~~
src/sdl2/timer.rs:33:43: 33:60 note: perhaps you forgot parentheses? (per RFC 438)
src/sdl2/timer.rs:33 pub fn new(delay: uint, callback: Box<(FnMut() -> uint) + 'a>, remove_on_drop: bool) -> Timer<'a> {
^~~~~~~~~~~~~~~~~
</code></pre></div>
<p dir="auto">If I understand correctly the syntax is <code class="notranslate">trait + lifetime</code>, so I'd expect those parentheses to be fine (and imho they make the code more clear). The note about forgetting parentheses is also puzzling.</p> | <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="// Accepted while it should not.
type A = Box<(Trait1) + Trait2 + 'lifetime>;
// Correct syntax.
type A = Box<Trait1 + Trait2 + 'lifetime>;"><pre class="notranslate"><code class="notranslate">// Accepted while it should not.
type A = Box<(Trait1) + Trait2 + 'lifetime>;
// Correct syntax.
type A = Box<Trait1 + Trait2 + 'lifetime>;
</code></pre></div>
<p dir="auto">The syntax for object types is the same as for other bounds - <code class="notranslate">Bound + Bound + Bound + ....</code> and parentheses are not a part of bound syntax.</p>
<p dir="auto">This is a stable-stable regression, introduced in Rust 1.6 by <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="117203948" data-permission-text="Title is private" data-url="https://github.com/rust-lang/rust/issues/29870" data-hovercard-type="pull_request" data-hovercard-url="/rust-lang/rust/pull/29870/hovercard" href="https://github.com/rust-lang/rust/pull/29870">#29870</a>.<br>
cc <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="201734914" data-permission-text="Title is private" data-url="https://github.com/rust-lang/rust/issues/39169" data-hovercard-type="issue" data-hovercard-url="/rust-lang/rust/issues/39169/hovercard" href="https://github.com/rust-lang/rust/issues/39169">#39169</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="201822567" data-permission-text="Title is private" data-url="https://github.com/rust-lang/rust/issues/39179" data-hovercard-type="pull_request" data-hovercard-url="/rust-lang/rust/pull/39179/hovercard" href="https://github.com/rust-lang/rust/pull/39179">#39179</a></p>
<h4 dir="auto">Current status</h4>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="209623403" data-permission-text="Title is private" data-url="https://github.com/rust-lang/rust/issues/40043" data-hovercard-type="pull_request" data-hovercard-url="/rust-lang/rust/pull/40043/hovercard" href="https://github.com/rust-lang/rust/pull/40043">#40043</a> - <code class="notranslate">(Bound) + Bound + ....</code> is still parsed <del>, but with a warning. This is a "hardcoded" warning and not a lint, lints cannot be reported from <code class="notranslate">libsyntax</code></del>.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> PR ? turns this syntax into a hard error</li>
</ul> | 1 |
<h5 dir="auto">Description of the problem</h5>
<p dir="auto">Given the code below, only one request should be fired.</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="THREE.Cache.enabled = true
var fileLoader = new THREE.FileLoader();
fileLoader.load('foo.jpg'); // A
fileLoader.load('foo.jpg'); // B"><pre class="notranslate"><span class="pl-c1">THREE</span><span class="pl-kos">.</span><span class="pl-c1">Cache</span><span class="pl-kos">.</span><span class="pl-c1">enabled</span> <span class="pl-c1">=</span> <span class="pl-c1">true</span>
<span class="pl-k">var</span> <span class="pl-s1">fileLoader</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-c1">THREE</span><span class="pl-kos">.</span><span class="pl-c1">FileLoader</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">fileLoader</span><span class="pl-kos">.</span><span class="pl-en">load</span><span class="pl-kos">(</span><span class="pl-s">'foo.jpg'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// A</span>
<span class="pl-s1">fileLoader</span><span class="pl-kos">.</span><span class="pl-en">load</span><span class="pl-kos">(</span><span class="pl-s">'foo.jpg'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// B</span></pre></div>
<ol dir="auto">
<li><code class="notranslate">A</code> checks the cache and sees no pending requests.</li>
<li><code class="notranslate">A</code> makes the request and stores the pending request in the cache as a Promise. The Promise will resolve the file.</li>
<li><code class="notranslate">B</code> checks the cache and sees a pending request. <code class="notranslate">B</code> waits for the Promise to resolve the file.</li>
<li>The request finishes, and the Promise resolves.</li>
<li><code class="notranslate">A</code> and <code class="notranslate">B</code>, both waiting on the Promise, triggers their callbacks at the same time with the same file response.</li>
</ol>
<p dir="auto">I'd like to volunteer to work on this. In A-Frame, we often have been having to maintain a cache of promises to prevent duplicate requests. If it sounds reasonable, below are several possible implementations:</p>
<ol dir="auto">
<li>
<p dir="auto">Change THREE.Cache to store promises that resolve files, rather than directly storing files. I think this is the optimal solution because requests will always be asynchronous. This is sort of a breaking change, but three.js applications don't often enable the cache, or don't care about the internals of the cache.</p>
</li>
<li>
<p dir="auto">Create a separate cache object (<code class="notranslate">RequestCache</code>) for pending requests. The current Cache stays intact, but there is more logic to maintain both the pending and complete caches.</p>
</li>
<li>
<p dir="auto">Keep the pending request cache internal to the FileLoader. It'll just be a variable <code class="notranslate">var requestCache = {}</code>.</p>
</li>
</ol>
<p dir="auto">We'd also need a Promise polyfill. They're less than 1KB gzipped if that sounds fine.</p>
<h5 dir="auto">Three.js version</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Dev</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> r84</li>
</ul>
<h5 dir="auto">Browser</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> All of them</li>
</ul>
<h5 dir="auto">OS</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> All of them</li>
</ul>
<h5 dir="auto">Hardware Requirements (graphics card, VR Device, ...)</h5>
<p dir="auto">N/A</p> | <h5 dir="auto">Description of the problem</h5>
<p dir="auto">If a Hole in the form of one or more absarc/absellipse/arc/ellipse segments forming a full circle or ellipse is added to a 2D Shape and rendered as a ShapeBufferGeometry, this can wreck the Shape, anything from removing two triangles between one vertice in the outer Path and the three vertices around an absarc/absellipse/arc/ellipse start/end, to not rendering the Shape at all, depending on the Shape outer Path geometry. It gives the warning "THREE.ShapeUtils: Unable to triangulate polygon! in triangulate()". This does not happen if the Hole is a single closed bezierCurveTo or any other Curve segments, independent of what Curve segments make up the outer Path of the Shape. It does however give a warning for each Path start/end "THREE.ShapeUtils: Duplicate point".</p>
<p dir="auto">All vertices are correctly added to the geometry position attribute, but the problem seems to be with vertex indices, which are added oddly, incomplete or not at all, depending on the Shape outer Path. The fact that the glitch always seems to emanate around an absarc/absellipse/arc/ellipse start or end indicates that it may be the wrapping there working incorrectly. The actual reason seems to be that the start and end points at the angles 0 and 2 * Math.PI can become unequal, because Math.sin( 0 ) === 0 but Math.sin( 2 * Math.PI ) === -2.4492935982947064e-16, so the "duplicate" end point is not removed following an equal comparison (ShapeUtils.js line 38-40). In some cases, this still works, because rounding errors compensate for the sin error.</p>
<p dir="auto">There are several ways to solve this. The probably most correct one, to handle any kind of rounding errors, would be to replace the straightforward function</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Vector3.equals = function ( v ) {
return ( ( v.x === this.x ) && ( v.y === this.y ) && ( v.z === this.z ) );
}"><pre class="notranslate"><code class="notranslate">Vector3.equals = function ( v ) {
return ( ( v.x === this.x ) && ( v.y === this.y ) && ( v.z === this.z ) );
}
</code></pre></div>
<p dir="auto">with a more complex function similar to</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Vector3.approximates = function ( v, re ) {
// re = permitted relative error
return (
Math.abs( v.x - this.x ) / ( 1 + Math.abs( v.x ) + Math.abs( this.x ) ) <= re &&
Math.abs( v.y - this.y ) / ( 1 + Math.abs( v.y ) + Math.abs( this.y ) ) <= re &&
Math.abs( v.z - this.z ) / ( 1 + Math.abs( v.z ) + Math.abs( this.z ) ) <= re
);
}"><pre class="notranslate"><code class="notranslate">Vector3.approximates = function ( v, re ) {
// re = permitted relative error
return (
Math.abs( v.x - this.x ) / ( 1 + Math.abs( v.x ) + Math.abs( this.x ) ) <= re &&
Math.abs( v.y - this.y ) / ( 1 + Math.abs( v.y ) + Math.abs( this.y ) ) <= re &&
Math.abs( v.z - this.z ) / ( 1 + Math.abs( v.z ) + Math.abs( this.z ) ) <= re
);
}
</code></pre></div>
<p dir="auto">or a joined function, keeping (most of) the simplicity and speed in the simple case</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Vector3.equals = function ( v, re ) {
// re = permitted relative error, optional
if ( v.x === this.x && v.y === this.y && v.z === this.z )
return true;
if ( re === undefined || re <= 0 )
return false;
return (
Math.abs( v.x - this.x ) <= re * ( 1 + Math.abs( v.x ) + Math.abs( this.x ) ) &&
Math.abs( v.y - this.y ) <= re * ( 1 + Math.abs( v.y ) + Math.abs( this.y ) ) &&
Math.abs( v.z - this.z ) <= re * ( 1 + Math.abs( v.z ) + Math.abs( this.z ) )
);
}"><pre class="notranslate"><code class="notranslate">Vector3.equals = function ( v, re ) {
// re = permitted relative error, optional
if ( v.x === this.x && v.y === this.y && v.z === this.z )
return true;
if ( re === undefined || re <= 0 )
return false;
return (
Math.abs( v.x - this.x ) <= re * ( 1 + Math.abs( v.x ) + Math.abs( this.x ) ) &&
Math.abs( v.y - this.y ) <= re * ( 1 + Math.abs( v.y ) + Math.abs( this.y ) ) &&
Math.abs( v.z - this.z ) <= re * ( 1 + Math.abs( v.z ) + Math.abs( this.z ) )
);
}
</code></pre></div>
<p dir="auto">(edited function to handle origin position case and add joined function)</p>
<h5 dir="auto">Three.js version</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Dev</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> r89</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> ...</li>
</ul>
<h5 dir="auto">Browser</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> All of them</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Chrome</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Firefox</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Internet Explorer</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Safari</li>
</ul>
<h5 dir="auto">OS</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> All of them</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Windows</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> macOS</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Linux</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Android</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> iOS</li>
</ul>
<h5 dir="auto">Hardware Requirements (graphics card, VR Device, ...)</h5> | 0 |
<h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<ul dir="auto">
<li>core</li>
</ul>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.3.1.0
config file = /home/hpepejau/Desktop/MyProjects/ansible-role-hpe_serviceguard_lx/ansible.cfg
configured module search path = Default w/o overrides
python version = 2.7.13 (default, May 10 2017, 20:04:28) [GCC 6.3.1 20161221 (Red Hat 6.3.1-1)]
"><pre class="notranslate"><code class="notranslate">ansible 2.3.1.0
config file = /home/hpepejau/Desktop/MyProjects/ansible-role-hpe_serviceguard_lx/ansible.cfg
configured module search path = Default w/o overrides
python version = 2.7.13 (default, May 10 2017, 20:04:28) [GCC 6.3.1 20161221 (Red Hat 6.3.1-1)]
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<p dir="auto">N/A</p>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">Ansible is run on Fedora 25<br>
Inventory servers are RedHat 7</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">Using delegate_fact doesn't work when I have the connection to servers tunneled through SSH tunnel.</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<p dir="auto">Example hosts inventory</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[nodes]
10.2.55.2 ansible_user=root ansible_host=127.0.0.1 ansible_port=50035
10.2.55.3 ansible_user=root ansible_host=127.0.0.1 ansible_port=50036
[quorumserver]
10.2.55.66 ansible_user=root ansible_host=127.0.0.1 ansible_port=50034"><pre class="notranslate"><code class="notranslate">[nodes]
10.2.55.2 ansible_user=root ansible_host=127.0.0.1 ansible_port=50035
10.2.55.3 ansible_user=root ansible_host=127.0.0.1 ansible_port=50036
[quorumserver]
10.2.55.66 ansible_user=root ansible_host=127.0.0.1 ansible_port=50034
</code></pre></div>
<p dir="auto">Example playbook</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- hosts: nodes
tasks:
- name: Gather facts from QS (regardless of limit or tags)
setup: filter=ansible_distribution
delegate_to: "{{item}}"
delegate_facts: true
with_items: "{{groups['quorumserver']}}"
- debug: var=hostvars[groups['quorumserver'][0]].ansible_distribution"><pre class="notranslate"><code class="notranslate">- hosts: nodes
tasks:
- name: Gather facts from QS (regardless of limit or tags)
setup: filter=ansible_distribution
delegate_to: "{{item}}"
delegate_facts: true
with_items: "{{groups['quorumserver']}}"
- debug: var=hostvars[groups['quorumserver'][0]].ansible_distribution
</code></pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="PLAY [nodes] *******************************************************************
TASK [Gathering Facts] *********************************************************
ok: [10.2.55.3]
ok: [10.2.55.2]
TASK [Gather facts from QS (regardless of limit or tags)] *******************************************************************
ok: [10.2.55.2 -> 10.2.55.66]
ok: [10.2.55.3 -> 10.2.55.66]
TASK [debug] *******************************************************************
ok: [10.2.55.2] => {
"changed": false,
"hostvars[groups['quorumserver'][0]].ansible_distribution": "RedHat"
}
ok: [10.2.55.3] => {
"changed": false,
"hostvars[groups['quorumserver'][0]].ansible_distribution": "RedHat"
}"><pre class="notranslate"><code class="notranslate">PLAY [nodes] *******************************************************************
TASK [Gathering Facts] *********************************************************
ok: [10.2.55.3]
ok: [10.2.55.2]
TASK [Gather facts from QS (regardless of limit or tags)] *******************************************************************
ok: [10.2.55.2 -> 10.2.55.66]
ok: [10.2.55.3 -> 10.2.55.66]
TASK [debug] *******************************************************************
ok: [10.2.55.2] => {
"changed": false,
"hostvars[groups['quorumserver'][0]].ansible_distribution": "RedHat"
}
ok: [10.2.55.3] => {
"changed": false,
"hostvars[groups['quorumserver'][0]].ansible_distribution": "RedHat"
}
</code></pre></div>
<h5 dir="auto">ACTUAL RESULTS</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="PLAY [nodes] *******************************************************************
TASK [Gathering Facts] *********************************************************
ok: [10.2.55.2]
ok: [10.2.55.3]
TASK [Gather facts from QS (regardless of limit or tags)] **********************
ok: [10.2.55.3 -> 10.2.55.66] => (item=10.2.55.66)
ok: [10.2.55.2 -> 10.2.55.66] => (item=10.2.55.66)
TASK [debug] *******************************************************************
ok: [10.2.55.2] => {
"changed": false,
"hostvars[groups['quorumserver'][0]].ansible_distribution": "VARIABLE IS NOT DEFINED!"
}
ok: [10.2.55.3] => {
"changed": false,
"hostvars[groups['quorumserver'][0]].ansible_distribution": "VARIABLE IS NOT DEFINED!"
}"><pre class="notranslate"><code class="notranslate">PLAY [nodes] *******************************************************************
TASK [Gathering Facts] *********************************************************
ok: [10.2.55.2]
ok: [10.2.55.3]
TASK [Gather facts from QS (regardless of limit or tags)] **********************
ok: [10.2.55.3 -> 10.2.55.66] => (item=10.2.55.66)
ok: [10.2.55.2 -> 10.2.55.66] => (item=10.2.55.66)
TASK [debug] *******************************************************************
ok: [10.2.55.2] => {
"changed": false,
"hostvars[groups['quorumserver'][0]].ansible_distribution": "VARIABLE IS NOT DEFINED!"
}
ok: [10.2.55.3] => {
"changed": false,
"hostvars[groups['quorumserver'][0]].ansible_distribution": "VARIABLE IS NOT DEFINED!"
}
</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">ec2</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<p dir="auto">works:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ ansible --version
ansible 2.3.3.0
config file = /home/tessa/.ansible.cfg
configured module search path = Default w/o overrides
python version = 2.7.12 (default, Nov 20 2017, 18:23:56) [GCC 5.4.0 20160609]"><pre class="notranslate"><code class="notranslate">$ ansible --version
ansible 2.3.3.0
config file = /home/tessa/.ansible.cfg
configured module search path = Default w/o overrides
python version = 2.7.12 (default, Nov 20 2017, 18:23:56) [GCC 5.4.0 20160609]
</code></pre></div>
<p dir="auto">broken:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ ansible --version
ansible 2.4.2.0
config file = /home/tessa/.ansible.cfg
configured module search path = [u'/home/tessa/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /usr/local/lib/python2.7/dist-packages/ansible
executable location = /usr/local/bin/ansible
python version = 2.7.12 (default, Nov 20 2017, 18:23:56) [GCC 5.4.0 20160609]"><pre class="notranslate"><code class="notranslate">$ ansible --version
ansible 2.4.2.0
config file = /home/tessa/.ansible.cfg
configured module search path = [u'/home/tessa/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /usr/local/lib/python2.7/dist-packages/ansible
executable location = /usr/local/bin/ansible
python version = 2.7.12 (default, Nov 20 2017, 18:23:56) [GCC 5.4.0 20160609]
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<p dir="auto">N/A</p>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">Ubuntu 16.04 amd64 on ec2.</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">Discovered that using multiple count_tag entries + exact_count to prevent spinning up duplicate instances in ec2 no longer works in ansible 2.4.x, and that it'll just spin up a duplicates even when the tags match. Downgrading to ansible 2.3.x solves the problem.</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<p dir="auto">run the following task from localhost multiple times:</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="- ec2:
region: "us-west-2"
instance_tags:
Name: test
Prefix: dev
exact_count: 1
count_tag:
Name: test
Prefix: dev
key_name: "{{ ssh_key }}"
instance_type: t2.micro
image: ami-45224425
vpc_subnet_id: "{{ vpc_subnet_id }}"><pre class="notranslate">- <span class="pl-ent">ec2</span>:
<span class="pl-ent">region</span>: <span class="pl-s"><span class="pl-pds">"</span>us-west-2<span class="pl-pds">"</span></span>
<span class="pl-ent">instance_tags</span>:
<span class="pl-ent">Name</span>: <span class="pl-s">test</span>
<span class="pl-ent">Prefix</span>: <span class="pl-s">dev</span>
<span class="pl-ent">exact_count</span>: <span class="pl-c1">1</span>
<span class="pl-ent">count_tag</span>:
<span class="pl-ent">Name</span>: <span class="pl-s">test</span>
<span class="pl-ent">Prefix</span>: <span class="pl-s">dev</span>
<span class="pl-ent">key_name</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ ssh_key }}<span class="pl-pds">"</span></span>
<span class="pl-ent">instance_type</span>: <span class="pl-s">t2.micro</span>
<span class="pl-ent">image</span>: <span class="pl-s">ami-45224425</span>
<span class="pl-ent">vpc_subnet_id</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vpc_subnet_id }}</span></pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">only spin up one instance.</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<p dir="auto">spins up multiple instances.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TASK [aws_instances : ec2] ****************************************************************************************************************************************************************************************
task path: /home/tessa/ansible/roles/aws_instances/tasks/main.yml:2
Using module file /usr/local/lib/python2.7/dist-packages/ansible/modules/cloud/amazon/ec2.py
<127.0.0.1> ESTABLISH LOCAL CONNECTION FOR USER: tessa
<127.0.0.1> EXEC /bin/sh -c 'echo ~ && sleep 0'
<127.0.0.1> EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /home/tessa/.ansible/tmp/ansible-tmp-1515707342.82-54897923708400 `" && echo ansible-tmp-1515707342.82-54897923708400="` echo /home/tessa/.ansible/tmp/ansible-tmp-1515707342.82-54897923708400 `" ) && sleep 0'
<127.0.0.1> PUT /tmp/tmpPn7vWS TO /home/tessa/.ansible/tmp/ansible-tmp-1515707342.82-54897923708400/ec2.py
<127.0.0.1> EXEC /bin/sh -c 'chmod u+x /home/tessa/.ansible/tmp/ansible-tmp-1515707342.82-54897923708400/ /home/tessa/.ansible/tmp/ansible-tmp-1515707342.82-54897923708400/ec2.py && sleep 0'
<127.0.0.1> EXEC /bin/sh -c '/usr/bin/python /home/tessa/.ansible/tmp/ansible-tmp-1515707342.82-54897923708400/ec2.py; rm -rf "/home/tessa/.ansible/tmp/ansible-tmp-1515707342.82-54897923708400/" > /dev/null 2>&1 && sleep 0'
changed: [localhost] => {
"changed": true,
"instance_ids": [
"i-04992feeb756b46c5"
],
"instances": [
{
"ami_launch_index": "0",
"architecture": "x86_64",
"block_device_mapping": {
"/dev/sda1": {
"delete_on_termination": true,
"status": "attaching",
"volume_id": "vol-07a2b13e9a727b7cc"
}
},
"dns_name": "",
"ebs_optimized": false,
"groups": {
"sg-8b2faff0": "default"
},
"hypervisor": "xen",
"id": "i-04992feeb756b46c5",
"image_id": "ami-45224425",
"instance_type": "t2.micro",
"kernel": null,
"key_name": "ssh-key",
"launch_time": "2018-01-11T21:49:05.000Z",
"placement": "us-west-2c",
"private_dns_name": "ip-172-23-30-176.us-west-2.compute.internal",
"private_ip": "172.23.30.176",
"public_dns_name": "",
"public_ip": null,
"ramdisk": null,
"region": "us-west-2",
"root_device_name": "/dev/sda1",
"root_device_type": "ebs",
"state": "pending",
"state_code": 0,
"tags": {
"Name": "test",
"Prefix": "dev"
},
"tenancy": "default",
"virtualization_type": "hvm"
}
],
"invocation": {
"module_args": {
"assign_public_ip": false,
"aws_access_key": null,
"aws_secret_key": null,
"count": 1,
"count_tag": "{'Prefix': 'dev', 'Name': 'test'}",
"ebs_optimized": false,
"ec2_url": null,
"exact_count": 1,
"group": null,
"group_id": null,
"id": null,
"image": "ami-45224425",
"instance_ids": null,
"instance_initiated_shutdown_behavior": null,
"instance_profile_name": null,
"instance_tags": {
"Name": "test",
"Prefix": "dev"
},
"instance_type": "t2.micro",
"kernel": null,
"key_name": "bench-tools",
"monitoring": false,
"network_interfaces": null,
"placement_group": null,
"private_ip": null,
"profile": null,
"ramdisk": null,
"region": "us-west-2",
"security_token": null,
"source_dest_check": true,
"spot_launch_group": null,
"spot_price": null,
"spot_type": "one-time",
"spot_wait_timeout": "600",
"state": "present",
"tenancy": "default",
"termination_protection": null,
"user_data": null,
"validate_certs": true,
"volumes": null,
"vpc_subnet_id": "vpc_subnet_id",
"wait": false,
"wait_timeout": "300",
"zone": null
}
},
"tagged_instances": [
{
"ami_launch_index": "0",
"architecture": "x86_64",
"block_device_mapping": {
"/dev/sda1": {
"delete_on_termination": true,
"status": "attaching",
"volume_id": "vol-07a2b13e9a727b7cc"
}
},
"dns_name": "",
"ebs_optimized": false,
"groups": {
"sg-8b2faff0": "default"
},
"hypervisor": "xen",
"id": "i-04992feeb756b46c5",
"image_id": "ami-45224425",
"instance_type": "t2.micro",
"kernel": null,
"key_name": "bench-tools",
"launch_time": "2018-01-11T21:49:05.000Z",
"placement": "us-west-2c",
"private_dns_name": "ip-172-23-30-176.us-west-2.compute.internal",
"private_ip": "172.23.30.176",
"public_dns_name": "",
"public_ip": null,
"ramdisk": null,
"region": "us-west-2",
"root_device_name": "/dev/sda1",
"root_device_type": "ebs",
"state": "pending",
"state_code": 0,
"tags": {
"Name": "test",
"Prefix": "dev"
},
"tenancy": "default",
"virtualization_type": "hvm"
}
]
}"><pre class="notranslate"><code class="notranslate">TASK [aws_instances : ec2] ****************************************************************************************************************************************************************************************
task path: /home/tessa/ansible/roles/aws_instances/tasks/main.yml:2
Using module file /usr/local/lib/python2.7/dist-packages/ansible/modules/cloud/amazon/ec2.py
<127.0.0.1> ESTABLISH LOCAL CONNECTION FOR USER: tessa
<127.0.0.1> EXEC /bin/sh -c 'echo ~ && sleep 0'
<127.0.0.1> EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo /home/tessa/.ansible/tmp/ansible-tmp-1515707342.82-54897923708400 `" && echo ansible-tmp-1515707342.82-54897923708400="` echo /home/tessa/.ansible/tmp/ansible-tmp-1515707342.82-54897923708400 `" ) && sleep 0'
<127.0.0.1> PUT /tmp/tmpPn7vWS TO /home/tessa/.ansible/tmp/ansible-tmp-1515707342.82-54897923708400/ec2.py
<127.0.0.1> EXEC /bin/sh -c 'chmod u+x /home/tessa/.ansible/tmp/ansible-tmp-1515707342.82-54897923708400/ /home/tessa/.ansible/tmp/ansible-tmp-1515707342.82-54897923708400/ec2.py && sleep 0'
<127.0.0.1> EXEC /bin/sh -c '/usr/bin/python /home/tessa/.ansible/tmp/ansible-tmp-1515707342.82-54897923708400/ec2.py; rm -rf "/home/tessa/.ansible/tmp/ansible-tmp-1515707342.82-54897923708400/" > /dev/null 2>&1 && sleep 0'
changed: [localhost] => {
"changed": true,
"instance_ids": [
"i-04992feeb756b46c5"
],
"instances": [
{
"ami_launch_index": "0",
"architecture": "x86_64",
"block_device_mapping": {
"/dev/sda1": {
"delete_on_termination": true,
"status": "attaching",
"volume_id": "vol-07a2b13e9a727b7cc"
}
},
"dns_name": "",
"ebs_optimized": false,
"groups": {
"sg-8b2faff0": "default"
},
"hypervisor": "xen",
"id": "i-04992feeb756b46c5",
"image_id": "ami-45224425",
"instance_type": "t2.micro",
"kernel": null,
"key_name": "ssh-key",
"launch_time": "2018-01-11T21:49:05.000Z",
"placement": "us-west-2c",
"private_dns_name": "ip-172-23-30-176.us-west-2.compute.internal",
"private_ip": "172.23.30.176",
"public_dns_name": "",
"public_ip": null,
"ramdisk": null,
"region": "us-west-2",
"root_device_name": "/dev/sda1",
"root_device_type": "ebs",
"state": "pending",
"state_code": 0,
"tags": {
"Name": "test",
"Prefix": "dev"
},
"tenancy": "default",
"virtualization_type": "hvm"
}
],
"invocation": {
"module_args": {
"assign_public_ip": false,
"aws_access_key": null,
"aws_secret_key": null,
"count": 1,
"count_tag": "{'Prefix': 'dev', 'Name': 'test'}",
"ebs_optimized": false,
"ec2_url": null,
"exact_count": 1,
"group": null,
"group_id": null,
"id": null,
"image": "ami-45224425",
"instance_ids": null,
"instance_initiated_shutdown_behavior": null,
"instance_profile_name": null,
"instance_tags": {
"Name": "test",
"Prefix": "dev"
},
"instance_type": "t2.micro",
"kernel": null,
"key_name": "bench-tools",
"monitoring": false,
"network_interfaces": null,
"placement_group": null,
"private_ip": null,
"profile": null,
"ramdisk": null,
"region": "us-west-2",
"security_token": null,
"source_dest_check": true,
"spot_launch_group": null,
"spot_price": null,
"spot_type": "one-time",
"spot_wait_timeout": "600",
"state": "present",
"tenancy": "default",
"termination_protection": null,
"user_data": null,
"validate_certs": true,
"volumes": null,
"vpc_subnet_id": "vpc_subnet_id",
"wait": false,
"wait_timeout": "300",
"zone": null
}
},
"tagged_instances": [
{
"ami_launch_index": "0",
"architecture": "x86_64",
"block_device_mapping": {
"/dev/sda1": {
"delete_on_termination": true,
"status": "attaching",
"volume_id": "vol-07a2b13e9a727b7cc"
}
},
"dns_name": "",
"ebs_optimized": false,
"groups": {
"sg-8b2faff0": "default"
},
"hypervisor": "xen",
"id": "i-04992feeb756b46c5",
"image_id": "ami-45224425",
"instance_type": "t2.micro",
"kernel": null,
"key_name": "bench-tools",
"launch_time": "2018-01-11T21:49:05.000Z",
"placement": "us-west-2c",
"private_dns_name": "ip-172-23-30-176.us-west-2.compute.internal",
"private_ip": "172.23.30.176",
"public_dns_name": "",
"public_ip": null,
"ramdisk": null,
"region": "us-west-2",
"root_device_name": "/dev/sda1",
"root_device_type": "ebs",
"state": "pending",
"state_code": 0,
"tags": {
"Name": "test",
"Prefix": "dev"
},
"tenancy": "default",
"virtualization_type": "hvm"
}
]
}
</code></pre></div> | 0 |
<h2 dir="auto"><g-emoji class="g-emoji" alias="information_source" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2139.png">ℹ</g-emoji> Computer information</h2>
<ul dir="auto">
<li>Windows build number: 19041.388</li>
<li>PowerToys version: v0.20.0 (without admin permission)</li>
<li>PowerToy module: -</li>
</ul>
<h2 dir="auto"><g-emoji class="g-emoji" alias="memo" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4dd.png">📝</g-emoji> Provide detailed reproduction steps (if any)</h2>
<p dir="auto">Run app.<br>
After app crash/restart everything works ok.</p>
<h3 dir="auto">✔️ Expected result</h3>
<p dir="auto">PowerToys starts with system</p>
<h3 dir="auto">❌ Actual result</h3>
<p dir="auto">PT Run got an error.</p>
<p dir="auto">Log: <a href="https://github.com/microsoft/PowerToys/files/5030471/2020-08-05.txt">2020-08-05.txt</a></p>
<p dir="auto">Exception:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Version: 1.0.0
OS Version: Microsoft Windows NT 10.0.19041.0
IntPtr Length: 8
x64: True
Date: 08/05/2020 20:29:58
Exception:
System.ObjectDisposedException: Cannot access a disposed object.
Object name: 'Timer'.
at System.Timers.Timer.set_Enabled(Boolean value)
at System.Timers.Timer.Start()
at PowerLauncher.MainWindow.OnVisibilityChanged(Object sender, DependencyPropertyChangedEventArgs e)
at System.Windows.UIElement.RaiseDependencyPropertyChanged(EventPrivateKey key, DependencyPropertyChangedEventArgs args)
at System.Windows.UIElement.OnIsVisibleChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
at System.Windows.DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs e)
at System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs e)
at System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)
at System.Windows.UIElement.UpdateIsVisibleCache()
at System.Windows.PresentationSource.RootChanged(Visual oldRoot, Visual newRoot)
at System.Windows.Interop.HwndSource.set_RootVisualInternal(Visual value)
at System.Windows.Interop.HwndSource.set_RootVisual(Visual value)
at System.Windows.Window.SetRootVisual()
at System.Windows.Window.SetRootVisualAndUpdateSTC()
at System.Windows.Window.SetupInitialState(Double requestedTop, Double requestedLeft, Double requestedWidth, Double requestedHeight)
at System.Windows.Window.CreateSourceWindow(Boolean duringShow)
at System.Windows.Window.CreateSourceWindowDuringShow()
at System.Windows.Window.SafeCreateWindowDuringShow()
at System.Windows.Window.ShowHelper(Object booleanBox)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)"><pre class="notranslate"><code class="notranslate">Version: 1.0.0
OS Version: Microsoft Windows NT 10.0.19041.0
IntPtr Length: 8
x64: True
Date: 08/05/2020 20:29:58
Exception:
System.ObjectDisposedException: Cannot access a disposed object.
Object name: 'Timer'.
at System.Timers.Timer.set_Enabled(Boolean value)
at System.Timers.Timer.Start()
at PowerLauncher.MainWindow.OnVisibilityChanged(Object sender, DependencyPropertyChangedEventArgs e)
at System.Windows.UIElement.RaiseDependencyPropertyChanged(EventPrivateKey key, DependencyPropertyChangedEventArgs args)
at System.Windows.UIElement.OnIsVisibleChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
at System.Windows.DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs e)
at System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs e)
at System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)
at System.Windows.UIElement.UpdateIsVisibleCache()
at System.Windows.PresentationSource.RootChanged(Visual oldRoot, Visual newRoot)
at System.Windows.Interop.HwndSource.set_RootVisualInternal(Visual value)
at System.Windows.Interop.HwndSource.set_RootVisual(Visual value)
at System.Windows.Window.SetRootVisual()
at System.Windows.Window.SetRootVisualAndUpdateSTC()
at System.Windows.Window.SetupInitialState(Double requestedTop, Double requestedLeft, Double requestedWidth, Double requestedHeight)
at System.Windows.Window.CreateSourceWindow(Boolean duringShow)
at System.Windows.Window.CreateSourceWindowDuringShow()
at System.Windows.Window.SafeCreateWindowDuringShow()
at System.Windows.Window.ShowHelper(Object booleanBox)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
</code></pre></div>
<h2 dir="auto">📷 Screenshots</h2>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/8686134/89450499-ece9df80-d75a-11ea-9b3e-a35b5bb90f7e.png"><img src="https://user-images.githubusercontent.com/8686134/89450499-ece9df80-d75a-11ea-9b3e-a35b5bb90f7e.png" alt="image" style="max-width: 100%;"></a></p> | <p dir="auto">Popup tells me to give y'all this.</p>
<p dir="auto"><a href="https://github.com/microsoft/PowerToys/files/5009460/2020-07-31.txt">2020-07-31.txt</a></p>
<p dir="auto">Version: 1.0.0<br>
OS Version: Microsoft Windows NT 10.0.19041.0<br>
IntPtr Length: 8<br>
x64: True<br>
Date: 07/31/2020 17:29:59<br>
Exception:<br>
System.ObjectDisposedException: Cannot access a disposed object.<br>
Object name: 'Timer'.<br>
at System.Timers.Timer.set_Enabled(Boolean value)<br>
at System.Timers.Timer.Start()<br>
at PowerLauncher.MainWindow.OnVisibilityChanged(Object sender, DependencyPropertyChangedEventArgs e)<br>
at System.Windows.UIElement.RaiseDependencyPropertyChanged(EventPrivateKey key, DependencyPropertyChangedEventArgs args)<br>
at System.Windows.UIElement.OnIsVisibleChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)<br>
at System.Windows.DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs e)<br>
at System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs e)<br>
at System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)<br>
at System.Windows.UIElement.UpdateIsVisibleCache()<br>
at System.Windows.PresentationSource.RootChanged(Visual oldRoot, Visual newRoot)<br>
at System.Windows.Interop.HwndSource.set_RootVisualInternal(Visual value)<br>
at System.Windows.Interop.HwndSource.set_RootVisual(Visual value)<br>
at System.Windows.Window.SetRootVisual()<br>
at System.Windows.Window.SetRootVisualAndUpdateSTC()<br>
at System.Windows.Window.SetupInitialState(Double requestedTop, Double requestedLeft, Double requestedWidth, Double requestedHeight)<br>
at System.Windows.Window.CreateSourceWindow(Boolean duringShow)<br>
at System.Windows.Window.CreateSourceWindowDuringShow()<br>
at System.Windows.Window.SafeCreateWindowDuringShow()<br>
at System.Windows.Window.ShowHelper(Object booleanBox)<br>
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)<br>
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)</p> | 1 |
<ol dir="auto">
<li>
<p dir="auto">just use <code class="notranslate">conda install transformers</code>,the transformers version is 4.4.2, can't run<br>
1.1. error:<br>
```bash<br>
can't import pipline</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" # then use tokenizer and model to get my feature vector,ERROR:
RuntimeError: Error(s) in loading state_dict for BartModel:"><pre class="notranslate"><code class="notranslate"> # then use tokenizer and model to get my feature vector,ERROR:
RuntimeError: Error(s) in loading state_dict for BartModel:
</code></pre></div>
<p dir="auto">size mismatch for model.encoder.embed_positions.weight: copying a param with shape torch.Size([16386, 768]) from<br>
checkpoint, the shape in current model is torch.Size([1026, 768]).<br>
```</p>
</li>
<li>
<p dir="auto">change to use <code class="notranslate">pip install transformers</code>, the transformers version is 3.3.0,can't run<br>
2.1. error:<br>
```bash<br>
can't import name tokenizer</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" # then i found it in issue that use "pip install tokenizer", it has exited, and tokenizer version is 0.8.0rc2. I find another env that can work,the tokenizer version is 0.5.0,so i use pip to change its version from 0.8.0rc2 to 0.5.0.ERROR:
pip's dependency ..... which is incompatibe
# however the version of toikenizer in only one env which can run is 0.5.0 .
```"><pre class="notranslate"><code class="notranslate"> # then i found it in issue that use "pip install tokenizer", it has exited, and tokenizer version is 0.8.0rc2. I find another env that can work,the tokenizer version is 0.5.0,so i use pip to change its version from 0.8.0rc2 to 0.5.0.ERROR:
pip's dependency ..... which is incompatibe
# however the version of toikenizer in only one env which can run is 0.5.0 .
```
</code></pre></div>
</li>
<li>
<p dir="auto">So the only one worked env is:</p>
</li>
</ol>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="conda create -n dnabert python=3.6
# pytorch-transformers
pip install pytorch-transformers
conda install pytorch torchvision cudatoolkit=10.0 -c pytorch
# dnabert
git clone https://github.com/jerryji1993/DNABERT
cd DNABERT
python3 -m pip install --editable .
cd examples
python3 -m pip install -r requirements.txt
# allenai
conda install cudatoolkit=10.0
pip install git+https://github.com/allenai/longformer.git
# huggingface
pip install transformers"><pre class="notranslate">conda create -n dnabert python=3.6
<span class="pl-c"><span class="pl-c">#</span> pytorch-transformers </span>
pip install pytorch-transformers
conda install pytorch torchvision cudatoolkit=10.0 -c pytorch
<span class="pl-c"><span class="pl-c">#</span> dnabert</span>
git clone https://github.com/jerryji1993/DNABERT
<span class="pl-c1">cd</span> DNABERT
python3 -m pip install --editable <span class="pl-c1">.</span>
<span class="pl-c1">cd</span> examples
python3 -m pip install -r requirements.txt
<span class="pl-c"><span class="pl-c">#</span> allenai </span>
conda install cudatoolkit=10.0
pip install git+https://github.com/allenai/longformer.git
<span class="pl-c"><span class="pl-c">#</span> huggingface</span>
pip install transformers</pre></div>
<h1 dir="auto">我做错了什么才会到这种局面?</h1> | <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="RuntimeError: Error(s) in loading state_dict for BartModel:
size mismatch for model.encoder.embed_positions.weight: copying a param with shape torch.Size([16386, 768]) from checkpoint, the shape in current model is torch.Size([1026, 768])."><pre class="notranslate">RuntimeError: Error(s) <span class="pl-k">in</span> loading state_dict <span class="pl-k">for</span> BartModel:
size mismatch <span class="pl-k">for</span> <span class="pl-smi">model.encoder.embed_positions.weight: copying a param with shape torch.Size([16386, 768]) from checkpoint, the shape</span> <span class="pl-k">in</span> current model is torch.Size([1026, 768]).</pre></div>
<p dir="auto">I use longformer model called longformer-encdec-base-16384 which is downloaded in <a href="https://github.com/allenai/longformer%EF%BC%8Cand">https://github.com/allenai/longformer,and</a> use huggingface to load the model,when transformers’ version is 3.1.0, the code can run, but when it is 4.4.2,the error happened.</p>
<p dir="auto">MeanWhile,when I use the model to proposal pairs of sentences,I found it that the returned token_type_ids values are just zero<br>
without one. how ever,in the model's special_tokens_map.json, it has defined cls_token and sep_token.</p>
<p dir="auto">Finally, I sincerely hope you would reply me soon. Thanks!</p> | 1 |
<p dir="auto">Same problem when starting julia with -p 4 parameter (for example).</p>
<p dir="auto">Problem only occurs on 64 bit version. (on Windows 8.1)</p>
<p dir="auto">32 bit version is OK.</p> | <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> versioninfo()
Julia Version 0.3.0-prerelease+1358
Commit cb26338* (2014-02-01 14:56 UTC)
Platform Info:
System: Windows (i686-w64-mingw32)
CPU: Intel(R) Core(TM)2 Duo CPU T9300 @ 2.50GHz
WORD_SIZE: 32
BLAS: libopenblas (DYNAMIC_ARCH NO_AFFINITY)
LAPACK: libopenblas
LIBM: libopenlibm"><pre class="notranslate"><code class="notranslate">julia> versioninfo()
Julia Version 0.3.0-prerelease+1358
Commit cb26338* (2014-02-01 14:56 UTC)
Platform Info:
System: Windows (i686-w64-mingw32)
CPU: Intel(R) Core(TM)2 Duo CPU T9300 @ 2.50GHz
WORD_SIZE: 32
BLAS: libopenblas (DYNAMIC_ARCH NO_AFFINITY)
LAPACK: libopenblas
LIBM: libopenlibm
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> a=[1:5]
5-element Array{Int32,1}:
1
2
3
4
5"><pre class="notranslate"><code class="notranslate">julia> a=[1:5]
5-element Array{Int32,1}:
1
2
3
4
5
</code></pre></div>
<p dir="auto">Then calling <code class="notranslate">a[a.>3]</code> crashes the REPL on 32-bit Vista.<br>
I have also tried this win32-prerelease on 64-bit Win7 and it works fine.</p> | 1 |
<p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong></p>
<p dir="auto">feature</p>
<p dir="auto"><strong>What is the current behavior?</strong></p>
<p dir="auto"><code class="notranslate">getDerivedStateFromProps</code> only receives the nextProps and previousState as arguments.</p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem. Your bug will get fixed much faster if we can run your code and it doesn't have dependencies other than React. Paste the link to your JSFiddle (<a href="https://jsfiddle.net/Luktwrdm/" rel="nofollow">https://jsfiddle.net/Luktwrdm/</a>) or CodeSandbox (<a href="https://codesandbox.io/s/new" rel="nofollow">https://codesandbox.io/s/new</a>) example below:</strong></p>
<p dir="auto">The deprecated <code class="notranslate">componentWillReceiveProps(nextProps)</code> used to allow code like <code class="notranslate">this.props.foo !== nextProps.foo</code>. With the new <code class="notranslate">getDerivedStateFromProps</code> function, there's no choice (because it is a static method) but to constantly copy <code class="notranslate">nextProps.foo</code> into state in order to access it later.</p>
<p dir="auto">This is illustrated in the example posted to twitter by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gaearon/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gaearon">@gaearon</a>: <a href="https://twitter.com/dan_abramov/status/953612246634188800?lang=en" rel="nofollow">https://twitter.com/dan_abramov/status/953612246634188800?lang=en</a></p>
<p dir="auto"><strong>What is the expected behavior?</strong></p>
<p dir="auto">Ideally (if it's not difficult to implement!) the <code class="notranslate">getDerivedStateFromProps</code> would also take the current (previous/old) props as an argument, something like:</p>
<p dir="auto"><code class="notranslate">getDerivedStateFromProps(nextProps, prevState, prevProps)</code></p>
<p dir="auto">This would eliminate the need to constantly assign props to state purely for comparison purposes...</p>
<p dir="auto">A quick look at the source doesn't make it clear to me how easy this would be though...</p>
<p dir="auto"></p><div class="Box Box--condensed my-2">
<div class="Box-header f6">
<p class="mb-0 text-bold">
<a href="https://github.com/facebook/react/blob/4a20ff26ecfe9bc66941d79f7fce2c67be8ee236/packages/react-dom/src/server/ReactPartialRenderer.js#L456">react/packages/react-dom/src/server/ReactPartialRenderer.js</a>
</p>
<p class="mb-0 color-fg-muted">
Line 456
in
<a data-pjax="true" class="commit-tease-sha" href="/facebook/react/commit/4a20ff26ecfe9bc66941d79f7fce2c67be8ee236">4a20ff2</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="L456" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="456"></td>
<td id="LC456" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">partialState</span> <span class="pl-c1">=</span> <span class="pl-v">Component</span><span class="pl-kos">.</span><span class="pl-c1">getDerivedStateFromProps</span><span class="pl-kos">.</span><span class="pl-en">call</span><span class="pl-kos">(</span> </td>
</tr>
</tbody></table>
</div>
</div>
<p></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></p>
<p dir="auto">16.3.0</p> | <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>
Our tests are sporadically logging a warning <code class="notranslate">Warning: ReactDebugTool: debugID may not be empty.</code>. We fail any tests that log warnings, so this is causing flakiness.</p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce...</strong><br>
I'm unable to consistently reproduce, but we're seeing roughly a 2% failure rate for our test suite. Doesn't seem to be any patterns around which tests will fail with this error.</p>
<p dir="auto"><strong>What is the expected behavior?</strong><br>
I'd expect our tests to either log a warning consistently if we're doing something wrong or to not log a warning at all.</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></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="❯ node --version; npm --version; npm ls react react-dom enzyme
v6.10.2
2.15.12
[email protected] /Users/gary_borton/airlab/repos/airbnb
├── [email protected]
├── [email protected]
├── [email protected]
└─┬ [email protected]
└── [email protected] "><pre class="notranslate"><code class="notranslate">❯ node --version; npm --version; npm ls react react-dom enzyme
v6.10.2
2.15.12
[email protected] /Users/gary_borton/airlab/repos/airbnb
├── [email protected]
├── [email protected]
├── [email protected]
└─┬ [email protected]
└── [email protected]
</code></pre></div>
<p dir="auto">The appearance of this warning correlates pretty closely with our migration from node 4 to node 6.</p> | 0 |
<ol dir="auto">
<li>Right click on a folder in the tree view</li>
</ol>
<p dir="auto"><strong>Atom Version</strong>: 0.194.0<br>
<strong>System</strong>: Microsoft Windows 8.1<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\Felikx\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\Felikx\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)<br>
at EventEmitter. (C:\Users\Felikx\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\Felikx\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\Felikx\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\Felikx\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\Felikx\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\Felikx\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\Felikx\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\Felikx\AppData\Local\atom\app-0.194.0\resources\app.asar\src\context-menu-manager.js:170:31)
at HTMLDocument.<anonymous> (C:\Users\Felikx\AppData\Local\atom\app-0.194.0\resources\app.asar\src\window-event-handler.js:149:33)
at HTMLDocument.handler (C:\Users\Felikx\AppData\Local\atom\app-0.194.0\resources\app.asar\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\Felikx\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\Felikx\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\Felikx\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\Felikx\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\Felikx\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\Felikx\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\Felikx\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\Felikx\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\Felikx\AppData\Local\atom\app-0.194.0\resources\app.asar\src\context-menu-manager.js:170:31)
at HTMLDocument.<anonymous> (C:\Users\Felikx\AppData\Local\atom\app-0.194.0\resources\app.asar\src\window-event-handler.js:149:33)
at HTMLDocument.handler (C:\Users\Felikx\AppData\Local\atom\app-0.194.0\resources\app.asar\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\Felikx\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\Felikx\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=""><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",
"monokai-dark"
]
},
"editor": {
"fontSize": 13,
"invisibles": {}
}
}"><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>monokai-dark<span class="pl-pds">"</span></span>
]
},
<span class="pl-ent">"editor"</span>: {
<span class="pl-ent">"fontSize"</span>: <span class="pl-c1">13</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
color-picker, v1.4.4
i18n-brackets, v0.1.0
language-gmod-lua, v0.2.1
language-lua, v0.9.0
linter, v0.11.1
monokai-dark, v1.0.0
seti-ui, v0.6.3
# 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, v1.<span class="pl-ii">4</span>.<span class="pl-ii">4</span>
i18n<span class="pl-k">-</span>brackets, v0.<span class="pl-ii">1</span>.<span class="pl-ii">0</span>
language<span class="pl-k">-</span>gmod<span class="pl-k">-</span>lua, v0.<span class="pl-ii">2</span>.<span class="pl-ii">1</span>
language<span class="pl-k">-</span>lua, v0.<span class="pl-ii">9</span>.<span class="pl-ii">0</span>
linter, v0.<span class="pl-ii">11</span>.<span class="pl-ii">1</span>
monokai<span class="pl-k">-</span>dark, v1.<span class="pl-ii">0</span>.<span class="pl-ii">0</span>
seti<span class="pl-k">-</span>ui, v0.<span class="pl-ii">6</span>.<span class="pl-ii">3</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">Version: symfony/validator 3.1.6, PHP 7.0.7</p>
<p dir="auto"><strong>Background:</strong> I've been using the validator component for APIs for a long time (without forms though). One of the problems was that apart from the descriptive violation messages I wanted to return a fixed error name that can be handled by the application on the other end. I've achieved that by extending the base constraints and overriding the error messages (which means no descriptive message). I could live with that, waited for better times.</p>
<p dir="auto">I noticed that the ConstraintViolation includes the <code class="notranslate">::getCode</code> method now! Perfect for my little APIs. The code seems to be an UUID and each of the constraints includes a mapping to nice error names. UUIDs are usable but they are not the best UX for the end-programmer :).</p>
<p dir="auto"><strong>The meat</strong>: The easiest way to get the error name would be to use <code class="notranslate">Constraint::getErrorName</code> method. This is where the problem is - in some cases the <code class="notranslate">ConstraintViolation</code> has the wrong <code class="notranslate">Constraint</code> attached. From the first look - it's the last tested constraint, not the one that failed.</p>
<p dir="auto">I am aware that I am assuming the the <code class="notranslate">ConstraintViolationInterface</code> is actually a <code class="notranslate">ConstraintViolation</code> but IMO it's fair to assume when I'm using Symfony's validator component. Also the <code class="notranslate">ConstraintViolation::getConstraint</code> and <code class="notranslate">Constraint::getErrorName</code> methods are public so I am (I hope) not relying on some internal implementation details.</p>
<p dir="auto">I am attaching a testcase for further illustration:<br>
<a href="https://gist.github.com/pinkeen/7a3b6688efc3c493fc16807ac89d3a3f">https://gist.github.com/pinkeen/7a3b6688efc3c493fc16807ac89d3a3f</a></p> | <p dir="auto">Hi,</p>
<p dir="auto">It's possible that when calling the <code class="notranslate">getConstraint()</code> method on a <code class="notranslate">ConstraintViolation</code> generated by the <code class="notranslate">Assert\Collection</code> will return a different constraint than the <code class="notranslate">Assert\Collection</code> that caused the violation.</p>
<p dir="auto">An example:</p>
<div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$data = ['email' => '[email protected]'];
$constraints = new Assert\Collection([
'password' => new Assert\NotBlank(),
'email' => new Assert\NotBlank(),
]);
$violations = $->validate($data, $constraints);
dump($violations);"><pre class="notranslate"><span class="pl-s1"><span class="pl-c1">$</span>data</span> = [<span class="pl-s">'email'</span> => <span class="pl-s">'[email protected]'</span>];
<span class="pl-s1"><span class="pl-c1">$</span>constraints</span> = <span class="pl-k">new</span> <span class="pl-v">Assert</span>\<span class="pl-v">Collection</span>([
<span class="pl-s">'password'</span> => <span class="pl-k">new</span> <span class="pl-v">Assert</span>\<span class="pl-v">NotBlank</span>(),
<span class="pl-s">'email'</span> => <span class="pl-k">new</span> <span class="pl-v">Assert</span>\<span class="pl-v">NotBlank</span>(),
]);
<span class="pl-s1"><span class="pl-c1">$</span>violations</span> = <span class="pl-s1"><span class="pl-c1">$</span>->validate</span>(<span class="pl-s1"><span class="pl-c1">$</span>data</span>, <span class="pl-s1"><span class="pl-c1">$</span>constraints</span>);
dump(<span class="pl-s1"><span class="pl-c1">$</span>violations</span>);</pre></div>
<p dir="auto">Outputs</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Symfony\Component\Validator\ConstraintViolationList {#2675
-violations: array:1 [
0 => Symfony\Component\Validator\ConstraintViolation {#2677
-message: "This field is missing."
--- >8 ---
-constraint: Symfony\Component\Validator\Constraints\Collection { --- >8 --- }
-code: 1
}
]
}"><pre class="notranslate"><code class="notranslate">Symfony\Component\Validator\ConstraintViolationList {#2675
-violations: array:1 [
0 => Symfony\Component\Validator\ConstraintViolation {#2677
-message: "This field is missing."
--- >8 ---
-constraint: Symfony\Component\Validator\Constraints\Collection { --- >8 --- }
-code: 1
}
]
}
</code></pre></div>
<p dir="auto">This is the correct and expected behavior. The constraint within the <code class="notranslate">ConstraintViolation</code> maps correctly to the constraint that caused the violation.</p>
<p dir="auto">However, if we were to flip the order of field checks in the <code class="notranslate">CollectionConstraint</code> like so:</p>
<div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$constraints = new Assert\Collection([
'email' => new Assert\NotBlank(),
'password' => new Assert\NotBlank(),
]);"><pre class="notranslate"><span class="pl-s1"><span class="pl-c1">$</span>constraints</span> = <span class="pl-k">new</span> <span class="pl-v">Assert</span>\<span class="pl-v">Collection</span>([
<span class="pl-s">'email'</span> => <span class="pl-k">new</span> <span class="pl-v">Assert</span>\<span class="pl-v">NotBlank</span>(),
<span class="pl-s">'password'</span> => <span class="pl-k">new</span> <span class="pl-v">Assert</span>\<span class="pl-v">NotBlank</span>(),
]);</pre></div>
<p dir="auto">The output will look like this</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Symfony\Component\Validator\ConstraintViolationList {#2675
-violations: array:1 [
0 => Symfony\Component\Validator\ConstraintViolation {#2677
-message: "This field is missing."
--- >8 ---
-constraint: Symfony\Component\Validator\Constraints\NotBlank { --- >8 --- }
-code: 1
}
]
}"><pre class="notranslate"><code class="notranslate">Symfony\Component\Validator\ConstraintViolationList {#2675
-violations: array:1 [
0 => Symfony\Component\Validator\ConstraintViolation {#2677
-message: "This field is missing."
--- >8 ---
-constraint: Symfony\Component\Validator\Constraints\NotBlank { --- >8 --- }
-code: 1
}
]
}
</code></pre></div>
<p dir="auto"><strong>The constraint in the <code class="notranslate">ConstraintViolation</code> is now mismatched from what the actual violation is</strong>.</p>
<h4 dir="auto">Investigation</h4>
<p dir="auto">The reason this is happening is because of <a href="https://github.com/symfony/symfony/blob/f187d9aa1cfbf963ff22cb0944efdf51af4d18a6/src/Symfony/Component/Validator/Constraints/CollectionValidator.php#L62-L65">the way the context is passed into the validator</a> when validating items in the <code class="notranslate">Assert\Collection</code>.</p>
<p dir="auto">Since the context is passed in, the constraint is <a href="https://github.com/symfony/symfony/blob/f187d9aa1cfbf963ff22cb0944efdf51af4d18a6/src/Symfony/Component/Validator/Validator/RecursiveContextualValidator.php#L859">modified on it</a> and this change persists during the validation of the rest of the fields in the Collection constraint. So if a field is missing the violation created will be created with the same context that no longer references the Collection constraint.</p>
<h4 dir="auto">Proposed solution</h4>
<p dir="auto"><code class="notranslate">clone</code>ing the context <a href="https://github.com/symfony/symfony/blob/f187d9aa1cfbf963ff22cb0944efdf51af4d18a6/src/Symfony/Component/Validator/Constraints/CollectionValidator.php#L63">in the <code class="notranslate">inContext</code> call</a> appears to fix the problem. I haven't dived in deep enough though to fully understand if there would be other side effects.</p> | 1 |
<p dir="auto">I discovered that when we start service neo4j with systemd on ubuntu /etc/systemd/system/neo4j.service is buggy.<br>
I already create a ticket n°7911 on problem with false analysis.</p>
<ul dir="auto">
<li>Neo4j version: 3.0.1 to 3.1.1</li>
<li>Operating system: Ubuntu 16.04 and 16.10</li>
<li>API/Driver: file systemd /etc/systemd/system/neo4j.service</li>
</ul>
<p dir="auto">missing lines in file neo4j.service of systemd for creating folder /run/neo4j and attribute authorizations to this folder.<br>
...<br>
[Service]:<br>
...<br>
RuntimeDirectory=neo4j<br>
RuntimeDirectoryMode=770<br>
...</p>
<h3 dir="auto">Steps to reproduce**</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="user@hostname:~$ systemctl status neo4j.service
● neo4j.service - Neo4j Management Service
Loaded: loaded (/etc/systemd/system/neo4j.service; enabled; vendor preset: enabled)
Active: failed (Result: exit-code) since mar. 2016-08-16 17:33:00 CEST; 2s ago
Process: 25319 ExecStop=/usr/bin/neo4j stop (code=exited, status=0/SUCCESS)
Process: 21791 ExecStart=/usr/bin/neo4j start (code=exited, status=0/SUCCESS)
Main PID: 21849 (code=exited, status=143)"><pre class="notranslate"><code class="notranslate">user@hostname:~$ systemctl status neo4j.service
● neo4j.service - Neo4j Management Service
Loaded: loaded (/etc/systemd/system/neo4j.service; enabled; vendor preset: enabled)
Active: failed (Result: exit-code) since mar. 2016-08-16 17:33:00 CEST; 2s ago
Process: 25319 ExecStop=/usr/bin/neo4j stop (code=exited, status=0/SUCCESS)
Process: 21791 ExecStart=/usr/bin/neo4j start (code=exited, status=0/SUCCESS)
Main PID: 21849 (code=exited, status=143)
</code></pre></div>
<h3 dir="auto">Expected behavior</h3>
<p dir="auto">Script /etc/systemd/system/neo4j.service :</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[Unit]
Description=Neo4j Management Service
[Service]
Type=forking
#User=neo4j
RuntimeDirectory=neo4j
RuntimeDirectoryMode=770
ExecStart=/usr/bin/neo4j start
ExecStop=/usr/bin/neo4j stop
ExecReload=/usr/bin/neo4j restart
RemainAfterExit=no
Restart=on-failure
PIDFile=/var/run/neo4j/neo4j.pid
LimitNOFILE=60000
TimeoutSec=600
[Install]
WantedBy=multi-user.target"><pre class="notranslate"><code class="notranslate">[Unit]
Description=Neo4j Management Service
[Service]
Type=forking
#User=neo4j
RuntimeDirectory=neo4j
RuntimeDirectoryMode=770
ExecStart=/usr/bin/neo4j start
ExecStop=/usr/bin/neo4j stop
ExecReload=/usr/bin/neo4j restart
RemainAfterExit=no
Restart=on-failure
PIDFile=/var/run/neo4j/neo4j.pid
LimitNOFILE=60000
TimeoutSec=600
[Install]
WantedBy=multi-user.target
</code></pre></div>
<h3 dir="auto">Actual behavior</h3>
<p dir="auto">Script /etc/systemd/system/neo4j.service :</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[Unit]
Description=Neo4j Management Service
[Service]
Type=forking
#User=neo4j
ExecStart=/usr/bin/neo4j start
ExecStop=/usr/bin/neo4j stop
ExecReload=/usr/bin/neo4j restart
RemainAfterExit=no
Restart=on-failure
PIDFile=/var/run/neo4j/neo4j.pid
LimitNOFILE=60000
TimeoutSec=600
[Install]
WantedBy=multi-user.target"><pre class="notranslate"><code class="notranslate">[Unit]
Description=Neo4j Management Service
[Service]
Type=forking
#User=neo4j
ExecStart=/usr/bin/neo4j start
ExecStop=/usr/bin/neo4j stop
ExecReload=/usr/bin/neo4j restart
RemainAfterExit=no
Restart=on-failure
PIDFile=/var/run/neo4j/neo4j.pid
LimitNOFILE=60000
TimeoutSec=600
[Install]
WantedBy=multi-user.target
</code></pre></div> | <p dir="auto">I have noticed that a fresh install of neo4j enterprise is not creating pid file on /var/run/neo4j directory. Also if I'm creating this directory manually it's been deleted by neo4j stop procedure.<br>
The result is an instance of neo4j which is not controllable by neo4j bin file.<br>
This occurs after first reboot of the server and in order to stop neo4j I forced to kill -9 the process.</p>
<p dir="auto"><strong>Neo4j Version:</strong> 3.0M03<br>
<strong>Operating System:</strong> Ubuntu 14.04</p>
<h3 dir="auto">Steps to reproduce</h3>
<ol dir="auto">
<li>apt-get install neo4j-enterprise</li>
<li>reboot the server</li>
<li>check running process - you will notice that neo4j is running by neo4j user</li>
<li>try to stop neo4j by <code class="notranslate">#service neo4j stop / start</code></li>
<li>You will receive: /usr/share/neo4j/bin/neo4j: line 149: /var/run/neo4j/neo4j.pid: No such file or directory</li>
</ol>
<h3 dir="auto">Expected behavior</h3>
<p dir="auto">neo4j start procedure should create neo4j.pid file on upstart<br>
neo4j stop procedure should delete neo4j.pid</p>
<h3 dir="auto">Actual behavior</h3>
<p dir="auto">neo4j start procedure is not creating neo4j.pid file on upstart</p> | 1 |
<p dir="auto">This is a feature request/suggestion.</p>
<p dir="auto">It would pretty nifty to be able to prefix route IDs/names on import. The idea is that the same routing resource could be imported multiple times and generate unique route names.</p>
<p dir="auto">For example: if you have a typical form login on one host for a UI and a stateless API token authentication on another. You might want to share the same routing config for your API between the two hosts.</p>
<div class="highlight highlight-text-xml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<?xml version="1.0" encoding="UTF-8" ?>
<routes xmlns="http://symfony.com/schema/routing"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/routing
http://symfony.com/schema/routing/routing-1.0.xsd">
<!-- ... -->
<import resource="@AppBundle/Resources/config/api.xml" prefix="/api" host="%uihost%">
<default key="_format">json</default>
</import>
<import resource="@AppBundle/Resources/config/api.xml" host="%apihost%">
<default key="_format">json</default>
</import>
</routes>"><pre class="notranslate"><?<span class="pl-ent">xml</span><span class="pl-e"> version</span>=<span class="pl-s"><span class="pl-pds">"</span>1.0<span class="pl-pds">"</span></span><span class="pl-e"> encoding</span>=<span class="pl-s"><span class="pl-pds">"</span>UTF-8<span class="pl-pds">"</span></span> ?>
<<span class="pl-ent">routes</span> <span class="pl-e">xmlns</span>=<span class="pl-s"><span class="pl-pds">"</span>http://symfony.com/schema/routing<span class="pl-pds">"</span></span>
<span class="pl-e">xmlns</span><span class="pl-e">:</span><span class="pl-e">xsi</span>=<span class="pl-s"><span class="pl-pds">"</span>http://www.w3.org/2001/XMLSchema-instance<span class="pl-pds">"</span></span>
<span class="pl-e">xsi</span><span class="pl-e">:</span><span class="pl-e">schemaLocation</span>=<span class="pl-s"><span class="pl-pds">"</span>http://symfony.com/schema/routing</span>
<span class="pl-s"> http://symfony.com/schema/routing/routing-1.0.xsd<span class="pl-pds">"</span></span>>
<span class="pl-c"><span class="pl-c"><!--</span> ... <span class="pl-c">--></span></span>
<<span class="pl-ent">import</span> <span class="pl-e">resource</span>=<span class="pl-s"><span class="pl-pds">"</span>@AppBundle/Resources/config/api.xml<span class="pl-pds">"</span></span> <span class="pl-e">prefix</span>=<span class="pl-s"><span class="pl-pds">"</span>/api<span class="pl-pds">"</span></span> <span class="pl-e">host</span>=<span class="pl-s"><span class="pl-pds">"</span>%uihost%<span class="pl-pds">"</span></span>>
<<span class="pl-ent">default</span> <span class="pl-e">key</span>=<span class="pl-s"><span class="pl-pds">"</span>_format<span class="pl-pds">"</span></span>>json</<span class="pl-ent">default</span>>
</<span class="pl-ent">import</span>>
<<span class="pl-ent">import</span> <span class="pl-e">resource</span>=<span class="pl-s"><span class="pl-pds">"</span>@AppBundle/Resources/config/api.xml<span class="pl-pds">"</span></span> <span class="pl-e">host</span>=<span class="pl-s"><span class="pl-pds">"</span>%apihost%<span class="pl-pds">"</span></span>>
<<span class="pl-ent">default</span> <span class="pl-e">key</span>=<span class="pl-s"><span class="pl-pds">"</span>_format<span class="pl-pds">"</span></span>>json</<span class="pl-ent">default</span>>
</<span class="pl-ent">import</span>>
</<span class="pl-ent">routes</span>></pre></div>
<p dir="auto">Right now this can't be done. The second import overrides all the named routes in the first. Ideally I'd like to be able to do this...</p>
<div class="highlight highlight-text-xml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<?xml version="1.0" encoding="UTF-8" ?>
<routes xmlns="http://symfony.com/schema/routing"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/routing
http://symfony.com/schema/routing/routing-1.0.xsd">
<!-- ... -->
<import resource="@AppBundle/Resources/config/api.xml" prefix="/api" host="%uihost%">
<default key="_format">json</default>
</import>
<import resource="@AppBundle/Resources/config/api.xml" host="%apihost%" idprefix="api.">
<default key="_format">json</default>
</import>
</routes>"><pre class="notranslate"><?<span class="pl-ent">xml</span><span class="pl-e"> version</span>=<span class="pl-s"><span class="pl-pds">"</span>1.0<span class="pl-pds">"</span></span><span class="pl-e"> encoding</span>=<span class="pl-s"><span class="pl-pds">"</span>UTF-8<span class="pl-pds">"</span></span> ?>
<<span class="pl-ent">routes</span> <span class="pl-e">xmlns</span>=<span class="pl-s"><span class="pl-pds">"</span>http://symfony.com/schema/routing<span class="pl-pds">"</span></span>
<span class="pl-e">xmlns</span><span class="pl-e">:</span><span class="pl-e">xsi</span>=<span class="pl-s"><span class="pl-pds">"</span>http://www.w3.org/2001/XMLSchema-instance<span class="pl-pds">"</span></span>
<span class="pl-e">xsi</span><span class="pl-e">:</span><span class="pl-e">schemaLocation</span>=<span class="pl-s"><span class="pl-pds">"</span>http://symfony.com/schema/routing</span>
<span class="pl-s"> http://symfony.com/schema/routing/routing-1.0.xsd<span class="pl-pds">"</span></span>>
<span class="pl-c"><span class="pl-c"><!--</span> ... <span class="pl-c">--></span></span>
<<span class="pl-ent">import</span> <span class="pl-e">resource</span>=<span class="pl-s"><span class="pl-pds">"</span>@AppBundle/Resources/config/api.xml<span class="pl-pds">"</span></span> <span class="pl-e">prefix</span>=<span class="pl-s"><span class="pl-pds">"</span>/api<span class="pl-pds">"</span></span> <span class="pl-e">host</span>=<span class="pl-s"><span class="pl-pds">"</span>%uihost%<span class="pl-pds">"</span></span>>
<<span class="pl-ent">default</span> <span class="pl-e">key</span>=<span class="pl-s"><span class="pl-pds">"</span>_format<span class="pl-pds">"</span></span>>json</<span class="pl-ent">default</span>>
</<span class="pl-ent">import</span>>
<<span class="pl-ent">import</span> <span class="pl-e">resource</span>=<span class="pl-s"><span class="pl-pds">"</span>@AppBundle/Resources/config/api.xml<span class="pl-pds">"</span></span> <span class="pl-e">host</span>=<span class="pl-s"><span class="pl-pds">"</span>%apihost%<span class="pl-pds">"</span></span> <span class="pl-e">idprefix</span>=<span class="pl-s"><span class="pl-pds">"</span>api.<span class="pl-pds">"</span></span>>
<<span class="pl-ent">default</span> <span class="pl-e">key</span>=<span class="pl-s"><span class="pl-pds">"</span>_format<span class="pl-pds">"</span></span>>json</<span class="pl-ent">default</span>>
</<span class="pl-ent">import</span>>
</<span class="pl-ent">routes</span>></pre></div>
<p dir="auto">All routes in the second import would get the ID <code class="notranslate">api.{original_id_attribute_value}</code>.</p> | <h3 dir="auto">Problem</h3>
<p dir="auto">Thanks to the work of <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/nicolas-grekas/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nicolas-grekas">@nicolas-grekas</a> and the community, Symfony tests are faster every day. But we can do better.</p>
<p dir="auto">I've analyzed the Symfony 2.3 test suite and I've found that <strong>some tests are very slow</strong>. I can think of 3 reasons for a slow test:</p>
<ol dir="auto">
<li>It's slow because the tested Symfony feature is slow. Let's try to fix that feature.</li>
<li>It's slow because the test code is not good enough. Let's fix the test.</li>
<li>It's slow because the test or the Symfony feature are complicated. Nothing is wrong with the test. Don't change anything.</li>
</ol>
<h3 dir="auto">Solution</h3>
<ul dir="auto">
<li>I propose to work on fixing the slowest Symfony tests.</li>
<li>If you are experienced with Symfony, add a comment in this issue saying which tests are you going to working on, so we don't duplicate the work (e.g. <em>I'm looking into Process component tests</em>).</li>
<li>If you are new to Symfony and want to contribute, you can ask me for help or guidance.</li>
</ul>
<p dir="auto">When fixing a test/feature to make it faster, keep in mind that we'll reject:</p>
<ul dir="auto">
<li>Meaningless changes (e.g. replace single quotes by double quotes).</li>
<li>Changes that destroy code readability.</li>
</ul>
<p dir="auto">In case of doubt, ask us!</p>
<h3 dir="auto">Details</h3>
<p dir="auto">I took the fastest test as reference (in my machine it was <code class="notranslate">InputArgumentTest::testGetDefault</code>) and this is the list of the slowest Symfony tests:</p>
<h4 dir="auto">Tests which are at least 10,000 times slower than the fastest test</h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" 21,107x slower : Symfony\Component\HttpFoundation\Tests\Session\Storage\MetadataBagTest::testInitialize
20,186x slower : Symfony\Component\Routing\Tests\Generator\Dumper\PhpGeneratorDumperTest::testDumpWithTooManyRoutes
12,647x slower : Symfony\Component\Process\Tests\ProcessTest::testProcessPipes with data set #9
[WORKING ON THIS] 10,754x slower : Symfony\Component\Filesystem\Tests\FilesystemTest::testCopyForOriginUrlsAndExistingLocalFileDefaultsToNotCopy
10,601x slower : Symfony\Component\Finder\Tests\Iterator\SortableIteratorTest::testAccept with data set #2
10,570x slower : Symfony\Component\Finder\Tests\Iterator\SortableIteratorTest::testAccept with data set #4
10,569x slower : Symfony\Component\Finder\Tests\Iterator\SortableIteratorTest::testAccept with data set #3"><pre class="notranslate"><code class="notranslate"> 21,107x slower : Symfony\Component\HttpFoundation\Tests\Session\Storage\MetadataBagTest::testInitialize
20,186x slower : Symfony\Component\Routing\Tests\Generator\Dumper\PhpGeneratorDumperTest::testDumpWithTooManyRoutes
12,647x slower : Symfony\Component\Process\Tests\ProcessTest::testProcessPipes with data set #9
[WORKING ON THIS] 10,754x slower : Symfony\Component\Filesystem\Tests\FilesystemTest::testCopyForOriginUrlsAndExistingLocalFileDefaultsToNotCopy
10,601x slower : Symfony\Component\Finder\Tests\Iterator\SortableIteratorTest::testAccept with data set #2
10,570x slower : Symfony\Component\Finder\Tests\Iterator\SortableIteratorTest::testAccept with data set #4
10,569x slower : Symfony\Component\Finder\Tests\Iterator\SortableIteratorTest::testAccept with data set #3
</code></pre></div>
<h4 dir="auto">Tests which are at least 1,000 times slower than the fastest test</h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" 9,453x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SecurityRoutingIntegrationTest::testRoutingErrorIsExposedWhenNotProtected with data set #0 ('config.yml')
9,348x slower : Symfony\Component\Finder\Tests\Iterator\RecursiveDirectoryIteratorTest::testRewindOnFtp
8,898x slower : Symfony\Component\Finder\Tests\Iterator\RecursiveDirectoryIteratorTest::testSeekOnFtp
8,420x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SecurityRoutingIntegrationTest::testRoutingErrorIsNotExposedForProtectedResourceWhenLoggedInWithInsufficientRights with data set #1 ('routes_as_path.yml')
8,154x slower : Symfony\Bundle\FrameworkBundle\Tests\Functional\SessionTest::testTwoClients with data set #0 ('config.yml', true)
7,588x slower : Symfony\Component\Process\Tests\ProcessTest::testProcessPipes with data set #8 ('fwrite(STDOUT, $in = file_get... $in);', 4096)
7,074x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SecurityRoutingIntegrationTest::testRoutingErrorIsNotExposedForProtectedResourceWhenLoggedInWithInsufficientRights with data set #0 ('config.yml')
7,064x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SecurityRoutingIntegrationTest::testSecurityConfigurationForMultipleIPAddresses with data set #0 ('config.yml')
6,997x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SecurityRoutingIntegrationTest::testSecurityConfigurationForMultipleIPAddresses with data set #1 ('routes_as_path.yml')
6,838x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SecurityRoutingIntegrationTest::testRoutingErrorIsExposedWhenNotProtected with data set #1 ('routes_as_path.yml')
6,774x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\CsrfFormLoginTest::testFormLoginAndLogoutWithCsrfTokens with data set #0 ('config.yml')
6,014x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\FormLoginTest::testFormLogin with data set #1 ('routes_as_path.yml')
5,859x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\LocalizedRoutesAsPathTest::testLoginLogoutProcedure with data set #0 ('en')
5,800x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\LocalizedRoutesAsPathTest::testLoginFailureWithLocalizedFailurePath with data set #0 ('en')
5,646x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SwitchUserTest::testSwitchedUserCannotSwitchToOther
4,590x slower : Symfony\Bundle\FrameworkBundle\Tests\Functional\SessionTest::testWelcome with data set #0 ('config.yml', true)
4,276x slower : Symfony\Component\Stopwatch\Tests\StopwatchEventTest::testDuration
4,142x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\FormLoginTest::testFormLogin with data set #0 ('config.yml')
4,141x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\CsrfFormLoginTest::testFormLoginAndLogoutWithCsrfTokens with data set #1 ('routes_as_path.yml')
3,977x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\LocalizedRoutesAsPathTest::testAccessRestrictedResourceWithForward with data set #0 ('en')
3,941x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SecurityRoutingIntegrationTest::testRoutingErrorIsNotExposedForProtectedResourceWhenAnonymous with data set #1 ('routes_as_path.yml')
3,874x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SwitchUserTest::testSwitchUser with data set "authorized_user_cannot_switch_to_non_existent" ('user_can_switch', 'user_does_not_exist', 'user_can_switch', 500)
3,849x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SecurityRoutingIntegrationTest::testRoutingErrorIsNotExposedForProtectedResourceWhenAnonymous with data set #0 ('config.yml')
3,804x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\AuthenticationCommencingTest::testAuthenticationIsCommencingIfAccessDeniedExceptionIsWrapped
3,690x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SecurityRoutingIntegrationTest::testSecurityConfigurationForSingleIPAddress with data set #0 ('config.yml')
3,686x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SecurityRoutingIntegrationTest::testSecurityConfigurationForSingleIPAddress with data set #1 ('routes_as_path.yml')
3,332x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\FirewallEntryPointTest::testItUsesTheConfiguredEntryPointWhenUsingUnknownCredentials
3,278x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\FirewallEntryPointTest::testItUsesTheConfiguredEntryPointFromTheExceptionListenerWithFormLoginAndNoCredentials
3,116x slower : Symfony\Component\Process\Tests\ProcessTest::testGetExitCodeIsNullOnWhenStartingAgain
3,006x slower : Symfony\Bundle\FrameworkBundle\Tests\Functional\ProfilerTest::testProfilerIsDisabled with data set #1 (true)
2,816x slower : Symfony\Bundle\FrameworkBundle\Tests\Functional\SessionTest::testFlash with data set #0 ('config.yml', true)
2,323x slower : Symfony\Bundle\FrameworkBundle\Tests\Command\CacheClearCommand\CacheClearCommandTest::testCacheIsFreshAfterCacheClearedWithWarmup
2,278x slower : Symfony\Component\Process\Tests\ProcessTest::testStartAfterATimeout
2,214x slower : Symfony\Component\Stopwatch\Tests\StopwatchEventTest::testEnsureStopped
2,176x slower : Symfony\Component\Process\Tests\ProcessTest::testRunProcessWithTimeout
2,166x slower : Symfony\Component\Stopwatch\Tests\StopwatchTest::testStop
2,005x slower : Symfony\Bundle\SecurityBundle\Tests\DependencyInjection\YamlCompleteConfigurationTest::testEncoders
1,991x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\CsrfFormLoginTest::testFormLoginWithInvalidCsrfToken with data set #1 ('routes_as_path.yml')
1,938x slower : Symfony\Bundle\FrameworkBundle\Tests\Templating\Helper\FormHelperDivLayoutTest::testRest
1,848x slower : Symfony\Bridge\Twig\Tests\Extension\FormExtensionDivLayoutTest::testThemeBlockInheritanceUsingUse
[IMPROVED] 1,784x slower : Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\XmlFrameworkExtensionTest::testDisabledProfiler
[IMPROVED] 1,758x slower : Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\YamlFrameworkExtensionTest::testValidation
[IMPROVED] 1,736x slower : Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\XmlFrameworkExtensionTest::testValidation
1,732x slower : Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\YamlFrameworkExtensionTest::testEsi
[IMPROVED] 1,703x slower : Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\PhpFrameworkExtensionTest::testValidation
[IMPROVED] 1,680x slower : Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\PhpFrameworkExtensionTest::testEsi
1,658x slower : Symfony\Bundle\SecurityBundle\Tests\DependencyInjection\XmlCompleteConfigurationTest::testEncoders
1,617x slower : Symfony\Component\HttpKernel\Tests\HttpCache\HttpCacheTest::testDoesNotCacheSomeStatusCodeResponses
1,614x slower : Symfony\Bundle\SecurityBundle\Tests\DependencyInjection\PhpCompleteConfigurationTest::testRolesHierarchy
1,604x slower : Symfony\Component\Process\Tests\ProcessTest::testGetExitCodeIsNullOnStart
1,587x slower : Symfony\Component\Process\Tests\ProcessTest::testIsSuccessfulOnlyAfterTerminated
1,574x slower : Symfony\Bundle\SecurityBundle\Tests\DependencyInjection\SecurityExtensionTest::testFirewallWithoutAuthenticationListener
1,560x slower : Symfony\Component\Process\Tests\ProcessTest::testStatus
1,536x slower : Symfony\Component\Process\Tests\ProcessTest::testTTYCommand
1,462x slower : Symfony\Component\Process\Tests\ProcessTest::testStopWithTimeoutIsActuallyWorking
1,377x slower : Symfony\Bundle\FrameworkBundle\Tests\Templating\Helper\FormHelperDivLayoutTest::testDateTime
1,358x slower : Symfony\Bundle\FrameworkBundle\Tests\Templating\Helper\FormHelperTableLayoutTest::testSingleChoiceRequiredWithEmptyValueViaView
1,329x slower : Symfony\Bundle\FrameworkBundle\Tests\Templating\Helper\FormHelperTableLayoutTest::testMoney
1,285x slower : Symfony\Bundle\FrameworkBundle\Tests\Templating\Helper\FormHelperDivLayoutTest::testTimeWithEmptyValueGlobal
1,260x slower : Symfony\Component\Form\Tests\Extension\Validator\Type\FormTypeValidatorExtensionTest::testValidationGroupsCanBeSetToCallback
1,253x slower : Symfony\Bridge\ProxyManager\Tests\LazyProxy\PhpDumper\ProxyDumperTest::testGetProxyCode
1,227x slower : Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\ConfigurationTest::testValidTrustedProxies with data set #3 (null, array())
1,174x slower : Symfony\Component\Console\Tests\Helper\DialogHelperTest::testAskWithAutocomplete
1,146x slower : Symfony\Component\Process\Tests\ProcessTest::testCheckTimeoutOnStartedProcess
1,119x slower : Symfony\Component\BrowserKit\Tests\ClientTest::testInsulatedRequests
1,117x slower : Symfony\Component\Validator\Tests\Constraints\CardSchemeValidatorTest::testInvalidNumbers with data set #0 ('VISA', '42424242424242424242')
1,106x slower : Symfony\Component\Finder\Tests\BsdFinderTest::testName
1,083x slower : Symfony\Component\ClassLoader\Tests\ClassCollectionLoaderTest::testCommentStripping
1,074x slower : Symfony\Bundle\FrameworkBundle\Tests\Functional\FragmentTest::testFragment with data set #1 (true)
1,073x slower : Symfony\Component\Stopwatch\Tests\StopwatchEventTest::testStartTime
1,065x slower : Symfony\Component\Process\Tests\ProcessTest::testRestart
1,061x slower : Symfony\Component\HttpFoundation\Tests\File\FileTest::testMove
1,014x slower : Symfony\Component\Intl\Tests\NumberFormatter\Verification\NumberFormatterTest::testFormatRoundingModeHalfEven with data set #0 (1.121, '1.12')
1,007x slower : Symfony\Component\Form\Tests\CompoundFormTest::testSetDataSupportsDynamicAdditionAndRemovalOfChildren"><pre class="notranslate"><code class="notranslate"> 9,453x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SecurityRoutingIntegrationTest::testRoutingErrorIsExposedWhenNotProtected with data set #0 ('config.yml')
9,348x slower : Symfony\Component\Finder\Tests\Iterator\RecursiveDirectoryIteratorTest::testRewindOnFtp
8,898x slower : Symfony\Component\Finder\Tests\Iterator\RecursiveDirectoryIteratorTest::testSeekOnFtp
8,420x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SecurityRoutingIntegrationTest::testRoutingErrorIsNotExposedForProtectedResourceWhenLoggedInWithInsufficientRights with data set #1 ('routes_as_path.yml')
8,154x slower : Symfony\Bundle\FrameworkBundle\Tests\Functional\SessionTest::testTwoClients with data set #0 ('config.yml', true)
7,588x slower : Symfony\Component\Process\Tests\ProcessTest::testProcessPipes with data set #8 ('fwrite(STDOUT, $in = file_get... $in);', 4096)
7,074x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SecurityRoutingIntegrationTest::testRoutingErrorIsNotExposedForProtectedResourceWhenLoggedInWithInsufficientRights with data set #0 ('config.yml')
7,064x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SecurityRoutingIntegrationTest::testSecurityConfigurationForMultipleIPAddresses with data set #0 ('config.yml')
6,997x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SecurityRoutingIntegrationTest::testSecurityConfigurationForMultipleIPAddresses with data set #1 ('routes_as_path.yml')
6,838x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SecurityRoutingIntegrationTest::testRoutingErrorIsExposedWhenNotProtected with data set #1 ('routes_as_path.yml')
6,774x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\CsrfFormLoginTest::testFormLoginAndLogoutWithCsrfTokens with data set #0 ('config.yml')
6,014x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\FormLoginTest::testFormLogin with data set #1 ('routes_as_path.yml')
5,859x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\LocalizedRoutesAsPathTest::testLoginLogoutProcedure with data set #0 ('en')
5,800x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\LocalizedRoutesAsPathTest::testLoginFailureWithLocalizedFailurePath with data set #0 ('en')
5,646x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SwitchUserTest::testSwitchedUserCannotSwitchToOther
4,590x slower : Symfony\Bundle\FrameworkBundle\Tests\Functional\SessionTest::testWelcome with data set #0 ('config.yml', true)
4,276x slower : Symfony\Component\Stopwatch\Tests\StopwatchEventTest::testDuration
4,142x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\FormLoginTest::testFormLogin with data set #0 ('config.yml')
4,141x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\CsrfFormLoginTest::testFormLoginAndLogoutWithCsrfTokens with data set #1 ('routes_as_path.yml')
3,977x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\LocalizedRoutesAsPathTest::testAccessRestrictedResourceWithForward with data set #0 ('en')
3,941x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SecurityRoutingIntegrationTest::testRoutingErrorIsNotExposedForProtectedResourceWhenAnonymous with data set #1 ('routes_as_path.yml')
3,874x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SwitchUserTest::testSwitchUser with data set "authorized_user_cannot_switch_to_non_existent" ('user_can_switch', 'user_does_not_exist', 'user_can_switch', 500)
3,849x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SecurityRoutingIntegrationTest::testRoutingErrorIsNotExposedForProtectedResourceWhenAnonymous with data set #0 ('config.yml')
3,804x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\AuthenticationCommencingTest::testAuthenticationIsCommencingIfAccessDeniedExceptionIsWrapped
3,690x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SecurityRoutingIntegrationTest::testSecurityConfigurationForSingleIPAddress with data set #0 ('config.yml')
3,686x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\SecurityRoutingIntegrationTest::testSecurityConfigurationForSingleIPAddress with data set #1 ('routes_as_path.yml')
3,332x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\FirewallEntryPointTest::testItUsesTheConfiguredEntryPointWhenUsingUnknownCredentials
3,278x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\FirewallEntryPointTest::testItUsesTheConfiguredEntryPointFromTheExceptionListenerWithFormLoginAndNoCredentials
3,116x slower : Symfony\Component\Process\Tests\ProcessTest::testGetExitCodeIsNullOnWhenStartingAgain
3,006x slower : Symfony\Bundle\FrameworkBundle\Tests\Functional\ProfilerTest::testProfilerIsDisabled with data set #1 (true)
2,816x slower : Symfony\Bundle\FrameworkBundle\Tests\Functional\SessionTest::testFlash with data set #0 ('config.yml', true)
2,323x slower : Symfony\Bundle\FrameworkBundle\Tests\Command\CacheClearCommand\CacheClearCommandTest::testCacheIsFreshAfterCacheClearedWithWarmup
2,278x slower : Symfony\Component\Process\Tests\ProcessTest::testStartAfterATimeout
2,214x slower : Symfony\Component\Stopwatch\Tests\StopwatchEventTest::testEnsureStopped
2,176x slower : Symfony\Component\Process\Tests\ProcessTest::testRunProcessWithTimeout
2,166x slower : Symfony\Component\Stopwatch\Tests\StopwatchTest::testStop
2,005x slower : Symfony\Bundle\SecurityBundle\Tests\DependencyInjection\YamlCompleteConfigurationTest::testEncoders
1,991x slower : Symfony\Bundle\SecurityBundle\Tests\Functional\CsrfFormLoginTest::testFormLoginWithInvalidCsrfToken with data set #1 ('routes_as_path.yml')
1,938x slower : Symfony\Bundle\FrameworkBundle\Tests\Templating\Helper\FormHelperDivLayoutTest::testRest
1,848x slower : Symfony\Bridge\Twig\Tests\Extension\FormExtensionDivLayoutTest::testThemeBlockInheritanceUsingUse
[IMPROVED] 1,784x slower : Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\XmlFrameworkExtensionTest::testDisabledProfiler
[IMPROVED] 1,758x slower : Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\YamlFrameworkExtensionTest::testValidation
[IMPROVED] 1,736x slower : Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\XmlFrameworkExtensionTest::testValidation
1,732x slower : Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\YamlFrameworkExtensionTest::testEsi
[IMPROVED] 1,703x slower : Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\PhpFrameworkExtensionTest::testValidation
[IMPROVED] 1,680x slower : Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\PhpFrameworkExtensionTest::testEsi
1,658x slower : Symfony\Bundle\SecurityBundle\Tests\DependencyInjection\XmlCompleteConfigurationTest::testEncoders
1,617x slower : Symfony\Component\HttpKernel\Tests\HttpCache\HttpCacheTest::testDoesNotCacheSomeStatusCodeResponses
1,614x slower : Symfony\Bundle\SecurityBundle\Tests\DependencyInjection\PhpCompleteConfigurationTest::testRolesHierarchy
1,604x slower : Symfony\Component\Process\Tests\ProcessTest::testGetExitCodeIsNullOnStart
1,587x slower : Symfony\Component\Process\Tests\ProcessTest::testIsSuccessfulOnlyAfterTerminated
1,574x slower : Symfony\Bundle\SecurityBundle\Tests\DependencyInjection\SecurityExtensionTest::testFirewallWithoutAuthenticationListener
1,560x slower : Symfony\Component\Process\Tests\ProcessTest::testStatus
1,536x slower : Symfony\Component\Process\Tests\ProcessTest::testTTYCommand
1,462x slower : Symfony\Component\Process\Tests\ProcessTest::testStopWithTimeoutIsActuallyWorking
1,377x slower : Symfony\Bundle\FrameworkBundle\Tests\Templating\Helper\FormHelperDivLayoutTest::testDateTime
1,358x slower : Symfony\Bundle\FrameworkBundle\Tests\Templating\Helper\FormHelperTableLayoutTest::testSingleChoiceRequiredWithEmptyValueViaView
1,329x slower : Symfony\Bundle\FrameworkBundle\Tests\Templating\Helper\FormHelperTableLayoutTest::testMoney
1,285x slower : Symfony\Bundle\FrameworkBundle\Tests\Templating\Helper\FormHelperDivLayoutTest::testTimeWithEmptyValueGlobal
1,260x slower : Symfony\Component\Form\Tests\Extension\Validator\Type\FormTypeValidatorExtensionTest::testValidationGroupsCanBeSetToCallback
1,253x slower : Symfony\Bridge\ProxyManager\Tests\LazyProxy\PhpDumper\ProxyDumperTest::testGetProxyCode
1,227x slower : Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\ConfigurationTest::testValidTrustedProxies with data set #3 (null, array())
1,174x slower : Symfony\Component\Console\Tests\Helper\DialogHelperTest::testAskWithAutocomplete
1,146x slower : Symfony\Component\Process\Tests\ProcessTest::testCheckTimeoutOnStartedProcess
1,119x slower : Symfony\Component\BrowserKit\Tests\ClientTest::testInsulatedRequests
1,117x slower : Symfony\Component\Validator\Tests\Constraints\CardSchemeValidatorTest::testInvalidNumbers with data set #0 ('VISA', '42424242424242424242')
1,106x slower : Symfony\Component\Finder\Tests\BsdFinderTest::testName
1,083x slower : Symfony\Component\ClassLoader\Tests\ClassCollectionLoaderTest::testCommentStripping
1,074x slower : Symfony\Bundle\FrameworkBundle\Tests\Functional\FragmentTest::testFragment with data set #1 (true)
1,073x slower : Symfony\Component\Stopwatch\Tests\StopwatchEventTest::testStartTime
1,065x slower : Symfony\Component\Process\Tests\ProcessTest::testRestart
1,061x slower : Symfony\Component\HttpFoundation\Tests\File\FileTest::testMove
1,014x slower : Symfony\Component\Intl\Tests\NumberFormatter\Verification\NumberFormatterTest::testFormatRoundingModeHalfEven with data set #0 (1.121, '1.12')
1,007x slower : Symfony\Component\Form\Tests\CompoundFormTest::testSetDataSupportsDynamicAdditionAndRemovalOfChildren
</code></pre></div> | 0 |
<p dir="auto"><strong>Description</strong></p>
<p dir="auto">A way to manipulate <code class="notranslate">execution_date</code>, or triggering backfills/catchups from the Web GUI is proposed.</p>
<p dir="auto"><strong>Use case / motivation</strong></p>
<p dir="auto">Web UI and the CLI interface have separate privileges and responsibilities. CLI is mostly geared towards maintenance of the Airflow system itself - while the Web GUI is intended for users using Airflow to manage tasks. Backfill is aligned with the second more closely - it makes no sense that it's not available through the web interface.</p>
<p dir="auto"><a href="https://github.com/AnkurChoraywal/airflow-backfill-util">The sentiment is shared by multiple users.</a></p>
<p dir="auto"><strong>Are you willing to submit a PR?</strong></p>
<p dir="auto">No.</p>
<p dir="auto"><strong>Related Issues</strong></p>
<p dir="auto">Not that I know of.</p> | <h3 dir="auto">Description</h3>
<p dir="auto">I'd like to be able to trigger backfills remotely through a REST API endpoint - there's already support for triggering a single DAGRun so why not multiple?</p>
<p dir="auto">This would involve creating a new endpoint (maybe under <code class="notranslate">/dags/<dag_id>/backfills</code>) which would handle the same parameters as the <code class="notranslate">airflow dag backfill</code> CLI command.</p>
<p dir="auto">A coworker and I would be happy to build out this functionality, but I'd like to collect input from the community and core maintainers before we start.</p>
<h3 dir="auto">Use case/motivation</h3>
<p dir="auto">We use a custom CLI built on top of the Airflow REST API for doing some basic Airflow operations via from the command line - It would be awesome if we could include support for triggering backfills remotely.</p>
<h3 dir="auto">Related issues</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Are you willing to submit a PR?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Yes I am willing to submit a PR!</li>
</ul>
<h3 dir="auto">Code of Conduct</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li>
</ul> | 1 |
<p dir="auto">When I build the APP through Android studio, it gets installed on phone but closes suddenly and throws following <code class="notranslate">error</code> in the Android studio console.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Launching lib/main.dart on HTC Desire 820G PLUS dual sim in debug mode...
Initializing gradle...
Resolving dependencies...
Running 'gradlew assembleDebug'...
Built build/app/outputs/apk/debug/app-debug.apk.
Installing build/app/outputs/apk/app.apk...
I/FlutterActivityDelegate(30286): onResume setting current activity to this
E/DartVM (30286): vm-service: Error: Unhandled exception:
E/DartVM (30286): 'dart:async/future_impl.dart': error: Unexpected tag 0 (Nothing) in ?, expected type
E/DartVM (30286): #0 Future._thenNoZoneRegistration (dart:async/future_impl.dart:250:5)
E/DartVM (30286): #1 _awaitHelper (dart:async/runtime/libasync_patch.dart:110:17)
E/DartVM (30286): #2 Server.startup (dart:vmservice_io/server.dart:364:13)
E/DartVM (30286): <asynchronous suspension>
E/DartVM (30286): #3 main (dart:vmservice_io:239:12)
E/DartVM (30286):
E/flutter (30286): [ERROR:flutter/runtime/dart_isolate.cc(719)] Isolate (1032737077) 'vm-service' exited with an error
E/flutter (30286): [ERROR:topaz/lib/tonic/logging/dart_error.cc(16)] Unhandled exception:
E/flutter (30286): 'dart:async/future_impl.dart': error: Unexpected tag 0 (Nothing) in ?, expected type
E/flutter (30286): #0 Future._thenNoZoneRegistration (dart:async/future_impl.dart:250:5)
E/flutter (30286): #1 _awaitHelper (dart:async/runtime/libasync_patch.dart:110:17)
E/flutter (30286): #2 Server.startup (dart:vmservice_io/server.dart:364:13)
E/flutter (30286): <asynchronous suspension>
E/flutter (30286): #3 main (dart:vmservice_io:239:12)
Application finished.
"><pre class="notranslate"><code class="notranslate">Launching lib/main.dart on HTC Desire 820G PLUS dual sim in debug mode...
Initializing gradle...
Resolving dependencies...
Running 'gradlew assembleDebug'...
Built build/app/outputs/apk/debug/app-debug.apk.
Installing build/app/outputs/apk/app.apk...
I/FlutterActivityDelegate(30286): onResume setting current activity to this
E/DartVM (30286): vm-service: Error: Unhandled exception:
E/DartVM (30286): 'dart:async/future_impl.dart': error: Unexpected tag 0 (Nothing) in ?, expected type
E/DartVM (30286): #0 Future._thenNoZoneRegistration (dart:async/future_impl.dart:250:5)
E/DartVM (30286): #1 _awaitHelper (dart:async/runtime/libasync_patch.dart:110:17)
E/DartVM (30286): #2 Server.startup (dart:vmservice_io/server.dart:364:13)
E/DartVM (30286): <asynchronous suspension>
E/DartVM (30286): #3 main (dart:vmservice_io:239:12)
E/DartVM (30286):
E/flutter (30286): [ERROR:flutter/runtime/dart_isolate.cc(719)] Isolate (1032737077) 'vm-service' exited with an error
E/flutter (30286): [ERROR:topaz/lib/tonic/logging/dart_error.cc(16)] Unhandled exception:
E/flutter (30286): 'dart:async/future_impl.dart': error: Unexpected tag 0 (Nothing) in ?, expected type
E/flutter (30286): #0 Future._thenNoZoneRegistration (dart:async/future_impl.dart:250:5)
E/flutter (30286): #1 _awaitHelper (dart:async/runtime/libasync_patch.dart:110:17)
E/flutter (30286): #2 Server.startup (dart:vmservice_io/server.dart:364:13)
E/flutter (30286): <asynchronous suspension>
E/flutter (30286): #3 main (dart:vmservice_io:239:12)
Application finished.
</code></pre></div> | <p dir="auto">In reference to the camera plugin <a href="https://github.com/flutter/plugins/tree/master/packages/camera">here</a></p>
<h2 dir="auto">Steps to Reproduce</h2>
<p dir="auto">For me,</p>
<ol dir="auto">
<li>Make an app</li>
<li>Get the camera package</li>
<li>Import package:camera/camera.dart</li>
</ol>
<h2 dir="auto">Logs</h2>
<p dir="auto">Android SDK built for x86 • emulator-5554 • android-x86 • Android 8.1.0 (API 27) (emulator)<br>
Joe’s iPhone • 12bd1a65da8516e2414d685901b4c79c34dde2ae • ios • iOS 11.2.6</p>
<p dir="auto">When running flutter run -d 12bd1a65da8516e2414d685901b4c79c34dde2ae</p>
<p dir="auto">Running Xcode clean... 1.3s<br>
Starting Xcode build...<br>
├─Building Dart code... 1.4s<br>
├─Assembling Flutter resources... 2.5s<br>
└─Compiling, linking and signing... 2.4s<br>
Xcode build done 8.9s<br>
Failed to build iOS app<br>
Error output from Xcode build:<br>
↳<br>
** BUILD FAILED **</p>
<p dir="auto">Xcode's output:<br>
↳<br>
=== BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug ===<br>
The use of Swift 3 <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/objc/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/objc">@objc</a> inference in Swift 4 mode is deprecated. Please address deprecated <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/objc/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/objc">@objc</a> inference warnings, test your code with “Use of deprecated Swift 3 <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/objc/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/objc">@objc</a> inference” logging enabled, and then disable inference by changing the "Swift 3 <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/objc/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/objc">@objc</a> Inference" build setting to "Default" for the "Runner" target.<br>
=== BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug ===<br>
/Users/joseph/AndroidStudioProjects/science_fair_app/ios/Runner/GeneratedPluginRegistrant.m:6:9: fatal error: 'camera/CameraPlugin.h' file not found<br>
#import <camera/CameraPlugin.h><br>
^~~~~~~~~~~~~~~~~~~~~~~<br>
1 error generated.<br>
Could not build the precompiled application for the device.</p>
<p dir="auto">Android devices work</p>
<p dir="auto">Running <code class="notranslate">flutter analyze</code><br>
Analyzing /Users/joseph/AndroidStudioProjects/science_fair_app...<br>
No issues found!<br>
Ran in 7.1s</p>
<h2 dir="auto">Flutter Doctor</h2>
<p dir="auto">[✓] Flutter (Channel beta, v0.1.5, on Mac OS X 10.13.2 17C88, locale en-US)<br>
• Flutter version 0.1.5 at /Users/joseph/Library/Flutter/flutter<br>
• Framework revision <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/flutter/flutter/commit/3ea4d06340a97a1e9d7cae97567c64e0569dcaa2/hovercard" href="https://github.com/flutter/flutter/commit/3ea4d06340a97a1e9d7cae97567c64e0569dcaa2"><tt>3ea4d06</tt></a> (7 days ago), 2018-02-22 11:12:39 -0800<br>
• Engine revision <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/flutter/flutter/commit/ead227f118077d1f2b57842a32abaf105b573b8a/hovercard" href="https://github.com/flutter/flutter/commit/ead227f118077d1f2b57842a32abaf105b573b8a"><tt>ead227f</tt></a><br>
• Dart version 2.0.0-dev.28.0.flutter-0b4f01f759</p>
<p dir="auto">[✓] Android toolchain - develop for Android devices (Android SDK 27.0.3)<br>
• Android SDK at /Users/joseph/Library/Android/sdk<br>
• Android NDK location not configured (optional; useful for native profiling support)<br>
• Platform android-27, build-tools 27.0.3<br>
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java<br>
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08)</p>
<p dir="auto">[✓] iOS toolchain - develop for iOS devices (Xcode 9.2)<br>
• Xcode at /Applications/Xcode.app/Contents/Developer<br>
• Xcode 9.2, Build version 9C40b<br>
• ios-deploy 1.9.2<br>
• CocoaPods version 1.4.0</p>
<p dir="auto">[✓] Android Studio (version 3.0)<br>
• Android Studio at /Applications/Android Studio.app/Contents<br>
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08)</p>
<p dir="auto">[✓] IntelliJ IDEA Ultimate Edition (version 2017.3.4)<br>
• Flutter plugin version 22.2.2<br>
• Dart plugin version 173.4127.31</p>
<p dir="auto">[✓] Connected devices (2 available)</p> | 0 |
<p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/numpy/ticket/2169" rel="nofollow">http://projects.scipy.org/numpy/ticket/2169</a> on 2012-06-19 by trac user knopfra, assigned to unknown.</em></p>
<p dir="auto">The array provided in attachment as a pickle file can be used to detect the following issue (64 bit Linux system, python 2.7.3, numpy 1.6.1). The array has 15606478 elements.</p>
<p dir="auto">In [1]: import numpy as np</p>
<p dir="auto">In [2]: a = np.load('data.pkl')</p>
<p dir="auto">In [3]: np.nanmin(a)[[BR]]<br>
Out[3]: 4.715836</p>
<p dir="auto">In [4]: np.nanmax(a)[[BR]]<br>
Out[4]: 4.7189121</p>
<p dir="auto">In [5]: idx = np.where(np.isfinite(a))</p>
<p dir="auto">In [6]: a[idx].mean()[[BR]]<br>
Out[6]: 4.1792714738680736</p>
<p dir="auto">In [7]: from scipy.stats import nanmean</p>
<p dir="auto">In [8]: nanmean(a)[[BR]]<br>
Out[8]: 4.1792714738680727</p>
<p dir="auto">The mean value obtained is clearly wrong.<br>
On a 32 bit system the result is the following:</p>
<p dir="auto">In [1]: import numpy as np</p>
<p dir="auto">In [2]: a = np.load('data.pkl')</p>
<p dir="auto">In [3]: idx = np.where(np.isfinite(a))</p>
<p dir="auto">In [4]: a[idx].mean()[[BR]]<br>
Out[4]: 4.7184738182116019</p>
<p dir="auto">and this time the mean value is correct.</p> | <p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/numpy/ticket/2170" rel="nofollow">http://projects.scipy.org/numpy/ticket/2170</a> on 2012-06-19 by trac user knopfra, assigned to unknown.</em></p>
<p dir="auto">The array provided as a pickle file at the following link [http://dl.dropbox.com/u/30592272/data.pkl.gz] can be used to detect the following issue (64 bit Linux system, python 2.7.3, numpy 1.6.1). The array has 15606478 elements.</p>
<p dir="auto">In [1]: import numpy as np</p>
<p dir="auto">In [2]: a = np.load('data.pkl')</p>
<p dir="auto">In [3]: np.nanmin(a)[[BR]]<br>
Out[3]: 4.715836</p>
<p dir="auto">In [4]: np.nanmax(a)[[BR]]<br>
Out[4]: 4.7189121</p>
<p dir="auto">In [5]: idx = np.where(np.isfinite(a))</p>
<p dir="auto">In [6]: a[idx].mean()[[BR]]<br>
Out[6]: 4.1792714738680736</p>
<p dir="auto">In [7]: from scipy.stats import nanmean</p>
<p dir="auto">In [8]: nanmean(a)[[BR]]<br>
Out[8]: 4.1792714738680727</p>
<p dir="auto">The mean value obtained is clearly wrong.<br>
On a 32 bit system the result is the following:</p>
<p dir="auto">In [1]: import numpy as np</p>
<p dir="auto">In [2]: a = np.load('data.pkl')</p>
<p dir="auto">In [3]: idx = np.where(np.isfinite(a))</p>
<p dir="auto">In [4]: a[idx].mean()[[BR]]<br>
Out[4]: 4.7184738182116019</p>
<p dir="auto">and this time the mean value is correct.</p> | 1 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=andypiper" rel="nofollow">Andy Piper</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-2533?redirect=false" rel="nofollow">SPR-2533</a></strong> and commented</p>
<p dir="auto">JavaBeans support the management of listeners via the addX() methods (see section 6 of the JavaBeans specification, titled "Events"). It would be extremely useful to support this in spring so that event listeners could be added to a bean using standard IoC. This could be done either by overloading the meaning of "property" or introducing a new "listener" tag. For instance given the addX() method on a bean you would like to be able to do the following:</p>
<p dir="auto"><bean id="eventBean"><br>
<property name="X" ref="listener1"/><br>
<property name="X" ref="listener2"/><br>
</bean><br>
<bean id="listener1/><br>
<bean id="listener2/></p>
<hr>
<p dir="auto"><strong>Affects:</strong> 2.0 RC3</p>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398050219" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/4961" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/4961/hovercard" href="https://github.com/spring-projects/spring-framework/issues/4961">#4961</a> Please improve BeanFactory support for containers & collections (<em><strong>"duplicates"</strong></em>)</li>
</ul>
<p dir="auto">4 votes, 3 watchers</p> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=nurkiewicz" rel="nofollow">Tomasz Nurkiewicz</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-8808?redirect=false" rel="nofollow">SPR-8808</a></strong> and commented</p>
<p dir="auto">I am using <code class="notranslate">AnnotationConfigWebApplicationContext</code> and XML-free testing support with <code class="notranslate">@ContextConfiguration(classes=...)</code>. When pointed <code class="notranslate">@Configuration</code> class contains <code class="notranslate">@ComponentScan</code> with a package containing that class:</p>
<div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="package com.example.foo;
@Configuration
@ComponentScan(basePackages = "com.example.foo")
public class Config { }"><pre class="notranslate"><span class="pl-k">package</span> <span class="pl-s1">com</span>.<span class="pl-s1">example</span>.<span class="pl-s1">foo</span>;
<span class="pl-c1">@</span><span class="pl-c1">Configuration</span>
<span class="pl-c1">@</span><span class="pl-c1">ComponentScan</span>(<span class="pl-s1">basePackages</span> = <span class="pl-s">"com.example.foo"</span>)
<span class="pl-k">public</span> <span class="pl-k">class</span> <span class="pl-smi">Config</span> { }</pre></div>
<p dir="auto">I get unexpected exception:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'config' for bean class [com.example.foo.Config] conflicts with existing, non-compatible bean definition of same name and class [com.example.foo.Config]"><pre class="notranslate"><code class="notranslate">org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'config' for bean class [com.example.foo.Config] conflicts with existing, non-compatible bean definition of same name and class [com.example.foo.Config]
</code></pre></div>
<p dir="auto">While I understand why it happens, IMHO Spring should handle this case and simply ignore <code class="notranslate">@Configuration</code> found in scanned package if it has already been provided in <code class="notranslate">AnnotationConfigWebApplicationContext</code>.</p>
<p dir="auto">Test case attached. On branch <code class="notranslate">master</code> you'll find a test case failing, branch <code class="notranslate">fix</code> fixes the problem by simply <code class="notranslate">@Config</code> to another package.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.1 RC1</p>
<p dir="auto"><strong>Attachments:</strong></p>
<ul dir="auto">
<li><a href="https://jira.spring.io/secure/attachment/19027/testcase2.zip" rel="nofollow">testcase2.zip</a> (<em>25.13 kB</em>)</li>
<li><a href="https://jira.spring.io/secure/attachment/19101/testcase3.zip" rel="nofollow">testcase3.zip</a> (<em>29.18 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="398115777" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13521" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13521/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13521">#13521</a> Default <code class="notranslate">@ComponentScan</code>'s exclude filter to exclude <code class="notranslate">@Configuration</code> annotated classes (<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="398112157" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12956" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12956/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12956">#12956</a> Allow recursive use of <code class="notranslate">@ComponentScan</code></li>
</ul>
<p dir="auto"><strong>Referenced from:</strong> commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/ca4eafd4dda3877d5bcce03c6d5aa98edded1375/hovercard" href="https://github.com/spring-projects/spring-framework/commit/ca4eafd4dda3877d5bcce03c6d5aa98edded1375"><tt>ca4eafd</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/6991cd9cdf610f94ace3cd8072634106830b439f/hovercard" href="https://github.com/spring-projects/spring-framework/commit/6991cd9cdf610f94ace3cd8072634106830b439f"><tt>6991cd9</tt></a></p> | 0 |
<p dir="auto">This is showing up in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="904275878" data-permission-text="Title is private" data-url="https://github.com/scipy/scipy/issues/14148" data-hovercard-type="pull_request" data-hovercard-url="/scipy/scipy/pull/14148/hovercard" href="https://github.com/scipy/scipy/pull/14148">gh-14148</a>, where I'm trying to move forward with the <code class="notranslate">1.7.0</code> release candidate process.</p>
<p dir="auto">Raw log link: <a href="https://dev.azure.com/scipy-org/df8ffb44-7275-43bc-90f9-aa5c93ef5c51/_apis/build/builds/12443/logs/134" rel="nofollow">https://dev.azure.com/scipy-org/df8ffb44-7275-43bc-90f9-aa5c93ef5c51/_apis/build/builds/12443/logs/134</a></p>
<p dir="auto">The (messy combination of hard crashes and test failures) tracebacks are below the fold as well. For example, a <code class="notranslate">corrupted double-linked list</code> and segfaults show up in <code class="notranslate">scipy.optimize</code> tests. (<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mdhaber/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mdhaber">@mdhaber</a> safe to ignore on release branch or?)</p>
<details>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2021-05-31T23:54:51.2962266Z ........................................................................ [ 38%]
2021-05-31T23:54:51.5965383Z ........................................................................ [ 39%]
2021-05-31T23:54:51.6375987Z ...........Fatal Python error: Aborted
2021-05-31T23:54:51.6377443Z
2021-05-31T23:54:51.6381244Z Thread 0x00007fdd57cfa700 (most recent call first):
2021-05-31T23:54:51.6428636Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-pack.ages/execnet/gateway_base.py", line 400 in read
2021-05-31T23:54:51.6477967Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-.packages/execnet/gateway_base.py", line 432 in from_io
2021-05-31T23:54:51.6530648Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/s.ite-packages/execnet/gateway_base.py", line 967 in _thread_receiver
2021-05-31T23:54:51.6555703Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-pa.ckages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:54:51.6575040Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:54:51.6576795Z
2021-05-31T23:54:51.6579465Z Current thread 0x00007fdd59ae0740 (most recent call first):
2021-05-31T23:54:51.6613602Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/_basinhopping.py", line 712 in .basinhopping
2021-05-31T23:54:51.6621341Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py", line 141 in test_1d_grad
2021-05-31T23:54:51.6642255Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 183 in pytest_pyfunc_call
2021-05-31T23:54:51.6643699Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:54:51.6645057Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:54:51.6646320Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:54:51.6647485Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:54:51.6648612Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 1641 in runtest
2021-05-31T23:54:51.6650917Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 162 in pytest_runtest_call
2021-05-31T23:54:51.6652254Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:54:51.6654686Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:54:51.6655978Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:54:51.6657666Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:54:51.6658820Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in <lambda>
2021-05-31T23:54:51.6659930Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 311 in from_call
2021-05-31T23:54:51.6661732Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in call_runtest_hook
2021-05-31T23:54:51.6662937Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 215 in call_and_report
2021-05-31T23:54:51.6664075Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 126 in runtestprotocol
2021-05-31T23:54:51.6665384Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 109 in pytest_runtest_protocol
2021-05-31T23:54:51.6666497Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:54:51.6691893Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/.site-packages/pluggy/manager.py", line 87 in <lamb.da>
2021-05-31T23:54:51.6722385Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:54:51.6738335Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/plug.gy/hooks.py", line 281 in __call__
2021-05-31T23:54:51.6756030Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 89 in run_one_test
2021-05-31T23:54:51.6761390Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 72 in pytest_runtestloop
2021-05-31T23:54:51.6780635Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:54:51.6782081Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:54:51.6783302Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:54:51.6784477Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:54:51.6785626Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 323 in _main
2021-05-31T23:54:51.6787745Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 269 in wrap_session
2021-05-31T23:54:51.6789848Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 316 in pytest_cmdline_main
2021-05-31T23:54:51.6791639Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:54:51.6792899Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:54:51.6794071Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:54:51.6795790Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:54:51.6797027Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 244 in <module>
2021-05-31T23:54:51.6798223Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1084 in executetask
2021-05-31T23:54:51.6828559Z File "/opt/hostedtoolcache/Pyt.hon/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line .220 in run
2021-05-31T23:54:51.6847555Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:54:51.6860158Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 267 in integrate_as_primary_thread
2021-05-31T23:54:51.6861569Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1060 in serve
2021-05-31T23:54:51.6862810Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1554 in serve
2021-05-31T23:54:51.6863620Z File "<string>", line 8 in <module>
2021-05-31T23:54:51.6864250Z File "<string>", line 1 in <module>
2021-05-31T23:54:51.8752322Z ................................................... [ 39%]
2021-05-31T23:54:52.1043955Z ........................................................................ [ 39%]
2021-05-31T23:54:52.3855075Z ........................................................................ [ 39%]
2021-05-31T23:54:52.6391637Z ........................................................................ [ 39%]
2021-05-31T23:54:52.9023897Z ........................................................................ [ 40%]
2021-05-31T23:54:53.1852197Z ........................................................................ [ 40%]
2021-05-31T23:54:53.4688798Z ........................................................................ [ 40%]
2021-05-31T23:54:54.5367526Z .............................s..s.ss.................................... [ 40%]
2021-05-31T23:54:55.6810852Z .......................................s................................ [ 40%]
2021-05-31T23:54:57.1195809Z .........................................s.X............................ [ 41%]
2021-05-31T23:54:58.0700342Z ..............................................s.sX...................... [ 41%]
2021-05-31T23:54:58.5138636Z ......................................................sssss............. [ 41%]
2021-05-31T23:54:59.1447171Z .................................................................ssss... [ 41%]
2021-05-31T23:54:59.5673242Z .......................................................................s [ 41%]
2021-05-31T23:55:01.2658500Z ........................................................................ [ 42%]
2021-05-31T23:55:06.8408630Z ................s....................................................... [ 42%]
2021-05-31T23:55:22.1973634Z .................F.corrupted double-linked list
2021-05-31T23:55:22.1978070Z Fatal Python error: Aborted
2021-05-31T23:55:22.1978800Z
2021-05-31T23:55:22.1981726Z Thread 0x00007f1f9a63c700 (most recent call first):
2021-05-31T23:55:22.2029508Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 400 in read
2021-05-31T23:55:22.2073943Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 432 in from_io
2021-05-31T23:55:22.2122105Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 967 in _thread_receiver
2021-05-31T23:55:22.2140164Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:55:22.2155664Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:55:22.2156494Z
2021-05-31T23:55:22.2158987Z Current thread 0x00007f1f9c422740 (most recent call first):
2021-05-31T23:55:22.2173029Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/capture.py", line 480 in snap
2021-05-31T23:55:22.2188072Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/capture.py", line 618 in readouterr
2021-05-31T23:55:22.2224906Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/capture.py", line 718 in read_global_capture
2021-05-31T23:55:22.2226311Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/capture.py", line 784 in item_capture
2021-05-31T23:55:22.2227206Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/contextlib.py", line 119 in __exit__
2021-05-31T23:55:22.2228524Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/capture.py", line 813 in pytest_runtest_call
2021-05-31T23:55:22.2229769Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 130 in _multicall
2021-05-31T23:55:22.2230992Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:55:22.2232183Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:55:22.2233394Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:55:22.2234771Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in <lambda>
2021-05-31T23:55:22.2235972Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 311 in from_call
2021-05-31T23:55:22.2237205Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in call_runtest_hook
2021-05-31T23:55:22.2238452Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 215 in call_and_report
2021-05-31T23:55:22.2239674Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 126 in runtestprotocol
2021-05-31T23:55:22.2240943Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 109 in pytest_runtest_protocol
2021-05-31T23:55:22.2242196Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:55:22.2243439Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:55:22.2244640Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:55:22.2246054Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:55:22.2248353Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 89 in run_one_test
2021-05-31T23:55:22.2249407Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 72 in pytest_runtestloop
2021-05-31T23:55:22.2250425Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:55:22.2251409Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:55:22.2252408Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:55:22.2253396Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:55:22.2254357Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 323 in _main
2021-05-31T23:55:22.2255343Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 269 in wrap_session
2021-05-31T23:55:22.2256358Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 316 in pytest_cmdline_main
2021-05-31T23:55:22.2257355Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:55:22.2258491Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:55:22.2259487Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:55:22.2260455Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:55:22.2261434Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 244 in <module>
2021-05-31T23:55:22.2262461Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1084 in executetask
2021-05-31T23:55:22.2263471Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:55:22.2264491Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:55:22.2265559Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 267 in integrate_as_primary_thread
2021-05-31T23:55:22.2266704Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1060 in serve
2021-05-31T23:55:22.2267709Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1554 in serve
2021-05-31T23:55:22.2268311Z File "<string>", line 8 in <module>
2021-05-31T23:55:22.2268772Z File "<string>", line 1 in <module>
2021-05-31T23:55:52.3847794Z [gw0] node down: Not properly terminated
2021-05-31T23:55:52.3989360Z F
2021-05-31T23:55:52.3990017Z replacing crashed worker gw0
2021-05-31T23:56:08.0510798Z ........................................................................ [ 42%]
2021-05-31T23:56:08.5385581Z ........................................................................ [ 42%]
2021-05-31T23:56:09.0988324Z ........................................................................ [ 43%]
2021-05-31T23:56:09.3856244Z ........................................................................ [ 43%]
2021-05-31T23:56:10.3487660Z ........................................................................ [ 43%]
2021-05-31T23:56:10.9841789Z .................................xxxxx..xx..xx.......................... [ 43%]
2021-05-31T23:56:11.6820609Z ........................................................................ [ 43%]
2021-05-31T23:56:12.4958074Z ..........xxxx...........xxxx........................................... [ 44%]
2021-05-31T23:56:13.0301061Z ........................................................................ [ 44%]
2021-05-31T23:56:13.3910302Z ............................................x.x......................... [ 44%]
2021-05-31T23:56:14.3380229Z ......................x..x...x.......................................... [ 44%]
2021-05-31T23:56:14.6091780Z ........................................................................ [ 44%]
2021-05-31T23:56:14.9288875Z ........................................................................ [ 45%]
2021-05-31T23:56:19.3095185Z ........................................................................ [ 45%]
2021-05-31T23:56:19.5763731Z ........................................................................ [ 45%]
2021-05-31T23:56:19.8410144Z ........................................................................ [ 45%]
2021-05-31T23:56:20.1007091Z ........................................................................ [ 45%]
2021-05-31T23:56:21.6612190Z ........................................................................ [ 46%]
2021-05-31T23:56:21.9253948Z ........................................................................ [ 46%]
2021-05-31T23:56:22.2659321Z ......s.s.s............................................................. [ 46%]
2021-05-31T23:56:22.5308205Z ........................................................................ [ 46%]
2021-05-31T23:56:22.8041219Z ........................................................................ [ 46%]
2021-05-31T23:56:23.0779370Z ........................................................................ [ 47%]
2021-05-31T23:56:23.3532979Z ........................................................................ [ 47%]
2021-05-31T23:56:23.7042987Z ................xxxxxxxxxxxxxxx......................................... [ 47%]
2021-05-31T23:56:32.9251637Z ......................................................x..x..x........... [ 47%]
2021-05-31T23:56:33.6007453Z ........................................[gw1] node down: Not properly terminated
2021-05-31T23:56:33.6172845Z F
2021-05-31T23:56:33.6175288Z replacing crashed worker gw1
2021-05-31T23:56:49.5423793Z .......................................................ssssss..........s [ 48%]
2021-05-31T23:56:51.7561102Z ss.s.x.s................................................................ [ 48%]
2021-05-31T23:56:53.2738800Z ...............s.......sssss.ssssssssssssssssssssssssssssssssssss....... [ 48%]
2021-05-31T23:56:55.2959036Z ....s...........x.x.x................s.................................. [ 48%]
2021-05-31T23:56:56.1392287Z ...........................xx......s.................................... [ 48%]
2021-05-31T23:56:59.4411685Z ......................................sss...xx.......................... [ 49%]
2021-05-31T23:57:00.4046726Z ................................................s....................... [ 49%]
2021-05-31T23:57:03.8049052Z ..........................................sss..xx....................... [ 49%]
2021-05-31T23:57:05.1013701Z ................................................s......sssss.sssssssssss [ 49%]
2021-05-31T23:57:07.0308206Z sssssssssssssssssssssssss............................................... [ 50%]
2021-05-31T23:57:07.2475309Z ...................................................s...............x.... [ 50%]
2021-05-31T23:57:07.8509368Z ....x.......x.sss.......x.......xs.sssss.ss............................. [ 50%]
2021-05-31T23:57:08.4399004Z .................................................................s...... [ 50%]
2021-05-31T23:57:09.0481816Z sssss.ssssssssssssssssssssssssssssssssssss.............................. [ 50%]
2021-05-31T23:57:09.4633135Z ......s................................................................. [ 51%]
2021-05-31T23:57:09.7601181Z ......................................................................... [ 51%]
2021-05-31T23:57:10.0027766Z ......................................x................................. [ 51%]
2021-05-31T23:57:10.3096966Z ..................ss.s.................................................. [ 51%]
2021-05-31T23:57:10.7474759Z ........................................................................ [ 51%]
2021-05-31T23:57:10.9980978Z ........................................................s.s........s.s.. [ 52%]
2021-05-31T23:57:11.2457616Z ........................................s............................... [ 52%]
2021-05-31T23:57:11.6464433Z ........s...........................s.s.s.s.s.s.ss.s.ssssss.ss.......... [ 52%]
2021-05-31T23:57:12.1160063Z ..................s.s..s....s.s.................................s...s..x [ 52%]
2021-05-31T23:57:12.9487319Z ........................................................................ [ 52%]
2021-05-31T23:57:13.2946733Z .........................................................s..........ss.. [ 53%]
2021-05-31T23:57:13.6040634Z ................sssss........x.......................................... [ 53%]
2021-05-31T23:57:13.9525309Z .....................................................x.s..ssss.s.s.s.... [ 53%]
2021-05-31T23:57:15.1310588Z .............s........ss.ss.............s.....s..ssssssssssssssssss....s [ 53%]
2021-05-31T23:57:15.6796663Z sss.s..s...s..s.xsss.................................................... [ 53%]
2021-05-31T23:57:15.9234717Z .........s.s...ss.....................................s.sss............. [ 54%]
2021-05-31T23:57:16.4153161Z .....................................s.........sss.ss.s..s.............. [ 54%]
2021-05-31T23:57:17.4030630Z .......s...............................................s................ [ 54%]
2021-05-31T23:57:18.1970387Z ...................................................................s.... [ 54%]
2021-05-31T23:57:18.4638343Z ........................................................................ [ 54%]
2021-05-31T23:57:18.7267835Z ........................................................................ [ 55%]
2021-05-31T23:57:18.9571538Z ........................................................................ [ 55%]
2021-05-31T23:57:19.2645303Z ...................s.................................................... [ 55%]
2021-05-31T23:57:19.8092609Z ..............................................s......................... [ 55%]
2021-05-31T23:57:20.6021365Z ........................................s..........................ss... [ 56%]
2021-05-31T23:57:21.3810153Z ..........s............................................................. [ 56%]
2021-05-31T23:57:21.9962316Z ......................s................................................. [ 56%]
2021-05-31T23:57:22.6021209Z ................................................................s....... [ 56%]
2021-05-31T23:57:23.9394007Z ............s.................s......................................... [ 56%]
2021-05-31T23:57:24.4477298Z ...........................s.ss.ss.........s............................ [ 57%]
2021-05-31T23:57:24.6640170Z ...........s...........s.s.s..s.s.ss.s..s..s.s.s..s.s..ss.ss....ssss.ss. [ 57%]
2021-05-31T23:57:25.0408275Z s...s..s.xss..........................s................................. [ 57%]
2021-05-31T23:57:25.2761488Z .........s.s.s.....................s......................s............. [ 57%]
2021-05-31T23:57:26.2190957Z ...ss.ss................ssss...s.....s.s.ss.s.s....s.................... [ 57%]
2021-05-31T23:57:26.2814649Z ........s........Fatal Python error: Aborted
2021-05-31T23:57:26.2819382Z
2021-05-31T23:57:26.2820063Z Thread 0x00007f7b59bc9700 (most recent call first):
2021-05-31T23:57:26.2846137Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 400 in read
2021-05-31T23:57:26.2886914Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 432 in from_io
2021-05-31T23:57:26.2931754Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 967 in _thread_receiver
2021-05-31T23:57:26.2954858Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway._base.py", line 220 in run
2021-05-31T23:57:26.2969299Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:57:26.2970289Z
2021-05-31T23:57:26.2971045Z Current thread 0x00007f7b5b9af740 (most recent call first):
2021-05-31T23:57:26.2983889Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/_basinhopping.py", line 712 in basinhopping
2021-05-31T23:57:26.2997830Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py", line 148 in test_2d
2021-05-31T23:57:26.3042512Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 183 in pytest_pyfunc_call
2021-05-31T23:57:26.3044172Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:57:26.3045717Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:57:26.3047020Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:57:26.3048244Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:57:26.3049460Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 1641 in runtest
2021-05-31T23:57:26.3050896Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 162 in pytest_runtest_call
2021-05-31T23:57:26.3052145Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:57:26.3053364Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:57:26.3054555Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:57:26.3055754Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:57:26.3056955Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in <lambda>
2021-05-31T23:57:26.3058139Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 311 in from_call
2021-05-31T23:57:26.3059370Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in call_runtest_hook
2021-05-31T23:57:26.3060752Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 215 in call_and_report
2021-05-31T23:57:26.3061999Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 126 in runtestprotocol
2021-05-31T23:57:26.3063246Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 109 in pytest_runtest_protocol
2021-05-31T23:57:26.3064485Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:57:26.3065693Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:57:26.3166512Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:57:26.3168121Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:57:26.3169426Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 89 in run_one_test
2021-05-31T23:57:26.3170690Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 72 in pytest_runtestloop
2021-05-31T23:57:26.3171928Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:57:26.3173132Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:57:26.3174378Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:57:26.3175595Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:57:26.3176779Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 323 in _main
2021-05-31T23:57:26.3177992Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 269 in wrap_session
2021-05-31T23:57:26.3179237Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 316 in pytest_cmdline_main
2021-05-31T23:57:26.3180459Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:57:26.3181673Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:57:26.3182947Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:57:26.3184365Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:57:26.3185575Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 244 in <module>
2021-05-31T23:57:26.3186881Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1084 in executetask
2021-05-31T23:57:26.3188135Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:57:26.3189391Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:57:26.3192919Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 267 in integrate_as_primary_thread
2021-05-31T23:57:26.3194216Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1060 in serve
2021-05-31T23:57:26.3195381Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1554 in serve
2021-05-31T23:57:26.3196276Z File "<string>", line 8 in <module>
2021-05-31T23:57:26.3196871Z File "<string>", line 1 in <module>
2021-05-31T23:57:26.4607491Z ......................[gw3] node down: Not properly terminated
2021-05-31T23:57:26.4653313Z F
2021-05-31T23:57:26.4654027Z replacing crashed worker gw3
2021-05-31T23:57:29.3983645Z ........................................................................ [ 58%]
2021-05-31T23:57:30.8296731Z ........................................................................ [ 58%]
2021-05-31T23:57:32.7163515Z .........s.....s........................................................ [ 58%]
2021-05-31T23:57:33.1930899Z ........................................................................ [ 58%]
2021-05-31T23:57:34.1627676Z ........................................................................ [ 59%]
2021-05-31T23:57:34.4342475Z ........................................................................ [ 59%]
2021-05-31T23:57:36.0332775Z s...............s....................................................... [ 59%]
2021-05-31T23:57:37.3939104Z ........................................................................ [ 59%]
2021-05-31T23:57:39.7591148Z ........................................................................ [ 59%]
2021-05-31T23:57:41.0522856Z ........................................................................ [ 60%]
2021-05-31T23:57:41.2727211Z ................s............s......ssssss.ss..s........s........s...... [ 60%]
2021-05-31T23:57:41.5172794Z ..s........s......ssssssss...s.......s........s........s........s......s [ 60%]
2021-05-31T23:57:41.7573827Z ssssss.s..s........s........s.......s........s......sssssss.s..s........ [ 60%]
2021-05-31T23:57:42.0032708Z s........s.......s........s......ssssss.ss..s........s........s........s [ 60%]
2021-05-31T23:57:42.2254761Z .......s......ssss.ssss..s.......s........s............s................ [ 61%]
2021-05-31T23:57:42.3866997Z s..........s..s.s.s..s.s.s..s......s.............s..................s... [ 61%]
2021-05-31T23:57:42.5502701Z .............s................s.............s.s.s.s.ss.ss.....s.......... [ 61%]
2021-05-31T23:57:42.7115450Z ........s...............s................s...............s.........ss.ss [ 61%]
2021-05-31T23:57:42.8778017Z s.ss.s....s..............s.............s............s...........s........ [ 61%]
2021-05-31T23:57:43.0395681Z ...s..ss.s..s.s.s..s....s...............s.................s............. [ 62%]
2021-05-31T23:57:43.1941508Z ..s.................s.............s.s.s.s..s.s..s.s......s.............. [ 62%]
2021-05-31T23:57:43.3960889Z ...s................s................................................... [ 62%]
2021-05-31T23:57:43.7640976Z ...................................................s........s.s.s......s [ 62%]
2021-05-31T23:57:44.0201711Z sssssss..s.......s.......s.....sssssssssssssssssssssssssssssssssssssssss [ 62%]
2021-05-31T23:57:44.2817618Z ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 63%]
2021-05-31T23:57:44.5327285Z sssssssssssssssssssssssss.ssssssssssssssssssssssssssssssssssssssssssssss [ 63%]
2021-05-31T23:57:44.7855119Z ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 63%]
2021-05-31T23:57:45.0470762Z ssssssssssssssssssssssssssssssss..s.......s.....ssssssss..s.......s..... [ 63%]
2021-05-31T23:57:45.3174748Z ..s.......s.......s.....ssssssss..s.......s.......s.......s.......s..... [ 64%]
2021-05-31T23:57:45.5858622Z ssssssss..s.......s.......s.......s.......s.....ssssssss..s.......s..... [ 64%]
2021-05-31T23:57:45.8552196Z ..s.......s.......s.....ssssssss..s.......s.......s.......s.......s..... [ 64%]
2021-05-31T23:57:46.1238776Z ssssssss..s.......s.......s.......s.......s.....ssssssss..s.......s..... [ 64%]
2021-05-31T23:57:46.3940430Z ..s.......s.......s.....ssssssss..s.......s.......s.......s.......s..... [ 64%]
2021-05-31T23:57:46.6586153Z ssssssss..s.......s.......s.......s.......s.....ssssssss..s.......s..... [ 65%]
2021-05-31T23:57:46.9275641Z ..s.......s.......s.....ssssssss..s.......s.......s.......s.......s..... [ 65%]
2021-05-31T23:57:47.1929698Z ssssssss..s.......s.......s.......s.......s.....ssssssss..s.......s..... [ 65%]
2021-05-31T23:57:47.4641016Z ..s.......s.......s.....ssssssss..s.......s.......s.......s.......s..... [ 65%]
2021-05-31T23:57:47.7013982Z ssssssss..s.......s.......s............s.......s......ssss.ssss..s...... [ 65%]
2021-05-31T23:57:47.9009600Z ..s.........s.............s........s.......ssss.sss.s...s............s.. [ 66%]
2021-05-31T23:57:48.0716766Z ...............s.................s............s..........ss.s.ss.s.ss... [ 66%]
2021-05-31T23:57:48.2721882Z ..s.............s............s................s......................... [ 66%]
2021-05-31T23:57:48.4374913Z ........................................................................ [ 66%]
2021-05-31T23:57:48.6049957Z ........................................................................ [ 66%]
2021-05-31T23:57:48.8689496Z ........................................................................ [ 67%]
2021-05-31T23:57:49.7195994Z ....xxx................................................................. [ 67%]
2021-05-31T23:57:50.0726931Z ........................................................................ [ 67%]
2021-05-31T23:57:50.6457109Z ........................................................................ [ 67%]
2021-05-31T23:57:50.8694805Z ........................................................................ [ 67%]
2021-05-31T23:57:51.2692761Z .............s..s....................................................... [ 68%]
2021-05-31T23:57:51.6531025Z ........................................................................ [ 68%]
2021-05-31T23:57:52.0410357Z ........................................................................ [ 68%]
2021-05-31T23:57:52.3454508Z ........................................................................ [ 68%]
2021-05-31T23:57:52.6641758Z ........................................................................ [ 69%]
2021-05-31T23:57:53.0360282Z ........................................................................ [ 69%]
2021-05-31T23:57:53.4585433Z .............s.......................................................... [ 69%]
2021-05-31T23:57:53.7615096Z .............................................s...s...s.s..ss.......s.... [ 69%]
2021-05-31T23:57:54.4541503Z ........................................................................ [ 69%]
2021-05-31T23:57:55.0441243Z .................................................s.s.s.s.s.ssss......... [ 70%]
2021-05-31T23:57:55.4779890Z ....................s.s.s.s.s.s.sss..................................... [ 70%]
2021-05-31T23:57:55.8406882Z ........................................................................ [ 70%]
2021-05-31T23:57:56.3287125Z ........................................................................ [ 70%]
2021-05-31T23:57:56.7324611Z ........................................................................ [ 70%]
2021-05-31T23:57:57.0008311Z ........................................................................ [ 71%]
2021-05-31T23:57:57.9652658Z ........................................................................ [ 71%]
2021-05-31T23:57:58.8243839Z ........................................................................ [ 71%]
2021-05-31T23:57:59.6057234Z ........................................................................ [ 71%]
2021-05-31T23:58:00.5323611Z ...................................................................x.... [ 71%]
2021-05-31T23:58:03.0331032Z ..................x.....xx......................x.xxx...............ss.. [ 72%]
2021-05-31T23:58:04.4935813Z .......s....................................................x..x....x... [ 72%]
2021-05-31T23:58:06.2544405Z .........sx............................................................. [ 72%]
2021-05-31T23:58:06.9876584Z ........................................................................ [ 72%]
2021-05-31T23:58:07.7311721Z .................X...................................................... [ 72%]
2021-05-31T23:58:08.2719462Z .......................ss.s....sssssssssssssssssssssssssssssssssssssssss [ 73%]
2021-05-31T23:58:09.3539696Z sssssssssss............................................................. [ 73%]
2021-05-31T23:58:10.1672017Z .......x...............................................................s [ 73%]
2021-05-31T23:58:10.6928365Z .......x........................................x....................... [ 73%]
2021-05-31T23:58:11.0088739Z ....x..............Fatal Python error: Aborted
2021-05-31T23:58:11.0089758Z
2021-05-31T23:58:11.0090437Z Thread 0x00007fa2ae4d7700 (most recent call first):
2021-05-31T23:58:11.0128179Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 400 in read
2021-05-31T23:58:11.0169885Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 432 in from_io
2021-05-31T23:58:11.0215062Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 967 in _thread_receiver
2021-05-31T23:58:11.0239749Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:58:11.0252673Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:58:11.0253616Z
2021-05-31T23:58:11.0254396Z Current thread 0x00007fa2b02bd740 (most recent call first):
2021-05-31T23:58:11.0267115Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_optimize.py", line 780 in test_l_bfgs_b
2021-05-31T23:58:11.0310310Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 183 in pytest_pyfunc_call
2021-05-31T23:58:11.0311870Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:58:11.0313164Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:58:11.0314416Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:58:11.0315678Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:58:11.0316898Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 1641 in runtest
2021-05-31T23:58:11.0318125Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 162 in pytest_runtest_call
2021-05-31T23:58:11.0319359Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:58:11.0320580Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:58:11.0321989Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:58:11.0323215Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:58:11.0324422Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in <lambda>
2021-05-31T23:58:11.0325899Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 311 in from_call
2021-05-31T23:58:11.0327144Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in call_runtest_hook
2021-05-31T23:58:11.0328398Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 215 in call_and_report
2021-05-31T23:58:11.0329619Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 126 in runtestprotocol
2021-05-31T23:58:11.0330885Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 109 in pytest_runtest_protocol
2021-05-31T23:58:11.0332285Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:58:11.0333490Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:58:11.0406735Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:58:11.0408277Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:58:11.0409621Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 89 in run_one_test
2021-05-31T23:58:11.0410894Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 72 in pytest_runtestloop
2021-05-31T23:58:11.0412137Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:58:11.0413370Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:58:11.0414590Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:58:11.0415788Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:58:11.0417008Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 323 in _main
2021-05-31T23:58:11.0418222Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 269 in wrap_session
2021-05-31T23:58:11.0419456Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 316 in pytest_cmdline_main
2021-05-31T23:58:11.0420679Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:58:11.0421895Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:58:11.0423107Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:58:11.0424302Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:58:11.0425508Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 244 in <module>
2021-05-31T23:58:11.0426882Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1084 in executetask
2021-05-31T23:58:11.0428113Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:58:11.0429579Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:58:11.0433506Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 267 in integrate_as_primary_thread
2021-05-31T23:58:11.0434814Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1060 in serve
2021-05-31T23:58:11.0435984Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1554 in serve
2021-05-31T23:58:11.0436725Z File "<string>", line 8 in <module>
2021-05-31T23:58:11.0437308Z File "<string>", line 1 in <module>
2021-05-31T23:58:11.1863462Z [gw2] node down: Not properly terminated
2021-05-31T23:58:11.1944400Z F
2021-05-31T23:58:11.1966262Z replacing crashed worker gw2
2021-05-31T23:58:13.0320124Z ........................................................................ [ 74%]
2021-05-31T23:58:13.8058795Z ..............................s......................................... [ 74%]
2021-05-31T23:58:15.2202744Z ...........................s.ssssss..................................... [ 74%]
2021-05-31T23:58:16.1004011Z ................................s....................................... [ 74%]
2021-05-31T23:58:18.3369711Z ...........sss...s........s................ss....................s.....s [ 74%]
2021-05-31T23:58:19.7716119Z .s......s..ss.........sss....s..................................s....... [ 75%]
2021-05-31T23:58:20.8787949Z .......s.....s.......................ss.....................s.......s... [ 75%]
2021-05-31T23:58:22.3414569Z ....s..s...s.........sss...s....................................s....... [ 75%]
2021-05-31T23:58:23.8364073Z ......s.......ss.ss.................s......s...sssssssssssssssss.....sss [ 75%]
2021-05-31T23:58:25.4114796Z .ss.....s..s.x................s..ss.................sssssxxs..sssss.s.s. [ 75%]
2021-05-31T23:58:26.5594631Z ..........s.......ss.ss.............s..sss.......s..sssss.sssssssssssss. [ 76%]
2021-05-31T23:58:27.1257962Z ...ssss.s...s......s...s...xsss..............ss.ss.................ssss. [ 76%]
2021-05-31T23:58:27.7344819Z ..ss.ss.................ss.sss...sssss.s.s....s..sssss.s.s.............. [ 76%]
2021-05-31T23:58:28.6466500Z s...............s....................................................... [ 76%]
2021-05-31T23:58:29.4382248Z ............s..............s............................................ [ 76%]
2021-05-31T23:58:30.7154831Z s.......................s......................................s........ [ 77%]
2021-05-31T23:58:31.9952557Z ................s.......................................ss.............. [ 77%]
2021-05-31T23:58:32.5880522Z .....................ss................s.......s........................ [ 77%]
2021-05-31T23:58:33.5602351Z ......s......................s............................ss............ [ 77%]
2021-05-31T23:58:34.4852801Z .........s.............................................s................ [ 77%]
2021-05-31T23:58:35.8921854Z ......s...............s...........s....................s.ss.ss.........s [ 78%]
2021-05-31T23:58:36.2969397Z .......s..ssssssssssssssssss....ssss.ss.s.......s......s..........xs.s.. [ 78%]
2021-05-31T23:58:37.2871504Z ...s...........sss.........ss..ss................ssss...s........s..ssss [ 78%]
2021-05-31T23:58:38.5839425Z s.s...s..........s.............s......s........s........s...ss...ss..... [ 78%]
2021-05-31T23:58:38.9888025Z ....s.......ss....................s.....s...sssssssss.ssss.ssss.ss.s.... [ 79%]
2021-05-31T23:58:39.7477428Z ....ss.ss.ss.sss..s....s....s..xss........sss.....sss....s.............. [ 79%]
2021-05-31T23:58:40.6350667Z ............ss.ss................ssss...........s.......s..sssss.s.s.... [ 79%]
2021-05-31T23:58:41.7773457Z ........s............s......s.......................ss.................. [ 79%]
2021-05-31T23:58:42.5200227Z ...s.......s.......s..s...s......s........s............s.ss.......ss.... [ 79%]
2021-05-31T23:58:43.0465810Z ..................s.s........................s..s..........s..ss........ [ 80%]
2021-05-31T23:58:44.4106609Z ...........sss..s................s...s.................................. [ 80%]
2021-05-31T23:58:44.9629347Z ...ss.ss....s....................s......s...........s..ss.ss.ss.ssssssss [ 80%]
2021-05-31T23:58:46.2740250Z sss.....sss.ss.....s..s.x..s....................................ss...... [ 80%]
2021-05-31T23:58:46.6979330Z ...............s.......s......s...s..s...s......ss..................ssss [ 80%]
2021-05-31T23:58:47.8351083Z sx....sssxs..sssss.s.s.......s...............................s.......... [ 81%]
2021-05-31T23:58:48.4158190Z ......s........ss.ss.............s.....s..ssssssssssssssssss....ssss.s.. [ 81%]
2021-05-31T23:58:49.0044669Z s...s..s.xsss.............s......................ss.ss.................s [ 81%]
2021-05-31T23:58:50.1180633Z sss..s..sssss.s.s..............s........................................ [ 81%]
2021-05-31T23:58:51.4197813Z .................s......................................s............... [ 81%]
2021-05-31T23:58:52.2433087Z ............................s.......................ss.................. [ 82%]
2021-05-31T23:58:53.3321331Z ............................s......................s.................... [ 82%]
2021-05-31T23:58:54.3855126Z ........ss.............s......................................s......... [ 82%]
2021-05-31T23:58:55.5999647Z ................................................s.....................s. [ 82%]
2021-05-31T23:58:56.8520800Z .....................s..........................s.ss...s.s.............s [ 82%]
2021-05-31T23:58:57.3699438Z .....................s..ssssssssssssssssss....ssss.ss.s...s..s.xss...... [ 83%]
2021-05-31T23:58:57.9002288Z ...sss....ss..ss............................s.s.s.s..................... [ 83%]
2021-05-31T23:58:58.2047099Z .................................................................s...... [ 83%]
2021-05-31T23:58:59.3255001Z ...s.s.s.s.s..s.......s....................................s.......s.... [ 83%]
2021-05-31T23:59:00.0343531Z ....s.................ss.....................s.....s.s......s..ss....... [ 84%]
2021-05-31T23:59:01.2772135Z ..sss....s...................................................s.......... [ 84%]
2021-05-31T23:59:02.0319714Z ......s..........................................................s...... [ 84%]
2021-05-31T23:59:02.5162468Z ................................ss.....................s.......s.......s [ 84%]
2021-05-31T23:59:03.5192631Z ..s...s.........sss....s................................................ [ 84%]
2021-05-31T23:59:04.9322016Z ............s...................s..............ss.ss.................s.. [ 85%]
2021-05-31T23:59:06.6266044Z ....s...sssssssssssssssss.....sss.ss.....s..s.x................s..ss.... [ 85%]
2021-05-31T23:59:07.7588205Z .............sssssxxs..sssss.s.s...........s.......ss.ss.............s.. [ 85%]
2021-05-31T23:59:08.4592876Z ...s..ssssssssssssssssss....ssss.s..s...s..s.xsss..............ss.ss.... [ 85%]
2021-05-31T23:59:09.6321860Z ..............ssss..s..sssss.s.s..............s......................... [ 85%]
2021-05-31T23:59:11.2227134Z ...........s....................................s....................... [ 86%]
2021-05-31T23:59:12.7095822Z .................s..............s.................s..................... [ 86%]
2021-05-31T23:59:13.8254146Z .........ss.............s.........................................s..... [ 86%]
2021-05-31T23:59:15.2929766Z ...................................s..............s...............s..... [ 86%]
2021-05-31T23:59:16.5290852Z .s.ss.ss.........s....s..ssssssssssssssssss....ssss.ss.s...s..s.xss..... [ 86%]
2021-05-31T23:59:18.3426096Z ....sss..ss.ss................ssss...s..sssss.s.s...........s.......s... [ 87%]
2021-05-31T23:59:19.0957785Z .....s................ss....................s.....s.s......s..ss........ [ 87%]
2021-05-31T23:59:21.0102926Z .sss....s..................................s..............s.....s....... [ 87%]
2021-05-31T23:59:21.7318754Z ................ss.....................s.......s.......s..s...s......... [ 87%]
2021-05-31T23:59:23.7455903Z sss...s....................................s.............s.............. [ 87%]
2021-05-31T23:59:24.4604972Z .............................ss.ss.................s.................... [ 88%]
2021-05-31T23:59:25.5623189Z .........s.........ssssssssssssss.sss.......sss.ss...................... [ 88%]
2021-05-31T23:59:25.9129028Z ...........................s.....s...............x...................... [ 88%]
2021-05-31T23:59:27.9193034Z .................................s....ss.................sssssxxs..sssss [ 88%]
2021-05-31T23:59:29.5054634Z .s.s...........s........ss.ss.............s......s..ssssssssssssssssss.. [ 88%]
2021-05-31T23:59:29.8401397Z ..ssss.s..s...s..s.x.................................................... [ 89%]
2021-05-31T23:59:30.0940201Z ........................................................................ [ 89%]
2021-05-31T23:59:30.3415281Z ........................................................................ [ 89%]
2021-05-31T23:59:30.5732601Z ...............................................................x.....X.. [ 89%]
2021-05-31T23:59:30.7172190Z ........................................................................ [ 90%]
2021-05-31T23:59:30.8942674Z ........................................................................ [ 90%]
2021-05-31T23:59:31.1742594Z ........................................................................ [ 90%]
2021-05-31T23:59:31.1780343Z .Fatal Python error: Aborted
2021-05-31T23:59:31.1780985Z
2021-05-31T23:59:31.1783816Z Thread 0x00007fa0b3eed700 (most recent call first):
2021-05-31T23:59:31.1825391Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 400 in read
2021-05-31T23:59:31.1868632Z File "/opt/hostedtoolcache/Python/3.7.10./x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 432 in from_io
2021-05-31T23:59:31.1934971Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/sit.e-packages/execnet/gateway_base.py", line 967 in _thread_receiver
2021-05-31T23:59:31.1936339Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:59:31.1937639Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:59:31.1938309Z
2021-05-31T23:59:31.1938971Z Current thread 0x00007fa0b5cd3740 (most recent call first):
2021-05-31T23:59:31.1940108Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/_basinhopping.py", line 712 in basinhopping
2021-05-31T23:59:31.1941368Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py", line 186 in test_2d_nograd
2021-05-31T23:59:31.1942624Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 183 in pytest_pyfunc_call
2021-05-31T23:59:31.1943840Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:31.1945021Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:31.1946203Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:31.1947377Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:31.1948540Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 1641 in runtest
2021-05-31T23:59:31.1949759Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 162 in pytest_runtest_call
2021-05-31T23:59:31.1950982Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:31.1952331Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:31.1954883Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:31.1956128Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:31.1957312Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in <lambda>
2021-05-31T23:59:31.1959427Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 311 in from_call
2021-05-31T23:59:31.1960638Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in call_runtest_hook
2021-05-31T23:59:31.1961798Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 215 in call_and_report
2021-05-31T23:59:31.1962933Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 126 in runtestprotocol
2021-05-31T23:59:31.1964228Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 109 in pytest_runtest_protocol
2021-05-31T23:59:31.1965522Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:31.1966690Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:31.1967770Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:31.1968863Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:31.1970024Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 89 in run_one_test
2021-05-31T23:59:31.1971127Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 72 in pytest_runtestloop
2021-05-31T23:59:31.1972241Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:31.1973339Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:31.1974426Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:31.1975500Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:31.1976576Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 323 in _main
2021-05-31T23:59:31.1977665Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 269 in wrap_session
2021-05-31T23:59:31.1978774Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 316 in pytest_cmdline_main
2021-05-31T23:59:31.1979907Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:31.1981003Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:31.1982081Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:31.1983178Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:31.1984249Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 244 in <module>
2021-05-31T23:59:31.1985362Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1084 in executetask
2021-05-31T23:59:31.1986614Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:59:31.1987729Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:59:31.1988912Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 267 in integrate_as_primary_thread
2021-05-31T23:59:31.1990063Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1060 in serve
2021-05-31T23:59:31.1991167Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1554 in serve
2021-05-31T23:59:31.1991887Z File "<string>", line 8 in <module>
2021-05-31T23:59:31.1992447Z File "<string>", line 1 in <module>
2021-05-31T23:59:31.3568587Z ................[gw4] node down: Not properly terminated
2021-05-31T23:59:31.3569936Z F
2021-05-31T23:59:31.3570787Z replacing crashed worker gw4
2021-05-31T23:59:31.7600909Z ........................................................................ [ 90%]
2021-05-31T23:59:32.2587535Z ........................................................................ [ 90%]
2021-05-31T23:59:32.5544375Z ......................................................Fatal Python error: Segmentation fault
2021-05-31T23:59:32.5645763Z
2021-05-31T23:59:32.5647235Z Thread 0x00007f2e4b2d8700 (most recent call first):
2021-05-31T23:59:32.5648866Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 400 in read
2021-05-31T23:59:32.5764050Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 432 in from_io
2021-05-31T23:59:32.5776382Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 967 in _thread_receiver
2021-05-31T23:59:32.5777584Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:59:32.5847416Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:59:32.5848009Z
2021-05-31T23:59:32.5848426Z Current thread 0x00007f2e4d0be740 (most recent call first):
2021-05-31T23:59:32.5849385Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/_dual_annealing.py", line 324 in local_search
2021-05-31T23:59:32.5850395Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/_dual_annealing.py", line 683 in dual_annealing
2021-05-31T23:59:32.5851448Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__dual_annealing.py", line 224 in test_maxiter
2021-05-31T23:59:32.5852485Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 183 in pytest_pyfunc_call
2021-05-31T23:59:32.5853465Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:32.5854420Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:32.5855374Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:32.5856310Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:32.5857261Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 1641 in runtest
2021-05-31T23:59:32.5858221Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 162 in pytest_runtest_call
2021-05-31T23:59:32.5859195Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:32.5860357Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:32.5861286Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:32.5862239Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:32.5863187Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in <lambda>
2021-05-31T23:59:32.5864119Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 311 in from_call
2021-05-31T23:59:32.5865092Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in call_runtest_hook
2021-05-31T23:59:32.5866075Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 215 in call_and_report
2021-05-31T23:59:32.5867043Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 126 in runtestprotocol
2021-05-31T23:59:32.5868158Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 109 in pytest_runtest_protocol
2021-05-31T23:59:32.5869138Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:32.5870070Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:32.5871011Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:32.5871936Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:32.5872961Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 89 in run_one_test
2021-05-31T23:59:32.5873938Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 72 in pytest_runtestloop
2021-05-31T23:59:32.5874888Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:32.5875836Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:32.5876772Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:32.5877691Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:32.5878625Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 323 in _main
2021-05-31T23:59:32.5879551Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 269 in wrap_session
2021-05-31T23:59:32.5880532Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 316 in pytest_cmdline_main
2021-05-31T23:59:32.5881499Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:32.5882428Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:32.5883375Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:32.5884321Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:32.5888042Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 244 in <module>
2021-05-31T23:59:32.5889051Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1084 in executetask
2021-05-31T23:59:32.5890138Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:59:32.5891112Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:59:32.5892145Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 267 in integrate_as_primary_thread
2021-05-31T23:59:32.5893146Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1060 in serve
2021-05-31T23:59:32.5894090Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1554 in serve
2021-05-31T23:59:32.5894674Z File "<string>", line 8 in <module>
2021-05-31T23:59:32.5895083Z File "<string>", line 1 in <module>
2021-05-31T23:59:32.7368309Z [gw5] node down: Not properly terminated
2021-05-31T23:59:32.7386268Z F
2021-05-31T23:59:32.7388755Z replacing crashed worker gw5
2021-05-31T23:59:46.0778343Z ........................................................................ [ 91%]
2021-05-31T23:59:46.4537919Z ........................................................................ [ 91%]
2021-05-31T23:59:47.0243350Z ........................................................................ [ 91%]
2021-05-31T23:59:47.0774975Z ...........Fatal Python error: Aborted
2021-05-31T23:59:47.0776167Z
2021-05-31T23:59:47.0776896Z Thread 0x00007f1f60d6a700 (most recent call first):
2021-05-31T23:59:47.0778438Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 400 in read
2021-05-31T23:59:47.0843365Z File "/opt/hostedtoolcache/P..ython/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 432 in from_io
2021-05-31T23:59:47.0856235Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execn.et/g.ateway_base.py", line 967 in _thread_receiver
2021-05-31T23:59:47.0893742Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220. in run
2021-05-31T23:59:47.0923309Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:59:47.0924319Z
2021-05-31T23:59:47.0925369Z Current thread 0x00007f1f62b50740 (most recent call first):
2021-05-31T23:59:47.0958039Z File "/home/vsts/work/1/s/build/testenv/lib/python3..7/site-packages/scipy/optimize/tests/test__differential_evolution.py", line 316 in test_maxiter_stops_solve
2021-05-31T23:59:47.0959633Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 183 in pytest_pyfunc_call
2021-05-31T23:59:47.0960930Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:47.0962168Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:47.0963399Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:47.0964611Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:47.0966046Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 1641 in runtest
2021-05-31T23:59:47.0967296Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 162 in pytest_runtest_call
2021-05-31T23:59:47.0968588Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:47.0969814Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:47.0971038Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:47.0972410Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:47.0973640Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in <lambda>
2021-05-31T23:59:47.0974911Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 311 in from_call
2021-05-31T23:59:47.0976173Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in call_runtest_hook
2021-05-31T23:59:47.0979261Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 215 in call_and_report
2021-05-31T23:59:47.0980641Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 126 in runtestprotocol
2021-05-31T23:59:47.0981901Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 109 in pytest_runtest_protocol
2021-05-31T23:59:47.0985636Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:47.0987225Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:47.0988554Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:47.0989541Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:47.0990538Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 89 in run_one_test
2021-05-31T23:59:47.0991533Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 72 in pytest_runtestloop
2021-05-31T23:59:47.0992545Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:47.0993574Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:47.0994555Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:47.0995544Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:47.0996519Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 323 in _main
2021-05-31T23:59:47.0997496Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 269 in wrap_session
2021-05-31T23:59:47.0998520Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 316 in pytest_cmdline_main
2021-05-31T23:59:47.0999510Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:47.1000510Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:47.1001502Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:47.1002469Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:47.1003455Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 244 in <module>
2021-05-31T23:59:47.1004469Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1084 in executetask
2021-05-31T23:59:47.1005684Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:59:47.1006803Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:59:47.1007926Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 267 in integrate_as_primary_thread
2021-05-31T23:59:47.1008894Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1060 in serve
2021-05-31T23:59:47.1009831Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1554 in serve
2021-05-31T23:59:47.1010435Z File "<string>", line 8 in <module>
2021-05-31T23:59:47.1010848Z File "<string>", line 1 in <module>
2021-05-31T23:59:47.3154713Z ...........................[gw7] node down: Not properly terminated
2021-05-31T23:59:47.3158810Z F
2021-05-31T23:59:47.3159263Z replacing crashed worker gw7
2021-05-31T23:59:49.5018759Z ........................................................................ [ 92%]
2021-05-31T23:59:49.8505925Z ........................................................................ [ 92%]
2021-05-31T23:59:50.2064283Z ........................................................................ [ 92%]
2021-05-31T23:59:50.5663978Z ........................................................................ [ 92%]
2021-05-31T23:59:50.9233183Z ........................................................................ [ 92%]
2021-05-31T23:59:51.2841033Z ........................................................................ [ 93%]
2021-05-31T23:59:51.7522877Z ........................................................................ [ 93%]
2021-05-31T23:59:52.3943043Z ........................................................................ [ 93%]
2021-05-31T23:59:53.4287917Z ........................................................................ [ 93%]
2021-05-31T23:59:54.5318217Z ........................................................................ [ 93%]
2021-05-31T23:59:55.8255789Z ........................................................................ [ 94%]
2021-05-31T23:59:56.5065403Z .............................................ss........ssssss........... [ 94%]
2021-05-31T23:59:57.7664980Z ..........................................................s............. [ 94%]
2021-05-31T23:59:59.2912466Z .....................................sss.s...........ssssss............. [ 94%]
2021-06-01T00:00:00.1203896Z .......................................................s......sssss.ssss [ 94%]
2021-06-01T00:00:01.4347992Z ssssssssssssssssssssssssssssssss.............x........ssssss............ [ 95%]
2021-06-01T00:00:02.3720133Z ........................................................s.......s.s.sss. [ 95%]
2021-06-01T00:00:02.5679825Z sss.s.s.s.s.ss.ss.s.s.ss.s.ss.s.s.s.s.sss.sssss.............Fatal Python error: Aborted
2021-06-01T00:00:02.5680817Z
2021-06-01T00:00:02.5681509Z Thread 0x00007f49e063e700 (most recent call first):
2021-06-01T00:00:02.5716870Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 400 in read
2021-06-01T00:00:02.5757536Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 432 in from_io
2021-06-01T00:00:02.5802474Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 967 in _thread_receiver
2021-06-01T00:00:02.5828041Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-06-01T00:00:02.5841955Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-06-01T00:00:02.5842941Z
2021-06-01T00:00:02.5843686Z Current thread 0x00007f49e2424740 (most recent call first):
2021-06-01T00:00:02.5856715Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_lbfgsb_hessinv.py", line 14 in test_1
2021-06-01T00:00:02.5870829Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 183 in pytest_pyfunc_call
2021-06-01T00:00:02.5913337Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:02.5915031Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:02.5916301Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:02.5917530Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:02.5918746Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 1641 in runtest
2021-06-01T00:00:02.5919969Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 162 in pytest_runtest_call
2021-06-01T00:00:02.5921259Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:02.5922507Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:02.5923959Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:02.5925339Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:02.5926609Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in <lambda>
2021-06-01T00:00:02.5927820Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 311 in from_call
2021-06-01T00:00:02.5929046Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in call_runtest_hook
2021-06-01T00:00:02.5930294Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 215 in call_and_report
2021-06-01T00:00:02.5931542Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 126 in runtestprotocol
2021-06-01T00:00:02.5932793Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 109 in pytest_runtest_protocol
2021-06-01T00:00:02.5934042Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:02.5935262Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:02.5936460Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:02.5940196Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:02.5941220Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 89 in run_one_test
2021-06-01T00:00:02.5942221Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 72 in pytest_runtestloop
2021-06-01T00:00:02.5943237Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:02.5944258Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:02.5945238Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:02.5946218Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:02.5947191Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 323 in _main
2021-06-01T00:00:02.5948161Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 269 in wrap_session
2021-06-01T00:00:02.5949342Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 316 in pytest_cmdline_main
2021-06-01T00:00:02.5950343Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:02.5951334Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:02.5952322Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:02.5953285Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:02.5954265Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 244 in <module>
2021-06-01T00:00:02.5955281Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1084 in executetask
2021-06-01T00:00:02.5956275Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-06-01T00:00:02.5957403Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-06-01T00:00:02.5958475Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 267 in integrate_as_primary_thread
2021-06-01T00:00:02.5959506Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1060 in serve
2021-06-01T00:00:02.5960511Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1554 in serve
2021-06-01T00:00:02.5961136Z File "<string>", line 8 in <module>
2021-06-01T00:00:02.5961601Z File "<string>", line 1 in <module>
2021-06-01T00:00:02.7489132Z [gw8] node down: Not properly terminated
2021-06-01T00:00:02.7489957Z F
2021-06-01T00:00:02.7490396Z replacing crashed worker gw8
2021-06-01T00:00:02.9238184Z Fatal Python error: Aborted
2021-06-01T00:00:02.9238916Z
2021-06-01T00:00:02.9326211Z Thread 0x00007f1a631db700 (most recent call first):
2021-06-01T00:00:02.9327691Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 400 in read
2021-06-01T00:00:02.9328649Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 432 in from_io
2021-06-01T00:00:02.9346326Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 967 in _thread_receiver
2021-06-01T00:00:02.9384149Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-06-01T00:00:02.9397460Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-06-01T00:00:02.9398019Z
2021-06-01T00:00:02.9398994Z Current thread 0x00007f1a64fc1740 (most recent call first):
2021-06-01T00:00:02.9413848Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/_basinhopping.py", line 712 in basinhopping
2021-06-01T00:00:02.9429996Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py", line 199 in test_all_minimizers
2021-06-01T00:00:02.9470245Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 183 in pytest_pyfunc_call
2021-06-01T00:00:02.9471367Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:02.9472286Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:02.9473183Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:02.9474251Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:02.9475148Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 1641 in runtest
2021-06-01T00:00:02.9476063Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 162 in pytest_runtest_call
2021-06-01T00:00:02.9476959Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:02.9477847Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:02.9478712Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:02.9479591Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:02.9480480Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in <lambda>
2021-06-01T00:00:02.9481457Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 311 in from_call
2021-06-01T00:00:02.9482370Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in call_runtest_hook
2021-06-01T00:00:02.9483288Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 215 in call_and_report
2021-06-01T00:00:02.9484189Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 126 in runtestprotocol
2021-06-01T00:00:02.9605801Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 109 in pytest_runtest_protocol
2021-06-01T00:00:02.9607093Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:02.9608078Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:02.9609047Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:02.9609980Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:02.9610933Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 89 in run_one_test
2021-06-01T00:00:02.9611899Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 72 in pytest_runtestloop
2021-06-01T00:00:02.9612843Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:02.9613820Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:02.9614772Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:02.9615698Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:02.9616623Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 323 in _main
2021-06-01T00:00:02.9617558Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 269 in wrap_session
2021-06-01T00:00:02.9618513Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 316 in pytest_cmdline_main
2021-06-01T00:00:02.9619472Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:02.9620392Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:02.9621535Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:02.9622480Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:02.9623392Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 244 in <module>
2021-06-01T00:00:02.9624354Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1084 in executetask
2021-06-01T00:00:02.9625324Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-06-01T00:00:02.9626276Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-06-01T00:00:02.9627300Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 267 in integrate_as_primary_thread
2021-06-01T00:00:02.9628297Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1060 in serve
2021-06-01T00:00:02.9629340Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1554 in serve
2021-06-01T00:00:02.9629919Z File "<string>", line 8 in <module>
2021-06-01T00:00:02.9630325Z File "<string>", line 1 in <module>
2021-06-01T00:00:03.8333134Z [gw6] node down: Not properly terminated
2021-06-01T00:00:03.8335044Z F
2021-06-01T00:00:03.8335985Z maximum crashed workers reached: 8
2021-06-01T00:00:17.9757531Z ........................................................................ [ 95%]
2021-06-01T00:00:21.9145497Z ........................................................................ [ 95%]
2021-06-01T00:00:23.2396166Z .................................................................Fatal Python error: Aborted
2021-06-01T00:00:23.2397501Z
2021-06-01T00:00:23.2398213Z Thread 0x00007f2398ee1700 (most recent call first):
2021-06-01T00:00:23.2399769Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 400 in read
2021-06-01T00:00:23.2401081Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 432 in from_io
2021-06-01T00:00:23.2402372Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 967 in _thread_receiver
2021-06-01T00:00:23.2403608Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-06-01T00:00:23.2405074Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-06-01T00:00:23.2405824Z
2021-06-01T00:00:23.2406514Z Current thread 0x00007f239acc7740 (most recent call first):
2021-06-01T00:00:23.2407743Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__differential_evolution.py", line 418 in test_exp_runs
2021-06-01T00:00:23.2409126Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 183 in pytest_pyfunc_call
2021-06-01T00:00:23.2410374Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:23.2411616Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:23.2422125Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:23.2446363Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:23.2447761Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 1641 in runtest
2021-06-01T00:00:23.2449196Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 162 in pytest_runtest_call
2021-06-01T00:00:23.2450395Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:23.2451582Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:23.2454258Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:23.2455249Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:23.2456164Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in <lambda>
2021-06-01T00:00:23.2457127Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 311 in from_call
2021-06-01T00:00:23.2458092Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in call_runtest_hook
2021-06-01T00:00:23.2459263Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 215 in call_and_report
2021-06-01T00:00:23.2460248Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 126 in runtestprotocol
2021-06-01T00:00:23.2461233Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 109 in pytest_runtest_protocol
2021-06-01T00:00:23.2462213Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:23.2463158Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:23.2464076Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:23.2465027Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:23.2466134Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 89 in run_one_test
2021-06-01T00:00:23.2467082Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 72 in pytest_runtestloop
2021-06-01T00:00:23.2468042Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:23.2468963Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:23.2469897Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:23.2470830Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:23.2471743Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 323 in _main
2021-06-01T00:00:23.2472690Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 269 in wrap_session
2021-06-01T00:00:23.2473653Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 316 in pytest_cmdline_main
2021-06-01T00:00:23.2474601Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:23.2475540Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:23.2476477Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:23.2477395Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:23.2478443Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 244 in <module>
2021-06-01T00:00:23.2479395Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1084 in executetask
2021-06-01T00:00:23.2480355Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-06-01T00:00:23.2481325Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-06-01T00:00:23.2482338Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 267 in integrate_as_primary_thread
2021-06-01T00:00:23.2483339Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1060 in serve
2021-06-01T00:00:23.2484302Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1554 in serve
2021-06-01T00:00:23.2525276Z File "<string>", line 8 in <module>
2021-06-01T00:00:23.2525972Z File "<string>", line 1 in <module>
2021-06-01T00:00:23.3979631Z [gw9] node down: Not properly terminated
2021-06-01T00:00:23.3982649Z F
2021-06-01T00:00:23.3983423Z maximum crashed workers reached: 8
2021-06-01T00:00:23.4036916Z
2021-06-01T00:00:23.4087559Z =================================== FAILURES ===================================
2021-06-01T00:00:23.4088714Z __________________ TestTrustRegionConstr.test_no_constraints ___________________
2021-06-01T00:00:23.4090214Z [gw0] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:23.4091102Z scipy/optimize/tests/test_minimize_constrained.py:539: in test_no_constraints
2021-06-01T00:00:23.4091891Z assert_array_almost_equal(result1.x, prob.x_opt, decimal=5)
2021-06-01T00:00:23.4092595Z E AssertionError:
2021-06-01T00:00:23.4093251Z E Arrays are not almost equal to 5 decimals
2021-06-01T00:00:23.4093942Z E
2021-06-01T00:00:23.4094571Z E Mismatched elements: 2 / 2 (100%)
2021-06-01T00:00:23.4095269Z E Max absolute difference: 83.1695416
2021-06-01T00:00:23.4095975Z E Max relative difference: 83.1695416
2021-06-01T00:00:23.4096867Z E x: array([-18.23919, 84.16954])
2021-06-01T00:00:23.4097564Z E y: array([1., 1.])
2021-06-01T00:00:23.4098325Z prob = <scipy.optimize.tests.test_minimize_constrained.Rosenbrock object at 0x7f1f5c7f8050>
2021-06-01T00:00:23.4099118Z result = cg_niter: 33
2021-06-01T00:00:23.4099793Z cg_stop_cond: 1
2021-06-01T00:00:23.4100405Z constr: []
2021-06-01T00:00:23.4101037Z constr_nfev: []
2021-06-01T00:00:23.4101664Z constr_nhev: []
2021-06-01T00:00:23.4102251Z con...
2021-06-01T00:00:23.4102861Z success: True
2021-06-01T00:00:23.4103499Z tr_radius: 0.3780632072195338
2021-06-01T00:00:23.4104152Z v: []
2021-06-01T00:00:23.4104806Z x: array([1., 1.])
2021-06-01T00:00:23.4105495Z result1 = fun: 18.525555683400004
2021-06-01T00:00:23.4106233Z hess_inv: <2x2 LbfgsInvHessProduct with dtype=float64>
2021-06-01T00:00:23.4107135Z jac: array([-18.23918748, ...CH'
2021-06-01T00:00:23.4107820Z nfev: 3
2021-06-01T00:00:23.4108406Z nit: 0
2021-06-01T00:00:23.4108975Z njev: 1
2021-06-01T00:00:23.4109554Z status: 2
2021-06-01T00:00:23.4110126Z success: False
2021-06-01T00:00:23.4110999Z x: array([-18.23918748, 84.1695416 ])
2021-06-01T00:00:23.4111759Z result2 = fun: 18.525555683400004
2021-06-01T00:00:23.4112503Z hess_inv: <2x2 LbfgsInvHessProduct with dtype=float64>
2021-06-01T00:00:23.4114405Z jac: array([-18.23918667, ...CH'
2021-06-01T00:00:23.4117447Z nfev: 5
2021-06-01T00:00:23.4117870Z nit: 0
2021-06-01T00:00:23.4118246Z njev: 1
2021-06-01T00:00:23.4118634Z status: 2
2021-06-01T00:00:23.4119021Z success: False
2021-06-01T00:00:23.4119858Z x: array([-18.23918667, 84.16954002])
2021-06-01T00:00:23.4120506Z self = <scipy.optimize.tests.test_minimize_constrained.TestTrustRegionConstr testMethod=test_no_constraints>
2021-06-01T00:00:23.4861706Z _ build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_minimize_constrained.py _
2021-06-01T00:00:23.4864036Z [gw0] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:23.4866093Z worker 'gw0' crashed while running 'build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_minimize_constrained.py::TestEmptyConstraint::test_empty_constraint'
2021-06-01T00:00:23.5601376Z _ build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py _
2021-06-01T00:00:23.5602708Z [gw1] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:23.5603708Z worker 'gw1' crashed while running 'build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py::TestBasinHopping::test_1d_grad'
2021-06-01T00:00:23.6334120Z _ build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py _
2021-06-01T00:00:23.6335846Z [gw3] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:23.6336982Z worker 'gw3' crashed while running 'build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py::TestBasinHopping::test_2d'
2021-06-01T00:00:23.7052612Z _ build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_optimize.py _
2021-06-01T00:00:23.7054551Z [gw2] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:23.7055930Z worker 'gw2' crashed while running 'build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_optimize.py::TestOptimizeSimple::test_l_bfgs_b'
2021-06-01T00:00:23.7743168Z _ build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py _
2021-06-01T00:00:23.7745092Z [gw4] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:23.7746417Z worker 'gw4' crashed while running 'build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py::TestBasinHopping::test_2d_nograd'
2021-06-01T00:00:23.8436955Z _ build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__dual_annealing.py _
2021-06-01T00:00:23.8438390Z [gw5] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:23.8439497Z worker 'gw5' crashed while running 'build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__dual_annealing.py::TestDualAnnealing::test_maxiter'
2021-06-01T00:00:23.9132110Z _ build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__differential_evolution.py _
2021-06-01T00:00:23.9133440Z [gw7] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:23.9134545Z worker 'gw7' crashed while running 'build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__differential_evolution.py::TestDifferentialEvolutionSolver::test_maxiter_stops_solve'
2021-06-01T00:00:23.9854159Z _ build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_lbfgsb_hessinv.py _
2021-06-01T00:00:23.9855607Z [gw8] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:23.9856634Z worker 'gw8' crashed while running 'build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_lbfgsb_hessinv.py::test_1'
2021-06-01T00:00:24.0600974Z _ build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py _
2021-06-01T00:00:24.0602376Z [gw6] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:24.0603490Z worker 'gw6' crashed while running 'build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py::TestBasinHopping::test_all_minimizers'
2021-06-01T00:00:24.1361151Z _ build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__differential_evolution.py _
2021-06-01T00:00:24.1362956Z [gw9] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:24.1364143Z worker 'gw9' crashed while running 'build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__differential_evolution.py::TestDifferentialEvolutionSolver::test_exp_runs'
2021-06-01T00:00:24.2106429Z ================== xdist: maximum crashed workers reached: 8 ===================
2021-06-01T00:00:24.3782220Z ============================= slowest 10 durations =============================
2021-06-01T00:00:24.3799466Z 9.19s call build/testenv/lib/python3.7/site-packages/scipy/_lib/tests/test_import_cycles.py::test_modules_importable
2021-06-01T00:00:24.3800818Z 8.87s call build/testenv/lib/python3.7/site-packages/scipy/stats/tests/test_continuous_basic.py::test_cont_basic[500-200-wrapcauchy-arg106]
2021-06-01T00:00:24.3801970Z 5.31s call build/testenv/lib/python3.7/site-packages/scipy/spatial/tests/test_kdtree.py::test_kdtree_count_neighbous_multiple_r[cKDTree]
2021-06-01T00:00:24.3803082Z 5.30s call build/testenv/lib/python3.7/site-packages/scipy/spatial/tests/test_kdtree.py::test_kdtree_count_neighbous_multiple_r[KDTree]
2021-06-01T00:00:24.3804432Z 5.04s call build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_linprog.py::TestLinprogHiGHSIPM::test_marginals
2021-06-01T00:00:24.3805919Z 4.96s call build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_lsq_linear.py::TestTRF::test_large_rank_deficient
2021-06-01T00:00:24.3807004Z 4.93s call build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_lsq_linear.py::TestBVLS::test_large_rank_deficient
2021-06-01T00:00:24.3808089Z 4.89s call build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_lsq_linear.py::TestTRF::test_sparse_bounds
2021-06-01T00:00:24.3809130Z 3.72s call build/testenv/lib/python3.7/site-packages/scipy/spatial/tests/test_kdtree.py::test_kdtree_box[KDTree]
2021-06-01T00:00:24.3810164Z 3.63s call build/testenv/lib/python3.7/site-packages/scipy/sparse/linalg/isolve/tests/test_iterative.py::test_zero_rhs[gcrotmk]
2021-06-01T00:00:24.3820392Z =========================== short test summary info ============================
2021-06-01T00:00:24.3821214Z FAILED scipy/optimize/tests/test_minimize_constrained.py::TestTrustRegionConstr::test_no_constraints
2021-06-01T00:00:24.3821928Z FAILED scipy/optimize/tests/test_minimize_constrained.py::TestEmptyConstraint::test_empty_constraint
2021-06-01T00:00:24.3822610Z FAILED scipy/optimize/tests/test__basinhopping.py::TestBasinHopping::test_1d_grad
2021-06-01T00:00:24.3823233Z FAILED scipy/optimize/tests/test__basinhopping.py::TestBasinHopping::test_2d
2021-06-01T00:00:24.3823913Z FAILED scipy/optimize/tests/test_optimize.py::TestOptimizeSimple::test_l_bfgs_b
2021-06-01T00:00:24.3824554Z FAILED scipy/optimize/tests/test__basinhopping.py::TestBasinHopping::test_2d_nograd
2021-06-01T00:00:24.3825189Z FAILED scipy/optimize/tests/test__dual_annealing.py::TestDualAnnealing::test_maxiter
2021-06-01T00:00:24.3825912Z FAILED scipy/optimize/tests/test__differential_evolution.py::TestDifferentialEvolutionSolver::test_maxiter_stops_solve
2021-06-01T00:00:24.3826583Z FAILED scipy/optimize/tests/test_lbfgsb_hessinv.py::test_1
2021-06-01T00:00:24.3827183Z FAILED scipy/optimize/tests/test__basinhopping.py::TestBasinHopping::test_all_minimizers
2021-06-01T00:00:24.3827890Z FAILED scipy/optimize/tests/test__differential_evolution.py::TestDifferentialEvolutionSolver::test_exp_runs
2021-06-01T00:00:24.3828630Z XPASS scipy/linalg/tests/test_matfuncs.py::TestFractionalMatrixPower::test_singular Too unstable across LAPACKs.
2021-06-01T00:00:24.3829315Z XPASS scipy/ndimage/tests/test_datatypes.py::test_uint64_max runs only on darwin
2021-06-01T00:00:24.3830382Z XPASS scipy/optimize/tests/test_linprog.py::TestLinprogIPSparse::test_bug_6690 Fails with ATLAS, see gh-7877
2021-06-01T00:00:24.3831396Z XPASS scipy/optimize/tests/test_linprog.py::TestLinprogIPSparsePresolve::test_bug_6690 Fails with ATLAS, see gh-7877
2021-06-01T00:00:24.3832721Z XPASS scipy/optimize/tests/test_minimize_constrained.py::TestBoundedNelderMead::test_outside_bounds_warning Failing on Azure Linux and macOS builds, see gh-13846
2021-06-01T00:00:24.3833566Z XPASS scipy/special/tests/test_basic.py::TestCephes::test_fdtri_mysterious_failure Returns nan on i686.
2021-06-01T00:00:24.3916877Z = 11 failed, 31170 passed, 2072 skipped, 108 xfailed, 6 xpassed in 438.07s (0:07:18) =
2021-06-01T00:00:25.3459708Z *** Looks like some tests failed.
2021-06-01T00:00:25.3581800Z ##[error]Bash exited with code '255'.
2021-06-01T00:00:25.3597018Z ##[section]Finishing: Run tests"><pre class="notranslate"><code class="notranslate">2021-05-31T23:54:51.2962266Z ........................................................................ [ 38%]
2021-05-31T23:54:51.5965383Z ........................................................................ [ 39%]
2021-05-31T23:54:51.6375987Z ...........Fatal Python error: Aborted
2021-05-31T23:54:51.6377443Z
2021-05-31T23:54:51.6381244Z Thread 0x00007fdd57cfa700 (most recent call first):
2021-05-31T23:54:51.6428636Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-pack.ages/execnet/gateway_base.py", line 400 in read
2021-05-31T23:54:51.6477967Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-.packages/execnet/gateway_base.py", line 432 in from_io
2021-05-31T23:54:51.6530648Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/s.ite-packages/execnet/gateway_base.py", line 967 in _thread_receiver
2021-05-31T23:54:51.6555703Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-pa.ckages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:54:51.6575040Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:54:51.6576795Z
2021-05-31T23:54:51.6579465Z Current thread 0x00007fdd59ae0740 (most recent call first):
2021-05-31T23:54:51.6613602Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/_basinhopping.py", line 712 in .basinhopping
2021-05-31T23:54:51.6621341Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py", line 141 in test_1d_grad
2021-05-31T23:54:51.6642255Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 183 in pytest_pyfunc_call
2021-05-31T23:54:51.6643699Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:54:51.6645057Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:54:51.6646320Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:54:51.6647485Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:54:51.6648612Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 1641 in runtest
2021-05-31T23:54:51.6650917Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 162 in pytest_runtest_call
2021-05-31T23:54:51.6652254Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:54:51.6654686Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:54:51.6655978Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:54:51.6657666Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:54:51.6658820Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in <lambda>
2021-05-31T23:54:51.6659930Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 311 in from_call
2021-05-31T23:54:51.6661732Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in call_runtest_hook
2021-05-31T23:54:51.6662937Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 215 in call_and_report
2021-05-31T23:54:51.6664075Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 126 in runtestprotocol
2021-05-31T23:54:51.6665384Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 109 in pytest_runtest_protocol
2021-05-31T23:54:51.6666497Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:54:51.6691893Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/.site-packages/pluggy/manager.py", line 87 in <lamb.da>
2021-05-31T23:54:51.6722385Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:54:51.6738335Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/plug.gy/hooks.py", line 281 in __call__
2021-05-31T23:54:51.6756030Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 89 in run_one_test
2021-05-31T23:54:51.6761390Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 72 in pytest_runtestloop
2021-05-31T23:54:51.6780635Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:54:51.6782081Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:54:51.6783302Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:54:51.6784477Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:54:51.6785626Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 323 in _main
2021-05-31T23:54:51.6787745Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 269 in wrap_session
2021-05-31T23:54:51.6789848Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 316 in pytest_cmdline_main
2021-05-31T23:54:51.6791639Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:54:51.6792899Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:54:51.6794071Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:54:51.6795790Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:54:51.6797027Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 244 in <module>
2021-05-31T23:54:51.6798223Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1084 in executetask
2021-05-31T23:54:51.6828559Z File "/opt/hostedtoolcache/Pyt.hon/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line .220 in run
2021-05-31T23:54:51.6847555Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:54:51.6860158Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 267 in integrate_as_primary_thread
2021-05-31T23:54:51.6861569Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1060 in serve
2021-05-31T23:54:51.6862810Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1554 in serve
2021-05-31T23:54:51.6863620Z File "<string>", line 8 in <module>
2021-05-31T23:54:51.6864250Z File "<string>", line 1 in <module>
2021-05-31T23:54:51.8752322Z ................................................... [ 39%]
2021-05-31T23:54:52.1043955Z ........................................................................ [ 39%]
2021-05-31T23:54:52.3855075Z ........................................................................ [ 39%]
2021-05-31T23:54:52.6391637Z ........................................................................ [ 39%]
2021-05-31T23:54:52.9023897Z ........................................................................ [ 40%]
2021-05-31T23:54:53.1852197Z ........................................................................ [ 40%]
2021-05-31T23:54:53.4688798Z ........................................................................ [ 40%]
2021-05-31T23:54:54.5367526Z .............................s..s.ss.................................... [ 40%]
2021-05-31T23:54:55.6810852Z .......................................s................................ [ 40%]
2021-05-31T23:54:57.1195809Z .........................................s.X............................ [ 41%]
2021-05-31T23:54:58.0700342Z ..............................................s.sX...................... [ 41%]
2021-05-31T23:54:58.5138636Z ......................................................sssss............. [ 41%]
2021-05-31T23:54:59.1447171Z .................................................................ssss... [ 41%]
2021-05-31T23:54:59.5673242Z .......................................................................s [ 41%]
2021-05-31T23:55:01.2658500Z ........................................................................ [ 42%]
2021-05-31T23:55:06.8408630Z ................s....................................................... [ 42%]
2021-05-31T23:55:22.1973634Z .................F.corrupted double-linked list
2021-05-31T23:55:22.1978070Z Fatal Python error: Aborted
2021-05-31T23:55:22.1978800Z
2021-05-31T23:55:22.1981726Z Thread 0x00007f1f9a63c700 (most recent call first):
2021-05-31T23:55:22.2029508Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 400 in read
2021-05-31T23:55:22.2073943Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 432 in from_io
2021-05-31T23:55:22.2122105Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 967 in _thread_receiver
2021-05-31T23:55:22.2140164Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:55:22.2155664Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:55:22.2156494Z
2021-05-31T23:55:22.2158987Z Current thread 0x00007f1f9c422740 (most recent call first):
2021-05-31T23:55:22.2173029Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/capture.py", line 480 in snap
2021-05-31T23:55:22.2188072Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/capture.py", line 618 in readouterr
2021-05-31T23:55:22.2224906Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/capture.py", line 718 in read_global_capture
2021-05-31T23:55:22.2226311Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/capture.py", line 784 in item_capture
2021-05-31T23:55:22.2227206Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/contextlib.py", line 119 in __exit__
2021-05-31T23:55:22.2228524Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/capture.py", line 813 in pytest_runtest_call
2021-05-31T23:55:22.2229769Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 130 in _multicall
2021-05-31T23:55:22.2230992Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:55:22.2232183Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:55:22.2233394Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:55:22.2234771Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in <lambda>
2021-05-31T23:55:22.2235972Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 311 in from_call
2021-05-31T23:55:22.2237205Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in call_runtest_hook
2021-05-31T23:55:22.2238452Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 215 in call_and_report
2021-05-31T23:55:22.2239674Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 126 in runtestprotocol
2021-05-31T23:55:22.2240943Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 109 in pytest_runtest_protocol
2021-05-31T23:55:22.2242196Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:55:22.2243439Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:55:22.2244640Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:55:22.2246054Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:55:22.2248353Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 89 in run_one_test
2021-05-31T23:55:22.2249407Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 72 in pytest_runtestloop
2021-05-31T23:55:22.2250425Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:55:22.2251409Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:55:22.2252408Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:55:22.2253396Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:55:22.2254357Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 323 in _main
2021-05-31T23:55:22.2255343Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 269 in wrap_session
2021-05-31T23:55:22.2256358Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 316 in pytest_cmdline_main
2021-05-31T23:55:22.2257355Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:55:22.2258491Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:55:22.2259487Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:55:22.2260455Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:55:22.2261434Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 244 in <module>
2021-05-31T23:55:22.2262461Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1084 in executetask
2021-05-31T23:55:22.2263471Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:55:22.2264491Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:55:22.2265559Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 267 in integrate_as_primary_thread
2021-05-31T23:55:22.2266704Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1060 in serve
2021-05-31T23:55:22.2267709Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1554 in serve
2021-05-31T23:55:22.2268311Z File "<string>", line 8 in <module>
2021-05-31T23:55:22.2268772Z File "<string>", line 1 in <module>
2021-05-31T23:55:52.3847794Z [gw0] node down: Not properly terminated
2021-05-31T23:55:52.3989360Z F
2021-05-31T23:55:52.3990017Z replacing crashed worker gw0
2021-05-31T23:56:08.0510798Z ........................................................................ [ 42%]
2021-05-31T23:56:08.5385581Z ........................................................................ [ 42%]
2021-05-31T23:56:09.0988324Z ........................................................................ [ 43%]
2021-05-31T23:56:09.3856244Z ........................................................................ [ 43%]
2021-05-31T23:56:10.3487660Z ........................................................................ [ 43%]
2021-05-31T23:56:10.9841789Z .................................xxxxx..xx..xx.......................... [ 43%]
2021-05-31T23:56:11.6820609Z ........................................................................ [ 43%]
2021-05-31T23:56:12.4958074Z ..........xxxx...........xxxx........................................... [ 44%]
2021-05-31T23:56:13.0301061Z ........................................................................ [ 44%]
2021-05-31T23:56:13.3910302Z ............................................x.x......................... [ 44%]
2021-05-31T23:56:14.3380229Z ......................x..x...x.......................................... [ 44%]
2021-05-31T23:56:14.6091780Z ........................................................................ [ 44%]
2021-05-31T23:56:14.9288875Z ........................................................................ [ 45%]
2021-05-31T23:56:19.3095185Z ........................................................................ [ 45%]
2021-05-31T23:56:19.5763731Z ........................................................................ [ 45%]
2021-05-31T23:56:19.8410144Z ........................................................................ [ 45%]
2021-05-31T23:56:20.1007091Z ........................................................................ [ 45%]
2021-05-31T23:56:21.6612190Z ........................................................................ [ 46%]
2021-05-31T23:56:21.9253948Z ........................................................................ [ 46%]
2021-05-31T23:56:22.2659321Z ......s.s.s............................................................. [ 46%]
2021-05-31T23:56:22.5308205Z ........................................................................ [ 46%]
2021-05-31T23:56:22.8041219Z ........................................................................ [ 46%]
2021-05-31T23:56:23.0779370Z ........................................................................ [ 47%]
2021-05-31T23:56:23.3532979Z ........................................................................ [ 47%]
2021-05-31T23:56:23.7042987Z ................xxxxxxxxxxxxxxx......................................... [ 47%]
2021-05-31T23:56:32.9251637Z ......................................................x..x..x........... [ 47%]
2021-05-31T23:56:33.6007453Z ........................................[gw1] node down: Not properly terminated
2021-05-31T23:56:33.6172845Z F
2021-05-31T23:56:33.6175288Z replacing crashed worker gw1
2021-05-31T23:56:49.5423793Z .......................................................ssssss..........s [ 48%]
2021-05-31T23:56:51.7561102Z ss.s.x.s................................................................ [ 48%]
2021-05-31T23:56:53.2738800Z ...............s.......sssss.ssssssssssssssssssssssssssssssssssss....... [ 48%]
2021-05-31T23:56:55.2959036Z ....s...........x.x.x................s.................................. [ 48%]
2021-05-31T23:56:56.1392287Z ...........................xx......s.................................... [ 48%]
2021-05-31T23:56:59.4411685Z ......................................sss...xx.......................... [ 49%]
2021-05-31T23:57:00.4046726Z ................................................s....................... [ 49%]
2021-05-31T23:57:03.8049052Z ..........................................sss..xx....................... [ 49%]
2021-05-31T23:57:05.1013701Z ................................................s......sssss.sssssssssss [ 49%]
2021-05-31T23:57:07.0308206Z sssssssssssssssssssssssss............................................... [ 50%]
2021-05-31T23:57:07.2475309Z ...................................................s...............x.... [ 50%]
2021-05-31T23:57:07.8509368Z ....x.......x.sss.......x.......xs.sssss.ss............................. [ 50%]
2021-05-31T23:57:08.4399004Z .................................................................s...... [ 50%]
2021-05-31T23:57:09.0481816Z sssss.ssssssssssssssssssssssssssssssssssss.............................. [ 50%]
2021-05-31T23:57:09.4633135Z ......s................................................................. [ 51%]
2021-05-31T23:57:09.7601181Z ......................................................................... [ 51%]
2021-05-31T23:57:10.0027766Z ......................................x................................. [ 51%]
2021-05-31T23:57:10.3096966Z ..................ss.s.................................................. [ 51%]
2021-05-31T23:57:10.7474759Z ........................................................................ [ 51%]
2021-05-31T23:57:10.9980978Z ........................................................s.s........s.s.. [ 52%]
2021-05-31T23:57:11.2457616Z ........................................s............................... [ 52%]
2021-05-31T23:57:11.6464433Z ........s...........................s.s.s.s.s.s.ss.s.ssssss.ss.......... [ 52%]
2021-05-31T23:57:12.1160063Z ..................s.s..s....s.s.................................s...s..x [ 52%]
2021-05-31T23:57:12.9487319Z ........................................................................ [ 52%]
2021-05-31T23:57:13.2946733Z .........................................................s..........ss.. [ 53%]
2021-05-31T23:57:13.6040634Z ................sssss........x.......................................... [ 53%]
2021-05-31T23:57:13.9525309Z .....................................................x.s..ssss.s.s.s.... [ 53%]
2021-05-31T23:57:15.1310588Z .............s........ss.ss.............s.....s..ssssssssssssssssss....s [ 53%]
2021-05-31T23:57:15.6796663Z sss.s..s...s..s.xsss.................................................... [ 53%]
2021-05-31T23:57:15.9234717Z .........s.s...ss.....................................s.sss............. [ 54%]
2021-05-31T23:57:16.4153161Z .....................................s.........sss.ss.s..s.............. [ 54%]
2021-05-31T23:57:17.4030630Z .......s...............................................s................ [ 54%]
2021-05-31T23:57:18.1970387Z ...................................................................s.... [ 54%]
2021-05-31T23:57:18.4638343Z ........................................................................ [ 54%]
2021-05-31T23:57:18.7267835Z ........................................................................ [ 55%]
2021-05-31T23:57:18.9571538Z ........................................................................ [ 55%]
2021-05-31T23:57:19.2645303Z ...................s.................................................... [ 55%]
2021-05-31T23:57:19.8092609Z ..............................................s......................... [ 55%]
2021-05-31T23:57:20.6021365Z ........................................s..........................ss... [ 56%]
2021-05-31T23:57:21.3810153Z ..........s............................................................. [ 56%]
2021-05-31T23:57:21.9962316Z ......................s................................................. [ 56%]
2021-05-31T23:57:22.6021209Z ................................................................s....... [ 56%]
2021-05-31T23:57:23.9394007Z ............s.................s......................................... [ 56%]
2021-05-31T23:57:24.4477298Z ...........................s.ss.ss.........s............................ [ 57%]
2021-05-31T23:57:24.6640170Z ...........s...........s.s.s..s.s.ss.s..s..s.s.s..s.s..ss.ss....ssss.ss. [ 57%]
2021-05-31T23:57:25.0408275Z s...s..s.xss..........................s................................. [ 57%]
2021-05-31T23:57:25.2761488Z .........s.s.s.....................s......................s............. [ 57%]
2021-05-31T23:57:26.2190957Z ...ss.ss................ssss...s.....s.s.ss.s.s....s.................... [ 57%]
2021-05-31T23:57:26.2814649Z ........s........Fatal Python error: Aborted
2021-05-31T23:57:26.2819382Z
2021-05-31T23:57:26.2820063Z Thread 0x00007f7b59bc9700 (most recent call first):
2021-05-31T23:57:26.2846137Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 400 in read
2021-05-31T23:57:26.2886914Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 432 in from_io
2021-05-31T23:57:26.2931754Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 967 in _thread_receiver
2021-05-31T23:57:26.2954858Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway._base.py", line 220 in run
2021-05-31T23:57:26.2969299Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:57:26.2970289Z
2021-05-31T23:57:26.2971045Z Current thread 0x00007f7b5b9af740 (most recent call first):
2021-05-31T23:57:26.2983889Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/_basinhopping.py", line 712 in basinhopping
2021-05-31T23:57:26.2997830Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py", line 148 in test_2d
2021-05-31T23:57:26.3042512Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 183 in pytest_pyfunc_call
2021-05-31T23:57:26.3044172Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:57:26.3045717Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:57:26.3047020Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:57:26.3048244Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:57:26.3049460Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 1641 in runtest
2021-05-31T23:57:26.3050896Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 162 in pytest_runtest_call
2021-05-31T23:57:26.3052145Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:57:26.3053364Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:57:26.3054555Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:57:26.3055754Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:57:26.3056955Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in <lambda>
2021-05-31T23:57:26.3058139Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 311 in from_call
2021-05-31T23:57:26.3059370Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in call_runtest_hook
2021-05-31T23:57:26.3060752Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 215 in call_and_report
2021-05-31T23:57:26.3061999Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 126 in runtestprotocol
2021-05-31T23:57:26.3063246Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 109 in pytest_runtest_protocol
2021-05-31T23:57:26.3064485Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:57:26.3065693Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:57:26.3166512Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:57:26.3168121Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:57:26.3169426Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 89 in run_one_test
2021-05-31T23:57:26.3170690Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 72 in pytest_runtestloop
2021-05-31T23:57:26.3171928Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:57:26.3173132Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:57:26.3174378Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:57:26.3175595Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:57:26.3176779Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 323 in _main
2021-05-31T23:57:26.3177992Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 269 in wrap_session
2021-05-31T23:57:26.3179237Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 316 in pytest_cmdline_main
2021-05-31T23:57:26.3180459Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:57:26.3181673Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:57:26.3182947Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:57:26.3184365Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:57:26.3185575Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 244 in <module>
2021-05-31T23:57:26.3186881Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1084 in executetask
2021-05-31T23:57:26.3188135Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:57:26.3189391Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:57:26.3192919Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 267 in integrate_as_primary_thread
2021-05-31T23:57:26.3194216Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1060 in serve
2021-05-31T23:57:26.3195381Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1554 in serve
2021-05-31T23:57:26.3196276Z File "<string>", line 8 in <module>
2021-05-31T23:57:26.3196871Z File "<string>", line 1 in <module>
2021-05-31T23:57:26.4607491Z ......................[gw3] node down: Not properly terminated
2021-05-31T23:57:26.4653313Z F
2021-05-31T23:57:26.4654027Z replacing crashed worker gw3
2021-05-31T23:57:29.3983645Z ........................................................................ [ 58%]
2021-05-31T23:57:30.8296731Z ........................................................................ [ 58%]
2021-05-31T23:57:32.7163515Z .........s.....s........................................................ [ 58%]
2021-05-31T23:57:33.1930899Z ........................................................................ [ 58%]
2021-05-31T23:57:34.1627676Z ........................................................................ [ 59%]
2021-05-31T23:57:34.4342475Z ........................................................................ [ 59%]
2021-05-31T23:57:36.0332775Z s...............s....................................................... [ 59%]
2021-05-31T23:57:37.3939104Z ........................................................................ [ 59%]
2021-05-31T23:57:39.7591148Z ........................................................................ [ 59%]
2021-05-31T23:57:41.0522856Z ........................................................................ [ 60%]
2021-05-31T23:57:41.2727211Z ................s............s......ssssss.ss..s........s........s...... [ 60%]
2021-05-31T23:57:41.5172794Z ..s........s......ssssssss...s.......s........s........s........s......s [ 60%]
2021-05-31T23:57:41.7573827Z ssssss.s..s........s........s.......s........s......sssssss.s..s........ [ 60%]
2021-05-31T23:57:42.0032708Z s........s.......s........s......ssssss.ss..s........s........s........s [ 60%]
2021-05-31T23:57:42.2254761Z .......s......ssss.ssss..s.......s........s............s................ [ 61%]
2021-05-31T23:57:42.3866997Z s..........s..s.s.s..s.s.s..s......s.............s..................s... [ 61%]
2021-05-31T23:57:42.5502701Z .............s................s.............s.s.s.s.ss.ss.....s.......... [ 61%]
2021-05-31T23:57:42.7115450Z ........s...............s................s...............s.........ss.ss [ 61%]
2021-05-31T23:57:42.8778017Z s.ss.s....s..............s.............s............s...........s........ [ 61%]
2021-05-31T23:57:43.0395681Z ...s..ss.s..s.s.s..s....s...............s.................s............. [ 62%]
2021-05-31T23:57:43.1941508Z ..s.................s.............s.s.s.s..s.s..s.s......s.............. [ 62%]
2021-05-31T23:57:43.3960889Z ...s................s................................................... [ 62%]
2021-05-31T23:57:43.7640976Z ...................................................s........s.s.s......s [ 62%]
2021-05-31T23:57:44.0201711Z sssssss..s.......s.......s.....sssssssssssssssssssssssssssssssssssssssss [ 62%]
2021-05-31T23:57:44.2817618Z ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 63%]
2021-05-31T23:57:44.5327285Z sssssssssssssssssssssssss.ssssssssssssssssssssssssssssssssssssssssssssss [ 63%]
2021-05-31T23:57:44.7855119Z ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss [ 63%]
2021-05-31T23:57:45.0470762Z ssssssssssssssssssssssssssssssss..s.......s.....ssssssss..s.......s..... [ 63%]
2021-05-31T23:57:45.3174748Z ..s.......s.......s.....ssssssss..s.......s.......s.......s.......s..... [ 64%]
2021-05-31T23:57:45.5858622Z ssssssss..s.......s.......s.......s.......s.....ssssssss..s.......s..... [ 64%]
2021-05-31T23:57:45.8552196Z ..s.......s.......s.....ssssssss..s.......s.......s.......s.......s..... [ 64%]
2021-05-31T23:57:46.1238776Z ssssssss..s.......s.......s.......s.......s.....ssssssss..s.......s..... [ 64%]
2021-05-31T23:57:46.3940430Z ..s.......s.......s.....ssssssss..s.......s.......s.......s.......s..... [ 64%]
2021-05-31T23:57:46.6586153Z ssssssss..s.......s.......s.......s.......s.....ssssssss..s.......s..... [ 65%]
2021-05-31T23:57:46.9275641Z ..s.......s.......s.....ssssssss..s.......s.......s.......s.......s..... [ 65%]
2021-05-31T23:57:47.1929698Z ssssssss..s.......s.......s.......s.......s.....ssssssss..s.......s..... [ 65%]
2021-05-31T23:57:47.4641016Z ..s.......s.......s.....ssssssss..s.......s.......s.......s.......s..... [ 65%]
2021-05-31T23:57:47.7013982Z ssssssss..s.......s.......s............s.......s......ssss.ssss..s...... [ 65%]
2021-05-31T23:57:47.9009600Z ..s.........s.............s........s.......ssss.sss.s...s............s.. [ 66%]
2021-05-31T23:57:48.0716766Z ...............s.................s............s..........ss.s.ss.s.ss... [ 66%]
2021-05-31T23:57:48.2721882Z ..s.............s............s................s......................... [ 66%]
2021-05-31T23:57:48.4374913Z ........................................................................ [ 66%]
2021-05-31T23:57:48.6049957Z ........................................................................ [ 66%]
2021-05-31T23:57:48.8689496Z ........................................................................ [ 67%]
2021-05-31T23:57:49.7195994Z ....xxx................................................................. [ 67%]
2021-05-31T23:57:50.0726931Z ........................................................................ [ 67%]
2021-05-31T23:57:50.6457109Z ........................................................................ [ 67%]
2021-05-31T23:57:50.8694805Z ........................................................................ [ 67%]
2021-05-31T23:57:51.2692761Z .............s..s....................................................... [ 68%]
2021-05-31T23:57:51.6531025Z ........................................................................ [ 68%]
2021-05-31T23:57:52.0410357Z ........................................................................ [ 68%]
2021-05-31T23:57:52.3454508Z ........................................................................ [ 68%]
2021-05-31T23:57:52.6641758Z ........................................................................ [ 69%]
2021-05-31T23:57:53.0360282Z ........................................................................ [ 69%]
2021-05-31T23:57:53.4585433Z .............s.......................................................... [ 69%]
2021-05-31T23:57:53.7615096Z .............................................s...s...s.s..ss.......s.... [ 69%]
2021-05-31T23:57:54.4541503Z ........................................................................ [ 69%]
2021-05-31T23:57:55.0441243Z .................................................s.s.s.s.s.ssss......... [ 70%]
2021-05-31T23:57:55.4779890Z ....................s.s.s.s.s.s.sss..................................... [ 70%]
2021-05-31T23:57:55.8406882Z ........................................................................ [ 70%]
2021-05-31T23:57:56.3287125Z ........................................................................ [ 70%]
2021-05-31T23:57:56.7324611Z ........................................................................ [ 70%]
2021-05-31T23:57:57.0008311Z ........................................................................ [ 71%]
2021-05-31T23:57:57.9652658Z ........................................................................ [ 71%]
2021-05-31T23:57:58.8243839Z ........................................................................ [ 71%]
2021-05-31T23:57:59.6057234Z ........................................................................ [ 71%]
2021-05-31T23:58:00.5323611Z ...................................................................x.... [ 71%]
2021-05-31T23:58:03.0331032Z ..................x.....xx......................x.xxx...............ss.. [ 72%]
2021-05-31T23:58:04.4935813Z .......s....................................................x..x....x... [ 72%]
2021-05-31T23:58:06.2544405Z .........sx............................................................. [ 72%]
2021-05-31T23:58:06.9876584Z ........................................................................ [ 72%]
2021-05-31T23:58:07.7311721Z .................X...................................................... [ 72%]
2021-05-31T23:58:08.2719462Z .......................ss.s....sssssssssssssssssssssssssssssssssssssssss [ 73%]
2021-05-31T23:58:09.3539696Z sssssssssss............................................................. [ 73%]
2021-05-31T23:58:10.1672017Z .......x...............................................................s [ 73%]
2021-05-31T23:58:10.6928365Z .......x........................................x....................... [ 73%]
2021-05-31T23:58:11.0088739Z ....x..............Fatal Python error: Aborted
2021-05-31T23:58:11.0089758Z
2021-05-31T23:58:11.0090437Z Thread 0x00007fa2ae4d7700 (most recent call first):
2021-05-31T23:58:11.0128179Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 400 in read
2021-05-31T23:58:11.0169885Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 432 in from_io
2021-05-31T23:58:11.0215062Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 967 in _thread_receiver
2021-05-31T23:58:11.0239749Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:58:11.0252673Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:58:11.0253616Z
2021-05-31T23:58:11.0254396Z Current thread 0x00007fa2b02bd740 (most recent call first):
2021-05-31T23:58:11.0267115Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_optimize.py", line 780 in test_l_bfgs_b
2021-05-31T23:58:11.0310310Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 183 in pytest_pyfunc_call
2021-05-31T23:58:11.0311870Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:58:11.0313164Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:58:11.0314416Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:58:11.0315678Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:58:11.0316898Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 1641 in runtest
2021-05-31T23:58:11.0318125Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 162 in pytest_runtest_call
2021-05-31T23:58:11.0319359Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:58:11.0320580Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:58:11.0321989Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:58:11.0323215Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:58:11.0324422Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in <lambda>
2021-05-31T23:58:11.0325899Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 311 in from_call
2021-05-31T23:58:11.0327144Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in call_runtest_hook
2021-05-31T23:58:11.0328398Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 215 in call_and_report
2021-05-31T23:58:11.0329619Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 126 in runtestprotocol
2021-05-31T23:58:11.0330885Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 109 in pytest_runtest_protocol
2021-05-31T23:58:11.0332285Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:58:11.0333490Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:58:11.0406735Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:58:11.0408277Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:58:11.0409621Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 89 in run_one_test
2021-05-31T23:58:11.0410894Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 72 in pytest_runtestloop
2021-05-31T23:58:11.0412137Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:58:11.0413370Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:58:11.0414590Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:58:11.0415788Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:58:11.0417008Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 323 in _main
2021-05-31T23:58:11.0418222Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 269 in wrap_session
2021-05-31T23:58:11.0419456Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 316 in pytest_cmdline_main
2021-05-31T23:58:11.0420679Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:58:11.0421895Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:58:11.0423107Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:58:11.0424302Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:58:11.0425508Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 244 in <module>
2021-05-31T23:58:11.0426882Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1084 in executetask
2021-05-31T23:58:11.0428113Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:58:11.0429579Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:58:11.0433506Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 267 in integrate_as_primary_thread
2021-05-31T23:58:11.0434814Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1060 in serve
2021-05-31T23:58:11.0435984Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1554 in serve
2021-05-31T23:58:11.0436725Z File "<string>", line 8 in <module>
2021-05-31T23:58:11.0437308Z File "<string>", line 1 in <module>
2021-05-31T23:58:11.1863462Z [gw2] node down: Not properly terminated
2021-05-31T23:58:11.1944400Z F
2021-05-31T23:58:11.1966262Z replacing crashed worker gw2
2021-05-31T23:58:13.0320124Z ........................................................................ [ 74%]
2021-05-31T23:58:13.8058795Z ..............................s......................................... [ 74%]
2021-05-31T23:58:15.2202744Z ...........................s.ssssss..................................... [ 74%]
2021-05-31T23:58:16.1004011Z ................................s....................................... [ 74%]
2021-05-31T23:58:18.3369711Z ...........sss...s........s................ss....................s.....s [ 74%]
2021-05-31T23:58:19.7716119Z .s......s..ss.........sss....s..................................s....... [ 75%]
2021-05-31T23:58:20.8787949Z .......s.....s.......................ss.....................s.......s... [ 75%]
2021-05-31T23:58:22.3414569Z ....s..s...s.........sss...s....................................s....... [ 75%]
2021-05-31T23:58:23.8364073Z ......s.......ss.ss.................s......s...sssssssssssssssss.....sss [ 75%]
2021-05-31T23:58:25.4114796Z .ss.....s..s.x................s..ss.................sssssxxs..sssss.s.s. [ 75%]
2021-05-31T23:58:26.5594631Z ..........s.......ss.ss.............s..sss.......s..sssss.sssssssssssss. [ 76%]
2021-05-31T23:58:27.1257962Z ...ssss.s...s......s...s...xsss..............ss.ss.................ssss. [ 76%]
2021-05-31T23:58:27.7344819Z ..ss.ss.................ss.sss...sssss.s.s....s..sssss.s.s.............. [ 76%]
2021-05-31T23:58:28.6466500Z s...............s....................................................... [ 76%]
2021-05-31T23:58:29.4382248Z ............s..............s............................................ [ 76%]
2021-05-31T23:58:30.7154831Z s.......................s......................................s........ [ 77%]
2021-05-31T23:58:31.9952557Z ................s.......................................ss.............. [ 77%]
2021-05-31T23:58:32.5880522Z .....................ss................s.......s........................ [ 77%]
2021-05-31T23:58:33.5602351Z ......s......................s............................ss............ [ 77%]
2021-05-31T23:58:34.4852801Z .........s.............................................s................ [ 77%]
2021-05-31T23:58:35.8921854Z ......s...............s...........s....................s.ss.ss.........s [ 78%]
2021-05-31T23:58:36.2969397Z .......s..ssssssssssssssssss....ssss.ss.s.......s......s..........xs.s.. [ 78%]
2021-05-31T23:58:37.2871504Z ...s...........sss.........ss..ss................ssss...s........s..ssss [ 78%]
2021-05-31T23:58:38.5839425Z s.s...s..........s.............s......s........s........s...ss...ss..... [ 78%]
2021-05-31T23:58:38.9888025Z ....s.......ss....................s.....s...sssssssss.ssss.ssss.ss.s.... [ 79%]
2021-05-31T23:58:39.7477428Z ....ss.ss.ss.sss..s....s....s..xss........sss.....sss....s.............. [ 79%]
2021-05-31T23:58:40.6350667Z ............ss.ss................ssss...........s.......s..sssss.s.s.... [ 79%]
2021-05-31T23:58:41.7773457Z ........s............s......s.......................ss.................. [ 79%]
2021-05-31T23:58:42.5200227Z ...s.......s.......s..s...s......s........s............s.ss.......ss.... [ 79%]
2021-05-31T23:58:43.0465810Z ..................s.s........................s..s..........s..ss........ [ 80%]
2021-05-31T23:58:44.4106609Z ...........sss..s................s...s.................................. [ 80%]
2021-05-31T23:58:44.9629347Z ...ss.ss....s....................s......s...........s..ss.ss.ss.ssssssss [ 80%]
2021-05-31T23:58:46.2740250Z sss.....sss.ss.....s..s.x..s....................................ss...... [ 80%]
2021-05-31T23:58:46.6979330Z ...............s.......s......s...s..s...s......ss..................ssss [ 80%]
2021-05-31T23:58:47.8351083Z sx....sssxs..sssss.s.s.......s...............................s.......... [ 81%]
2021-05-31T23:58:48.4158190Z ......s........ss.ss.............s.....s..ssssssssssssssssss....ssss.s.. [ 81%]
2021-05-31T23:58:49.0044669Z s...s..s.xsss.............s......................ss.ss.................s [ 81%]
2021-05-31T23:58:50.1180633Z sss..s..sssss.s.s..............s........................................ [ 81%]
2021-05-31T23:58:51.4197813Z .................s......................................s............... [ 81%]
2021-05-31T23:58:52.2433087Z ............................s.......................ss.................. [ 82%]
2021-05-31T23:58:53.3321331Z ............................s......................s.................... [ 82%]
2021-05-31T23:58:54.3855126Z ........ss.............s......................................s......... [ 82%]
2021-05-31T23:58:55.5999647Z ................................................s.....................s. [ 82%]
2021-05-31T23:58:56.8520800Z .....................s..........................s.ss...s.s.............s [ 82%]
2021-05-31T23:58:57.3699438Z .....................s..ssssssssssssssssss....ssss.ss.s...s..s.xss...... [ 83%]
2021-05-31T23:58:57.9002288Z ...sss....ss..ss............................s.s.s.s..................... [ 83%]
2021-05-31T23:58:58.2047099Z .................................................................s...... [ 83%]
2021-05-31T23:58:59.3255001Z ...s.s.s.s.s..s.......s....................................s.......s.... [ 83%]
2021-05-31T23:59:00.0343531Z ....s.................ss.....................s.....s.s......s..ss....... [ 84%]
2021-05-31T23:59:01.2772135Z ..sss....s...................................................s.......... [ 84%]
2021-05-31T23:59:02.0319714Z ......s..........................................................s...... [ 84%]
2021-05-31T23:59:02.5162468Z ................................ss.....................s.......s.......s [ 84%]
2021-05-31T23:59:03.5192631Z ..s...s.........sss....s................................................ [ 84%]
2021-05-31T23:59:04.9322016Z ............s...................s..............ss.ss.................s.. [ 85%]
2021-05-31T23:59:06.6266044Z ....s...sssssssssssssssss.....sss.ss.....s..s.x................s..ss.... [ 85%]
2021-05-31T23:59:07.7588205Z .............sssssxxs..sssss.s.s...........s.......ss.ss.............s.. [ 85%]
2021-05-31T23:59:08.4592876Z ...s..ssssssssssssssssss....ssss.s..s...s..s.xsss..............ss.ss.... [ 85%]
2021-05-31T23:59:09.6321860Z ..............ssss..s..sssss.s.s..............s......................... [ 85%]
2021-05-31T23:59:11.2227134Z ...........s....................................s....................... [ 86%]
2021-05-31T23:59:12.7095822Z .................s..............s.................s..................... [ 86%]
2021-05-31T23:59:13.8254146Z .........ss.............s.........................................s..... [ 86%]
2021-05-31T23:59:15.2929766Z ...................................s..............s...............s..... [ 86%]
2021-05-31T23:59:16.5290852Z .s.ss.ss.........s....s..ssssssssssssssssss....ssss.ss.s...s..s.xss..... [ 86%]
2021-05-31T23:59:18.3426096Z ....sss..ss.ss................ssss...s..sssss.s.s...........s.......s... [ 87%]
2021-05-31T23:59:19.0957785Z .....s................ss....................s.....s.s......s..ss........ [ 87%]
2021-05-31T23:59:21.0102926Z .sss....s..................................s..............s.....s....... [ 87%]
2021-05-31T23:59:21.7318754Z ................ss.....................s.......s.......s..s...s......... [ 87%]
2021-05-31T23:59:23.7455903Z sss...s....................................s.............s.............. [ 87%]
2021-05-31T23:59:24.4604972Z .............................ss.ss.................s.................... [ 88%]
2021-05-31T23:59:25.5623189Z .........s.........ssssssssssssss.sss.......sss.ss...................... [ 88%]
2021-05-31T23:59:25.9129028Z ...........................s.....s...............x...................... [ 88%]
2021-05-31T23:59:27.9193034Z .................................s....ss.................sssssxxs..sssss [ 88%]
2021-05-31T23:59:29.5054634Z .s.s...........s........ss.ss.............s......s..ssssssssssssssssss.. [ 88%]
2021-05-31T23:59:29.8401397Z ..ssss.s..s...s..s.x.................................................... [ 89%]
2021-05-31T23:59:30.0940201Z ........................................................................ [ 89%]
2021-05-31T23:59:30.3415281Z ........................................................................ [ 89%]
2021-05-31T23:59:30.5732601Z ...............................................................x.....X.. [ 89%]
2021-05-31T23:59:30.7172190Z ........................................................................ [ 90%]
2021-05-31T23:59:30.8942674Z ........................................................................ [ 90%]
2021-05-31T23:59:31.1742594Z ........................................................................ [ 90%]
2021-05-31T23:59:31.1780343Z .Fatal Python error: Aborted
2021-05-31T23:59:31.1780985Z
2021-05-31T23:59:31.1783816Z Thread 0x00007fa0b3eed700 (most recent call first):
2021-05-31T23:59:31.1825391Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 400 in read
2021-05-31T23:59:31.1868632Z File "/opt/hostedtoolcache/Python/3.7.10./x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 432 in from_io
2021-05-31T23:59:31.1934971Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/sit.e-packages/execnet/gateway_base.py", line 967 in _thread_receiver
2021-05-31T23:59:31.1936339Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:59:31.1937639Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:59:31.1938309Z
2021-05-31T23:59:31.1938971Z Current thread 0x00007fa0b5cd3740 (most recent call first):
2021-05-31T23:59:31.1940108Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/_basinhopping.py", line 712 in basinhopping
2021-05-31T23:59:31.1941368Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py", line 186 in test_2d_nograd
2021-05-31T23:59:31.1942624Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 183 in pytest_pyfunc_call
2021-05-31T23:59:31.1943840Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:31.1945021Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:31.1946203Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:31.1947377Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:31.1948540Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 1641 in runtest
2021-05-31T23:59:31.1949759Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 162 in pytest_runtest_call
2021-05-31T23:59:31.1950982Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:31.1952331Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:31.1954883Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:31.1956128Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:31.1957312Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in <lambda>
2021-05-31T23:59:31.1959427Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 311 in from_call
2021-05-31T23:59:31.1960638Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in call_runtest_hook
2021-05-31T23:59:31.1961798Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 215 in call_and_report
2021-05-31T23:59:31.1962933Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 126 in runtestprotocol
2021-05-31T23:59:31.1964228Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 109 in pytest_runtest_protocol
2021-05-31T23:59:31.1965522Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:31.1966690Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:31.1967770Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:31.1968863Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:31.1970024Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 89 in run_one_test
2021-05-31T23:59:31.1971127Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 72 in pytest_runtestloop
2021-05-31T23:59:31.1972241Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:31.1973339Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:31.1974426Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:31.1975500Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:31.1976576Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 323 in _main
2021-05-31T23:59:31.1977665Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 269 in wrap_session
2021-05-31T23:59:31.1978774Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 316 in pytest_cmdline_main
2021-05-31T23:59:31.1979907Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:31.1981003Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:31.1982081Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:31.1983178Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:31.1984249Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 244 in <module>
2021-05-31T23:59:31.1985362Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1084 in executetask
2021-05-31T23:59:31.1986614Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:59:31.1987729Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:59:31.1988912Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 267 in integrate_as_primary_thread
2021-05-31T23:59:31.1990063Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1060 in serve
2021-05-31T23:59:31.1991167Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1554 in serve
2021-05-31T23:59:31.1991887Z File "<string>", line 8 in <module>
2021-05-31T23:59:31.1992447Z File "<string>", line 1 in <module>
2021-05-31T23:59:31.3568587Z ................[gw4] node down: Not properly terminated
2021-05-31T23:59:31.3569936Z F
2021-05-31T23:59:31.3570787Z replacing crashed worker gw4
2021-05-31T23:59:31.7600909Z ........................................................................ [ 90%]
2021-05-31T23:59:32.2587535Z ........................................................................ [ 90%]
2021-05-31T23:59:32.5544375Z ......................................................Fatal Python error: Segmentation fault
2021-05-31T23:59:32.5645763Z
2021-05-31T23:59:32.5647235Z Thread 0x00007f2e4b2d8700 (most recent call first):
2021-05-31T23:59:32.5648866Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 400 in read
2021-05-31T23:59:32.5764050Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 432 in from_io
2021-05-31T23:59:32.5776382Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 967 in _thread_receiver
2021-05-31T23:59:32.5777584Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:59:32.5847416Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:59:32.5848009Z
2021-05-31T23:59:32.5848426Z Current thread 0x00007f2e4d0be740 (most recent call first):
2021-05-31T23:59:32.5849385Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/_dual_annealing.py", line 324 in local_search
2021-05-31T23:59:32.5850395Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/_dual_annealing.py", line 683 in dual_annealing
2021-05-31T23:59:32.5851448Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__dual_annealing.py", line 224 in test_maxiter
2021-05-31T23:59:32.5852485Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 183 in pytest_pyfunc_call
2021-05-31T23:59:32.5853465Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:32.5854420Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:32.5855374Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:32.5856310Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:32.5857261Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 1641 in runtest
2021-05-31T23:59:32.5858221Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 162 in pytest_runtest_call
2021-05-31T23:59:32.5859195Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:32.5860357Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:32.5861286Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:32.5862239Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:32.5863187Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in <lambda>
2021-05-31T23:59:32.5864119Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 311 in from_call
2021-05-31T23:59:32.5865092Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in call_runtest_hook
2021-05-31T23:59:32.5866075Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 215 in call_and_report
2021-05-31T23:59:32.5867043Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 126 in runtestprotocol
2021-05-31T23:59:32.5868158Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 109 in pytest_runtest_protocol
2021-05-31T23:59:32.5869138Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:32.5870070Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:32.5871011Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:32.5871936Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:32.5872961Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 89 in run_one_test
2021-05-31T23:59:32.5873938Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 72 in pytest_runtestloop
2021-05-31T23:59:32.5874888Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:32.5875836Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:32.5876772Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:32.5877691Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:32.5878625Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 323 in _main
2021-05-31T23:59:32.5879551Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 269 in wrap_session
2021-05-31T23:59:32.5880532Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 316 in pytest_cmdline_main
2021-05-31T23:59:32.5881499Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:32.5882428Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:32.5883375Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:32.5884321Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:32.5888042Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 244 in <module>
2021-05-31T23:59:32.5889051Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1084 in executetask
2021-05-31T23:59:32.5890138Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:59:32.5891112Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:59:32.5892145Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 267 in integrate_as_primary_thread
2021-05-31T23:59:32.5893146Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1060 in serve
2021-05-31T23:59:32.5894090Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1554 in serve
2021-05-31T23:59:32.5894674Z File "<string>", line 8 in <module>
2021-05-31T23:59:32.5895083Z File "<string>", line 1 in <module>
2021-05-31T23:59:32.7368309Z [gw5] node down: Not properly terminated
2021-05-31T23:59:32.7386268Z F
2021-05-31T23:59:32.7388755Z replacing crashed worker gw5
2021-05-31T23:59:46.0778343Z ........................................................................ [ 91%]
2021-05-31T23:59:46.4537919Z ........................................................................ [ 91%]
2021-05-31T23:59:47.0243350Z ........................................................................ [ 91%]
2021-05-31T23:59:47.0774975Z ...........Fatal Python error: Aborted
2021-05-31T23:59:47.0776167Z
2021-05-31T23:59:47.0776896Z Thread 0x00007f1f60d6a700 (most recent call first):
2021-05-31T23:59:47.0778438Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 400 in read
2021-05-31T23:59:47.0843365Z File "/opt/hostedtoolcache/P..ython/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 432 in from_io
2021-05-31T23:59:47.0856235Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execn.et/g.ateway_base.py", line 967 in _thread_receiver
2021-05-31T23:59:47.0893742Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220. in run
2021-05-31T23:59:47.0923309Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:59:47.0924319Z
2021-05-31T23:59:47.0925369Z Current thread 0x00007f1f62b50740 (most recent call first):
2021-05-31T23:59:47.0958039Z File "/home/vsts/work/1/s/build/testenv/lib/python3..7/site-packages/scipy/optimize/tests/test__differential_evolution.py", line 316 in test_maxiter_stops_solve
2021-05-31T23:59:47.0959633Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 183 in pytest_pyfunc_call
2021-05-31T23:59:47.0960930Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:47.0962168Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:47.0963399Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:47.0964611Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:47.0966046Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 1641 in runtest
2021-05-31T23:59:47.0967296Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 162 in pytest_runtest_call
2021-05-31T23:59:47.0968588Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:47.0969814Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:47.0971038Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:47.0972410Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:47.0973640Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in <lambda>
2021-05-31T23:59:47.0974911Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 311 in from_call
2021-05-31T23:59:47.0976173Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in call_runtest_hook
2021-05-31T23:59:47.0979261Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 215 in call_and_report
2021-05-31T23:59:47.0980641Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 126 in runtestprotocol
2021-05-31T23:59:47.0981901Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 109 in pytest_runtest_protocol
2021-05-31T23:59:47.0985636Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:47.0987225Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:47.0988554Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:47.0989541Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:47.0990538Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 89 in run_one_test
2021-05-31T23:59:47.0991533Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 72 in pytest_runtestloop
2021-05-31T23:59:47.0992545Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:47.0993574Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:47.0994555Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:47.0995544Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:47.0996519Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 323 in _main
2021-05-31T23:59:47.0997496Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 269 in wrap_session
2021-05-31T23:59:47.0998520Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 316 in pytest_cmdline_main
2021-05-31T23:59:47.0999510Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-05-31T23:59:47.1000510Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-05-31T23:59:47.1001502Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-05-31T23:59:47.1002469Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-05-31T23:59:47.1003455Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 244 in <module>
2021-05-31T23:59:47.1004469Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1084 in executetask
2021-05-31T23:59:47.1005684Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-05-31T23:59:47.1006803Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-05-31T23:59:47.1007926Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 267 in integrate_as_primary_thread
2021-05-31T23:59:47.1008894Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1060 in serve
2021-05-31T23:59:47.1009831Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1554 in serve
2021-05-31T23:59:47.1010435Z File "<string>", line 8 in <module>
2021-05-31T23:59:47.1010848Z File "<string>", line 1 in <module>
2021-05-31T23:59:47.3154713Z ...........................[gw7] node down: Not properly terminated
2021-05-31T23:59:47.3158810Z F
2021-05-31T23:59:47.3159263Z replacing crashed worker gw7
2021-05-31T23:59:49.5018759Z ........................................................................ [ 92%]
2021-05-31T23:59:49.8505925Z ........................................................................ [ 92%]
2021-05-31T23:59:50.2064283Z ........................................................................ [ 92%]
2021-05-31T23:59:50.5663978Z ........................................................................ [ 92%]
2021-05-31T23:59:50.9233183Z ........................................................................ [ 92%]
2021-05-31T23:59:51.2841033Z ........................................................................ [ 93%]
2021-05-31T23:59:51.7522877Z ........................................................................ [ 93%]
2021-05-31T23:59:52.3943043Z ........................................................................ [ 93%]
2021-05-31T23:59:53.4287917Z ........................................................................ [ 93%]
2021-05-31T23:59:54.5318217Z ........................................................................ [ 93%]
2021-05-31T23:59:55.8255789Z ........................................................................ [ 94%]
2021-05-31T23:59:56.5065403Z .............................................ss........ssssss........... [ 94%]
2021-05-31T23:59:57.7664980Z ..........................................................s............. [ 94%]
2021-05-31T23:59:59.2912466Z .....................................sss.s...........ssssss............. [ 94%]
2021-06-01T00:00:00.1203896Z .......................................................s......sssss.ssss [ 94%]
2021-06-01T00:00:01.4347992Z ssssssssssssssssssssssssssssssss.............x........ssssss............ [ 95%]
2021-06-01T00:00:02.3720133Z ........................................................s.......s.s.sss. [ 95%]
2021-06-01T00:00:02.5679825Z sss.s.s.s.s.ss.ss.s.s.ss.s.ss.s.s.s.s.sss.sssss.............Fatal Python error: Aborted
2021-06-01T00:00:02.5680817Z
2021-06-01T00:00:02.5681509Z Thread 0x00007f49e063e700 (most recent call first):
2021-06-01T00:00:02.5716870Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 400 in read
2021-06-01T00:00:02.5757536Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 432 in from_io
2021-06-01T00:00:02.5802474Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 967 in _thread_receiver
2021-06-01T00:00:02.5828041Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-06-01T00:00:02.5841955Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-06-01T00:00:02.5842941Z
2021-06-01T00:00:02.5843686Z Current thread 0x00007f49e2424740 (most recent call first):
2021-06-01T00:00:02.5856715Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_lbfgsb_hessinv.py", line 14 in test_1
2021-06-01T00:00:02.5870829Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 183 in pytest_pyfunc_call
2021-06-01T00:00:02.5913337Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:02.5915031Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:02.5916301Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:02.5917530Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:02.5918746Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 1641 in runtest
2021-06-01T00:00:02.5919969Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 162 in pytest_runtest_call
2021-06-01T00:00:02.5921259Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:02.5922507Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:02.5923959Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:02.5925339Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:02.5926609Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in <lambda>
2021-06-01T00:00:02.5927820Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 311 in from_call
2021-06-01T00:00:02.5929046Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in call_runtest_hook
2021-06-01T00:00:02.5930294Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 215 in call_and_report
2021-06-01T00:00:02.5931542Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 126 in runtestprotocol
2021-06-01T00:00:02.5932793Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 109 in pytest_runtest_protocol
2021-06-01T00:00:02.5934042Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:02.5935262Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:02.5936460Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:02.5940196Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:02.5941220Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 89 in run_one_test
2021-06-01T00:00:02.5942221Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 72 in pytest_runtestloop
2021-06-01T00:00:02.5943237Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:02.5944258Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:02.5945238Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:02.5946218Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:02.5947191Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 323 in _main
2021-06-01T00:00:02.5948161Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 269 in wrap_session
2021-06-01T00:00:02.5949342Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 316 in pytest_cmdline_main
2021-06-01T00:00:02.5950343Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:02.5951334Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:02.5952322Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:02.5953285Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:02.5954265Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 244 in <module>
2021-06-01T00:00:02.5955281Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1084 in executetask
2021-06-01T00:00:02.5956275Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-06-01T00:00:02.5957403Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-06-01T00:00:02.5958475Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 267 in integrate_as_primary_thread
2021-06-01T00:00:02.5959506Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1060 in serve
2021-06-01T00:00:02.5960511Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1554 in serve
2021-06-01T00:00:02.5961136Z File "<string>", line 8 in <module>
2021-06-01T00:00:02.5961601Z File "<string>", line 1 in <module>
2021-06-01T00:00:02.7489132Z [gw8] node down: Not properly terminated
2021-06-01T00:00:02.7489957Z F
2021-06-01T00:00:02.7490396Z replacing crashed worker gw8
2021-06-01T00:00:02.9238184Z Fatal Python error: Aborted
2021-06-01T00:00:02.9238916Z
2021-06-01T00:00:02.9326211Z Thread 0x00007f1a631db700 (most recent call first):
2021-06-01T00:00:02.9327691Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 400 in read
2021-06-01T00:00:02.9328649Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 432 in from_io
2021-06-01T00:00:02.9346326Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 967 in _thread_receiver
2021-06-01T00:00:02.9384149Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-06-01T00:00:02.9397460Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-06-01T00:00:02.9398019Z
2021-06-01T00:00:02.9398994Z Current thread 0x00007f1a64fc1740 (most recent call first):
2021-06-01T00:00:02.9413848Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/_basinhopping.py", line 712 in basinhopping
2021-06-01T00:00:02.9429996Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py", line 199 in test_all_minimizers
2021-06-01T00:00:02.9470245Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 183 in pytest_pyfunc_call
2021-06-01T00:00:02.9471367Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:02.9472286Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:02.9473183Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:02.9474251Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:02.9475148Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 1641 in runtest
2021-06-01T00:00:02.9476063Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 162 in pytest_runtest_call
2021-06-01T00:00:02.9476959Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:02.9477847Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:02.9478712Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:02.9479591Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:02.9480480Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in <lambda>
2021-06-01T00:00:02.9481457Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 311 in from_call
2021-06-01T00:00:02.9482370Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in call_runtest_hook
2021-06-01T00:00:02.9483288Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 215 in call_and_report
2021-06-01T00:00:02.9484189Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 126 in runtestprotocol
2021-06-01T00:00:02.9605801Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 109 in pytest_runtest_protocol
2021-06-01T00:00:02.9607093Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:02.9608078Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:02.9609047Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:02.9609980Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:02.9610933Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 89 in run_one_test
2021-06-01T00:00:02.9611899Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 72 in pytest_runtestloop
2021-06-01T00:00:02.9612843Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:02.9613820Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:02.9614772Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:02.9615698Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:02.9616623Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 323 in _main
2021-06-01T00:00:02.9617558Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 269 in wrap_session
2021-06-01T00:00:02.9618513Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 316 in pytest_cmdline_main
2021-06-01T00:00:02.9619472Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:02.9620392Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:02.9621535Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:02.9622480Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:02.9623392Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 244 in <module>
2021-06-01T00:00:02.9624354Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1084 in executetask
2021-06-01T00:00:02.9625324Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-06-01T00:00:02.9626276Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-06-01T00:00:02.9627300Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 267 in integrate_as_primary_thread
2021-06-01T00:00:02.9628297Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1060 in serve
2021-06-01T00:00:02.9629340Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1554 in serve
2021-06-01T00:00:02.9629919Z File "<string>", line 8 in <module>
2021-06-01T00:00:02.9630325Z File "<string>", line 1 in <module>
2021-06-01T00:00:03.8333134Z [gw6] node down: Not properly terminated
2021-06-01T00:00:03.8335044Z F
2021-06-01T00:00:03.8335985Z maximum crashed workers reached: 8
2021-06-01T00:00:17.9757531Z ........................................................................ [ 95%]
2021-06-01T00:00:21.9145497Z ........................................................................ [ 95%]
2021-06-01T00:00:23.2396166Z .................................................................Fatal Python error: Aborted
2021-06-01T00:00:23.2397501Z
2021-06-01T00:00:23.2398213Z Thread 0x00007f2398ee1700 (most recent call first):
2021-06-01T00:00:23.2399769Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 400 in read
2021-06-01T00:00:23.2401081Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 432 in from_io
2021-06-01T00:00:23.2402372Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 967 in _thread_receiver
2021-06-01T00:00:23.2403608Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-06-01T00:00:23.2405074Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-06-01T00:00:23.2405824Z
2021-06-01T00:00:23.2406514Z Current thread 0x00007f239acc7740 (most recent call first):
2021-06-01T00:00:23.2407743Z File "/home/vsts/work/1/s/build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__differential_evolution.py", line 418 in test_exp_runs
2021-06-01T00:00:23.2409126Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 183 in pytest_pyfunc_call
2021-06-01T00:00:23.2410374Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:23.2411616Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:23.2422125Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:23.2446363Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:23.2447761Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/python.py", line 1641 in runtest
2021-06-01T00:00:23.2449196Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 162 in pytest_runtest_call
2021-06-01T00:00:23.2450395Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:23.2451582Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:23.2454258Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:23.2455249Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:23.2456164Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in <lambda>
2021-06-01T00:00:23.2457127Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 311 in from_call
2021-06-01T00:00:23.2458092Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 255 in call_runtest_hook
2021-06-01T00:00:23.2459263Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 215 in call_and_report
2021-06-01T00:00:23.2460248Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 126 in runtestprotocol
2021-06-01T00:00:23.2461233Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/runner.py", line 109 in pytest_runtest_protocol
2021-06-01T00:00:23.2462213Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:23.2463158Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:23.2464076Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:23.2465027Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:23.2466134Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 89 in run_one_test
2021-06-01T00:00:23.2467082Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 72 in pytest_runtestloop
2021-06-01T00:00:23.2468042Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:23.2468963Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:23.2469897Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:23.2470830Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:23.2471743Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 323 in _main
2021-06-01T00:00:23.2472690Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 269 in wrap_session
2021-06-01T00:00:23.2473653Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/_pytest/main.py", line 316 in pytest_cmdline_main
2021-06-01T00:00:23.2474601Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/callers.py", line 114 in _multicall
2021-06-01T00:00:23.2475540Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 87 in <lambda>
2021-06-01T00:00:23.2476477Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/manager.py", line 93 in _hookexec
2021-06-01T00:00:23.2477395Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/pluggy/hooks.py", line 281 in __call__
2021-06-01T00:00:23.2478443Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/xdist/remote.py", line 244 in <module>
2021-06-01T00:00:23.2479395Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1084 in executetask
2021-06-01T00:00:23.2480355Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 220 in run
2021-06-01T00:00:23.2481325Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 285 in _perform_spawn
2021-06-01T00:00:23.2482338Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 267 in integrate_as_primary_thread
2021-06-01T00:00:23.2483339Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1060 in serve
2021-06-01T00:00:23.2484302Z File "/opt/hostedtoolcache/Python/3.7.10/x64/lib/python3.7/site-packages/execnet/gateway_base.py", line 1554 in serve
2021-06-01T00:00:23.2525276Z File "<string>", line 8 in <module>
2021-06-01T00:00:23.2525972Z File "<string>", line 1 in <module>
2021-06-01T00:00:23.3979631Z [gw9] node down: Not properly terminated
2021-06-01T00:00:23.3982649Z F
2021-06-01T00:00:23.3983423Z maximum crashed workers reached: 8
2021-06-01T00:00:23.4036916Z
2021-06-01T00:00:23.4087559Z =================================== FAILURES ===================================
2021-06-01T00:00:23.4088714Z __________________ TestTrustRegionConstr.test_no_constraints ___________________
2021-06-01T00:00:23.4090214Z [gw0] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:23.4091102Z scipy/optimize/tests/test_minimize_constrained.py:539: in test_no_constraints
2021-06-01T00:00:23.4091891Z assert_array_almost_equal(result1.x, prob.x_opt, decimal=5)
2021-06-01T00:00:23.4092595Z E AssertionError:
2021-06-01T00:00:23.4093251Z E Arrays are not almost equal to 5 decimals
2021-06-01T00:00:23.4093942Z E
2021-06-01T00:00:23.4094571Z E Mismatched elements: 2 / 2 (100%)
2021-06-01T00:00:23.4095269Z E Max absolute difference: 83.1695416
2021-06-01T00:00:23.4095975Z E Max relative difference: 83.1695416
2021-06-01T00:00:23.4096867Z E x: array([-18.23919, 84.16954])
2021-06-01T00:00:23.4097564Z E y: array([1., 1.])
2021-06-01T00:00:23.4098325Z prob = <scipy.optimize.tests.test_minimize_constrained.Rosenbrock object at 0x7f1f5c7f8050>
2021-06-01T00:00:23.4099118Z result = cg_niter: 33
2021-06-01T00:00:23.4099793Z cg_stop_cond: 1
2021-06-01T00:00:23.4100405Z constr: []
2021-06-01T00:00:23.4101037Z constr_nfev: []
2021-06-01T00:00:23.4101664Z constr_nhev: []
2021-06-01T00:00:23.4102251Z con...
2021-06-01T00:00:23.4102861Z success: True
2021-06-01T00:00:23.4103499Z tr_radius: 0.3780632072195338
2021-06-01T00:00:23.4104152Z v: []
2021-06-01T00:00:23.4104806Z x: array([1., 1.])
2021-06-01T00:00:23.4105495Z result1 = fun: 18.525555683400004
2021-06-01T00:00:23.4106233Z hess_inv: <2x2 LbfgsInvHessProduct with dtype=float64>
2021-06-01T00:00:23.4107135Z jac: array([-18.23918748, ...CH'
2021-06-01T00:00:23.4107820Z nfev: 3
2021-06-01T00:00:23.4108406Z nit: 0
2021-06-01T00:00:23.4108975Z njev: 1
2021-06-01T00:00:23.4109554Z status: 2
2021-06-01T00:00:23.4110126Z success: False
2021-06-01T00:00:23.4110999Z x: array([-18.23918748, 84.1695416 ])
2021-06-01T00:00:23.4111759Z result2 = fun: 18.525555683400004
2021-06-01T00:00:23.4112503Z hess_inv: <2x2 LbfgsInvHessProduct with dtype=float64>
2021-06-01T00:00:23.4114405Z jac: array([-18.23918667, ...CH'
2021-06-01T00:00:23.4117447Z nfev: 5
2021-06-01T00:00:23.4117870Z nit: 0
2021-06-01T00:00:23.4118246Z njev: 1
2021-06-01T00:00:23.4118634Z status: 2
2021-06-01T00:00:23.4119021Z success: False
2021-06-01T00:00:23.4119858Z x: array([-18.23918667, 84.16954002])
2021-06-01T00:00:23.4120506Z self = <scipy.optimize.tests.test_minimize_constrained.TestTrustRegionConstr testMethod=test_no_constraints>
2021-06-01T00:00:23.4861706Z _ build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_minimize_constrained.py _
2021-06-01T00:00:23.4864036Z [gw0] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:23.4866093Z worker 'gw0' crashed while running 'build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_minimize_constrained.py::TestEmptyConstraint::test_empty_constraint'
2021-06-01T00:00:23.5601376Z _ build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py _
2021-06-01T00:00:23.5602708Z [gw1] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:23.5603708Z worker 'gw1' crashed while running 'build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py::TestBasinHopping::test_1d_grad'
2021-06-01T00:00:23.6334120Z _ build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py _
2021-06-01T00:00:23.6335846Z [gw3] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:23.6336982Z worker 'gw3' crashed while running 'build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py::TestBasinHopping::test_2d'
2021-06-01T00:00:23.7052612Z _ build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_optimize.py _
2021-06-01T00:00:23.7054551Z [gw2] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:23.7055930Z worker 'gw2' crashed while running 'build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_optimize.py::TestOptimizeSimple::test_l_bfgs_b'
2021-06-01T00:00:23.7743168Z _ build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py _
2021-06-01T00:00:23.7745092Z [gw4] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:23.7746417Z worker 'gw4' crashed while running 'build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py::TestBasinHopping::test_2d_nograd'
2021-06-01T00:00:23.8436955Z _ build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__dual_annealing.py _
2021-06-01T00:00:23.8438390Z [gw5] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:23.8439497Z worker 'gw5' crashed while running 'build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__dual_annealing.py::TestDualAnnealing::test_maxiter'
2021-06-01T00:00:23.9132110Z _ build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__differential_evolution.py _
2021-06-01T00:00:23.9133440Z [gw7] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:23.9134545Z worker 'gw7' crashed while running 'build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__differential_evolution.py::TestDifferentialEvolutionSolver::test_maxiter_stops_solve'
2021-06-01T00:00:23.9854159Z _ build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_lbfgsb_hessinv.py _
2021-06-01T00:00:23.9855607Z [gw8] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:23.9856634Z worker 'gw8' crashed while running 'build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_lbfgsb_hessinv.py::test_1'
2021-06-01T00:00:24.0600974Z _ build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py _
2021-06-01T00:00:24.0602376Z [gw6] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:24.0603490Z worker 'gw6' crashed while running 'build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__basinhopping.py::TestBasinHopping::test_all_minimizers'
2021-06-01T00:00:24.1361151Z _ build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__differential_evolution.py _
2021-06-01T00:00:24.1362956Z [gw9] linux -- Python 3.7.10 /opt/hostedtoolcache/Python/3.7.10/x64/bin/python
2021-06-01T00:00:24.1364143Z worker 'gw9' crashed while running 'build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test__differential_evolution.py::TestDifferentialEvolutionSolver::test_exp_runs'
2021-06-01T00:00:24.2106429Z ================== xdist: maximum crashed workers reached: 8 ===================
2021-06-01T00:00:24.3782220Z ============================= slowest 10 durations =============================
2021-06-01T00:00:24.3799466Z 9.19s call build/testenv/lib/python3.7/site-packages/scipy/_lib/tests/test_import_cycles.py::test_modules_importable
2021-06-01T00:00:24.3800818Z 8.87s call build/testenv/lib/python3.7/site-packages/scipy/stats/tests/test_continuous_basic.py::test_cont_basic[500-200-wrapcauchy-arg106]
2021-06-01T00:00:24.3801970Z 5.31s call build/testenv/lib/python3.7/site-packages/scipy/spatial/tests/test_kdtree.py::test_kdtree_count_neighbous_multiple_r[cKDTree]
2021-06-01T00:00:24.3803082Z 5.30s call build/testenv/lib/python3.7/site-packages/scipy/spatial/tests/test_kdtree.py::test_kdtree_count_neighbous_multiple_r[KDTree]
2021-06-01T00:00:24.3804432Z 5.04s call build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_linprog.py::TestLinprogHiGHSIPM::test_marginals
2021-06-01T00:00:24.3805919Z 4.96s call build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_lsq_linear.py::TestTRF::test_large_rank_deficient
2021-06-01T00:00:24.3807004Z 4.93s call build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_lsq_linear.py::TestBVLS::test_large_rank_deficient
2021-06-01T00:00:24.3808089Z 4.89s call build/testenv/lib/python3.7/site-packages/scipy/optimize/tests/test_lsq_linear.py::TestTRF::test_sparse_bounds
2021-06-01T00:00:24.3809130Z 3.72s call build/testenv/lib/python3.7/site-packages/scipy/spatial/tests/test_kdtree.py::test_kdtree_box[KDTree]
2021-06-01T00:00:24.3810164Z 3.63s call build/testenv/lib/python3.7/site-packages/scipy/sparse/linalg/isolve/tests/test_iterative.py::test_zero_rhs[gcrotmk]
2021-06-01T00:00:24.3820392Z =========================== short test summary info ============================
2021-06-01T00:00:24.3821214Z FAILED scipy/optimize/tests/test_minimize_constrained.py::TestTrustRegionConstr::test_no_constraints
2021-06-01T00:00:24.3821928Z FAILED scipy/optimize/tests/test_minimize_constrained.py::TestEmptyConstraint::test_empty_constraint
2021-06-01T00:00:24.3822610Z FAILED scipy/optimize/tests/test__basinhopping.py::TestBasinHopping::test_1d_grad
2021-06-01T00:00:24.3823233Z FAILED scipy/optimize/tests/test__basinhopping.py::TestBasinHopping::test_2d
2021-06-01T00:00:24.3823913Z FAILED scipy/optimize/tests/test_optimize.py::TestOptimizeSimple::test_l_bfgs_b
2021-06-01T00:00:24.3824554Z FAILED scipy/optimize/tests/test__basinhopping.py::TestBasinHopping::test_2d_nograd
2021-06-01T00:00:24.3825189Z FAILED scipy/optimize/tests/test__dual_annealing.py::TestDualAnnealing::test_maxiter
2021-06-01T00:00:24.3825912Z FAILED scipy/optimize/tests/test__differential_evolution.py::TestDifferentialEvolutionSolver::test_maxiter_stops_solve
2021-06-01T00:00:24.3826583Z FAILED scipy/optimize/tests/test_lbfgsb_hessinv.py::test_1
2021-06-01T00:00:24.3827183Z FAILED scipy/optimize/tests/test__basinhopping.py::TestBasinHopping::test_all_minimizers
2021-06-01T00:00:24.3827890Z FAILED scipy/optimize/tests/test__differential_evolution.py::TestDifferentialEvolutionSolver::test_exp_runs
2021-06-01T00:00:24.3828630Z XPASS scipy/linalg/tests/test_matfuncs.py::TestFractionalMatrixPower::test_singular Too unstable across LAPACKs.
2021-06-01T00:00:24.3829315Z XPASS scipy/ndimage/tests/test_datatypes.py::test_uint64_max runs only on darwin
2021-06-01T00:00:24.3830382Z XPASS scipy/optimize/tests/test_linprog.py::TestLinprogIPSparse::test_bug_6690 Fails with ATLAS, see gh-7877
2021-06-01T00:00:24.3831396Z XPASS scipy/optimize/tests/test_linprog.py::TestLinprogIPSparsePresolve::test_bug_6690 Fails with ATLAS, see gh-7877
2021-06-01T00:00:24.3832721Z XPASS scipy/optimize/tests/test_minimize_constrained.py::TestBoundedNelderMead::test_outside_bounds_warning Failing on Azure Linux and macOS builds, see gh-13846
2021-06-01T00:00:24.3833566Z XPASS scipy/special/tests/test_basic.py::TestCephes::test_fdtri_mysterious_failure Returns nan on i686.
2021-06-01T00:00:24.3916877Z = 11 failed, 31170 passed, 2072 skipped, 108 xfailed, 6 xpassed in 438.07s (0:07:18) =
2021-06-01T00:00:25.3459708Z *** Looks like some tests failed.
2021-06-01T00:00:25.3581800Z ##[error]Bash exited with code '255'.
2021-06-01T00:00:25.3597018Z ##[section]Finishing: Run tests
</code></pre></div>
</details> | <p dir="auto">KDtree/cKDtree do not reference each-other.</p>
<p dir="auto">is adding a <code class="notranslate">:seealso:</code> be useful ?</p>
<p dir="auto">Any reason when using KDtree not to use cKDtree automatically when available ?</p> | 0 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=vbose" rel="nofollow">Vigil Bose</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-2706?redirect=false" rel="nofollow">SPR-2706</a></strong> and commented</p>
<p dir="auto">We are currently working on an enterprise project for one of our biggest clients. We are using Spring 2.0 and Spring Web Flow 1.0 Rc4. While deploying the application to Oracle 9ias 10.1.2.0.2 in our development environment, we encountered the following error. We experienced the same error in Spring 2.0 RC2 and it was fixed in Spring 2.0 RC3 by Rick Evans. The ticket No is SPR - 2290. Kindly fix the bug. I will attach the XMLParser Oracle uses so you guys can test it. This is a critical error and we are unable to move forward.</p>
<p dir="auto">EXCEPTION FROM THE LOG FILE:</p>
<hr>
<p dir="auto">06/10/11 17:58:18 Started<br>
06/10/11 17:58:21 drlm: jsp: init<br>
06/10/11 17:58:21 drlm: context: init<br>
06/10/11 17:58:21 drlm: Loading Spring root WebApplicationContext<br>
06/10/11 17:58:52 drlm: Error initializing servlet<br>
org.springframework.beans.factory.BeanDefinitionStoreException: Line 8 in XML document from ServletContext resource [/WEB-INF/drlm-servlet.xml] is invalid; nested exception is oracle.xml.parser.schema.XSDException: Duplicated definition for: 'identifiedType'<br>
Caused by: oracle.xml.parser.schema.XSDException: Duplicated definition for: 'identifiedType'<br>
at oracle.xml.parser.v2.XMLError.flushErrorHandler(XMLError.java:444)<br>
at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:303)<br>
at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:290)<br>
at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:196)<br>
at oracle.xml.jaxp.JXDocumentBuilder.parse(JXDocumentBuilder.java:151)<br>
at org.springframework.beans.factory.xml.DefaultDocumentLoader.loadDocument(DefaultDocumentLoader.java:77)<br>
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:405)<br>
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:357)<br>
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:334)<br>
at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:126)<br>
at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:142)<br>
at org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:123)<br>
at org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:91)<br>
at org.springframework.context.support.AbstractRefreshableApplicationContext.refreshBeanFactory(AbstractRefreshableApplicationContext.java:94)<br>
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:294)<br>
at org.springframework.web.context.support.AbstractRefreshableWebApplicationContext.refresh(AbstractRefreshableWebApplicationContext.java:156)<br>
at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:246)<br>
at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:184)<br>
at org.springframework.web.context.ContextLoaderServlet.init(ContextLoaderServlet.java:83)<br>
at javax.servlet.GenericServlet.init(GenericServlet.java:258)<br>
at com.evermind.server.http.HttpApplication.loadServlet(HttpApplication.java:2354)<br>
at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4795)<br>
at com.evermind.server.http.HttpApplication.initPreloadServlets(HttpApplication.java:4889)<br>
at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1015)<br>
at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:549)<br>
at com.evermind.server.Application.getHttpApplication(Application.java:890)<br>
at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:707)<br>
at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:625)<br>
at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:278)<br>
at com.evermind.server.http.HttpServer.setSites(HttpServer.java:278)<br>
at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:179)<br>
at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)<br>
at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1551)<br>
at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)<br>
at java.lang.Thread.run(Thread.java:534)<br>
06/10/11 17:58:52 drlm: Error preloading servlet<br>
javax.servlet.ServletException: Error initializing servlet<br>
at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4846)<br>
at com.evermind.server.http.HttpApplication.initPreloadServlets(HttpApplication.java:4889)<br>
at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1015)<br>
at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:549)<br>
at com.evermind.server.Application.getHttpApplication(Application.java:890)<br>
at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:707)<br>
at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:625)<br>
at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:278)<br>
at com.evermind.server.http.HttpServer.setSites(HttpServer.java:278)<br>
at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:179)<br>
at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)<br>
at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1551)<br>
at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)<br>
at java.lang.Thread.run(Thread.java:534)<br>
06/10/11 17:58:52 drlm: drlm: init<br>
06/10/11 17:58:52 drlm: Loading WebApplicationContext for Spring FrameworkServlet 'drlm'<br>
06/10/11 17:58:52 drlm: Error initializing servlet<br>
org.springframework.beans.factory.BeanDefinitionStoreException: Line 8 in XML document from ServletContext resource [/WEB-INF/drlm-servlet.xml] is invalid; nested exception is oracle.xml.parser.schema.XSDException: Duplicated definition for: 'identifiedType'<br>
Caused by: oracle.xml.parser.schema.XSDException: Duplicated definition for: 'identifiedType'<br>
at oracle.xml.parser.v2.XMLError.flushErrorHandler(XMLError.java:444)<br>
at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:303)<br>
at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:290)<br>
at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:196)<br>
at oracle.xml.jaxp.JXDocumentBuilder.parse(JXDocumentBuilder.java:151)<br>
at org.springframework.beans.factory.xml.DefaultDocumentLoader.loadDocument(DefaultDocumentLoader.java:77)<br>
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:405)<br>
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:357)<br>
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:334)<br>
at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:126)<br>
at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:142)<br>
at org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:123)<br>
at org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:91)<br>
at org.springframework.context.support.AbstractRefreshableApplicationContext.refreshBeanFactory(AbstractRefreshableApplicationContext.java:94)<br>
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:294)<br>
at org.springframework.web.context.support.AbstractRefreshableWebApplicationContext.refresh(AbstractRefreshableWebApplicationContext.java:156)<br>
at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:246)<br>
at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:184)<br>
at org.springframework.web.context.ContextLoaderServlet.init(ContextLoaderServlet.java:83)<br>
at javax.servlet.GenericServlet.init(GenericServlet.java:258)<br>
at com.evermind.server.http.HttpApplication.loadServlet(HttpApplication.java:2354)<br>
at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4795)<br>
at com.evermind.server.http.HttpApplication.initPreloadServlets(HttpApplication.java:4889)<br>
at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1015)<br>
at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:549)<br>
at com.evermind.server.Application.getHttpApplication(Application.java:890)<br>
at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:707)<br>
at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:625)<br>
at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:278)<br>
at com.evermind.server.http.HttpServer.setSites(HttpServer.java:278)<br>
at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:179)<br>
at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)<br>
at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1551)<br>
at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)<br>
at java.lang.Thread.run(Thread.java:534)<br>
06/10/11 17:58:52 drlm: Error preloading servlet<br>
javax.servlet.ServletException: Error initializing servlet<br>
at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4846)<br>
at com.evermind.server.http.HttpApplication.initPreloadServlets(HttpApplication.java:4889)<br>
at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1015)<br>
at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:549)<br>
at com.evermind.server.Application.getHttpApplication(Application.java:890)<br>
at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:707)<br>
at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:625)<br>
at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:278)<br>
at com.evermind.server.http.HttpServer.setSites(HttpServer.java:278)<br>
at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:179)<br>
at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)<br>
at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1551)<br>
at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)<br>
at java.lang.Thread.run(Thread.java:534)<br>
06/10/11 17:58:52 drlm: dwr-invoker: init<br>
06/10/11 17:58:53 drlm: Started</p>
<p dir="auto">drlm-servlet.xml file:</p>
<hr>
<p dir="auto"><?xml version="1.0" encoding="UTF-8"?></p>
<p dir="auto"><beans xmlns="<a href="http://www.springframework.org/schema/beans" rel="nofollow">http://www.springframework.org/schema/beans</a>"<br>
xmlns:xsi="<a href="http://www.w3.org/2001/XMLSchema-instance" rel="nofollow">http://www.w3.org/2001/XMLSchema-instance</a>"<br>
xmlns:flow="<a href="http://www.springframework.org/schema/webflow-config" rel="nofollow">http://www.springframework.org/schema/webflow-config</a>"<br>
xsi:schemaLocation="<a href="http://www.springframework.org/schema/beans" rel="nofollow">http://www.springframework.org/schema/beans</a><br>
<a href="http://www.springframework.org/schema/beans/spring-beans-2.0.xsd" rel="nofollow">http://www.springframework.org/schema/beans/spring-beans-2.0.xsd</a><br>
<a href="http://www.springframework.org/schema/webflow-config" rel="nofollow">http://www.springframework.org/schema/webflow-config</a><br>
<a href="http://www.springframework.org/schema/webflow-config/spring-webflow-config-1.0.xsd%22%3E" rel="nofollow">http://www.springframework.org/schema/webflow-config/spring-webflow-config-1.0.xsd"></a></p>
<p dir="auto"><!--</p>
<ul dir="auto">
<li>
<p dir="auto">DispatcherServlet application context for Device Registration and Listing Application web tier.<br>
--></p>
- Message source for this context, loaded from localized "messages_xx" files.
<ul dir="auto">
<li>Could also reside in the root application context, as it is generic,</li>
<li>but is currently just used within DRLM's web tier.<br>
--></li>
</ul>
uk.ltd.getahead.dwr.DWRServlet
dwr-invoker
true
flowController
drlmMainMenuController
<p dir="auto"><flow:executor id="flowExecutor" registry-ref="flowRegistry" repository-type="continuation"/></p>
<p dir="auto"><flow:registry id="flowRegistry"><br>
<flow:location path="file:html/WEB-INF/flows/**/*-flow.xml"/><br>
</flow:registry></p>
</li>
</ul>
<p dir="auto"></beans></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/12019/xmlparserv2.jar" rel="nofollow">xmlparserv2.jar</a> (<em>872.27 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="398071034" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/7316" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/7316/hovercard" href="https://github.com/spring-projects/spring-framework/issues/7316">#7316</a> <a href="http://www.springframework.org/schema/jee" rel="nofollow">http://www.springframework.org/schema/jee</a> doesn't validate in XMLSpy (<em><strong>"is depended on by"</strong></em>)</li>
</ul> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=skaffman" rel="nofollow">Kenny MacLeod</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-7043?redirect=false" rel="nofollow">SPR-7043</a></strong> and commented</p>
<p dir="auto">I would like to see an attribute added to the <code class="notranslate">@Async</code> annotation, which allows the specification of the name of the executor bean to be used for invocations on that method. This would be an alternative to specifying the executor name in the <code class="notranslate"><task:annotation-driven/></code> element.</p>
<p dir="auto">The use case is that sometimes you want multiple executors in a context, and different <code class="notranslate">@Async</code>-annotated beans need to use different executors. Currently, there is no way to do this - all <code class="notranslate">@Async</code>-annotated beans in a given context must use whichever executor is configured in the <code class="notranslate"><task:annotation-driven/></code> element.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.0.1</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="398102969" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/11513" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/11513/hovercard" href="https://github.com/spring-projects/spring-framework/issues/11513">#11513</a> Enable Executor qualification with <code class="notranslate">@Async</code> (<em><strong>"duplicates"</strong></em>)</li>
</ul>
<p dir="auto">2 votes, 2 watchers</p> | 0 |
<p dir="auto">While creating a distplot on 'Tips' dataset on 'Total_Bills' column the Y axis values in the chart appear in decimal while I am expecting it to provide the counts.</p>
<p dir="auto">I am using the following code:</p>
<p dir="auto"><code class="notranslate">import seaborn as sns %matplotlib inline tips = sns.load_dataset('tips') sns.distplot(tips['total_bill'],bins=10,norm_hist=False)</code></p>
<p dir="auto">which gives following output:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/33238033/77960555-3a28f100-7324-11ea-9f74-68af6e1c930f.PNG"><img src="https://user-images.githubusercontent.com/33238033/77960555-3a28f100-7324-11ea-9f74-68af6e1c930f.PNG" alt="New_Book_Same_Cell" style="max-width: 100%;"></a></p>
<p dir="auto">while I am expecting the y axis to show the values as per below.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/33238033/77960814-a146a580-7324-11ea-8f2f-e96a9104f3c3.PNG"><img src="https://user-images.githubusercontent.com/33238033/77960814-a146a580-7324-11ea-8f2f-e96a9104f3c3.PNG" alt="Expected Output" style="max-width: 100%;"></a></p>
<p dir="auto">Following Troubleshooting steps were performed:</p>
<ol dir="auto">
<li>Restart Kernel and Run All Cells</li>
<li>Copy the entire code in One Cell</li>
<li>Open a new Jupyter Notebook to wrote the code again.</li>
<li>Explicitly mentioned norm_hist = False in the argument</li>
</ol>
<p dir="auto">But none of these work. Why by default does it show values like 0.01, 0.02, 0.03 .... 0.06 on the y-axis?</p> | <p dir="auto">Hi all,</p>
<p dir="auto">(first of all: awesome library, I love it)</p>
<p dir="auto">I am wondering about the default behavior of <code class="notranslate">distplot</code> when <code class="notranslate">norm_hist</code> is <code class="notranslate">False</code>.</p>
<p dir="auto">At least on 0.8.0, when</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="sns.distplot(x, norm_hist=False)"><pre class="notranslate"><span class="pl-s1">sns</span>.<span class="pl-en">distplot</span>(<span class="pl-s1">x</span>, <span class="pl-s1">norm_hist</span><span class="pl-c1">=</span><span class="pl-c1">False</span>)</pre></div>
<p dir="auto">produces a figure that is 1) normalized and 2) still has the KDE, which is a bit of a gotcha (<em>i.e.</em> unless you carefully read the docs for <code class="notranslate">norm_hist</code> and <code class="notranslate">kde</code> and infer if <code class="notranslate">kde</code> is default-True, and it might override <code class="notranslate">norm_hist=False</code>.</p>
<p dir="auto">If you run:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="sns.distplot(x, norm_hist=False, kde=False)"><pre class="notranslate"><span class="pl-s1">sns</span>.<span class="pl-en">distplot</span>(<span class="pl-s1">x</span>, <span class="pl-s1">norm_hist</span><span class="pl-c1">=</span><span class="pl-c1">False</span>, <span class="pl-s1">kde</span><span class="pl-c1">=</span><span class="pl-c1">False</span>)</pre></div>
<p dir="auto">This will give you an unnormed, <em>sans</em>-KDE distribution.</p>
<p dir="auto">Which itself is a little disappointing since the KDE is actually super nice for understanding the structure of the data.</p>
<p dir="auto">I can think of two potential ways to address this mild annoyance:</p>
<ol dir="auto">
<li>default <code class="notranslate">kde=None</code> and have it infer if it should compute a KDE from the value of <code class="notranslate">norm_hist</code>, or</li>
<li>if <code class="notranslate">norm_hist=False</code>, compute the KDE of the normalized figure, but then multiply it by the integration value of the distribution to put it on the plot. (I am not a statistician, so this seems fine to me, but perhaps isn't kosher for some reason?)</li>
</ol>
<p dir="auto">I'd be open to doing this myself (esp 2), as long as I know you'll accept the PR 😅 .</p>
<p dir="auto">Cheers!</p> | 1 |
<p dir="auto">Hi.<br>
Is it possible to get some message, when some installed plugins have been updated?</p> | <p dir="auto">for <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="156233363" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/6654" data-hovercard-type="issue" data-hovercard-url="/microsoft/vscode/issues/6654/hovercard" href="https://github.com/microsoft/vscode/issues/6654">#6654</a>:</p>
<ul dir="auto">
<li>VSCode Version: 1.1.0 alpha</li>
<li>OS Version: Window 10</li>
</ul>
<p dir="auto">When selecting lines of text in the integrated terminal, if you drag the mouse below the bottom of the integrated terminal's viewport, some text in the editor becomes part of the selection:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1898161/15499224/5f9fcebc-21a3-11e6-93bb-508fec8d18fe.gif"><img src="https://cloud.githubusercontent.com/assets/1898161/15499224/5f9fcebc-21a3-11e6-93bb-508fec8d18fe.gif" alt="may-24-2016 11-28-52" data-animated-image="" style="max-width: 100%;"></a></p> | 0 |
<p dir="auto">Sorry in advance if this is the wrong place or way to ask this. I would like to add a hook to the trackball mouse controls so that a user can specify a handler they would like called first if needed. Doing it is not difficult but I'd like to contribute it back to the community if it has value. How do I go about doing that? Is there an example of other code that I can look at that would be consistent stylistically?</p> | <p dir="auto">My goal is to have the camera looking perpendicularly at one face of a cube, no matter how the cube rotates. I'm using FirstPersonControls to control the cube. I'm using the pointer lock API so the cube rotates with my mouse movements as a character would in a 3rd person shooter.</p>
<p dir="auto">I'm having problems keeping the camera a fixed distance behind the cube and always looking at the cube at the same angle.</p>
<p dir="auto">To set the position of the camera, I'm doing something like this:<br>
camera.position.x = mesh.position.x + Math.sin(mesh.rotation.y) * 400;<br>
camera.position.y = 450;<br>
camera.position.z = mesh.position.z + Math.cos(mesh.rotation.y) * 400;</p>
<p dir="auto">camera.lookAt(mesh.position);</p>
<p dir="auto">There's two problems with this: One is I'm able to keep aligned behind the cube for a rotation of only 180 degrees, then the cube will do a full spin before the camera re-aligns again. I suspect this is because, when controlled by FirstPersonControls, mesh.rotation.y takes on values from -Pi/2 to Pi/2 and then starts returning to -Pi/2 even though I keep turning in the same direction. So the camera is not able to do a full spin as it would if mesh.rotation.y kept increasing indefinitely as I kept moving the mouse right.</p>
<p dir="auto">The other problem is I'm not sure how to calculate camera.position.y with respect to the mesh rotation. I also want the camera to move on the y-axis while looking at the cube, rather than being hard-coded at 450. But that is a problem I think I should solve after fixing the first issue.</p>
<p dir="auto">Would anyone be able to offer some advice?</p> | 0 |
<p dir="auto">Hi,</p>
<p dir="auto"><strong>Version</strong>: VS 2015/TS 1.5.4</p>
<p dir="auto">I have the following settings.</p>
<p dir="auto">On the "Build" settings page I have<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1106823/9156813/ef56d8f0-3ede-11e5-8004-cb3c6eaa4d7a.png"><img src="https://cloud.githubusercontent.com/assets/1106823/9156813/ef56d8f0-3ede-11e5-8004-cb3c6eaa4d7a.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">On the "TypeScript Build" settings page I have<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1106823/9156820/16b1662c-3edf-11e5-9dd2-0ac408bf74c0.png"><img src="https://cloud.githubusercontent.com/assets/1106823/9156820/16b1662c-3edf-11e5-9dd2-0ac408bf74c0.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">When I build the whole project, things work correctly and the output is written to <code class="notranslate">bin</code>.</p>
<p dir="auto">However, compile-on-save writes the output to a folder called <code class="notranslate">$(OutDir)</code>.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1106823/9156828/86f480a4-3edf-11e5-97bf-42fd3dc1aefe.png"><img src="https://cloud.githubusercontent.com/assets/1106823/9156828/86f480a4-3edf-11e5-97bf-42fd3dc1aefe.png" alt="image" style="max-width: 100%;"></a></p> | <p dir="auto">A function can choose to omit parameters defined in a signature, as shown by function <code class="notranslate">a</code> below. Callers of <code class="notranslate">a</code> must still supply arguments, but the function does not need to use them.</p>
<p dir="auto">Despite this, if the same function is assigned later in the program, this no longer applies and the identical function is now not compatible, as shown with function <code class="notranslate">b</code>.</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="interface X {
(source: number): boolean;
}
var a: X = function() { return true; }
var b: X;
// Why is this an error?
var b = function() { return true; }"><pre class="notranslate"><span class="pl-k">interface</span> <span class="pl-smi">X</span> <span class="pl-kos">{</span>
<span class="pl-kos">(</span><span class="pl-s1">source</span>: <span class="pl-smi">number</span><span class="pl-kos">)</span>: <span class="pl-smi">boolean</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">var</span> <span class="pl-en">a</span>: <span class="pl-smi">X</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">return</span> <span class="pl-c1">true</span><span class="pl-kos">;</span> <span class="pl-kos">}</span>
<span class="pl-k">var</span> <span class="pl-s1">b</span>: <span class="pl-smi">X</span><span class="pl-kos">;</span>
<span class="pl-c">// Why is this an error?</span>
<span class="pl-k">var</span> <span class="pl-en">b</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">return</span> <span class="pl-c1">true</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div>
<p dir="auto">Shouldn't both of these cases follow the same rules?</p> | 0 |
<p dir="auto">OS: Windows 8.1<br>
Atom version: 0.132.0</p>
<p dir="auto">Whenever I have multiple monitors connected, and atom is on a monitor that is not the primary monitor, the menu bar drop downs don't show up in the correct position in some situations. The drop downs show up with the correct vertical offset, but are horizontally pinned to the right side of the primary monitor.</p>
<p dir="auto">Strangely enough, the occurrence of this bug appears to be dependent on the drop down's expected (as in, where the drop down SHOULD be) distance from the primary monitor. Drop down's too close to the primary monitor get pulled onto the primary monitor, while drop down's far enough away show up with the correct positioning. I tried to show this in the screenshots below.</p>
<p dir="auto">My guess is that this has something to do with DPI scaling in Windows 8.1. My primary display has a high DPI, so it's set to 125% scaling in Windows. My secondary monitor has normal 100% scaling. And it does look like the 'cut off' distance where the drop downs switch between monitors is exactly 25% from the edge of the other monitor. I'm just guessing though.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/7724154/4477314/06e06cfa-497d-11e4-8469-8c5d5846a28a.jpg"><img src="https://cloud.githubusercontent.com/assets/7724154/4477314/06e06cfa-497d-11e4-8469-8c5d5846a28a.jpg" alt="screen1" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/7724154/4477316/0c5da5c6-497d-11e4-8643-bbddb35800ac.jpg"><img src="https://cloud.githubusercontent.com/assets/7724154/4477316/0c5da5c6-497d-11e4-8643-bbddb35800ac.jpg" alt="screen2" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/7724154/4477829/cca53df0-4980-11e4-8d45-ed2d612e1adb.jpg"><img src="https://cloud.githubusercontent.com/assets/7724154/4477829/cca53df0-4980-11e4-8d45-ed2d612e1adb.jpg" alt="screen3" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/7724154/4477831/d02af35c-4980-11e4-93bc-6093981cc090.jpg"><img src="https://cloud.githubusercontent.com/assets/7724154/4477831/d02af35c-4980-11e4-93bc-6093981cc090.jpg" alt="screen4" style="max-width: 100%;"></a></p> | <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/174857/4079329/127d686a-2ed4-11e4-99ee-c09ad0ef8d9a.png"><img src="https://cloud.githubusercontent.com/assets/174857/4079329/127d686a-2ed4-11e4-99ee-c09ad0ef8d9a.png" alt="menu atom" style="max-width: 100%;"></a></p>
<p dir="auto">I have a 3 monitor setup, when atom is maximized on any monitor but the left most one the file menu opens up one monitor to the left.</p>
<p dir="auto">Windows 7<br>
Atom vs 0.124.0</p> | 1 |
<p dir="auto">Introduce <code class="notranslate">Mutable<T></code> to implement a dynamic mutable slot, with dynamic borrow check, in once place. Obsolete <code class="notranslate">Cell<T></code> and <code class="notranslate">RcMut<T></code> (and what about <code class="notranslate">@mut T</code>? See <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="15584695" data-permission-text="Title is private" data-url="https://github.com/rust-lang/rust/issues/7140" data-hovercard-type="issue" data-hovercard-url="/rust-lang/rust/issues/7140/hovercard" href="https://github.com/rust-lang/rust/issues/7140">#7140</a>)</p>
<p dir="auto">For <code class="notranslate">Mutable<T></code> use an implementation with wrapped borrowed pointers to allow for both closured-bracketed and "roaming" borrowed pointers.</p>
<p dir="auto"><del>A working test is <a href="https://gist.github.com/anonymous/f007d9b907509c03c17f">https://gist.github.com/anonymous/f007d9b907509c03c17f</a></del></p>
<p dir="auto">Updated, WIP: <a href="https://github.com/blake2-ppc/rust/compare/mutable-t">https://github.com/blake2-ppc/rust/compare/mutable-t</a></p> | <p dir="auto">I'm not sure if this is a bug or not, needs further investigation. It appears that by reusing the fulfillment_cx <a href="https://github.com/jroesch/rust/blob/fulfillment-context-refactor/src/librustc/middle/traits/mod.rs#L452">here</a> we incur more obligations and later trip an <a href="https://github.com/jroesch/rust/blob/fulfillment-context-refactor/src/librustc_typeck/check/regionck.rs#L337">assertion</a>.</p>
<p dir="auto">The two possibilities I see is:<br>
- normalization is not actually fully happening and we have a bug else where<br>
- we are adding a duplicate bound into the list causing its size to change.</p> | 0 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=el_schalo" rel="nofollow">Alexander Schäl</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-6481?redirect=false" rel="nofollow">SPR-6481</a></strong> and commented</p>
<p dir="auto">When started via Java6 WebStart, the Spring PathMatchingResourcePatternResolver tries to handle the URLConnection (wich is in a WebStart context actually an JNLPCachedJarURLConnection) just like a normal file URL. The PathMatchingResourcePatternResolver checks the resources only for a JarURLConnection, any other is handled as a path on the local file system.</p>
<p dir="auto">So the resource request for "<a href="http://service.ACME.com:42/webstart/ressources.jar" rel="nofollow">http://service.ACME.com:42/webstart/ressources.jar</a>" (which would be propperly handled by the com.sun.jnlp.JNLPClassLoader) is crippled to "http:\service.ACME.com:42\webstart\ressources.jar", which of course can't be handled by any class loader and logically ends up in an FileNotFoundException due to the destroyed URL syntax.</p>
<p dir="auto">A solution COULD be to extend the URLConnection type checking at the method doFindPathMatchingJarResources of org.springframework.core.io.support.PathMatchingResourcePatternResolver from JarURLConnection to an JNLPCachedJarURLConnection in order to treat this connection not as a "file:"</p>
<p dir="auto">Java WebStart 5 used to cache all resources (especially the JAR files listed as resources in the JNLP file) on the local file system and the PathMatchingResourcePatternResolver could access these JAR files using a local path like "file://path/on/local/system". Java WebStart 6 has got another (obfuscated) cache structure - there are no longer any plain JAR files. That's why the JNLPClassLoader returns JNLPCachedJarURLConnection for any JAR resource instead of JarURLConnection like WebStart 5 did.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 2.5.4</p>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398100182" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/11146" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/11146/hovercard" href="https://github.com/spring-projects/spring-framework/issues/11146">#11146</a> Spring fails to load ressources via Java Network Launching Protocol (WebStart) since Java6 (<em><strong>"duplicates"</strong></em>)</li>
</ul>
<p dir="auto">2 votes, 2 watchers</p> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=tnine" rel="nofollow">Todd Nine</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-792?redirect=false" rel="nofollow">SPR-792</a></strong> and commented</p>
<p dir="auto">I have added support for the Hibernate event listener interceptors. It is not the prettiest, since the only way to add the property in the Hibernate configuration is by the event name, then the intercepting class. This simply uses a Properties object for the name value pair.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 1.2 RC1</p>
<p dir="auto"><strong>Attachments:</strong></p>
<ul dir="auto">
<li><a href="https://jira.spring.io/secure/attachment/10593/LocalSessionFactory.zip" rel="nofollow">LocalSessionFactory.zip</a> (<em>10.77 kB</em>)</li>
<li><a href="https://jira.spring.io/secure/attachment/10594/LocalSessionFactory2.zip" rel="nofollow">LocalSessionFactory2.zip</a> (<em>10.80 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="398056044" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/5560" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/5560/hovercard" href="https://github.com/spring-projects/spring-framework/issues/5560">#5560</a> No way to set listeners on the SessionFactory (<em><strong>"duplicates"</strong></em>)</li>
</ul> | 0 |
<h3 dir="auto">Apache Airflow version</h3>
<p dir="auto">2.2.0</p>
<h3 dir="auto">Operating System</h3>
<p dir="auto">Centos 7</p>
<h3 dir="auto">Versions of Apache Airflow Providers</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Deployment</h3>
<p dir="auto">Other 3rd-party Helm chart</p>
<h3 dir="auto">Deployment details</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">What happened</h3>
<p dir="auto">I could not see full task name, when task name is too long.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/8676247/139811585-ce905fde-1d8d-465e-ab9f-c31c905bc13d.png"><img src="https://user-images.githubusercontent.com/8676247/139811585-ce905fde-1d8d-465e-ab9f-c31c905bc13d.png" alt="image" style="max-width: 100%;"></a></p>
<h3 dir="auto">What you expected to happen</h3>
<p dir="auto">Needs to space between task name and task run history</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/8676247/139811813-b869833b-de01-4961-9fda-3d6e0c3558b2.png"><img src="https://user-images.githubusercontent.com/8676247/139811813-b869833b-de01-4961-9fda-3d6e0c3558b2.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Or, limit redered task name length and see full name when hover on task name</p>
<h3 dir="auto">How to reproduce</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Anything else</h3>
<p dir="auto"><code class="notranslate">sqaureX</code> is independent of task name.<br>
<a href="https://github.com/apache/airflow/blob/2.2.0/airflow/www/static/js/tree.js#L78">https://github.com/apache/airflow/blob/2.2.0/airflow/www/static/js/tree.js#L78</a></p>
<p dir="auto">Calculating <code class="notranslate">squareX</code> with pre-rendered task name length by using below code looks good for me.</p>
<p dir="auto"><a href="https://stackoverflow.com/a/35373030" rel="nofollow">https://stackoverflow.com/a/35373030</a></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var BrowserText = (function () {
var canvas = document.createElement('canvas'),
context = canvas.getContext('2d');
/**
* Measures the rendered width of arbitrary text given the font size and font face
* @param {string} text The text to measure
* @param {number} fontSize The font size in pixels
* @param {string} fontFace The font face ("Arial", "Helvetica", etc.)
* @returns {number} The width of the text
**/
function getWidth(text, fontSize, fontFace) {
context.font = fontSize + 'px ' + fontFace;
return context.measureText(text).width;
}
return {
getWidth: getWidth
};
})();"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-v">BrowserText</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">var</span> <span class="pl-s1">canvas</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">'canvas'</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-s1">context</span> <span class="pl-c1">=</span> <span class="pl-s1">canvas</span><span class="pl-kos">.</span><span class="pl-en">getContext</span><span class="pl-kos">(</span><span class="pl-s">'2d'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">/**</span>
<span class="pl-c"> * Measures the rendered width of arbitrary text given the font size and font face</span>
<span class="pl-c"> * <span class="pl-k">@param</span> {<span class="pl-smi">string</span>} text The text to measure</span>
<span class="pl-c"> * <span class="pl-k">@param</span> {<span class="pl-smi">number</span>} fontSize The font size in pixels</span>
<span class="pl-c"> * <span class="pl-k">@param</span> {<span class="pl-smi">string</span>} fontFace The font face ("Arial", "Helvetica", etc.)</span>
<span class="pl-c"> * <span class="pl-k">@returns</span> {<span class="pl-smi">number</span>} The width of the text</span>
<span class="pl-c"> **/</span>
<span class="pl-k">function</span> <span class="pl-en">getWidth</span><span class="pl-kos">(</span><span class="pl-s1">text</span><span class="pl-kos">,</span> <span class="pl-s1">fontSize</span><span class="pl-kos">,</span> <span class="pl-s1">fontFace</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">context</span><span class="pl-kos">.</span><span class="pl-c1">font</span> <span class="pl-c1">=</span> <span class="pl-s1">fontSize</span> <span class="pl-c1">+</span> <span class="pl-s">'px '</span> <span class="pl-c1">+</span> <span class="pl-s1">fontFace</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-s1">context</span><span class="pl-kos">.</span><span class="pl-en">measureText</span><span class="pl-kos">(</span><span class="pl-s1">text</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">width</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">getWidth</span>: <span class="pl-s1">getWidth</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>
<h3 dir="auto">Are you willing to submit PR?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Yes I am willing to submit a PR!</li>
</ul>
<h3 dir="auto">Code of Conduct</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li>
</ul> | <p dir="auto"><strong>Apache Airflow version</strong>: 2.1.2</p>
<p dir="auto"><strong>OS</strong>: Ubuntu 18.04.5</p>
<p dir="auto"><strong>Apache Airflow Provider versions</strong>:<br>
apache-airflow-providers-amazon==2.1.0<br>
apache-airflow-providers-celery==2.0.0<br>
apache-airflow-providers-ftp==2.0.0<br>
apache-airflow-providers-imap==2.0.0<br>
apache-airflow-providers-jdbc==2.0.0<br>
apache-airflow-providers-postgres==2.0.0<br>
apache-airflow-providers-sqlite==2.0.0</p>
<p dir="auto"><strong>Deployment</strong>: Helm + K8s</p>
<p dir="auto"><strong>What happened</strong>: In tree view, when the names of the tasks are long, they get behind the tree.</p>
<p dir="auto"><strong>What you expected to happen</strong>: Tree moves to the right not blocking the names of the tasks.</p>
<p dir="auto"><strong>How to reproduce it</strong>: Just create a Dag with task names that are long enough.<br>
Also depends on the dependencies, but around 60 chars do it.</p>
<p dir="auto"><strong>Anything else we need to know</strong>: It's not a blocker, but it was easier to follow the execution of some of our bigger DAGs in v2.1.0, it becomes a problem when sharing screen on videocalls or explaining something on screen. Adding a picture of how it looks like.</p>
<p dir="auto"><strong>Are you willing to submit a PR?</strong>: I'm not an expert in front end, so I'll pass this time.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/19522531/130056595-1ddfcb82-d2ea-41c8-8eb2-c8873005729a.png"><img width="748" alt="Screenshot 2021-08-18 at 17 38 57" src="https://user-images.githubusercontent.com/19522531/130056595-1ddfcb82-d2ea-41c8-8eb2-c8873005729a.png" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto">i need to show gif in recyle view android, i am currently using glide and sending gif request to download gif in the onbindviewholder callback<br>
the scroll is smooth but the gif download is very slow with glide,can anybody suggest better mechanism.<br>
current code is</p>
<div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="package com.example.akash.videogramassignment.adapters;
import android.app.Activity;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.engine.DiskCacheStrategy;
import com.example.akash.videogramassignment.R;
import com.example.akash.videogramassignment.apputils.AppUtils;
import com.example.akash.videogramassignment.models.videoassignment.GridBaseData;
import com.example.akash.videogramassignment.viewholders.GIFItemViewHolder;
import java.util.ArrayList;
import java.util.List;
/**
* Created by akash on 12/3/16.
*/
public class VideoGramDataAdapter extends RecyclerView.Adapter<GIFItemViewHolder> /*implements OnItemClickListener*/ {
private List<GridBaseData> mHomePageItemList = new ArrayList<>();
private final int deviceWidth = AppUtils.getDeviceWidth();
/*Map<Integer, GifDrawable> params = new HashMap(mHomePageItemList.size()) {
@Override
public GifDrawable get(Object key) {
if (!containsKey(key))
return null;
return (GifDrawable) super.get(key);
}
};
Map<Integer, Boolean> isGifRequest = new HashMap(mHomePageItemList.size()) {
@Override
public Boolean get(Object key) {
if (!containsKey(key))
return false;
return (Boolean) super.get(key);
}
};*/
private Activity mContext;
private GIFItemViewHolder GIFItemViewHolder;
public VideoGramDataAdapter(List<GridBaseData> homePageListItemList, Activity context) {
mHomePageItemList = homePageListItemList;
mContext = context;
}
@Override
public GIFItemViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.layout_gif_item_tuple, parent, false);
return new GIFItemViewHolder(view);
}
@Override
public void onBindViewHolder(GIFItemViewHolder holder, int position) {
/* float factor = deviceWidth/(mHomePageItemList.get(position).grid.width);
int height = (int)factor*(mHomePageItemList.get(position).grid.height);
holder.tupleContainer.setLayoutParams(new ViewGroup.LayoutParams(
deviceWidth, height)); */
//Glide.with(mContext).load(R.layout.layout_spinner).override(Integer.valueOf(mHomePageItemList.get(position).grid.height), deviceWidth); // resizes the image to these dimensions (in pixel). does not respect aspect ratio.into(holder.mItemIcon);
/*if (isGifRequest != null *//*&& isGifRequest.get(position) *//* && params != null && params.get(position) != null) {*/
Glide.with(mContext).load(mHomePageItemList.get(position).grid.gif_url)
.asGif()
.diskCacheStrategy(DiskCacheStrategy.RESULT)
//.override(/*Integer.valueOf(mHomePageItemList.get(position).grid.height)*/(deviceWidth*3)/4, deviceWidth)
.into(holder.mItemIcon);
/*} else
Glide.with(mContext).load(mHomePageItemList.get(position).ppurl).into(GIFItemViewHolder.mItemIcon);*/
}
@Override
public int getItemCount() {
return mHomePageItemList != null ? (mHomePageItemList.size()) : 0;
}
public void addAll(List<? extends GridBaseData> items) {
mHomePageItemList.addAll(items);
}
/* @Override
public void onItemClick(int position, View v) {
if (GIFItemViewHolder != null && mContext != null) {
if (params.get(position) == null) {
downloadImage(position, v);
isGifRequest.put(position, true);
} else {
ImageView imageView = (ImageView) v;
//imageView.setImageDrawable(params.get(position));
Glide.with(mContext).load(params.get(position)).into(imageView);
}
}
if (mContext != null) {
LogUtils.makeToast("called" + position, mContext.getApplicationContext());
}
}*/
/*private void downloadImage(final int position, View v) {
ImageView imageView = (ImageView) v;
*//* Glide.with(mContext).load(mHomePageItemList.get(position).grid.gif_url).asGif()
.into(new SimpleTarget<GifTypeRequest>() {
@Override
public void onResourceReady(GifTypeRequest resource, GlideAnimation glideAnimation) {
params.put(position, resource);
//Glide.with(this).load(R.raw.sample_gif).into(imageViewTarget);
}
});*//*
Glide.with(mContext).load(mHomePageItemList.get(position).grid.gif_url).asGif().listener(new RequestListener<String, GifDrawable>() {
@Override
public boolean onException(Exception e, String model, Target<GifDrawable> target, boolean isFirstResource) {
return false;
}
@Override
public boolean onResourceReady(GifDrawable resource, String model, Target<GifDrawable> target, boolean isFromMemoryCache, boolean isFirstResource) {
params.put(position, resource);
return false;
}
}).into(imageView);
}*/
@Override
public void onViewRecycled(GIFItemViewHolder holder) {
super.onViewRecycled(holder);
Glide.clear(holder.mItemIcon);
}
}"><pre class="notranslate"><span class="pl-k">package</span> <span class="pl-s1">com</span>.<span class="pl-s1">example</span>.<span class="pl-s1">akash</span>.<span class="pl-s1">videogramassignment</span>.<span class="pl-s1">adapters</span>;
<span class="pl-k">import</span> <span class="pl-s1">android</span>.<span class="pl-s1">app</span>.<span class="pl-s1">Activity</span>;
<span class="pl-k">import</span> <span class="pl-s1">android</span>.<span class="pl-s1">support</span>.<span class="pl-s1">v7</span>.<span class="pl-s1">widget</span>.<span class="pl-s1">RecyclerView</span>;
<span class="pl-k">import</span> <span class="pl-s1">android</span>.<span class="pl-s1">view</span>.<span class="pl-s1">LayoutInflater</span>;
<span class="pl-k">import</span> <span class="pl-s1">android</span>.<span class="pl-s1">view</span>.<span class="pl-s1">View</span>;
<span class="pl-k">import</span> <span class="pl-s1">android</span>.<span class="pl-s1">view</span>.<span class="pl-s1">ViewGroup</span>;
<span class="pl-k">import</span> <span class="pl-s1">com</span>.<span class="pl-s1">bumptech</span>.<span class="pl-s1">glide</span>.<span class="pl-s1">Glide</span>;
<span class="pl-k">import</span> <span class="pl-s1">com</span>.<span class="pl-s1">bumptech</span>.<span class="pl-s1">glide</span>.<span class="pl-s1">load</span>.<span class="pl-s1">engine</span>.<span class="pl-s1">DiskCacheStrategy</span>;
<span class="pl-k">import</span> <span class="pl-s1">com</span>.<span class="pl-s1">example</span>.<span class="pl-s1">akash</span>.<span class="pl-s1">videogramassignment</span>.<span class="pl-s1">R</span>;
<span class="pl-k">import</span> <span class="pl-s1">com</span>.<span class="pl-s1">example</span>.<span class="pl-s1">akash</span>.<span class="pl-s1">videogramassignment</span>.<span class="pl-s1">apputils</span>.<span class="pl-s1">AppUtils</span>;
<span class="pl-k">import</span> <span class="pl-s1">com</span>.<span class="pl-s1">example</span>.<span class="pl-s1">akash</span>.<span class="pl-s1">videogramassignment</span>.<span class="pl-s1">models</span>.<span class="pl-s1">videoassignment</span>.<span class="pl-s1">GridBaseData</span>;
<span class="pl-k">import</span> <span class="pl-s1">com</span>.<span class="pl-s1">example</span>.<span class="pl-s1">akash</span>.<span class="pl-s1">videogramassignment</span>.<span class="pl-s1">viewholders</span>.<span class="pl-s1">GIFItemViewHolder</span>;
<span class="pl-k">import</span> <span class="pl-s1">java</span>.<span class="pl-s1">util</span>.<span class="pl-s1">ArrayList</span>;
<span class="pl-k">import</span> <span class="pl-s1">java</span>.<span class="pl-s1">util</span>.<span class="pl-s1">List</span>;
<span class="pl-c">/**</span>
<span class="pl-c"> * Created by akash on 12/3/16.</span>
<span class="pl-c"> */</span>
<span class="pl-k">public</span> <span class="pl-k">class</span> <span class="pl-smi">VideoGramDataAdapter</span> <span class="pl-k">extends</span> <span class="pl-smi">RecyclerView</span>.<span class="pl-smi">Adapter</span><<span class="pl-smi">GIFItemViewHolder</span>> <span class="pl-c">/*implements OnItemClickListener*/</span> {
<span class="pl-k">private</span> <span class="pl-smi">List</span><<span class="pl-smi">GridBaseData</span>> <span class="pl-s1">mHomePageItemList</span> = <span class="pl-k">new</span> <span class="pl-smi">ArrayList</span><>();
<span class="pl-k">private</span> <span class="pl-k">final</span> <span class="pl-smi">int</span> <span class="pl-s1">deviceWidth</span> = <span class="pl-smi">AppUtils</span>.<span class="pl-en">getDeviceWidth</span>();
<span class="pl-c">/*Map<Integer, GifDrawable> params = new HashMap(mHomePageItemList.size()) {</span>
<span class="pl-c"> @Override</span>
<span class="pl-c"> public GifDrawable get(Object key) {</span>
<span class="pl-c"> if (!containsKey(key))</span>
<span class="pl-c"> return null;</span>
<span class="pl-c"> return (GifDrawable) super.get(key);</span>
<span class="pl-c"> }</span>
<span class="pl-c"> };</span>
<span class="pl-c"> Map<Integer, Boolean> isGifRequest = new HashMap(mHomePageItemList.size()) {</span>
<span class="pl-c"> @Override</span>
<span class="pl-c"> public Boolean get(Object key) {</span>
<span class="pl-c"> if (!containsKey(key))</span>
<span class="pl-c"> return false;</span>
<span class="pl-c"> return (Boolean) super.get(key);</span>
<span class="pl-c"> }</span>
<span class="pl-c"> };*/</span>
<span class="pl-k">private</span> <span class="pl-smi">Activity</span> <span class="pl-s1">mContext</span>;
<span class="pl-k">private</span> <span class="pl-smi">GIFItemViewHolder</span> <span class="pl-s1">GIFItemViewHolder</span>;
<span class="pl-k">public</span> <span class="pl-smi">VideoGramDataAdapter</span>(<span class="pl-smi">List</span><<span class="pl-smi">GridBaseData</span>> <span class="pl-s1">homePageListItemList</span>, <span class="pl-smi">Activity</span> <span class="pl-s1">context</span>) {
<span class="pl-s1">mHomePageItemList</span> = <span class="pl-s1">homePageListItemList</span>;
<span class="pl-s1">mContext</span> = <span class="pl-s1">context</span>;
}
<span class="pl-c1">@</span><span class="pl-c1">Override</span>
<span class="pl-k">public</span> <span class="pl-smi">GIFItemViewHolder</span> <span class="pl-en">onCreateViewHolder</span>(<span class="pl-smi">ViewGroup</span> <span class="pl-s1">parent</span>, <span class="pl-smi">int</span> <span class="pl-s1">viewType</span>) {
<span class="pl-smi">View</span> <span class="pl-s1">view</span> = <span class="pl-smi">LayoutInflater</span>.<span class="pl-en">from</span>(<span class="pl-s1">parent</span>.<span class="pl-en">getContext</span>()).<span class="pl-en">inflate</span>(<span class="pl-smi">R</span>.<span class="pl-s1">layout</span>.<span class="pl-s1">layout_gif_item_tuple</span>, <span class="pl-s1">parent</span>, <span class="pl-c1">false</span>);
<span class="pl-k">return</span> <span class="pl-k">new</span> <span class="pl-smi">GIFItemViewHolder</span>(<span class="pl-s1">view</span>);
}
<span class="pl-c1">@</span><span class="pl-c1">Override</span>
<span class="pl-k">public</span> <span class="pl-smi">void</span> <span class="pl-en">onBindViewHolder</span>(<span class="pl-smi">GIFItemViewHolder</span> <span class="pl-s1">holder</span>, <span class="pl-smi">int</span> <span class="pl-s1">position</span>) {
<span class="pl-c">/* float factor = deviceWidth/(mHomePageItemList.get(position).grid.width);</span>
<span class="pl-c"> int height = (int)factor*(mHomePageItemList.get(position).grid.height);</span>
<span class="pl-c"> holder.tupleContainer.setLayoutParams(new ViewGroup.LayoutParams(</span>
<span class="pl-c"> deviceWidth, height)); */</span>
<span class="pl-c">//Glide.with(mContext).load(R.layout.layout_spinner).override(Integer.valueOf(mHomePageItemList.get(position).grid.height), deviceWidth); // resizes the image to these dimensions (in pixel). does not respect aspect ratio.into(holder.mItemIcon);</span>
<span class="pl-c">/*if (isGifRequest != null */</span><span class="pl-c">/*&& isGifRequest.get(position) */</span><span class="pl-c">/* && params != null && params.get(position) != null) {*/</span>
<span class="pl-smi">Glide</span>.<span class="pl-en">with</span>(<span class="pl-s1">mContext</span>).<span class="pl-en">load</span>(<span class="pl-s1">mHomePageItemList</span>.<span class="pl-en">get</span>(<span class="pl-s1">position</span>).<span class="pl-s1">grid</span>.<span class="pl-s1">gif_url</span>)
.<span class="pl-en">asGif</span>()
.<span class="pl-en">diskCacheStrategy</span>(<span class="pl-smi">DiskCacheStrategy</span>.<span class="pl-c1">RESULT</span>)
<span class="pl-c">//.override(/*Integer.valueOf(mHomePageItemList.get(position).grid.height)*/(deviceWidth*3)/4, deviceWidth)</span>
.<span class="pl-en">into</span>(<span class="pl-s1">holder</span>.<span class="pl-s1">mItemIcon</span>);
<span class="pl-c">/*} else</span>
<span class="pl-c"> Glide.with(mContext).load(mHomePageItemList.get(position).ppurl).into(GIFItemViewHolder.mItemIcon);*/</span>
}
<span class="pl-c1">@</span><span class="pl-c1">Override</span>
<span class="pl-k">public</span> <span class="pl-smi">int</span> <span class="pl-en">getItemCount</span>() {
<span class="pl-k">return</span> <span class="pl-s1">mHomePageItemList</span> != <span class="pl-c1">null</span> ? (<span class="pl-s1">mHomePageItemList</span>.<span class="pl-en">size</span>()) : <span class="pl-c1">0</span>;
}
<span class="pl-k">public</span> <span class="pl-smi">void</span> <span class="pl-en">addAll</span>(<span class="pl-smi">List</span><? <span class="pl-k">extends</span> <span class="pl-smi">GridBaseData</span>> <span class="pl-s1">items</span>) {
<span class="pl-s1">mHomePageItemList</span>.<span class="pl-en">addAll</span>(<span class="pl-s1">items</span>);
}
<span class="pl-c">/* @Override</span>
<span class="pl-c"> public void onItemClick(int position, View v) {</span>
<span class="pl-c"> if (GIFItemViewHolder != null && mContext != null) {</span>
<span class="pl-c"> if (params.get(position) == null) {</span>
<span class="pl-c"> downloadImage(position, v);</span>
<span class="pl-c"> isGifRequest.put(position, true);</span>
<span class="pl-c"> } else {</span>
<span class="pl-c"> ImageView imageView = (ImageView) v;</span>
<span class="pl-c"> //imageView.setImageDrawable(params.get(position));</span>
<span class="pl-c"> Glide.with(mContext).load(params.get(position)).into(imageView);</span>
<span class="pl-c"> }</span>
<span class="pl-c"> }</span>
<span class="pl-c"> if (mContext != null) {</span>
<span class="pl-c"> LogUtils.makeToast("called" + position, mContext.getApplicationContext());</span>
<span class="pl-c"> }</span>
<span class="pl-c"> }*/</span>
<span class="pl-c">/*private void downloadImage(final int position, View v) {</span>
<span class="pl-c"> ImageView imageView = (ImageView) v;</span>
<span class="pl-c"> */</span><span class="pl-c">/* Glide.with(mContext).load(mHomePageItemList.get(position).grid.gif_url).asGif()</span>
<span class="pl-c"> .into(new SimpleTarget<GifTypeRequest>() {</span>
<span class="pl-c"> @Override</span>
<span class="pl-c"> public void onResourceReady(GifTypeRequest resource, GlideAnimation glideAnimation) {</span>
<span class="pl-c"> params.put(position, resource);</span>
<span class="pl-c"> //Glide.with(this).load(R.raw.sample_gif).into(imageViewTarget);</span>
<span class="pl-c"> }</span>
<span class="pl-c"> });*/</span><span class="pl-c">/*</span>
<span class="pl-c"> Glide.with(mContext).load(mHomePageItemList.get(position).grid.gif_url).asGif().listener(new RequestListener<String, GifDrawable>() {</span>
<span class="pl-c"> @Override</span>
<span class="pl-c"> public boolean onException(Exception e, String model, Target<GifDrawable> target, boolean isFirstResource) {</span>
<span class="pl-c"> return false;</span>
<span class="pl-c"> }</span>
<span class="pl-c"></span>
<span class="pl-c"> @Override</span>
<span class="pl-c"> public boolean onResourceReady(GifDrawable resource, String model, Target<GifDrawable> target, boolean isFromMemoryCache, boolean isFirstResource) {</span>
<span class="pl-c"> params.put(position, resource);</span>
<span class="pl-c"> return false;</span>
<span class="pl-c"> }</span>
<span class="pl-c"></span>
<span class="pl-c"></span>
<span class="pl-c"> }).into(imageView);</span>
<span class="pl-c"> }*/</span>
<span class="pl-c1">@</span><span class="pl-c1">Override</span>
<span class="pl-k">public</span> <span class="pl-smi">void</span> <span class="pl-en">onViewRecycled</span>(<span class="pl-smi">GIFItemViewHolder</span> <span class="pl-s1">holder</span>) {
<span class="pl-en">super</span>.<span class="pl-en">onViewRecycled</span>(<span class="pl-s1">holder</span>);
<span class="pl-smi">Glide</span>.<span class="pl-en">clear</span>(<span class="pl-s1">holder</span>.<span class="pl-s1">mItemIcon</span>);
}
}</pre></div> | <p dir="auto">We just started using Glide and I've been comparing the default RESULT disk cache strategy vs. SOURCE and I'm noticing that SOURCE is noticeably faster to render a newly net-retrieved image to the screen.</p>
<p dir="auto">I'm playing with two second-gen Nexus 7's with Lollipop side-by-side with images ~200K, 700x700 average. I made the most minimal example I can and have ~100 images in a vanilla RecyclerView with a LinearLayoutManager where 4-5 images will be visible on screen at a time. If I start up both configurations from scratch and scroll to the very bottom of the view the SOURCE config finishes showing the images in less than a second whereas the RESULT config finishes showing them in 2-4 seconds. This is consistent with regular scrolling where images come down one at a time: SOURCE is always faster than RESULT.</p>
<p dir="auto">Without diving in too deep into the code myself I'm suspecting that RESULT resizes the image before it shows it on screen. I'd imagine you could make it as fast as SOURCE if on the first/network retrieval you immediately show the full image in the view like SOURCE but on a background thread continue resizing the image and store it in the disk cache resized so on the second request it shows up resized.</p>
<p dir="auto">And now that I've actually typed all that out I can see how that might be unexpected for someone not using something like fitCenter() where the difference between SOURCE and RESULT looks almost the same on screen...hmmm.</p>
<p dir="auto">Does this use case sound interesting to you, though? I assume there're probably extension points where I could create the behavior I want using custom targets or something but I do really like how Glide handles all the view/adapter/recycling stuff behind the curtains for me.</p>
<p dir="auto">Any suggestions for how to accomplish this with existing apis or if this is a valid enhancement request?</p>
<p dir="auto">Thanks much!</p>
<p dir="auto">Details:</p>
<p dir="auto"><strong>RecyclerView.Adapter</strong></p>
<div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@Override
public void onBindViewHolder(ViewHolder holder, int position) {
Glide.with(holder.itemView.getContext())
.load(thumbnails[position])
.fitCenter()
.crossFade()
// .diskCacheStrategy(DiskCacheStrategy.SOURCE)
.into(holder.image);
}"><pre class="notranslate"><span class="pl-c1">@</span><span class="pl-c1">Override</span>
<span class="pl-k">public</span> <span class="pl-smi">void</span> <span class="pl-s1">onBindViewHolder</span>(<span class="pl-smi">ViewHolder</span> <span class="pl-s1">holder</span>, <span class="pl-smi">int</span> <span class="pl-s1">position</span>) {
<span class="pl-smi">Glide</span>.<span class="pl-en">with</span>(<span class="pl-s1">holder</span>.<span class="pl-s1">itemView</span>.<span class="pl-en">getContext</span>())
.<span class="pl-en">load</span>(<span class="pl-s1">thumbnails</span>[<span class="pl-s1">position</span>])
.<span class="pl-en">fitCenter</span>()
.<span class="pl-en">crossFade</span>()
<span class="pl-c">// .diskCacheStrategy(DiskCacheStrategy.SOURCE)</span>
.<span class="pl-en">into</span>(<span class="pl-s1">holder</span>.<span class="pl-s1">image</span>);
}</pre></div>
<p dir="auto"><strong>View Layout</strong></p>
<div class="highlight highlight-text-xml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<?xml version="1.0" encoding="utf-8"?>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="200dp"
android:scaleType="centerCrop"
android:background="#444444"
android:layout_marginBottom="10dp" />
"><pre class="notranslate"><?<span class="pl-ent">xml</span><span class="pl-e"> version</span>=<span class="pl-s"><span class="pl-pds">"</span>1.0<span class="pl-pds">"</span></span><span class="pl-e"> encoding</span>=<span class="pl-s"><span class="pl-pds">"</span>utf-8<span class="pl-pds">"</span></span>?>
<<span class="pl-ent">ImageView</span> <span class="pl-e">xmlns</span><span class="pl-e">:</span><span class="pl-e">android</span>=<span class="pl-s"><span class="pl-pds">"</span>http://schemas.android.com/apk/res/android<span class="pl-pds">"</span></span>
<span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_width</span>=<span class="pl-s"><span class="pl-pds">"</span>match_parent<span class="pl-pds">"</span></span>
<span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_height</span>=<span class="pl-s"><span class="pl-pds">"</span>200dp<span class="pl-pds">"</span></span>
<span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">scaleType</span>=<span class="pl-s"><span class="pl-pds">"</span>centerCrop<span class="pl-pds">"</span></span>
<span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">background</span>=<span class="pl-s"><span class="pl-pds">"</span>#444444<span class="pl-pds">"</span></span>
<span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_marginBottom</span>=<span class="pl-s"><span class="pl-pds">"</span>10dp<span class="pl-pds">"</span></span> />
</pre></div> | 1 |
<p dir="auto">From <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/westfood/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/westfood">@westfood</a> on 2016-06-05T18:53:40Z</p>
<h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">django_manage</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.0.0.2"><pre class="notranslate"><code class="notranslate">ansible 2.0.0.2
</code></pre></div>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">OSX El Captain / 10.11.5, managing CentOS 7.1</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">Issuing command createsuperuser ends up in error after second invocation.</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<p dir="auto">Using this task, hard coding username/mail does not yeald in better effect</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- name: Django add superusers
django_manage:
app_path: "{{ seeder_home }}/Seeder"
virtualenv: "{{ seeder_virtualenv }}"
command: "createsuperuser --noinput --username={{ item.name }} --email={{ item.mail }}" # Not idempotent, probably bug in django_manage module
with_items: "{{ seeder_admins }}"
tags: django
ignore_errors: yes"><pre class="notranslate"><code class="notranslate">- name: Django add superusers
django_manage:
app_path: "{{ seeder_home }}/Seeder"
virtualenv: "{{ seeder_virtualenv }}"
command: "createsuperuser --noinput --username={{ item.name }} --email={{ item.mail }}" # Not idempotent, probably bug in django_manage module
with_items: "{{ seeder_admins }}"
tags: django
ignore_errors: yes
</code></pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">It should not try to create user again</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="stderr: Traceback (most recent call last):\n File \"/opt/virtualenv/seeder/lib/python3.4/site-packages/django/db/backends/utils.py\", line 64, in execute\n return self.cursor.execute(sql, params)\npsycopg2.IntegrityError: duplicate key value violates unique constraint \"auth_user_username_key\"\nDETAIL:
Key (username)=(rudolf) already exists."><pre class="notranslate"><code class="notranslate">stderr: Traceback (most recent call last):\n File \"/opt/virtualenv/seeder/lib/python3.4/site-packages/django/db/backends/utils.py\", line 64, in execute\n return self.cursor.execute(sql, params)\npsycopg2.IntegrityError: duplicate key value violates unique constraint \"auth_user_username_key\"\nDETAIL:
Key (username)=(rudolf) already exists.
</code></pre></div>
<p dir="auto">Copied from original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="158568404" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible-modules-core/issues/3871" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible-modules-core/issues/3871/hovercard" href="https://github.com/ansible/ansible-modules-core/issues/3871">ansible/ansible-modules-core#3871</a></p> | <p dir="auto">Issue Type: Bug introduced by commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/ansible/ansible/commit/8d53ef2f6055e174a10795bc5a084c3a36389678/hovercard" href="https://github.com/ansible/ansible/commit/8d53ef2f6055e174a10795bc5a084c3a36389678"><tt>8d53ef2</tt></a></p>
<p dir="auto">Ansible Version: stable-1.9 branch is affected, version 1.8.4 works ok</p>
<p dir="auto">Environment: Ubuntu-14.04 LTS with php5-fpm 5.5.9+dfsg-1ubuntu4.7 and upstart 1.12.1</p>
<p dir="auto">Steps To Reproduce:</p>
<ul dir="auto">
<li>Install Ubuntu-14.04 LTS with the php5-fpm package</li>
<li>Get ansible to do a restart of the php5-fpm service<br>
MODULE_ARGS = 'name=php5-fpm state=restarted'</li>
</ul>
<p dir="auto">Expected Results:<br>
Ansible should be able to restart the service (assuming the config is ok) using upstart</p>
<p dir="auto">Actual Results:<br>
Ansible uses /etc/init.d/php5-fpm to perform the restart and it fails</p>
<p dir="auto">Comments:<br>
We are using ansible from a git clone, not from the apt package. I found this problem was introduced by commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/ansible/ansible/commit/8d53ef2f6055e174a10795bc5a084c3a36389678/hovercard" href="https://github.com/ansible/ansible/commit/8d53ef2f6055e174a10795bc5a084c3a36389678"><tt>8d53ef2</tt></a> in service.py. Reverting this small changed makes it work for me. I tested by making the change in the temporary file on the target server in ~/.ansible/tmp/</p> | 0 |
<h3 dir="auto">Problem</h3>
<p dir="auto">After upgrading the DependencyInjection component from 2.0.14 to 2.0.15 the file <strong>services-1.0.xsd</strong> is missing. That generates a xml error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[WARNING 1549] failed to load external entity "file:////usr/local/zend/share/pear/Symfony/Component/DependencyInjection/Loader/schema/dic/services/services-1.0.xsd" (in n/a - line 0, column 0)
[WARNING 3084] Element '{http://www.w3.org/2001/XMLSchema}import': Failed to locate a schema at location 'file:////usr/local/zend/share/pear/Symfony/Component/DependencyInjection/Loader/schema/dic/services/services-1.0.xsd'. Skipping the import. (in in_memory_buffer - line 8, column 0)
[ERROR 1845] Element '{http://symfony.com/schema/dic/services}container': No matching global declaration available for the validation root. (in /home/luis/Zend/workspaces/luis/pleno-integra/config/dic.xml - line 4, column 0)"><pre class="notranslate"><code class="notranslate">[WARNING 1549] failed to load external entity "file:////usr/local/zend/share/pear/Symfony/Component/DependencyInjection/Loader/schema/dic/services/services-1.0.xsd" (in n/a - line 0, column 0)
[WARNING 3084] Element '{http://www.w3.org/2001/XMLSchema}import': Failed to locate a schema at location 'file:////usr/local/zend/share/pear/Symfony/Component/DependencyInjection/Loader/schema/dic/services/services-1.0.xsd'. Skipping the import. (in in_memory_buffer - line 8, column 0)
[ERROR 1845] Element '{http://symfony.com/schema/dic/services}container': No matching global declaration available for the validation root. (in /home/luis/Zend/workspaces/luis/pleno-integra/config/dic.xml - line 4, column 0)
</code></pre></div>
<h3 dir="auto">Possible cause</h3>
<p dir="auto">Looking at the <strong>package.xml</strong> of both versions, I saw that the role of that file was changed from <strong>php</strong> to <strong>doc</strong>:</p>
<h4 dir="auto">2.0.14</h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<file md5sum="856f676b9025b64587bf4b38286d85af" name="Symfony/Component/DependencyInjection/Loader/schema/dic/services/services-1.0.xsd" role="php"/>"><pre class="notranslate"><code class="notranslate"><file md5sum="856f676b9025b64587bf4b38286d85af" name="Symfony/Component/DependencyInjection/Loader/schema/dic/services/services-1.0.xsd" role="php"/>
</code></pre></div>
<h4 dir="auto">2.0.15</h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<file md5sum="856f676b9025b64587bf4b38286d85af" name="Symfony/Component/DependencyInjection/Loader/schema/dic/services/services-1.0.xsd" role="doc"/>"><pre class="notranslate"><code class="notranslate"><file md5sum="856f676b9025b64587bf4b38286d85af" name="Symfony/Component/DependencyInjection/Loader/schema/dic/services/services-1.0.xsd" role="doc"/>
</code></pre></div> | <ul dir="auto">
<li>*.xsd files in the v2.0.15 package.xml files for the DependencyInjection, Routing, Translation, and Validator components are defined as role="doc" (instead of role="php" like v2.0.14-), but the code expects these files to be in the install directory instead of the doc directory [1][2][3][4][5]. Please update the package.xml for these components to use role="php" for *.xsd files.</li>
<li>*.res files in the v2.0.15 package.xml file for the Locale component are defined as role="doc" (instead of role="php" like v2.0.14-), but the code expects these files to be in the install directory instead of the doc directory [6][7][8]. Please update the package.xml for this component to use role="php" for *.res files.</li>
</ul>
<p dir="auto">[1] <a href="https://github.com/symfony/symfony/blob/v2.0.15/src/Symfony/Component/DependencyInjection/Loader/XmlFileLoader.php#L310">https://github.com/symfony/symfony/blob/v2.0.15/src/Symfony/Component/DependencyInjection/Loader/XmlFileLoader.php#L310</a><br>
[2] <a href="https://github.com/symfony/symfony/blob/v2.0.15/src/Symfony/Component/Routing/Loader/XmlFileLoader.php#L175">https://github.com/symfony/symfony/blob/v2.0.15/src/Symfony/Component/Routing/Loader/XmlFileLoader.php#L175</a><br>
[3] <a href="https://github.com/symfony/symfony/blob/v2.0.15/src/Symfony/Component/Translation/Loader/XliffFileLoader.php#L64">https://github.com/symfony/symfony/blob/v2.0.15/src/Symfony/Component/Translation/Loader/XliffFileLoader.php#L64</a><br>
[4] <a href="https://github.com/symfony/symfony/blob/v2.0.15/src/Symfony/Component/Translation/Loader/XliffFileLoader.php#L76">https://github.com/symfony/symfony/blob/v2.0.15/src/Symfony/Component/Translation/Loader/XliffFileLoader.php#L76</a><br>
[5] <a href="https://github.com/symfony/symfony/blob/v2.0.15/src/Symfony/Component/Validator/Mapping/Loader/XmlFileLoader.php#L182">https://github.com/symfony/symfony/blob/v2.0.15/src/Symfony/Component/Validator/Mapping/Loader/XmlFileLoader.php#L182</a><br>
[6] <a href="https://github.com/symfony/symfony/blob/v2.0.15/src/Symfony/Component/Locale/Locale.php#L46">https://github.com/symfony/symfony/blob/v2.0.15/src/Symfony/Component/Locale/Locale.php#L46</a><br>
[7] <a href="https://github.com/symfony/symfony/blob/v2.0.15/src/Symfony/Component/Locale/Locale.php#L101">https://github.com/symfony/symfony/blob/v2.0.15/src/Symfony/Component/Locale/Locale.php#L101</a><br>
[8] <a href="https://github.com/symfony/symfony/blob/v2.0.15/src/Symfony/Component/Locale/Locale.php#L152">https://github.com/symfony/symfony/blob/v2.0.15/src/Symfony/Component/Locale/Locale.php#L152</a></p> | 1 |
<p dir="auto">I hit it first after making minor changes to the flutter code lab, and am hitting it now, while trying to put together a simpler flutter app.</p>
<p dir="auto">Hot reload is not working, cold launches sometimes work.</p>
<p dir="auto">Flutter run from IJ.</p>
<p dir="auto">Launching lib/main.dart on Nexus 6P in debug mode...<br>
Built build/app/outputs/apk/app-debug.apk (21.7MB).<br>
W/IInputConnectionWrapper(21208): reportFullscreenMode on inexistent InputConnection<br>
I/flutter (21208): executeQuery<br>
Restarted app in 1,286ms.<br>
E/MethodChannel#flutter/textinput(21208): Failed to handle method call<br>
E/MethodChannel#flutter/textinput(21208): java.lang.IndexOutOfBoundsException: setSpan (-1 ... -1) starts before 0<br>
E/MethodChannel#flutter/textinput(21208): at android.text.SpannableStringBuilder.checkRange(SpannableStringBuilder.java:1325)<br>
E/MethodChannel#flutter/textinput(21208): at android.text.SpannableStringBuilder.setSpan(SpannableStringBuilder.java:683)<br>
E/MethodChannel#flutter/textinput(21208): at android.text.SpannableStringBuilder.setSpan(SpannableStringBuilder.java:676)<br>
E/MethodChannel#flutter/textinput(21208): at android.text.Selection.setSelection(Selection.java:76)<br>
E/MethodChannel#flutter/textinput(21208): at io.flutter.plugin.editing.TextInputPlugin.setTextInputEditingState(TextInputPlugin.java:147)<br>
E/MethodChannel#flutter/textinput(21208): at io.flutter.plugin.editing.TextInputPlugin.onMethodCall(TextInputPlugin.java:66)<br>
E/MethodChannel#flutter/textinput(21208): at io.flutter.plugin.common.MethodChannel$IncomingMethodCallHandler.onMessage(MethodChannel.java:191)<br>
E/MethodChannel#flutter/textinput(21208): at io.flutter.view.FlutterView.handlePlatformMessage(FlutterView.java:643)<br>
E/MethodChannel#flutter/textinput(21208): at android.os.MessageQueue.nativePollOnce(Native Method)<br>
E/MethodChannel#flutter/textinput(21208): at android.os.MessageQueue.next(MessageQueue.java:323)<br>
E/MethodChannel#flutter/textinput(21208): at android.os.Looper.loop(Looper.java:136)<br>
E/MethodChannel#flutter/textinput(21208): at android.app.ActivityThread.main(ActivityThread.java:6121)<br>
E/MethodChannel#flutter/textinput(21208): at java.lang.reflect.Method.invoke(Native Method)<br>
E/MethodChannel#flutter/textinput(21208): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:889)<br>
E/MethodChannel#flutter/textinput(21208): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:779)</p>
<p dir="auto">flutter analyze:<br>
~/src/github/flutter/bin/flutter analyze<br>
Analyzing jwren/src/github/flutter_google_knowledge_graph...<br>
hint • The value of the local variable 'v' isn't used at lib/main.dart:97:9 • unused_local_variable<br>
1 issue found.<br>
(Ran in 4.5s)</p> | <p dir="auto">Not sure whether this is a flutter bug or I should restructure the code.<br>
The intended behavior is that whenever I click the circled plus button, it should add <code class="notranslate">", " </code> to the end of the input text and advance the cursor to the end.</p>
<h2 dir="auto">Steps to Reproduce</h2>
<ul dir="auto">
<li>Run the following sample flutter program.</li>
<li>Type something in the text field and click the circled plus button.</li>
<li>The text field flicker for a moment, and the console shows some error messages (see below).</li>
</ul>
<p dir="auto"><main.dart></p>
<div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import 'package:flutter/material.dart';
void main() {
runApp(new MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Flutter Demo',
theme: new ThemeData(
primarySwatch: Colors.blue,
),
home: new MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => new _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
final TextEditingController _textController = new TextEditingController();
@override
Widget build(BuildContext context) {
ThemeData theme = Theme.of(context);
return new Scaffold(
appBar: new AppBar(
title: new Text(widget.title),
),
body: new Center(
child: new AnimatedBuilder(
animation: _textController,
builder: (BuildContext context, Widget child) {
return new AlertDialog(
title: new Text('Sample Values'),
content: new Row(
children: <Widget>[
new Expanded(
child: new TextField(
autofocus: true,
controller: _textController,
onSubmitted: (String text) =>
text.isNotEmpty ? _handleSubmit(text) : null,
),
),
new IconButton(
icon: new Icon(Icons.add_circle_outline),
color: theme.primaryColor,
onPressed: _shouldEnablePlusButton(_textController.text)
? _handlePlusButton
: null,
),
],
),
actions: <Widget>[
new FlatButton(
child: new Text('OK'),
onPressed: _textController.text.isNotEmpty
? () => _handleSubmit(_textController.text)
: null,
),
],
);
},
),
),
);
}
bool _shouldEnablePlusButton(String text) {
return text.trim().isNotEmpty && !text.trim().endsWith(',');
}
void _handlePlusButton() {
_textController.text = _textController.text + ', ';
_textController.selection = new TextSelection.collapsed(
offset: _textController.text.length,
);
}
void _handleSubmit(String text) {
print(text);
_textController.clear();
}
}"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s">'package:flutter/material.dart'</span>;
<span class="pl-k">void</span> <span class="pl-en">main</span>() {
<span class="pl-en">runApp</span>(<span class="pl-k">new</span> <span class="pl-c1">MyApp</span>());
}
<span class="pl-k">class</span> <span class="pl-c1">MyApp</span> <span class="pl-k">extends</span> <span class="pl-c1">StatelessWidget</span> {
<span class="pl-k">@override</span>
<span class="pl-c1">Widget</span> <span class="pl-en">build</span>(<span class="pl-c1">BuildContext</span> context) {
<span class="pl-k">return</span> <span class="pl-k">new</span> <span class="pl-c1">MaterialApp</span>(
title<span class="pl-k">:</span> <span class="pl-s">'Flutter Demo'</span>,
theme<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">ThemeData</span>(
primarySwatch<span class="pl-k">:</span> <span class="pl-c1">Colors</span>.blue,
),
home<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">MyHomePage</span>(title<span class="pl-k">:</span> <span class="pl-s">'Flutter Demo Home Page'</span>),
);
}
}
<span class="pl-k">class</span> <span class="pl-c1">MyHomePage</span> <span class="pl-k">extends</span> <span class="pl-c1">StatefulWidget</span> {
<span class="pl-c1">MyHomePage</span>({<span class="pl-c1">Key</span> key, <span class="pl-c1">this</span>.title}) <span class="pl-k">:</span> <span class="pl-c1">super</span>(key<span class="pl-k">:</span> key);
<span class="pl-k">final</span> <span class="pl-c1">String</span> title;
<span class="pl-k">@override</span>
<span class="pl-c1">_MyHomePageState</span> <span class="pl-en">createState</span>() <span class="pl-k">=></span> <span class="pl-k">new</span> <span class="pl-c1">_MyHomePageState</span>();
}
<span class="pl-k">class</span> <span class="pl-c1">_MyHomePageState</span> <span class="pl-k">extends</span> <span class="pl-c1">State</span><<span class="pl-c1">MyHomePage</span>> {
<span class="pl-k">final</span> <span class="pl-c1">TextEditingController</span> _textController <span class="pl-k">=</span> <span class="pl-k">new</span> <span class="pl-c1">TextEditingController</span>();
<span class="pl-k">@override</span>
<span class="pl-c1">Widget</span> <span class="pl-en">build</span>(<span class="pl-c1">BuildContext</span> context) {
<span class="pl-c1">ThemeData</span> theme <span class="pl-k">=</span> <span class="pl-c1">Theme</span>.<span class="pl-en">of</span>(context);
<span class="pl-k">return</span> <span class="pl-k">new</span> <span class="pl-c1">Scaffold</span>(
appBar<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">AppBar</span>(
title<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Text</span>(widget.title),
),
body<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Center</span>(
child<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">AnimatedBuilder</span>(
animation<span class="pl-k">:</span> _textController,
builder<span class="pl-k">:</span> (<span class="pl-c1">BuildContext</span> context, <span class="pl-c1">Widget</span> child) {
<span class="pl-k">return</span> <span class="pl-k">new</span> <span class="pl-c1">AlertDialog</span>(
title<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Text</span>(<span class="pl-s">'Sample Values'</span>),
content<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Row</span>(
children<span class="pl-k">:</span> <span class="pl-k"><</span><span class="pl-c1">Widget</span><span class="pl-k">></span>[
<span class="pl-k">new</span> <span class="pl-c1">Expanded</span>(
child<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">TextField</span>(
autofocus<span class="pl-k">:</span> <span class="pl-c1">true</span>,
controller<span class="pl-k">:</span> _textController,
onSubmitted<span class="pl-k">:</span> (<span class="pl-c1">String</span> text) <span class="pl-k">=></span>
text.isNotEmpty <span class="pl-k">?</span> <span class="pl-en">_handleSubmit</span>(text) <span class="pl-k">:</span> <span class="pl-c1">null</span>,
),
),
<span class="pl-k">new</span> <span class="pl-c1">IconButton</span>(
icon<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Icon</span>(<span class="pl-c1">Icons</span>.add_circle_outline),
color<span class="pl-k">:</span> theme.primaryColor,
onPressed<span class="pl-k">:</span> <span class="pl-en">_shouldEnablePlusButton</span>(_textController.text)
<span class="pl-k">?</span> _handlePlusButton
<span class="pl-k">:</span> <span class="pl-c1">null</span>,
),
],
),
actions<span class="pl-k">:</span> <span class="pl-k"><</span><span class="pl-c1">Widget</span><span class="pl-k">></span>[
<span class="pl-k">new</span> <span class="pl-c1">FlatButton</span>(
child<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Text</span>(<span class="pl-s">'OK'</span>),
onPressed<span class="pl-k">:</span> _textController.text.isNotEmpty
<span class="pl-k">?</span> () <span class="pl-k">=></span> <span class="pl-en">_handleSubmit</span>(_textController.text)
<span class="pl-k">:</span> <span class="pl-c1">null</span>,
),
],
);
},
),
),
);
}
<span class="pl-c1">bool</span> <span class="pl-en">_shouldEnablePlusButton</span>(<span class="pl-c1">String</span> text) {
<span class="pl-k">return</span> text.<span class="pl-en">trim</span>().isNotEmpty <span class="pl-k">&&</span> <span class="pl-k">!</span>text.<span class="pl-en">trim</span>().<span class="pl-en">endsWith</span>(<span class="pl-s">','</span>);
}
<span class="pl-k">void</span> <span class="pl-en">_handlePlusButton</span>() {
_textController.text <span class="pl-k">=</span> _textController.text <span class="pl-k">+</span> <span class="pl-s">', '</span>;
_textController.selection <span class="pl-k">=</span> <span class="pl-k">new</span> <span class="pl-c1">TextSelection</span>.<span class="pl-en">collapsed</span>(
offset<span class="pl-k">:</span> _textController.text.length,
);
}
<span class="pl-k">void</span> <span class="pl-en">_handleSubmit</span>(<span class="pl-c1">String</span> text) {
<span class="pl-en">print</span>(text);
_textController.<span class="pl-en">clear</span>();
}
}</pre></div>
<h2 dir="auto">Logs</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="E/SpannableStringBuilder(16005): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(16005): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(16005): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(16005): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
W/IInputConnectionWrapper(16005): finishComposingText on inactive InputConnection
W/IInputConnectionWrapper(16005): beginBatchEdit on inactive InputConnection
W/IInputConnectionWrapper(16005): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper(16005): getTextAfterCursor on inactive InputConnection
W/IInputConnectionWrapper(16005): getSelectedText on inactive InputConnection
W/IInputConnectionWrapper(16005): endBatchEdit on inactive InputConnection
W/IInputConnectionWrapper(16005): beginBatchEdit on inactive InputConnection
W/IInputConnectionWrapper(16005): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper(16005): getTextAfterCursor on inactive InputConnection
W/IInputConnectionWrapper(16005): getSelectedText on inactive InputConnection
W/IInputConnectionWrapper(16005): endBatchEdit on inactive InputConnection
I/flutter (16005): ══╡ EXCEPTION CAUGHT BY RENDERING LIBRARY ╞═════════════════════════════════════════════════════════
I/flutter (16005): The following assertion was thrown during paint():
I/flutter (16005): 'package:flutter/src/rendering/object.dart': Failed assertion: line 2110: 'owner == null ||
I/flutter (16005): !owner.debugDoingPaint': is not true.
I/flutter (16005):
I/flutter (16005): Either the assertion indicates an error in the framework itself, or we should provide substantially
I/flutter (16005): more information in this error message to help you determine and fix the underlying cause.
I/flutter (16005): In either case, please report this assertion by filing a bug on GitHub:
I/flutter (16005): https://github.com/flutter/flutter/issues/new
I/flutter (16005):
I/flutter (16005): When the exception was thrown, this was the stack:
I/flutter (16005): #2 RenderObject.markNeedsPaint (package:flutter/src/rendering/object.dart:2110)
I/flutter (16005): #3 _RenderInkFeatures._didChangeLayout (package:flutter/src/material/material.dart:315)
I/flutter (16005): #4 _MaterialState.build.<anonymous closure> (package:flutter/src/material/material.dart:228)
I/flutter (16005): #5 NotificationListener._dispatch (package:flutter/src/widgets/notification_listener.dart:110)
I/flutter (16005): #6 Notification.visitAncestor (package:flutter/src/widgets/notification_listener.dart:43)
I/flutter (16005): #7 LayoutChangedNotification&ViewportNotificationMixin.visitAncestor (package:flutter/src/widgets/scroll_notification.dart:36)
I/flutter (16005): #8 Element.visitAncestorElements (package:flutter/src/widgets/framework.dart:3103)
I/flutter (16005): #9 Notification.dispatch (package:flutter/src/widgets/notification_listener.dart:57)
I/flutter (16005): #10 ScrollActivity.dispatchScrollStartNotification (package:flutter/src/widgets/scroll_activity.dart:90)
I/flutter (16005): #11 ScrollPosition.didStartScroll (package:flutter/src/widgets/scroll_position.dart:543)
I/flutter (16005): #12 ScrollPosition.beginActivity (package:flutter/src/widgets/scroll_position.dart:535)
I/flutter (16005): #13 ScrollPositionWithSingleContext.beginActivity (package:flutter/src/widgets/scroll_position_with_single_context.dart:119)
I/flutter (16005): #14 ScrollPositionWithSingleContext.animateTo (package:flutter/src/widgets/scroll_position_with_single_context.dart:186)
I/flutter (16005): #15 ScrollController.animateTo (package:flutter/src/widgets/scroll_controller.dart:143)
I/flutter (16005): #16 EditableTextState._handleCaretChanged (package:flutter/src/widgets/editable_text.dart:463)
I/flutter (16005): #17 RenderEditable._paintCaret (package:flutter/src/rendering/editable.dart:497)
I/flutter (16005): #18 RenderEditable._paintContents (package:flutter/src/rendering/editable.dart:515)
I/flutter (16005): #19 RenderEditable.paint (package:flutter/src/rendering/editable.dart:531)
I/flutter (16005): #20 RenderObject._paintWithContext (package:flutter/src/rendering/object.dart:2259)
I/flutter (16005): #21 PaintingContext.paintChild (package:flutter/src/rendering/object.dart:116)
I/flutter (16005): #22 RenderBox&RenderObjectWithChildMixin&RenderProxyBoxMixin.paint (package:flutter/src/rendering/proxy_box.dart:123)
I/flutter (16005): #23 RenderObject._paintWithContext (package:flutter/src/rendering/object.dart:2259)
I/flutter (16005): #24 PaintingContext.paintChild (package:flutter/src/rendering/object.dart:116)
I/flutter (16005): #25 RenderBox&RenderObjectWithChildMixin&RenderProxyBoxMixin.paint (package:flutter/src/rendering/proxy_box.dart:123)
I/flutter (16005): #26 RenderObject._paintWithContext (package:flutter/src/rendering/object.dart:2259)
I/flutter (16005): #27 PaintingContext.paintChild (package:flutter/src/rendering/object.dart:116)
I/flutter (16005): #28 RenderBox&RenderObjectWithChildMixin&RenderProxyBoxMixin.paint (package:flutter/src/rendering/proxy_box.dart:123)
I/flutter (16005): #29 RenderObject._paintWithContext (package:flutter/src/rendering/object.dart:2259)
I/flutter (16005): #30 PaintingContext.paintChild (package:flutter/src/rendering/object.dart:116)
I/flutter (16005): #31 RenderBox&RenderObjectWithChildMixin&RenderProxyBoxMixin.paint (package:flutter/src/rendering/proxy_box.dart:123)
I/flutter (16005): #32 RenderObject._paintWithContext (package:flutter/src/rendering/object.dart:2259)
I/flutter (16005): #33 PaintingContext.repaintCompositedChild (package:flutter/src/rendering/object.dart:96)
I/flutter (16005): #34 PipelineOwner.flushPaint (package:flutter/src/rendering/object.dart:1085)
I/flutter (16005): #35 BindingBase&SchedulerBinding&GestureBinding&ServicesBinding&RendererBinding.drawFrame (package:flutter/src/rendering/binding.dart:253)
I/flutter (16005): #36 BindingBase&SchedulerBinding&GestureBinding&ServicesBinding&RendererBinding&WidgetsBinding.drawFrame (package:flutter/src/widgets/binding.dart:504)
I/flutter (16005): #37 BindingBase&SchedulerBinding&GestureBinding&ServicesBinding&RendererBinding._handlePersistentFrameCallback (package:flutter/src/rendering/binding.dart:189)
I/flutter (16005): #38 BindingBase&SchedulerBinding._invokeFrameCallback (package:flutter/src/scheduler/binding.dart:688)
I/flutter (16005): #39 BindingBase&SchedulerBinding.handleDrawFrame (package:flutter/src/scheduler/binding.dart:636)
I/flutter (16005): #40 _drawFrame (file:///b/build/slave/Linux_Engine/build/src/flutter/lib/ui/hooks.dart:70)
I/flutter (16005): (elided 2 frames from class _AssertionError)
I/flutter (16005):
I/flutter (16005): The following RenderObject was being processed when the exception was fired:
I/flutter (16005): RenderEditable#653928671 relayoutBoundary=up25
I/flutter (16005): creator: _Editable ← _ScrollableScope ← IgnorePointer-[GlobalKey#739450262] ← Listener ←
I/flutter (16005): _GestureSemantics ← RawGestureDetector-[LabeledGlobalKey<RawGestureDetectorState>#519290292] ←
I/flutter (16005): RepaintBoundary ← CustomPaint ← RepaintBoundary ← NotificationListener<ScrollNotification> ←
I/flutter (16005): GlowingOverscrollIndicator ← Scrollable ← ⋯
I/flutter (16005): parentData: <none> (can use size)
I/flutter (16005): constraints: BoxConstraints(w=184.0, 0.0<=h<=160.0)
I/flutter (16005): size: Size(184.0, 19.0)
I/flutter (16005): cursorColor: Color(0xff90caf9)
I/flutter (16005): showCursor: ValueNotifier<bool>#24695738(true)
I/flutter (16005): maxLines: 1
I/flutter (16005): selectionColor: Color(0xff90caf9)
I/flutter (16005): textScaleFactor: 1.0
I/flutter (16005): selection: TextSelection(baseOffset: 6, extentOffset: 6, affinity: TextAffinity.downstream,
I/flutter (16005): isDirectional: false)
I/flutter (16005): offset: ScrollPositionWithSingleContext#600127095(offset: 0.0, range: 0.0..0.0, viewport: 184.0,
I/flutter (16005): ScrollableState, ClampingScrollPhysics -> ClampingScrollPhysics,
I/flutter (16005): DrivenScrollActivity#106212815(AnimationController#365025467(▶ 0.000; for DrivenScrollActivity)),
I/flutter (16005): ScrollDirection.idle)
I/flutter (16005): This RenderObject has no descendants.
I/flutter (16005): ════════════════════════════════════════════════════════════════════════════════════════════════════
"><pre class="notranslate"><code class="notranslate">E/SpannableStringBuilder(16005): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(16005): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(16005): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(16005): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
W/IInputConnectionWrapper(16005): finishComposingText on inactive InputConnection
W/IInputConnectionWrapper(16005): beginBatchEdit on inactive InputConnection
W/IInputConnectionWrapper(16005): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper(16005): getTextAfterCursor on inactive InputConnection
W/IInputConnectionWrapper(16005): getSelectedText on inactive InputConnection
W/IInputConnectionWrapper(16005): endBatchEdit on inactive InputConnection
W/IInputConnectionWrapper(16005): beginBatchEdit on inactive InputConnection
W/IInputConnectionWrapper(16005): getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper(16005): getTextAfterCursor on inactive InputConnection
W/IInputConnectionWrapper(16005): getSelectedText on inactive InputConnection
W/IInputConnectionWrapper(16005): endBatchEdit on inactive InputConnection
I/flutter (16005): ══╡ EXCEPTION CAUGHT BY RENDERING LIBRARY ╞═════════════════════════════════════════════════════════
I/flutter (16005): The following assertion was thrown during paint():
I/flutter (16005): 'package:flutter/src/rendering/object.dart': Failed assertion: line 2110: 'owner == null ||
I/flutter (16005): !owner.debugDoingPaint': is not true.
I/flutter (16005):
I/flutter (16005): Either the assertion indicates an error in the framework itself, or we should provide substantially
I/flutter (16005): more information in this error message to help you determine and fix the underlying cause.
I/flutter (16005): In either case, please report this assertion by filing a bug on GitHub:
I/flutter (16005): https://github.com/flutter/flutter/issues/new
I/flutter (16005):
I/flutter (16005): When the exception was thrown, this was the stack:
I/flutter (16005): #2 RenderObject.markNeedsPaint (package:flutter/src/rendering/object.dart:2110)
I/flutter (16005): #3 _RenderInkFeatures._didChangeLayout (package:flutter/src/material/material.dart:315)
I/flutter (16005): #4 _MaterialState.build.<anonymous closure> (package:flutter/src/material/material.dart:228)
I/flutter (16005): #5 NotificationListener._dispatch (package:flutter/src/widgets/notification_listener.dart:110)
I/flutter (16005): #6 Notification.visitAncestor (package:flutter/src/widgets/notification_listener.dart:43)
I/flutter (16005): #7 LayoutChangedNotification&ViewportNotificationMixin.visitAncestor (package:flutter/src/widgets/scroll_notification.dart:36)
I/flutter (16005): #8 Element.visitAncestorElements (package:flutter/src/widgets/framework.dart:3103)
I/flutter (16005): #9 Notification.dispatch (package:flutter/src/widgets/notification_listener.dart:57)
I/flutter (16005): #10 ScrollActivity.dispatchScrollStartNotification (package:flutter/src/widgets/scroll_activity.dart:90)
I/flutter (16005): #11 ScrollPosition.didStartScroll (package:flutter/src/widgets/scroll_position.dart:543)
I/flutter (16005): #12 ScrollPosition.beginActivity (package:flutter/src/widgets/scroll_position.dart:535)
I/flutter (16005): #13 ScrollPositionWithSingleContext.beginActivity (package:flutter/src/widgets/scroll_position_with_single_context.dart:119)
I/flutter (16005): #14 ScrollPositionWithSingleContext.animateTo (package:flutter/src/widgets/scroll_position_with_single_context.dart:186)
I/flutter (16005): #15 ScrollController.animateTo (package:flutter/src/widgets/scroll_controller.dart:143)
I/flutter (16005): #16 EditableTextState._handleCaretChanged (package:flutter/src/widgets/editable_text.dart:463)
I/flutter (16005): #17 RenderEditable._paintCaret (package:flutter/src/rendering/editable.dart:497)
I/flutter (16005): #18 RenderEditable._paintContents (package:flutter/src/rendering/editable.dart:515)
I/flutter (16005): #19 RenderEditable.paint (package:flutter/src/rendering/editable.dart:531)
I/flutter (16005): #20 RenderObject._paintWithContext (package:flutter/src/rendering/object.dart:2259)
I/flutter (16005): #21 PaintingContext.paintChild (package:flutter/src/rendering/object.dart:116)
I/flutter (16005): #22 RenderBox&RenderObjectWithChildMixin&RenderProxyBoxMixin.paint (package:flutter/src/rendering/proxy_box.dart:123)
I/flutter (16005): #23 RenderObject._paintWithContext (package:flutter/src/rendering/object.dart:2259)
I/flutter (16005): #24 PaintingContext.paintChild (package:flutter/src/rendering/object.dart:116)
I/flutter (16005): #25 RenderBox&RenderObjectWithChildMixin&RenderProxyBoxMixin.paint (package:flutter/src/rendering/proxy_box.dart:123)
I/flutter (16005): #26 RenderObject._paintWithContext (package:flutter/src/rendering/object.dart:2259)
I/flutter (16005): #27 PaintingContext.paintChild (package:flutter/src/rendering/object.dart:116)
I/flutter (16005): #28 RenderBox&RenderObjectWithChildMixin&RenderProxyBoxMixin.paint (package:flutter/src/rendering/proxy_box.dart:123)
I/flutter (16005): #29 RenderObject._paintWithContext (package:flutter/src/rendering/object.dart:2259)
I/flutter (16005): #30 PaintingContext.paintChild (package:flutter/src/rendering/object.dart:116)
I/flutter (16005): #31 RenderBox&RenderObjectWithChildMixin&RenderProxyBoxMixin.paint (package:flutter/src/rendering/proxy_box.dart:123)
I/flutter (16005): #32 RenderObject._paintWithContext (package:flutter/src/rendering/object.dart:2259)
I/flutter (16005): #33 PaintingContext.repaintCompositedChild (package:flutter/src/rendering/object.dart:96)
I/flutter (16005): #34 PipelineOwner.flushPaint (package:flutter/src/rendering/object.dart:1085)
I/flutter (16005): #35 BindingBase&SchedulerBinding&GestureBinding&ServicesBinding&RendererBinding.drawFrame (package:flutter/src/rendering/binding.dart:253)
I/flutter (16005): #36 BindingBase&SchedulerBinding&GestureBinding&ServicesBinding&RendererBinding&WidgetsBinding.drawFrame (package:flutter/src/widgets/binding.dart:504)
I/flutter (16005): #37 BindingBase&SchedulerBinding&GestureBinding&ServicesBinding&RendererBinding._handlePersistentFrameCallback (package:flutter/src/rendering/binding.dart:189)
I/flutter (16005): #38 BindingBase&SchedulerBinding._invokeFrameCallback (package:flutter/src/scheduler/binding.dart:688)
I/flutter (16005): #39 BindingBase&SchedulerBinding.handleDrawFrame (package:flutter/src/scheduler/binding.dart:636)
I/flutter (16005): #40 _drawFrame (file:///b/build/slave/Linux_Engine/build/src/flutter/lib/ui/hooks.dart:70)
I/flutter (16005): (elided 2 frames from class _AssertionError)
I/flutter (16005):
I/flutter (16005): The following RenderObject was being processed when the exception was fired:
I/flutter (16005): RenderEditable#653928671 relayoutBoundary=up25
I/flutter (16005): creator: _Editable ← _ScrollableScope ← IgnorePointer-[GlobalKey#739450262] ← Listener ←
I/flutter (16005): _GestureSemantics ← RawGestureDetector-[LabeledGlobalKey<RawGestureDetectorState>#519290292] ←
I/flutter (16005): RepaintBoundary ← CustomPaint ← RepaintBoundary ← NotificationListener<ScrollNotification> ←
I/flutter (16005): GlowingOverscrollIndicator ← Scrollable ← ⋯
I/flutter (16005): parentData: <none> (can use size)
I/flutter (16005): constraints: BoxConstraints(w=184.0, 0.0<=h<=160.0)
I/flutter (16005): size: Size(184.0, 19.0)
I/flutter (16005): cursorColor: Color(0xff90caf9)
I/flutter (16005): showCursor: ValueNotifier<bool>#24695738(true)
I/flutter (16005): maxLines: 1
I/flutter (16005): selectionColor: Color(0xff90caf9)
I/flutter (16005): textScaleFactor: 1.0
I/flutter (16005): selection: TextSelection(baseOffset: 6, extentOffset: 6, affinity: TextAffinity.downstream,
I/flutter (16005): isDirectional: false)
I/flutter (16005): offset: ScrollPositionWithSingleContext#600127095(offset: 0.0, range: 0.0..0.0, viewport: 184.0,
I/flutter (16005): ScrollableState, ClampingScrollPhysics -> ClampingScrollPhysics,
I/flutter (16005): DrivenScrollActivity#106212815(AnimationController#365025467(▶ 0.000; for DrivenScrollActivity)),
I/flutter (16005): ScrollDirection.idle)
I/flutter (16005): This RenderObject has no descendants.
I/flutter (16005): ════════════════════════════════════════════════════════════════════════════════════════════════════
</code></pre></div>
<h2 dir="auto">Flutter Doctor</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[✓] Flutter (on Linux, locale en_US.UTF-8, channel unknown)
• Flutter at /usr/local/google/home/youngseokyoon/Programming/fuchsia/lib/flutter
• Framework revision 0774c5194b (7 hours ago), 2017-06-13 10:51:17 -0700
• Engine revision 4f5d6fab11
• Tools Dart version 1.24.0-dev.6.7
[✓] Android toolchain - develop for Android devices (Android SDK 25.0.3)
• Android SDK at /usr/local/google/home/youngseokyoon/Android/Sdk
• Platform android-25, build-tools 25.0.3
• Java binary at: /opt/android-studio-2.3/jre/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_112-release-b06)
[✓] Android Studio (version 2.3)
• Android Studio at /opt/android-studio-2.3
• Gradle version 3.2
• Java version OpenJDK Runtime Environment (build 1.8.0_112-release-b06)
[-] IntelliJ IDEA Community Edition (version 2017.1)
✗ Flutter plugin version 13.1 - the recommended minimum version is 14.0.0
• Dart plugin version 171.4424
• For information about managing plugins, see
https://www.jetbrains.com/help/idea/managing-plugins.html
[✓] Connected devices
• Pixel C • 5C08000423 • android-arm • Android 7.0 (API 24)
"><pre class="notranslate"><code class="notranslate">[✓] Flutter (on Linux, locale en_US.UTF-8, channel unknown)
• Flutter at /usr/local/google/home/youngseokyoon/Programming/fuchsia/lib/flutter
• Framework revision 0774c5194b (7 hours ago), 2017-06-13 10:51:17 -0700
• Engine revision 4f5d6fab11
• Tools Dart version 1.24.0-dev.6.7
[✓] Android toolchain - develop for Android devices (Android SDK 25.0.3)
• Android SDK at /usr/local/google/home/youngseokyoon/Android/Sdk
• Platform android-25, build-tools 25.0.3
• Java binary at: /opt/android-studio-2.3/jre/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_112-release-b06)
[✓] Android Studio (version 2.3)
• Android Studio at /opt/android-studio-2.3
• Gradle version 3.2
• Java version OpenJDK Runtime Environment (build 1.8.0_112-release-b06)
[-] IntelliJ IDEA Community Edition (version 2017.1)
✗ Flutter plugin version 13.1 - the recommended minimum version is 14.0.0
• Dart plugin version 171.4424
• For information about managing plugins, see
https://www.jetbrains.com/help/idea/managing-plugins.html
[✓] Connected devices
• Pixel C • 5C08000423 • android-arm • Android 7.0 (API 24)
</code></pre></div> | 1 |
<p dir="auto"><a href="http://stackoverflow.com/questions/14511752/pandas-3x3-scatter-matrix-missing-labels" rel="nofollow">http://stackoverflow.com/questions/14511752/pandas-3x3-scatter-matrix-missing-labels</a></p> | <p dir="auto">I create a pandas scatter-matrix usng the following code:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np
import pandas as pd
a = np.random.normal(1, 3, 100)
b = np.random.normal(3, 1, 100)
c = np.random.normal(2, 2, 100)
df = pd.DataFrame({'A':a,'B':b,'C':c})
pd.scatter_matrix(df, diagonal='kde')"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span>
<span class="pl-s1">a</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">normal</span>(<span class="pl-c1">1</span>, <span class="pl-c1">3</span>, <span class="pl-c1">100</span>)
<span class="pl-s1">b</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">normal</span>(<span class="pl-c1">3</span>, <span class="pl-c1">1</span>, <span class="pl-c1">100</span>)
<span class="pl-s1">c</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">normal</span>(<span class="pl-c1">2</span>, <span class="pl-c1">2</span>, <span class="pl-c1">100</span>)
<span class="pl-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>({<span class="pl-s">'A'</span>:<span class="pl-s1">a</span>,<span class="pl-s">'B'</span>:<span class="pl-s1">b</span>,<span class="pl-s">'C'</span>:<span class="pl-s1">c</span>})
<span class="pl-s1">pd</span>.<span class="pl-en">scatter_matrix</span>(<span class="pl-s1">df</span>, <span class="pl-s1">diagonal</span><span class="pl-c1">=</span><span class="pl-s">'kde'</span>)</pre></div>
<p dir="auto">This result in the following scatter-matrix:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/fe5091dcb388140b74beefeb4a87f083d05fc9cafe40b91744ae6d20e99ea363/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313534383135362f39383730392f35366466303666382d363732662d313165322d383437312d3330313139333364376363312e706e67"><img src="https://camo.githubusercontent.com/fe5091dcb388140b74beefeb4a87f083d05fc9cafe40b91744ae6d20e99ea363/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313534383135362f39383730392f35366466303666382d363732662d313165322d383437312d3330313139333364376363312e706e67" alt="scatter-matrix-3" data-canonical-src="https://f.cloud.github.com/assets/1548156/98709/56df06f8-672f-11e2-8471-3011933d7cc1.png" style="max-width: 100%;"></a></p>
<p dir="auto">The first row has no ytick labels, the 3th column no xtick labels, the 3th item 'C' is not labeled.</p>
<p dir="auto">Any idea how to complete this plot with the missing labels ?</p> | 1 |
<h4 dir="auto">Background</h4>
<p dir="auto">Every week axios receives lots of new issues, and most of them are problems about how to get the expected response. Some of them are simple or duplicated, some are similar but with tricky differences, and some are complex without enough and clear information.</p>
<h4 dir="auto">Possible actions</h4>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> maintain a F.A.Q page or tutorial
<ul dir="auto">
<li>something like <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="275736381" data-permission-text="Title is private" data-url="https://github.com/axios/axios/issues/1195" data-hovercard-type="issue" data-hovercard-url="/axios/axios/issues/1195/hovercard?comment_id=579600201&comment_type=issue_comment" href="https://github.com/axios/axios/issues/1195#issuecomment-579600201">#1195 (comment)</a>, to help users try to solve the issue by themselves first</li>
<li>or better website page with interactions or something I don't know</li>
</ul>
</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> update issue templates to collect enough information and <em><strong>reject offenders</strong></em>
<ul dir="auto">
<li>if users thought they really need to open an issue, make sure others can help them easier</li>
<li>if an issue didn't follow the template, or without potential suggestions for axios, it will be closed directly</li>
</ul>
</li>
</ul>
<p dir="auto">It may be a little rude for users seeking for help. But please understand the differences between Github issues and stackoverflow questions. Issue readers are same developers like you. The best debugger is yourself, because only you know everything about the problem. You may not familiar with axios codes, but it is simple to read and easy to get familiar with.</p>
<h4 dir="auto">About pulls</h4>
<p dir="auto">By the way, call help for more reviewers to handle the accumulated pull requests. Anyone in the community can leave comments for them. The main strategy is conservative and do not introduce bugs and too much breaking changes.</p>
<hr>
<p dir="auto">Everything above is my personal thoughts, which doesn't stand for axios official decisions. Forgive my non-native English, and I just wish this project can be better with the community's help.</p> | <h4 dir="auto">Describe the issue</h4>
<p dir="auto">I am trying to access a route in the API that checks whether an access token is valid or not. If it is not valid, jwt returns jwt expired error.</p>
<p dir="auto">In my axios response interceptor I verify I get that error. However, I would like to make an automatic request to the server to get a new access token if I get this error.</p>
<p dir="auto">Can this be done in axios?</p>
<p dir="auto">axios interceptor</p>
<h4 dir="auto">Example Code</h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="service.interceptors.response.use(
response => {
return response.data
},
error => {
console.log('error', error)
if (error.response.data.error === 'TokenExpiredError') {
// make new request here to refresh token
}
return Promise.reject({ ...error })
},
)"><pre class="notranslate"><code class="notranslate">service.interceptors.response.use(
response => {
return response.data
},
error => {
console.log('error', error)
if (error.response.data.error === 'TokenExpiredError') {
// make new request here to refresh token
}
return Promise.reject({ ...error })
},
)
</code></pre></div>
<h4 dir="auto">Expected behavior, if applicable</h4>
<p dir="auto">A new request is made to the API instead of returning an error</p>
<h4 dir="auto">Environment</h4>
<ul dir="auto">
<li>Axios Version ^0.19.2]</li>
<li>Adapter [HTTP]</li>
<li>Browser [Chrome]</li>
<li>Browser Version [84.0.4147.105 (Official Build) (64-bit)]</li>
<li>Node.js Version [13.0.1]</li>
<li>OS: [Ubuntu 18.04]</li>
<li>Additional Library Versions [React ^16.13.1]</li>
</ul>
<h4 dir="auto">Additional context/Screenshots</h4>
<p dir="auto">Add any other context about the problem here. If applicable, add screenshots to help explain.</p> | 0 |
<p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/numpy/ticket/1507" rel="nofollow">http://projects.scipy.org/numpy/ticket/1507</a> on 2010-06-08 by trac user howarn, assigned to unknown.</em></p>
<p dir="auto">$ cd doc<br>
$ make html<br>
mkdir -p build<br>
touch build/generate-stamp<br>
mkdir -p build/html build/doctrees<br>
LANG=C sphinx-build -b html -d build/doctrees source build/html<br>
Running Sphinx v1.0b2+<br>
2.0.dev 2.0.0.dev</p>
<p dir="auto">Exception occurred:<br>
File "/usr/src/RPM/BUILD/python-module-numpy-2.0.0/doc/sphinxext/numpydoc.py", line 137, in get_directive<br>
raise RuntimeError("No directive named '%s' found" % name)<br>
RuntimeError: No directive named 'function' found<br>
The full traceback has been saved in /usr/src/tmp/sphinx-err-m2iNvQ.log, if you want to report the issue to the developers.<br>
Please also report this if it was a user error, so that a better error message can be provided next time.<br>
Either send bugs to the mailing list at <a href="http://groups.google.com/group/sphinx-dev/" rel="nofollow">http://groups.google.com/group/sphinx-dev/</a>,<br>
or report them in the tracker at <a href="http://bitbucket.org/birkenfeld/sphinx/issues/" rel="nofollow">http://bitbucket.org/birkenfeld/sphinx/issues/</a>. Thanks!<br>
make: *** [html] Error 1</p> | <p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/numpy/ticket/1489" rel="nofollow">http://projects.scipy.org/numpy/ticket/1489</a> on 2010-05-22 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mforbes/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mforbes">@mforbes</a>, 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">The numpydoc (sphinxext) sphinx extension as of svn version 8426 is broken when used with the latest sphinx tip (2f0924a705b2).</p>
<p dir="auto">The first hg version of sphinx where this starts failing is 98f9c2d6f51f where domains are introduced. It is not clear to me right now how to fix this.</p>
<p dir="auto">Using sphinx-quickstart and adding the 'numpydoc' extension (no other modifications to the defaults and including autodoc) gives the following:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ make html
sphinx-build -b html -d _build/doctrees . _build/html
Making output directory...
Running Sphinx v1.0pre
Exception occurred:
File "/Library/Frameworks/Python.framework/Versions/6.0.4/lib/python2.6/site-packages/numpydoc-0.3.dev-py2.6.egg/numpydoc/numpydoc.py", line 137, in get_directive
raise RuntimeError("No directive named '%s' found" % name)
RuntimeError: No directive named 'function' found
...
make: *** [html] Error 1"><pre class="notranslate"><code class="notranslate">$ make html
sphinx-build -b html -d _build/doctrees . _build/html
Making output directory...
Running Sphinx v1.0pre
Exception occurred:
File "/Library/Frameworks/Python.framework/Versions/6.0.4/lib/python2.6/site-packages/numpydoc-0.3.dev-py2.6.egg/numpydoc/numpydoc.py", line 137, in get_directive
raise RuntimeError("No directive named '%s' found" % name)
RuntimeError: No directive named 'function' found
...
make: *** [html] Error 1
</code></pre></div>
<p dir="auto">Here is the traceback:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# Sphinx version: 1.0pre
# Docutils version: 0.6 release
# Jinja2 version: 2.2.1
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/6.0.4/lib/python2.6/site-packages/Sphinx-1.0pre_2f0924a705b2dev_20100521-py2.6.egg/sphinx/cmdline.py", line 172, in main
warningiserror, tags)
File "/Library/Frameworks/Python.framework/Versions/6.0.4/lib/python2.6/site-packages/Sphinx-1.0pre_2f0924a705b2dev_20100521-py2.6.egg/sphinx/application.py", line 114, in __init__
self.setup_extension(extension)
File "/Library/Frameworks/Python.framework/Versions/6.0.4/lib/python2.6/site-packages/Sphinx-1.0pre_2f0924a705b2dev_20100521-py2.6.egg/sphinx/application.py", line 251, in setup_extension
mod.setup(self)
File "/Library/Frameworks/Python.framework/Versions/6.0.4/lib/python2.6/site-packages/numpydoc-0.3.dev-py2.6.egg/numpydoc/numpydoc.py", line 120, in setup
app.add_directive('np-' + name, wrap_mangling_directive(name, objtype))
File "/Library/Frameworks/Python.framework/Versions/6.0.4/lib/python2.6/site-packages/numpydoc-0.3.dev-py2.6.egg/numpydoc/numpydoc.py", line 140, in wrap_mangling_directive
base_directive = get_directive(base_directive_name)
File "/Library/Frameworks/Python.framework/Versions/6.0.4/lib/python2.6/site-packages/numpydoc-0.3.dev-py2.6.egg/numpydoc/numpydoc.py", line 137, in get_directive
raise RuntimeError("No directive named '%s' found" % name)
RuntimeError: No directive named 'function' found"><pre class="notranslate"><code class="notranslate"># Sphinx version: 1.0pre
# Docutils version: 0.6 release
# Jinja2 version: 2.2.1
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/6.0.4/lib/python2.6/site-packages/Sphinx-1.0pre_2f0924a705b2dev_20100521-py2.6.egg/sphinx/cmdline.py", line 172, in main
warningiserror, tags)
File "/Library/Frameworks/Python.framework/Versions/6.0.4/lib/python2.6/site-packages/Sphinx-1.0pre_2f0924a705b2dev_20100521-py2.6.egg/sphinx/application.py", line 114, in __init__
self.setup_extension(extension)
File "/Library/Frameworks/Python.framework/Versions/6.0.4/lib/python2.6/site-packages/Sphinx-1.0pre_2f0924a705b2dev_20100521-py2.6.egg/sphinx/application.py", line 251, in setup_extension
mod.setup(self)
File "/Library/Frameworks/Python.framework/Versions/6.0.4/lib/python2.6/site-packages/numpydoc-0.3.dev-py2.6.egg/numpydoc/numpydoc.py", line 120, in setup
app.add_directive('np-' + name, wrap_mangling_directive(name, objtype))
File "/Library/Frameworks/Python.framework/Versions/6.0.4/lib/python2.6/site-packages/numpydoc-0.3.dev-py2.6.egg/numpydoc/numpydoc.py", line 140, in wrap_mangling_directive
base_directive = get_directive(base_directive_name)
File "/Library/Frameworks/Python.framework/Versions/6.0.4/lib/python2.6/site-packages/numpydoc-0.3.dev-py2.6.egg/numpydoc/numpydoc.py", line 137, in get_directive
raise RuntimeError("No directive named '%s' found" % name)
RuntimeError: No directive named 'function' found
</code></pre></div> | 1 |
<p dir="auto">I noticed that <a href="https://codecov.io/gh/matplotlib/matplotlib/src/master/lib/matplotlib/tests/test_constrainedlayout.py" rel="nofollow">coverage</a> of <code class="notranslate">test_constrainedlayout.py</code> was only 87.6%. It turns out that the function <code class="notranslate">test_constrained_layout8</code> is duplicated in the test file. I can't tell if this is just complete duplication, or duplication of the name only.</p> | <p dir="auto">Say one finds a pathological natural-neighbour <code class="notranslate">griddata</code> case that <code class="notranslate">matplotlib.delaunay</code> can't handle so installs <code class="notranslate">natgrid</code>, which can cope with your data but is pretty slow. Unfortunately if <code class="notranslate">natgrid</code> is importable then it will always be used in preference to the quicker <code class="notranslate">matplotlib.delaunay</code>. It would be great if there were a <code class="notranslate">griddata</code> argument for selecting <code class="notranslate">matplotlib.delaunay</code> or <code class="notranslate">natgrid</code> at runtime.</p>
<p dir="auto">The interp keyword argument could be used for this purpose e.g.</p>
<ul dir="auto">
<li><code class="notranslate">nn</code> - <code class="notranslate">matplotlib.delaunay</code> natural neighbour interpolation</li>
<li><code class="notranslate">linear</code> - <code class="notranslate">matplotlib.delaunay</code> linear interpolation</li>
<li><code class="notranslate">natgrid</code> - natural neighbour interpolation using <code class="notranslate">natgrid</code> (if installed)</li>
</ul>
<p dir="auto">Something that's worth considering is a failover mode where interpolation usig <code class="notranslate">natgrid</code> is attempted only if <code class="notranslate">matplotlib.delaunay</code> fails (with a <code class="notranslate">KeyError</code> (!)).</p> | 0 |
<p dir="auto">Example: <a href="http://is.gd/9LFIF2" rel="nofollow">http://is.gd/9LFIF2</a></p>
<p dir="auto">The outer macro attempts to parse the new variables as existing ones, and errors when it can't find them.</p> | <p dir="auto">This is a FIXME issue; currently, macro invocations are parsed too eagerly. In particular, the current system decides before expansion time whether a rhs pattern-use (e.g. $y) is bound or unbound. This is incompatible with macro-producing macros that use a given identifier in a pattern position. It's also incompatible with macros inside macros, where inner binding patterns are believed to be pattern uses. The solution is to delay this decision until the macro is encountered at expansion-time, by which time all outer macros have been expanded.</p>
<p dir="auto">Here's an example of a macro that doesn't work in the current system:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="// the z flows into and out of two macros (g & f) along one path, and one (just g) along the
// other, so the result of the whole thing should be "let z_123 = 3; z_123
macro_rules! g (
($x:ident) =>
(
{macro_rules! f(
($y:ident)=>({let $y=3;$x})
);
f!($x)})
)
fn a(){g!(z)}"><pre class="notranslate"><code class="notranslate">// the z flows into and out of two macros (g & f) along one path, and one (just g) along the
// other, so the result of the whole thing should be "let z_123 = 3; z_123
macro_rules! g (
($x:ident) =>
(
{macro_rules! f(
($y:ident)=>({let $y=3;$x})
);
f!($x)})
)
fn a(){g!(z)}
</code></pre></div>
<p dir="auto">Trying to expand this yields this error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Running /usr/local/bin/rustc:
/tmp/g.rs:7:12: 7:13 error: unknown macro variable `y`
/tmp/g.rs:7 ($y:ident)=>({let $y=3;$x})
^"><pre class="notranslate"><code class="notranslate">Running /usr/local/bin/rustc:
/tmp/g.rs:7:12: 7:13 error: unknown macro variable `y`
/tmp/g.rs:7 ($y:ident)=>({let $y=3;$x})
^
</code></pre></div>
<p dir="auto">... indicating that the $y is believed to be a use, rather than a binder.</p> | 1 |
<p dir="auto">Hi,</p>
<p dir="auto">Recenly, one of our clusters on GCE (1.1.7) started having intermittent connection issues. It turned out to be dns resolver issues. Here are my findings during a recent occurance:</p>
<ul dir="auto">
<li>Pods can not resolve anything.</li>
<li>If I remove skydns ip from /etc/resolv.conf, they work fine. (secondary ip is 169.254.169.254)</li>
<li>skydns logs <code class="notranslate">2016/02/29 04:54:22 skydns: failure to forward request "read udp 169.254.169.254:53: i/o timeout"</code> lines during these outages.</li>
<li>Our apps perform a lot of requests on several google apis and facebook apis. These would create a lot of dns requests.</li>
<li>Using default config provided by google cloud.</li>
<li>Tried replacing all nodes, which effectively restarted every single pod and this did not resolve anything.</li>
<li>Created another cluster while this was happening, it came up with the same issues. This would make me believe that the dns server was down but only skydns was failing at this point.</li>
</ul>
<p dir="auto">I thought maybe the dns server was throttling our requests. This would make sense that multiple clusters failed at the same time. But being able to directly query <code class="notranslate">169.254.169.254</code> from pods seems to eliminate this.</p>
<p dir="auto">So, for some reason, skydns starts failing and recovers by itself. On the host machines everything works perfectly fine as they query the GCE dns server directly.</p>
<p dir="auto">What could be the reason / solution in this?</p>
<p dir="auto">Thanks!</p> | <p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/.):no" rel="nofollow">http://kubernetes.io/docs/troubleshooting/.):no</a></p>
<p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.): create,service</p>
<hr>
<p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one):<br>
FEATURE REQUEST</p>
<p dir="auto"><a href="https://bugzilla.redhat.com/show_bug.cgi?id=1378011" rel="nofollow">https://bugzilla.redhat.com/show_bug.cgi?id=1378011</a><br>
<strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>):</p>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>:</li>
<li><strong>OS</strong> (e.g. from /etc/os-release):</li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>):</li>
<li><strong>Install tools</strong>:</li>
<li><strong>Others</strong>:</li>
</ul>
<p dir="auto"><strong>What happened</strong>:</p>
<p dir="auto"><strong>What you expected to happen</strong>:</p>
<p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):</p>
<p dir="auto"><strong>Anything else do we need to know</strong>:</p> | 0 |
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> bug report</li>
</ul>
<p dir="auto"><strong>Current behaviour:</strong><br>
Now every browser comes with save password option.</p>
<p dir="auto">If the password is saved by a browser when we reload a page that contains form password field. By default, it is set to invalid even though the browser fills password field. On clicking anywhere on the page it is set to valid.</p>
<p dir="auto">This behaviour is only with input type="password".</p>
<p dir="auto"><strong>Expected / new behaviour:</strong><br>
If a valid password is auto-filled by browser then it should be made valid</p> | <p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[x] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong></p>
<p dir="auto">Passing <code class="notranslate">new Date()</code> to FormControl doesn't work. Meaning that it is not reflected in the form.<br>
<code class="notranslate">new FormControl(new Date())</code></p>
<p dir="auto">This works<br>
<code class="notranslate">new FormControl('2016-11-28')</code></p>
<p dir="auto"><strong>Expected behavior</strong></p>
<p dir="auto">I expect the date to be parsed and shown in the form.</p>
<p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong></p>
<p dir="auto"><strong>Please tell us about your environment:</strong></p>
<p dir="auto">Windows 10, Vscode</p>
<ul dir="auto">
<li><strong>Angular version:</strong> 2.2.3</li>
</ul>
<ul dir="auto">
<li><strong>Browser:</strong> [all | Chrome XX | Firefox XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ]</li>
</ul>
<ul dir="auto">
<li><strong>Language:</strong> [all | TypeScript X.X | ES6/7 | ES5]</li>
</ul> | 0 |
<p dir="auto"><a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-kops-aws-updown/1938/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-kops-aws-updown/1938/</a></p>
<p dir="auto">Failed: TearDown {e2e.go}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error running kops delete: exit status 1"><pre class="notranslate"><code class="notranslate">error running kops delete: exit status 1
</code></pre></div> | <p dir="auto"><a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-kops-aws-updown/485/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-kops-aws-updown/485/</a></p>
<p dir="auto">Failed: TearDown {e2e.go}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error running kops delete: exit status 1"><pre class="notranslate"><code class="notranslate">error running kops delete: exit status 1
</code></pre></div> | 1 |
<p dir="auto">I have a function that takes a complicated options object as its only argument.<br>
Also, I am using <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment#Default_values_2" rel="nofollow">object destructuring with default values</a> to set default values, which are actually callbacks with similar signatures.</p>
<p dir="auto">The parameters of the callbacks should be independent of each other. However, babel 6.26.0 is still giving a "Duplicate declaration" error.</p>
<h3 dir="auto">Input Code</h3>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="export function createConnectionType({
resolveTotalCount = ({ first, ...searchContext }) => {},
resolveEdges = ({ first, ...searchContext }) => {},
}) {}"><pre class="notranslate"><span class="pl-k">export</span> <span class="pl-k">function</span> <span class="pl-en">createConnectionType</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
resolveTotalCount <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-kos">{</span> first<span class="pl-kos">,</span> ...<span class="pl-s1">searchContext</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>
resolveEdges <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-kos">{</span> first<span class="pl-kos">,</span> ...<span class="pl-s1">searchContext</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-kos">}</span><span class="pl-kos">)</span> <span class="pl-kos">{</span><span class="pl-kos">}</span></pre></div>
<p dir="auto">REPL: <a href="http://bit.ly/2CVCWuB" rel="nofollow">http://bit.ly/2CVCWuB</a></p>
<h3 dir="auto">Babel/Babylon Configuration (.babelrc, package.json, cli command)</h3>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# .babelrc
{
"presets": [
["env", {
"targets": {
"node": "current"
}
}],
"stage-3"
]
}"><pre class="notranslate"># <span class="pl-kos">.</span><span class="pl-s1">babelrc</span>
<span class="pl-kos">{</span>
<span class="pl-s">"presets"</span>: <span class="pl-kos">[</span>
<span class="pl-kos">[</span><span class="pl-s">"env"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span>
<span class="pl-s">"targets"</span>: <span class="pl-kos">{</span>
<span class="pl-s">"node"</span>: <span class="pl-s">"current"</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-s">"stage-3"</span>
<span class="pl-kos">]</span>
<span class="pl-kos">}</span></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# Versions
$ node_modules/.bin/babel --version
6.26.0 (babel-core 6.26.0)"><pre class="notranslate"><code class="notranslate"># Versions
$ node_modules/.bin/babel --version
6.26.0 (babel-core 6.26.0)
</code></pre></div>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">It should compile to something like:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="export function createConnectionType({
resolveTotalCount,
resolveEdges,
}) {
if(!resolveTotalCount) resolveTotalCount = (_ref) => {const {first} = _ref; const searchContext = _objectWithoutProperties(_ref)};
if(!resolveEdges) resolveEdges = (_ref) => {const {first} = _ref; const searchContext = _objectWithoutProperties(_ref)};
}"><pre class="notranslate"><span class="pl-k">export</span> <span class="pl-k">function</span> <span class="pl-en">createConnectionType</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
resolveTotalCount<span class="pl-kos">,</span>
resolveEdges<span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">if</span><span class="pl-kos">(</span><span class="pl-c1">!</span><span class="pl-s1">resolveTotalCount</span><span class="pl-kos">)</span> <span class="pl-en">resolveTotalCount</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-kos">{</span><span class="pl-k">const</span> <span class="pl-kos">{</span>first<span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-s1">_ref</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">searchContext</span> <span class="pl-c1">=</span> <span class="pl-en">_objectWithoutProperties</span><span class="pl-kos">(</span><span class="pl-s1">_ref</span><span class="pl-kos">)</span><span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">if</span><span class="pl-kos">(</span><span class="pl-c1">!</span><span class="pl-s1">resolveEdges</span><span class="pl-kos">)</span> <span class="pl-en">resolveEdges</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-kos">{</span><span class="pl-k">const</span> <span class="pl-kos">{</span>first<span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-s1">_ref</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">searchContext</span> <span class="pl-c1">=</span> <span class="pl-en">_objectWithoutProperties</span><span class="pl-kos">(</span><span class="pl-s1">_ref</span><span class="pl-kos">)</span><span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<h3 dir="auto">Current Behavior</h3>
<p dir="auto">When babel-preset-env is enabled, it gives compile error</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="repl: Duplicate declaration "searchContext"
1 | export function createConnectionType({
2 | resolveTotalCount = ({ first, ...searchContext }) => {},
> 3 | resolveEdges = ({ first, ...searchContext }) => {},
| ^
4 | }) {}"><pre class="notranslate"><code class="notranslate">repl: Duplicate declaration "searchContext"
1 | export function createConnectionType({
2 | resolveTotalCount = ({ first, ...searchContext }) => {},
> 3 | resolveEdges = ({ first, ...searchContext }) => {},
| ^
4 | }) {}
</code></pre></div>
<p dir="auto">When babel-preset-env is disabled, it gives:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/* (_objectWithoutProperties omitted) */
export function createConnectionType(_ref) {
let {
resolveTotalCount = ({ first }) => {},
resolveEdges = ({ first }) => {}
} = _ref,
searchContext = _objectWithoutProperties(_ref.resolveTotalCount, ["first"]),
searchContext = _objectWithoutProperties(_ref.resolveEdges, ["first"]);
}"><pre class="notranslate"><code class="notranslate">/* (_objectWithoutProperties omitted) */
export function createConnectionType(_ref) {
let {
resolveTotalCount = ({ first }) => {},
resolveEdges = ({ first }) => {}
} = _ref,
searchContext = _objectWithoutProperties(_ref.resolveTotalCount, ["first"]),
searchContext = _objectWithoutProperties(_ref.resolveEdges, ["first"]);
}
</code></pre></div>
<p dir="auto">Note that searchContext in the two default values are totally messed up.</p>
<p dir="auto">Seems that there are something wrong with object rest destructuring on function arguments.</p>
<h3 dir="auto">Context</h3>
<p dir="auto">This is the full code:<br>
<a href="https://github.com/cofacts/rumors-api/tree/914b16ea0bc9274f7b16c6a09669f3a2627fe030/src/graphql/util.js#L146-L181">https://github.com/cofacts/rumors-api/tree/914b16ea0bc9274f7b16c6a09669f3a2627fe030/src/graphql/util.js#L146-L181</a></p>
<p dir="auto">The repository was using Babel-core 6.18 and it successfully compiles.</p>
<h3 dir="auto">Your Environment</h3>
<table role="table">
<thead>
<tr>
<th>software</th>
<th>version(s)</th>
</tr>
</thead>
<tbody>
<tr>
<td>Babel</td>
<td>6.26.0</td>
</tr>
<tr>
<td>node</td>
<td>8.9.1</td>
</tr>
<tr>
<td>npm</td>
<td>5.5.1</td>
</tr>
<tr>
<td>Operating System</td>
<td>Mac OSX 10.11</td>
</tr>
</tbody>
</table> | <blockquote>
<p dir="auto">Issue originally made by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/branneman/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/branneman">@branneman</a></p>
</blockquote>
<h3 dir="auto">Bug information</h3>
<ul dir="auto">
<li><strong>Babel version:</strong> 6</li>
<li><strong>Node version:</strong> any</li>
<li><strong>npm version:</strong> any</li>
</ul>
<h3 dir="auto">Input code</h3>
<p dir="auto">My <code class="notranslate">.babelrc</code>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"presets": ["es2015", "stage-3"],
"plugins": [
"external-helpers-2",
"transform-es2015-modules-amd",
"transform-class-properties"
]
}"><pre class="notranslate"><code class="notranslate">{
"presets": ["es2015", "stage-3"],
"plugins": [
"external-helpers-2",
"transform-es2015-modules-amd",
"transform-class-properties"
]
}
</code></pre></div>
<h3 dir="auto">Description</h3>
<p dir="auto">During my search for generating and serving as few bytes as possible in the name of performance, I've struck a wall. I am using the stage-3 and es2015 presets, and thus I need the Polyfill and Helpers.</p>
<p dir="auto">My question is basically this:</p>
<blockquote>
<p dir="auto"><strong>Is it possible to generate the polyfill and external-helpers custom for only the features I actually use?</strong></p>
</blockquote>
<p dir="auto"><strong>1. Polyfill</strong>:<br>
The polyfill is almost 90kb, and seems to include Promises, Iterators, Generators, Reflect, Map/Set and the entire ES2015 standard library. Most of it, I don't actually need. What if I'm only using Iterators and Generators? I'd like to shave off every possible byte from that 90kb. It seems the polyfill is an all or nothing situation.<br>
I could achieve this manually of course, by just bundling only the parts of core-js I need, but then I'd need to maintain a list of which exact ES features I use, I'd like to avoid that if possible.</p>
<p dir="auto"><strong>2. External Helpers</strong>:<br>
Since I don't want my external-helpers to be duplicate, I went looking for a way to generate them. The documentation seems sparse, but I found this:<br>
<code class="notranslate">var code = require('./node_modules/babel-core/lib/tools/build-external-helpers')();</code><br>
This gives me //all// the helpers that exist in babel, instead of just the ones I need, the same situation as with the polyfill. Internally, Babel probably knows which features I'm using, because it generates code like <code class="notranslate">babelHelpers.createClass</code>.</p> | 0 |
<p dir="auto">in mysql,the column 's name was 'from',when I used insert into with mybatis,it was error,I have add " ` ", but it didn't work</p> | <p dir="auto">Service started loading data source error</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2023-01-12 15:55:20.059 INFO DESKTOP-D3UDU4O - [ main] c.a.d.p.DruidDataSource : {dataSource-1} inited
2023-01-12 15:55:20.062 INFO DESKTOP-D3UDU4O - [ main] c.h.v.d.DataSourceAwareService : 初始化基础数据源:DataSource-345723898 => {
CreateTime:"2023-01-12 15:55:17",
ActiveCount:0,
PoolingCount:5,
CreateCount:5,
DestroyCount:0,
CloseCount:0,
ConnectCount:0,
Connections:[
{ID:876420389, ConnectTime:"2023-01-12 15:55:18", UseCount:0, LastActiveTime:"2023-01-12 15:55:18"},
{ID:1982703147, ConnectTime:"2023-01-12 15:55:18", UseCount:0, LastActiveTime:"2023-01-12 15:55:18"},
{ID:15058406, ConnectTime:"2023-01-12 15:55:19", UseCount:0, LastActiveTime:"2023-01-12 15:55:19"},
{ID:1994143461, ConnectTime:"2023-01-12 15:55:19", UseCount:0, LastActiveTime:"2023-01-12 15:55:19"},
{ID:710199598, ConnectTime:"2023-01-12 15:55:19", UseCount:0, LastActiveTime:"2023-01-12 15:55:19"}
]
}
[
{
ID:876420389,
poolStatements:[
]
},
{
ID:1982703147,
poolStatements:[
]
},
{
ID:15058406,
poolStatements:[
]
},
{
ID:1994143461,
poolStatements:[
]
},
{
ID:710199598,
poolStatements:[
]
}
]
2023-01-12 15:55:20.190 INFO DESKTOP-D3UDU4O - [ main] c.z.h.HikariDataSource : HikariPool-1 - Starting...
2023-01-12 15:55:20.300 INFO DESKTOP-D3UDU4O - [ main] c.z.h.HikariDataSource : HikariPool-1 - Start completed.
2023-01-12 15:55:20.765 WARN DESKTOP-D3UDU4O - [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSourceAwareService': Injection of autowired dependencies failed; nested exception is Can't construct a java object for tag:yaml.org,2002:com.alibaba.druid.filter.stat.StatFilter; exception=Class `com.alibaba.druid.filter.stat.StatFilter` is not accepted
in 'string', line 76, column 5:
- &id001 !!com.alibaba.druid.filte ...
^
2023-01-12 15:55:20.765 INFO DESKTOP-D3UDU4O - [ main] o.a.k.c.p.KafkaProducer : [Producer clientId=producer-1] Closing the Kafka producer with timeoutMillis = 30000 ms.
2023-01-12 15:55:20.770 INFO DESKTOP-D3UDU4O - [ main] o.a.c.c.StandardService : Stopping service [Tomcat]
2023-01-12 15:55:20.779 INFO DESKTOP-D3UDU4O - [ main] ConditionEvaluationReportLoggingListener :
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2023-01-12 15:55:20.789 ERROR DESKTOP-D3UDU4O - [ main] o.s.b.SpringApplication : Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSourceAwareService': Injection of autowired dependencies failed; nested exception is Can't construct a java object for tag:yaml.org,2002:com.alibaba.druid.filter.stat.StatFilter; exception=Class `com.alibaba.druid.filter.stat.StatFilter` is not accepted
in 'string', line 76, column 5:
- &id001 !!com.alibaba.druid.filte ...
^
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:380)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1411)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:592)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:845)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:877)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:549)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:141)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:744)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:391)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:312)
at org.springframework.boot.builder.SpringApplicationBuilder.run(SpringApplicationBuilder.java:140)
at com.hnmjm.vehicle.spring.SpringBoot.startWeb(SpringBoot.java:46)
at com.hnmjm.vehicle.midsrv.MiddleServer.main(MiddleServer.java:53)
Caused by: Can't construct a java object for tag:yaml.org,2002:com.alibaba.druid.filter.stat.StatFilter; exception=Class `com.alibaba.druid.filter.stat.StatFilter` is not accepted
in 'string', line 76, column 5:
- &id001 !!com.alibaba.druid.filte ...
^
at org.yaml.snakeyaml.constructor.Constructor$ConstructYamlObject.construct(Constructor.java:364)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:270)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:253)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequenceStep2(BaseConstructor.java:469)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequence(BaseConstructor.java:435)
at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlSeq.construct(SafeConstructor.java:577)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:270)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:253)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:581)
at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:213)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:557)
at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:600)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:270)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:253)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:581)
at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:213)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:557)
at org.yaml.snakeyaml.constructor.Constructor$ConstructMapping.construct(Constructor.java:193)
at org.yaml.snakeyaml.constructor.Constructor$ConstructYamlObject.construct(Constructor.java:358)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:270)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:253)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:207)
at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:191)
at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:477)
at org.yaml.snakeyaml.Yaml.loadAs(Yaml.java:457)
at org.apache.shardingsphere.infra.util.yaml.YamlEngine.unmarshal(YamlEngine.java:83)
at org.apache.shardingsphere.mode.metadata.persist.service.config.database.DataSourcePersistService.getDataSourceProperties(DataSourcePersistService.java:83)
at org.apache.shardingsphere.mode.metadata.persist.service.config.database.DataSourcePersistService.load(DataSourcePersistService.java:71)
at org.apache.shardingsphere.mode.metadata.persist.MetaDataPersistService.getEffectiveDataSources(MetaDataPersistService.java:115)
at org.apache.shardingsphere.mode.metadata.MetaDataContextsFactory.createEffectiveDatabaseConfiguration(MetaDataContextsFactory.java:104)
at org.apache.shardingsphere.mode.metadata.MetaDataContextsFactory.lambda$createEffectiveDatabaseConfigurations$1(MetaDataContextsFactory.java:99)
at java.util.stream.Collectors.lambda$toMap$58(Collectors.java:1321)
at java.util.stream.ReduceOps$3ReducingSink.accept(ReduceOps.java:169)
at java.util.Collections$2.tryAdvance(Collections.java:4719)
at java.util.Collections$2.forEachRemaining(Collections.java:4727)
at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:482)
at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:472)
at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708)
at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:499)
at org.apache.shardingsphere.mode.metadata.MetaDataContextsFactory.createEffectiveDatabaseConfigurations(MetaDataContextsFactory.java:98)
at org.apache.shardingsphere.mode.metadata.MetaDataContextsFactory.create(MetaDataContextsFactory.java:86)
at org.apache.shardingsphere.mode.metadata.MetaDataContextsFactory.create(MetaDataContextsFactory.java:68)
at org.apache.shardingsphere.mode.manager.standalone.StandaloneContextManagerBuilder.build(StandaloneContextManagerBuilder.java:54)
at org.apache.shardingsphere.driver.jdbc.core.datasource.ShardingSphereDataSource.createContextManager(ShardingSphereDataSource.java:81)
at org.apache.shardingsphere.driver.jdbc.core.datasource.ShardingSphereDataSource.<init>(ShardingSphereDataSource.java:66)
at org.apache.shardingsphere.driver.api.ShardingSphereDataSourceFactory.createDataSource(ShardingSphereDataSourceFactory.java:93)
at org.apache.shardingsphere.driver.api.ShardingSphereDataSourceFactory.createDataSource(ShardingSphereDataSourceFactory.java:77)
at org.apache.shardingsphere.driver.api.ShardingSphereDataSourceFactory.createDataSource(ShardingSphereDataSourceFactory.java:137)
at com.hnmjm.vehicle.db.DataSourceAwareService.setDataSourceInitAware(DataSourceAwareService.java:133)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredMethodElement.inject(AutowiredAnnotationBeanPostProcessor.java:708)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:90)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:374)
... 17 more
Caused by: java.lang.IllegalArgumentException: Class `com.alibaba.druid.filter.stat.StatFilter` is not accepted
at com.google.common.base.Preconditions.checkArgument(Preconditions.java:220)
at org.apache.shardingsphere.infra.util.yaml.constructor.ShardingSphereYamlConstructor.getClassForName(ShardingSphereYamlConstructor.java:62)
at org.yaml.snakeyaml.constructor.Constructor.getClassForNode(Constructor.java:683)
at org.yaml.snakeyaml.constructor.Constructor$ConstructYamlObject.getConstructor(Constructor.java:349)
at org.yaml.snakeyaml.constructor.Constructor$ConstructYamlObject.construct(Constructor.java:358)
... 73 more
"><pre lang="text" class="notranslate"><code class="notranslate">2023-01-12 15:55:20.059 INFO DESKTOP-D3UDU4O - [ main] c.a.d.p.DruidDataSource : {dataSource-1} inited
2023-01-12 15:55:20.062 INFO DESKTOP-D3UDU4O - [ main] c.h.v.d.DataSourceAwareService : 初始化基础数据源:DataSource-345723898 => {
CreateTime:"2023-01-12 15:55:17",
ActiveCount:0,
PoolingCount:5,
CreateCount:5,
DestroyCount:0,
CloseCount:0,
ConnectCount:0,
Connections:[
{ID:876420389, ConnectTime:"2023-01-12 15:55:18", UseCount:0, LastActiveTime:"2023-01-12 15:55:18"},
{ID:1982703147, ConnectTime:"2023-01-12 15:55:18", UseCount:0, LastActiveTime:"2023-01-12 15:55:18"},
{ID:15058406, ConnectTime:"2023-01-12 15:55:19", UseCount:0, LastActiveTime:"2023-01-12 15:55:19"},
{ID:1994143461, ConnectTime:"2023-01-12 15:55:19", UseCount:0, LastActiveTime:"2023-01-12 15:55:19"},
{ID:710199598, ConnectTime:"2023-01-12 15:55:19", UseCount:0, LastActiveTime:"2023-01-12 15:55:19"}
]
}
[
{
ID:876420389,
poolStatements:[
]
},
{
ID:1982703147,
poolStatements:[
]
},
{
ID:15058406,
poolStatements:[
]
},
{
ID:1994143461,
poolStatements:[
]
},
{
ID:710199598,
poolStatements:[
]
}
]
2023-01-12 15:55:20.190 INFO DESKTOP-D3UDU4O - [ main] c.z.h.HikariDataSource : HikariPool-1 - Starting...
2023-01-12 15:55:20.300 INFO DESKTOP-D3UDU4O - [ main] c.z.h.HikariDataSource : HikariPool-1 - Start completed.
2023-01-12 15:55:20.765 WARN DESKTOP-D3UDU4O - [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSourceAwareService': Injection of autowired dependencies failed; nested exception is Can't construct a java object for tag:yaml.org,2002:com.alibaba.druid.filter.stat.StatFilter; exception=Class `com.alibaba.druid.filter.stat.StatFilter` is not accepted
in 'string', line 76, column 5:
- &id001 !!com.alibaba.druid.filte ...
^
2023-01-12 15:55:20.765 INFO DESKTOP-D3UDU4O - [ main] o.a.k.c.p.KafkaProducer : [Producer clientId=producer-1] Closing the Kafka producer with timeoutMillis = 30000 ms.
2023-01-12 15:55:20.770 INFO DESKTOP-D3UDU4O - [ main] o.a.c.c.StandardService : Stopping service [Tomcat]
2023-01-12 15:55:20.779 INFO DESKTOP-D3UDU4O - [ main] ConditionEvaluationReportLoggingListener :
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2023-01-12 15:55:20.789 ERROR DESKTOP-D3UDU4O - [ main] o.s.b.SpringApplication : Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSourceAwareService': Injection of autowired dependencies failed; nested exception is Can't construct a java object for tag:yaml.org,2002:com.alibaba.druid.filter.stat.StatFilter; exception=Class `com.alibaba.druid.filter.stat.StatFilter` is not accepted
in 'string', line 76, column 5:
- &id001 !!com.alibaba.druid.filte ...
^
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:380)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1411)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:592)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:845)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:877)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:549)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:141)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:744)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:391)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:312)
at org.springframework.boot.builder.SpringApplicationBuilder.run(SpringApplicationBuilder.java:140)
at com.hnmjm.vehicle.spring.SpringBoot.startWeb(SpringBoot.java:46)
at com.hnmjm.vehicle.midsrv.MiddleServer.main(MiddleServer.java:53)
Caused by: Can't construct a java object for tag:yaml.org,2002:com.alibaba.druid.filter.stat.StatFilter; exception=Class `com.alibaba.druid.filter.stat.StatFilter` is not accepted
in 'string', line 76, column 5:
- &id001 !!com.alibaba.druid.filte ...
^
at org.yaml.snakeyaml.constructor.Constructor$ConstructYamlObject.construct(Constructor.java:364)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:270)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:253)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequenceStep2(BaseConstructor.java:469)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructSequence(BaseConstructor.java:435)
at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlSeq.construct(SafeConstructor.java:577)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:270)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:253)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:581)
at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:213)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:557)
at org.yaml.snakeyaml.constructor.SafeConstructor$ConstructYamlMap.construct(SafeConstructor.java:600)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:270)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:253)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping2ndStep(BaseConstructor.java:581)
at org.yaml.snakeyaml.constructor.SafeConstructor.constructMapping2ndStep(SafeConstructor.java:213)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructMapping(BaseConstructor.java:557)
at org.yaml.snakeyaml.constructor.Constructor$ConstructMapping.construct(Constructor.java:193)
at org.yaml.snakeyaml.constructor.Constructor$ConstructYamlObject.construct(Constructor.java:358)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructObjectNoCheck(BaseConstructor.java:270)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructObject(BaseConstructor.java:253)
at org.yaml.snakeyaml.constructor.BaseConstructor.constructDocument(BaseConstructor.java:207)
at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:191)
at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:477)
at org.yaml.snakeyaml.Yaml.loadAs(Yaml.java:457)
at org.apache.shardingsphere.infra.util.yaml.YamlEngine.unmarshal(YamlEngine.java:83)
at org.apache.shardingsphere.mode.metadata.persist.service.config.database.DataSourcePersistService.getDataSourceProperties(DataSourcePersistService.java:83)
at org.apache.shardingsphere.mode.metadata.persist.service.config.database.DataSourcePersistService.load(DataSourcePersistService.java:71)
at org.apache.shardingsphere.mode.metadata.persist.MetaDataPersistService.getEffectiveDataSources(MetaDataPersistService.java:115)
at org.apache.shardingsphere.mode.metadata.MetaDataContextsFactory.createEffectiveDatabaseConfiguration(MetaDataContextsFactory.java:104)
at org.apache.shardingsphere.mode.metadata.MetaDataContextsFactory.lambda$createEffectiveDatabaseConfigurations$1(MetaDataContextsFactory.java:99)
at java.util.stream.Collectors.lambda$toMap$58(Collectors.java:1321)
at java.util.stream.ReduceOps$3ReducingSink.accept(ReduceOps.java:169)
at java.util.Collections$2.tryAdvance(Collections.java:4719)
at java.util.Collections$2.forEachRemaining(Collections.java:4727)
at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:482)
at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:472)
at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:708)
at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:499)
at org.apache.shardingsphere.mode.metadata.MetaDataContextsFactory.createEffectiveDatabaseConfigurations(MetaDataContextsFactory.java:98)
at org.apache.shardingsphere.mode.metadata.MetaDataContextsFactory.create(MetaDataContextsFactory.java:86)
at org.apache.shardingsphere.mode.metadata.MetaDataContextsFactory.create(MetaDataContextsFactory.java:68)
at org.apache.shardingsphere.mode.manager.standalone.StandaloneContextManagerBuilder.build(StandaloneContextManagerBuilder.java:54)
at org.apache.shardingsphere.driver.jdbc.core.datasource.ShardingSphereDataSource.createContextManager(ShardingSphereDataSource.java:81)
at org.apache.shardingsphere.driver.jdbc.core.datasource.ShardingSphereDataSource.<init>(ShardingSphereDataSource.java:66)
at org.apache.shardingsphere.driver.api.ShardingSphereDataSourceFactory.createDataSource(ShardingSphereDataSourceFactory.java:93)
at org.apache.shardingsphere.driver.api.ShardingSphereDataSourceFactory.createDataSource(ShardingSphereDataSourceFactory.java:77)
at org.apache.shardingsphere.driver.api.ShardingSphereDataSourceFactory.createDataSource(ShardingSphereDataSourceFactory.java:137)
at com.hnmjm.vehicle.db.DataSourceAwareService.setDataSourceInitAware(DataSourceAwareService.java:133)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredMethodElement.inject(AutowiredAnnotationBeanPostProcessor.java:708)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:90)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:374)
... 17 more
Caused by: java.lang.IllegalArgumentException: Class `com.alibaba.druid.filter.stat.StatFilter` is not accepted
at com.google.common.base.Preconditions.checkArgument(Preconditions.java:220)
at org.apache.shardingsphere.infra.util.yaml.constructor.ShardingSphereYamlConstructor.getClassForName(ShardingSphereYamlConstructor.java:62)
at org.yaml.snakeyaml.constructor.Constructor.getClassForNode(Constructor.java:683)
at org.yaml.snakeyaml.constructor.Constructor$ConstructYamlObject.getConstructor(Constructor.java:349)
at org.yaml.snakeyaml.constructor.Constructor$ConstructYamlObject.construct(Constructor.java:358)
... 73 more
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" <!-- https://mvnrepository.com/artifact/org.apache.shardingsphere/shardingsphere-jdbc-core -->
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>shardingsphere-jdbc-core</artifactId>
<version>5.3.1</version>
<exclusions>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml -->
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.33</version>
</dependency>"><pre lang="text" class="notranslate"><code class="notranslate"> <!-- https://mvnrepository.com/artifact/org.apache.shardingsphere/shardingsphere-jdbc-core -->
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>shardingsphere-jdbc-core</artifactId>
<version>5.3.1</version>
<exclusions>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml -->
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.33</version>
</dependency>
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# ============= 数据源基础配置(这边配置所有数据源共享属性) =============
# 连接池初始化大小,最小,最大
default.initialSize=2
default.minIdle=1
default.maxActive=500
# 配置获取连接等待超时的时间
default.maxWait=60000
# 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
default.timeBetweenEvictionRunsMillis=3000
# 配置一个连接在池中最小生存的时间,单位是毫秒
default.minEvictableIdleTimeMillis=300000
default.validationQuery=SELECT 'x' FROM DUAL
default.testWhileIdle=true
default.testOnBorrow=false
default.testOnReturn=false
# 打开PSCache,并且指定每个连接上PSCache的大小
default.poolPreparedStatements=true
default.maxPoolPreparedStatementPerConnectionSize=20
# 配置监控统计拦截的filters
default.filters=stat
# 默认数据源
db.default=root
# ============= 具体数据源配置(若有需要,可覆盖基础配置属性) =============
# 数据源1
root1.driverClassName=${root-driver:@jdbc.driverClassName1@}
root1.url=${root-url:@jdbc.url1@}
root1.username=${root-username:@jdbc.username1@}
root1.password=${root-password:@jdbc.password1@}
root1.initialSize=5
root1.minIdle=2
root1.maxActive=60
# 数据源2
root2.driverClassName=${root-driver:@jdbc.driverClassName2@}
root2.url=${root-url:@jdbc.url2@}
root2.username=${root-username:@jdbc.username2@}
root2.password=${root-password:@jdbc.password2@}
root2.initialSize=5
root2.minIdle=2
root2.maxActive=60
# 数据源2
root3.driverClassName=${root-driver:@jdbc.driverClassName3@}
root3.url=${root-url:@jdbc.url3@}
root3.username=${root-username:@jdbc.username3@}
root3.password=${root-password:@jdbc.password3@}
root3.initialSize=5
root3.minIdle=2
root3.maxActive=60
# mysql数据源
[email protected]@
[email protected]@
[email protected]@
[email protected]@
mysql.initialSize=5
mysql.minIdle=2
mysql.maxActive=60"><pre lang="text" class="notranslate"><code class="notranslate"># ============= 数据源基础配置(这边配置所有数据源共享属性) =============
# 连接池初始化大小,最小,最大
default.initialSize=2
default.minIdle=1
default.maxActive=500
# 配置获取连接等待超时的时间
default.maxWait=60000
# 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
default.timeBetweenEvictionRunsMillis=3000
# 配置一个连接在池中最小生存的时间,单位是毫秒
default.minEvictableIdleTimeMillis=300000
default.validationQuery=SELECT 'x' FROM DUAL
default.testWhileIdle=true
default.testOnBorrow=false
default.testOnReturn=false
# 打开PSCache,并且指定每个连接上PSCache的大小
default.poolPreparedStatements=true
default.maxPoolPreparedStatementPerConnectionSize=20
# 配置监控统计拦截的filters
default.filters=stat
# 默认数据源
db.default=root
# ============= 具体数据源配置(若有需要,可覆盖基础配置属性) =============
# 数据源1
root1.driverClassName=${root-driver:@jdbc.driverClassName1@}
root1.url=${root-url:@jdbc.url1@}
root1.username=${root-username:@jdbc.username1@}
root1.password=${root-password:@jdbc.password1@}
root1.initialSize=5
root1.minIdle=2
root1.maxActive=60
# 数据源2
root2.driverClassName=${root-driver:@jdbc.driverClassName2@}
root2.url=${root-url:@jdbc.url2@}
root2.username=${root-username:@jdbc.username2@}
root2.password=${root-password:@jdbc.password2@}
root2.initialSize=5
root2.minIdle=2
root2.maxActive=60
# 数据源2
root3.driverClassName=${root-driver:@jdbc.driverClassName3@}
root3.url=${root-url:@jdbc.url3@}
root3.username=${root-username:@jdbc.username3@}
root3.password=${root-password:@jdbc.password3@}
root3.initialSize=5
root3.minIdle=2
root3.maxActive=60
# mysql数据源
[email protected]@
[email protected]@
[email protected]@
[email protected]@
mysql.initialSize=5
mysql.minIdle=2
mysql.maxActive=60
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" Map<String, DataSource> dataSourceMap = new HashMap<>(); //设置分库映射
for (String dataSourceName : dataSourceProperties.getDataSourceKeys()) {
final Properties properties = DataSourceProperties.getPropertiesWithNewPrefix(dataSourceName, "druid");
DruidDataSource dataSource = DataSourceProperties.getDataSourceTemplate();
dataSource.setDriverClassName(properties.getProperty("druid.driverClassName"));
dataSource.setUrl(properties.getProperty("druid.url"));
dataSource.setUsername(properties.getProperty("druid.username"));
dataSource.setPassword(properties.getProperty("druid.password"));
if(dataSourceName.contains("root")){
dataSourceMap.put(dataSourceName, dataSource);
}else{
dataSource.configFromPropety(properties);
dataSource.init();
dataSourceRegistry.registerDataSource(dataSourceName, dataSource);
LOG.info("初始化基础数据源:" + dataSource.getName() + " => " + dataSource);
}
}
if(dataSourceMap.size() > 0){
//配置分片策略
ShardingRuleConfiguration shardingRuleConfiguration = new ShardingRuleConfiguration();
List<String> BroadcastTables = new ArrayList<>();
BroadcastTables.add("MJM_REPORT_LAST_POSITION");
BroadcastTables.add("MJM_8702");
BroadcastTables.add("T_SERVER_DB");
BroadcastTables.add("T_GPS_RECORD_LOG_JOB");
BroadcastTables.add("MJM_PICTURE_MATCH");
shardingRuleConfiguration.getBroadcastTables().addAll(BroadcastTables);
List<String> TableRuleConfigs = new ArrayList<>();
TableRuleConfigs.add("MJM_GPS_RECORD");
TableRuleConfigs.add("MJM_JS_ATTACHMENT");
TableRuleConfigs.add("MJM_JS_BLIND_AREA");
TableRuleConfigs.add("MJM_JS_DRIVER_STATUS");
TableRuleConfigs.add("MJM_JS_DRIVING_ASS");
TableRuleConfigs.add("MJM_WARNING");
// TableRuleConfigs.add("WARNING_COLLECT_DAY");
for (String tableName:TableRuleConfigs) {
ShardingTableRuleConfiguration tableRuleConfiguration = new ShardingTableRuleConfiguration(tableName,"root$->{1..3}." + tableName);
tableRuleConfiguration.setDatabaseShardingStrategy(new StandardShardingStrategyConfiguration("ID","inline"));
tableRuleConfiguration.setTableShardingStrategy(new NoneShardingStrategyConfiguration());
shardingRuleConfiguration.getTables().add(tableRuleConfiguration);
Properties props = new Properties();
props.setProperty("algorithm-expression", "root${ID % 3 + 1}");
shardingRuleConfiguration.getShardingAlgorithms().put("inline", new AlgorithmConfiguration("INLINE", props));
}
// shardingRuleConfiguration.getBindingTableGroups().addAll(TableRuleConfigs);
DataSource shardingDataSource = ShardingSphereDataSourceFactory.createDataSource(dataSourceMap , Collections.singleton(shardingRuleConfiguration), getProperties());
ShardingSphereDataSource shardingDataSource1 = (ShardingSphereDataSource) shardingDataSource;
Connection connection = shardingDataSource1.getConnection();
ShardingSphereConnection connection1 = (ShardingSphereConnection)connection;
dataSourceRegistry.registerDataSource("root", shardingDataSource);
LOG.info("初始化ShardingSphere-JDBC基础数据源:" + shardingDataSource);
}"><pre lang="text" class="notranslate"><code class="notranslate"> Map<String, DataSource> dataSourceMap = new HashMap<>(); //设置分库映射
for (String dataSourceName : dataSourceProperties.getDataSourceKeys()) {
final Properties properties = DataSourceProperties.getPropertiesWithNewPrefix(dataSourceName, "druid");
DruidDataSource dataSource = DataSourceProperties.getDataSourceTemplate();
dataSource.setDriverClassName(properties.getProperty("druid.driverClassName"));
dataSource.setUrl(properties.getProperty("druid.url"));
dataSource.setUsername(properties.getProperty("druid.username"));
dataSource.setPassword(properties.getProperty("druid.password"));
if(dataSourceName.contains("root")){
dataSourceMap.put(dataSourceName, dataSource);
}else{
dataSource.configFromPropety(properties);
dataSource.init();
dataSourceRegistry.registerDataSource(dataSourceName, dataSource);
LOG.info("初始化基础数据源:" + dataSource.getName() + " => " + dataSource);
}
}
if(dataSourceMap.size() > 0){
//配置分片策略
ShardingRuleConfiguration shardingRuleConfiguration = new ShardingRuleConfiguration();
List<String> BroadcastTables = new ArrayList<>();
BroadcastTables.add("MJM_REPORT_LAST_POSITION");
BroadcastTables.add("MJM_8702");
BroadcastTables.add("T_SERVER_DB");
BroadcastTables.add("T_GPS_RECORD_LOG_JOB");
BroadcastTables.add("MJM_PICTURE_MATCH");
shardingRuleConfiguration.getBroadcastTables().addAll(BroadcastTables);
List<String> TableRuleConfigs = new ArrayList<>();
TableRuleConfigs.add("MJM_GPS_RECORD");
TableRuleConfigs.add("MJM_JS_ATTACHMENT");
TableRuleConfigs.add("MJM_JS_BLIND_AREA");
TableRuleConfigs.add("MJM_JS_DRIVER_STATUS");
TableRuleConfigs.add("MJM_JS_DRIVING_ASS");
TableRuleConfigs.add("MJM_WARNING");
// TableRuleConfigs.add("WARNING_COLLECT_DAY");
for (String tableName:TableRuleConfigs) {
ShardingTableRuleConfiguration tableRuleConfiguration = new ShardingTableRuleConfiguration(tableName,"root$->{1..3}." + tableName);
tableRuleConfiguration.setDatabaseShardingStrategy(new StandardShardingStrategyConfiguration("ID","inline"));
tableRuleConfiguration.setTableShardingStrategy(new NoneShardingStrategyConfiguration());
shardingRuleConfiguration.getTables().add(tableRuleConfiguration);
Properties props = new Properties();
props.setProperty("algorithm-expression", "root${ID % 3 + 1}");
shardingRuleConfiguration.getShardingAlgorithms().put("inline", new AlgorithmConfiguration("INLINE", props));
}
// shardingRuleConfiguration.getBindingTableGroups().addAll(TableRuleConfigs);
DataSource shardingDataSource = ShardingSphereDataSourceFactory.createDataSource(dataSourceMap , Collections.singleton(shardingRuleConfiguration), getProperties());
ShardingSphereDataSource shardingDataSource1 = (ShardingSphereDataSource) shardingDataSource;
Connection connection = shardingDataSource1.getConnection();
ShardingSphereConnection connection1 = (ShardingSphereConnection)connection;
dataSourceRegistry.registerDataSource("root", shardingDataSource);
LOG.info("初始化ShardingSphere-JDBC基础数据源:" + shardingDataSource);
}
</code></pre></div> | 0 |
<h3 dir="auto">System information</h3>
<ul dir="auto">
<li>Custom code, worked fine on 1.0</li>
<li>OS: Linux Ubuntu 16.04</li>
<li>installed binary via pip3</li>
<li>TensorFlow version v1.1.0-rc0-61-g1ec6ed5, 1.1.0</li>
<li>CUDA v8.0, cuDNN v5.1</li>
<li>GTX 1070, 8GB RAM</li>
<li>To reproduce: run tensorboard, try to filter runs in web interface, nothing happens</li>
</ul>
<h3 dir="auto">Problem description</h3>
<p dir="auto">Running tensorboard with v1.1 gives me the following warnings in the console (repeated four times) once the web interface is opened:</p>
<p dir="auto"><code class="notranslate">WARNING:tensorflow:path ../external/data/plugin/text/runs not found, sending 404</code></p>
<p dir="auto">At first I ignored it, but it turns out that when examining the runs in the web interface, the regex filter for the runs doesn't work at all. This exact command in the exact same folder with the exact same logs worked without issue with v1.0.</p> | <h3 dir="auto">System information</h3>
<p dir="auto">Docker image <code class="notranslate">tensorflow/tensorflow:nightly</code> (or 1.1.0rc2)</p>
<h3 dir="auto">Describe the problem</h3>
<p dir="auto">Start a tensorboard process</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="tensorboard --logdir /efs/log/atari"><pre class="notranslate"><code class="notranslate">tensorboard --logdir /efs/log/atari
</code></pre></div>
<p dir="auto">and try and filter. It does not have any effect.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/6200749/25130135/6499f98c-2441-11e7-8050-34cce130fef0.png"><img src="https://cloud.githubusercontent.com/assets/6200749/25130135/6499f98c-2441-11e7-8050-34cce130fef0.png" alt="image" style="max-width: 100%;"></a></p> | 1 |
<h3 dir="auto">System info</h3>
<ul dir="auto">
<li>Playwright Version: [v1.XX]</li>
<li>Operating System: [All, Windows 11, Ubuntu 20, macOS 13.2, etc.]</li>
<li>Browser: [Chromium]</li>
<li>Other info:</li>
</ul>
<h3 dir="auto">Source code</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I provided exact source code that allows reproducing the issue locally.</li>
</ul>
<p dir="auto"><strong>Config file</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// playwright.config.ts
import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'], },
},
]
});"><pre class="notranslate"><span class="pl-c">// playwright.config.ts</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">defineConfig</span><span class="pl-kos">,</span> <span class="pl-s1">devices</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-k">export</span> <span class="pl-k">default</span> <span class="pl-en">defineConfig</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">projects</span>: <span class="pl-kos">[</span>
<span class="pl-kos">{</span>
<span class="pl-c1">name</span>: <span class="pl-s">'chromium'</span><span class="pl-kos">,</span>
<span class="pl-c1">use</span>: <span class="pl-kos">{</span> ...<span class="pl-s1">devices</span><span class="pl-kos">[</span><span class="pl-s">'Desktop Chrome'</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>
<p dir="auto">No custom config but the bug is also present if you set, there is a full test below which reproduces it so no need to modify config unless you want to also try to setting the headers in the config once reproduced.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="use: {
extraHTTPHeaders: {
"x-my-custom-header": "test",
}
}"><pre class="notranslate"><code class="notranslate">use: {
extraHTTPHeaders: {
"x-my-custom-header": "test",
}
}
</code></pre></div>
<p dir="auto"><strong>Test file (self-contained)</strong></p>
<p dir="auto">This test uses test-cors to make a cors request to playwright.dev site for <code class="notranslate">https://playwright.dev/img/playwright-logo.svg</code> which has <code class="notranslate">access-control-allow-origin: *</code> set</p>
<p dir="auto">When setExtraHTTPHeaders is used test fails, when it is not, test passes.</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.describe("extraHTTPHeaders bug", () => {
test.only("cors errors", async ({ page }) => {
await page.setExtraHTTPHeaders({
"x-my-custom-header": "test",
});
page.on("request", async (r) => {
if (r.url().includes("playwright")) {
const headers = await r.allHeaders();
console.log(r.url(), "request headers", Object.keys(headers).length);
}
});
page.on("response", async (r) => {
if (r.url().includes("playwright")) {
const headers = await r.allHeaders();
console.log(r.url(), "response headers", Object.keys(headers).length);
}
});
page.on("requestfailed", async (request) => {
console.error("ERROR", request.url() + " " + request.failure().errorText);
});
await page.goto(
"https://www.test-cors.org/#?client_method=GET&client_credentials=false&server_url=https%3A%2F%2Fplaywright.dev&server_enable=true&server_status=200&server_credentials=false&server_tabs=remote"
);
await page.click("#btnSendRequest");
await expect(page.getByText("XHR status: 200")).toBeVisible();
});
});
"><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-s1">test</span><span class="pl-kos">.</span><span class="pl-en">describe</span><span class="pl-kos">(</span><span class="pl-s">"extraHTTPHeaders bug"</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-s1">test</span><span class="pl-kos">.</span><span class="pl-en">only</span><span class="pl-kos">(</span><span class="pl-s">"cors errors"</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">setExtraHTTPHeaders</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-s">"x-my-custom-header"</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-s1">page</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">"request"</span><span class="pl-kos">,</span> <span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-s1">r</span><span class="pl-kos">)</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">r</span><span class="pl-kos">.</span><span class="pl-en">url</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">includes</span><span class="pl-kos">(</span><span class="pl-s">"playwright"</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">headers</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">r</span><span class="pl-kos">.</span><span class="pl-en">allHeaders</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-s1">r</span><span class="pl-kos">.</span><span class="pl-en">url</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-s">"request headers"</span><span class="pl-kos">,</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">keys</span><span class="pl-kos">(</span><span class="pl-s1">headers</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">length</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">page</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">"response"</span><span class="pl-kos">,</span> <span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-s1">r</span><span class="pl-kos">)</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">r</span><span class="pl-kos">.</span><span class="pl-en">url</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">includes</span><span class="pl-kos">(</span><span class="pl-s">"playwright"</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">headers</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">r</span><span class="pl-kos">.</span><span class="pl-en">allHeaders</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-s1">r</span><span class="pl-kos">.</span><span class="pl-en">url</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-s">"response headers"</span><span class="pl-kos">,</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">keys</span><span class="pl-kos">(</span><span class="pl-s1">headers</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">length</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">page</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">"requestfailed"</span><span class="pl-kos">,</span> <span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-s1">request</span><span class="pl-kos">)</span> <span class="pl-c1">=></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">"ERROR"</span><span class="pl-kos">,</span> <span class="pl-s1">request</span><span class="pl-kos">.</span><span class="pl-en">url</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">+</span> <span class="pl-s">" "</span> <span class="pl-c1">+</span> <span class="pl-s1">request</span><span class="pl-kos">.</span><span class="pl-en">failure</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">errorText</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">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.test-cors.org/#?client_method=GET&client_credentials=false&server_url=https%3A%2F%2Fplaywright.dev&server_enable=true&server_status=200&server_credentials=false&server_tabs=remote"</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">click</span><span class="pl-kos">(</span><span class="pl-s">"#btnSendRequest"</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">getByText</span><span class="pl-kos">(</span><span class="pl-s">"XHR status: 200"</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><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">You can comment out extraHTTPHeaders and this test will pass.</p>
<p dir="auto"><strong>Steps</strong></p>
<ul dir="auto">
<li>Use setExtraHTTPHeaders to set a custom header, in my case it was for setting a WAF headers</li>
<li>Go to a site which relies on CORS. See requests fail.</li>
</ul>
<p dir="auto"><strong>Expected</strong></p>
<ul dir="auto">
<li>Extra header is added</li>
</ul>
<p dir="auto"><strong>Actual</strong></p>
<ul dir="auto">
<li>Extra header is added BUT it also removes other headers such as CORS headers.</li>
</ul>
<h2 dir="auto">Screenshots</h2>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9056958/226428906-521ef9f2-d56a-4910-901b-5f799fc21766.png"><img src="https://user-images.githubusercontent.com/9056958/226428906-521ef9f2-d56a-4910-901b-5f799fc21766.png" alt="image" style="max-width: 100%;"></a><br>
Sorry about terrible quality video, github wouldnt let me do more than 10 MB<br>
<a href="https://user-images.githubusercontent.com/9056958/226429554-af9b4f5c-0c0b-4a78-a7e3-5cdb209612b2.mov" rel="nofollow">https://user-images.githubusercontent.com/9056958/226429554-af9b4f5c-0c0b-4a78-a7e3-5cdb209612b2.mov</a></p> | <h3 dir="auto">System info</h3>
<ul dir="auto">
<li>Playwright Version: [v1.36.1]</li>
</ul>
<h3 dir="auto">Source code</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I provided exact source code that allows reproducing the issue locally.</li>
</ul>
<p dir="auto"><a href="https://playwright.dev/docs/test-parameterize#create-tests-via-a-csv-file" rel="nofollow">https://playwright.dev/docs/test-parameterize#create-tests-via-a-csv-file</a></p>
<p dir="auto">Example with reading CSV file and generating tests out of it works perfectly fine</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { test } from "@playwright/test";
import * as fs from "fs";
import { parse } from "csv-parse/sync";
const records = parse(fs.readFileSync("input.csv"), {
columns: true,
skip_empty_lines: true,
});
for (const record of records) {
test(`foo: ${record.test_case}`, async () => {
console.log(record.test_case);
});
}"><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-k">from</span> <span class="pl-s">"@playwright/test"</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-c1">*</span> <span class="pl-k">as</span> <span class="pl-s1">fs</span> <span class="pl-k">from</span> <span class="pl-s">"fs"</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">parse</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"csv-parse/sync"</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">records</span> <span class="pl-c1">=</span> <span class="pl-en">parse</span><span class="pl-kos">(</span><span class="pl-s1">fs</span><span class="pl-kos">.</span><span class="pl-en">readFileSync</span><span class="pl-kos">(</span><span class="pl-s">"input.csv"</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-kos">{</span>
<span class="pl-c1">columns</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">skip_empty_lines</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-k">for</span> <span class="pl-kos">(</span><span class="pl-k">const</span> <span class="pl-s1">record</span> <span class="pl-k">of</span> <span class="pl-s1">records</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-s">`foo: <span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">record</span><span class="pl-kos">.</span><span class="pl-c1">test_case</span><span class="pl-kos">}</span></span>`</span><span class="pl-kos">,</span> <span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></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">record</span><span class="pl-kos">.</span><span class="pl-c1">test_case</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">with a result</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Running 4 tests using 1 worker
✓ 1 debug.spec.ts:12:7 › foo: value 1 (9ms)
value 1
✓ 2 debug.spec.ts:12:7 › foo: value 2 (6ms)
value 2
✓ 3 debug.spec.ts:12:7 › foo: value 3 (4ms)
value 3
✓ 4 debug.spec.ts:12:7 › foo: value 4 (2ms)
value 4
4 passed (184ms)"><pre class="notranslate"><code class="notranslate">Running 4 tests using 1 worker
✓ 1 debug.spec.ts:12:7 › foo: value 1 (9ms)
value 1
✓ 2 debug.spec.ts:12:7 › foo: value 2 (6ms)
value 2
✓ 3 debug.spec.ts:12:7 › foo: value 3 (4ms)
value 3
✓ 4 debug.spec.ts:12:7 › foo: value 4 (2ms)
value 4
4 passed (184ms)
</code></pre></div>
<p dir="auto">But when I do the same with sync fetch</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { test } from "@playwright/test";
import _fetch from "sync-fetch";
const json = _fetch("https://random-data-api.com/api/v2/users?size=2&is_xml=true").json();
for (const data of json) {
test(`bar: ${data.uid}`, async () => {
console.log(data.uid);
});
}"><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-k">from</span> <span class="pl-s">"@playwright/test"</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-s1">_fetch</span> <span class="pl-k">from</span> <span class="pl-s">"sync-fetch"</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">json</span> <span class="pl-c1">=</span> <span class="pl-en">_fetch</span><span class="pl-kos">(</span><span class="pl-s">"https://random-data-api.com/api/v2/users?size=2&is_xml=true"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">json</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">for</span> <span class="pl-kos">(</span><span class="pl-k">const</span> <span class="pl-s1">data</span> <span class="pl-k">of</span> <span class="pl-s1">json</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-s">`bar: <span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">data</span><span class="pl-kos">.</span><span class="pl-c1">uid</span><span class="pl-kos">}</span></span>`</span><span class="pl-kos">,</span> <span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></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">data</span><span class="pl-kos">.</span><span class="pl-c1">uid</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">it comes to</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Running 2 tests using 1 worker
✘ 1 debug.spec.ts:6:7 › bar: 440fe159-3301-4985-ad8e-a9026bcd49af (0ms)
- 2 debug.spec.ts:6:7 › bar: 81921e9c-2ef9-4999-bf9d-d1ef0f83ee31
1) debug.spec.ts:6:7 › bar: 440fe159-3301-4985-ad8e-a9026bcd49af ─────────────────────────────────
Test(s) not found in the worker process. Make sure test titles do not change:
> debug.spec.ts > bar: 440fe159-3301-4985-ad8e-a9026bcd49af
> debug.spec.ts > bar: 81921e9c-2ef9-4999-bf9d-d1ef0f83ee31
1 failed
debug.spec.ts:6:7 › bar: 440fe159-3301-4985-ad8e-a9026bcd49af ──────────────────────────────────
1 skipped"><pre class="notranslate">Running 2 tests using 1 worker
✘ 1 debug.spec.ts:6:7 › bar: 440fe159-3301-4985-ad8e-a9026bcd49af (0ms)
- 2 debug.spec.ts:6:7 › bar: 81921e9c-2ef9-4999-bf9d-d1ef0f83ee31
1) debug.spec.ts:6:7 › bar: 440fe159-3301-4985-ad8e-a9026bcd49af ─────────────────────────────────
Test(s) not found <span class="pl-k">in</span> the worker process. Make sure <span class="pl-c1">test</span> titles <span class="pl-k">do</span> not change:
<span class="pl-k">></span> debug.spec.ts <span class="pl-k">></span> bar: 440fe159-3301-4985-ad8e-a9026bcd49af
<span class="pl-k">></span> debug.spec.ts <span class="pl-k">></span> bar: 81921e9c-2ef9-4999-bf9d-d1ef0f83ee31
1 failed
debug.spec.ts:6:7 › bar: 440fe159-3301-4985-ad8e-a9026bcd49af ──────────────────────────────────
1 skipped</pre></div>
<p dir="auto">What is wrong here? Why is the test title error thrown in this case and not in the previous one?</p> | 0 |
<p dir="auto">hello when i use<br>
alt + space for run command its works great but if focus in other windows (like libreoffice or chrome) to works space keyboard doesn't work its always load run search bar</p> | <h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: [run "ver" at a command prompt]
PowerToys version: 0.19
PowerToy module for which you are reporting the bug (if applicable): PT Run"><pre class="notranslate"><code class="notranslate">Windows build number: [run "ver" at a command prompt]
PowerToys version: 0.19
PowerToy module for which you are reporting the bug (if applicable): PT Run
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">Remap key from alt-space to win-space<br>
execute shortcut multiple times</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">don't have start menu false positive executions</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">Lots of start menu executions</p> | 1 |
<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" checked=""> 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" checked=""> 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" checked=""> 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" checked=""> 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" checked=""> 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" checked=""> 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" checked=""> 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><a href="https://groups.google.com/u/1/g/celery-users/c/OnviKXOZ99U/m/Fu7YIs4SAwAJ" rel="nofollow">Google groups discussion: "Celery only handle one message a time while cocurrency = 4 is set"</a></li>
<li><a href="https://groups.google.com/u/1/g/celery-users/c/VhiLNQl5xTw/m/4OIYKEeZBgAJ" rel="nofollow">Google groups discussion: "Concurrency with Consumers running in a Celery Worker"</a></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="software -> celery:5.0.5 (singularity) kombu:5.0.2 py:3.7.7
billiard:3.6.3.0 py-amqp:5.0.5
platform -> system:Linux arch:64bit
kernel version:4.19.121-linuxkit imp:CPython
loader -> celery.loaders.app.AppLoader
settings -> transport:amqp results:disabled
api_request_timeout: '********'
broker_connection_max_retries: None
broker_connection_timeout: 30
broker_heartbeat: None
broker_pool_limit: 1
broker_transport_options: {
'confirm_publish': True}
broker_url: 'amqp://admin:********@rabbitmq:5672//'
event_queue_expires: 60
os: <module 'os' from '/usr/local/lib/python3.7/os.py'>
result_backend: None
task_acks_late: True
task_acks_on_failure_or_timeout: False
task_compression: 'gzip'
task_create_missing_queues: True
task_ignore_result: True
task_reject_on_worker_lost: True
task_store_errors_even_if_ignored: False
task_time_limit: 30
task_track_started: True
worker_concurrency: 4
worker_enable_remote_control: False
worker_prefetch_multiplier: 10
deprecated_settings: None"><pre class="notranslate"><code class="notranslate">software -> celery:5.0.5 (singularity) kombu:5.0.2 py:3.7.7
billiard:3.6.3.0 py-amqp:5.0.5
platform -> system:Linux arch:64bit
kernel version:4.19.121-linuxkit imp:CPython
loader -> celery.loaders.app.AppLoader
settings -> transport:amqp results:disabled
api_request_timeout: '********'
broker_connection_max_retries: None
broker_connection_timeout: 30
broker_heartbeat: None
broker_pool_limit: 1
broker_transport_options: {
'confirm_publish': True}
broker_url: 'amqp://admin:********@rabbitmq:5672//'
event_queue_expires: 60
os: <module 'os' from '/usr/local/lib/python3.7/os.py'>
result_backend: None
task_acks_late: True
task_acks_on_failure_or_timeout: False
task_compression: 'gzip'
task_create_missing_queues: True
task_ignore_result: True
task_reject_on_worker_lost: True
task_store_errors_even_if_ignored: False
task_time_limit: 30
task_track_started: True
worker_concurrency: 4
worker_enable_remote_control: False
worker_prefetch_multiplier: 10
deprecated_settings: None
</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>: 3.7.x</li>
<li><strong>Minimal Celery Version</strong>: 5.x</li>
<li><strong>Minimal Kombu Version</strong>: 5.x</li>
<li><strong>Minimal Broker Version</strong>: RabbitMQ 3.7.x</li>
<li><strong>Minimal Result Backend Version</strong>: N/A</li>
<li><strong>Minimal OS and/or Kernel Version</strong>: Debian 9 (ie. the <code class="notranslate">python:3.7-stretch</code> docker image)</li>
<li><strong>Minimal Broker Client Version</strong>: Unknown</li>
<li><strong>Minimal Result Backend Client Version</strong>: N/A</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="affine==2.3.0
amqp==5.0.5
attrs==20.3.0
billiard==3.6.3.0
blinker==1.4
boto3==1.14.20
botocore==1.17.63
cached-property==1.5.1
cachetools==4.2.1
celery==5.0.5
certifi==2020.12.5
chardet==3.0.4
click==7.1.2
click-didyoumean==0.0.3
click-plugins==1.1.1
click-repl==0.1.6
cligj==0.7.1
cycler==0.10.0
ddtrace==0.31.0
decorator==4.4.2
docutils==0.15.2
fast-slic==0.4.0
Flask==1.0.2
Flask-Script==2.0.6
flatten-dict==0.3.0
gevent==21.1.2
google-api-core==1.25.1
google-auth==1.24.0
google-cloud-core==1.5.0
google-cloud-storage==1.20.0
google-resumable-media==0.4.1
googleapis-common-protos==1.52.0
greenlet==1.0.0
gunicorn==19.9.0
humanize==3.2.0
idna==2.8
imageio==2.9.0
importlib-metadata==3.4.0
itsdangerous==1.1.0
Jinja2==2.11.2
jmespath==0.10.0
kiwisolver==1.3.1
kombu==5.0.2
MarkupSafe==1.1.1
matplotlib==3.1.3
more-itertools==8.6.0
mysqlclient==1.4.4
networkx==2.5
numpy==1.17.0
opencv-python==4.1.1.26
packaging==20.8
pathlib2==2.3.5
piexif==1.1.3
Pillow==6.1.0
pluggy==0.13.1
prometheus-client==0.7.1
prompt-toolkit==3.0.14
protobuf==3.14.0
psutil==5.8.0
py==1.10.0
pyasn1==0.4.8
pyasn1-modules==0.2.8
PyJWT==2.0.1
pyparsing==2.4.7
pytest==5.4.1
pytest-flask==1.0.0
pytest-mock==1.10.4
pytest-runner==4.4
python-dateutil==2.8.1
python-magic==0.4.15
pytz==2020.5
PyWavelets==1.1.1
PyYAML==5.1.2
rasterio==1.1.6
requests==2.22.0
rsa==4.7
s3transfer==0.3.4
scikit-image==0.16.2
scipy==1.4.1
sentry-sdk==0.16.0
Shapely==1.6.4.post2
six==1.15.0
snuggs==1.4.7
SQLAlchemy==1.3.10
stringcase==1.2.0
structlog==19.1.0
timeout-decorator==0.5.0
tornado==6.1
typing-extensions==3.7.4.3
urllib3==1.25.11
vine==5.0.0
wcwidth==0.2.5
Werkzeug==1.0.1
zipp==3.4.0
zope.event==4.5.0
zope.interface==5.3.0
"><pre class="notranslate"><code class="notranslate">affine==2.3.0
amqp==5.0.5
attrs==20.3.0
billiard==3.6.3.0
blinker==1.4
boto3==1.14.20
botocore==1.17.63
cached-property==1.5.1
cachetools==4.2.1
celery==5.0.5
certifi==2020.12.5
chardet==3.0.4
click==7.1.2
click-didyoumean==0.0.3
click-plugins==1.1.1
click-repl==0.1.6
cligj==0.7.1
cycler==0.10.0
ddtrace==0.31.0
decorator==4.4.2
docutils==0.15.2
fast-slic==0.4.0
Flask==1.0.2
Flask-Script==2.0.6
flatten-dict==0.3.0
gevent==21.1.2
google-api-core==1.25.1
google-auth==1.24.0
google-cloud-core==1.5.0
google-cloud-storage==1.20.0
google-resumable-media==0.4.1
googleapis-common-protos==1.52.0
greenlet==1.0.0
gunicorn==19.9.0
humanize==3.2.0
idna==2.8
imageio==2.9.0
importlib-metadata==3.4.0
itsdangerous==1.1.0
Jinja2==2.11.2
jmespath==0.10.0
kiwisolver==1.3.1
kombu==5.0.2
MarkupSafe==1.1.1
matplotlib==3.1.3
more-itertools==8.6.0
mysqlclient==1.4.4
networkx==2.5
numpy==1.17.0
opencv-python==4.1.1.26
packaging==20.8
pathlib2==2.3.5
piexif==1.1.3
Pillow==6.1.0
pluggy==0.13.1
prometheus-client==0.7.1
prompt-toolkit==3.0.14
protobuf==3.14.0
psutil==5.8.0
py==1.10.0
pyasn1==0.4.8
pyasn1-modules==0.2.8
PyJWT==2.0.1
pyparsing==2.4.7
pytest==5.4.1
pytest-flask==1.0.0
pytest-mock==1.10.4
pytest-runner==4.4
python-dateutil==2.8.1
python-magic==0.4.15
pytz==2020.5
PyWavelets==1.1.1
PyYAML==5.1.2
rasterio==1.1.6
requests==2.22.0
rsa==4.7
s3transfer==0.3.4
scikit-image==0.16.2
scipy==1.4.1
sentry-sdk==0.16.0
Shapely==1.6.4.post2
six==1.15.0
snuggs==1.4.7
SQLAlchemy==1.3.10
stringcase==1.2.0
structlog==19.1.0
timeout-decorator==0.5.0
tornado==6.1
typing-extensions==3.7.4.3
urllib3==1.25.11
vine==5.0.0
wcwidth==0.2.5
Werkzeug==1.0.1
zipp==3.4.0
zope.event==4.5.0
zope.interface==5.3.0
</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><p dir="auto">Custom consumer example from <a href="https://docs.celeryproject.org/en/latest/userguide/extending.html" rel="nofollow">the docs</a>, modified to send many messages instead of a single one</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from celery import Celery
from celery import bootsteps
from kombu import Consumer, Exchange, Queue
my_queue = Queue('custom', Exchange('custom'), 'routing_key')
app = Celery(broker='amqp://')
class MyConsumerStep(bootsteps.ConsumerStep):
def get_consumers(self, channel):
return [Consumer(channel,
queues=[my_queue],
callbacks=[self.handle_message],
accept=['json'])]
def handle_message(self, body, message):
print('Received message: {0!r}'.format(body))
message.ack()
app.steps['consumer'].add(MyConsumerStep)
def send_me_a_message(who, producer=None):
with app.producer_or_acquire(producer) as producer:
producer.publish(
{'hello': who},
serializer='json',
exchange=my_queue.exchange,
routing_key='routing_key',
declare=[my_queue],
retry=True,
)
if __name__ == '__main__':
for i in range(1000):
send_me_a_message('world!')
"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">celery</span> <span class="pl-k">import</span> <span class="pl-v">Celery</span>
<span class="pl-k">from</span> <span class="pl-s1">celery</span> <span class="pl-k">import</span> <span class="pl-s1">bootsteps</span>
<span class="pl-k">from</span> <span class="pl-s1">kombu</span> <span class="pl-k">import</span> <span class="pl-v">Consumer</span>, <span class="pl-v">Exchange</span>, <span class="pl-v">Queue</span>
<span class="pl-s1">my_queue</span> <span class="pl-c1">=</span> <span class="pl-v">Queue</span>(<span class="pl-s">'custom'</span>, <span class="pl-v">Exchange</span>(<span class="pl-s">'custom'</span>), <span class="pl-s">'routing_key'</span>)
<span class="pl-s1">app</span> <span class="pl-c1">=</span> <span class="pl-v">Celery</span>(<span class="pl-s1">broker</span><span class="pl-c1">=</span><span class="pl-s">'amqp://'</span>)
<span class="pl-k">class</span> <span class="pl-v">MyConsumerStep</span>(<span class="pl-s1">bootsteps</span>.<span class="pl-v">ConsumerStep</span>):
<span class="pl-k">def</span> <span class="pl-en">get_consumers</span>(<span class="pl-s1">self</span>, <span class="pl-s1">channel</span>):
<span class="pl-k">return</span> [<span class="pl-v">Consumer</span>(<span class="pl-s1">channel</span>,
<span class="pl-s1">queues</span><span class="pl-c1">=</span>[<span class="pl-s1">my_queue</span>],
<span class="pl-s1">callbacks</span><span class="pl-c1">=</span>[<span class="pl-s1">self</span>.<span class="pl-s1">handle_message</span>],
<span class="pl-s1">accept</span><span class="pl-c1">=</span>[<span class="pl-s">'json'</span>])]
<span class="pl-k">def</span> <span class="pl-en">handle_message</span>(<span class="pl-s1">self</span>, <span class="pl-s1">body</span>, <span class="pl-s1">message</span>):
<span class="pl-en">print</span>(<span class="pl-s">'Received message: {0!r}'</span>.<span class="pl-en">format</span>(<span class="pl-s1">body</span>))
<span class="pl-s1">message</span>.<span class="pl-en">ack</span>()
<span class="pl-s1">app</span>.<span class="pl-s1">steps</span>[<span class="pl-s">'consumer'</span>].<span class="pl-en">add</span>(<span class="pl-v">MyConsumerStep</span>)
<span class="pl-k">def</span> <span class="pl-en">send_me_a_message</span>(<span class="pl-s1">who</span>, <span class="pl-s1">producer</span><span class="pl-c1">=</span><span class="pl-c1">None</span>):
<span class="pl-k">with</span> <span class="pl-s1">app</span>.<span class="pl-en">producer_or_acquire</span>(<span class="pl-s1">producer</span>) <span class="pl-k">as</span> <span class="pl-s1">producer</span>:
<span class="pl-s1">producer</span>.<span class="pl-en">publish</span>(
{<span class="pl-s">'hello'</span>: <span class="pl-s1">who</span>},
<span class="pl-s1">serializer</span><span class="pl-c1">=</span><span class="pl-s">'json'</span>,
<span class="pl-s1">exchange</span><span class="pl-c1">=</span><span class="pl-s1">my_queue</span>.<span class="pl-s1">exchange</span>,
<span class="pl-s1">routing_key</span><span class="pl-c1">=</span><span class="pl-s">'routing_key'</span>,
<span class="pl-s1">declare</span><span class="pl-c1">=</span>[<span class="pl-s1">my_queue</span>],
<span class="pl-s1">retry</span><span class="pl-c1">=</span><span class="pl-c1">True</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-k">for</span> <span class="pl-s1">i</span> <span class="pl-c1">in</span> <span class="pl-en">range</span>(<span class="pl-c1">1000</span>):
<span class="pl-en">send_me_a_message</span>(<span class="pl-s">'world!'</span>)</pre></div>
<p dir="auto">Worker process started via:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="celery -A app.messaging.celery worker -l INFO -E \
--without-heartbeat --without-gossip --without-mingle \
--concurrency=4
--pool=prefork"><pre class="notranslate"><code class="notranslate">celery -A app.messaging.celery worker -l INFO -E \
--without-heartbeat --without-gossip --without-mingle \
--concurrency=4
--pool=prefork
</code></pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Expected Behavior</h1>
<p dir="auto">With concurrency set to the default of 4 and the default <code class="notranslate">prefork</code> execution pool, I would expect that the worker process's children all start executing the custom consumer and do work instead of staying idle.</p>
<h1 dir="auto">Actual Behavior</h1>
<p dir="auto">Worker process parent does work, while children processes remain idle. See screenshot of <code class="notranslate">watch ps auxef</code> below, and note that the child processes are idle while the parent process shows CPU usage when 1000 messages are being processed.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/6099687/113313215-08e95500-92d9-11eb-9f33-3dfcbe03c364.png"><img width="1142" alt="Screen Shot 2021-03-31 at 9 20 41 AM" src="https://user-images.githubusercontent.com/6099687/113313215-08e95500-92d9-11eb-9f33-3dfcbe03c364.png" style="max-width: 100%;"></a></p> | <p dir="auto">Affects 3.0.23.</p>
<p dir="auto">The get_scheduler method is called as part of celery.apps.beat.Beat.startup_info (instead of accessing the beat.scheduler property). This instantiates a scheduler object (lazy=True).</p>
<p dir="auto">Later, in celery.beat.Service.start() the beat.scheduler property is accessed. Since this is the first call, the scheduler instance is created again (lazy=False).</p>
<p dir="auto">Is this working as designed?</p> | 0 |
<p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong></p>
<p dir="auto">feature</p>
<p dir="auto"><strong>What is the current behavior?</strong></p>
<p dir="auto">Specifying output file names is not very flexible.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
output: {
filename: '[name].js'
}
}"><pre class="notranslate"><code class="notranslate">{
output: {
filename: '[name].js'
}
}
</code></pre></div>
<p dir="auto"><strong>If this is a feature request, what is motivation or use case for changing the behavior?</strong></p>
<p dir="auto">The current way of specifying output filenames is very limiting. I'm in a situation where (for shitty legacy reasons), I need one of my entry points to always output <code class="notranslate">[name].js</code>, but for all other entry points I want to use <code class="notranslate">[name].min.js</code> in prod and <code class="notranslate">[name].js</code> in dev. I'm not aware of anyway to do this without specifying two webpack configs. It would be great if <code class="notranslate">output.filename</code> could accept either a function that is passed the bundle info (<code class="notranslate">{ hash, name, ... }</code>) and returns a filename, or a map of entry name to filename pattern.</p>
<h4 dir="auto">function</h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
output: {
filename: (bundle) => {
return `${bundle.name}-foo.js`;
}
}
}"><pre class="notranslate"><code class="notranslate">{
output: {
filename: (bundle) => {
return `${bundle.name}-foo.js`;
}
}
}
</code></pre></div>
<h4 dir="auto">map</h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
output: {
filename: {
entry1: '[name].js`,
entry2: '[name].min.js`,
entry3: '[name]-foo.min.js`
}
}"><pre class="notranslate"><code class="notranslate">{
output: {
filename: {
entry1: '[name].js`,
entry2: '[name].min.js`,
entry3: '[name]-foo.min.js`
}
}
</code></pre></div>
<p dir="auto">Adding something like this would also allow the use of kebab case names without having to quote your entry names, along with opening up many other opportunities.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
entry: {
'this-is-my-bundle-name': 'index.js', // meh
thisIsMyBundleName: 'index.js`, // nice
},
output: {
filename: (bundle) => {
return `${_.kebabCase(bundle.name)}.js`;
}
}
}"><pre class="notranslate"><code class="notranslate">{
entry: {
'this-is-my-bundle-name': 'index.js', // meh
thisIsMyBundleName: 'index.js`, // nice
},
output: {
filename: (bundle) => {
return `${_.kebabCase(bundle.name)}.js`;
}
}
}
</code></pre></div>
<p dir="auto">I'm happy to contribute if this idea is approved.</p> | <p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong></p>
<p dir="auto">feature</p>
<p dir="auto"><strong>What is the current behavior?</strong></p>
<p dir="auto">DllPlugin currently only works on <code class="notranslate">library</code> bundles, not entry bundles. That is, it is impossible for a DllPlugin bundle to execute code when it is imported via a script tag into the page, other than to expose its code as a global variable.</p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong></p>
<p dir="auto"><strong>What is the expected behavior?</strong></p>
<p dir="auto">DllPlugin should support also running an entrypoint module in addition to exposing the global library variable.</p>
<p dir="auto"><strong>If this is a feature request, what is motivation or use case for changing the behavior?</strong></p>
<p dir="auto">My project has a system architecture in which plugins (optional modules) to the system are dynamically enabled by virtue of having a javascript file for the plugin imported into the page. This behavior is non-negotiable in the project for a few reasons, including our testing/CI environment. So, we build one webpack target per plugin, in addition to the webpack target for the core system. Some of these plugins depend on one another at runtime, and we do not wish to duplicate code inside them since we know <em>a priori</em> that they will coexist at runtime and are imported in the correct topologically-sorted order. The DllPlugin solves this nicely, allowing us to declare that modules will be imported at runtime via the manifest lookup. However, plugins are not just libraries, they are bundles with an <code class="notranslate">entry</code> that needs to execute code. We could build two bundles per plugin, one for the library and one for the entrypoint, but that gets messy and has the drawback of being a breaking change for downstream users of the tool.</p>
<p dir="auto"><strong>Please mention other relevant information such as the browser version, Node.js version, webpack version and Operating System.</strong></p>
<p dir="auto">webpack version: 2.2</p> | 0 |
<p dir="auto">I'm getting a build error and a previously working build system.</p>
<p dir="auto">Built a version a week ago without problems and had been successfully built with same image for almost a year</p>
<p dir="auto">Built is made on Docker using python:2.7-alpine as docker image base</p>
<p dir="auto">If any additional information is helpful I'll provide it. Thank you!</p>
<p dir="auto">Dockerfile:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="FROM python:2.7-alpine
# Install app dependencies
RUN apk add --update make cmake gcc g++ gfortran &&\
ln -s /usr/include/locale.h /usr/include/xlocale.h && \
apk add --update python py-pip python-dev &&\
apk add --update linux-headers &&\
apk add --update postgresql-dev py-psutil
# Removed application env vars from here.
RUN mkdir -p $APP_HOME
WORKDIR $APP_HOME
COPY requirements* $APP_HOME/
RUN pip install numpy
RUN pip install pandas
RUN pip install -r requirements.txt -r requirements-dev.txt
COPY . $APP_HOME
EXPOSE $PORT
CMD ./run.sh"><pre class="notranslate"><code class="notranslate">FROM python:2.7-alpine
# Install app dependencies
RUN apk add --update make cmake gcc g++ gfortran &&\
ln -s /usr/include/locale.h /usr/include/xlocale.h && \
apk add --update python py-pip python-dev &&\
apk add --update linux-headers &&\
apk add --update postgresql-dev py-psutil
# Removed application env vars from here.
RUN mkdir -p $APP_HOME
WORKDIR $APP_HOME
COPY requirements* $APP_HOME/
RUN pip install numpy
RUN pip install pandas
RUN pip install -r requirements.txt -r requirements-dev.txt
COPY . $APP_HOME
EXPOSE $PORT
CMD ./run.sh
</code></pre></div>
<p dir="auto">Complete numpy build trace</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Collecting numpy
Downloading https://files.pythonhosted.org/packages/94/b8/09db804ddf3bb7b50767544ec8e559695b152cedd64830040a0f31d6aeda/numpy-1.14.4.zip (4.9MB)
Building wheels for collected packages: numpy
Running setup.py bdist_wheel for numpy: started
Running setup.py bdist_wheel for numpy: finished with status 'error'
Complete output from command /usr/local/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-pYwQAe/numpy/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d /tmp/pip-wheel-Y0cigA --python-tag cp27:
Running from numpy source directory.
blas_opt_info:
blas_mkl_info:
customize UnixCCompiler
libraries mkl_rt not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
blis_info:
customize UnixCCompiler
libraries blis not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
openblas_info:
customize UnixCCompiler
customize UnixCCompiler
libraries openblas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
atlas_3_10_blas_threads_info:
Setting PTATLAS=ATLAS
customize UnixCCompiler
libraries tatlas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
atlas_3_10_blas_info:
customize UnixCCompiler
libraries satlas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
atlas_blas_threads_info:
Setting PTATLAS=ATLAS
customize UnixCCompiler
libraries ptf77blas,ptcblas,atlas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
atlas_blas_info:
customize UnixCCompiler
libraries f77blas,cblas,atlas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
/tmp/pip-install-pYwQAe/numpy/numpy/distutils/system_info.py:624: UserWarning:
Atlas (http://math-atlas.sourceforge.net/) libraries not found.
Directories to search for the libraries can be specified in the
numpy/distutils/site.cfg file (section [atlas]) or by setting
the ATLAS environment variable.
self.calc_info()
blas_info:
customize UnixCCompiler
libraries blas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
/tmp/pip-install-pYwQAe/numpy/numpy/distutils/system_info.py:624: UserWarning:
Blas (http://www.netlib.org/blas/) libraries not found.
Directories to search for the libraries can be specified in the
numpy/distutils/site.cfg file (section [blas]) or by setting
the BLAS environment variable.
self.calc_info()
blas_src_info:
NOT AVAILABLE
/tmp/pip-install-pYwQAe/numpy/numpy/distutils/system_info.py:624: UserWarning:
Blas (http://www.netlib.org/blas/) sources not found.
Directories to search for the sources can be specified in the
numpy/distutils/site.cfg file (section [blas_src]) or by setting
the BLAS_SRC environment variable.
self.calc_info()
NOT AVAILABLE
/bin/sh: svnversion: not found
non-existing path in 'numpy/distutils': 'site.cfg'
/bin/sh: svnversion: not found
F2PY Version 2
lapack_opt_info:
lapack_mkl_info:
customize UnixCCompiler
libraries mkl_rt not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
openblas_lapack_info:
customize UnixCCompiler
customize UnixCCompiler
libraries openblas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
openblas_clapack_info:
customize UnixCCompiler
customize UnixCCompiler
libraries openblas,lapack not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
atlas_3_10_threads_info:
Setting PTATLAS=ATLAS
customize UnixCCompiler
libraries tatlas,tatlas not found in /usr/local/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/local/lib
customize UnixCCompiler
libraries tatlas,tatlas not found in /usr/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib
customize UnixCCompiler
libraries tatlas,tatlas not found in /usr/lib/
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib/
<class 'numpy.distutils.system_info.atlas_3_10_threads_info'>
NOT AVAILABLE
atlas_3_10_info:
customize UnixCCompiler
libraries satlas,satlas not found in /usr/local/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/local/lib
customize UnixCCompiler
libraries satlas,satlas not found in /usr/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib
customize UnixCCompiler
libraries satlas,satlas not found in /usr/lib/
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib/
<class 'numpy.distutils.system_info.atlas_3_10_info'>
NOT AVAILABLE
atlas_threads_info:
Setting PTATLAS=ATLAS
customize UnixCCompiler
libraries ptf77blas,ptcblas,atlas not found in /usr/local/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/local/lib
customize UnixCCompiler
libraries ptf77blas,ptcblas,atlas not found in /usr/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib
customize UnixCCompiler
libraries ptf77blas,ptcblas,atlas not found in /usr/lib/
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib/
<class 'numpy.distutils.system_info.atlas_threads_info'>
NOT AVAILABLE
atlas_info:
customize UnixCCompiler
libraries f77blas,cblas,atlas not found in /usr/local/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/local/lib
customize UnixCCompiler
libraries f77blas,cblas,atlas not found in /usr/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib
customize UnixCCompiler
libraries f77blas,cblas,atlas not found in /usr/lib/
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib/
<class 'numpy.distutils.system_info.atlas_info'>
NOT AVAILABLE
lapack_info:
customize UnixCCompiler
libraries lapack not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
/tmp/pip-install-pYwQAe/numpy/numpy/distutils/system_info.py:624: UserWarning:
Lapack (http://www.netlib.org/lapack/) libraries not found.
Directories to search for the libraries can be specified in the
numpy/distutils/site.cfg file (section [lapack]) or by setting
the LAPACK environment variable.
self.calc_info()
lapack_src_info:
NOT AVAILABLE
/tmp/pip-install-pYwQAe/numpy/numpy/distutils/system_info.py:624: UserWarning:
Lapack (http://www.netlib.org/lapack/) sources not found.
Directories to search for the sources can be specified in the
numpy/distutils/site.cfg file (section [lapack_src]) or by setting
the LAPACK_SRC environment variable.
self.calc_info()
NOT AVAILABLE
/usr/local/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'define_macros'
warnings.warn(msg)
running bdist_wheel
running build
running config_cc
unifing config_cc, config, build_clib, build_ext, build commands --compiler options
running config_fc
unifing config_fc, config, build_clib, build_ext, build commands --fcompiler options
running build_src
build_src
building py_modules sources
creating build
creating build/src.linux-x86_64-2.7
creating build/src.linux-x86_64-2.7/numpy
creating build/src.linux-x86_64-2.7/numpy/distutils
building library "npymath" sources
get_default_fcompiler: matching types: '['gnu95', 'intel', 'lahey', 'pg', 'absoft', 'nag', 'vast', 'compaq', 'intele', 'intelem', 'gnu', 'g95', 'pathf95', 'nagfor']'
customize Gnu95FCompiler
Found executable /usr/bin/gfortran
customize Gnu95FCompiler
customize Gnu95FCompiler using config
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'exp'
int exp (void);
^~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
creating build/src.linux-x86_64-2.7/numpy/core
creating build/src.linux-x86_64-2.7/numpy/core/src
creating build/src.linux-x86_64-2.7/numpy/core/src/npymath
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/npymath/npy_math_internal.h
adding 'build/src.linux-x86_64-2.7/numpy/core/src/npymath' to include_dirs.
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/npymath/ieee754.c
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/npymath/npy_math_complex.c
None - nothing done with h_files = ['build/src.linux-x86_64-2.7/numpy/core/src/npymath/npy_math_internal.h']
building library "npysort" sources
creating build/src.linux-x86_64-2.7/numpy/core/src/npysort
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/npysort/quicksort.c
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/npysort/mergesort.c
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/npysort/heapsort.c
creating build/src.linux-x86_64-2.7/numpy/core/src/private
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/private/npy_partition.h
adding 'build/src.linux-x86_64-2.7/numpy/core/src/private' to include_dirs.
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/npysort/selection.c
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/private/npy_binsearch.h
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/npysort/binsearch.c
None - nothing done with h_files = ['build/src.linux-x86_64-2.7/numpy/core/src/private/npy_partition.h', 'build/src.linux-x86_64-2.7/numpy/core/src/private/npy_binsearch.h']
building extension "numpy.core._dummy" sources
Generating build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:24: fatal error: sys/endian.h: No such file or directory
#include <sys/endian.h>
^
compilation terminated.
_configtest.c:1:24: fatal error: sys/endian.h: No such file or directory
#include <sys/endian.h>
^
compilation terminated.
failure.
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) >= 0)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) == 4)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) >= 0)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) == 8)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) >= 0)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) == 8)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) >= 0)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) == 16)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:7:12: error: 'SIZEOF_LONGDOUBLE' undeclared (first use in this function)
(void) SIZEOF_LONGDOUBLE;
^~~~~~~~~~~~~~~~~
_configtest.c:7:12: note: each undeclared identifier is reported only once for each function it appears in
_configtest.c: In function 'main':
_configtest.c:7:12: error: 'SIZEOF_LONGDOUBLE' undeclared (first use in this function)
(void) SIZEOF_LONGDOUBLE;
^~~~~~~~~~~~~~~~~
_configtest.c:7:12: note: each undeclared identifier is reported only once for each function it appears in
failure.
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) >= 0)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) == 16)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) >= 0)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) == 32)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:7:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) >= 0)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:7:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) == 8)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:7:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) >= 0)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:7:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) == 8)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:7:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) >= 0)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:7:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) == 8)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) >= 0)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) == 8)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'exp'
int exp (void);
^~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'asin'
int asin (void);
^~~~
_configtest.c:2:5: warning: conflicting types for built-in function 'cos'
int cos (void);
^~~
_configtest.c:3:5: warning: conflicting types for built-in function 'log'
int log (void);
^~~
_configtest.c:4:5: warning: conflicting types for built-in function 'fabs'
int fabs (void);
^~~~
_configtest.c:5:5: warning: conflicting types for built-in function 'tanh'
int tanh (void);
^~~~
_configtest.c:6:5: warning: conflicting types for built-in function 'atan'
int atan (void);
^~~~
_configtest.c:7:5: warning: conflicting types for built-in function 'acos'
int acos (void);
^~~~
_configtest.c:8:5: warning: conflicting types for built-in function 'floor'
int floor (void);
^~~~~
_configtest.c:9:5: warning: conflicting types for built-in function 'fmod'
int fmod (void);
^~~~
_configtest.c:10:5: warning: conflicting types for built-in function 'sqrt'
int sqrt (void);
^~~~
_configtest.c:11:5: warning: conflicting types for built-in function 'cosh'
int cosh (void);
^~~~
_configtest.c:12:5: warning: conflicting types for built-in function 'modf'
int modf (void);
^~~~
_configtest.c:13:5: warning: conflicting types for built-in function 'sinh'
int sinh (void);
^~~~
_configtest.c:14:5: warning: conflicting types for built-in function 'frexp'
int frexp (void);
^~~~~
_configtest.c:15:5: warning: conflicting types for built-in function 'exp'
int exp (void);
^~~
_configtest.c:16:5: warning: conflicting types for built-in function 'tan'
int tan (void);
^~~
_configtest.c:17:5: warning: conflicting types for built-in function 'ceil'
int ceil (void);
^~~~
_configtest.c:18:5: warning: conflicting types for built-in function 'log10'
int log10 (void);
^~~~~
_configtest.c:19:5: warning: conflicting types for built-in function 'sin'
int sin (void);
^~~
_configtest.c:20:5: warning: conflicting types for built-in function 'ldexp'
int ldexp (void);
^~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'log2'
int log2 (void);
^~~~
_configtest.c:2:5: warning: conflicting types for built-in function 'pow'
int pow (void);
^~~
_configtest.c:4:5: warning: conflicting types for built-in function 'exp2'
int exp2 (void);
^~~~
_configtest.c:5:5: warning: conflicting types for built-in function 'atan2'
int atan2 (void);
^~~~~
_configtest.c:7:5: warning: conflicting types for built-in function 'rint'
int rint (void);
^~~~
_configtest.c:11:5: warning: conflicting types for built-in function 'cbrt'
int cbrt (void);
^~~~
_configtest.c:12:5: warning: conflicting types for built-in function 'nextafter'
int nextafter (void);
^~~~~~~~~
_configtest.c:13:5: warning: conflicting types for built-in function 'trunc'
int trunc (void);
^~~~~
gcc _configtest.o -o _configtest
_configtest.o: In function `main':
/tmp/pip-install-pYwQAe/numpy/_configtest.c:42: undefined reference to `backtrace'
collect2: error: ld returned 1 exit status
_configtest.o: In function `main':
/tmp/pip-install-pYwQAe/numpy/_configtest.c:42: undefined reference to `backtrace'
collect2: error: ld returned 1 exit status
failure.
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'rint'
int rint (void);
^~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'trunc'
int trunc (void);
^~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'exp2'
int exp2 (void);
^~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'log2'
int log2 (void);
^~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'atan2'
int atan2 (void);
^~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'pow'
int pow (void);
^~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'nextafter'
int nextafter (void);
^~~~~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'cbrt'
int cbrt (void);
^~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
_configtest.o: In function `main':
/tmp/pip-install-pYwQAe/numpy/_configtest.c:6: undefined reference to `backtrace'
collect2: error: ld returned 1 exit status
_configtest.o: In function `main':
/tmp/pip-install-pYwQAe/numpy/_configtest.c:6: undefined reference to `backtrace'
collect2: error: ld returned 1 exit status
failure.
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:3: warning: statement with no effect [-Wunused-value]
__builtin_isnan(5.);
^~~~~~~~~~~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:3: warning: statement with no effect [-Wunused-value]
__builtin_isinf(5.);
^~~~~~~~~~~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:3: warning: statement with no effect [-Wunused-value]
__builtin_isfinite(5.);
^~~~~~~~~~~~~~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:3: warning: statement with no effect [-Wunused-value]
__builtin_bswap32(5u);
^~~~~~~~~~~~~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:3: warning: statement with no effect [-Wunused-value]
__builtin_bswap64(5u);
^~~~~~~~~~~~~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:3: warning: statement with no effect [-Wunused-value]
__builtin_expect(5, 0);
^~~~~~~~~~~~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:7:16: warning: unused variable 'r' [-Wunused-variable]
volatile int r = __builtin_cpu_supports("sse");
^
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:3:0: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas]
#pragma clang diagnostic error "-Wattributes"
_configtest.c:8:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
main()
^~~~
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:3:0: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas]
#pragma clang diagnostic error "-Wattributes"
_configtest.c:8:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
main()
^~~~
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:3:0: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas]
#pragma clang diagnostic error "-Wattributes"
_configtest.c:8:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
main()
^~~~
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:3:0: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas]
#pragma clang diagnostic error "-Wattributes"
_configtest.c:8:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
main()
^~~~
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:3:0: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas]
#pragma clang diagnostic error "-Wattributes"
_configtest.c:8:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
main()
^~~~
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:3:0: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas]
#pragma clang diagnostic error "-Wattributes"
_configtest.c:8:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
main()
^~~~
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:3:0: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas]
#pragma clang diagnostic error "-Wattributes"
_configtest.c:5:5: warning: function declaration isn't a prototype [-Wstrict-prototypes]
int __declspec(thread) foo;
^~~~~~~~~~
_configtest.c: In function '__declspec':
_configtest.c:5:24: error: expected declaration specifiers before 'foo'
int __declspec(thread) foo;
^~~
_configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token
{
^
_configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-Wimplicit-int]
int __declspec(thread) foo;
^~~~~~~~~~
_configtest.c:11:1: error: expected '{' at end of input
}
^
_configtest.c:11:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
_configtest.c:3:0: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas]
#pragma clang diagnostic error "-Wattributes"
_configtest.c:5:5: warning: function declaration isn't a prototype [-Wstrict-prototypes]
int __declspec(thread) foo;
^~~~~~~~~~
_configtest.c: In function '__declspec':
_configtest.c:5:24: error: expected declaration specifiers before 'foo'
int __declspec(thread) foo;
^~~
_configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token
{
^
_configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-Wimplicit-int]
int __declspec(thread) foo;
^~~~~~~~~~
_configtest.c:11:1: error: expected '{' at end of input
}
^
_configtest.c:11:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
failure.
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'cosf'
int cosf (void);
^~~~
_configtest.c:2:5: warning: conflicting types for built-in function 'coshf'
int coshf (void);
^~~~~
_configtest.c:3:5: warning: conflicting types for built-in function 'rintf'
int rintf (void);
^~~~~
_configtest.c:4:5: warning: conflicting types for built-in function 'fabsf'
int fabsf (void);
^~~~~
_configtest.c:5:5: warning: conflicting types for built-in function 'floorf'
int floorf (void);
^~~~~~
_configtest.c:6:5: warning: conflicting types for built-in function 'nextafterf'
int nextafterf (void);
^~~~~~~~~~
_configtest.c:7:5: warning: conflicting types for built-in function 'tanhf'
int tanhf (void);
^~~~~
_configtest.c:8:5: warning: conflicting types for built-in function 'log10f'
int log10f (void);
^~~~~~
_configtest.c:9:5: warning: conflicting types for built-in function 'logf'
int logf (void);
^~~~
_configtest.c:10:5: warning: conflicting types for built-in function 'sinhf'
int sinhf (void);
^~~~~
_configtest.c:11:5: warning: conflicting types for built-in function 'acosf'
int acosf (void);
^~~~~
_configtest.c:12:5: warning: conflicting types for built-in function 'sqrtf'
int sqrtf (void);
^~~~~
_configtest.c:13:5: warning: conflicting types for built-in function 'ldexpf'
int ldexpf (void);
^~~~~~
_configtest.c:14:5: warning: conflicting types for built-in function 'hypotf'
int hypotf (void);
^~~~~~
_configtest.c:15:5: warning: conflicting types for built-in function 'log2f'
int log2f (void);
^~~~~
_configtest.c:16:5: warning: conflicting types for built-in function 'exp2f'
int exp2f (void);
^~~~~
_configtest.c:17:5: warning: conflicting types for built-in function 'atanf'
int atanf (void);
^~~~~
_configtest.c:18:5: warning: conflicting types for built-in function 'fmodf'
int fmodf (void);
^~~~~
_configtest.c:19:5: warning: conflicting types for built-in function 'atan2f'
int atan2f (void);
^~~~~~
_configtest.c:20:5: warning: conflicting types for built-in function 'cbrtf'
int cbrtf (void);
^~~~~
_configtest.c:21:5: warning: conflicting types for built-in function 'modff'
int modff (void);
^~~~~
_configtest.c:22:5: warning: conflicting types for built-in function 'ceilf'
int ceilf (void);
^~~~~
_configtest.c:23:5: warning: conflicting types for built-in function 'log1pf'
int log1pf (void);
^~~~~~
_configtest.c:24:5: warning: conflicting types for built-in function 'asinf'
int asinf (void);
^~~~~
_configtest.c:25:5: warning: conflicting types for built-in function 'copysignf'
int copysignf (void);
^~~~~~~~~
_configtest.c:26:5: warning: conflicting types for built-in function 'acoshf'
int acoshf (void);
^~~~~~
_configtest.c:27:5: warning: conflicting types for built-in function 'sinf'
int sinf (void);
^~~~
_configtest.c:28:5: warning: conflicting types for built-in function 'tanf'
int tanf (void);
^~~~
_configtest.c:29:5: warning: conflicting types for built-in function 'atanhf'
int atanhf (void);
^~~~~~
_configtest.c:30:5: warning: conflicting types for built-in function 'truncf'
int truncf (void);
^~~~~~
_configtest.c:31:5: warning: conflicting types for built-in function 'asinhf'
int asinhf (void);
^~~~~~
_configtest.c:32:5: warning: conflicting types for built-in function 'frexpf'
int frexpf (void);
^~~~~~
_configtest.c:33:5: warning: conflicting types for built-in function 'powf'
int powf (void);
^~~~
_configtest.c:34:5: warning: conflicting types for built-in function 'expf'
int expf (void);
^~~~
_configtest.c:35:5: warning: conflicting types for built-in function 'expm1f'
int expm1f (void);
^~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'tanhl'
int tanhl (void);
^~~~~
_configtest.c:2:5: warning: conflicting types for built-in function 'log10l'
int log10l (void);
^~~~~~
_configtest.c:3:5: warning: conflicting types for built-in function 'nextafterl'
int nextafterl (void);
^~~~~~~~~~
_configtest.c:4:5: warning: conflicting types for built-in function 'coshl'
int coshl (void);
^~~~~
_configtest.c:5:5: warning: conflicting types for built-in function 'cosl'
int cosl (void);
^~~~
_configtest.c:6:5: warning: conflicting types for built-in function 'floorl'
int floorl (void);
^~~~~~
_configtest.c:7:5: warning: conflicting types for built-in function 'rintl'
int rintl (void);
^~~~~
_configtest.c:8:5: warning: conflicting types for built-in function 'fabsl'
int fabsl (void);
^~~~~
_configtest.c:9:5: warning: conflicting types for built-in function 'acosl'
int acosl (void);
^~~~~
_configtest.c:10:5: warning: conflicting types for built-in function 'ldexpl'
int ldexpl (void);
^~~~~~
_configtest.c:11:5: warning: conflicting types for built-in function 'sqrtl'
int sqrtl (void);
^~~~~
_configtest.c:12:5: warning: conflicting types for built-in function 'logl'
int logl (void);
^~~~
_configtest.c:13:5: warning: conflicting types for built-in function 'expm1l'
int expm1l (void);
^~~~~~
_configtest.c:14:5: warning: conflicting types for built-in function 'hypotl'
int hypotl (void);
^~~~~~
_configtest.c:15:5: warning: conflicting types for built-in function 'log2l'
int log2l (void);
^~~~~
_configtest.c:16:5: warning: conflicting types for built-in function 'copysignl'
int copysignl (void);
^~~~~~~~~
_configtest.c:17:5: warning: conflicting types for built-in function 'exp2l'
int exp2l (void);
^~~~~
_configtest.c:18:5: warning: conflicting types for built-in function 'atanl'
int atanl (void);
^~~~~
_configtest.c:19:5: warning: conflicting types for built-in function 'frexpl'
int frexpl (void);
^~~~~~
_configtest.c:20:5: warning: conflicting types for built-in function 'atan2l'
int atan2l (void);
^~~~~~
_configtest.c:21:5: warning: conflicting types for built-in function 'sinhl'
int sinhl (void);
^~~~~
_configtest.c:22:5: warning: conflicting types for built-in function 'fmodl'
int fmodl (void);
^~~~~
_configtest.c:23:5: warning: conflicting types for built-in function 'log1pl'
int log1pl (void);
^~~~~~
_configtest.c:24:5: warning: conflicting types for built-in function 'asinl'
int asinl (void);
^~~~~
_configtest.c:25:5: warning: conflicting types for built-in function 'ceill'
int ceill (void);
^~~~~
_configtest.c:26:5: warning: conflicting types for built-in function 'sinl'
int sinl (void);
^~~~
_configtest.c:27:5: warning: conflicting types for built-in function 'cbrtl'
int cbrtl (void);
^~~~~
_configtest.c:28:5: warning: conflicting types for built-in function 'acoshl'
int acoshl (void);
^~~~~~
_configtest.c:29:5: warning: conflicting types for built-in function 'atanhl'
int atanhl (void);
^~~~~~
_configtest.c:30:5: warning: conflicting types for built-in function 'tanl'
int tanl (void);
^~~~
_configtest.c:31:5: warning: conflicting types for built-in function 'truncl'
int truncl (void);
^~~~~~
_configtest.c:32:5: warning: conflicting types for built-in function 'powl'
int powl (void);
^~~~
_configtest.c:33:5: warning: conflicting types for built-in function 'expl'
int expl (void);
^~~~
_configtest.c:34:5: warning: conflicting types for built-in function 'modfl'
int modfl (void);
^~~~~
_configtest.c:35:5: warning: conflicting types for built-in function 'asinhl'
int asinhl (void);
^~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:8:12: error: 'HAVE_DECL_SIGNBIT' undeclared (first use in this function)
(void) HAVE_DECL_SIGNBIT;
^~~~~~~~~~~~~~~~~
_configtest.c:8:12: note: each undeclared identifier is reported only once for each function it appears in
_configtest.c: In function 'main':
_configtest.c:8:12: error: 'HAVE_DECL_SIGNBIT' undeclared (first use in this function)
(void) HAVE_DECL_SIGNBIT;
^~~~~~~~~~~~~~~~~
_configtest.c:8:12: note: each undeclared identifier is reported only once for each function it appears in
failure.
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'clog'
int clog (void);
^~~~
_configtest.c:2:5: warning: conflicting types for built-in function 'ctan'
int ctan (void);
^~~~
_configtest.c:3:5: warning: conflicting types for built-in function 'casinh'
int casinh (void);
^~~~~~
_configtest.c:4:5: warning: conflicting types for built-in function 'cacosh'
int cacosh (void);
^~~~~~
_configtest.c:5:5: warning: conflicting types for built-in function 'cabs'
int cabs (void);
^~~~
_configtest.c:6:5: warning: conflicting types for built-in function 'conj'
int conj (void);
^~~~
_configtest.c:7:5: warning: conflicting types for built-in function 'csqrt'
int csqrt (void);
^~~~~
_configtest.c:8:5: warning: conflicting types for built-in function 'creal'
int creal (void);
^~~~~
_configtest.c:9:5: warning: conflicting types for built-in function 'cproj'
int cproj (void);
^~~~~
_configtest.c:10:5: warning: conflicting types for built-in function 'cpow'
int cpow (void);
^~~~
_configtest.c:11:5: warning: conflicting types for built-in function 'csinh'
int csinh (void);
^~~~~
_configtest.c:12:5: warning: conflicting types for built-in function 'catan'
int catan (void);
^~~~~
_configtest.c:13:5: warning: conflicting types for built-in function 'ctanh'
int ctanh (void);
^~~~~
_configtest.c:14:5: warning: conflicting types for built-in function 'ccosh'
int ccosh (void);
^~~~~
_configtest.c:15:5: warning: conflicting types for built-in function 'cimag'
int cimag (void);
^~~~~
_configtest.c:16:5: warning: conflicting types for built-in function 'casin'
int casin (void);
^~~~~
_configtest.c:17:5: warning: conflicting types for built-in function 'carg'
int carg (void);
^~~~
_configtest.c:18:5: warning: conflicting types for built-in function 'csin'
int csin (void);
^~~~
_configtest.c:19:5: warning: conflicting types for built-in function 'cexp'
int cexp (void);
^~~~
_configtest.c:20:5: warning: conflicting types for built-in function 'ccos'
int ccos (void);
^~~~
_configtest.c:21:5: warning: conflicting types for built-in function 'cacos'
int cacos (void);
^~~~~
_configtest.c:22:5: warning: conflicting types for built-in function 'catanh'
int catanh (void);
^~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'ctanhf'
int ctanhf (void);
^~~~~~
_configtest.c:2:5: warning: conflicting types for built-in function 'csinhf'
int csinhf (void);
^~~~~~
_configtest.c:3:5: warning: conflicting types for built-in function 'cprojf'
int cprojf (void);
^~~~~~
_configtest.c:4:5: warning: conflicting types for built-in function 'cacoshf'
int cacoshf (void);
^~~~~~~
_configtest.c:5:5: warning: conflicting types for built-in function 'cacosf'
int cacosf (void);
^~~~~~
_configtest.c:6:5: warning: conflicting types for built-in function 'cargf'
int cargf (void);
^~~~~
_configtest.c:7:5: warning: conflicting types for built-in function 'cpowf'
int cpowf (void);
^~~~~
_configtest.c:8:5: warning: conflicting types for built-in function 'csinf'
int csinf (void);
^~~~~
_configtest.c:9:5: warning: conflicting types for built-in function 'clogf'
int clogf (void);
^~~~~
_configtest.c:10:5: warning: conflicting types for built-in function 'ccoshf'
int ccoshf (void);
^~~~~~
_configtest.c:11:5: warning: conflicting types for built-in function 'conjf'
int conjf (void);
^~~~~
_configtest.c:12:5: warning: conflicting types for built-in function 'casinhf'
int casinhf (void);
^~~~~~~
_configtest.c:13:5: warning: conflicting types for built-in function 'ccosf'
int ccosf (void);
^~~~~
_configtest.c:14:5: warning: conflicting types for built-in function 'ctanf'
int ctanf (void);
^~~~~
_configtest.c:15:5: warning: conflicting types for built-in function 'cexpf'
int cexpf (void);
^~~~~
_configtest.c:16:5: warning: conflicting types for built-in function 'cimagf'
int cimagf (void);
^~~~~~
_configtest.c:17:5: warning: conflicting types for built-in function 'catanhf'
int catanhf (void);
^~~~~~~
_configtest.c:18:5: warning: conflicting types for built-in function 'casinf'
int casinf (void);
^~~~~~
_configtest.c:19:5: warning: conflicting types for built-in function 'catanf'
int catanf (void);
^~~~~~
_configtest.c:20:5: warning: conflicting types for built-in function 'csqrtf'
int csqrtf (void);
^~~~~~
_configtest.c:21:5: warning: conflicting types for built-in function 'crealf'
int crealf (void);
^~~~~~
_configtest.c:22:5: warning: conflicting types for built-in function 'cabsf'
int cabsf (void);
^~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'csinhl'
int csinhl (void);
^~~~~~
_configtest.c:2:5: warning: conflicting types for built-in function 'ctanhl'
int ctanhl (void);
^~~~~~
_configtest.c:3:5: warning: conflicting types for built-in function 'cacosl'
int cacosl (void);
^~~~~~
_configtest.c:4:5: warning: conflicting types for built-in function 'cacoshl'
int cacoshl (void);
^~~~~~~
_configtest.c:5:5: warning: conflicting types for built-in function 'cprojl'
int cprojl (void);
^~~~~~
_configtest.c:6:5: warning: conflicting types for built-in function 'cargl'
int cargl (void);
^~~~~
_configtest.c:7:5: warning: conflicting types for built-in function 'ccoshl'
int ccoshl (void);
^~~~~~
_configtest.c:8:5: warning: conflicting types for built-in function 'conjl'
int conjl (void);
^~~~~
_configtest.c:9:5: warning: conflicting types for built-in function 'csinl'
int csinl (void);
^~~~~
_configtest.c:10:5: warning: conflicting types for built-in function 'clogl'
int clogl (void);
^~~~~
_configtest.c:11:5: warning: conflicting types for built-in function 'cexpl'
int cexpl (void);
^~~~~
_configtest.c:12:5: warning: conflicting types for built-in function 'ccosl'
int ccosl (void);
^~~~~
_configtest.c:13:5: warning: conflicting types for built-in function 'ctanl'
int ctanl (void);
^~~~~
_configtest.c:14:5: warning: conflicting types for built-in function 'cpowl'
int cpowl (void);
^~~~~
_configtest.c:15:5: warning: conflicting types for built-in function 'casinhl'
int casinhl (void);
^~~~~~~
_configtest.c:16:5: warning: conflicting types for built-in function 'csqrtl'
int csqrtl (void);
^~~~~~
_configtest.c:17:5: warning: conflicting types for built-in function 'casinl'
int casinl (void);
^~~~~~
_configtest.c:18:5: warning: conflicting types for built-in function 'catanl'
int catanl (void);
^~~~~~
_configtest.c:19:5: warning: conflicting types for built-in function 'catanhl'
int catanhl (void);
^~~~~~~
_configtest.c:20:5: warning: conflicting types for built-in function 'creall'
int creall (void);
^~~~~~
_configtest.c:21:5: warning: conflicting types for built-in function 'cabsl'
int cabsl (void);
^~~~~
_configtest.c:22:5: warning: conflicting types for built-in function 'cimagl'
int cimagl (void);
^~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:2:12: warning: 'static_func' defined but not used [-Wunused-function]
static int static_func (char * restrict a)
^~~~~~~~~~~
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
removing: _configtest.c _configtest.o
File: build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h
#define HAVE_ENDIAN_H 1
#define SIZEOF_PY_INTPTR_T 8
#define SIZEOF_OFF_T 8
#define SIZEOF_PY_LONG_LONG 8
#define MATHLIB
#define HAVE_SIN 1
#define HAVE_COS 1
#define HAVE_TAN 1
#define HAVE_SINH 1
#define HAVE_COSH 1
#define HAVE_TANH 1
#define HAVE_FABS 1
#define HAVE_FLOOR 1
#define HAVE_CEIL 1
#define HAVE_SQRT 1
#define HAVE_LOG10 1
#define HAVE_LOG 1
#define HAVE_EXP 1
#define HAVE_ASIN 1
#define HAVE_ACOS 1
#define HAVE_ATAN 1
#define HAVE_FMOD 1
#define HAVE_MODF 1
#define HAVE_FREXP 1
#define HAVE_LDEXP 1
#define HAVE_RINT 1
#define HAVE_TRUNC 1
#define HAVE_EXP2 1
#define HAVE_LOG2 1
#define HAVE_ATAN2 1
#define HAVE_POW 1
#define HAVE_NEXTAFTER 1
#define HAVE_STRTOLL 1
#define HAVE_STRTOULL 1
#define HAVE_CBRT 1
#define HAVE_STRTOLD_L 1
#define HAVE_FALLOCATE 1
#define HAVE_XMMINTRIN_H 1
#define HAVE_EMMINTRIN_H 1
#define HAVE_FEATURES_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_DLFCN_H 1
#define HAVE___BUILTIN_ISNAN 1
#define HAVE___BUILTIN_ISINF 1
#define HAVE___BUILTIN_ISFINITE 1
#define HAVE___BUILTIN_BSWAP32 1
#define HAVE___BUILTIN_BSWAP64 1
#define HAVE___BUILTIN_EXPECT 1
#define HAVE___BUILTIN_MUL_OVERFLOW 1
#define HAVE___BUILTIN_CPU_SUPPORTS 1
#define HAVE__M_FROM_INT64 1
#define HAVE__MM_LOAD_PS 1
#define HAVE__MM_PREFETCH 1
#define HAVE__MM_LOAD_PD 1
#define HAVE___BUILTIN_PREFETCH 1
#define HAVE_LINK_AVX 1
#define HAVE_LINK_AVX2 1
#define HAVE_ATTRIBUTE_OPTIMIZE_UNROLL_LOOPS 1
#define HAVE_ATTRIBUTE_OPTIMIZE_OPT_3 1
#define HAVE_ATTRIBUTE_NONNULL 1
#define HAVE_ATTRIBUTE_TARGET_AVX 1
#define HAVE_ATTRIBUTE_TARGET_AVX2 1
#define HAVE___THREAD 1
#define HAVE_SINF 1
#define HAVE_COSF 1
#define HAVE_TANF 1
#define HAVE_SINHF 1
#define HAVE_COSHF 1
#define HAVE_TANHF 1
#define HAVE_FABSF 1
#define HAVE_FLOORF 1
#define HAVE_CEILF 1
#define HAVE_RINTF 1
#define HAVE_TRUNCF 1
#define HAVE_SQRTF 1
#define HAVE_LOG10F 1
#define HAVE_LOGF 1
#define HAVE_LOG1PF 1
#define HAVE_EXPF 1
#define HAVE_EXPM1F 1
#define HAVE_ASINF 1
#define HAVE_ACOSF 1
#define HAVE_ATANF 1
#define HAVE_ASINHF 1
#define HAVE_ACOSHF 1
#define HAVE_ATANHF 1
#define HAVE_HYPOTF 1
#define HAVE_ATAN2F 1
#define HAVE_POWF 1
#define HAVE_FMODF 1
#define HAVE_MODFF 1
#define HAVE_FREXPF 1
#define HAVE_LDEXPF 1
#define HAVE_EXP2F 1
#define HAVE_LOG2F 1
#define HAVE_COPYSIGNF 1
#define HAVE_NEXTAFTERF 1
#define HAVE_CBRTF 1
#define HAVE_SINL 1
#define HAVE_COSL 1
#define HAVE_TANL 1
#define HAVE_SINHL 1
#define HAVE_COSHL 1
#define HAVE_TANHL 1
#define HAVE_FABSL 1
#define HAVE_FLOORL 1
#define HAVE_CEILL 1
#define HAVE_RINTL 1
#define HAVE_TRUNCL 1
#define HAVE_SQRTL 1
#define HAVE_LOG10L 1
#define HAVE_LOGL 1
#define HAVE_LOG1PL 1
#define HAVE_EXPL 1
#define HAVE_EXPM1L 1
#define HAVE_ASINL 1
#define HAVE_ACOSL 1
#define HAVE_ATANL 1
#define HAVE_ASINHL 1
#define HAVE_ACOSHL 1
#define HAVE_ATANHL 1
#define HAVE_HYPOTL 1
#define HAVE_ATAN2L 1
#define HAVE_POWL 1
#define HAVE_FMODL 1
#define HAVE_MODFL 1
#define HAVE_FREXPL 1
#define HAVE_LDEXPL 1
#define HAVE_EXP2L 1
#define HAVE_LOG2L 1
#define HAVE_COPYSIGNL 1
#define HAVE_NEXTAFTERL 1
#define HAVE_CBRTL 1
#define HAVE_DECL_SIGNBIT
#define HAVE_COMPLEX_H 1
#define HAVE_CABS 1
#define HAVE_CACOS 1
#define HAVE_CACOSH 1
#define HAVE_CARG 1
#define HAVE_CASIN 1
#define HAVE_CASINH 1
#define HAVE_CATAN 1
#define HAVE_CATANH 1
#define HAVE_CCOS 1
#define HAVE_CCOSH 1
#define HAVE_CEXP 1
#define HAVE_CIMAG 1
#define HAVE_CLOG 1
#define HAVE_CONJ 1
#define HAVE_CPOW 1
#define HAVE_CPROJ 1
#define HAVE_CREAL 1
#define HAVE_CSIN 1
#define HAVE_CSINH 1
#define HAVE_CSQRT 1
#define HAVE_CTAN 1
#define HAVE_CTANH 1
#define HAVE_CABSF 1
#define HAVE_CACOSF 1
#define HAVE_CACOSHF 1
#define HAVE_CARGF 1
#define HAVE_CASINF 1
#define HAVE_CASINHF 1
#define HAVE_CATANF 1
#define HAVE_CATANHF 1
#define HAVE_CCOSF 1
#define HAVE_CCOSHF 1
#define HAVE_CEXPF 1
#define HAVE_CIMAGF 1
#define HAVE_CLOGF 1
#define HAVE_CONJF 1
#define HAVE_CPOWF 1
#define HAVE_CPROJF 1
#define HAVE_CREALF 1
#define HAVE_CSINF 1
#define HAVE_CSINHF 1
#define HAVE_CSQRTF 1
#define HAVE_CTANF 1
#define HAVE_CTANHF 1
#define HAVE_CABSL 1
#define HAVE_CACOSL 1
#define HAVE_CACOSHL 1
#define HAVE_CARGL 1
#define HAVE_CASINL 1
#define HAVE_CASINHL 1
#define HAVE_CATANL 1
#define HAVE_CATANHL 1
#define HAVE_CCOSL 1
#define HAVE_CCOSHL 1
#define HAVE_CEXPL 1
#define HAVE_CIMAGL 1
#define HAVE_CLOGL 1
#define HAVE_CONJL 1
#define HAVE_CPOWL 1
#define HAVE_CPROJL 1
#define HAVE_CREALL 1
#define HAVE_CSINL 1
#define HAVE_CSINHL 1
#define HAVE_CSQRTL 1
#define HAVE_CTANL 1
#define HAVE_CTANHL 1
#define NPY_RESTRICT restrict
#define NPY_RELAXED_STRIDES_CHECKING 1
#define HAVE_LDOUBLE_INTEL_EXTENDED_16_BYTES_LE 1
#ifndef __cplusplus
/* #undef inline */
#endif
#ifndef _NPY_NPY_CONFIG_H_
#error config.h should never be included directly, include npy_config.h instead
#endif
EOF
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h' to sources.
Generating build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'exp'
int exp (void);
^~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:3:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
main()
^~~~
success!
removing: _configtest.c _configtest.o
File: build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h
#define NPY_HAVE_ENDIAN_H 1
#define NPY_SIZEOF_SHORT SIZEOF_SHORT
#define NPY_SIZEOF_INT SIZEOF_INT
#define NPY_SIZEOF_LONG SIZEOF_LONG
#define NPY_SIZEOF_FLOAT 4
#define NPY_SIZEOF_COMPLEX_FLOAT 8
#define NPY_SIZEOF_DOUBLE 8
#define NPY_SIZEOF_COMPLEX_DOUBLE 16
#define NPY_SIZEOF_LONGDOUBLE 16
#define NPY_SIZEOF_COMPLEX_LONGDOUBLE 32
#define NPY_SIZEOF_PY_INTPTR_T 8
#define NPY_SIZEOF_OFF_T 8
#define NPY_SIZEOF_PY_LONG_LONG 8
#define NPY_SIZEOF_LONGLONG 8
#define NPY_NO_SMP 0
#define NPY_HAVE_DECL_ISNAN
#define NPY_HAVE_DECL_ISINF
#define NPY_HAVE_DECL_ISFINITE
#define NPY_HAVE_DECL_SIGNBIT
#define NPY_USE_C99_COMPLEX 1
#define NPY_HAVE_COMPLEX_DOUBLE 1
#define NPY_HAVE_COMPLEX_FLOAT 1
#define NPY_HAVE_COMPLEX_LONG_DOUBLE 1
#define NPY_RELAXED_STRIDES_CHECKING 1
#define NPY_USE_C99_FORMATS 1
#define NPY_VISIBILITY_HIDDEN __attribute__((visibility("hidden")))
#define NPY_ABI_VERSION 0x01000009
#define NPY_API_VERSION 0x0000000C
#ifndef __STDC_FORMAT_MACROS
#define __STDC_FORMAT_MACROS 1
#endif
EOF
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h' to sources.
executing numpy/core/code_generators/generate_numpy_api.py
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__multiarray_api.h' to sources.
numpy.core - nothing done with h_files = ['build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__multiarray_api.h']
building extension "numpy.core.multiarray" sources
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h' to sources.
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h' to sources.
executing numpy/core/code_generators/generate_numpy_api.py
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__multiarray_api.h' to sources.
creating build/src.linux-x86_64-2.7/numpy/core/src/multiarray
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/multiarray/arraytypes.c
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/multiarray/einsum.c
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/multiarray/lowlevel_strided_loops.c
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/multiarray/nditer_templ.c
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/multiarray/scalartypes.c
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/private/templ_common.h
adding 'build/src.linux-x86_64-2.7/numpy/core/src/private' to include_dirs.
numpy.core - nothing done with h_files = ['build/src.linux-x86_64-2.7/numpy/core/src/private/templ_common.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__multiarray_api.h']
building extension "numpy.core.umath" sources
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h' to sources.
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h' to sources.
executing numpy/core/code_generators/generate_ufunc_api.py
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__ufunc_api.h' to sources.
creating build/src.linux-x86_64-2.7/numpy/core/src/umath
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/umath/funcs.inc
adding 'build/src.linux-x86_64-2.7/numpy/core/src/umath' to include_dirs.
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/umath/simd.inc
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/umath/loops.h
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/umath/loops.c
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/umath/scalarmath.c
numpy.core - nothing done with h_files = ['build/src.linux-x86_64-2.7/numpy/core/src/umath/funcs.inc', 'build/src.linux-x86_64-2.7/numpy/core/src/umath/simd.inc', 'build/src.linux-x86_64-2.7/numpy/core/src/umath/loops.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__ufunc_api.h']
building extension "numpy.core.umath_tests" sources
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/umath/umath_tests.c
building extension "numpy.core.test_rational" sources
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/umath/test_rational.c
building extension "numpy.core.struct_ufunc_test" sources
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/umath/struct_ufunc_test.c
building extension "numpy.core.multiarray_tests" sources
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/multiarray/multiarray_tests.c
building extension "numpy.core.operand_flag_tests" sources
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/umath/operand_flag_tests.c
building extension "numpy.fft.fftpack_lite" sources
building extension "numpy.linalg.lapack_lite" sources
creating build/src.linux-x86_64-2.7/numpy/linalg
### Warning: Using unoptimized lapack ###
adding 'numpy/linalg/lapack_lite/python_xerbla.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_z_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_c_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_d_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_s_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_blas.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_config.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c.c' to sources.
building extension "numpy.linalg._umath_linalg" sources
### Warning: Using unoptimized lapack ###
adding 'numpy/linalg/lapack_lite/python_xerbla.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_z_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_c_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_d_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_s_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_blas.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_config.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c.c' to sources.
conv_template:> build/src.linux-x86_64-2.7/numpy/linalg/umath_linalg.c
building extension "numpy.random.mtrand" sources
creating build/src.linux-x86_64-2.7/numpy/random
building data_files sources
build_src: building npy-pkg config files
running build_py
creating build/lib.linux-x86_64-2.7
creating build/lib.linux-x86_64-2.7/numpy
copying numpy/add_newdocs.py -> build/lib.linux-x86_64-2.7/numpy
copying numpy/matlib.py -> build/lib.linux-x86_64-2.7/numpy
copying numpy/_globals.py -> build/lib.linux-x86_64-2.7/numpy
copying numpy/ctypeslib.py -> build/lib.linux-x86_64-2.7/numpy
copying numpy/conftest.py -> build/lib.linux-x86_64-2.7/numpy
copying numpy/dual.py -> build/lib.linux-x86_64-2.7/numpy
copying numpy/version.py -> build/lib.linux-x86_64-2.7/numpy
copying numpy/__init__.py -> build/lib.linux-x86_64-2.7/numpy
copying numpy/_distributor_init.py -> build/lib.linux-x86_64-2.7/numpy
copying numpy/_import_tools.py -> build/lib.linux-x86_64-2.7/numpy
copying numpy/setup.py -> build/lib.linux-x86_64-2.7/numpy
copying build/src.linux-x86_64-2.7/numpy/__config__.py -> build/lib.linux-x86_64-2.7/numpy
creating build/lib.linux-x86_64-2.7/numpy/compat
copying numpy/compat/__init__.py -> build/lib.linux-x86_64-2.7/numpy/compat
copying numpy/compat/py3k.py -> build/lib.linux-x86_64-2.7/numpy/compat
copying numpy/compat/_inspect.py -> build/lib.linux-x86_64-2.7/numpy/compat
copying numpy/compat/setup.py -> build/lib.linux-x86_64-2.7/numpy/compat
creating build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/info.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/arrayprint.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/numerictypes.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/getlimits.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/_methods.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/defchararray.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/setup_common.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/records.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/einsumfunc.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/_internal.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/__init__.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/machar.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/shape_base.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/function_base.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/fromnumeric.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/setup.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/cversions.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/numeric.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/memmap.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/code_generators/generate_numpy_api.py -> build/lib.linux-x86_64-2.7/numpy/core
creating build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/info.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/environment.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/log.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/core.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/pathccompiler.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/__version__.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/mingw32ccompiler.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/lib2def.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/numpy_distribution.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/msvc9compiler.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/npy_pkg_config.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/__init__.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/cpuinfo.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/extension.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/intelccompiler.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/ccompiler.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/compat.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/msvccompiler.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/from_template.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/line_endings.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/unixccompiler.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/conv_template.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/setup.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/misc_util.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/system_info.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/exec_command.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying build/src.linux-x86_64-2.7/numpy/distutils/__config__.py -> build/lib.linux-x86_64-2.7/numpy/distutils
creating build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/install.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/sdist.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/build_ext.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/autodist.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/build_scripts.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/egg_info.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/install_data.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/build_py.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/build_src.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/__init__.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/bdist_rpm.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/build.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/build_clib.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/config_compiler.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/develop.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/config.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/install_clib.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/install_headers.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
creating build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/vast.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/ibm.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/intel.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/hpux.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/__init__.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/compaq.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/mips.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/none.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/sun.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/nag.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/pg.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/lahey.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/gnu.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/absoft.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/g95.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/pathf95.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
creating build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/constants.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/ufuncs.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/indexing.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/broadcasting.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/basics.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/misc.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/byteswapping.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/subclassing.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/__init__.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/creation.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/structured_arrays.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/glossary.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/internals.py -> build/lib.linux-x86_64-2.7/numpy/doc
creating build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/info.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/use_rules.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/capi_maps.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/common_rules.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/auxfuncs.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/rules.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/__version__.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/__main__.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/__init__.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/f2py_testing.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/diagnose.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/cfuncs.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/f2py2e.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/func2subr.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/setup.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/crackfortran.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/cb_rules.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/f90mod_rules.py -> build/lib.linux-x86_64-2.7/numpy/f2py
creating build/lib.linux-x86_64-2.7/numpy/fft
copying numpy/fft/info.py -> build/lib.linux-x86_64-2.7/numpy/fft
copying numpy/fft/fftpack.py -> build/lib.linux-x86_64-2.7/numpy/fft
copying numpy/fft/__init__.py -> build/lib.linux-x86_64-2.7/numpy/fft
copying numpy/fft/helper.py -> build/lib.linux-x86_64-2.7/numpy/fft
copying numpy/fft/setup.py -> build/lib.linux-x86_64-2.7/numpy/fft
creating build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/info.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/arrayterator.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/format.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/recfunctions.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/_iotools.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/_datasource.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/user_array.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/twodim_base.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/scimath.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/mixins.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/__init__.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/arraysetops.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/shape_base.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/type_check.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/function_base.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/polynomial.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/stride_tricks.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/nanfunctions.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/financial.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/utils.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/index_tricks.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/setup.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/ufunclike.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/_version.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/arraypad.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/npyio.py -> build/lib.linux-x86_64-2.7/numpy/lib
creating build/lib.linux-x86_64-2.7/numpy/linalg
copying numpy/linalg/info.py -> build/lib.linux-x86_64-2.7/numpy/linalg
copying numpy/linalg/linalg.py -> build/lib.linux-x86_64-2.7/numpy/linalg
copying numpy/linalg/__init__.py -> build/lib.linux-x86_64-2.7/numpy/linalg
copying numpy/linalg/setup.py -> build/lib.linux-x86_64-2.7/numpy/linalg
creating build/lib.linux-x86_64-2.7/numpy/ma
copying numpy/ma/core.py -> build/lib.linux-x86_64-2.7/numpy/ma
copying numpy/ma/bench.py -> build/lib.linux-x86_64-2.7/numpy/ma
copying numpy/ma/timer_comparison.py -> build/lib.linux-x86_64-2.7/numpy/ma
copying numpy/ma/testutils.py -> build/lib.linux-x86_64-2.7/numpy/ma
copying numpy/ma/version.py -> build/lib.linux-x86_64-2.7/numpy/ma
copying numpy/ma/__init__.py -> build/lib.linux-x86_64-2.7/numpy/ma
copying numpy/ma/extras.py -> build/lib.linux-x86_64-2.7/numpy/ma
copying numpy/ma/setup.py -> build/lib.linux-x86_64-2.7/numpy/ma
copying numpy/ma/mrecords.py -> build/lib.linux-x86_64-2.7/numpy/ma
creating build/lib.linux-x86_64-2.7/numpy/matrixlib
copying numpy/matrixlib/__init__.py -> build/lib.linux-x86_64-2.7/numpy/matrixlib
copying numpy/matrixlib/setup.py -> build/lib.linux-x86_64-2.7/numpy/matrixlib
copying numpy/matrixlib/defmatrix.py -> build/lib.linux-x86_64-2.7/numpy/matrixlib
creating build/lib.linux-x86_64-2.7/numpy/polynomial
copying numpy/polynomial/legendre.py -> build/lib.linux-x86_64-2.7/numpy/polynomial
copying numpy/polynomial/chebyshev.py -> build/lib.linux-x86_64-2.7/numpy/polynomial
copying numpy/polynomial/polyutils.py -> build/lib.linux-x86_64-2.7/numpy/polynomial
copying numpy/polynomial/hermite.py -> build/lib.linux-x86_64-2.7/numpy/polynomial
copying numpy/polynomial/__init__.py -> build/lib.linux-x86_64-2.7/numpy/polynomial
copying numpy/polynomial/laguerre.py -> build/lib.linux-x86_64-2.7/numpy/polynomial
copying numpy/polynomial/polynomial.py -> build/lib.linux-x86_64-2.7/numpy/polynomial
copying numpy/polynomial/hermite_e.py -> build/lib.linux-x86_64-2.7/numpy/polynomial
copying numpy/polynomial/_polybase.py -> build/lib.linux-x86_64-2.7/numpy/polynomial
copying numpy/polynomial/setup.py -> build/lib.linux-x86_64-2.7/numpy/polynomial
creating build/lib.linux-x86_64-2.7/numpy/random
copying numpy/random/info.py -> build/lib.linux-x86_64-2.7/numpy/random
copying numpy/random/__init__.py -> build/lib.linux-x86_64-2.7/numpy/random
copying numpy/random/setup.py -> build/lib.linux-x86_64-2.7/numpy/random
creating build/lib.linux-x86_64-2.7/numpy/testing
copying numpy/testing/noseclasses.py -> build/lib.linux-x86_64-2.7/numpy/testing
copying numpy/testing/print_coercion_tables.py -> build/lib.linux-x86_64-2.7/numpy/testing
copying numpy/testing/nosetester.py -> build/lib.linux-x86_64-2.7/numpy/testing
copying numpy/testing/__init__.py -> build/lib.linux-x86_64-2.7/numpy/testing
copying numpy/testing/decorators.py -> build/lib.linux-x86_64-2.7/numpy/testing
copying numpy/testing/utils.py -> build/lib.linux-x86_64-2.7/numpy/testing
copying numpy/testing/setup.py -> build/lib.linux-x86_64-2.7/numpy/testing
creating build/lib.linux-x86_64-2.7/numpy/testing/nose_tools
copying numpy/testing/nose_tools/noseclasses.py -> build/lib.linux-x86_64-2.7/numpy/testing/nose_tools
copying numpy/testing/nose_tools/nosetester.py -> build/lib.linux-x86_64-2.7/numpy/testing/nose_tools
copying numpy/testing/nose_tools/__init__.py -> build/lib.linux-x86_64-2.7/numpy/testing/nose_tools
copying numpy/testing/nose_tools/decorators.py -> build/lib.linux-x86_64-2.7/numpy/testing/nose_tools
copying numpy/testing/nose_tools/utils.py -> build/lib.linux-x86_64-2.7/numpy/testing/nose_tools
copying numpy/testing/nose_tools/parameterized.py -> build/lib.linux-x86_64-2.7/numpy/testing/nose_tools
running build_clib
customize UnixCCompiler
customize UnixCCompiler using build_clib
building 'npymath' library
compiling C sources
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
creating build/temp.linux-x86_64-2.7
creating build/temp.linux-x86_64-2.7/numpy
creating build/temp.linux-x86_64-2.7/numpy/core
creating build/temp.linux-x86_64-2.7/numpy/core/src
creating build/temp.linux-x86_64-2.7/numpy/core/src/npymath
creating build/temp.linux-x86_64-2.7/build
creating build/temp.linux-x86_64-2.7/build/src.linux-x86_64-2.7
creating build/temp.linux-x86_64-2.7/build/src.linux-x86_64-2.7/numpy
creating build/temp.linux-x86_64-2.7/build/src.linux-x86_64-2.7/numpy/core
creating build/temp.linux-x86_64-2.7/build/src.linux-x86_64-2.7/numpy/core/src
creating build/temp.linux-x86_64-2.7/build/src.linux-x86_64-2.7/numpy/core/src/npymath
compile options: '-Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Inumpy/core/include -Ibuild/src.linux-x86_64-2.7/numpy/core/include/numpy -Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -c'
gcc: numpy/core/src/npymath/halffloat.c
gcc: build/src.linux-x86_64-2.7/numpy/core/src/npymath/ieee754.c
In file included from numpy/core/src/npymath/ieee754.c.src:9:0:
numpy/core/include/numpy/utils.h:17:24: error: pasting "__NPY_UNUSED_TAGGED" and "*" does not give a valid preprocessing token
#define NPY_UNUSED(x) (__NPY_UNUSED_TAGGED ## x) __COMP_NPY_UNUSED
^
numpy/core/src/npymath/ieee754.c.src:802:38: note: in expansion of macro 'NPY_UNUSED'
int npy_get_floatstatus_barrier(char NPY_UNUSED(*param))
^~~~~~~~~~
numpy/core/src/npymath/ieee754.c.src:802:49: error: expected ')' before '*' token
int npy_get_floatstatus_barrier(char NPY_UNUSED(*param))
^
numpy/core/include/numpy/utils.h:17:47: note: in definition of macro 'NPY_UNUSED'
#define NPY_UNUSED(x) (__NPY_UNUSED_TAGGED ## x) __COMP_NPY_UNUSED
^
numpy/core/src/npymath/ieee754.c.src: In function 'npy_clear_floatstatus_barrier':
numpy/core/src/npymath/ieee754.c.src:809:9: warning: unused variable 'fpstatus' [-Wunused-variable]
int fpstatus = npy_get_floatstatus_barrier(param);
^~~~~~~~
In file included from numpy/core/src/npymath/ieee754.c.src:9:0:
numpy/core/include/numpy/utils.h:17:24: error: pasting "__NPY_UNUSED_TAGGED" and "*" does not give a valid preprocessing token
#define NPY_UNUSED(x) (__NPY_UNUSED_TAGGED ## x) __COMP_NPY_UNUSED
^
numpy/core/src/npymath/ieee754.c.src:802:38: note: in expansion of macro 'NPY_UNUSED'
int npy_get_floatstatus_barrier(char NPY_UNUSED(*param))
^~~~~~~~~~
numpy/core/src/npymath/ieee754.c.src:802:49: error: expected ')' before '*' token
int npy_get_floatstatus_barrier(char NPY_UNUSED(*param))
^
numpy/core/include/numpy/utils.h:17:47: note: in definition of macro 'NPY_UNUSED'
#define NPY_UNUSED(x) (__NPY_UNUSED_TAGGED ## x) __COMP_NPY_UNUSED
^
numpy/core/src/npymath/ieee754.c.src: In function 'npy_clear_floatstatus_barrier':
numpy/core/src/npymath/ieee754.c.src:809:9: warning: unused variable 'fpstatus' [-Wunused-variable]
int fpstatus = npy_get_floatstatus_barrier(param);
^~~~~~~~
error: Command "gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Inumpy/core/include -Ibuild/src.linux-x86_64-2.7/numpy/core/include/numpy -Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -c build/src.linux-x86_64-2.7/numpy/core/src/npymath/ieee754.c -o build/temp.linux-x86_64-2.7/build/src.linux-x86_64-2.7/numpy/core/src/npymath/ieee754.o -MMD -MF build/temp.linux-x86_64-2.7/build/src.linux-x86_64-2.7/numpy/core/src/npymath/ieee754.o.d" failed with exit status 1
----------------------------------------
Failed building wheel for numpy
Running setup.py clean for numpy
Complete output from command /usr/local/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-pYwQAe/numpy/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" clean --all:
Running from numpy source directory.
`setup.py clean` is not supported, use one of the following instead:
- `git clean -xdf` (cleans all files)
- `git clean -Xdf` (cleans all versioned files, doesn't touch
files that aren't checked into the git repo)
Add `--force` to your command to use it anyway if you must (unsupported).
----------------------------------------
Failed cleaning build dir for numpy
Failed to build numpy
Installing collected packages: numpy
Running setup.py install for numpy: started
Running setup.py install for numpy: finished with status 'error'
Complete output from command /usr/local/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-pYwQAe/numpy/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-record-YHx81c/install-record.txt --single-version-externally-managed --compile:
Running from numpy source directory.
Note: if you need reliable uninstall behavior, then install
with pip instead of using `setup.py install`:
- `pip install .` (from a git repo or downloaded source
release)
- `pip install numpy` (last NumPy release on PyPi)
blas_opt_info:
blas_mkl_info:
customize UnixCCompiler
libraries mkl_rt not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
blis_info:
customize UnixCCompiler
libraries blis not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
openblas_info:
customize UnixCCompiler
customize UnixCCompiler
libraries openblas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
atlas_3_10_blas_threads_info:
Setting PTATLAS=ATLAS
customize UnixCCompiler
libraries tatlas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
atlas_3_10_blas_info:
customize UnixCCompiler
libraries satlas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
atlas_blas_threads_info:
Setting PTATLAS=ATLAS
customize UnixCCompiler
libraries ptf77blas,ptcblas,atlas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
atlas_blas_info:
customize UnixCCompiler
libraries f77blas,cblas,atlas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
/tmp/pip-install-pYwQAe/numpy/numpy/distutils/system_info.py:624: UserWarning:
Atlas (http://math-atlas.sourceforge.net/) libraries not found.
Directories to search for the libraries can be specified in the
numpy/distutils/site.cfg file (section [atlas]) or by setting
the ATLAS environment variable.
self.calc_info()
blas_info:
customize UnixCCompiler
libraries blas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
/tmp/pip-install-pYwQAe/numpy/numpy/distutils/system_info.py:624: UserWarning:
Blas (http://www.netlib.org/blas/) libraries not found.
Directories to search for the libraries can be specified in the
numpy/distutils/site.cfg file (section [blas]) or by setting
the BLAS environment variable.
self.calc_info()
blas_src_info:
NOT AVAILABLE
/tmp/pip-install-pYwQAe/numpy/numpy/distutils/system_info.py:624: UserWarning:
Blas (http://www.netlib.org/blas/) sources not found.
Directories to search for the sources can be specified in the
numpy/distutils/site.cfg file (section [blas_src]) or by setting
the BLAS_SRC environment variable.
self.calc_info()
NOT AVAILABLE
/bin/sh: svnversion: not found
non-existing path in 'numpy/distutils': 'site.cfg'
/bin/sh: svnversion: not found
F2PY Version 2
lapack_opt_info:
lapack_mkl_info:
customize UnixCCompiler
libraries mkl_rt not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
openblas_lapack_info:
customize UnixCCompiler
customize UnixCCompiler
libraries openblas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
openblas_clapack_info:
customize UnixCCompiler
customize UnixCCompiler
libraries openblas,lapack not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
atlas_3_10_threads_info:
Setting PTATLAS=ATLAS
customize UnixCCompiler
libraries tatlas,tatlas not found in /usr/local/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/local/lib
customize UnixCCompiler
libraries tatlas,tatlas not found in /usr/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib
customize UnixCCompiler
libraries tatlas,tatlas not found in /usr/lib/
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib/
<class 'numpy.distutils.system_info.atlas_3_10_threads_info'>
NOT AVAILABLE
atlas_3_10_info:
customize UnixCCompiler
libraries satlas,satlas not found in /usr/local/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/local/lib
customize UnixCCompiler
libraries satlas,satlas not found in /usr/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib
customize UnixCCompiler
libraries satlas,satlas not found in /usr/lib/
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib/
<class 'numpy.distutils.system_info.atlas_3_10_info'>
NOT AVAILABLE
atlas_threads_info:
Setting PTATLAS=ATLAS
customize UnixCCompiler
libraries ptf77blas,ptcblas,atlas not found in /usr/local/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/local/lib
customize UnixCCompiler
libraries ptf77blas,ptcblas,atlas not found in /usr/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib
customize UnixCCompiler
libraries ptf77blas,ptcblas,atlas not found in /usr/lib/
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib/
<class 'numpy.distutils.system_info.atlas_threads_info'>
NOT AVAILABLE
atlas_info:
customize UnixCCompiler
libraries f77blas,cblas,atlas not found in /usr/local/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/local/lib
customize UnixCCompiler
libraries f77blas,cblas,atlas not found in /usr/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib
customize UnixCCompiler
libraries f77blas,cblas,atlas not found in /usr/lib/
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib/
<class 'numpy.distutils.system_info.atlas_info'>
NOT AVAILABLE
lapack_info:
customize UnixCCompiler
libraries lapack not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
/tmp/pip-install-pYwQAe/numpy/numpy/distutils/system_info.py:624: UserWarning:
Lapack (http://www.netlib.org/lapack/) libraries not found.
Directories to search for the libraries can be specified in the
numpy/distutils/site.cfg file (section [lapack]) or by setting
the LAPACK environment variable.
self.calc_info()
lapack_src_info:
NOT AVAILABLE
/tmp/pip-install-pYwQAe/numpy/numpy/distutils/system_info.py:624: UserWarning:
Lapack (http://www.netlib.org/lapack/) sources not found.
Directories to search for the sources can be specified in the
numpy/distutils/site.cfg file (section [lapack_src]) or by setting
the LAPACK_SRC environment variable.
self.calc_info()
NOT AVAILABLE
/usr/local/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'define_macros'
warnings.warn(msg)
running install
running build
running config_cc
unifing config_cc, config, build_clib, build_ext, build commands --compiler options
running config_fc
unifing config_fc, config, build_clib, build_ext, build commands --fcompiler options
running build_src
build_src
building py_modules sources
building library "npymath" sources
get_default_fcompiler: matching types: '['gnu95', 'intel', 'lahey', 'pg', 'absoft', 'nag', 'vast', 'compaq', 'intele', 'intelem', 'gnu', 'g95', 'pathf95', 'nagfor']'
customize Gnu95FCompiler
Found executable /usr/bin/gfortran
customize Gnu95FCompiler
customize Gnu95FCompiler using config
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'exp'
int exp (void);
^~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
adding 'build/src.linux-x86_64-2.7/numpy/core/src/npymath' to include_dirs.
None - nothing done with h_files = ['build/src.linux-x86_64-2.7/numpy/core/src/npymath/npy_math_internal.h']
building library "npysort" sources
adding 'build/src.linux-x86_64-2.7/numpy/core/src/private' to include_dirs.
None - nothing done with h_files = ['build/src.linux-x86_64-2.7/numpy/core/src/private/npy_partition.h', 'build/src.linux-x86_64-2.7/numpy/core/src/private/npy_binsearch.h']
building extension "numpy.core._dummy" sources
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h' to sources.
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h' to sources.
executing numpy/core/code_generators/generate_numpy_api.py
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__multiarray_api.h' to sources.
numpy.core - nothing done with h_files = ['build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__multiarray_api.h']
building extension "numpy.core.multiarray" sources
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h' to sources.
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h' to sources.
executing numpy/core/code_generators/generate_numpy_api.py
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__multiarray_api.h' to sources.
adding 'build/src.linux-x86_64-2.7/numpy/core/src/private' to include_dirs.
numpy.core - nothing done with h_files = ['build/src.linux-x86_64-2.7/numpy/core/src/private/templ_common.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__multiarray_api.h']
building extension "numpy.core.umath" sources
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h' to sources.
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h' to sources.
executing numpy/core/code_generators/generate_ufunc_api.py
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__ufunc_api.h' to sources.
adding 'build/src.linux-x86_64-2.7/numpy/core/src/umath' to include_dirs.
numpy.core - nothing done with h_files = ['build/src.linux-x86_64-2.7/numpy/core/src/umath/funcs.inc', 'build/src.linux-x86_64-2.7/numpy/core/src/umath/simd.inc', 'build/src.linux-x86_64-2.7/numpy/core/src/umath/loops.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__ufunc_api.h']
building extension "numpy.core.umath_tests" sources
building extension "numpy.core.test_rational" sources
building extension "numpy.core.struct_ufunc_test" sources
building extension "numpy.core.multiarray_tests" sources
building extension "numpy.core.operand_flag_tests" sources
building extension "numpy.fft.fftpack_lite" sources
building extension "numpy.linalg.lapack_lite" sources
### Warning: Using unoptimized lapack ###
adding 'numpy/linalg/lapack_lite/python_xerbla.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_z_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_c_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_d_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_s_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_blas.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_config.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c.c' to sources.
building extension "numpy.linalg._umath_linalg" sources
### Warning: Using unoptimized lapack ###
adding 'numpy/linalg/lapack_lite/python_xerbla.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_z_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_c_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_d_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_s_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_blas.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_config.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c.c' to sources.
building extension "numpy.random.mtrand" sources
building data_files sources
build_src: building npy-pkg config files
running build_py
copying numpy/version.py -> build/lib.linux-x86_64-2.7/numpy
copying build/src.linux-x86_64-2.7/numpy/__config__.py -> build/lib.linux-x86_64-2.7/numpy
copying build/src.linux-x86_64-2.7/numpy/distutils/__config__.py -> build/lib.linux-x86_64-2.7/numpy/distutils
running build_clib
customize UnixCCompiler
customize UnixCCompiler using build_clib
building 'npymath' library
compiling C sources
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Inumpy/core/include -Ibuild/src.linux-x86_64-2.7/numpy/core/include/numpy -Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -c'
gcc: build/src.linux-x86_64-2.7/numpy/core/src/npymath/ieee754.c
In file included from numpy/core/src/npymath/ieee754.c.src:9:0:
numpy/core/include/numpy/utils.h:17:24: error: pasting "__NPY_UNUSED_TAGGED" and "*" does not give a valid preprocessing token
#define NPY_UNUSED(x) (__NPY_UNUSED_TAGGED ## x) __COMP_NPY_UNUSED
^
numpy/core/src/npymath/ieee754.c.src:802:38: note: in expansion of macro 'NPY_UNUSED'
int npy_get_floatstatus_barrier(char NPY_UNUSED(*param))
^~~~~~~~~~
numpy/core/src/npymath/ieee754.c.src:802:49: error: expected ')' before '*' token
int npy_get_floatstatus_barrier(char NPY_UNUSED(*param))
^
numpy/core/include/numpy/utils.h:17:47: note: in definition of macro 'NPY_UNUSED'
#define NPY_UNUSED(x) (__NPY_UNUSED_TAGGED ## x) __COMP_NPY_UNUSED
^
numpy/core/src/npymath/ieee754.c.src: In function 'npy_clear_floatstatus_barrier':
numpy/core/src/npymath/ieee754.c.src:809:9: warning: unused variable 'fpstatus' [-Wunused-variable]
int fpstatus = npy_get_floatstatus_barrier(param);
^~~~~~~~
In file included from numpy/core/src/npymath/ieee754.c.src:9:0:
numpy/core/include/numpy/utils.h:17:24: error: pasting "__NPY_UNUSED_TAGGED" and "*" does not give a valid preprocessing token
#define NPY_UNUSED(x) (__NPY_UNUSED_TAGGED ## x) __COMP_NPY_UNUSED
^
numpy/core/src/npymath/ieee754.c.src:802:38: note: in expansion of macro 'NPY_UNUSED'
int npy_get_floatstatus_barrier(char NPY_UNUSED(*param))
^~~~~~~~~~
numpy/core/src/npymath/ieee754.c.src:802:49: error: expected ')' before '*' token
int npy_get_floatstatus_barrier(char NPY_UNUSED(*param))
^
numpy/core/include/numpy/utils.h:17:47: note: in definition of macro 'NPY_UNUSED'
#define NPY_UNUSED(x) (__NPY_UNUSED_TAGGED ## x) __COMP_NPY_UNUSED
^
numpy/core/src/npymath/ieee754.c.src: In function 'npy_clear_floatstatus_barrier':
numpy/core/src/npymath/ieee754.c.src:809:9: warning: unused variable 'fpstatus' [-Wunused-variable]
int fpstatus = npy_get_floatstatus_barrier(param);
^~~~~~~~
error: Command "gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Inumpy/core/include -Ibuild/src.linux-x86_64-2.7/numpy/core/include/numpy -Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -c build/src.linux-x86_64-2.7/numpy/core/src/npymath/ieee754.c -o build/temp.linux-x86_64-2.7/build/src.linux-x86_64-2.7/numpy/core/src/npymath/ieee754.o -MMD -MF build/temp.linux-x86_64-2.7/build/src.linux-x86_64-2.7/numpy/core/src/npymath/ieee754.o.d" failed with exit status 1
----------------------------------------
Command "/usr/local/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-pYwQAe/numpy/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-record-YHx81c/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-install-pYwQAe/numpy/
The command '/bin/sh -c pip install numpy' returned a non-zero code: 1
ERROR: Job failed: exit code 1"><pre class="notranslate"><code class="notranslate">Collecting numpy
Downloading https://files.pythonhosted.org/packages/94/b8/09db804ddf3bb7b50767544ec8e559695b152cedd64830040a0f31d6aeda/numpy-1.14.4.zip (4.9MB)
Building wheels for collected packages: numpy
Running setup.py bdist_wheel for numpy: started
Running setup.py bdist_wheel for numpy: finished with status 'error'
Complete output from command /usr/local/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-pYwQAe/numpy/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d /tmp/pip-wheel-Y0cigA --python-tag cp27:
Running from numpy source directory.
blas_opt_info:
blas_mkl_info:
customize UnixCCompiler
libraries mkl_rt not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
blis_info:
customize UnixCCompiler
libraries blis not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
openblas_info:
customize UnixCCompiler
customize UnixCCompiler
libraries openblas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
atlas_3_10_blas_threads_info:
Setting PTATLAS=ATLAS
customize UnixCCompiler
libraries tatlas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
atlas_3_10_blas_info:
customize UnixCCompiler
libraries satlas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
atlas_blas_threads_info:
Setting PTATLAS=ATLAS
customize UnixCCompiler
libraries ptf77blas,ptcblas,atlas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
atlas_blas_info:
customize UnixCCompiler
libraries f77blas,cblas,atlas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
/tmp/pip-install-pYwQAe/numpy/numpy/distutils/system_info.py:624: UserWarning:
Atlas (http://math-atlas.sourceforge.net/) libraries not found.
Directories to search for the libraries can be specified in the
numpy/distutils/site.cfg file (section [atlas]) or by setting
the ATLAS environment variable.
self.calc_info()
blas_info:
customize UnixCCompiler
libraries blas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
/tmp/pip-install-pYwQAe/numpy/numpy/distutils/system_info.py:624: UserWarning:
Blas (http://www.netlib.org/blas/) libraries not found.
Directories to search for the libraries can be specified in the
numpy/distutils/site.cfg file (section [blas]) or by setting
the BLAS environment variable.
self.calc_info()
blas_src_info:
NOT AVAILABLE
/tmp/pip-install-pYwQAe/numpy/numpy/distutils/system_info.py:624: UserWarning:
Blas (http://www.netlib.org/blas/) sources not found.
Directories to search for the sources can be specified in the
numpy/distutils/site.cfg file (section [blas_src]) or by setting
the BLAS_SRC environment variable.
self.calc_info()
NOT AVAILABLE
/bin/sh: svnversion: not found
non-existing path in 'numpy/distutils': 'site.cfg'
/bin/sh: svnversion: not found
F2PY Version 2
lapack_opt_info:
lapack_mkl_info:
customize UnixCCompiler
libraries mkl_rt not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
openblas_lapack_info:
customize UnixCCompiler
customize UnixCCompiler
libraries openblas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
openblas_clapack_info:
customize UnixCCompiler
customize UnixCCompiler
libraries openblas,lapack not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
atlas_3_10_threads_info:
Setting PTATLAS=ATLAS
customize UnixCCompiler
libraries tatlas,tatlas not found in /usr/local/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/local/lib
customize UnixCCompiler
libraries tatlas,tatlas not found in /usr/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib
customize UnixCCompiler
libraries tatlas,tatlas not found in /usr/lib/
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib/
<class 'numpy.distutils.system_info.atlas_3_10_threads_info'>
NOT AVAILABLE
atlas_3_10_info:
customize UnixCCompiler
libraries satlas,satlas not found in /usr/local/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/local/lib
customize UnixCCompiler
libraries satlas,satlas not found in /usr/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib
customize UnixCCompiler
libraries satlas,satlas not found in /usr/lib/
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib/
<class 'numpy.distutils.system_info.atlas_3_10_info'>
NOT AVAILABLE
atlas_threads_info:
Setting PTATLAS=ATLAS
customize UnixCCompiler
libraries ptf77blas,ptcblas,atlas not found in /usr/local/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/local/lib
customize UnixCCompiler
libraries ptf77blas,ptcblas,atlas not found in /usr/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib
customize UnixCCompiler
libraries ptf77blas,ptcblas,atlas not found in /usr/lib/
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib/
<class 'numpy.distutils.system_info.atlas_threads_info'>
NOT AVAILABLE
atlas_info:
customize UnixCCompiler
libraries f77blas,cblas,atlas not found in /usr/local/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/local/lib
customize UnixCCompiler
libraries f77blas,cblas,atlas not found in /usr/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib
customize UnixCCompiler
libraries f77blas,cblas,atlas not found in /usr/lib/
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib/
<class 'numpy.distutils.system_info.atlas_info'>
NOT AVAILABLE
lapack_info:
customize UnixCCompiler
libraries lapack not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
/tmp/pip-install-pYwQAe/numpy/numpy/distutils/system_info.py:624: UserWarning:
Lapack (http://www.netlib.org/lapack/) libraries not found.
Directories to search for the libraries can be specified in the
numpy/distutils/site.cfg file (section [lapack]) or by setting
the LAPACK environment variable.
self.calc_info()
lapack_src_info:
NOT AVAILABLE
/tmp/pip-install-pYwQAe/numpy/numpy/distutils/system_info.py:624: UserWarning:
Lapack (http://www.netlib.org/lapack/) sources not found.
Directories to search for the sources can be specified in the
numpy/distutils/site.cfg file (section [lapack_src]) or by setting
the LAPACK_SRC environment variable.
self.calc_info()
NOT AVAILABLE
/usr/local/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'define_macros'
warnings.warn(msg)
running bdist_wheel
running build
running config_cc
unifing config_cc, config, build_clib, build_ext, build commands --compiler options
running config_fc
unifing config_fc, config, build_clib, build_ext, build commands --fcompiler options
running build_src
build_src
building py_modules sources
creating build
creating build/src.linux-x86_64-2.7
creating build/src.linux-x86_64-2.7/numpy
creating build/src.linux-x86_64-2.7/numpy/distutils
building library "npymath" sources
get_default_fcompiler: matching types: '['gnu95', 'intel', 'lahey', 'pg', 'absoft', 'nag', 'vast', 'compaq', 'intele', 'intelem', 'gnu', 'g95', 'pathf95', 'nagfor']'
customize Gnu95FCompiler
Found executable /usr/bin/gfortran
customize Gnu95FCompiler
customize Gnu95FCompiler using config
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'exp'
int exp (void);
^~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
creating build/src.linux-x86_64-2.7/numpy/core
creating build/src.linux-x86_64-2.7/numpy/core/src
creating build/src.linux-x86_64-2.7/numpy/core/src/npymath
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/npymath/npy_math_internal.h
adding 'build/src.linux-x86_64-2.7/numpy/core/src/npymath' to include_dirs.
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/npymath/ieee754.c
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/npymath/npy_math_complex.c
None - nothing done with h_files = ['build/src.linux-x86_64-2.7/numpy/core/src/npymath/npy_math_internal.h']
building library "npysort" sources
creating build/src.linux-x86_64-2.7/numpy/core/src/npysort
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/npysort/quicksort.c
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/npysort/mergesort.c
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/npysort/heapsort.c
creating build/src.linux-x86_64-2.7/numpy/core/src/private
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/private/npy_partition.h
adding 'build/src.linux-x86_64-2.7/numpy/core/src/private' to include_dirs.
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/npysort/selection.c
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/private/npy_binsearch.h
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/npysort/binsearch.c
None - nothing done with h_files = ['build/src.linux-x86_64-2.7/numpy/core/src/private/npy_partition.h', 'build/src.linux-x86_64-2.7/numpy/core/src/private/npy_binsearch.h']
building extension "numpy.core._dummy" sources
Generating build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:24: fatal error: sys/endian.h: No such file or directory
#include <sys/endian.h>
^
compilation terminated.
_configtest.c:1:24: fatal error: sys/endian.h: No such file or directory
#include <sys/endian.h>
^
compilation terminated.
failure.
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) >= 0)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) == 4)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) >= 0)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) == 8)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) >= 0)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) == 8)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) >= 0)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) == 16)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:7:12: error: 'SIZEOF_LONGDOUBLE' undeclared (first use in this function)
(void) SIZEOF_LONGDOUBLE;
^~~~~~~~~~~~~~~~~
_configtest.c:7:12: note: each undeclared identifier is reported only once for each function it appears in
_configtest.c: In function 'main':
_configtest.c:7:12: error: 'SIZEOF_LONGDOUBLE' undeclared (first use in this function)
(void) SIZEOF_LONGDOUBLE;
^~~~~~~~~~~~~~~~~
_configtest.c:7:12: note: each undeclared identifier is reported only once for each function it appears in
failure.
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) >= 0)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) == 16)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) >= 0)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) == 32)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:7:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) >= 0)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:7:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) == 8)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:7:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) >= 0)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:7:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) == 8)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:7:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) >= 0)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:7:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) == 8)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) >= 0)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:16: warning: variable 'test_array' set but not used [-Wunused-but-set-variable]
static int test_array [1 - 2 * !(((long) (sizeof (npy_check_sizeof_type))) == 8)];
^~~~~~~~~~
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'exp'
int exp (void);
^~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'asin'
int asin (void);
^~~~
_configtest.c:2:5: warning: conflicting types for built-in function 'cos'
int cos (void);
^~~
_configtest.c:3:5: warning: conflicting types for built-in function 'log'
int log (void);
^~~
_configtest.c:4:5: warning: conflicting types for built-in function 'fabs'
int fabs (void);
^~~~
_configtest.c:5:5: warning: conflicting types for built-in function 'tanh'
int tanh (void);
^~~~
_configtest.c:6:5: warning: conflicting types for built-in function 'atan'
int atan (void);
^~~~
_configtest.c:7:5: warning: conflicting types for built-in function 'acos'
int acos (void);
^~~~
_configtest.c:8:5: warning: conflicting types for built-in function 'floor'
int floor (void);
^~~~~
_configtest.c:9:5: warning: conflicting types for built-in function 'fmod'
int fmod (void);
^~~~
_configtest.c:10:5: warning: conflicting types for built-in function 'sqrt'
int sqrt (void);
^~~~
_configtest.c:11:5: warning: conflicting types for built-in function 'cosh'
int cosh (void);
^~~~
_configtest.c:12:5: warning: conflicting types for built-in function 'modf'
int modf (void);
^~~~
_configtest.c:13:5: warning: conflicting types for built-in function 'sinh'
int sinh (void);
^~~~
_configtest.c:14:5: warning: conflicting types for built-in function 'frexp'
int frexp (void);
^~~~~
_configtest.c:15:5: warning: conflicting types for built-in function 'exp'
int exp (void);
^~~
_configtest.c:16:5: warning: conflicting types for built-in function 'tan'
int tan (void);
^~~
_configtest.c:17:5: warning: conflicting types for built-in function 'ceil'
int ceil (void);
^~~~
_configtest.c:18:5: warning: conflicting types for built-in function 'log10'
int log10 (void);
^~~~~
_configtest.c:19:5: warning: conflicting types for built-in function 'sin'
int sin (void);
^~~
_configtest.c:20:5: warning: conflicting types for built-in function 'ldexp'
int ldexp (void);
^~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'log2'
int log2 (void);
^~~~
_configtest.c:2:5: warning: conflicting types for built-in function 'pow'
int pow (void);
^~~
_configtest.c:4:5: warning: conflicting types for built-in function 'exp2'
int exp2 (void);
^~~~
_configtest.c:5:5: warning: conflicting types for built-in function 'atan2'
int atan2 (void);
^~~~~
_configtest.c:7:5: warning: conflicting types for built-in function 'rint'
int rint (void);
^~~~
_configtest.c:11:5: warning: conflicting types for built-in function 'cbrt'
int cbrt (void);
^~~~
_configtest.c:12:5: warning: conflicting types for built-in function 'nextafter'
int nextafter (void);
^~~~~~~~~
_configtest.c:13:5: warning: conflicting types for built-in function 'trunc'
int trunc (void);
^~~~~
gcc _configtest.o -o _configtest
_configtest.o: In function `main':
/tmp/pip-install-pYwQAe/numpy/_configtest.c:42: undefined reference to `backtrace'
collect2: error: ld returned 1 exit status
_configtest.o: In function `main':
/tmp/pip-install-pYwQAe/numpy/_configtest.c:42: undefined reference to `backtrace'
collect2: error: ld returned 1 exit status
failure.
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'rint'
int rint (void);
^~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'trunc'
int trunc (void);
^~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'exp2'
int exp2 (void);
^~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'log2'
int log2 (void);
^~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'atan2'
int atan2 (void);
^~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'pow'
int pow (void);
^~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'nextafter'
int nextafter (void);
^~~~~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'cbrt'
int cbrt (void);
^~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
_configtest.o: In function `main':
/tmp/pip-install-pYwQAe/numpy/_configtest.c:6: undefined reference to `backtrace'
collect2: error: ld returned 1 exit status
_configtest.o: In function `main':
/tmp/pip-install-pYwQAe/numpy/_configtest.c:6: undefined reference to `backtrace'
collect2: error: ld returned 1 exit status
failure.
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:3: warning: statement with no effect [-Wunused-value]
__builtin_isnan(5.);
^~~~~~~~~~~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:3: warning: statement with no effect [-Wunused-value]
__builtin_isinf(5.);
^~~~~~~~~~~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:3: warning: statement with no effect [-Wunused-value]
__builtin_isfinite(5.);
^~~~~~~~~~~~~~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:3: warning: statement with no effect [-Wunused-value]
__builtin_bswap32(5u);
^~~~~~~~~~~~~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:3: warning: statement with no effect [-Wunused-value]
__builtin_bswap64(5u);
^~~~~~~~~~~~~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:5:3: warning: statement with no effect [-Wunused-value]
__builtin_expect(5, 0);
^~~~~~~~~~~~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:7:16: warning: unused variable 'r' [-Wunused-variable]
volatile int r = __builtin_cpu_supports("sse");
^
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:3:0: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas]
#pragma clang diagnostic error "-Wattributes"
_configtest.c:8:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
main()
^~~~
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:3:0: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas]
#pragma clang diagnostic error "-Wattributes"
_configtest.c:8:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
main()
^~~~
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:3:0: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas]
#pragma clang diagnostic error "-Wattributes"
_configtest.c:8:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
main()
^~~~
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:3:0: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas]
#pragma clang diagnostic error "-Wattributes"
_configtest.c:8:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
main()
^~~~
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:3:0: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas]
#pragma clang diagnostic error "-Wattributes"
_configtest.c:8:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
main()
^~~~
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:3:0: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas]
#pragma clang diagnostic error "-Wattributes"
_configtest.c:8:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
main()
^~~~
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:3:0: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas]
#pragma clang diagnostic error "-Wattributes"
_configtest.c:5:5: warning: function declaration isn't a prototype [-Wstrict-prototypes]
int __declspec(thread) foo;
^~~~~~~~~~
_configtest.c: In function '__declspec':
_configtest.c:5:24: error: expected declaration specifiers before 'foo'
int __declspec(thread) foo;
^~~
_configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token
{
^
_configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-Wimplicit-int]
int __declspec(thread) foo;
^~~~~~~~~~
_configtest.c:11:1: error: expected '{' at end of input
}
^
_configtest.c:11:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
_configtest.c:3:0: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas]
#pragma clang diagnostic error "-Wattributes"
_configtest.c:5:5: warning: function declaration isn't a prototype [-Wstrict-prototypes]
int __declspec(thread) foo;
^~~~~~~~~~
_configtest.c: In function '__declspec':
_configtest.c:5:24: error: expected declaration specifiers before 'foo'
int __declspec(thread) foo;
^~~
_configtest.c:9:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token
{
^
_configtest.c:5:5: warning: type of 'thread' defaults to 'int' [-Wimplicit-int]
int __declspec(thread) foo;
^~~~~~~~~~
_configtest.c:11:1: error: expected '{' at end of input
}
^
_configtest.c:11:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
failure.
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'cosf'
int cosf (void);
^~~~
_configtest.c:2:5: warning: conflicting types for built-in function 'coshf'
int coshf (void);
^~~~~
_configtest.c:3:5: warning: conflicting types for built-in function 'rintf'
int rintf (void);
^~~~~
_configtest.c:4:5: warning: conflicting types for built-in function 'fabsf'
int fabsf (void);
^~~~~
_configtest.c:5:5: warning: conflicting types for built-in function 'floorf'
int floorf (void);
^~~~~~
_configtest.c:6:5: warning: conflicting types for built-in function 'nextafterf'
int nextafterf (void);
^~~~~~~~~~
_configtest.c:7:5: warning: conflicting types for built-in function 'tanhf'
int tanhf (void);
^~~~~
_configtest.c:8:5: warning: conflicting types for built-in function 'log10f'
int log10f (void);
^~~~~~
_configtest.c:9:5: warning: conflicting types for built-in function 'logf'
int logf (void);
^~~~
_configtest.c:10:5: warning: conflicting types for built-in function 'sinhf'
int sinhf (void);
^~~~~
_configtest.c:11:5: warning: conflicting types for built-in function 'acosf'
int acosf (void);
^~~~~
_configtest.c:12:5: warning: conflicting types for built-in function 'sqrtf'
int sqrtf (void);
^~~~~
_configtest.c:13:5: warning: conflicting types for built-in function 'ldexpf'
int ldexpf (void);
^~~~~~
_configtest.c:14:5: warning: conflicting types for built-in function 'hypotf'
int hypotf (void);
^~~~~~
_configtest.c:15:5: warning: conflicting types for built-in function 'log2f'
int log2f (void);
^~~~~
_configtest.c:16:5: warning: conflicting types for built-in function 'exp2f'
int exp2f (void);
^~~~~
_configtest.c:17:5: warning: conflicting types for built-in function 'atanf'
int atanf (void);
^~~~~
_configtest.c:18:5: warning: conflicting types for built-in function 'fmodf'
int fmodf (void);
^~~~~
_configtest.c:19:5: warning: conflicting types for built-in function 'atan2f'
int atan2f (void);
^~~~~~
_configtest.c:20:5: warning: conflicting types for built-in function 'cbrtf'
int cbrtf (void);
^~~~~
_configtest.c:21:5: warning: conflicting types for built-in function 'modff'
int modff (void);
^~~~~
_configtest.c:22:5: warning: conflicting types for built-in function 'ceilf'
int ceilf (void);
^~~~~
_configtest.c:23:5: warning: conflicting types for built-in function 'log1pf'
int log1pf (void);
^~~~~~
_configtest.c:24:5: warning: conflicting types for built-in function 'asinf'
int asinf (void);
^~~~~
_configtest.c:25:5: warning: conflicting types for built-in function 'copysignf'
int copysignf (void);
^~~~~~~~~
_configtest.c:26:5: warning: conflicting types for built-in function 'acoshf'
int acoshf (void);
^~~~~~
_configtest.c:27:5: warning: conflicting types for built-in function 'sinf'
int sinf (void);
^~~~
_configtest.c:28:5: warning: conflicting types for built-in function 'tanf'
int tanf (void);
^~~~
_configtest.c:29:5: warning: conflicting types for built-in function 'atanhf'
int atanhf (void);
^~~~~~
_configtest.c:30:5: warning: conflicting types for built-in function 'truncf'
int truncf (void);
^~~~~~
_configtest.c:31:5: warning: conflicting types for built-in function 'asinhf'
int asinhf (void);
^~~~~~
_configtest.c:32:5: warning: conflicting types for built-in function 'frexpf'
int frexpf (void);
^~~~~~
_configtest.c:33:5: warning: conflicting types for built-in function 'powf'
int powf (void);
^~~~
_configtest.c:34:5: warning: conflicting types for built-in function 'expf'
int expf (void);
^~~~
_configtest.c:35:5: warning: conflicting types for built-in function 'expm1f'
int expm1f (void);
^~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'tanhl'
int tanhl (void);
^~~~~
_configtest.c:2:5: warning: conflicting types for built-in function 'log10l'
int log10l (void);
^~~~~~
_configtest.c:3:5: warning: conflicting types for built-in function 'nextafterl'
int nextafterl (void);
^~~~~~~~~~
_configtest.c:4:5: warning: conflicting types for built-in function 'coshl'
int coshl (void);
^~~~~
_configtest.c:5:5: warning: conflicting types for built-in function 'cosl'
int cosl (void);
^~~~
_configtest.c:6:5: warning: conflicting types for built-in function 'floorl'
int floorl (void);
^~~~~~
_configtest.c:7:5: warning: conflicting types for built-in function 'rintl'
int rintl (void);
^~~~~
_configtest.c:8:5: warning: conflicting types for built-in function 'fabsl'
int fabsl (void);
^~~~~
_configtest.c:9:5: warning: conflicting types for built-in function 'acosl'
int acosl (void);
^~~~~
_configtest.c:10:5: warning: conflicting types for built-in function 'ldexpl'
int ldexpl (void);
^~~~~~
_configtest.c:11:5: warning: conflicting types for built-in function 'sqrtl'
int sqrtl (void);
^~~~~
_configtest.c:12:5: warning: conflicting types for built-in function 'logl'
int logl (void);
^~~~
_configtest.c:13:5: warning: conflicting types for built-in function 'expm1l'
int expm1l (void);
^~~~~~
_configtest.c:14:5: warning: conflicting types for built-in function 'hypotl'
int hypotl (void);
^~~~~~
_configtest.c:15:5: warning: conflicting types for built-in function 'log2l'
int log2l (void);
^~~~~
_configtest.c:16:5: warning: conflicting types for built-in function 'copysignl'
int copysignl (void);
^~~~~~~~~
_configtest.c:17:5: warning: conflicting types for built-in function 'exp2l'
int exp2l (void);
^~~~~
_configtest.c:18:5: warning: conflicting types for built-in function 'atanl'
int atanl (void);
^~~~~
_configtest.c:19:5: warning: conflicting types for built-in function 'frexpl'
int frexpl (void);
^~~~~~
_configtest.c:20:5: warning: conflicting types for built-in function 'atan2l'
int atan2l (void);
^~~~~~
_configtest.c:21:5: warning: conflicting types for built-in function 'sinhl'
int sinhl (void);
^~~~~
_configtest.c:22:5: warning: conflicting types for built-in function 'fmodl'
int fmodl (void);
^~~~~
_configtest.c:23:5: warning: conflicting types for built-in function 'log1pl'
int log1pl (void);
^~~~~~
_configtest.c:24:5: warning: conflicting types for built-in function 'asinl'
int asinl (void);
^~~~~
_configtest.c:25:5: warning: conflicting types for built-in function 'ceill'
int ceill (void);
^~~~~
_configtest.c:26:5: warning: conflicting types for built-in function 'sinl'
int sinl (void);
^~~~
_configtest.c:27:5: warning: conflicting types for built-in function 'cbrtl'
int cbrtl (void);
^~~~~
_configtest.c:28:5: warning: conflicting types for built-in function 'acoshl'
int acoshl (void);
^~~~~~
_configtest.c:29:5: warning: conflicting types for built-in function 'atanhl'
int atanhl (void);
^~~~~~
_configtest.c:30:5: warning: conflicting types for built-in function 'tanl'
int tanl (void);
^~~~
_configtest.c:31:5: warning: conflicting types for built-in function 'truncl'
int truncl (void);
^~~~~~
_configtest.c:32:5: warning: conflicting types for built-in function 'powl'
int powl (void);
^~~~
_configtest.c:33:5: warning: conflicting types for built-in function 'expl'
int expl (void);
^~~~
_configtest.c:34:5: warning: conflicting types for built-in function 'modfl'
int modfl (void);
^~~~~
_configtest.c:35:5: warning: conflicting types for built-in function 'asinhl'
int asinhl (void);
^~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c: In function 'main':
_configtest.c:8:12: error: 'HAVE_DECL_SIGNBIT' undeclared (first use in this function)
(void) HAVE_DECL_SIGNBIT;
^~~~~~~~~~~~~~~~~
_configtest.c:8:12: note: each undeclared identifier is reported only once for each function it appears in
_configtest.c: In function 'main':
_configtest.c:8:12: error: 'HAVE_DECL_SIGNBIT' undeclared (first use in this function)
(void) HAVE_DECL_SIGNBIT;
^~~~~~~~~~~~~~~~~
_configtest.c:8:12: note: each undeclared identifier is reported only once for each function it appears in
failure.
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'clog'
int clog (void);
^~~~
_configtest.c:2:5: warning: conflicting types for built-in function 'ctan'
int ctan (void);
^~~~
_configtest.c:3:5: warning: conflicting types for built-in function 'casinh'
int casinh (void);
^~~~~~
_configtest.c:4:5: warning: conflicting types for built-in function 'cacosh'
int cacosh (void);
^~~~~~
_configtest.c:5:5: warning: conflicting types for built-in function 'cabs'
int cabs (void);
^~~~
_configtest.c:6:5: warning: conflicting types for built-in function 'conj'
int conj (void);
^~~~
_configtest.c:7:5: warning: conflicting types for built-in function 'csqrt'
int csqrt (void);
^~~~~
_configtest.c:8:5: warning: conflicting types for built-in function 'creal'
int creal (void);
^~~~~
_configtest.c:9:5: warning: conflicting types for built-in function 'cproj'
int cproj (void);
^~~~~
_configtest.c:10:5: warning: conflicting types for built-in function 'cpow'
int cpow (void);
^~~~
_configtest.c:11:5: warning: conflicting types for built-in function 'csinh'
int csinh (void);
^~~~~
_configtest.c:12:5: warning: conflicting types for built-in function 'catan'
int catan (void);
^~~~~
_configtest.c:13:5: warning: conflicting types for built-in function 'ctanh'
int ctanh (void);
^~~~~
_configtest.c:14:5: warning: conflicting types for built-in function 'ccosh'
int ccosh (void);
^~~~~
_configtest.c:15:5: warning: conflicting types for built-in function 'cimag'
int cimag (void);
^~~~~
_configtest.c:16:5: warning: conflicting types for built-in function 'casin'
int casin (void);
^~~~~
_configtest.c:17:5: warning: conflicting types for built-in function 'carg'
int carg (void);
^~~~
_configtest.c:18:5: warning: conflicting types for built-in function 'csin'
int csin (void);
^~~~
_configtest.c:19:5: warning: conflicting types for built-in function 'cexp'
int cexp (void);
^~~~
_configtest.c:20:5: warning: conflicting types for built-in function 'ccos'
int ccos (void);
^~~~
_configtest.c:21:5: warning: conflicting types for built-in function 'cacos'
int cacos (void);
^~~~~
_configtest.c:22:5: warning: conflicting types for built-in function 'catanh'
int catanh (void);
^~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'ctanhf'
int ctanhf (void);
^~~~~~
_configtest.c:2:5: warning: conflicting types for built-in function 'csinhf'
int csinhf (void);
^~~~~~
_configtest.c:3:5: warning: conflicting types for built-in function 'cprojf'
int cprojf (void);
^~~~~~
_configtest.c:4:5: warning: conflicting types for built-in function 'cacoshf'
int cacoshf (void);
^~~~~~~
_configtest.c:5:5: warning: conflicting types for built-in function 'cacosf'
int cacosf (void);
^~~~~~
_configtest.c:6:5: warning: conflicting types for built-in function 'cargf'
int cargf (void);
^~~~~
_configtest.c:7:5: warning: conflicting types for built-in function 'cpowf'
int cpowf (void);
^~~~~
_configtest.c:8:5: warning: conflicting types for built-in function 'csinf'
int csinf (void);
^~~~~
_configtest.c:9:5: warning: conflicting types for built-in function 'clogf'
int clogf (void);
^~~~~
_configtest.c:10:5: warning: conflicting types for built-in function 'ccoshf'
int ccoshf (void);
^~~~~~
_configtest.c:11:5: warning: conflicting types for built-in function 'conjf'
int conjf (void);
^~~~~
_configtest.c:12:5: warning: conflicting types for built-in function 'casinhf'
int casinhf (void);
^~~~~~~
_configtest.c:13:5: warning: conflicting types for built-in function 'ccosf'
int ccosf (void);
^~~~~
_configtest.c:14:5: warning: conflicting types for built-in function 'ctanf'
int ctanf (void);
^~~~~
_configtest.c:15:5: warning: conflicting types for built-in function 'cexpf'
int cexpf (void);
^~~~~
_configtest.c:16:5: warning: conflicting types for built-in function 'cimagf'
int cimagf (void);
^~~~~~
_configtest.c:17:5: warning: conflicting types for built-in function 'catanhf'
int catanhf (void);
^~~~~~~
_configtest.c:18:5: warning: conflicting types for built-in function 'casinf'
int casinf (void);
^~~~~~
_configtest.c:19:5: warning: conflicting types for built-in function 'catanf'
int catanf (void);
^~~~~~
_configtest.c:20:5: warning: conflicting types for built-in function 'csqrtf'
int csqrtf (void);
^~~~~~
_configtest.c:21:5: warning: conflicting types for built-in function 'crealf'
int crealf (void);
^~~~~~
_configtest.c:22:5: warning: conflicting types for built-in function 'cabsf'
int cabsf (void);
^~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'csinhl'
int csinhl (void);
^~~~~~
_configtest.c:2:5: warning: conflicting types for built-in function 'ctanhl'
int ctanhl (void);
^~~~~~
_configtest.c:3:5: warning: conflicting types for built-in function 'cacosl'
int cacosl (void);
^~~~~~
_configtest.c:4:5: warning: conflicting types for built-in function 'cacoshl'
int cacoshl (void);
^~~~~~~
_configtest.c:5:5: warning: conflicting types for built-in function 'cprojl'
int cprojl (void);
^~~~~~
_configtest.c:6:5: warning: conflicting types for built-in function 'cargl'
int cargl (void);
^~~~~
_configtest.c:7:5: warning: conflicting types for built-in function 'ccoshl'
int ccoshl (void);
^~~~~~
_configtest.c:8:5: warning: conflicting types for built-in function 'conjl'
int conjl (void);
^~~~~
_configtest.c:9:5: warning: conflicting types for built-in function 'csinl'
int csinl (void);
^~~~~
_configtest.c:10:5: warning: conflicting types for built-in function 'clogl'
int clogl (void);
^~~~~
_configtest.c:11:5: warning: conflicting types for built-in function 'cexpl'
int cexpl (void);
^~~~~
_configtest.c:12:5: warning: conflicting types for built-in function 'ccosl'
int ccosl (void);
^~~~~
_configtest.c:13:5: warning: conflicting types for built-in function 'ctanl'
int ctanl (void);
^~~~~
_configtest.c:14:5: warning: conflicting types for built-in function 'cpowl'
int cpowl (void);
^~~~~
_configtest.c:15:5: warning: conflicting types for built-in function 'casinhl'
int casinhl (void);
^~~~~~~
_configtest.c:16:5: warning: conflicting types for built-in function 'csqrtl'
int csqrtl (void);
^~~~~~
_configtest.c:17:5: warning: conflicting types for built-in function 'casinl'
int casinl (void);
^~~~~~
_configtest.c:18:5: warning: conflicting types for built-in function 'catanl'
int catanl (void);
^~~~~~
_configtest.c:19:5: warning: conflicting types for built-in function 'catanhl'
int catanhl (void);
^~~~~~~
_configtest.c:20:5: warning: conflicting types for built-in function 'creall'
int creall (void);
^~~~~~
_configtest.c:21:5: warning: conflicting types for built-in function 'cabsl'
int cabsl (void);
^~~~~
_configtest.c:22:5: warning: conflicting types for built-in function 'cimagl'
int cimagl (void);
^~~~~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:2:12: warning: 'static_func' defined but not used [-Wunused-function]
static int static_func (char * restrict a)
^~~~~~~~~~~
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
removing: _configtest.c _configtest.o
File: build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h
#define HAVE_ENDIAN_H 1
#define SIZEOF_PY_INTPTR_T 8
#define SIZEOF_OFF_T 8
#define SIZEOF_PY_LONG_LONG 8
#define MATHLIB
#define HAVE_SIN 1
#define HAVE_COS 1
#define HAVE_TAN 1
#define HAVE_SINH 1
#define HAVE_COSH 1
#define HAVE_TANH 1
#define HAVE_FABS 1
#define HAVE_FLOOR 1
#define HAVE_CEIL 1
#define HAVE_SQRT 1
#define HAVE_LOG10 1
#define HAVE_LOG 1
#define HAVE_EXP 1
#define HAVE_ASIN 1
#define HAVE_ACOS 1
#define HAVE_ATAN 1
#define HAVE_FMOD 1
#define HAVE_MODF 1
#define HAVE_FREXP 1
#define HAVE_LDEXP 1
#define HAVE_RINT 1
#define HAVE_TRUNC 1
#define HAVE_EXP2 1
#define HAVE_LOG2 1
#define HAVE_ATAN2 1
#define HAVE_POW 1
#define HAVE_NEXTAFTER 1
#define HAVE_STRTOLL 1
#define HAVE_STRTOULL 1
#define HAVE_CBRT 1
#define HAVE_STRTOLD_L 1
#define HAVE_FALLOCATE 1
#define HAVE_XMMINTRIN_H 1
#define HAVE_EMMINTRIN_H 1
#define HAVE_FEATURES_H 1
#define HAVE_XLOCALE_H 1
#define HAVE_DLFCN_H 1
#define HAVE___BUILTIN_ISNAN 1
#define HAVE___BUILTIN_ISINF 1
#define HAVE___BUILTIN_ISFINITE 1
#define HAVE___BUILTIN_BSWAP32 1
#define HAVE___BUILTIN_BSWAP64 1
#define HAVE___BUILTIN_EXPECT 1
#define HAVE___BUILTIN_MUL_OVERFLOW 1
#define HAVE___BUILTIN_CPU_SUPPORTS 1
#define HAVE__M_FROM_INT64 1
#define HAVE__MM_LOAD_PS 1
#define HAVE__MM_PREFETCH 1
#define HAVE__MM_LOAD_PD 1
#define HAVE___BUILTIN_PREFETCH 1
#define HAVE_LINK_AVX 1
#define HAVE_LINK_AVX2 1
#define HAVE_ATTRIBUTE_OPTIMIZE_UNROLL_LOOPS 1
#define HAVE_ATTRIBUTE_OPTIMIZE_OPT_3 1
#define HAVE_ATTRIBUTE_NONNULL 1
#define HAVE_ATTRIBUTE_TARGET_AVX 1
#define HAVE_ATTRIBUTE_TARGET_AVX2 1
#define HAVE___THREAD 1
#define HAVE_SINF 1
#define HAVE_COSF 1
#define HAVE_TANF 1
#define HAVE_SINHF 1
#define HAVE_COSHF 1
#define HAVE_TANHF 1
#define HAVE_FABSF 1
#define HAVE_FLOORF 1
#define HAVE_CEILF 1
#define HAVE_RINTF 1
#define HAVE_TRUNCF 1
#define HAVE_SQRTF 1
#define HAVE_LOG10F 1
#define HAVE_LOGF 1
#define HAVE_LOG1PF 1
#define HAVE_EXPF 1
#define HAVE_EXPM1F 1
#define HAVE_ASINF 1
#define HAVE_ACOSF 1
#define HAVE_ATANF 1
#define HAVE_ASINHF 1
#define HAVE_ACOSHF 1
#define HAVE_ATANHF 1
#define HAVE_HYPOTF 1
#define HAVE_ATAN2F 1
#define HAVE_POWF 1
#define HAVE_FMODF 1
#define HAVE_MODFF 1
#define HAVE_FREXPF 1
#define HAVE_LDEXPF 1
#define HAVE_EXP2F 1
#define HAVE_LOG2F 1
#define HAVE_COPYSIGNF 1
#define HAVE_NEXTAFTERF 1
#define HAVE_CBRTF 1
#define HAVE_SINL 1
#define HAVE_COSL 1
#define HAVE_TANL 1
#define HAVE_SINHL 1
#define HAVE_COSHL 1
#define HAVE_TANHL 1
#define HAVE_FABSL 1
#define HAVE_FLOORL 1
#define HAVE_CEILL 1
#define HAVE_RINTL 1
#define HAVE_TRUNCL 1
#define HAVE_SQRTL 1
#define HAVE_LOG10L 1
#define HAVE_LOGL 1
#define HAVE_LOG1PL 1
#define HAVE_EXPL 1
#define HAVE_EXPM1L 1
#define HAVE_ASINL 1
#define HAVE_ACOSL 1
#define HAVE_ATANL 1
#define HAVE_ASINHL 1
#define HAVE_ACOSHL 1
#define HAVE_ATANHL 1
#define HAVE_HYPOTL 1
#define HAVE_ATAN2L 1
#define HAVE_POWL 1
#define HAVE_FMODL 1
#define HAVE_MODFL 1
#define HAVE_FREXPL 1
#define HAVE_LDEXPL 1
#define HAVE_EXP2L 1
#define HAVE_LOG2L 1
#define HAVE_COPYSIGNL 1
#define HAVE_NEXTAFTERL 1
#define HAVE_CBRTL 1
#define HAVE_DECL_SIGNBIT
#define HAVE_COMPLEX_H 1
#define HAVE_CABS 1
#define HAVE_CACOS 1
#define HAVE_CACOSH 1
#define HAVE_CARG 1
#define HAVE_CASIN 1
#define HAVE_CASINH 1
#define HAVE_CATAN 1
#define HAVE_CATANH 1
#define HAVE_CCOS 1
#define HAVE_CCOSH 1
#define HAVE_CEXP 1
#define HAVE_CIMAG 1
#define HAVE_CLOG 1
#define HAVE_CONJ 1
#define HAVE_CPOW 1
#define HAVE_CPROJ 1
#define HAVE_CREAL 1
#define HAVE_CSIN 1
#define HAVE_CSINH 1
#define HAVE_CSQRT 1
#define HAVE_CTAN 1
#define HAVE_CTANH 1
#define HAVE_CABSF 1
#define HAVE_CACOSF 1
#define HAVE_CACOSHF 1
#define HAVE_CARGF 1
#define HAVE_CASINF 1
#define HAVE_CASINHF 1
#define HAVE_CATANF 1
#define HAVE_CATANHF 1
#define HAVE_CCOSF 1
#define HAVE_CCOSHF 1
#define HAVE_CEXPF 1
#define HAVE_CIMAGF 1
#define HAVE_CLOGF 1
#define HAVE_CONJF 1
#define HAVE_CPOWF 1
#define HAVE_CPROJF 1
#define HAVE_CREALF 1
#define HAVE_CSINF 1
#define HAVE_CSINHF 1
#define HAVE_CSQRTF 1
#define HAVE_CTANF 1
#define HAVE_CTANHF 1
#define HAVE_CABSL 1
#define HAVE_CACOSL 1
#define HAVE_CACOSHL 1
#define HAVE_CARGL 1
#define HAVE_CASINL 1
#define HAVE_CASINHL 1
#define HAVE_CATANL 1
#define HAVE_CATANHL 1
#define HAVE_CCOSL 1
#define HAVE_CCOSHL 1
#define HAVE_CEXPL 1
#define HAVE_CIMAGL 1
#define HAVE_CLOGL 1
#define HAVE_CONJL 1
#define HAVE_CPOWL 1
#define HAVE_CPROJL 1
#define HAVE_CREALL 1
#define HAVE_CSINL 1
#define HAVE_CSINHL 1
#define HAVE_CSQRTL 1
#define HAVE_CTANL 1
#define HAVE_CTANHL 1
#define NPY_RESTRICT restrict
#define NPY_RELAXED_STRIDES_CHECKING 1
#define HAVE_LDOUBLE_INTEL_EXTENDED_16_BYTES_LE 1
#ifndef __cplusplus
/* #undef inline */
#endif
#ifndef _NPY_NPY_CONFIG_H_
#error config.h should never be included directly, include npy_config.h instead
#endif
EOF
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h' to sources.
Generating build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'exp'
int exp (void);
^~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
success!
removing: _configtest.c _configtest.o
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:3:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
main()
^~~~
success!
removing: _configtest.c _configtest.o
File: build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h
#define NPY_HAVE_ENDIAN_H 1
#define NPY_SIZEOF_SHORT SIZEOF_SHORT
#define NPY_SIZEOF_INT SIZEOF_INT
#define NPY_SIZEOF_LONG SIZEOF_LONG
#define NPY_SIZEOF_FLOAT 4
#define NPY_SIZEOF_COMPLEX_FLOAT 8
#define NPY_SIZEOF_DOUBLE 8
#define NPY_SIZEOF_COMPLEX_DOUBLE 16
#define NPY_SIZEOF_LONGDOUBLE 16
#define NPY_SIZEOF_COMPLEX_LONGDOUBLE 32
#define NPY_SIZEOF_PY_INTPTR_T 8
#define NPY_SIZEOF_OFF_T 8
#define NPY_SIZEOF_PY_LONG_LONG 8
#define NPY_SIZEOF_LONGLONG 8
#define NPY_NO_SMP 0
#define NPY_HAVE_DECL_ISNAN
#define NPY_HAVE_DECL_ISINF
#define NPY_HAVE_DECL_ISFINITE
#define NPY_HAVE_DECL_SIGNBIT
#define NPY_USE_C99_COMPLEX 1
#define NPY_HAVE_COMPLEX_DOUBLE 1
#define NPY_HAVE_COMPLEX_FLOAT 1
#define NPY_HAVE_COMPLEX_LONG_DOUBLE 1
#define NPY_RELAXED_STRIDES_CHECKING 1
#define NPY_USE_C99_FORMATS 1
#define NPY_VISIBILITY_HIDDEN __attribute__((visibility("hidden")))
#define NPY_ABI_VERSION 0x01000009
#define NPY_API_VERSION 0x0000000C
#ifndef __STDC_FORMAT_MACROS
#define __STDC_FORMAT_MACROS 1
#endif
EOF
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h' to sources.
executing numpy/core/code_generators/generate_numpy_api.py
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__multiarray_api.h' to sources.
numpy.core - nothing done with h_files = ['build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__multiarray_api.h']
building extension "numpy.core.multiarray" sources
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h' to sources.
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h' to sources.
executing numpy/core/code_generators/generate_numpy_api.py
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__multiarray_api.h' to sources.
creating build/src.linux-x86_64-2.7/numpy/core/src/multiarray
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/multiarray/arraytypes.c
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/multiarray/einsum.c
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/multiarray/lowlevel_strided_loops.c
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/multiarray/nditer_templ.c
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/multiarray/scalartypes.c
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/private/templ_common.h
adding 'build/src.linux-x86_64-2.7/numpy/core/src/private' to include_dirs.
numpy.core - nothing done with h_files = ['build/src.linux-x86_64-2.7/numpy/core/src/private/templ_common.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__multiarray_api.h']
building extension "numpy.core.umath" sources
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h' to sources.
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h' to sources.
executing numpy/core/code_generators/generate_ufunc_api.py
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__ufunc_api.h' to sources.
creating build/src.linux-x86_64-2.7/numpy/core/src/umath
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/umath/funcs.inc
adding 'build/src.linux-x86_64-2.7/numpy/core/src/umath' to include_dirs.
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/umath/simd.inc
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/umath/loops.h
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/umath/loops.c
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/umath/scalarmath.c
numpy.core - nothing done with h_files = ['build/src.linux-x86_64-2.7/numpy/core/src/umath/funcs.inc', 'build/src.linux-x86_64-2.7/numpy/core/src/umath/simd.inc', 'build/src.linux-x86_64-2.7/numpy/core/src/umath/loops.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__ufunc_api.h']
building extension "numpy.core.umath_tests" sources
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/umath/umath_tests.c
building extension "numpy.core.test_rational" sources
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/umath/test_rational.c
building extension "numpy.core.struct_ufunc_test" sources
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/umath/struct_ufunc_test.c
building extension "numpy.core.multiarray_tests" sources
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/multiarray/multiarray_tests.c
building extension "numpy.core.operand_flag_tests" sources
conv_template:> build/src.linux-x86_64-2.7/numpy/core/src/umath/operand_flag_tests.c
building extension "numpy.fft.fftpack_lite" sources
building extension "numpy.linalg.lapack_lite" sources
creating build/src.linux-x86_64-2.7/numpy/linalg
### Warning: Using unoptimized lapack ###
adding 'numpy/linalg/lapack_lite/python_xerbla.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_z_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_c_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_d_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_s_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_blas.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_config.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c.c' to sources.
building extension "numpy.linalg._umath_linalg" sources
### Warning: Using unoptimized lapack ###
adding 'numpy/linalg/lapack_lite/python_xerbla.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_z_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_c_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_d_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_s_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_blas.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_config.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c.c' to sources.
conv_template:> build/src.linux-x86_64-2.7/numpy/linalg/umath_linalg.c
building extension "numpy.random.mtrand" sources
creating build/src.linux-x86_64-2.7/numpy/random
building data_files sources
build_src: building npy-pkg config files
running build_py
creating build/lib.linux-x86_64-2.7
creating build/lib.linux-x86_64-2.7/numpy
copying numpy/add_newdocs.py -> build/lib.linux-x86_64-2.7/numpy
copying numpy/matlib.py -> build/lib.linux-x86_64-2.7/numpy
copying numpy/_globals.py -> build/lib.linux-x86_64-2.7/numpy
copying numpy/ctypeslib.py -> build/lib.linux-x86_64-2.7/numpy
copying numpy/conftest.py -> build/lib.linux-x86_64-2.7/numpy
copying numpy/dual.py -> build/lib.linux-x86_64-2.7/numpy
copying numpy/version.py -> build/lib.linux-x86_64-2.7/numpy
copying numpy/__init__.py -> build/lib.linux-x86_64-2.7/numpy
copying numpy/_distributor_init.py -> build/lib.linux-x86_64-2.7/numpy
copying numpy/_import_tools.py -> build/lib.linux-x86_64-2.7/numpy
copying numpy/setup.py -> build/lib.linux-x86_64-2.7/numpy
copying build/src.linux-x86_64-2.7/numpy/__config__.py -> build/lib.linux-x86_64-2.7/numpy
creating build/lib.linux-x86_64-2.7/numpy/compat
copying numpy/compat/__init__.py -> build/lib.linux-x86_64-2.7/numpy/compat
copying numpy/compat/py3k.py -> build/lib.linux-x86_64-2.7/numpy/compat
copying numpy/compat/_inspect.py -> build/lib.linux-x86_64-2.7/numpy/compat
copying numpy/compat/setup.py -> build/lib.linux-x86_64-2.7/numpy/compat
creating build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/info.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/arrayprint.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/numerictypes.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/getlimits.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/_methods.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/defchararray.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/setup_common.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/records.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/einsumfunc.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/_internal.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/__init__.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/machar.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/shape_base.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/function_base.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/fromnumeric.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/setup.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/cversions.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/numeric.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/memmap.py -> build/lib.linux-x86_64-2.7/numpy/core
copying numpy/core/code_generators/generate_numpy_api.py -> build/lib.linux-x86_64-2.7/numpy/core
creating build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/info.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/environment.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/log.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/core.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/pathccompiler.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/__version__.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/mingw32ccompiler.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/lib2def.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/numpy_distribution.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/msvc9compiler.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/npy_pkg_config.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/__init__.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/cpuinfo.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/extension.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/intelccompiler.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/ccompiler.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/compat.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/msvccompiler.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/from_template.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/line_endings.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/unixccompiler.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/conv_template.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/setup.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/misc_util.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/system_info.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying numpy/distutils/exec_command.py -> build/lib.linux-x86_64-2.7/numpy/distutils
copying build/src.linux-x86_64-2.7/numpy/distutils/__config__.py -> build/lib.linux-x86_64-2.7/numpy/distutils
creating build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/install.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/sdist.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/build_ext.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/autodist.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/build_scripts.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/egg_info.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/install_data.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/build_py.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/build_src.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/__init__.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/bdist_rpm.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/build.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/build_clib.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/config_compiler.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/develop.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/config.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/install_clib.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
copying numpy/distutils/command/install_headers.py -> build/lib.linux-x86_64-2.7/numpy/distutils/command
creating build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/vast.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/ibm.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/intel.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/hpux.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/__init__.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/compaq.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/mips.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/none.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/sun.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/nag.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/pg.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/lahey.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/gnu.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/absoft.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/g95.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
copying numpy/distutils/fcompiler/pathf95.py -> build/lib.linux-x86_64-2.7/numpy/distutils/fcompiler
creating build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/constants.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/ufuncs.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/indexing.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/broadcasting.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/basics.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/misc.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/byteswapping.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/subclassing.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/__init__.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/creation.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/structured_arrays.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/glossary.py -> build/lib.linux-x86_64-2.7/numpy/doc
copying numpy/doc/internals.py -> build/lib.linux-x86_64-2.7/numpy/doc
creating build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/info.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/use_rules.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/capi_maps.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/common_rules.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/auxfuncs.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/rules.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/__version__.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/__main__.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/__init__.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/f2py_testing.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/diagnose.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/cfuncs.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/f2py2e.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/func2subr.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/setup.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/crackfortran.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/cb_rules.py -> build/lib.linux-x86_64-2.7/numpy/f2py
copying numpy/f2py/f90mod_rules.py -> build/lib.linux-x86_64-2.7/numpy/f2py
creating build/lib.linux-x86_64-2.7/numpy/fft
copying numpy/fft/info.py -> build/lib.linux-x86_64-2.7/numpy/fft
copying numpy/fft/fftpack.py -> build/lib.linux-x86_64-2.7/numpy/fft
copying numpy/fft/__init__.py -> build/lib.linux-x86_64-2.7/numpy/fft
copying numpy/fft/helper.py -> build/lib.linux-x86_64-2.7/numpy/fft
copying numpy/fft/setup.py -> build/lib.linux-x86_64-2.7/numpy/fft
creating build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/info.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/arrayterator.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/format.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/recfunctions.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/_iotools.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/_datasource.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/user_array.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/twodim_base.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/scimath.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/mixins.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/__init__.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/arraysetops.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/shape_base.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/type_check.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/function_base.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/polynomial.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/stride_tricks.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/nanfunctions.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/financial.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/utils.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/index_tricks.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/setup.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/ufunclike.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/_version.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/arraypad.py -> build/lib.linux-x86_64-2.7/numpy/lib
copying numpy/lib/npyio.py -> build/lib.linux-x86_64-2.7/numpy/lib
creating build/lib.linux-x86_64-2.7/numpy/linalg
copying numpy/linalg/info.py -> build/lib.linux-x86_64-2.7/numpy/linalg
copying numpy/linalg/linalg.py -> build/lib.linux-x86_64-2.7/numpy/linalg
copying numpy/linalg/__init__.py -> build/lib.linux-x86_64-2.7/numpy/linalg
copying numpy/linalg/setup.py -> build/lib.linux-x86_64-2.7/numpy/linalg
creating build/lib.linux-x86_64-2.7/numpy/ma
copying numpy/ma/core.py -> build/lib.linux-x86_64-2.7/numpy/ma
copying numpy/ma/bench.py -> build/lib.linux-x86_64-2.7/numpy/ma
copying numpy/ma/timer_comparison.py -> build/lib.linux-x86_64-2.7/numpy/ma
copying numpy/ma/testutils.py -> build/lib.linux-x86_64-2.7/numpy/ma
copying numpy/ma/version.py -> build/lib.linux-x86_64-2.7/numpy/ma
copying numpy/ma/__init__.py -> build/lib.linux-x86_64-2.7/numpy/ma
copying numpy/ma/extras.py -> build/lib.linux-x86_64-2.7/numpy/ma
copying numpy/ma/setup.py -> build/lib.linux-x86_64-2.7/numpy/ma
copying numpy/ma/mrecords.py -> build/lib.linux-x86_64-2.7/numpy/ma
creating build/lib.linux-x86_64-2.7/numpy/matrixlib
copying numpy/matrixlib/__init__.py -> build/lib.linux-x86_64-2.7/numpy/matrixlib
copying numpy/matrixlib/setup.py -> build/lib.linux-x86_64-2.7/numpy/matrixlib
copying numpy/matrixlib/defmatrix.py -> build/lib.linux-x86_64-2.7/numpy/matrixlib
creating build/lib.linux-x86_64-2.7/numpy/polynomial
copying numpy/polynomial/legendre.py -> build/lib.linux-x86_64-2.7/numpy/polynomial
copying numpy/polynomial/chebyshev.py -> build/lib.linux-x86_64-2.7/numpy/polynomial
copying numpy/polynomial/polyutils.py -> build/lib.linux-x86_64-2.7/numpy/polynomial
copying numpy/polynomial/hermite.py -> build/lib.linux-x86_64-2.7/numpy/polynomial
copying numpy/polynomial/__init__.py -> build/lib.linux-x86_64-2.7/numpy/polynomial
copying numpy/polynomial/laguerre.py -> build/lib.linux-x86_64-2.7/numpy/polynomial
copying numpy/polynomial/polynomial.py -> build/lib.linux-x86_64-2.7/numpy/polynomial
copying numpy/polynomial/hermite_e.py -> build/lib.linux-x86_64-2.7/numpy/polynomial
copying numpy/polynomial/_polybase.py -> build/lib.linux-x86_64-2.7/numpy/polynomial
copying numpy/polynomial/setup.py -> build/lib.linux-x86_64-2.7/numpy/polynomial
creating build/lib.linux-x86_64-2.7/numpy/random
copying numpy/random/info.py -> build/lib.linux-x86_64-2.7/numpy/random
copying numpy/random/__init__.py -> build/lib.linux-x86_64-2.7/numpy/random
copying numpy/random/setup.py -> build/lib.linux-x86_64-2.7/numpy/random
creating build/lib.linux-x86_64-2.7/numpy/testing
copying numpy/testing/noseclasses.py -> build/lib.linux-x86_64-2.7/numpy/testing
copying numpy/testing/print_coercion_tables.py -> build/lib.linux-x86_64-2.7/numpy/testing
copying numpy/testing/nosetester.py -> build/lib.linux-x86_64-2.7/numpy/testing
copying numpy/testing/__init__.py -> build/lib.linux-x86_64-2.7/numpy/testing
copying numpy/testing/decorators.py -> build/lib.linux-x86_64-2.7/numpy/testing
copying numpy/testing/utils.py -> build/lib.linux-x86_64-2.7/numpy/testing
copying numpy/testing/setup.py -> build/lib.linux-x86_64-2.7/numpy/testing
creating build/lib.linux-x86_64-2.7/numpy/testing/nose_tools
copying numpy/testing/nose_tools/noseclasses.py -> build/lib.linux-x86_64-2.7/numpy/testing/nose_tools
copying numpy/testing/nose_tools/nosetester.py -> build/lib.linux-x86_64-2.7/numpy/testing/nose_tools
copying numpy/testing/nose_tools/__init__.py -> build/lib.linux-x86_64-2.7/numpy/testing/nose_tools
copying numpy/testing/nose_tools/decorators.py -> build/lib.linux-x86_64-2.7/numpy/testing/nose_tools
copying numpy/testing/nose_tools/utils.py -> build/lib.linux-x86_64-2.7/numpy/testing/nose_tools
copying numpy/testing/nose_tools/parameterized.py -> build/lib.linux-x86_64-2.7/numpy/testing/nose_tools
running build_clib
customize UnixCCompiler
customize UnixCCompiler using build_clib
building 'npymath' library
compiling C sources
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
creating build/temp.linux-x86_64-2.7
creating build/temp.linux-x86_64-2.7/numpy
creating build/temp.linux-x86_64-2.7/numpy/core
creating build/temp.linux-x86_64-2.7/numpy/core/src
creating build/temp.linux-x86_64-2.7/numpy/core/src/npymath
creating build/temp.linux-x86_64-2.7/build
creating build/temp.linux-x86_64-2.7/build/src.linux-x86_64-2.7
creating build/temp.linux-x86_64-2.7/build/src.linux-x86_64-2.7/numpy
creating build/temp.linux-x86_64-2.7/build/src.linux-x86_64-2.7/numpy/core
creating build/temp.linux-x86_64-2.7/build/src.linux-x86_64-2.7/numpy/core/src
creating build/temp.linux-x86_64-2.7/build/src.linux-x86_64-2.7/numpy/core/src/npymath
compile options: '-Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Inumpy/core/include -Ibuild/src.linux-x86_64-2.7/numpy/core/include/numpy -Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -c'
gcc: numpy/core/src/npymath/halffloat.c
gcc: build/src.linux-x86_64-2.7/numpy/core/src/npymath/ieee754.c
In file included from numpy/core/src/npymath/ieee754.c.src:9:0:
numpy/core/include/numpy/utils.h:17:24: error: pasting "__NPY_UNUSED_TAGGED" and "*" does not give a valid preprocessing token
#define NPY_UNUSED(x) (__NPY_UNUSED_TAGGED ## x) __COMP_NPY_UNUSED
^
numpy/core/src/npymath/ieee754.c.src:802:38: note: in expansion of macro 'NPY_UNUSED'
int npy_get_floatstatus_barrier(char NPY_UNUSED(*param))
^~~~~~~~~~
numpy/core/src/npymath/ieee754.c.src:802:49: error: expected ')' before '*' token
int npy_get_floatstatus_barrier(char NPY_UNUSED(*param))
^
numpy/core/include/numpy/utils.h:17:47: note: in definition of macro 'NPY_UNUSED'
#define NPY_UNUSED(x) (__NPY_UNUSED_TAGGED ## x) __COMP_NPY_UNUSED
^
numpy/core/src/npymath/ieee754.c.src: In function 'npy_clear_floatstatus_barrier':
numpy/core/src/npymath/ieee754.c.src:809:9: warning: unused variable 'fpstatus' [-Wunused-variable]
int fpstatus = npy_get_floatstatus_barrier(param);
^~~~~~~~
In file included from numpy/core/src/npymath/ieee754.c.src:9:0:
numpy/core/include/numpy/utils.h:17:24: error: pasting "__NPY_UNUSED_TAGGED" and "*" does not give a valid preprocessing token
#define NPY_UNUSED(x) (__NPY_UNUSED_TAGGED ## x) __COMP_NPY_UNUSED
^
numpy/core/src/npymath/ieee754.c.src:802:38: note: in expansion of macro 'NPY_UNUSED'
int npy_get_floatstatus_barrier(char NPY_UNUSED(*param))
^~~~~~~~~~
numpy/core/src/npymath/ieee754.c.src:802:49: error: expected ')' before '*' token
int npy_get_floatstatus_barrier(char NPY_UNUSED(*param))
^
numpy/core/include/numpy/utils.h:17:47: note: in definition of macro 'NPY_UNUSED'
#define NPY_UNUSED(x) (__NPY_UNUSED_TAGGED ## x) __COMP_NPY_UNUSED
^
numpy/core/src/npymath/ieee754.c.src: In function 'npy_clear_floatstatus_barrier':
numpy/core/src/npymath/ieee754.c.src:809:9: warning: unused variable 'fpstatus' [-Wunused-variable]
int fpstatus = npy_get_floatstatus_barrier(param);
^~~~~~~~
error: Command "gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Inumpy/core/include -Ibuild/src.linux-x86_64-2.7/numpy/core/include/numpy -Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -c build/src.linux-x86_64-2.7/numpy/core/src/npymath/ieee754.c -o build/temp.linux-x86_64-2.7/build/src.linux-x86_64-2.7/numpy/core/src/npymath/ieee754.o -MMD -MF build/temp.linux-x86_64-2.7/build/src.linux-x86_64-2.7/numpy/core/src/npymath/ieee754.o.d" failed with exit status 1
----------------------------------------
Failed building wheel for numpy
Running setup.py clean for numpy
Complete output from command /usr/local/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-pYwQAe/numpy/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" clean --all:
Running from numpy source directory.
`setup.py clean` is not supported, use one of the following instead:
- `git clean -xdf` (cleans all files)
- `git clean -Xdf` (cleans all versioned files, doesn't touch
files that aren't checked into the git repo)
Add `--force` to your command to use it anyway if you must (unsupported).
----------------------------------------
Failed cleaning build dir for numpy
Failed to build numpy
Installing collected packages: numpy
Running setup.py install for numpy: started
Running setup.py install for numpy: finished with status 'error'
Complete output from command /usr/local/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-pYwQAe/numpy/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-record-YHx81c/install-record.txt --single-version-externally-managed --compile:
Running from numpy source directory.
Note: if you need reliable uninstall behavior, then install
with pip instead of using `setup.py install`:
- `pip install .` (from a git repo or downloaded source
release)
- `pip install numpy` (last NumPy release on PyPi)
blas_opt_info:
blas_mkl_info:
customize UnixCCompiler
libraries mkl_rt not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
blis_info:
customize UnixCCompiler
libraries blis not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
openblas_info:
customize UnixCCompiler
customize UnixCCompiler
libraries openblas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
atlas_3_10_blas_threads_info:
Setting PTATLAS=ATLAS
customize UnixCCompiler
libraries tatlas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
atlas_3_10_blas_info:
customize UnixCCompiler
libraries satlas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
atlas_blas_threads_info:
Setting PTATLAS=ATLAS
customize UnixCCompiler
libraries ptf77blas,ptcblas,atlas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
atlas_blas_info:
customize UnixCCompiler
libraries f77blas,cblas,atlas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
/tmp/pip-install-pYwQAe/numpy/numpy/distutils/system_info.py:624: UserWarning:
Atlas (http://math-atlas.sourceforge.net/) libraries not found.
Directories to search for the libraries can be specified in the
numpy/distutils/site.cfg file (section [atlas]) or by setting
the ATLAS environment variable.
self.calc_info()
blas_info:
customize UnixCCompiler
libraries blas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
/tmp/pip-install-pYwQAe/numpy/numpy/distutils/system_info.py:624: UserWarning:
Blas (http://www.netlib.org/blas/) libraries not found.
Directories to search for the libraries can be specified in the
numpy/distutils/site.cfg file (section [blas]) or by setting
the BLAS environment variable.
self.calc_info()
blas_src_info:
NOT AVAILABLE
/tmp/pip-install-pYwQAe/numpy/numpy/distutils/system_info.py:624: UserWarning:
Blas (http://www.netlib.org/blas/) sources not found.
Directories to search for the sources can be specified in the
numpy/distutils/site.cfg file (section [blas_src]) or by setting
the BLAS_SRC environment variable.
self.calc_info()
NOT AVAILABLE
/bin/sh: svnversion: not found
non-existing path in 'numpy/distutils': 'site.cfg'
/bin/sh: svnversion: not found
F2PY Version 2
lapack_opt_info:
lapack_mkl_info:
customize UnixCCompiler
libraries mkl_rt not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
openblas_lapack_info:
customize UnixCCompiler
customize UnixCCompiler
libraries openblas not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
openblas_clapack_info:
customize UnixCCompiler
customize UnixCCompiler
libraries openblas,lapack not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
atlas_3_10_threads_info:
Setting PTATLAS=ATLAS
customize UnixCCompiler
libraries tatlas,tatlas not found in /usr/local/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/local/lib
customize UnixCCompiler
libraries tatlas,tatlas not found in /usr/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib
customize UnixCCompiler
libraries tatlas,tatlas not found in /usr/lib/
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib/
<class 'numpy.distutils.system_info.atlas_3_10_threads_info'>
NOT AVAILABLE
atlas_3_10_info:
customize UnixCCompiler
libraries satlas,satlas not found in /usr/local/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/local/lib
customize UnixCCompiler
libraries satlas,satlas not found in /usr/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib
customize UnixCCompiler
libraries satlas,satlas not found in /usr/lib/
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib/
<class 'numpy.distutils.system_info.atlas_3_10_info'>
NOT AVAILABLE
atlas_threads_info:
Setting PTATLAS=ATLAS
customize UnixCCompiler
libraries ptf77blas,ptcblas,atlas not found in /usr/local/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/local/lib
customize UnixCCompiler
libraries ptf77blas,ptcblas,atlas not found in /usr/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib
customize UnixCCompiler
libraries ptf77blas,ptcblas,atlas not found in /usr/lib/
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib/
<class 'numpy.distutils.system_info.atlas_threads_info'>
NOT AVAILABLE
atlas_info:
customize UnixCCompiler
libraries f77blas,cblas,atlas not found in /usr/local/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/local/lib
customize UnixCCompiler
libraries f77blas,cblas,atlas not found in /usr/lib
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib
customize UnixCCompiler
libraries f77blas,cblas,atlas not found in /usr/lib/
customize UnixCCompiler
libraries lapack_atlas not found in /usr/lib/
<class 'numpy.distutils.system_info.atlas_info'>
NOT AVAILABLE
lapack_info:
customize UnixCCompiler
libraries lapack not found in ['/usr/local/lib', '/usr/lib', '/usr/lib/']
NOT AVAILABLE
/tmp/pip-install-pYwQAe/numpy/numpy/distutils/system_info.py:624: UserWarning:
Lapack (http://www.netlib.org/lapack/) libraries not found.
Directories to search for the libraries can be specified in the
numpy/distutils/site.cfg file (section [lapack]) or by setting
the LAPACK environment variable.
self.calc_info()
lapack_src_info:
NOT AVAILABLE
/tmp/pip-install-pYwQAe/numpy/numpy/distutils/system_info.py:624: UserWarning:
Lapack (http://www.netlib.org/lapack/) sources not found.
Directories to search for the sources can be specified in the
numpy/distutils/site.cfg file (section [lapack_src]) or by setting
the LAPACK_SRC environment variable.
self.calc_info()
NOT AVAILABLE
/usr/local/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'define_macros'
warnings.warn(msg)
running install
running build
running config_cc
unifing config_cc, config, build_clib, build_ext, build commands --compiler options
running config_fc
unifing config_fc, config, build_clib, build_ext, build commands --fcompiler options
running build_src
build_src
building py_modules sources
building library "npymath" sources
get_default_fcompiler: matching types: '['gnu95', 'intel', 'lahey', 'pg', 'absoft', 'nag', 'vast', 'compaq', 'intele', 'intelem', 'gnu', 'g95', 'pathf95', 'nagfor']'
customize Gnu95FCompiler
Found executable /usr/bin/gfortran
customize Gnu95FCompiler
customize Gnu95FCompiler using config
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -c'
gcc: _configtest.c
_configtest.c:1:5: warning: conflicting types for built-in function 'exp'
int exp (void);
^~~
gcc _configtest.o -o _configtest
success!
removing: _configtest.c _configtest.o _configtest
adding 'build/src.linux-x86_64-2.7/numpy/core/src/npymath' to include_dirs.
None - nothing done with h_files = ['build/src.linux-x86_64-2.7/numpy/core/src/npymath/npy_math_internal.h']
building library "npysort" sources
adding 'build/src.linux-x86_64-2.7/numpy/core/src/private' to include_dirs.
None - nothing done with h_files = ['build/src.linux-x86_64-2.7/numpy/core/src/private/npy_partition.h', 'build/src.linux-x86_64-2.7/numpy/core/src/private/npy_binsearch.h']
building extension "numpy.core._dummy" sources
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h' to sources.
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h' to sources.
executing numpy/core/code_generators/generate_numpy_api.py
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__multiarray_api.h' to sources.
numpy.core - nothing done with h_files = ['build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__multiarray_api.h']
building extension "numpy.core.multiarray" sources
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h' to sources.
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h' to sources.
executing numpy/core/code_generators/generate_numpy_api.py
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__multiarray_api.h' to sources.
adding 'build/src.linux-x86_64-2.7/numpy/core/src/private' to include_dirs.
numpy.core - nothing done with h_files = ['build/src.linux-x86_64-2.7/numpy/core/src/private/templ_common.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__multiarray_api.h']
building extension "numpy.core.umath" sources
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h' to sources.
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h' to sources.
executing numpy/core/code_generators/generate_ufunc_api.py
adding 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__ufunc_api.h' to sources.
adding 'build/src.linux-x86_64-2.7/numpy/core/src/umath' to include_dirs.
numpy.core - nothing done with h_files = ['build/src.linux-x86_64-2.7/numpy/core/src/umath/funcs.inc', 'build/src.linux-x86_64-2.7/numpy/core/src/umath/simd.inc', 'build/src.linux-x86_64-2.7/numpy/core/src/umath/loops.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/config.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/_numpyconfig.h', 'build/src.linux-x86_64-2.7/numpy/core/include/numpy/__ufunc_api.h']
building extension "numpy.core.umath_tests" sources
building extension "numpy.core.test_rational" sources
building extension "numpy.core.struct_ufunc_test" sources
building extension "numpy.core.multiarray_tests" sources
building extension "numpy.core.operand_flag_tests" sources
building extension "numpy.fft.fftpack_lite" sources
building extension "numpy.linalg.lapack_lite" sources
### Warning: Using unoptimized lapack ###
adding 'numpy/linalg/lapack_lite/python_xerbla.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_z_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_c_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_d_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_s_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_blas.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_config.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c.c' to sources.
building extension "numpy.linalg._umath_linalg" sources
### Warning: Using unoptimized lapack ###
adding 'numpy/linalg/lapack_lite/python_xerbla.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_z_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_c_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_d_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_s_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_lapack.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_blas.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c_config.c' to sources.
adding 'numpy/linalg/lapack_lite/f2c.c' to sources.
building extension "numpy.random.mtrand" sources
building data_files sources
build_src: building npy-pkg config files
running build_py
copying numpy/version.py -> build/lib.linux-x86_64-2.7/numpy
copying build/src.linux-x86_64-2.7/numpy/__config__.py -> build/lib.linux-x86_64-2.7/numpy
copying build/src.linux-x86_64-2.7/numpy/distutils/__config__.py -> build/lib.linux-x86_64-2.7/numpy/distutils
running build_clib
customize UnixCCompiler
customize UnixCCompiler using build_clib
building 'npymath' library
compiling C sources
C compiler: gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC
compile options: '-Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Inumpy/core/include -Ibuild/src.linux-x86_64-2.7/numpy/core/include/numpy -Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -c'
gcc: build/src.linux-x86_64-2.7/numpy/core/src/npymath/ieee754.c
In file included from numpy/core/src/npymath/ieee754.c.src:9:0:
numpy/core/include/numpy/utils.h:17:24: error: pasting "__NPY_UNUSED_TAGGED" and "*" does not give a valid preprocessing token
#define NPY_UNUSED(x) (__NPY_UNUSED_TAGGED ## x) __COMP_NPY_UNUSED
^
numpy/core/src/npymath/ieee754.c.src:802:38: note: in expansion of macro 'NPY_UNUSED'
int npy_get_floatstatus_barrier(char NPY_UNUSED(*param))
^~~~~~~~~~
numpy/core/src/npymath/ieee754.c.src:802:49: error: expected ')' before '*' token
int npy_get_floatstatus_barrier(char NPY_UNUSED(*param))
^
numpy/core/include/numpy/utils.h:17:47: note: in definition of macro 'NPY_UNUSED'
#define NPY_UNUSED(x) (__NPY_UNUSED_TAGGED ## x) __COMP_NPY_UNUSED
^
numpy/core/src/npymath/ieee754.c.src: In function 'npy_clear_floatstatus_barrier':
numpy/core/src/npymath/ieee754.c.src:809:9: warning: unused variable 'fpstatus' [-Wunused-variable]
int fpstatus = npy_get_floatstatus_barrier(param);
^~~~~~~~
In file included from numpy/core/src/npymath/ieee754.c.src:9:0:
numpy/core/include/numpy/utils.h:17:24: error: pasting "__NPY_UNUSED_TAGGED" and "*" does not give a valid preprocessing token
#define NPY_UNUSED(x) (__NPY_UNUSED_TAGGED ## x) __COMP_NPY_UNUSED
^
numpy/core/src/npymath/ieee754.c.src:802:38: note: in expansion of macro 'NPY_UNUSED'
int npy_get_floatstatus_barrier(char NPY_UNUSED(*param))
^~~~~~~~~~
numpy/core/src/npymath/ieee754.c.src:802:49: error: expected ')' before '*' token
int npy_get_floatstatus_barrier(char NPY_UNUSED(*param))
^
numpy/core/include/numpy/utils.h:17:47: note: in definition of macro 'NPY_UNUSED'
#define NPY_UNUSED(x) (__NPY_UNUSED_TAGGED ## x) __COMP_NPY_UNUSED
^
numpy/core/src/npymath/ieee754.c.src: In function 'npy_clear_floatstatus_barrier':
numpy/core/src/npymath/ieee754.c.src:809:9: warning: unused variable 'fpstatus' [-Wunused-variable]
int fpstatus = npy_get_floatstatus_barrier(param);
^~~~~~~~
error: Command "gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DTHREAD_STACK_SIZE=0x100000 -fPIC -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Inumpy/core/include -Ibuild/src.linux-x86_64-2.7/numpy/core/include/numpy -Inumpy/core/src/private -Inumpy/core/src -Inumpy/core -Inumpy/core/src/npymath -Inumpy/core/src/multiarray -Inumpy/core/src/umath -Inumpy/core/src/npysort -I/usr/local/include/python2.7 -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -Ibuild/src.linux-x86_64-2.7/numpy/core/src/private -Ibuild/src.linux-x86_64-2.7/numpy/core/src/npymath -c build/src.linux-x86_64-2.7/numpy/core/src/npymath/ieee754.c -o build/temp.linux-x86_64-2.7/build/src.linux-x86_64-2.7/numpy/core/src/npymath/ieee754.o -MMD -MF build/temp.linux-x86_64-2.7/build/src.linux-x86_64-2.7/numpy/core/src/npymath/ieee754.o.d" failed with exit status 1
----------------------------------------
Command "/usr/local/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-pYwQAe/numpy/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-record-YHx81c/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-install-pYwQAe/numpy/
The command '/bin/sh -c pip install numpy' returned a non-zero code: 1
ERROR: Job failed: exit code 1
</code></pre></div> | <h3 dir="auto">Describe the issue:</h3>
<p dir="auto">When converting a numpy array containing <code class="notranslate">numpy.nan</code> to type <code class="notranslate">int</code>, the <code class="notranslate">numpy.nan</code> are replaced by either <code class="notranslate">-9223372036854775808</code> or <code class="notranslate">0</code> depending on the computer.</p>
<p dir="auto"><code class="notranslate">numpy.nan</code> is replaced by <code class="notranslate">-9223372036854775808</code> on a Mac Pro (2019).<br>
<code class="notranslate">numpy.nan</code> is replaced by <code class="notranslate">0</code> on a MacBook Air (M1, 2020).<br>
Computers have the same version of macOS (12.2.1), Python (3.9.10) and numpy (1.22.2).</p>
<h3 dir="auto">Expected output</h3>
<p dir="auto">Both computers should behave the same. Either throw an error, or return the same value.</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
print(numpy.array(numpy.nan).astype(int))"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span>
<span class="pl-en">print</span>(<span class="pl-s1">numpy</span>.<span class="pl-en">array</span>(<span class="pl-s1">numpy</span>.<span class="pl-s1">nan</span>).<span class="pl-en">astype</span>(<span class="pl-s1">int</span>))</pre></div>
<h3 dir="auto">Error message:</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">NumPy/Python version information:</h3>
<p dir="auto">1.22.2 3.9.10 (main, Jan 15 2022, 11:40:53)<br>
[Clang 13.0.0 (clang-1300.0.29.3)]</p> | 0 |
<ul dir="auto">
<li>have a git conflict</li>
<li>click around if the line conflict decorations don't show up</li>
<li>delete the conflicting lines</li>
<li>undo</li>
<li>Observe: now the conflict decorations never disappear without a Reload window or a new model instantiation.</li>
</ul>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/5047891/13222873/2c86c896-d982-11e5-9a3e-6d5636690a9f.gif"><img src="https://cloud.githubusercontent.com/assets/5047891/13222873/2c86c896-d982-11e5-9a3e-6d5636690a9f.gif" alt="git-conflict-decorations" data-animated-image="" style="max-width: 100%;"></a></p> | <p dir="auto">Ubuntu 12.04, vscode 0.10.1</p>
<p dir="auto">Deleting and undoing the line doubles the highlight: (stays after closing and reopening the file)</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/2193314/11248144/728d1290-8dd4-11e5-843d-b1207570c8e0.png"><img src="https://cloud.githubusercontent.com/assets/2193314/11248144/728d1290-8dd4-11e5-843d-b1207570c8e0.png" alt="highlight1" style="max-width: 100%;"></a></p>
<p dir="auto">Deleting from the end of the line above the <code class="notranslate">=======</code> to the end of the line starting with <code class="notranslate">>>>>>>></code>:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/2193314/11248233/e578f95e-8dd4-11e5-92a9-603361d90e59.png"><img src="https://cloud.githubusercontent.com/assets/2193314/11248233/e578f95e-8dd4-11e5-92a9-603361d90e59.png" alt="highlight3" style="max-width: 100%;"></a></p>
<p dir="auto">Undoing the above results in this:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/2193314/11248196/ad1667fe-8dd4-11e5-989b-0fe74bb599d1.png"><img src="https://cloud.githubusercontent.com/assets/2193314/11248196/ad1667fe-8dd4-11e5-989b-0fe74bb599d1.png" alt="highlight2" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto">It would be really nice to have a way to get the compiler options into the code (like precompilation ifdef or something like that).<br>
The main reason would be to make conditional code (=shim) conditionnally to the target ES version.</p>
<p dir="auto">In term of code scalability, this would also help smooth transition to ES6.</p> | <p dir="auto">On codeplex this was a popular feature request:</p>
<p dir="auto"><a href="https://typescript.codeplex.com/workitem/111" rel="nofollow">https://typescript.codeplex.com/workitem/111</a><br>
<a href="https://typescript.codeplex.com/workitem/1926" rel="nofollow">https://typescript.codeplex.com/workitem/1926</a></p>
<p dir="auto">Personally I think preprocessor directives like #if, #elif, #else #endif with possibility to specify symbol to compiler would be very useful.<br>
And a way to mark function (or ambient function declaration) as Conditional (something like <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.conditionalattribute%28v=vs.110%29.aspx" rel="nofollow">ConditionalAattribute</a> in C#) would be great improvement too.<br>
I have lot's of <code class="notranslate">console.log</code> like function calls that decrease performance of my application and ability to easily remove all calls to this function would be great.</p> | 1 |
<p dir="auto">I'm running into an issue using a StreamedResponse to return a file to the user that can be limited in size by a post parameter. In some cases, we return 10,000 rows, and in others only 4.</p>
<p dir="auto">Since upgrading to Symfony 3.x our tests related to small sized files have broken on our front end because of duplication of the Symfony-Derived HTTP headers:</p>
<p dir="auto">apiVersion (we inject this one time via a kernel.event_listener, kernel.response event)<br>
Cache-Control<br>
Set-Cookie<br>
X-Debug-Token<br>
X-Debug-Token-Link</p>
<p dir="auto">I've been able to duplicate this issue in 3.0 and 3.1, and it is identical. Seems to be related to the body size of the response, as I've stripped out all other related code. Small body, double headers. Larger body, works as expected.</p>
<p dir="auto">So if you test on app_dev.php you will see the debug tokens duplicated with the iterator set to 10. Set the iterator to 1000 and the duplicated headers go back to normal.</p>
<p dir="auto"><a href="http://pastebin.com/NQMGrHEJ" rel="nofollow">http://pastebin.com/NQMGrHEJ</a></p> | <p dir="auto">Hi,</p>
<p dir="auto">Currently the <code class="notranslate">access_control</code> setting only allows regex paths, wouldn't it be nice to allow a route name as well. This would avoid duplicating paths between routing and security.</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="access_control:
- { path: '^/admin' }
- { route: 'some_route_id' }"><pre class="notranslate"><span class="pl-ent">access_control</span>:
- <span class="pl-s">{ path: '^/admin' }</span>
- <span class="pl-s">{ route: 'some_route_id' }</span></pre></div>
<p dir="auto">Any thoughts?</p> | 0 |
<h1 dir="auto">Summary of the new feature/enhancement</h1>
<p dir="auto">Ability to create zones which span multiple monitors</p>
<h1 dir="auto">Proposed technical implementation details (optional)</h1>
<p dir="auto">I have this giant 49" screen which are practically 2 27"monitors in 5120x1440 resolution without a bezel.<br>
I'd like to be able to create a zones which extends from 1 monitor into the other like for example to place a window in the middle. Right now the zone will stop at the border of the screen.</p>
<p dir="auto">It would also be nice to be able to create different zones on each monitor.<br>
like 50/50 on monitor 1, 33/33/33 on monitor 2 etc.</p> | <h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 10.0.18365.449 (1909)
PowerToys version: 0.12 and 0.13
PowerToy module for which you are reporting the bug (if applicable): FancyZones"><pre class="notranslate"><code class="notranslate">Windows build number: 10.0.18365.449 (1909)
PowerToys version: 0.12 and 0.13
PowerToy module for which you are reporting the bug (if applicable): FancyZones
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">Unsure what triggers this. I noticed at random times, pressing keys on the top (number) row no longer types in the numbers or symbols. After much time spent troubleshooting my keyboard, I noticed that when the desktop was visible while I hit a number key, the FancyZones zones would highlight but I wouldn't be able to type those numbers. Exiting out of PowerToys resolves this.<br>
This has occurred to me three times now in the past week, had this happen on both 0.12 and 0.13</p>
<p dir="auto">Not sure if it matters, but keyboard is Corsair k70 lux</p> | 0 |
<h2 dir="auto"><g-emoji class="g-emoji" alias="memo" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4dd.png">📝</g-emoji> When searching in PowerToys Run, show 1 or 2 currently running processes that match the search string with a high confidence at the top</h2>
<p dir="auto">Often, I use PowerToys Run to open currently running processes and sometimes they are at the bottom below matches to open programs (often unrelated ones and even below file results at times). It would be great if some currently running processes that match are displayed at the top.</p>
<hr>
<p dir="auto">If you'd like to see this feature implemented, add a <g-emoji class="g-emoji" alias="+1" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f44d.png">👍</g-emoji> reaction to this post.</p> | <h1 dir="auto">Summary of the new feature/enhancement</h1>
<p dir="auto">It would be more useful if already running programs are shown first in the results list in the quick launcher (like the old WindowWalker). <strong><em>Or maybe an option to change the priority.</em></strong></p>
<h1 dir="auto">Proposed technical implementation details (optional)</h1>
<p dir="auto">In the results list, the running programs should be first in the list.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/49621788/82359297-b4e1c480-99d5-11ea-9f35-8cdf32108868.png"><img src="https://user-images.githubusercontent.com/49621788/82359297-b4e1c480-99d5-11ea-9f35-8cdf32108868.png" alt="1" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/49621788/82359300-b57a5b00-99d5-11ea-964c-1b39bb99600d.png"><img src="https://user-images.githubusercontent.com/49621788/82359300-b57a5b00-99d5-11ea-964c-1b39bb99600d.png" alt="2" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto">I'm trying to scrape the content from this <a href="https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&qs=%5B%7B%22id%22%3A%22216805%22%2C%22description%22%3A%22Software-Entwickler%2Fin%22%2C%22type%22%3A%22jd%22%7D%2C%7B%22id%22%3A%22300000115%22%2C%22description%22%3A%22Deutschland%22%2C%22type%22%3A%22geocity%22%7D%5D&companyID=0&cityID=300000115&sourceOfTheSearchField=homepagemex%3Ageneral&searchOrigin=Homepage_top-search&ke=Software-Entwickler%2Fin&ws=Deutschland&ra=30" rel="nofollow">link</a> on my macOS, using <code class="notranslate">scrapy</code> with <code class="notranslate">scrapy_splash</code> settings and <code class="notranslate">BeautifulSoup</code> I followed the instructions in the <a href="https://github.com/scrapy-plugins/scrapy-splash">documentation</a></p>
<ul dir="auto">
<li>I tested every single command in scrapy shell and each works perfectly fine, tested on several pages. when I run the spider with the same commands, it fails to detect any of the items.</li>
</ul>
<p dir="auto"><code class="notranslate">settings.py</code></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="BOT_NAME = 'stepstone'
SPIDER_MODULES = ['stepstone.spiders']
NEWSPIDER_MODULE = 'stepstone.spiders'
SPLASH_URL = 'http://0.0.0.0:8050' # changed from the documentation's http://192.168.59.103:8050 which does not work
DOWNLOADER_MIDDLEWARES = {
'scrapy_splash.SplashCookiesMiddleware': 723,
'scrapy_splash.SplashMiddleware': 725,
'scrapy.downloadermiddlewares.httpcompression.HttpCompressionMiddleware': 810,
}
SPIDER_MIDDLEWARES = {
'scrapy_splash.SplashDeduplicateArgsMiddleware': 100,
}
DUPEFILTER_CLASS = 'scrapy_splash.SplashAwareDupeFilter'
HTTPCACHE_STORAGE = 'scrapy_splash.SplashAwareFSCacheStorage'"><pre class="notranslate"><code class="notranslate">BOT_NAME = 'stepstone'
SPIDER_MODULES = ['stepstone.spiders']
NEWSPIDER_MODULE = 'stepstone.spiders'
SPLASH_URL = 'http://0.0.0.0:8050' # changed from the documentation's http://192.168.59.103:8050 which does not work
DOWNLOADER_MIDDLEWARES = {
'scrapy_splash.SplashCookiesMiddleware': 723,
'scrapy_splash.SplashMiddleware': 725,
'scrapy.downloadermiddlewares.httpcompression.HttpCompressionMiddleware': 810,
}
SPIDER_MIDDLEWARES = {
'scrapy_splash.SplashDeduplicateArgsMiddleware': 100,
}
DUPEFILTER_CLASS = 'scrapy_splash.SplashAwareDupeFilter'
HTTPCACHE_STORAGE = 'scrapy_splash.SplashAwareFSCacheStorage'
</code></pre></div>
<p dir="auto">The spider module:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from scrapy.spiders import Spider
from scrapy_splash import SplashRequest
from scrapy import Request
from bs4 import BeautifulSoup
class StepSpider(Spider):
name = 'step'
allowed_domains = ['www.stepstone.de']
start_urls = [
'https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&qs='
'%5B%7B%22id%22%3A%22216805%22%2C%22description%22%3A%22Software-Entw'
'ickler%2Fin%22%2C%22type%22%3A%22jd%22%7D%2C%7B%22id%22%3A%223000001'
'15%22%2C%22description%22%3A%22Deutschland%22%2C%22type%22%3A%22geoc'
'ity%22%7D%5D&companyID=0&cityID=300000115&sourceOfTheSearchField=home'
'pagemex%3Ageneral&searchOrigin=Homepage_top-search&ke=Software-Entwic'
'kler%2Fin&ws=Deutschland&ra=30/'
]
@staticmethod
def extract_item(soup, extraction_path):
result = soup.find(*extraction_path)
if result:
return result.getText()
def parse(self, response):
soup = BeautifulSoup(response.body, features='lxml')
listings = [
response.urljoin(item)
for item in response.xpath('//div/div/a/@href').extract()
if 'stellenangebote' in item
]
yield from [
Request(
url,
callback=self.parse_item,
cb_kwargs={'soup': soup},
meta={'splash': {'args': {'html': 1, 'png': 1,}}},
)
for url in listings
]
next_page = soup.find('a', {'data-at': 'pagination-next'})
if next_page:
yield SplashRequest(next_page.get('href'), self.parse)
def parse_header(self, response, soup):
title = response.xpath('//h1/text()').get()
location = self.extract_item(
soup, ('li', {'class': 'at-listing__li: st-icons_location'})
)
contract_type = self.extract_item(
soup, ('li', {'class': 'at-listing__list-icons_contract-type'})
)
work_type = self.extract_item(
soup, ('li', {'class': 'at-listing__list-icons_work-type'})
)
return {
'title': title,
'location': location,
'contract_type': contract_type,
'work_type': work_type,
}
def parse_body(self, response, soup):
titles = response.xpath('//h4/text()').extract()
intro = self.extract_item(
soup, ('div', {'class': 'at-section-text-introduction-content'})
)
description = self.extract_item(
soup, ('div', {'class': 'at-section-text-description-content'})
)
profile = self.extract_item(
soup, ('div', {'class': 'at-section-text-profile-content'})
)
we_offer = self.extract_item(
soup, ('div', {'class': 'at-section-text-weoffer-content'})
)
contact = self.extract_item(
soup, ('div', {'class': 'at-section-text-contact-content'})
)
return {
title: text
for title, text in zip(
titles, [intro, description, profile, we_offer, contact]
)
}
def parse_item(self, response, soup):
items = self.parse_header(response, soup)
items.update(self.parse_body(response, soup))
yield items"><pre class="notranslate"><code class="notranslate">from scrapy.spiders import Spider
from scrapy_splash import SplashRequest
from scrapy import Request
from bs4 import BeautifulSoup
class StepSpider(Spider):
name = 'step'
allowed_domains = ['www.stepstone.de']
start_urls = [
'https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&qs='
'%5B%7B%22id%22%3A%22216805%22%2C%22description%22%3A%22Software-Entw'
'ickler%2Fin%22%2C%22type%22%3A%22jd%22%7D%2C%7B%22id%22%3A%223000001'
'15%22%2C%22description%22%3A%22Deutschland%22%2C%22type%22%3A%22geoc'
'ity%22%7D%5D&companyID=0&cityID=300000115&sourceOfTheSearchField=home'
'pagemex%3Ageneral&searchOrigin=Homepage_top-search&ke=Software-Entwic'
'kler%2Fin&ws=Deutschland&ra=30/'
]
@staticmethod
def extract_item(soup, extraction_path):
result = soup.find(*extraction_path)
if result:
return result.getText()
def parse(self, response):
soup = BeautifulSoup(response.body, features='lxml')
listings = [
response.urljoin(item)
for item in response.xpath('//div/div/a/@href').extract()
if 'stellenangebote' in item
]
yield from [
Request(
url,
callback=self.parse_item,
cb_kwargs={'soup': soup},
meta={'splash': {'args': {'html': 1, 'png': 1,}}},
)
for url in listings
]
next_page = soup.find('a', {'data-at': 'pagination-next'})
if next_page:
yield SplashRequest(next_page.get('href'), self.parse)
def parse_header(self, response, soup):
title = response.xpath('//h1/text()').get()
location = self.extract_item(
soup, ('li', {'class': 'at-listing__li: st-icons_location'})
)
contract_type = self.extract_item(
soup, ('li', {'class': 'at-listing__list-icons_contract-type'})
)
work_type = self.extract_item(
soup, ('li', {'class': 'at-listing__list-icons_work-type'})
)
return {
'title': title,
'location': location,
'contract_type': contract_type,
'work_type': work_type,
}
def parse_body(self, response, soup):
titles = response.xpath('//h4/text()').extract()
intro = self.extract_item(
soup, ('div', {'class': 'at-section-text-introduction-content'})
)
description = self.extract_item(
soup, ('div', {'class': 'at-section-text-description-content'})
)
profile = self.extract_item(
soup, ('div', {'class': 'at-section-text-profile-content'})
)
we_offer = self.extract_item(
soup, ('div', {'class': 'at-section-text-weoffer-content'})
)
contact = self.extract_item(
soup, ('div', {'class': 'at-section-text-contact-content'})
)
return {
title: text
for title, text in zip(
titles, [intro, description, profile, we_offer, contact]
)
}
def parse_item(self, response, soup):
items = self.parse_header(response, soup)
items.update(self.parse_body(response, soup))
yield items
</code></pre></div>
<p dir="auto">full log:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2020-08-11 17:57:44 [scrapy.utils.log] INFO: Scrapy 2.2.1 started (bot: stepstone)
2020-08-11 17:57:44 [scrapy.utils.log] INFO: Versions: lxml 4.5.0.0, libxml2 2.9.10, cssselect 1.1.0, parsel 1.6.0, w3lib 1.22.0, Twisted 20.3.0, Python 3.8.3 (default, May 27 2020, 20:54:22) - [Clang 11.0.3 (clang-1103.0.32.59)], pyOpenSSL 19.1.0 (OpenSSL 1.1.1g 21 Apr 2020), cryptography 3.0, Platform macOS-10.15.6-x86_64-i386-64bit
2020-08-11 17:57:44 [scrapy.utils.log] DEBUG: Using reactor: twisted.internet.selectreactor.SelectReactor
2020-08-11 17:57:44 [scrapy.crawler] INFO: Overridden settings:
{'BOT_NAME': 'stepstone',
'DUPEFILTER_CLASS': 'scrapy_splash.SplashAwareDupeFilter',
'HTTPCACHE_STORAGE': 'scrapy_splash.SplashAwareFSCacheStorage',
'NEWSPIDER_MODULE': 'stepstone.spiders',
'SPIDER_MODULES': ['stepstone.spiders']}
2020-08-11 17:57:44 [scrapy.extensions.telnet] INFO: Telnet Password: 71c7bd3bdaf32c63
2020-08-11 17:57:44 [scrapy.middleware] INFO: Enabled extensions:
['scrapy.extensions.corestats.CoreStats',
'scrapy.extensions.telnet.TelnetConsole',
'scrapy.extensions.memusage.MemoryUsage',
'scrapy.extensions.logstats.LogStats']
2020-08-11 17:57:44 [scrapy.middleware] INFO: Enabled downloader middlewares:
['scrapy.downloadermiddlewares.httpauth.HttpAuthMiddleware',
'scrapy.downloadermiddlewares.downloadtimeout.DownloadTimeoutMiddleware',
'scrapy.downloadermiddlewares.defaultheaders.DefaultHeadersMiddleware',
'scrapy.downloadermiddlewares.useragent.UserAgentMiddleware',
'scrapy.downloadermiddlewares.retry.RetryMiddleware',
'scrapy.downloadermiddlewares.redirect.MetaRefreshMiddleware',
'scrapy.downloadermiddlewares.redirect.RedirectMiddleware',
'scrapy.downloadermiddlewares.cookies.CookiesMiddleware',
'scrapy_splash.SplashCookiesMiddleware',
'scrapy_splash.SplashMiddleware',
'scrapy.downloadermiddlewares.httpproxy.HttpProxyMiddleware',
'scrapy.downloadermiddlewares.httpcompression.HttpCompressionMiddleware',
'scrapy.downloadermiddlewares.stats.DownloaderStats']
2020-08-11 17:57:44 [scrapy.middleware] INFO: Enabled spider middlewares:
['scrapy.spidermiddlewares.httperror.HttpErrorMiddleware',
'scrapy_splash.SplashDeduplicateArgsMiddleware',
'scrapy.spidermiddlewares.offsite.OffsiteMiddleware',
'scrapy.spidermiddlewares.referer.RefererMiddleware',
'scrapy.spidermiddlewares.urllength.UrlLengthMiddleware',
'scrapy.spidermiddlewares.depth.DepthMiddleware']
2020-08-11 17:57:44 [scrapy.middleware] INFO: Enabled item pipelines:
[]
2020-08-11 17:57:44 [scrapy.core.engine] INFO: Spider opened
2020-08-11 17:57:44 [scrapy.extensions.logstats] INFO: Crawled 0 pages (at 0 pages/min), scraped 0 items (at 0 items/min)
2020-08-11 17:57:44 [scrapy.extensions.telnet] INFO: Telnet console listening on 127.0.0.1:6023
2020-08-11 17:57:45 [scrapy.core.engine] DEBUG: Crawled (200) <GET https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&qs=%5B%7B%22id%22%3A%22216805%22%2C%22description%22%3A%22Software-Entwickler%2Fin%22%2C%22type%22%3A%22jd%22%7D%2C%7B%22id%22%3A%22300000115%22%2C%22description%22%3A%22Deutschland%22%2C%22type%22%3A%22geocity%22%7D%5D&companyID=0&cityID=300000115&sourceOfTheSearchField=homepagemex%3Ageneral&searchOrigin=Homepage_top-search&ke=Software-Entwickler%2Fin&ws=Deutschland&ra=30/> (referer: None)
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: utf-8 confidence = 0.99
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: SHIFT_JIS Japanese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-JP Japanese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: GB2312 Chinese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-KR Korean confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: CP949 Korean confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: Big5 Chinese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-TW Taiwan confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1251 Russian confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: KOI8-R Russian confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: ISO-8859-5 Russian confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: MacCyrillic Russian confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: IBM866 Russian confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: IBM855 Russian confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: ISO-8859-7 Greek confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1253 Greek confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: ISO-8859-5 Bulgairan confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1251 Bulgarian confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: TIS-620 Thai confidence = 0.041278205445058724
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: ISO-8859-9 Turkish confidence = 0.5186494104315963
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1255 Hebrew confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1255 Hebrew confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1255 Hebrew confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: utf-8 confidence = 0.99
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: SHIFT_JIS Japanese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-JP Japanese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: GB2312 Chinese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-KR Korean confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: CP949 Korean confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: Big5 Chinese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-TW Taiwan confidence = 0.01
2020-08-11 17:57:47 [scrapy.dupefilters] DEBUG: Filtered duplicate request: <GET https://www.stepstone.de/stellenangebote--JAVA-Software-Entwickler-m-w-d-Sueddeutschland-TECCON-Consulting-Engineering-GmbH--6582908-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=1_1_25_dynrl_m_0_0_0_0> - no more duplicates will be shown (see DUPEFILTER_DEBUG to show all duplicates)
2020-08-11 17:57:47 [py.warnings] WARNING: /usr/local/lib/python3.8/site-packages/scrapy_splash/request.py:41: ScrapyDeprecationWarning: Call to deprecated function to_native_str. Use to_unicode instead.
url = to_native_str(url)
2020-08-11 17:57:50 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:57:51 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-fuer-Windowsapplikationen-m-w-d-Stockach-oder-Boeblingen-Baumer-MDS-GmbH--6568164-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=19_19_25_dynrl_m_0_0_0_0>
{'title': 'Software Entwickler für Windowsapplikationen (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Ihre Herausforderung:': None, 'Sie verfügen über:': None, 'Wir bieten:': None, 'Kontakt:': None}
2020-08-11 17:57:51 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:57:51 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--JAVA-Software-Entwickler-m-w-d-Sueddeutschland-TECCON-Consulting-Engineering-GmbH--6582908-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=1_1_25_dynrl_m_0_0_0_0>
{'title': 'JAVA Software-Entwickler (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Einleitung': None, 'Ihre Aufgaben': None, 'Ihr Profil': None, 'Wir bieten': None, 'Weitere Informationen': None}
2020-08-11 17:57:52 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:57:52 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-Business-Engineer-fuer-Blockchain-Team-in-Gruendung-w-m-d-Frankfurt-Main-Deutsche-Bahn-AG--6249570-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=16_16_25_dynrl_m_0_0_0_0>
{'title': 'Software-Entwickler / Business Engineer für Blockchain-Team in Gründung (w/m/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Was dich erwartet': None, 'Was wir erwarten': None, 'Wir bieten': None, 'Standort': None}
2020-08-11 17:57:55 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:57:55 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-w-m-d-Diagnose-und-Visualisierungssysteme-Mannheim-Halle-Stadler-Mannheim-GmbH--6615613-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=13_13_25_dynrl_m_0_0_0_0>
{'title': 'Software-Entwickler (w/m/d) Diagnose und Visualisierungssysteme', 'location': None, 'contract_type': None, 'work_type': None, 'Ihre Aufgaben:': None, 'Ihr Profil:': None, 'Unser Angebot:': None, 'Begeistert?': None}
2020-08-11 17:57:55 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:57:55 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-m-w-d-Rosenheim-Agenda-Informationssysteme-GmbH-Co-KG--6590641-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=17_17_25_dynrl_m_0_0_0_0>
{'title': 'Software-Entwickler (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Ihre Aufgaben:': None, 'Ihr Profil:': None, 'Das spricht für uns:': None, 'Kontakt:': None, 'Standort': None}
2020-08-11 17:58:08 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:08 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-w-m-d-fuer-Fahrzeugsteuerung-Mannheim-Halle-Stadler-Mannheim-GmbH--6615612-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=11_11_25_dynrl_m_0_0_0_0>
{'title': 'Software-Entwickler (w/m/d) für Fahrzeugsteuerung', 'location': None, 'contract_type': None, 'work_type': None, 'Ihre Aufgaben:': None, 'Ihr Profil:': None, 'Unser Angebot:': None, 'Begeistert?': None}
^C2020-08-11 17:58:09 [scrapy.crawler] INFO: Received SIGINT, shutting down gracefully. Send again to force
2020-08-11 17:58:09 [scrapy.core.engine] INFO: Closing spider (shutdown)
2020-08-11 17:58:13 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:13 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:13 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:13 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:13 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-m-w-d-Meissen-Staatliche-Porzellan-Manufaktur-Meissen-GmbH--6462761-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=14_14_25_dynrl_m_0_0_0_0>
{'title': 'Software Entwickler (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Wir gehen neue Wege': None, 'Ihre Aufgaben': None, 'unsere Anforderungen': None, 'unser Angebot': None, 'Kontakt': None}
2020-08-11 17:58:13 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Agiler-Software-Entwickler-m-w-div-Dresden-Otto-Group-Solution-Provider-OSP-GmbH--4573007-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=8_8_25_dynrl_m_0_0_0_0>
{'title': 'Agiler Software Entwickler (m/w/div)', 'location': None, 'contract_type': None, 'work_type': None, 'Über uns': None, 'Was dich erwartet': None, 'Was du mitbringen solltest': None, 'Diese und weitere Benefits erwarten dich': None, 'Kontakt': None}
2020-08-11 17:58:13 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-m-w-d-Essen-Lowell-Group--6615697-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=9_9_25_dynrl_m_0_0_0_0>
{'title': 'Software Entwickler (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Ihre Aufgaben': None, 'Ihr Profil': None, 'Wir bieten': None, 'Kontakt': None, 'Standort': None}
2020-08-11 17:58:13 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Softwareentwickler-m-w-d-Fullstack-Web-Boeblingen-Braunschweig-Deutschlandweit-Ingolstadt-Muenchen-Norddeutschland-Stuttgart-umlaut--6122455-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=15_15_25_dynrl_m_0_0_0_0>
{'title': 'Softwareentwickler (m/w/d) - Fullstack Web', 'location': None, 'contract_type': None, 'work_type': None, 'our öffer': None, 'yöu': None, 'top 5 reasöns': None, 'cöntact': None, 'Mitarbeiterbewertungen': None}
2020-08-11 17:58:13 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:13 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-E-Commerce-m-w-d-Dresden-Otto-Group-Solution-Provider-OSP-GmbH--6550022-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=10_10_25_dynrl_m_0_0_0_0>
{'title': 'Software Entwickler E-Commerce (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Was dich erwartet': None, 'Was du mitbringen solltest': None, 'Kontakt': None, 'Standort': None}
^C2020-08-11 17:58:16 [scrapy.crawler] INFO: Received SIGINT twice, forcing unclean shutdown
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <GET https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&companyid=0&sourceofthesearchfield=homepagemex%3Ageneral&qs=[{"id"%3A216805%2C"description"%3A"Software-Entwickler\%2Fin"%2C"type"%3A"jd"}%2C{"id"%3A300000115%2C"description"%3A"Deutschland"%2C"type"%3A"geocity"}]&cityid=300000115&ke=Software-Entwickler%2Fin&ws=Deutschland&ra=30&suid=90b7defb-2854-4c23-98bd-b39bc15a6922&of=25&action=paging_next via http://0.0.0.0:8050/render.html> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]"><pre class="notranslate"><code class="notranslate">2020-08-11 17:57:44 [scrapy.utils.log] INFO: Scrapy 2.2.1 started (bot: stepstone)
2020-08-11 17:57:44 [scrapy.utils.log] INFO: Versions: lxml 4.5.0.0, libxml2 2.9.10, cssselect 1.1.0, parsel 1.6.0, w3lib 1.22.0, Twisted 20.3.0, Python 3.8.3 (default, May 27 2020, 20:54:22) - [Clang 11.0.3 (clang-1103.0.32.59)], pyOpenSSL 19.1.0 (OpenSSL 1.1.1g 21 Apr 2020), cryptography 3.0, Platform macOS-10.15.6-x86_64-i386-64bit
2020-08-11 17:57:44 [scrapy.utils.log] DEBUG: Using reactor: twisted.internet.selectreactor.SelectReactor
2020-08-11 17:57:44 [scrapy.crawler] INFO: Overridden settings:
{'BOT_NAME': 'stepstone',
'DUPEFILTER_CLASS': 'scrapy_splash.SplashAwareDupeFilter',
'HTTPCACHE_STORAGE': 'scrapy_splash.SplashAwareFSCacheStorage',
'NEWSPIDER_MODULE': 'stepstone.spiders',
'SPIDER_MODULES': ['stepstone.spiders']}
2020-08-11 17:57:44 [scrapy.extensions.telnet] INFO: Telnet Password: 71c7bd3bdaf32c63
2020-08-11 17:57:44 [scrapy.middleware] INFO: Enabled extensions:
['scrapy.extensions.corestats.CoreStats',
'scrapy.extensions.telnet.TelnetConsole',
'scrapy.extensions.memusage.MemoryUsage',
'scrapy.extensions.logstats.LogStats']
2020-08-11 17:57:44 [scrapy.middleware] INFO: Enabled downloader middlewares:
['scrapy.downloadermiddlewares.httpauth.HttpAuthMiddleware',
'scrapy.downloadermiddlewares.downloadtimeout.DownloadTimeoutMiddleware',
'scrapy.downloadermiddlewares.defaultheaders.DefaultHeadersMiddleware',
'scrapy.downloadermiddlewares.useragent.UserAgentMiddleware',
'scrapy.downloadermiddlewares.retry.RetryMiddleware',
'scrapy.downloadermiddlewares.redirect.MetaRefreshMiddleware',
'scrapy.downloadermiddlewares.redirect.RedirectMiddleware',
'scrapy.downloadermiddlewares.cookies.CookiesMiddleware',
'scrapy_splash.SplashCookiesMiddleware',
'scrapy_splash.SplashMiddleware',
'scrapy.downloadermiddlewares.httpproxy.HttpProxyMiddleware',
'scrapy.downloadermiddlewares.httpcompression.HttpCompressionMiddleware',
'scrapy.downloadermiddlewares.stats.DownloaderStats']
2020-08-11 17:57:44 [scrapy.middleware] INFO: Enabled spider middlewares:
['scrapy.spidermiddlewares.httperror.HttpErrorMiddleware',
'scrapy_splash.SplashDeduplicateArgsMiddleware',
'scrapy.spidermiddlewares.offsite.OffsiteMiddleware',
'scrapy.spidermiddlewares.referer.RefererMiddleware',
'scrapy.spidermiddlewares.urllength.UrlLengthMiddleware',
'scrapy.spidermiddlewares.depth.DepthMiddleware']
2020-08-11 17:57:44 [scrapy.middleware] INFO: Enabled item pipelines:
[]
2020-08-11 17:57:44 [scrapy.core.engine] INFO: Spider opened
2020-08-11 17:57:44 [scrapy.extensions.logstats] INFO: Crawled 0 pages (at 0 pages/min), scraped 0 items (at 0 items/min)
2020-08-11 17:57:44 [scrapy.extensions.telnet] INFO: Telnet console listening on 127.0.0.1:6023
2020-08-11 17:57:45 [scrapy.core.engine] DEBUG: Crawled (200) <GET https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&qs=%5B%7B%22id%22%3A%22216805%22%2C%22description%22%3A%22Software-Entwickler%2Fin%22%2C%22type%22%3A%22jd%22%7D%2C%7B%22id%22%3A%22300000115%22%2C%22description%22%3A%22Deutschland%22%2C%22type%22%3A%22geocity%22%7D%5D&companyID=0&cityID=300000115&sourceOfTheSearchField=homepagemex%3Ageneral&searchOrigin=Homepage_top-search&ke=Software-Entwickler%2Fin&ws=Deutschland&ra=30/> (referer: None)
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: utf-8 confidence = 0.99
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: SHIFT_JIS Japanese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-JP Japanese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: GB2312 Chinese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-KR Korean confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: CP949 Korean confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: Big5 Chinese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-TW Taiwan confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1251 Russian confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: KOI8-R Russian confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: ISO-8859-5 Russian confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: MacCyrillic Russian confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: IBM866 Russian confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: IBM855 Russian confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: ISO-8859-7 Greek confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1253 Greek confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: ISO-8859-5 Bulgairan confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1251 Bulgarian confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: TIS-620 Thai confidence = 0.041278205445058724
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: ISO-8859-9 Turkish confidence = 0.5186494104315963
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1255 Hebrew confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1255 Hebrew confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1255 Hebrew confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: utf-8 confidence = 0.99
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: SHIFT_JIS Japanese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-JP Japanese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: GB2312 Chinese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-KR Korean confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: CP949 Korean confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: Big5 Chinese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-TW Taiwan confidence = 0.01
2020-08-11 17:57:47 [scrapy.dupefilters] DEBUG: Filtered duplicate request: <GET https://www.stepstone.de/stellenangebote--JAVA-Software-Entwickler-m-w-d-Sueddeutschland-TECCON-Consulting-Engineering-GmbH--6582908-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=1_1_25_dynrl_m_0_0_0_0> - no more duplicates will be shown (see DUPEFILTER_DEBUG to show all duplicates)
2020-08-11 17:57:47 [py.warnings] WARNING: /usr/local/lib/python3.8/site-packages/scrapy_splash/request.py:41: ScrapyDeprecationWarning: Call to deprecated function to_native_str. Use to_unicode instead.
url = to_native_str(url)
2020-08-11 17:57:50 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:57:51 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-fuer-Windowsapplikationen-m-w-d-Stockach-oder-Boeblingen-Baumer-MDS-GmbH--6568164-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=19_19_25_dynrl_m_0_0_0_0>
{'title': 'Software Entwickler für Windowsapplikationen (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Ihre Herausforderung:': None, 'Sie verfügen über:': None, 'Wir bieten:': None, 'Kontakt:': None}
2020-08-11 17:57:51 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:57:51 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--JAVA-Software-Entwickler-m-w-d-Sueddeutschland-TECCON-Consulting-Engineering-GmbH--6582908-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=1_1_25_dynrl_m_0_0_0_0>
{'title': 'JAVA Software-Entwickler (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Einleitung': None, 'Ihre Aufgaben': None, 'Ihr Profil': None, 'Wir bieten': None, 'Weitere Informationen': None}
2020-08-11 17:57:52 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:57:52 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-Business-Engineer-fuer-Blockchain-Team-in-Gruendung-w-m-d-Frankfurt-Main-Deutsche-Bahn-AG--6249570-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=16_16_25_dynrl_m_0_0_0_0>
{'title': 'Software-Entwickler / Business Engineer für Blockchain-Team in Gründung (w/m/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Was dich erwartet': None, 'Was wir erwarten': None, 'Wir bieten': None, 'Standort': None}
2020-08-11 17:57:55 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:57:55 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-w-m-d-Diagnose-und-Visualisierungssysteme-Mannheim-Halle-Stadler-Mannheim-GmbH--6615613-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=13_13_25_dynrl_m_0_0_0_0>
{'title': 'Software-Entwickler (w/m/d) Diagnose und Visualisierungssysteme', 'location': None, 'contract_type': None, 'work_type': None, 'Ihre Aufgaben:': None, 'Ihr Profil:': None, 'Unser Angebot:': None, 'Begeistert?': None}
2020-08-11 17:57:55 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:57:55 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-m-w-d-Rosenheim-Agenda-Informationssysteme-GmbH-Co-KG--6590641-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=17_17_25_dynrl_m_0_0_0_0>
{'title': 'Software-Entwickler (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Ihre Aufgaben:': None, 'Ihr Profil:': None, 'Das spricht für uns:': None, 'Kontakt:': None, 'Standort': None}
2020-08-11 17:58:08 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:08 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-w-m-d-fuer-Fahrzeugsteuerung-Mannheim-Halle-Stadler-Mannheim-GmbH--6615612-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=11_11_25_dynrl_m_0_0_0_0>
{'title': 'Software-Entwickler (w/m/d) für Fahrzeugsteuerung', 'location': None, 'contract_type': None, 'work_type': None, 'Ihre Aufgaben:': None, 'Ihr Profil:': None, 'Unser Angebot:': None, 'Begeistert?': None}
^C2020-08-11 17:58:09 [scrapy.crawler] INFO: Received SIGINT, shutting down gracefully. Send again to force
2020-08-11 17:58:09 [scrapy.core.engine] INFO: Closing spider (shutdown)
2020-08-11 17:58:13 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:13 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:13 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:13 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:13 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-m-w-d-Meissen-Staatliche-Porzellan-Manufaktur-Meissen-GmbH--6462761-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=14_14_25_dynrl_m_0_0_0_0>
{'title': 'Software Entwickler (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Wir gehen neue Wege': None, 'Ihre Aufgaben': None, 'unsere Anforderungen': None, 'unser Angebot': None, 'Kontakt': None}
2020-08-11 17:58:13 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Agiler-Software-Entwickler-m-w-div-Dresden-Otto-Group-Solution-Provider-OSP-GmbH--4573007-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=8_8_25_dynrl_m_0_0_0_0>
{'title': 'Agiler Software Entwickler (m/w/div)', 'location': None, 'contract_type': None, 'work_type': None, 'Über uns': None, 'Was dich erwartet': None, 'Was du mitbringen solltest': None, 'Diese und weitere Benefits erwarten dich': None, 'Kontakt': None}
2020-08-11 17:58:13 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-m-w-d-Essen-Lowell-Group--6615697-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=9_9_25_dynrl_m_0_0_0_0>
{'title': 'Software Entwickler (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Ihre Aufgaben': None, 'Ihr Profil': None, 'Wir bieten': None, 'Kontakt': None, 'Standort': None}
2020-08-11 17:58:13 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Softwareentwickler-m-w-d-Fullstack-Web-Boeblingen-Braunschweig-Deutschlandweit-Ingolstadt-Muenchen-Norddeutschland-Stuttgart-umlaut--6122455-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=15_15_25_dynrl_m_0_0_0_0>
{'title': 'Softwareentwickler (m/w/d) - Fullstack Web', 'location': None, 'contract_type': None, 'work_type': None, 'our öffer': None, 'yöu': None, 'top 5 reasöns': None, 'cöntact': None, 'Mitarbeiterbewertungen': None}
2020-08-11 17:58:13 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:13 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-E-Commerce-m-w-d-Dresden-Otto-Group-Solution-Provider-OSP-GmbH--6550022-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=10_10_25_dynrl_m_0_0_0_0>
{'title': 'Software Entwickler E-Commerce (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Was dich erwartet': None, 'Was du mitbringen solltest': None, 'Kontakt': None, 'Standort': None}
^C2020-08-11 17:58:16 [scrapy.crawler] INFO: Received SIGINT twice, forcing unclean shutdown
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <GET https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&companyid=0&sourceofthesearchfield=homepagemex%3Ageneral&qs=[{"id"%3A216805%2C"description"%3A"Software-Entwickler\%2Fin"%2C"type"%3A"jd"}%2C{"id"%3A300000115%2C"description"%3A"Deutschland"%2C"type"%3A"geocity"}]&cityid=300000115&ke=Software-Entwickler%2Fin&ws=Deutschland&ra=30&suid=90b7defb-2854-4c23-98bd-b39bc15a6922&of=25&action=paging_next via http://0.0.0.0:8050/render.html> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
</code></pre></div>
<p dir="auto">docker log:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2020-08-11 15:57:27+0000 [-] Log opened.
2020-08-11 15:57:27.990815 [-] Xvfb is started: ['Xvfb', ':2061643423', '-screen', '0', '1024x768x24', '-nolisten', 'tcp']
QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-splash'
2020-08-11 15:57:28.135258 [-] Splash version: 3.4.1
2020-08-11 15:57:28.203198 [-] Qt 5.13.1, PyQt 5.13.1, WebKit 602.1, Chromium 73.0.3683.105, sip 4.19.19, Twisted 19.7.0, Lua 5.2
2020-08-11 15:57:28.203826 [-] Python 3.6.9 (default, Nov 7 2019, 10:44:02) [GCC 8.3.0]
2020-08-11 15:57:28.204679 [-] Open files limit: 1048576
2020-08-11 15:57:28.205242 [-] Can't bump open files limit
2020-08-11 15:57:28.229336 [-] proxy profiles support is enabled, proxy profiles path: /etc/splash/proxy-profiles
2020-08-11 15:57:28.229855 [-] memory cache: enabled, private mode: enabled, js cross-domain access: disabled
2020-08-11 15:57:28.410540 [-] verbosity=1, slots=20, argument_cache_max_entries=500, max-timeout=90.0
2020-08-11 15:57:28.411484 [-] Web UI: enabled, Lua: enabled (sandbox: enabled), Webkit: enabled, Chromium: enabled
2020-08-11 15:57:28.412634 [-] Site starting on 8050
2020-08-11 15:57:28.412924 [-] Starting factory <twisted.web.server.Site object at 0x7fbfa77591d0>
2020-08-11 15:57:28.414172 [-] Server listening on http://0.0.0.0:8050
2020-08-11 15:57:49.583386 [events] {"path": "/render.json", "rendertime": 2.339588165283203, "maxrss": 236848, "load": [0.1, 0.05, 0.06], "fds": 102, "active": 7, "qsize": 0, "_id": 140461124347104, "method": "POST", "timestamp": 1597161469, "user-agent": "Scrapy/2.2.1 (+https://scrapy.org)", "args": {"headers": {"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en", "Cookie": "cfid=bef36179-b81a-44e3-9bd1-059f5406a911; cftoken=0; USER_HASH_ID=f896d04a-5348-455b-a0ab-ffd0d5f6e674; V5=1; UXUSER=BLACKLIST%3BA%3B%20%3B; STEPSTONEV5LANG=de; ONLINE_CF=14-190; dtCookie=35$77973CDF4397BDD4A3EF1CAFDB05C9FD", "Referer": "https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&qs=%5B%7B%22id%22%3A%22216805%22%2C%22description%22%3A%22Software-Entwickler%2Fin%22%2C%22type%22%3A%22jd%22%7D%2C%7B%22id%22%3A%22300000115%22%2C%22description%22%3A%22Deutschland%22%2C%22type%22%3A%22geocity%22%7D%5D&companyID=0&cityID=300000115&sourceOfTheSearchField=homepagemex%3Ageneral&searchOrigin=Homepage_top-search&ke=Software-Entwickler%2Fin&ws=Deutschland&ra=30/", "User-Agent": "Scrapy/2.2.1 (+https://scrapy.org)"}, "html": 1, "png": 1, "url": "https://www.stepstone.de/stellenangebote--Software-Entwickler-fuer-Windowsapplikationen-m-w-d-Stockach-oder-Boeblingen-Baumer-MDS-GmbH--6568164-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=19_19_25_dynrl_m_0_0_0_0", "uid": 140461124347104}, "status_code": 200, "client_ip": "172.17.0.1"}
2020-08-11 15:57:49.584498 [-] "172.17.0.1" - - [11/Aug/2020:15:57:48 +0000] "POST /render.json HTTP/1.1" 200 371319 "-" "Scrapy/2.2.1 (+https://scrapy.org)"
2020-08-11 15:57:49.777352 [events] {"path": "/render.json", "rendertime": 2.6071407794952393, "maxrss": 243100, "load": [0.1, 0.05, 0.06], "fds": 106, "active": 6, "qsize": 0, "_id": 140461124981984, "method": "POST", "timestamp": 1597161469, "user-agent": "Scrapy/2.2.1 (+https://scrapy.org)", "args": {"headers": {"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en", "Cookie": "cfid=bef36179-b81a-44e3-9bd1-059f5406a911; cftoken=0; USER_HASH_ID=f896d04a-5348-455b-a0ab-ffd0d5f6e674; V5=1; UXUSER=BLACKLIST%3BA%3B%20%3B; STEPSTONEV5LANG=de; ONLINE_CF=14-190; dtCookie=35$77973CDF4397BDD4A3EF1CAFDB05C9FD", "Referer": "https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&qs=%5B%7B%22id%22%3A%22216805%22%2C%22description%22%3A%22Software-Entwickler%2Fin%22%2C%22type%22%3A%22jd%22%7D%2C%7B%22id%22%3A%22300000115%22%2C%22description%22%3A%22Deutschland%22%2C%22type%22%3A%22geocity%22%7D%5D&companyID=0&cityID=300000115&sourceOfTheSearchField=homepagemex%3Ageneral&searchOrigin=Homepage_top-search&ke=Software-Entwickler%2Fin&ws=Deutschland&ra=30/", "User-Agent": "Scrapy/2.2.1 (+https://scrapy.org)"}, "html": 1, "png": 1, "url": "https://www.stepstone.de/stellenangebote--JAVA-Software-Entwickler-m-w-d-Sueddeutschland-TECCON-Consulting-Engineering-GmbH--6582908-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=1_1_25_dynrl_m_0_0_0_0", "uid": 140461124981984}, "status_code": 200, "client_ip": "172.17.0.1"}"><pre class="notranslate"><code class="notranslate">2020-08-11 15:57:27+0000 [-] Log opened.
2020-08-11 15:57:27.990815 [-] Xvfb is started: ['Xvfb', ':2061643423', '-screen', '0', '1024x768x24', '-nolisten', 'tcp']
QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-splash'
2020-08-11 15:57:28.135258 [-] Splash version: 3.4.1
2020-08-11 15:57:28.203198 [-] Qt 5.13.1, PyQt 5.13.1, WebKit 602.1, Chromium 73.0.3683.105, sip 4.19.19, Twisted 19.7.0, Lua 5.2
2020-08-11 15:57:28.203826 [-] Python 3.6.9 (default, Nov 7 2019, 10:44:02) [GCC 8.3.0]
2020-08-11 15:57:28.204679 [-] Open files limit: 1048576
2020-08-11 15:57:28.205242 [-] Can't bump open files limit
2020-08-11 15:57:28.229336 [-] proxy profiles support is enabled, proxy profiles path: /etc/splash/proxy-profiles
2020-08-11 15:57:28.229855 [-] memory cache: enabled, private mode: enabled, js cross-domain access: disabled
2020-08-11 15:57:28.410540 [-] verbosity=1, slots=20, argument_cache_max_entries=500, max-timeout=90.0
2020-08-11 15:57:28.411484 [-] Web UI: enabled, Lua: enabled (sandbox: enabled), Webkit: enabled, Chromium: enabled
2020-08-11 15:57:28.412634 [-] Site starting on 8050
2020-08-11 15:57:28.412924 [-] Starting factory <twisted.web.server.Site object at 0x7fbfa77591d0>
2020-08-11 15:57:28.414172 [-] Server listening on http://0.0.0.0:8050
2020-08-11 15:57:49.583386 [events] {"path": "/render.json", "rendertime": 2.339588165283203, "maxrss": 236848, "load": [0.1, 0.05, 0.06], "fds": 102, "active": 7, "qsize": 0, "_id": 140461124347104, "method": "POST", "timestamp": 1597161469, "user-agent": "Scrapy/2.2.1 (+https://scrapy.org)", "args": {"headers": {"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en", "Cookie": "cfid=bef36179-b81a-44e3-9bd1-059f5406a911; cftoken=0; USER_HASH_ID=f896d04a-5348-455b-a0ab-ffd0d5f6e674; V5=1; UXUSER=BLACKLIST%3BA%3B%20%3B; STEPSTONEV5LANG=de; ONLINE_CF=14-190; dtCookie=35$77973CDF4397BDD4A3EF1CAFDB05C9FD", "Referer": "https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&qs=%5B%7B%22id%22%3A%22216805%22%2C%22description%22%3A%22Software-Entwickler%2Fin%22%2C%22type%22%3A%22jd%22%7D%2C%7B%22id%22%3A%22300000115%22%2C%22description%22%3A%22Deutschland%22%2C%22type%22%3A%22geocity%22%7D%5D&companyID=0&cityID=300000115&sourceOfTheSearchField=homepagemex%3Ageneral&searchOrigin=Homepage_top-search&ke=Software-Entwickler%2Fin&ws=Deutschland&ra=30/", "User-Agent": "Scrapy/2.2.1 (+https://scrapy.org)"}, "html": 1, "png": 1, "url": "https://www.stepstone.de/stellenangebote--Software-Entwickler-fuer-Windowsapplikationen-m-w-d-Stockach-oder-Boeblingen-Baumer-MDS-GmbH--6568164-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=19_19_25_dynrl_m_0_0_0_0", "uid": 140461124347104}, "status_code": 200, "client_ip": "172.17.0.1"}
2020-08-11 15:57:49.584498 [-] "172.17.0.1" - - [11/Aug/2020:15:57:48 +0000] "POST /render.json HTTP/1.1" 200 371319 "-" "Scrapy/2.2.1 (+https://scrapy.org)"
2020-08-11 15:57:49.777352 [events] {"path": "/render.json", "rendertime": 2.6071407794952393, "maxrss": 243100, "load": [0.1, 0.05, 0.06], "fds": 106, "active": 6, "qsize": 0, "_id": 140461124981984, "method": "POST", "timestamp": 1597161469, "user-agent": "Scrapy/2.2.1 (+https://scrapy.org)", "args": {"headers": {"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en", "Cookie": "cfid=bef36179-b81a-44e3-9bd1-059f5406a911; cftoken=0; USER_HASH_ID=f896d04a-5348-455b-a0ab-ffd0d5f6e674; V5=1; UXUSER=BLACKLIST%3BA%3B%20%3B; STEPSTONEV5LANG=de; ONLINE_CF=14-190; dtCookie=35$77973CDF4397BDD4A3EF1CAFDB05C9FD", "Referer": "https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&qs=%5B%7B%22id%22%3A%22216805%22%2C%22description%22%3A%22Software-Entwickler%2Fin%22%2C%22type%22%3A%22jd%22%7D%2C%7B%22id%22%3A%22300000115%22%2C%22description%22%3A%22Deutschland%22%2C%22type%22%3A%22geocity%22%7D%5D&companyID=0&cityID=300000115&sourceOfTheSearchField=homepagemex%3Ageneral&searchOrigin=Homepage_top-search&ke=Software-Entwickler%2Fin&ws=Deutschland&ra=30/", "User-Agent": "Scrapy/2.2.1 (+https://scrapy.org)"}, "html": 1, "png": 1, "url": "https://www.stepstone.de/stellenangebote--JAVA-Software-Entwickler-m-w-d-Sueddeutschland-TECCON-Consulting-Engineering-GmbH--6582908-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=1_1_25_dynrl_m_0_0_0_0", "uid": 140461124981984}, "status_code": 200, "client_ip": "172.17.0.1"}
</code></pre></div> | <p dir="auto">I'm trying to scrape the content from this <a href="https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&qs=%5B%7B%22id%22%3A%22216805%22%2C%22description%22%3A%22Software-Entwickler%2Fin%22%2C%22type%22%3A%22jd%22%7D%2C%7B%22id%22%3A%22300000115%22%2C%22description%22%3A%22Deutschland%22%2C%22type%22%3A%22geocity%22%7D%5D&companyID=0&cityID=300000115&sourceOfTheSearchField=homepagemex%3Ageneral&searchOrigin=Homepage_top-search&ke=Software-Entwickler%2Fin&ws=Deutschland&ra=30" rel="nofollow">link</a> on my macOS, using <code class="notranslate">scrapy</code> with <code class="notranslate">scrapy_splash</code> settings and <code class="notranslate">BeautifulSoup</code> I followed the instructions in the <a href="https://github.com/scrapy-plugins/scrapy-splash">documentation</a></p>
<ul dir="auto">
<li>I tested every single command in scrapy shell and each works perfectly fine, tested on several pages. when I run the spider with the same commands, it fails to detect any of the items.</li>
</ul>
<p dir="auto"><code class="notranslate">settings.py</code></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="BOT_NAME = 'stepstone'
SPIDER_MODULES = ['stepstone.spiders']
NEWSPIDER_MODULE = 'stepstone.spiders'
SPLASH_URL = 'http://0.0.0.0:8050' # changed from the documentation's http://192.168.59.103:8050 which does not work
DOWNLOADER_MIDDLEWARES = {
'scrapy_splash.SplashCookiesMiddleware': 723,
'scrapy_splash.SplashMiddleware': 725,
'scrapy.downloadermiddlewares.httpcompression.HttpCompressionMiddleware': 810,
}
SPIDER_MIDDLEWARES = {
'scrapy_splash.SplashDeduplicateArgsMiddleware': 100,
}
DUPEFILTER_CLASS = 'scrapy_splash.SplashAwareDupeFilter'
HTTPCACHE_STORAGE = 'scrapy_splash.SplashAwareFSCacheStorage'"><pre class="notranslate"><code class="notranslate">BOT_NAME = 'stepstone'
SPIDER_MODULES = ['stepstone.spiders']
NEWSPIDER_MODULE = 'stepstone.spiders'
SPLASH_URL = 'http://0.0.0.0:8050' # changed from the documentation's http://192.168.59.103:8050 which does not work
DOWNLOADER_MIDDLEWARES = {
'scrapy_splash.SplashCookiesMiddleware': 723,
'scrapy_splash.SplashMiddleware': 725,
'scrapy.downloadermiddlewares.httpcompression.HttpCompressionMiddleware': 810,
}
SPIDER_MIDDLEWARES = {
'scrapy_splash.SplashDeduplicateArgsMiddleware': 100,
}
DUPEFILTER_CLASS = 'scrapy_splash.SplashAwareDupeFilter'
HTTPCACHE_STORAGE = 'scrapy_splash.SplashAwareFSCacheStorage'
</code></pre></div>
<p dir="auto">The spider module:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from scrapy.spiders import Spider
from scrapy_splash import SplashRequest
from scrapy import Request
from bs4 import BeautifulSoup
class StepSpider(Spider):
name = 'step'
allowed_domains = ['www.stepstone.de']
start_urls = [
'https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&qs='
'%5B%7B%22id%22%3A%22216805%22%2C%22description%22%3A%22Software-Entw'
'ickler%2Fin%22%2C%22type%22%3A%22jd%22%7D%2C%7B%22id%22%3A%223000001'
'15%22%2C%22description%22%3A%22Deutschland%22%2C%22type%22%3A%22geoc'
'ity%22%7D%5D&companyID=0&cityID=300000115&sourceOfTheSearchField=home'
'pagemex%3Ageneral&searchOrigin=Homepage_top-search&ke=Software-Entwic'
'kler%2Fin&ws=Deutschland&ra=30/'
]
@staticmethod
def extract_item(soup, extraction_path):
result = soup.find(*extraction_path)
if result:
return result.getText()
def parse(self, response):
soup = BeautifulSoup(response.body, features='lxml')
listings = [
response.urljoin(item)
for item in response.xpath('//div/div/a/@href').extract()
if 'stellenangebote' in item
]
yield from [
Request(
url,
callback=self.parse_item,
cb_kwargs={'soup': soup},
meta={'splash': {'args': {'html': 1, 'png': 1,}}},
)
for url in listings
]
next_page = soup.find('a', {'data-at': 'pagination-next'})
if next_page:
yield SplashRequest(next_page.get('href'), self.parse)
def parse_header(self, response, soup):
title = response.xpath('//h1/text()').get()
location = self.extract_item(
soup, ('li', {'class': 'at-listing__li: st-icons_location'})
)
contract_type = self.extract_item(
soup, ('li', {'class': 'at-listing__list-icons_contract-type'})
)
work_type = self.extract_item(
soup, ('li', {'class': 'at-listing__list-icons_work-type'})
)
return {
'title': title,
'location': location,
'contract_type': contract_type,
'work_type': work_type,
}
def parse_body(self, response, soup):
titles = response.xpath('//h4/text()').extract()
intro = self.extract_item(
soup, ('div', {'class': 'at-section-text-introduction-content'})
)
description = self.extract_item(
soup, ('div', {'class': 'at-section-text-description-content'})
)
profile = self.extract_item(
soup, ('div', {'class': 'at-section-text-profile-content'})
)
we_offer = self.extract_item(
soup, ('div', {'class': 'at-section-text-weoffer-content'})
)
contact = self.extract_item(
soup, ('div', {'class': 'at-section-text-contact-content'})
)
return {
title: text
for title, text in zip(
titles, [intro, description, profile, we_offer, contact]
)
}
def parse_item(self, response, soup):
items = self.parse_header(response, soup)
items.update(self.parse_body(response, soup))
yield items"><pre class="notranslate"><code class="notranslate">from scrapy.spiders import Spider
from scrapy_splash import SplashRequest
from scrapy import Request
from bs4 import BeautifulSoup
class StepSpider(Spider):
name = 'step'
allowed_domains = ['www.stepstone.de']
start_urls = [
'https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&qs='
'%5B%7B%22id%22%3A%22216805%22%2C%22description%22%3A%22Software-Entw'
'ickler%2Fin%22%2C%22type%22%3A%22jd%22%7D%2C%7B%22id%22%3A%223000001'
'15%22%2C%22description%22%3A%22Deutschland%22%2C%22type%22%3A%22geoc'
'ity%22%7D%5D&companyID=0&cityID=300000115&sourceOfTheSearchField=home'
'pagemex%3Ageneral&searchOrigin=Homepage_top-search&ke=Software-Entwic'
'kler%2Fin&ws=Deutschland&ra=30/'
]
@staticmethod
def extract_item(soup, extraction_path):
result = soup.find(*extraction_path)
if result:
return result.getText()
def parse(self, response):
soup = BeautifulSoup(response.body, features='lxml')
listings = [
response.urljoin(item)
for item in response.xpath('//div/div/a/@href').extract()
if 'stellenangebote' in item
]
yield from [
Request(
url,
callback=self.parse_item,
cb_kwargs={'soup': soup},
meta={'splash': {'args': {'html': 1, 'png': 1,}}},
)
for url in listings
]
next_page = soup.find('a', {'data-at': 'pagination-next'})
if next_page:
yield SplashRequest(next_page.get('href'), self.parse)
def parse_header(self, response, soup):
title = response.xpath('//h1/text()').get()
location = self.extract_item(
soup, ('li', {'class': 'at-listing__li: st-icons_location'})
)
contract_type = self.extract_item(
soup, ('li', {'class': 'at-listing__list-icons_contract-type'})
)
work_type = self.extract_item(
soup, ('li', {'class': 'at-listing__list-icons_work-type'})
)
return {
'title': title,
'location': location,
'contract_type': contract_type,
'work_type': work_type,
}
def parse_body(self, response, soup):
titles = response.xpath('//h4/text()').extract()
intro = self.extract_item(
soup, ('div', {'class': 'at-section-text-introduction-content'})
)
description = self.extract_item(
soup, ('div', {'class': 'at-section-text-description-content'})
)
profile = self.extract_item(
soup, ('div', {'class': 'at-section-text-profile-content'})
)
we_offer = self.extract_item(
soup, ('div', {'class': 'at-section-text-weoffer-content'})
)
contact = self.extract_item(
soup, ('div', {'class': 'at-section-text-contact-content'})
)
return {
title: text
for title, text in zip(
titles, [intro, description, profile, we_offer, contact]
)
}
def parse_item(self, response, soup):
items = self.parse_header(response, soup)
items.update(self.parse_body(response, soup))
yield items
</code></pre></div>
<p dir="auto">full log:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2020-08-11 17:57:44 [scrapy.utils.log] INFO: Scrapy 2.2.1 started (bot: stepstone)
2020-08-11 17:57:44 [scrapy.utils.log] INFO: Versions: lxml 4.5.0.0, libxml2 2.9.10, cssselect 1.1.0, parsel 1.6.0, w3lib 1.22.0, Twisted 20.3.0, Python 3.8.3 (default, May 27 2020, 20:54:22) - [Clang 11.0.3 (clang-1103.0.32.59)], pyOpenSSL 19.1.0 (OpenSSL 1.1.1g 21 Apr 2020), cryptography 3.0, Platform macOS-10.15.6-x86_64-i386-64bit
2020-08-11 17:57:44 [scrapy.utils.log] DEBUG: Using reactor: twisted.internet.selectreactor.SelectReactor
2020-08-11 17:57:44 [scrapy.crawler] INFO: Overridden settings:
{'BOT_NAME': 'stepstone',
'DUPEFILTER_CLASS': 'scrapy_splash.SplashAwareDupeFilter',
'HTTPCACHE_STORAGE': 'scrapy_splash.SplashAwareFSCacheStorage',
'NEWSPIDER_MODULE': 'stepstone.spiders',
'SPIDER_MODULES': ['stepstone.spiders']}
2020-08-11 17:57:44 [scrapy.extensions.telnet] INFO: Telnet Password: 71c7bd3bdaf32c63
2020-08-11 17:57:44 [scrapy.middleware] INFO: Enabled extensions:
['scrapy.extensions.corestats.CoreStats',
'scrapy.extensions.telnet.TelnetConsole',
'scrapy.extensions.memusage.MemoryUsage',
'scrapy.extensions.logstats.LogStats']
2020-08-11 17:57:44 [scrapy.middleware] INFO: Enabled downloader middlewares:
['scrapy.downloadermiddlewares.httpauth.HttpAuthMiddleware',
'scrapy.downloadermiddlewares.downloadtimeout.DownloadTimeoutMiddleware',
'scrapy.downloadermiddlewares.defaultheaders.DefaultHeadersMiddleware',
'scrapy.downloadermiddlewares.useragent.UserAgentMiddleware',
'scrapy.downloadermiddlewares.retry.RetryMiddleware',
'scrapy.downloadermiddlewares.redirect.MetaRefreshMiddleware',
'scrapy.downloadermiddlewares.redirect.RedirectMiddleware',
'scrapy.downloadermiddlewares.cookies.CookiesMiddleware',
'scrapy_splash.SplashCookiesMiddleware',
'scrapy_splash.SplashMiddleware',
'scrapy.downloadermiddlewares.httpproxy.HttpProxyMiddleware',
'scrapy.downloadermiddlewares.httpcompression.HttpCompressionMiddleware',
'scrapy.downloadermiddlewares.stats.DownloaderStats']
2020-08-11 17:57:44 [scrapy.middleware] INFO: Enabled spider middlewares:
['scrapy.spidermiddlewares.httperror.HttpErrorMiddleware',
'scrapy_splash.SplashDeduplicateArgsMiddleware',
'scrapy.spidermiddlewares.offsite.OffsiteMiddleware',
'scrapy.spidermiddlewares.referer.RefererMiddleware',
'scrapy.spidermiddlewares.urllength.UrlLengthMiddleware',
'scrapy.spidermiddlewares.depth.DepthMiddleware']
2020-08-11 17:57:44 [scrapy.middleware] INFO: Enabled item pipelines:
[]
2020-08-11 17:57:44 [scrapy.core.engine] INFO: Spider opened
2020-08-11 17:57:44 [scrapy.extensions.logstats] INFO: Crawled 0 pages (at 0 pages/min), scraped 0 items (at 0 items/min)
2020-08-11 17:57:44 [scrapy.extensions.telnet] INFO: Telnet console listening on 127.0.0.1:6023
2020-08-11 17:57:45 [scrapy.core.engine] DEBUG: Crawled (200) <GET https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&qs=%5B%7B%22id%22%3A%22216805%22%2C%22description%22%3A%22Software-Entwickler%2Fin%22%2C%22type%22%3A%22jd%22%7D%2C%7B%22id%22%3A%22300000115%22%2C%22description%22%3A%22Deutschland%22%2C%22type%22%3A%22geocity%22%7D%5D&companyID=0&cityID=300000115&sourceOfTheSearchField=homepagemex%3Ageneral&searchOrigin=Homepage_top-search&ke=Software-Entwickler%2Fin&ws=Deutschland&ra=30/> (referer: None)
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: utf-8 confidence = 0.99
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: SHIFT_JIS Japanese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-JP Japanese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: GB2312 Chinese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-KR Korean confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: CP949 Korean confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: Big5 Chinese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-TW Taiwan confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1251 Russian confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: KOI8-R Russian confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: ISO-8859-5 Russian confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: MacCyrillic Russian confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: IBM866 Russian confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: IBM855 Russian confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: ISO-8859-7 Greek confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1253 Greek confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: ISO-8859-5 Bulgairan confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1251 Bulgarian confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: TIS-620 Thai confidence = 0.041278205445058724
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: ISO-8859-9 Turkish confidence = 0.5186494104315963
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1255 Hebrew confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1255 Hebrew confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1255 Hebrew confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: utf-8 confidence = 0.99
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: SHIFT_JIS Japanese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-JP Japanese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: GB2312 Chinese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-KR Korean confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: CP949 Korean confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: Big5 Chinese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-TW Taiwan confidence = 0.01
2020-08-11 17:57:47 [scrapy.dupefilters] DEBUG: Filtered duplicate request: <GET https://www.stepstone.de/stellenangebote--JAVA-Software-Entwickler-m-w-d-Sueddeutschland-TECCON-Consulting-Engineering-GmbH--6582908-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=1_1_25_dynrl_m_0_0_0_0> - no more duplicates will be shown (see DUPEFILTER_DEBUG to show all duplicates)
2020-08-11 17:57:47 [py.warnings] WARNING: /usr/local/lib/python3.8/site-packages/scrapy_splash/request.py:41: ScrapyDeprecationWarning: Call to deprecated function to_native_str. Use to_unicode instead.
url = to_native_str(url)
2020-08-11 17:57:50 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:57:51 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-fuer-Windowsapplikationen-m-w-d-Stockach-oder-Boeblingen-Baumer-MDS-GmbH--6568164-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=19_19_25_dynrl_m_0_0_0_0>
{'title': 'Software Entwickler für Windowsapplikationen (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Ihre Herausforderung:': None, 'Sie verfügen über:': None, 'Wir bieten:': None, 'Kontakt:': None}
2020-08-11 17:57:51 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:57:51 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--JAVA-Software-Entwickler-m-w-d-Sueddeutschland-TECCON-Consulting-Engineering-GmbH--6582908-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=1_1_25_dynrl_m_0_0_0_0>
{'title': 'JAVA Software-Entwickler (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Einleitung': None, 'Ihre Aufgaben': None, 'Ihr Profil': None, 'Wir bieten': None, 'Weitere Informationen': None}
2020-08-11 17:57:52 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:57:52 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-Business-Engineer-fuer-Blockchain-Team-in-Gruendung-w-m-d-Frankfurt-Main-Deutsche-Bahn-AG--6249570-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=16_16_25_dynrl_m_0_0_0_0>
{'title': 'Software-Entwickler / Business Engineer für Blockchain-Team in Gründung (w/m/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Was dich erwartet': None, 'Was wir erwarten': None, 'Wir bieten': None, 'Standort': None}
2020-08-11 17:57:55 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:57:55 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-w-m-d-Diagnose-und-Visualisierungssysteme-Mannheim-Halle-Stadler-Mannheim-GmbH--6615613-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=13_13_25_dynrl_m_0_0_0_0>
{'title': 'Software-Entwickler (w/m/d) Diagnose und Visualisierungssysteme', 'location': None, 'contract_type': None, 'work_type': None, 'Ihre Aufgaben:': None, 'Ihr Profil:': None, 'Unser Angebot:': None, 'Begeistert?': None}
2020-08-11 17:57:55 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:57:55 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-m-w-d-Rosenheim-Agenda-Informationssysteme-GmbH-Co-KG--6590641-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=17_17_25_dynrl_m_0_0_0_0>
{'title': 'Software-Entwickler (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Ihre Aufgaben:': None, 'Ihr Profil:': None, 'Das spricht für uns:': None, 'Kontakt:': None, 'Standort': None}
2020-08-11 17:58:08 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:08 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-w-m-d-fuer-Fahrzeugsteuerung-Mannheim-Halle-Stadler-Mannheim-GmbH--6615612-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=11_11_25_dynrl_m_0_0_0_0>
{'title': 'Software-Entwickler (w/m/d) für Fahrzeugsteuerung', 'location': None, 'contract_type': None, 'work_type': None, 'Ihre Aufgaben:': None, 'Ihr Profil:': None, 'Unser Angebot:': None, 'Begeistert?': None}
^C2020-08-11 17:58:09 [scrapy.crawler] INFO: Received SIGINT, shutting down gracefully. Send again to force
2020-08-11 17:58:09 [scrapy.core.engine] INFO: Closing spider (shutdown)
2020-08-11 17:58:13 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:13 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:13 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:13 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:13 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-m-w-d-Meissen-Staatliche-Porzellan-Manufaktur-Meissen-GmbH--6462761-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=14_14_25_dynrl_m_0_0_0_0>
{'title': 'Software Entwickler (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Wir gehen neue Wege': None, 'Ihre Aufgaben': None, 'unsere Anforderungen': None, 'unser Angebot': None, 'Kontakt': None}
2020-08-11 17:58:13 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Agiler-Software-Entwickler-m-w-div-Dresden-Otto-Group-Solution-Provider-OSP-GmbH--4573007-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=8_8_25_dynrl_m_0_0_0_0>
{'title': 'Agiler Software Entwickler (m/w/div)', 'location': None, 'contract_type': None, 'work_type': None, 'Über uns': None, 'Was dich erwartet': None, 'Was du mitbringen solltest': None, 'Diese und weitere Benefits erwarten dich': None, 'Kontakt': None}
2020-08-11 17:58:13 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-m-w-d-Essen-Lowell-Group--6615697-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=9_9_25_dynrl_m_0_0_0_0>
{'title': 'Software Entwickler (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Ihre Aufgaben': None, 'Ihr Profil': None, 'Wir bieten': None, 'Kontakt': None, 'Standort': None}
2020-08-11 17:58:13 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Softwareentwickler-m-w-d-Fullstack-Web-Boeblingen-Braunschweig-Deutschlandweit-Ingolstadt-Muenchen-Norddeutschland-Stuttgart-umlaut--6122455-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=15_15_25_dynrl_m_0_0_0_0>
{'title': 'Softwareentwickler (m/w/d) - Fullstack Web', 'location': None, 'contract_type': None, 'work_type': None, 'our öffer': None, 'yöu': None, 'top 5 reasöns': None, 'cöntact': None, 'Mitarbeiterbewertungen': None}
2020-08-11 17:58:13 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:13 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-E-Commerce-m-w-d-Dresden-Otto-Group-Solution-Provider-OSP-GmbH--6550022-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=10_10_25_dynrl_m_0_0_0_0>
{'title': 'Software Entwickler E-Commerce (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Was dich erwartet': None, 'Was du mitbringen solltest': None, 'Kontakt': None, 'Standort': None}
^C2020-08-11 17:58:16 [scrapy.crawler] INFO: Received SIGINT twice, forcing unclean shutdown
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <GET https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&companyid=0&sourceofthesearchfield=homepagemex%3Ageneral&qs=[{"id"%3A216805%2C"description"%3A"Software-Entwickler\%2Fin"%2C"type"%3A"jd"}%2C{"id"%3A300000115%2C"description"%3A"Deutschland"%2C"type"%3A"geocity"}]&cityid=300000115&ke=Software-Entwickler%2Fin&ws=Deutschland&ra=30&suid=90b7defb-2854-4c23-98bd-b39bc15a6922&of=25&action=paging_next via http://0.0.0.0:8050/render.html> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]"><pre class="notranslate"><code class="notranslate">2020-08-11 17:57:44 [scrapy.utils.log] INFO: Scrapy 2.2.1 started (bot: stepstone)
2020-08-11 17:57:44 [scrapy.utils.log] INFO: Versions: lxml 4.5.0.0, libxml2 2.9.10, cssselect 1.1.0, parsel 1.6.0, w3lib 1.22.0, Twisted 20.3.0, Python 3.8.3 (default, May 27 2020, 20:54:22) - [Clang 11.0.3 (clang-1103.0.32.59)], pyOpenSSL 19.1.0 (OpenSSL 1.1.1g 21 Apr 2020), cryptography 3.0, Platform macOS-10.15.6-x86_64-i386-64bit
2020-08-11 17:57:44 [scrapy.utils.log] DEBUG: Using reactor: twisted.internet.selectreactor.SelectReactor
2020-08-11 17:57:44 [scrapy.crawler] INFO: Overridden settings:
{'BOT_NAME': 'stepstone',
'DUPEFILTER_CLASS': 'scrapy_splash.SplashAwareDupeFilter',
'HTTPCACHE_STORAGE': 'scrapy_splash.SplashAwareFSCacheStorage',
'NEWSPIDER_MODULE': 'stepstone.spiders',
'SPIDER_MODULES': ['stepstone.spiders']}
2020-08-11 17:57:44 [scrapy.extensions.telnet] INFO: Telnet Password: 71c7bd3bdaf32c63
2020-08-11 17:57:44 [scrapy.middleware] INFO: Enabled extensions:
['scrapy.extensions.corestats.CoreStats',
'scrapy.extensions.telnet.TelnetConsole',
'scrapy.extensions.memusage.MemoryUsage',
'scrapy.extensions.logstats.LogStats']
2020-08-11 17:57:44 [scrapy.middleware] INFO: Enabled downloader middlewares:
['scrapy.downloadermiddlewares.httpauth.HttpAuthMiddleware',
'scrapy.downloadermiddlewares.downloadtimeout.DownloadTimeoutMiddleware',
'scrapy.downloadermiddlewares.defaultheaders.DefaultHeadersMiddleware',
'scrapy.downloadermiddlewares.useragent.UserAgentMiddleware',
'scrapy.downloadermiddlewares.retry.RetryMiddleware',
'scrapy.downloadermiddlewares.redirect.MetaRefreshMiddleware',
'scrapy.downloadermiddlewares.redirect.RedirectMiddleware',
'scrapy.downloadermiddlewares.cookies.CookiesMiddleware',
'scrapy_splash.SplashCookiesMiddleware',
'scrapy_splash.SplashMiddleware',
'scrapy.downloadermiddlewares.httpproxy.HttpProxyMiddleware',
'scrapy.downloadermiddlewares.httpcompression.HttpCompressionMiddleware',
'scrapy.downloadermiddlewares.stats.DownloaderStats']
2020-08-11 17:57:44 [scrapy.middleware] INFO: Enabled spider middlewares:
['scrapy.spidermiddlewares.httperror.HttpErrorMiddleware',
'scrapy_splash.SplashDeduplicateArgsMiddleware',
'scrapy.spidermiddlewares.offsite.OffsiteMiddleware',
'scrapy.spidermiddlewares.referer.RefererMiddleware',
'scrapy.spidermiddlewares.urllength.UrlLengthMiddleware',
'scrapy.spidermiddlewares.depth.DepthMiddleware']
2020-08-11 17:57:44 [scrapy.middleware] INFO: Enabled item pipelines:
[]
2020-08-11 17:57:44 [scrapy.core.engine] INFO: Spider opened
2020-08-11 17:57:44 [scrapy.extensions.logstats] INFO: Crawled 0 pages (at 0 pages/min), scraped 0 items (at 0 items/min)
2020-08-11 17:57:44 [scrapy.extensions.telnet] INFO: Telnet console listening on 127.0.0.1:6023
2020-08-11 17:57:45 [scrapy.core.engine] DEBUG: Crawled (200) <GET https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&qs=%5B%7B%22id%22%3A%22216805%22%2C%22description%22%3A%22Software-Entwickler%2Fin%22%2C%22type%22%3A%22jd%22%7D%2C%7B%22id%22%3A%22300000115%22%2C%22description%22%3A%22Deutschland%22%2C%22type%22%3A%22geocity%22%7D%5D&companyID=0&cityID=300000115&sourceOfTheSearchField=homepagemex%3Ageneral&searchOrigin=Homepage_top-search&ke=Software-Entwickler%2Fin&ws=Deutschland&ra=30/> (referer: None)
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: utf-8 confidence = 0.99
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: SHIFT_JIS Japanese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-JP Japanese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: GB2312 Chinese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-KR Korean confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: CP949 Korean confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: Big5 Chinese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-TW Taiwan confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1251 Russian confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: KOI8-R Russian confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: ISO-8859-5 Russian confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: MacCyrillic Russian confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: IBM866 Russian confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: IBM855 Russian confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: ISO-8859-7 Greek confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1253 Greek confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: ISO-8859-5 Bulgairan confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1251 Bulgarian confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: TIS-620 Thai confidence = 0.041278205445058724
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: ISO-8859-9 Turkish confidence = 0.5186494104315963
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1255 Hebrew confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1255 Hebrew confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: windows-1255 Hebrew confidence = 0.0
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: utf-8 confidence = 0.99
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: SHIFT_JIS Japanese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-JP Japanese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: GB2312 Chinese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-KR Korean confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: CP949 Korean confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: Big5 Chinese confidence = 0.01
2020-08-11 17:57:46 [chardet.charsetprober] DEBUG: EUC-TW Taiwan confidence = 0.01
2020-08-11 17:57:47 [scrapy.dupefilters] DEBUG: Filtered duplicate request: <GET https://www.stepstone.de/stellenangebote--JAVA-Software-Entwickler-m-w-d-Sueddeutschland-TECCON-Consulting-Engineering-GmbH--6582908-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=1_1_25_dynrl_m_0_0_0_0> - no more duplicates will be shown (see DUPEFILTER_DEBUG to show all duplicates)
2020-08-11 17:57:47 [py.warnings] WARNING: /usr/local/lib/python3.8/site-packages/scrapy_splash/request.py:41: ScrapyDeprecationWarning: Call to deprecated function to_native_str. Use to_unicode instead.
url = to_native_str(url)
2020-08-11 17:57:50 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:57:51 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-fuer-Windowsapplikationen-m-w-d-Stockach-oder-Boeblingen-Baumer-MDS-GmbH--6568164-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=19_19_25_dynrl_m_0_0_0_0>
{'title': 'Software Entwickler für Windowsapplikationen (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Ihre Herausforderung:': None, 'Sie verfügen über:': None, 'Wir bieten:': None, 'Kontakt:': None}
2020-08-11 17:57:51 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:57:51 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--JAVA-Software-Entwickler-m-w-d-Sueddeutschland-TECCON-Consulting-Engineering-GmbH--6582908-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=1_1_25_dynrl_m_0_0_0_0>
{'title': 'JAVA Software-Entwickler (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Einleitung': None, 'Ihre Aufgaben': None, 'Ihr Profil': None, 'Wir bieten': None, 'Weitere Informationen': None}
2020-08-11 17:57:52 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:57:52 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-Business-Engineer-fuer-Blockchain-Team-in-Gruendung-w-m-d-Frankfurt-Main-Deutsche-Bahn-AG--6249570-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=16_16_25_dynrl_m_0_0_0_0>
{'title': 'Software-Entwickler / Business Engineer für Blockchain-Team in Gründung (w/m/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Was dich erwartet': None, 'Was wir erwarten': None, 'Wir bieten': None, 'Standort': None}
2020-08-11 17:57:55 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:57:55 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-w-m-d-Diagnose-und-Visualisierungssysteme-Mannheim-Halle-Stadler-Mannheim-GmbH--6615613-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=13_13_25_dynrl_m_0_0_0_0>
{'title': 'Software-Entwickler (w/m/d) Diagnose und Visualisierungssysteme', 'location': None, 'contract_type': None, 'work_type': None, 'Ihre Aufgaben:': None, 'Ihr Profil:': None, 'Unser Angebot:': None, 'Begeistert?': None}
2020-08-11 17:57:55 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:57:55 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-m-w-d-Rosenheim-Agenda-Informationssysteme-GmbH-Co-KG--6590641-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=17_17_25_dynrl_m_0_0_0_0>
{'title': 'Software-Entwickler (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Ihre Aufgaben:': None, 'Ihr Profil:': None, 'Das spricht für uns:': None, 'Kontakt:': None, 'Standort': None}
2020-08-11 17:58:08 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:08 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-w-m-d-fuer-Fahrzeugsteuerung-Mannheim-Halle-Stadler-Mannheim-GmbH--6615612-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=11_11_25_dynrl_m_0_0_0_0>
{'title': 'Software-Entwickler (w/m/d) für Fahrzeugsteuerung', 'location': None, 'contract_type': None, 'work_type': None, 'Ihre Aufgaben:': None, 'Ihr Profil:': None, 'Unser Angebot:': None, 'Begeistert?': None}
^C2020-08-11 17:58:09 [scrapy.crawler] INFO: Received SIGINT, shutting down gracefully. Send again to force
2020-08-11 17:58:09 [scrapy.core.engine] INFO: Closing spider (shutdown)
2020-08-11 17:58:13 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:13 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:13 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:13 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:13 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-m-w-d-Meissen-Staatliche-Porzellan-Manufaktur-Meissen-GmbH--6462761-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=14_14_25_dynrl_m_0_0_0_0>
{'title': 'Software Entwickler (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Wir gehen neue Wege': None, 'Ihre Aufgaben': None, 'unsere Anforderungen': None, 'unser Angebot': None, 'Kontakt': None}
2020-08-11 17:58:13 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Agiler-Software-Entwickler-m-w-div-Dresden-Otto-Group-Solution-Provider-OSP-GmbH--4573007-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=8_8_25_dynrl_m_0_0_0_0>
{'title': 'Agiler Software Entwickler (m/w/div)', 'location': None, 'contract_type': None, 'work_type': None, 'Über uns': None, 'Was dich erwartet': None, 'Was du mitbringen solltest': None, 'Diese und weitere Benefits erwarten dich': None, 'Kontakt': None}
2020-08-11 17:58:13 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-m-w-d-Essen-Lowell-Group--6615697-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=9_9_25_dynrl_m_0_0_0_0>
{'title': 'Software Entwickler (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Ihre Aufgaben': None, 'Ihr Profil': None, 'Wir bieten': None, 'Kontakt': None, 'Standort': None}
2020-08-11 17:58:13 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Softwareentwickler-m-w-d-Fullstack-Web-Boeblingen-Braunschweig-Deutschlandweit-Ingolstadt-Muenchen-Norddeutschland-Stuttgart-umlaut--6122455-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=15_15_25_dynrl_m_0_0_0_0>
{'title': 'Softwareentwickler (m/w/d) - Fullstack Web', 'location': None, 'contract_type': None, 'work_type': None, 'our öffer': None, 'yöu': None, 'top 5 reasöns': None, 'cöntact': None, 'Mitarbeiterbewertungen': None}
2020-08-11 17:58:13 [scrapy.core.engine] DEBUG: Crawled (200) <POST http://0.0.0.0:8050/render.json> (referer: None)
2020-08-11 17:58:13 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.stepstone.de/stellenangebote--Software-Entwickler-E-Commerce-m-w-d-Dresden-Otto-Group-Solution-Provider-OSP-GmbH--6550022-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=10_10_25_dynrl_m_0_0_0_0>
{'title': 'Software Entwickler E-Commerce (m/w/d)', 'location': None, 'contract_type': None, 'work_type': None, 'Was dich erwartet': None, 'Was du mitbringen solltest': None, 'Kontakt': None, 'Standort': None}
^C2020-08-11 17:58:16 [scrapy.crawler] INFO: Received SIGINT twice, forcing unclean shutdown
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <GET https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&companyid=0&sourceofthesearchfield=homepagemex%3Ageneral&qs=[{"id"%3A216805%2C"description"%3A"Software-Entwickler\%2Fin"%2C"type"%3A"jd"}%2C{"id"%3A300000115%2C"description"%3A"Deutschland"%2C"type"%3A"geocity"}]&cityid=300000115&ke=Software-Entwickler%2Fin&ws=Deutschland&ra=30&suid=90b7defb-2854-4c23-98bd-b39bc15a6922&of=25&action=paging_next via http://0.0.0.0:8050/render.html> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
2020-08-11 17:58:16 [scrapy.downloadermiddlewares.retry] DEBUG: Retrying <POST http://0.0.0.0:8050/render.json> (failed 1 times): [<twisted.python.failure.Failure twisted.internet.error.ConnectionLost: Connection to the other side was lost in a non-clean fashion: Connection lost.>]
</code></pre></div>
<p dir="auto">docker log:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2020-08-11 15:57:27+0000 [-] Log opened.
2020-08-11 15:57:27.990815 [-] Xvfb is started: ['Xvfb', ':2061643423', '-screen', '0', '1024x768x24', '-nolisten', 'tcp']
QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-splash'
2020-08-11 15:57:28.135258 [-] Splash version: 3.4.1
2020-08-11 15:57:28.203198 [-] Qt 5.13.1, PyQt 5.13.1, WebKit 602.1, Chromium 73.0.3683.105, sip 4.19.19, Twisted 19.7.0, Lua 5.2
2020-08-11 15:57:28.203826 [-] Python 3.6.9 (default, Nov 7 2019, 10:44:02) [GCC 8.3.0]
2020-08-11 15:57:28.204679 [-] Open files limit: 1048576
2020-08-11 15:57:28.205242 [-] Can't bump open files limit
2020-08-11 15:57:28.229336 [-] proxy profiles support is enabled, proxy profiles path: /etc/splash/proxy-profiles
2020-08-11 15:57:28.229855 [-] memory cache: enabled, private mode: enabled, js cross-domain access: disabled
2020-08-11 15:57:28.410540 [-] verbosity=1, slots=20, argument_cache_max_entries=500, max-timeout=90.0
2020-08-11 15:57:28.411484 [-] Web UI: enabled, Lua: enabled (sandbox: enabled), Webkit: enabled, Chromium: enabled
2020-08-11 15:57:28.412634 [-] Site starting on 8050
2020-08-11 15:57:28.412924 [-] Starting factory <twisted.web.server.Site object at 0x7fbfa77591d0>
2020-08-11 15:57:28.414172 [-] Server listening on http://0.0.0.0:8050
2020-08-11 15:57:49.583386 [events] {"path": "/render.json", "rendertime": 2.339588165283203, "maxrss": 236848, "load": [0.1, 0.05, 0.06], "fds": 102, "active": 7, "qsize": 0, "_id": 140461124347104, "method": "POST", "timestamp": 1597161469, "user-agent": "Scrapy/2.2.1 (+https://scrapy.org)", "args": {"headers": {"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en", "Cookie": "cfid=bef36179-b81a-44e3-9bd1-059f5406a911; cftoken=0; USER_HASH_ID=f896d04a-5348-455b-a0ab-ffd0d5f6e674; V5=1; UXUSER=BLACKLIST%3BA%3B%20%3B; STEPSTONEV5LANG=de; ONLINE_CF=14-190; dtCookie=35$77973CDF4397BDD4A3EF1CAFDB05C9FD", "Referer": "https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&qs=%5B%7B%22id%22%3A%22216805%22%2C%22description%22%3A%22Software-Entwickler%2Fin%22%2C%22type%22%3A%22jd%22%7D%2C%7B%22id%22%3A%22300000115%22%2C%22description%22%3A%22Deutschland%22%2C%22type%22%3A%22geocity%22%7D%5D&companyID=0&cityID=300000115&sourceOfTheSearchField=homepagemex%3Ageneral&searchOrigin=Homepage_top-search&ke=Software-Entwickler%2Fin&ws=Deutschland&ra=30/", "User-Agent": "Scrapy/2.2.1 (+https://scrapy.org)"}, "html": 1, "png": 1, "url": "https://www.stepstone.de/stellenangebote--Software-Entwickler-fuer-Windowsapplikationen-m-w-d-Stockach-oder-Boeblingen-Baumer-MDS-GmbH--6568164-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=19_19_25_dynrl_m_0_0_0_0", "uid": 140461124347104}, "status_code": 200, "client_ip": "172.17.0.1"}
2020-08-11 15:57:49.584498 [-] "172.17.0.1" - - [11/Aug/2020:15:57:48 +0000] "POST /render.json HTTP/1.1" 200 371319 "-" "Scrapy/2.2.1 (+https://scrapy.org)"
2020-08-11 15:57:49.777352 [events] {"path": "/render.json", "rendertime": 2.6071407794952393, "maxrss": 243100, "load": [0.1, 0.05, 0.06], "fds": 106, "active": 6, "qsize": 0, "_id": 140461124981984, "method": "POST", "timestamp": 1597161469, "user-agent": "Scrapy/2.2.1 (+https://scrapy.org)", "args": {"headers": {"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en", "Cookie": "cfid=bef36179-b81a-44e3-9bd1-059f5406a911; cftoken=0; USER_HASH_ID=f896d04a-5348-455b-a0ab-ffd0d5f6e674; V5=1; UXUSER=BLACKLIST%3BA%3B%20%3B; STEPSTONEV5LANG=de; ONLINE_CF=14-190; dtCookie=35$77973CDF4397BDD4A3EF1CAFDB05C9FD", "Referer": "https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&qs=%5B%7B%22id%22%3A%22216805%22%2C%22description%22%3A%22Software-Entwickler%2Fin%22%2C%22type%22%3A%22jd%22%7D%2C%7B%22id%22%3A%22300000115%22%2C%22description%22%3A%22Deutschland%22%2C%22type%22%3A%22geocity%22%7D%5D&companyID=0&cityID=300000115&sourceOfTheSearchField=homepagemex%3Ageneral&searchOrigin=Homepage_top-search&ke=Software-Entwickler%2Fin&ws=Deutschland&ra=30/", "User-Agent": "Scrapy/2.2.1 (+https://scrapy.org)"}, "html": 1, "png": 1, "url": "https://www.stepstone.de/stellenangebote--JAVA-Software-Entwickler-m-w-d-Sueddeutschland-TECCON-Consulting-Engineering-GmbH--6582908-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=1_1_25_dynrl_m_0_0_0_0", "uid": 140461124981984}, "status_code": 200, "client_ip": "172.17.0.1"}"><pre class="notranslate"><code class="notranslate">2020-08-11 15:57:27+0000 [-] Log opened.
2020-08-11 15:57:27.990815 [-] Xvfb is started: ['Xvfb', ':2061643423', '-screen', '0', '1024x768x24', '-nolisten', 'tcp']
QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-splash'
2020-08-11 15:57:28.135258 [-] Splash version: 3.4.1
2020-08-11 15:57:28.203198 [-] Qt 5.13.1, PyQt 5.13.1, WebKit 602.1, Chromium 73.0.3683.105, sip 4.19.19, Twisted 19.7.0, Lua 5.2
2020-08-11 15:57:28.203826 [-] Python 3.6.9 (default, Nov 7 2019, 10:44:02) [GCC 8.3.0]
2020-08-11 15:57:28.204679 [-] Open files limit: 1048576
2020-08-11 15:57:28.205242 [-] Can't bump open files limit
2020-08-11 15:57:28.229336 [-] proxy profiles support is enabled, proxy profiles path: /etc/splash/proxy-profiles
2020-08-11 15:57:28.229855 [-] memory cache: enabled, private mode: enabled, js cross-domain access: disabled
2020-08-11 15:57:28.410540 [-] verbosity=1, slots=20, argument_cache_max_entries=500, max-timeout=90.0
2020-08-11 15:57:28.411484 [-] Web UI: enabled, Lua: enabled (sandbox: enabled), Webkit: enabled, Chromium: enabled
2020-08-11 15:57:28.412634 [-] Site starting on 8050
2020-08-11 15:57:28.412924 [-] Starting factory <twisted.web.server.Site object at 0x7fbfa77591d0>
2020-08-11 15:57:28.414172 [-] Server listening on http://0.0.0.0:8050
2020-08-11 15:57:49.583386 [events] {"path": "/render.json", "rendertime": 2.339588165283203, "maxrss": 236848, "load": [0.1, 0.05, 0.06], "fds": 102, "active": 7, "qsize": 0, "_id": 140461124347104, "method": "POST", "timestamp": 1597161469, "user-agent": "Scrapy/2.2.1 (+https://scrapy.org)", "args": {"headers": {"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en", "Cookie": "cfid=bef36179-b81a-44e3-9bd1-059f5406a911; cftoken=0; USER_HASH_ID=f896d04a-5348-455b-a0ab-ffd0d5f6e674; V5=1; UXUSER=BLACKLIST%3BA%3B%20%3B; STEPSTONEV5LANG=de; ONLINE_CF=14-190; dtCookie=35$77973CDF4397BDD4A3EF1CAFDB05C9FD", "Referer": "https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&qs=%5B%7B%22id%22%3A%22216805%22%2C%22description%22%3A%22Software-Entwickler%2Fin%22%2C%22type%22%3A%22jd%22%7D%2C%7B%22id%22%3A%22300000115%22%2C%22description%22%3A%22Deutschland%22%2C%22type%22%3A%22geocity%22%7D%5D&companyID=0&cityID=300000115&sourceOfTheSearchField=homepagemex%3Ageneral&searchOrigin=Homepage_top-search&ke=Software-Entwickler%2Fin&ws=Deutschland&ra=30/", "User-Agent": "Scrapy/2.2.1 (+https://scrapy.org)"}, "html": 1, "png": 1, "url": "https://www.stepstone.de/stellenangebote--Software-Entwickler-fuer-Windowsapplikationen-m-w-d-Stockach-oder-Boeblingen-Baumer-MDS-GmbH--6568164-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=19_19_25_dynrl_m_0_0_0_0", "uid": 140461124347104}, "status_code": 200, "client_ip": "172.17.0.1"}
2020-08-11 15:57:49.584498 [-] "172.17.0.1" - - [11/Aug/2020:15:57:48 +0000] "POST /render.json HTTP/1.1" 200 371319 "-" "Scrapy/2.2.1 (+https://scrapy.org)"
2020-08-11 15:57:49.777352 [events] {"path": "/render.json", "rendertime": 2.6071407794952393, "maxrss": 243100, "load": [0.1, 0.05, 0.06], "fds": 106, "active": 6, "qsize": 0, "_id": 140461124981984, "method": "POST", "timestamp": 1597161469, "user-agent": "Scrapy/2.2.1 (+https://scrapy.org)", "args": {"headers": {"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en", "Cookie": "cfid=bef36179-b81a-44e3-9bd1-059f5406a911; cftoken=0; USER_HASH_ID=f896d04a-5348-455b-a0ab-ffd0d5f6e674; V5=1; UXUSER=BLACKLIST%3BA%3B%20%3B; STEPSTONEV5LANG=de; ONLINE_CF=14-190; dtCookie=35$77973CDF4397BDD4A3EF1CAFDB05C9FD", "Referer": "https://www.stepstone.de/5/ergebnisliste.html?stf=freeText&ns=1&qs=%5B%7B%22id%22%3A%22216805%22%2C%22description%22%3A%22Software-Entwickler%2Fin%22%2C%22type%22%3A%22jd%22%7D%2C%7B%22id%22%3A%22300000115%22%2C%22description%22%3A%22Deutschland%22%2C%22type%22%3A%22geocity%22%7D%5D&companyID=0&cityID=300000115&sourceOfTheSearchField=homepagemex%3Ageneral&searchOrigin=Homepage_top-search&ke=Software-Entwickler%2Fin&ws=Deutschland&ra=30/", "User-Agent": "Scrapy/2.2.1 (+https://scrapy.org)"}, "html": 1, "png": 1, "url": "https://www.stepstone.de/stellenangebote--JAVA-Software-Entwickler-m-w-d-Sueddeutschland-TECCON-Consulting-Engineering-GmbH--6582908-inline.html?suid=90b7defb-2854-4c23-98bd-b39bc15a6922&rltr=1_1_25_dynrl_m_0_0_0_0", "uid": 140461124981984}, "status_code": 200, "client_ip": "172.17.0.1"}
</code></pre></div> | 1 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=pathos" rel="nofollow">Mathias Bogaert</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-168?redirect=false" rel="nofollow">SPR-168</a></strong> and commented</p>
<p dir="auto">It would be very usefuly to be able to enable query caching on all DAO's that extend HibernateDaoSupport. Add a boolean cacheQueries to HibernateTemplate, and evaluate it in createQuery. Then add a setter to HibernateDaoSupport which calls the setter on HibernateTemplate.</p>
<hr>
<p dir="auto">No further details from <a href="https://jira.spring.io/browse/SPR-168?redirect=false" rel="nofollow">SPR-168</a></p> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=borislav.andruschuk" rel="nofollow">Andruschuk Borislav</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-7393?redirect=false" rel="nofollow">SPR-7393</a></strong> and commented</p>
<p dir="auto">We have some DAO which call an other DAO in RowMapper to get linked entities. Sometimes we have to do that to link different loosely coupled entities in depends of included application modules, data base state etc. After migration from Spring 2.5.6 to Spring 3.X we've got the following issue:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="org.hibernate.HibernateException: connnection proxy not usable after transaction completion
at org.hibernate.jdbc.BorrowedConnectionProxy.invoke(BorrowedConnectionProxy.java:66)
at $Proxy6.prepareStatement(Unknown Source)
at org.springframework.jdbc.core.PreparedStatementCreatorFactory$PreparedStatementCreatorImpl.createPreparedStatement(PreparedStatementCreatorFactory.java:245)
at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:580)"><pre class="notranslate"><code class="notranslate">org.hibernate.HibernateException: connnection proxy not usable after transaction completion
at org.hibernate.jdbc.BorrowedConnectionProxy.invoke(BorrowedConnectionProxy.java:66)
at $Proxy6.prepareStatement(Unknown Source)
at org.springframework.jdbc.core.PreparedStatementCreatorFactory$PreparedStatementCreatorImpl.createPreparedStatement(PreparedStatementCreatorFactory.java:245)
at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:580)
</code></pre></div>
<p dir="auto">It happens on prepared statement creation for query need to be executed after execution any SQL statement in DAO called from RowMapper. I've created Unit test to show this incident.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.0 GA, 3.0.1, 3.0.2, 3.0.3</p>
<p dir="auto"><strong>Attachments:</strong></p>
<ul dir="auto">
<li><a href="https://jira.spring.io/secure/attachment/16931/RowMapperTest.java" rel="nofollow">RowMapperTest.java</a> (<em>3.19 kB</em>)</li>
</ul>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a href="https://jira.spring.io/browse/SEC-1778" rel="nofollow">SEC-1778</a> MutableAclService#updateAcl() fails in JPA environment (<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/b261d336b18ccf852d0def64cdfd852c052ef355/hovercard" href="https://github.com/spring-projects/spring-framework/commit/b261d336b18ccf852d0def64cdfd852c052ef355"><tt>b261d33</tt></a></p> | 0 |
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-override-all-other-styles-by-using-important" rel="nofollow">http://www.freecodecamp.com/challenges/waypoint-override-all-other-styles-by-using-important</a> has an issue.</p>
<p dir="auto">If there is a space between "!important" and ";" test will return:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Cannot read property 'length' of null"><pre class="notranslate"><code class="notranslate">Cannot read property 'length' of null
</code></pre></div>
<p dir="auto">Having a space between last character and ";" on other lines do not provide a failed test case.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<style>
body {
background-color: black;
font-family: Monospace;
color: green;
}
#orange-text {
color: orange;
}
.pink-text {
color: pink !important ;
}
.blue-text {
color: blue;
}
</style>
<h1 id="orange-text" class="pink-text blue-text" style="color: white">Hello World!</h1>"><pre class="notranslate"><code class="notranslate"><style>
body {
background-color: black;
font-family: Monospace;
color: green;
}
#orange-text {
color: orange;
}
.pink-text {
color: pink !important ;
}
.blue-text {
color: blue;
}
</style>
<h1 id="orange-text" class="pink-text blue-text" style="color: white">Hello World!</h1>
</code></pre></div> | <p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-override-all-other-styles-by-using-important" rel="nofollow">http://www.freecodecamp.com/challenges/waypoint-override-all-other-styles-by-using-important</a> has an issue.</p>
<p dir="auto">When editing the style, do not include ";" after !important, and the checklist will change "Your pink-text class should have the !important keyword to override all other declarations." to "Cannot read property 'length' of null"</p>
<p dir="auto">Adding the ";" changes the checklist back.</p>
<p dir="auto">Screenshot: <a href="http://screencast.com/t/TNalhp6su" rel="nofollow">http://screencast.com/t/TNalhp6su</a></p> | 1 |
<p dir="auto"><code class="notranslate">ne</code> is a point-wise math operator so porting it from the TH code to Aten (and TensorIterator) expected to be easy. Such migration will help to clean up the code, simplify dispatch as well as provide immediate 2-3x operator performance gain.</p>
<p dir="auto">Porting guide: <a href="https://github.com/pytorch/pytorch/wiki/TH-to-ATen-porting-guide">https://github.com/pytorch/pytorch/wiki/TH-to-ATen-porting-guide</a></p>
<p dir="auto">Example PR with porting of the adaptive_avg_pool2d: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="386961306" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/14714" data-hovercard-type="pull_request" data-hovercard-url="/pytorch/pytorch/pull/14714/hovercard" href="https://github.com/pytorch/pytorch/pull/14714">#14714</a></p>
<p dir="auto">How to use TensorIterator: <a href="https://github.com/pytorch/pytorch/wiki/How-to-use-TensorIterator">https://github.com/pytorch/pytorch/wiki/How-to-use-TensorIterator</a></p> | <p dir="auto">Porting TH operators is essential for code simplicity and performance reasons.</p>
<p dir="auto">Porting guides and Q&A are available in umbrella issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="481740397" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/24507" data-hovercard-type="issue" data-hovercard-url="/pytorch/pytorch/issues/24507/hovercard" href="https://github.com/pytorch/pytorch/issues/24507">#24507</a></p>
<p dir="auto">Feel free to add <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/VitalyFedyunin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/VitalyFedyunin">@VitalyFedyunin</a> as a reviewer to get a prioritized review.</p> | 1 |
<p dir="auto">trailing slash in link for legit page works for client side navigation but leads to not found bundle and 404 on hard refresh (ssr)</p>
<h1 dir="auto">Bug report</h1>
<h2 dir="auto">Describe the bug</h2>
<p dir="auto">let me know if title needs further clarification.</p>
<p dir="auto"><a href="https://github.com/zeit/next.js/issues?q=is%3Aissue+trailing+slash+is%3Aclosed">all relevant issues</a> has been closed with reasoning that its been fixed in 6-canary (I believe it is not) or by improved serve (which is true only in perhaps production static export).</p>
<p dir="auto">I'm rewriting my existing blog to next.js and i previously used trailing slashes. Latest <code class="notranslate">serve</code> can help with it once i build my next.js powered blog. But in order to fix dev env i need either to get rid of trailing slashes and utilize <code class="notranslate">301 Moved Permanently</code> in prod; or live with broken trailing slash support in dev.</p>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">Here is minimal reproducible case (link to repro repo is below snippet):</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// pages/index.js
import Link from "next/link";
export default () => (
<Link href="/about/">
<a>About</a>
</Link>
);
// pages/index.js
export default () => "about";"><pre class="notranslate"><span class="pl-c">// pages/index.js</span>
<span class="pl-k">import</span> <span class="pl-v">Link</span> <span class="pl-k">from</span> <span class="pl-s">"next/link"</span><span class="pl-kos">;</span>
<span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">(</span>
<span class="pl-c1"><</span><span class="pl-ent">Link</span> <span class="pl-c1">href</span><span class="pl-c1">=</span><span class="pl-s">"/about/"</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">a</span><span class="pl-c1">></span>About<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">a</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">Link</span><span class="pl-c1">></span>
<span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// pages/index.js</span>
<span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-s">"about"</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Minimal reproducible repo <a href="https://github.com/iamstarkov/next.js-trailing-slash-bug-demo">https://github.com/iamstarkov/next.js-trailing-slash-bug-demo</a></p>
<ol dir="auto">
<li>clone repo <code class="notranslate">git clone https://github.com/iamstarkov/next.js-trailing-slash-bug-demo</code></li>
<li>change directory <code class="notranslate">cd next.js-trailing-slash-bug-demo</code></li>
<li>install deps <code class="notranslate">yarn</code></li>
<li>run dev: <code class="notranslate">yarn dev</code></li>
<li>open <a href="http://localhost:3000/" rel="nofollow">http://localhost:3000/</a></li>
<li>open devtools' network tab</li>
<li>observe <code class="notranslate">http://localhost:3000/_next/static/development/pages/about.js</code> being 200ed</li>
<li>observe <code class="notranslate">http://localhost:3000/_next/on-demand-entries-ping?page=/about/</code> being 200ed</li>
<li>observe <code class="notranslate">http://localhost:3000/about/</code> being 404ed</li>
<li>observe persistent attempts to resolve <code class="notranslate">http://localhost:3000/about/</code></li>
<li>observe in the terminal <code class="notranslate">Client pings, but there's no entry for page: /about/</code></li>
<li>refresh the page</li>
<li>observe 404 page.</li>
<li>remove trailing slash in the url or click <a href="http://localhost:3000/about" rel="nofollow">http://localhost:3000/about</a></li>
<li>observe page being 200ed</li>
<li>to ensure error persistence repeat steps 5-15 once.</li>
</ol>
<h2 dir="auto">Expected behavior</h2>
<ol dir="auto">
<li><code class="notranslate">/about/</code> shouldnt be resolved as <code class="notranslate">404 not found</code></li>
<li><code class="notranslate">/about/</code> should be resolved as <code class="notranslate">200 ok</code></li>
<li>Server should not print <code class="notranslate">Client pings, but there's no entry for page: /about/</code></li>
<li>both <code class="notranslate">/about</code> and <code class="notranslate">/about/</code> should work the same way</li>
</ol>
<h2 dir="auto">Screenshots</h2>
<p dir="auto">N/A</p>
<h2 dir="auto">System information</h2>
<ul dir="auto">
<li>OS: macOS High Sierra 10.13.6 (17G65)</li>
<li>Browser (should not matter, but can repro'ed in chrome 69.0.3497.100 and safari Version 12.0 (13606.2.11) (was the same for safari 11)</li>
<li>Version of Next.js: 7.0.0 (could repro on 5.x and 6.x)</li>
</ul>
<h2 dir="auto">Additional context</h2>
<p dir="auto">Add any other context about the problem here.</p>
<p dir="auto">If you change this code in <a href="https://github.com/zeit/next.js/blob/459c1c13d054b37442126889077b7056269eeb35/server/on-demand-entry-handler.js#L242-L249">https://github.com/zeit/next.js/blob/459c1c13d054b37442126889077b7056269eeb35/server/on-demand-entry-handler.js#L242-L249</a></p>
<p dir="auto">or <code class="notranslate">node_modules/next/dist/server/on-demand-entry-handler.js</code> locally</p>
<div class="highlight highlight-source-diff notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" const { query } = parse(req.url, true)
const page = normalizePage(query.page)
+ console.log('query.page', query.page);
+ console.log('page', page);
+ console.log('Object.keys(entries)', Object.keys(entries));
const entryInfo = entries[page]
// If there's no entry.
// Then it seems like an weird issue.
if (!entryInfo) {
const message = `Client pings, but there's no entry for page: ${page}`"><pre class="notranslate"> const { query } = parse(req.url, true)
const page = normalizePage(query.page)
<span class="pl-mi1"><span class="pl-mi1">+</span> console.log('query.page', query.page);</span>
<span class="pl-mi1"><span class="pl-mi1">+</span> console.log('page', page);</span>
<span class="pl-mi1"><span class="pl-mi1">+</span> console.log('Object.keys(entries)', Object.keys(entries));</span>
const entryInfo = entries[page]
// If there's no entry.
// Then it seems like an weird issue.
if (!entryInfo) {
const message = `Client pings, but there's no entry for page: ${page}`</pre></div>
<p dir="auto">and restart <code class="notranslate">next dev</code> and open <a href="http://localhost:3000/" rel="nofollow">http://localhost:3000/</a> and click about link then:</p>
<ul dir="auto">
<li>for <code class="notranslate">/about</code>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="query.page /about
page /about
Object.keys(entries) [ '/', '/about' ]"><pre class="notranslate"><code class="notranslate">query.page /about
page /about
Object.keys(entries) [ '/', '/about' ]
</code></pre></div>
</li>
<li>for <code class="notranslate">/about/</code>:
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="query.page /about/
page /about/
Object.keys(entries) [ '/', '/about' ]
Client pings, but there's no entry for page: /about/"><pre class="notranslate"><code class="notranslate">query.page /about/
page /about/
Object.keys(entries) [ '/', '/about' ]
Client pings, but there's no entry for page: /about/
</code></pre></div>
</li>
</ul>
<p dir="auto">I think the problem (at least part of it) is in inability of onDemandEntryHandler's middleware to find page in entries if page has trailing slash.</p>
<p dir="auto">I hope my 2 hours of investigation and preparation can help with fixing this issue.</p> | <p dir="auto">Hi,</p>
<p dir="auto">Would be nice to be able to modify the webpack configuration using the interface that <a href="https://github.com/mozilla-neutrino/webpack-chain">webpack-chain</a> provides.</p>
<p dir="auto">My proposal is to do something like <a href="https://poi.js.org/" rel="nofollow">poi</a> does, as is described in <a href="https://poi.js.org/#/home?id=webpack" rel="nofollow">poi>docs>webpack</a>. Doing it that way the user have the choice of using <a href="https://github.com/mozilla-neutrino/webpack-chain">webpack-chain</a> or mutate the configuration object directly (which is not the safest way).</p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/sergiodxa/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/sergiodxa">@sergiodxa</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/liweinan0423/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/liweinan0423">@liweinan0423</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/emattias/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/emattias">@emattias</a> What do you think about it? Should I submit a PR?</p>
<hr>
<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> | 0 |
<p dir="auto">I was testing out some code I found on the mailing list, and appended some of my own:</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="enum Foobar {
Foo(~str),
Bar(~str)
}
fn f<'a>(fb: &'a Foobar) -> &'a str {
let rs = match *fb {
Foo(ref rs) => rs,
Bar(ref rs) => rs
};
let s: &'a str = *rs;
s
}
struct Foo(int);
fn main() {
}"><pre class="notranslate"><span class="pl-k">enum</span> <span class="pl-smi">Foobar</span> <span class="pl-kos">{</span>
<span class="pl-v">Foo</span><span class="pl-kos">(</span>~<span class="pl-smi">str</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-smi">str</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span>
<span class="pl-k">fn</span> <span class="pl-en">f</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-kos">(</span><span class="pl-s1">fb</span><span class="pl-kos">:</span> <span class="pl-c1">&</span><span class="pl-c1">'</span><span class="pl-ent">a</span> <span class="pl-smi">Foobar</span><span class="pl-kos">)</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">let</span> rs = <span class="pl-k">match</span> <span class="pl-c1">*</span>fb <span class="pl-kos">{</span>
<span class="pl-v">Foo</span><span class="pl-kos">(</span><span class="pl-k">ref</span> rs<span class="pl-kos">)</span> => rs<span class="pl-kos">,</span>
<span class="pl-v">Bar</span><span class="pl-kos">(</span><span class="pl-k">ref</span> rs<span class="pl-kos">)</span> => rs
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> s<span class="pl-kos">:</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-c1">*</span>rs<span class="pl-kos">;</span>
s
<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-smi">int</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">fn</span> <span class="pl-en">main</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">Compiling the above program (after adding <code class="notranslate">struct Foo(int);</code>) results in a compiler error. Setting the <code class="notranslate">RUST_LOG</code> flag to <code class="notranslate">rustc=1,::rt::backtrace</code> produces the following log dump:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="rust: task failed at 'non-variant in variant_def_ids', /home/zhatahet/code/rust-0.6/src/libsyntax/ast_util.rs:55
/home/zhatahet/rust/bin/../lib/librustrt.so(_ZN9rust_task13begin_failureEPKcS1_m+0x4f)[0x7f6edda7701f]
/home/zhatahet/rust/bin/../lib/librustrt.so(+0x2d921)[0x7f6edda88921]
/home/zhatahet/rust/bin/../lib/librustrt.so(upcall_fail+0x1ce)[0x7f6edda79a3e]
/home/zhatahet/rust/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so(+0x10aa2b)[0x7f6edf5c3a2b]
/home/zhatahet/rust/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so(+0x10a9d2)[0x7f6edf5c39d2]
/home/zhatahet/rust/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so(_ZN3sys12begin_unwind17_61fe198059b9e3fc3_06E+0x71)[0x7f6edf50b4a1]
/home/zhatahet/rust/bin/../lib/libsyntax-84efebcb12c867a2-0.6.so(_ZN8ast_util15variant_def_ids17_adb77598a27029ff3_06E+0x136)[0x7f6edeaa2926]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check6_match17check_pat_variant17_4fbfcbee3eb1c2da3_06E+0x21b)[0x7f6ede0fe54b]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check6_match9check_pat17_548e5ffb944ea5373_06E+0x3557)[0x7f6ede0f6457]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x8c1ae4)[0x7f6ede57bae4]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x438ee7)[0x7f6ede0f2ee7]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check6_match11check_match17_536eb3b0eafde7b13_06E+0x22f)[0x7f6ede0ee94f]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check23check_expr_with_unifier17_841417e8b97d6e713_06E+0x3ef1)[0x7f6ede1a8151]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check28check_expr_coercable_to_type17_5acee3342c4cd5a23_06E+0x91)[0x7f6ede1bbfc1]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check22check_decl_initializer17_1547d91555c977933_06E+0xb2)[0x7f6ede1cf042]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check16check_decl_local16_ac37e3abcfdd7ff3_06E+0x5ea)[0x7f6ede1cf72a]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x8c1ae4)[0x7f6ede57bae4]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x5175ba)[0x7f6ede1d15ba]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check10check_stmt17_e63c562496e2808c3_06E+0x26e)[0x7f6ede1d102e]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x517791)[0x7f6ede1d1791]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check25check_block_with_expected17_b352eb1d2e7639c03_06E+0x21e)[0x7f6ede16caae]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check8check_fn17_20cad4a150c275a73_06E+0x1089)[0x7f6ede16b2f9]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check13check_bare_fn14_4fc3abe889a533_06E+0x17e)[0x7f6ede169fae]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check10check_item16_f8c9b58265752963_06E+0x43d)[0x7f6ede168ded]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x4ae801)[0x7f6ede168801]
/home/zhatahet/rust/bin/../lib/libsyntax-84efebcb12c867a2-0.6.so(+0xe5154)[0x7f6edeaec154]
/home/zhatahet/rust/bin/../lib/libsyntax-84efebcb12c867a2-0.6.so(+0xe4cfa)[0x7f6edeaebcfa]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check16check_item_types17_b41350aeb9ad50f23_06E+0x430)[0x7f6ede1685d0]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x5e52a5)[0x7f6ede29f2a5]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck11check_crate17_63c941d6da5d83433_06E+0x2d0)[0x7f6ede29dec0]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6driver6driver12compile_rest17_b2b258b84b35f3533_06E+0x1218)[0x7f6ede5380d8]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x8c1ae4)[0x7f6ede57bae4]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6driver6driver12compile_upto17_12335154b455986e3_06E+0x108)[0x7f6ede53d3e8]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x8c1ae4)[0x7f6ede57bae4]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6driver6driver13compile_input15_bb29edf7a232863_06E+0xca)[0x7f6ede53d82a]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN12run_compiler17_64d52739a36d169c3_06E+0x20aa)[0x7f6ede56cf7a]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x8bf5b1)[0x7f6ede5795b1]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x8bbddc)[0x7f6ede575ddc]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x8c1ae4)[0x7f6ede57bae4]
/home/zhatahet/rust/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so(+0xd340e)[0x7f6edf58c40e]
/home/zhatahet/rust/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so(+0x153294)[0x7f6edf60c294]
/home/zhatahet/rust/bin/../lib/librustrt.so(_Z18task_start_wrapperP10spawn_args+0x24)[0x7f6edda782b4]
error: internal compiler error: unexpected failure
note: the compiler hit an unexpected failure path. this is a bug
note: try running with RUST_LOG=rustc=1,::rt::backtrace to get further details and report the results to github.com/mozilla/rust/issues
rust: task failed at 'explicit failure', /home/zhatahet/code/rust-0.6/src/librustc/rustc.rc:357
/home/zhatahet/rust/bin/../lib/librustrt.so(_ZN9rust_task13begin_failureEPKcS1_m+0x4f)[0x7f6edda7701f]
/home/zhatahet/rust/bin/../lib/librustrt.so(+0x2d921)[0x7f6edda88921]
/home/zhatahet/rust/bin/../lib/librustrt.so(upcall_fail+0x1ce)[0x7f6edda79a3e]
/home/zhatahet/rust/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so(+0x10aa2b)[0x7f6edf5c3a2b]
/home/zhatahet/rust/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so(+0x10a9d2)[0x7f6edf5c39d2]
/home/zhatahet/rust/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so(_ZN3sys12begin_unwind17_61fe198059b9e3fc3_06E+0x71)[0x7f6edf50b4a1]
/home/zhatahet/rust/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so(+0x153294)[0x7f6edf60c294]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN7monitor17_78935df9ff9e1afa3_06E+0x1577)[0x7f6ede56f5a7]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x8c1ae4)[0x7f6ede57bae4]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN4main15_c4de63b748e03d3_06E+0x7e)[0x7f6ede57b6fe]
/home/zhatahet/rust/bin/../lib/librustrt.so(_Z18task_start_wrapperP10spawn_args+0x24)[0x7f6edda782b4]
rust: domain main @0x177b3c0 root task failed"><pre class="notranslate"><code class="notranslate">rust: task failed at 'non-variant in variant_def_ids', /home/zhatahet/code/rust-0.6/src/libsyntax/ast_util.rs:55
/home/zhatahet/rust/bin/../lib/librustrt.so(_ZN9rust_task13begin_failureEPKcS1_m+0x4f)[0x7f6edda7701f]
/home/zhatahet/rust/bin/../lib/librustrt.so(+0x2d921)[0x7f6edda88921]
/home/zhatahet/rust/bin/../lib/librustrt.so(upcall_fail+0x1ce)[0x7f6edda79a3e]
/home/zhatahet/rust/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so(+0x10aa2b)[0x7f6edf5c3a2b]
/home/zhatahet/rust/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so(+0x10a9d2)[0x7f6edf5c39d2]
/home/zhatahet/rust/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so(_ZN3sys12begin_unwind17_61fe198059b9e3fc3_06E+0x71)[0x7f6edf50b4a1]
/home/zhatahet/rust/bin/../lib/libsyntax-84efebcb12c867a2-0.6.so(_ZN8ast_util15variant_def_ids17_adb77598a27029ff3_06E+0x136)[0x7f6edeaa2926]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check6_match17check_pat_variant17_4fbfcbee3eb1c2da3_06E+0x21b)[0x7f6ede0fe54b]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check6_match9check_pat17_548e5ffb944ea5373_06E+0x3557)[0x7f6ede0f6457]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x8c1ae4)[0x7f6ede57bae4]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x438ee7)[0x7f6ede0f2ee7]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check6_match11check_match17_536eb3b0eafde7b13_06E+0x22f)[0x7f6ede0ee94f]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check23check_expr_with_unifier17_841417e8b97d6e713_06E+0x3ef1)[0x7f6ede1a8151]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check28check_expr_coercable_to_type17_5acee3342c4cd5a23_06E+0x91)[0x7f6ede1bbfc1]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check22check_decl_initializer17_1547d91555c977933_06E+0xb2)[0x7f6ede1cf042]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check16check_decl_local16_ac37e3abcfdd7ff3_06E+0x5ea)[0x7f6ede1cf72a]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x8c1ae4)[0x7f6ede57bae4]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x5175ba)[0x7f6ede1d15ba]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check10check_stmt17_e63c562496e2808c3_06E+0x26e)[0x7f6ede1d102e]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x517791)[0x7f6ede1d1791]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check25check_block_with_expected17_b352eb1d2e7639c03_06E+0x21e)[0x7f6ede16caae]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check8check_fn17_20cad4a150c275a73_06E+0x1089)[0x7f6ede16b2f9]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check13check_bare_fn14_4fc3abe889a533_06E+0x17e)[0x7f6ede169fae]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check10check_item16_f8c9b58265752963_06E+0x43d)[0x7f6ede168ded]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x4ae801)[0x7f6ede168801]
/home/zhatahet/rust/bin/../lib/libsyntax-84efebcb12c867a2-0.6.so(+0xe5154)[0x7f6edeaec154]
/home/zhatahet/rust/bin/../lib/libsyntax-84efebcb12c867a2-0.6.so(+0xe4cfa)[0x7f6edeaebcfa]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck5check16check_item_types17_b41350aeb9ad50f23_06E+0x430)[0x7f6ede1685d0]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x5e52a5)[0x7f6ede29f2a5]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6middle6typeck11check_crate17_63c941d6da5d83433_06E+0x2d0)[0x7f6ede29dec0]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6driver6driver12compile_rest17_b2b258b84b35f3533_06E+0x1218)[0x7f6ede5380d8]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x8c1ae4)[0x7f6ede57bae4]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6driver6driver12compile_upto17_12335154b455986e3_06E+0x108)[0x7f6ede53d3e8]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x8c1ae4)[0x7f6ede57bae4]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN6driver6driver13compile_input15_bb29edf7a232863_06E+0xca)[0x7f6ede53d82a]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN12run_compiler17_64d52739a36d169c3_06E+0x20aa)[0x7f6ede56cf7a]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x8bf5b1)[0x7f6ede5795b1]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x8bbddc)[0x7f6ede575ddc]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x8c1ae4)[0x7f6ede57bae4]
/home/zhatahet/rust/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so(+0xd340e)[0x7f6edf58c40e]
/home/zhatahet/rust/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so(+0x153294)[0x7f6edf60c294]
/home/zhatahet/rust/bin/../lib/librustrt.so(_Z18task_start_wrapperP10spawn_args+0x24)[0x7f6edda782b4]
error: internal compiler error: unexpected failure
note: the compiler hit an unexpected failure path. this is a bug
note: try running with RUST_LOG=rustc=1,::rt::backtrace to get further details and report the results to github.com/mozilla/rust/issues
rust: task failed at 'explicit failure', /home/zhatahet/code/rust-0.6/src/librustc/rustc.rc:357
/home/zhatahet/rust/bin/../lib/librustrt.so(_ZN9rust_task13begin_failureEPKcS1_m+0x4f)[0x7f6edda7701f]
/home/zhatahet/rust/bin/../lib/librustrt.so(+0x2d921)[0x7f6edda88921]
/home/zhatahet/rust/bin/../lib/librustrt.so(upcall_fail+0x1ce)[0x7f6edda79a3e]
/home/zhatahet/rust/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so(+0x10aa2b)[0x7f6edf5c3a2b]
/home/zhatahet/rust/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so(+0x10a9d2)[0x7f6edf5c39d2]
/home/zhatahet/rust/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so(_ZN3sys12begin_unwind17_61fe198059b9e3fc3_06E+0x71)[0x7f6edf50b4a1]
/home/zhatahet/rust/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so(+0x153294)[0x7f6edf60c294]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN7monitor17_78935df9ff9e1afa3_06E+0x1577)[0x7f6ede56f5a7]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(+0x8c1ae4)[0x7f6ede57bae4]
/home/zhatahet/rust/bin/../lib/librustc-c84825241471686d-0.6.so(_ZN4main15_c4de63b748e03d3_06E+0x7e)[0x7f6ede57b6fe]
/home/zhatahet/rust/bin/../lib/librustrt.so(_Z18task_start_wrapperP10spawn_args+0x24)[0x7f6edda782b4]
rust: domain main @0x177b3c0 root task failed
</code></pre></div> | <p dir="auto">It would be nice if there would be some way to <code class="notranslate">std::mem::transmute</code> in functions, even with type parameters.</p>
<p dir="auto">Maybe the prototype of the <code class="notranslate">transmute</code> function could be changed to</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="fn transmute<T,U:Transmutable<T>>(x: T) -> U;"><pre class="notranslate"><code class="notranslate">fn transmute<T,U:Transmutable<T>>(x: T) -> U;
</code></pre></div>
<p dir="auto">where <code class="notranslate">Transmutable</code> is a compiler-implemented type, like <code class="notranslate">Send</code>, <code class="notranslate">Copy</code> or <code class="notranslate">Share</code>.</p> | 0 |
<p dir="auto">Transferred from <a href="http://code.opencv.org/issues/4106" rel="nofollow">http://code.opencv.org/issues/4106</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="|| tzafrir last_name on 2015-01-08 09:05
|| Priority: Normal
|| Affected: branch 'master' (3.0-dev)
|| Category: ml
|| Tracker: Bug
|| Difficulty:
|| PR:
|| Platform: x64 / Windows"><pre class="notranslate"><code class="notranslate">|| tzafrir last_name on 2015-01-08 09:05
|| Priority: Normal
|| Affected: branch 'master' (3.0-dev)
|| Category: ml
|| Tracker: Bug
|| Difficulty:
|| PR:
|| Platform: x64 / Windows
</code></pre></div>
<h2 dir="auto">Examples runs in debug mode but crash in release mode</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="I'm using Visual studio 12 (2013) on a windows 7, 64 bit machine
downloaded the opencv 3.0 beta relase
and I try to run the cpp/letter_recog example.
If I set visual studio to debug mode, and link it against opencv_world300d.lib the example crashes
However in Release mode, when linking against opencv_world300.lib the example works fine"><pre class="notranslate"><code class="notranslate">I'm using Visual studio 12 (2013) on a windows 7, 64 bit machine
downloaded the opencv 3.0 beta relase
and I try to run the cpp/letter_recog example.
If I set visual studio to debug mode, and link it against opencv_world300d.lib the example crashes
However in Release mode, when linking against opencv_world300.lib the example works fine
</code></pre></div>
<h2 dir="auto">History</h2>
<h5 dir="auto">Maksim Shabunin on 2015-04-28 17:00</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Probably a duplicate of #4085 (fixed).
Can you, please, check if your issue has been fixed too?
- Target version set to 3.0
- Assignee changed from Maria Dimashova to Maksim Shabunin
- Status changed from New to Incomplete"><pre class="notranslate"><code class="notranslate">Probably a duplicate of #4085 (fixed).
Can you, please, check if your issue has been fixed too?
- Target version set to 3.0
- Assignee changed from Maria Dimashova to Maksim Shabunin
- Status changed from New to Incomplete
</code></pre></div> | <p dir="auto">BOWKMeansTrainer class is not available in even latest Opencv 3.1 java version</p>
<p dir="auto">The same bug is raised for version 2.4.5 , 3 years ago available at link<br>
<a href="http://code.opencv.org/issues/3003" rel="nofollow">http://code.opencv.org/issues/3003</a><br>
by mohammag</p>
<p dir="auto">No solution yet.</p> | 0 |
<p dir="auto">I get a weird REPL crash when pasting the following into a fresh session:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> struct Test{A,B} end
julia> Base.show(io::IO, ::Type{Test{A,B}}) where {A,B} = print(io, "fooTest{", A, ",", B, "}")
julia> Test{A,Int} where A"><pre class="notranslate"><code class="notranslate">julia> struct Test{A,B} end
julia> Base.show(io::IO, ::Type{Test{A,B}}) where {A,B} = print(io, "fooTest{", A, ",", B, "}")
julia> Test{A,Int} where A
</code></pre></div>
<p dir="auto">which crashes julia, with output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Error showing value of type UnionAll:
ERROR: UndefVarError: A not defined
Stacktrace:
[1] show(::IOContext{REPL.Terminals.TTYTerminal}, ::Type{SYSTEM: show(lasterr) caused an error
UndefVarError(:A)
Stacktrace:
[1] show(::IOContext{REPL.Terminals.TTYTerminal}, ::Type{ERROR: UndefVarError: A not defined
Stacktrace:
[1] show(::IOContext{REPL.Terminals.TTYTerminal}, ::Type{fatal: error thrown and no exception handler available.
UndefVarError(var=:A)
unknown function (ip: 0x7fc55f0bf438)
unknown function (ip: 0x7fc55f0903e3)
jl_throw at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_undefined_var_error at /usr/bin/../lib/libjulia.so.1 (unknown line)
show at ./REPL[2]:1
jl_fptr_trampoline at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
show_datatype at ./show.jl:526
show at ./show.jl:436
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
print at ./strings/io.jl:31
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
print at ./strings/io.jl:42
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
show_tuple_as_call at ./show.jl:1490
jl_fptr_trampoline at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
show_spec_linfo at ./stacktraces.jl:261
#show#9 at ./stacktraces.jl:272
unknown function (ip: 0x7fc541b1b753)
jl_fptr_trampoline at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
#show at ./none:0 [inlined]
#show_trace_entry#630 at ./errorshow.jl:471
unknown function (ip: 0x7fc541b1b08c)
jl_fptr_trampoline at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
#show_trace_entry at ./none:0
unknown function (ip: 0x7fc541b1adc8)
jl_fptr_trampoline at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
show_backtrace at ./errorshow.jl:574
#showerror#612 at ./errorshow.jl:79
unknown function (ip: 0x7fc541b182d7)
jl_fptr_trampoline at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
showerror at ./errorshow.jl:74 [inlined]
display_error at ./client.jl:99
jl_fptr_trampoline at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
display_error at ./client.jl:102
jl_fptr_trampoline at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_f__apply at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_f__apply_latest at /usr/bin/../lib/libjulia.so.1 (unknown line)
unknown function (ip: 0x7fc556752477)
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
true_main at /home/bruhns/math/persistence/julia/julia7/julia/ui/repl.c:89
at julia (unknown line)
__libc_start_main at /usr/bin/../lib/libc.so.6 (unknown line)
at julia (unknown line)"><pre class="notranslate"><code class="notranslate">Error showing value of type UnionAll:
ERROR: UndefVarError: A not defined
Stacktrace:
[1] show(::IOContext{REPL.Terminals.TTYTerminal}, ::Type{SYSTEM: show(lasterr) caused an error
UndefVarError(:A)
Stacktrace:
[1] show(::IOContext{REPL.Terminals.TTYTerminal}, ::Type{ERROR: UndefVarError: A not defined
Stacktrace:
[1] show(::IOContext{REPL.Terminals.TTYTerminal}, ::Type{fatal: error thrown and no exception handler available.
UndefVarError(var=:A)
unknown function (ip: 0x7fc55f0bf438)
unknown function (ip: 0x7fc55f0903e3)
jl_throw at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_undefined_var_error at /usr/bin/../lib/libjulia.so.1 (unknown line)
show at ./REPL[2]:1
jl_fptr_trampoline at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
show_datatype at ./show.jl:526
show at ./show.jl:436
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
print at ./strings/io.jl:31
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
print at ./strings/io.jl:42
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
show_tuple_as_call at ./show.jl:1490
jl_fptr_trampoline at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
show_spec_linfo at ./stacktraces.jl:261
#show#9 at ./stacktraces.jl:272
unknown function (ip: 0x7fc541b1b753)
jl_fptr_trampoline at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
#show at ./none:0 [inlined]
#show_trace_entry#630 at ./errorshow.jl:471
unknown function (ip: 0x7fc541b1b08c)
jl_fptr_trampoline at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
#show_trace_entry at ./none:0
unknown function (ip: 0x7fc541b1adc8)
jl_fptr_trampoline at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
show_backtrace at ./errorshow.jl:574
#showerror#612 at ./errorshow.jl:79
unknown function (ip: 0x7fc541b182d7)
jl_fptr_trampoline at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
showerror at ./errorshow.jl:74 [inlined]
display_error at ./client.jl:99
jl_fptr_trampoline at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
display_error at ./client.jl:102
jl_fptr_trampoline at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_f__apply at /usr/bin/../lib/libjulia.so.1 (unknown line)
jl_f__apply_latest at /usr/bin/../lib/libjulia.so.1 (unknown line)
unknown function (ip: 0x7fc556752477)
jl_apply_generic at /usr/bin/../lib/libjulia.so.1 (unknown line)
true_main at /home/bruhns/math/persistence/julia/julia7/julia/ui/repl.c:89
at julia (unknown line)
__libc_start_main at /usr/bin/../lib/libc.so.6 (unknown line)
at julia (unknown line)
</code></pre></div>
<p dir="auto">The above trace is on 1.0.1. The reproduction is relatively finnicky; the crash goes away when pasting with a newline in the last command, and appears when the last command is pasted without newline, and I hit enter manually. Regardless of the crash, I don't think dispatching to the new method is correct? Cf also <a href="https://discourse.julialang.org/t/typevar-becomes-lost-to-method-implementation/17364" rel="nofollow">discourse.</a>.</p>
<p dir="auto">I tested on:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> versioninfo()
Julia Version 1.0.1
Commit 0d713926f8 (2018-09-29 19:05 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
CPU: Intel(R) Core(TM) i5-5###U CPU @ 2.00GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-6.0.0 (ORCJIT, broadwell)
julia> versioninfo()
Julia Version 1.1.0-DEV.647
Commit c62ff7e8a9 (2018-11-09 15:47 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
CPU: Intel(R) Core(TM) i5-5###U CPU @ 2.00GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-6.0.1 (ORCJIT, broadwell)"><pre class="notranslate"><code class="notranslate">julia> versioninfo()
Julia Version 1.0.1
Commit 0d713926f8 (2018-09-29 19:05 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
CPU: Intel(R) Core(TM) i5-5###U CPU @ 2.00GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-6.0.0 (ORCJIT, broadwell)
julia> versioninfo()
Julia Version 1.1.0-DEV.647
Commit c62ff7e8a9 (2018-11-09 15:47 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
CPU: Intel(R) Core(TM) i5-5###U CPU @ 2.00GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-6.0.1 (ORCJIT, broadwell)
</code></pre></div> | <p dir="auto">I checked it with 1.0.0 and 1.1.0-DEV.334.</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia> struct Spam end
julia> Base.show(::IO, ::Type{Spam}) = error("nope")
julia> Spam
Error showing value of type DataType:
ERROR: nope
Stacktrace:
[1] error(::String) at ./error.jl:33
[2] show(::IOContext{REPL.Terminals.TTYTerminal}, ::Type{SYSTEM: show(lasterr) caused an error
ErrorException("nope")
Stacktrace:
[1] error(::String) at ./error.jl:33
[2] show(::IOContext{REPL.Terminals.TTYTerminal}, ::Type{ERROR: nope
Stacktrace:
[1] error(::String) at ./error.jl:33
[2] show(::IOContext{REPL.Terminals.TTYTerminal}, ::Type{fatal: error thrown and no exception handler available.
ErrorException("nope")
rec_backtrace at /home/takafumi/repos/watch/julia/src/stackwalk.c:94
record_backtrace at /home/takafumi/repos/watch/julia/src/task.c:249
jl_throw at /home/takafumi/repos/watch/julia/src/task.c:580
error at ./error.jl:33
show at ./REPL[2]:1
jl_fptr_trampoline at /home/takafumi/repos/watch/julia/src/gf.c:1843
jl_apply_generic at /home/takafumi/repos/watch/julia/src/gf.c:2198
show_datatype at ./show.jl:526
show at ./show.jl:436
jl_apply_generic at /home/takafumi/repos/watch/julia/src/gf.c:2198
print at ./strings/io.jl:31
jl_apply_generic at /home/takafumi/repos/watch/julia/src/gf.c:2198
print at ./strings/io.jl:42
jl_apply_generic at /home/takafumi/repos/watch/julia/src/gf.c:2198
show_tuple_as_call at ./show.jl:1490
jl_apply_generic at /home/takafumi/repos/watch/julia/src/gf.c:2198
show_spec_linfo at ./stacktraces.jl:261
#show#9 at ./stacktraces.jl:272
unknown function (ip: 0x7f99e80ea7c3)
#show at ./none:0 [inlined]
#show_trace_entry#630 at ./errorshow.jl:471
unknown function (ip: 0x7f99e80ea0ec)
#show_trace_entry at ./none:0
unknown function (ip: 0x7f99e80e9e28)
jl_apply_generic at /home/takafumi/repos/watch/julia/src/gf.c:2198
show_backtrace at ./errorshow.jl:574
#showerror#612 at ./errorshow.jl:79
unknown function (ip: 0x7f99e80e7357)
jl_fptr_trampoline at /home/takafumi/repos/watch/julia/src/gf.c:1843
jl_apply_generic at /home/takafumi/repos/watch/julia/src/gf.c:2198
showerror at ./errorshow.jl:74 [inlined]
display_error at ./client.jl:99
jl_fptr_trampoline at /home/takafumi/repos/watch/julia/src/gf.c:1843
jl_apply_generic at /home/takafumi/repos/watch/julia/src/gf.c:2198
display_error at ./client.jl:102
jl_fptr_trampoline at /home/takafumi/repos/watch/julia/src/gf.c:1843
jl_apply_generic at /home/takafumi/repos/watch/julia/src/gf.c:2198
jl_apply at /home/takafumi/repos/watch/julia/src/julia.h:1559 [inlined]
jl_f__apply at /home/takafumi/repos/watch/julia/src/builtins.c:556
jl_f__apply_latest at /home/takafumi/repos/watch/julia/src/builtins.c:594
#invokelatest#1 at ./essentials.jl:697 [inlined]
invokelatest at ./essentials.jl:696 [inlined]
_start at ./client.jl:423
jl_apply_generic at /home/takafumi/repos/watch/julia/src/gf.c:2198
jl_apply at /home/takafumi/repos/watch/julia/ui/../src/julia.h:1559 [inlined]
true_main at /home/takafumi/repos/watch/julia/ui/repl.c:112
main at /home/takafumi/repos/watch/julia/ui/repl.c:233
__libc_start_main at /usr/lib/libc.so.6 (unknown line)
_start at ./julia (unknown line)"><pre class="notranslate">julia<span class="pl-k">></span> <span class="pl-k">struct</span> Spam <span class="pl-k">end</span>
julia<span class="pl-k">></span> Base<span class="pl-k">.</span><span class="pl-en">show</span>(<span class="pl-k">::</span><span class="pl-c1">IO</span>, <span class="pl-k">::</span><span class="pl-c1">Type{Spam}</span>) <span class="pl-k">=</span> <span class="pl-c1">error</span>(<span class="pl-s"><span class="pl-pds">"</span>nope<span class="pl-pds">"</span></span>)
julia<span class="pl-k">></span> Spam
Error showing value of type DataType<span class="pl-k">:</span>
ERROR<span class="pl-k">:</span> nope
Stacktrace<span class="pl-k">:</span>
[<span class="pl-c1">1</span>] <span class="pl-c1">error</span>(<span class="pl-k">::</span><span class="pl-c1">String</span>) at <span class="pl-k">./</span>error<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">33</span>
[<span class="pl-c1">2</span>] <span class="pl-c1">show</span>(<span class="pl-k">::</span><span class="pl-c1">IOContext{REPL.Terminals.TTYTerminal}</span>, <span class="pl-k">::</span><span class="pl-c1">Type</span>{SYSTEM<span class="pl-k">:</span> <span class="pl-c1">show</span>(lasterr) caused an error
<span class="pl-c1">ErrorException</span>(<span class="pl-s"><span class="pl-pds">"</span>nope<span class="pl-pds">"</span></span>)
Stacktrace<span class="pl-k">:</span>
[<span class="pl-c1">1</span>] <span class="pl-c1">error</span>(<span class="pl-k">::</span><span class="pl-c1">String</span>) at <span class="pl-k">./</span>error<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">33</span>
[<span class="pl-c1">2</span>] <span class="pl-c1">show</span>(<span class="pl-k">::</span><span class="pl-c1">IOContext{REPL.Terminals.TTYTerminal}</span>, <span class="pl-k">::</span><span class="pl-c1">Type</span>{ERROR<span class="pl-k">:</span> nope
Stacktrace<span class="pl-k">:</span>
[<span class="pl-c1">1</span>] <span class="pl-c1">error</span>(<span class="pl-k">::</span><span class="pl-c1">String</span>) at <span class="pl-k">./</span>error<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">33</span>
[<span class="pl-c1">2</span>] <span class="pl-c1">show</span>(<span class="pl-k">::</span><span class="pl-c1">IOContext{REPL.Terminals.TTYTerminal}</span>, <span class="pl-k">::</span><span class="pl-c1">Type</span>{fatal<span class="pl-k">:</span> error thrown and no exception handler available.
<span class="pl-c1">ErrorException</span>(<span class="pl-s"><span class="pl-pds">"</span>nope<span class="pl-pds">"</span></span>)
rec_backtrace at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>src<span class="pl-k">/</span>stackwalk<span class="pl-k">.</span>c<span class="pl-k">:</span><span class="pl-c1">94</span>
record_backtrace at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>src<span class="pl-k">/</span>task<span class="pl-k">.</span>c<span class="pl-k">:</span><span class="pl-c1">249</span>
jl_throw at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>src<span class="pl-k">/</span>task<span class="pl-k">.</span>c<span class="pl-k">:</span><span class="pl-c1">580</span>
error at <span class="pl-k">./</span>error<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">33</span>
show at <span class="pl-k">./</span>REPL[<span class="pl-c1">2</span>]<span class="pl-k">:</span><span class="pl-c1">1</span>
jl_fptr_trampoline at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>src<span class="pl-k">/</span>gf<span class="pl-k">.</span>c<span class="pl-k">:</span><span class="pl-c1">1843</span>
jl_apply_generic at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>src<span class="pl-k">/</span>gf<span class="pl-k">.</span>c<span class="pl-k">:</span><span class="pl-c1">2198</span>
show_datatype at <span class="pl-k">./</span>show<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">526</span>
show at <span class="pl-k">./</span>show<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">436</span>
jl_apply_generic at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>src<span class="pl-k">/</span>gf<span class="pl-k">.</span>c<span class="pl-k">:</span><span class="pl-c1">2198</span>
print at <span class="pl-k">./</span>strings<span class="pl-k">/</span>io<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">31</span>
jl_apply_generic at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>src<span class="pl-k">/</span>gf<span class="pl-k">.</span>c<span class="pl-k">:</span><span class="pl-c1">2198</span>
print at <span class="pl-k">./</span>strings<span class="pl-k">/</span>io<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">42</span>
jl_apply_generic at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>src<span class="pl-k">/</span>gf<span class="pl-k">.</span>c<span class="pl-k">:</span><span class="pl-c1">2198</span>
show_tuple_as_call at <span class="pl-k">./</span>show<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">1490</span>
jl_apply_generic at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>src<span class="pl-k">/</span>gf<span class="pl-k">.</span>c<span class="pl-k">:</span><span class="pl-c1">2198</span>
show_spec_linfo at <span class="pl-k">./</span>stacktraces<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">261</span>
<span class="pl-c"><span class="pl-c">#</span>show#9 at ./stacktraces.jl:272</span>
unknown <span class="pl-k">function</span> (ip<span class="pl-k">:</span> <span class="pl-c1">0x7f99e80ea7c3</span>)
<span class="pl-c"><span class="pl-c">#</span>show at ./none:0 [inlined]</span>
<span class="pl-c"><span class="pl-c">#</span>show_trace_entry#630 at ./errorshow.jl:471</span>
unknown <span class="pl-k">function</span> (ip<span class="pl-k">:</span> <span class="pl-c1">0x7f99e80ea0ec</span>)
<span class="pl-c"><span class="pl-c">#</span>show_trace_entry at ./none:0</span>
unknown <span class="pl-k">function</span> (ip<span class="pl-k">:</span> <span class="pl-c1">0x7f99e80e9e28</span>)
jl_apply_generic at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>src<span class="pl-k">/</span>gf<span class="pl-k">.</span>c<span class="pl-k">:</span><span class="pl-c1">2198</span>
show_backtrace at <span class="pl-k">./</span>errorshow<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">574</span>
<span class="pl-c"><span class="pl-c">#</span>showerror#612 at ./errorshow.jl:79</span>
unknown <span class="pl-k">function</span> (ip<span class="pl-k">:</span> <span class="pl-c1">0x7f99e80e7357</span>)
jl_fptr_trampoline at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>src<span class="pl-k">/</span>gf<span class="pl-k">.</span>c<span class="pl-k">:</span><span class="pl-c1">1843</span>
jl_apply_generic at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>src<span class="pl-k">/</span>gf<span class="pl-k">.</span>c<span class="pl-k">:</span><span class="pl-c1">2198</span>
showerror at <span class="pl-k">./</span>errorshow<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">74</span> [inlined]
display_error at <span class="pl-k">./</span>client<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">99</span>
jl_fptr_trampoline at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>src<span class="pl-k">/</span>gf<span class="pl-k">.</span>c<span class="pl-k">:</span><span class="pl-c1">1843</span>
jl_apply_generic at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>src<span class="pl-k">/</span>gf<span class="pl-k">.</span>c<span class="pl-k">:</span><span class="pl-c1">2198</span>
display_error at <span class="pl-k">./</span>client<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">102</span>
jl_fptr_trampoline at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>src<span class="pl-k">/</span>gf<span class="pl-k">.</span>c<span class="pl-k">:</span><span class="pl-c1">1843</span>
jl_apply_generic at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>src<span class="pl-k">/</span>gf<span class="pl-k">.</span>c<span class="pl-k">:</span><span class="pl-c1">2198</span>
jl_apply at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>src<span class="pl-k">/</span>julia<span class="pl-k">.</span>h<span class="pl-k">:</span><span class="pl-c1">1559</span> [inlined]
jl_f__apply at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>src<span class="pl-k">/</span>builtins<span class="pl-k">.</span>c<span class="pl-k">:</span><span class="pl-c1">556</span>
jl_f__apply_latest at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>src<span class="pl-k">/</span>builtins<span class="pl-k">.</span>c<span class="pl-k">:</span><span class="pl-c1">594</span>
<span class="pl-c"><span class="pl-c">#</span>invokelatest#1 at ./essentials.jl:697 [inlined]</span>
invokelatest at <span class="pl-k">./</span>essentials<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">696</span> [inlined]
_start at <span class="pl-k">./</span>client<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">423</span>
jl_apply_generic at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>src<span class="pl-k">/</span>gf<span class="pl-k">.</span>c<span class="pl-k">:</span><span class="pl-c1">2198</span>
jl_apply at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>ui<span class="pl-k">/</span><span class="pl-k">..</span><span class="pl-k">/</span>src<span class="pl-k">/</span>julia<span class="pl-k">.</span>h<span class="pl-k">:</span><span class="pl-c1">1559</span> [inlined]
true_main at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>ui<span class="pl-k">/</span>repl<span class="pl-k">.</span>c<span class="pl-k">:</span><span class="pl-c1">112</span>
main at <span class="pl-k">/</span>home<span class="pl-k">/</span>takafumi<span class="pl-k">/</span>repos<span class="pl-k">/</span>watch<span class="pl-k">/</span>julia<span class="pl-k">/</span>ui<span class="pl-k">/</span>repl<span class="pl-k">.</span>c<span class="pl-k">:</span><span class="pl-c1">233</span>
__libc_start_main at <span class="pl-k">/</span>usr<span class="pl-k">/</span>lib<span class="pl-k">/</span>libc<span class="pl-k">.</span>so.<span class="pl-c1">6</span> (unknown line)
_start at <span class="pl-k">./</span>julia (unknown line)</pre></div> | 1 |
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-delete-properties-from-a-javascript-object#?solution=var%20ourDog%20%3D%20%7B%0A%20%20%22name%22%3A%20%22Camper%22%2C%0A%20%20%22legs%22%3A%204%2C%0A%20%20%22tails%22%3A%201%2C%0A%20%20%22friends%22%3A%20%5B%22everything!%22%5D%2C%0A%20%20%22bark%22%3A%20%22bow-wow%22%0A%7D%3B%0A%0Adelete%20ourDog.bark%3B%0A%0Avar%20myDog%20%3D%20%7B%0A%20%20%22name%22%3A%20%22Happy%20Coder%22%2C%0A%20%20%22legs%22%3A%204%2C%0A%20%20%22tails%22%3A%201%2C%0A%20%20%22friends%22%3A%20%5B%22Free%20Code%20Camp%20Campers%22%5D%2C%0A%20%20%22bark%22%3A%20%22woof%22%0A%7D%3B%0A%0A%2F%2F%20Only%20change%20code%20below%20this%20line.%0A%0Adelete%20myDog.tails%3B%0A%0A%2F%2F%20Only%20change%20code%20above%20this%20line.%0A%0A%28function%28z%29%7Breturn%20z%3B%7D%29%28myDog%29%3B%0A" rel="nofollow">Waypoint: Delete Properties from a JavaScript Object</a> has an issue.<br>
User Agent is: <code class="notranslate">Mozilla/5.0 (iPad; CPU OS 9_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13C75 Safari/601.1</code>.<br>
Please describe how to reproduce this issue, and include links to screenshots if possible.</p>
<p dir="auto">My code:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var ourDog = {
"name": "Camper",
"legs": 4,
"tails": 1,
"friends": ["everything!"],
"bark": "bow-wow"
};
delete ourDog.bark;
var myDog = {
"name": "Happy Coder",
"legs": 4,
"tails": 1,
"friends": ["Free Code Camp Campers"],
"bark": "woof"
};
// Only change code below this line.
delete myDog.tails;
// Only change code above this line.
(function(z){return z;})(myDog);
"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">ourDog</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-s">"name"</span>: <span class="pl-s">"Camper"</span><span class="pl-kos">,</span>
<span class="pl-s">"legs"</span>: <span class="pl-c1">4</span><span class="pl-kos">,</span>
<span class="pl-s">"tails"</span>: <span class="pl-c1">1</span><span class="pl-kos">,</span>
<span class="pl-s">"friends"</span>: <span class="pl-kos">[</span><span class="pl-s">"everything!"</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-s">"bark"</span>: <span class="pl-s">"bow-wow"</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">delete</span> <span class="pl-s1">ourDog</span><span class="pl-kos">.</span><span class="pl-c1">bark</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">myDog</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-s">"name"</span>: <span class="pl-s">"Happy Coder"</span><span class="pl-kos">,</span>
<span class="pl-s">"legs"</span>: <span class="pl-c1">4</span><span class="pl-kos">,</span>
<span class="pl-s">"tails"</span>: <span class="pl-c1">1</span><span class="pl-kos">,</span>
<span class="pl-s">"friends"</span>: <span class="pl-kos">[</span><span class="pl-s">"Free Code Camp Campers"</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-s">"bark"</span>: <span class="pl-s">"woof"</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-c">// Only change code below this line.</span>
<span class="pl-k">delete</span> <span class="pl-s1">myDog</span><span class="pl-kos">.</span><span class="pl-c1">tails</span><span class="pl-kos">;</span>
<span class="pl-c">// Only change code above this line.</span>
<span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">z</span><span class="pl-kos">)</span><span class="pl-kos">{</span><span class="pl-k">return</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-s1">myDog</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> | <p dir="auto">Thanks to Thad for reporting. His words:</p>
<p dir="auto">I have a question about the code output area. I'm referring to the area just under the Reset, Help and Bug buttons on the left side of the page at FCC. It seems that there was a change to how that functions in the past few days.</p>
<p dir="auto">In the past, when it was dictated that an array should show up in the code output area, it was displayed just like an array...["Split", "me", "into", "an", "array"]. Now, since the change a few days ago, it displays like...Split, me, into, an, array. I've attached a screenshot.</p>
<p dir="auto">Is this the desired output or is it a bug? If it's the desired output, it doesn't seem very useful. If the answer is supposed to be an array, it's reasonable to expect to see an array (not just the array items) displayed there.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/713ee0d4234e2bd029568de6fd74fcbe909efe43d51cef8c9f232b4ab305459c/68747470733a2f2f7777772e657665726e6f74652e636f6d2f6c2f41715470354d4a64433146506d34575f756a6f5041626649496f6c6f5a383068347467422f696d6167652e706e67"><img src="https://camo.githubusercontent.com/713ee0d4234e2bd029568de6fd74fcbe909efe43d51cef8c9f232b4ab305459c/68747470733a2f2f7777772e657665726e6f74652e636f6d2f6c2f41715470354d4a64433146506d34575f756a6f5041626649496f6c6f5a383068347467422f696d6167652e706e67" alt="" data-canonical-src="https://www.evernote.com/l/AqTp5MJdC1FPm4W_ujoPAbfIIoloZ80h4tgB/image.png" style="max-width: 100%;"></a></p> | 1 |
<h1 dir="auto">Description of the new feature/enhancement</h1>
<p dir="auto">if you right-click on the icon in the taskbar the menu shows only "unpin from taskbar". It would be nice if there are the terminals that are in the settings described.</p>
<p dir="auto">How it looks now:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/40068335/66744502-e3665280-ee7c-11e9-882c-2f51f8066fe1.png"><img src="https://user-images.githubusercontent.com/40068335/66744502-e3665280-ee7c-11e9-882c-2f51f8066fe1.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">How I think it is better:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/40068335/66746107-3d691700-ee81-11e9-92d6-536316a7d441.png"><img src="https://user-images.githubusercontent.com/40068335/66746107-3d691700-ee81-11e9-92d6-536316a7d441.png" alt="taskbar" style="max-width: 100%;"></a></p>
<h1 dir="auto">Proposed technical implementation details (optional)</h1> | <h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: Microsoft Windows [Version 10.0.18362.356]
Windows Terminal version (if applicable): Windows Terminal (Preview) Version: 0.4.2382.0"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: Microsoft Windows [Version 10.0.18362.356]
Windows Terminal version (if applicable): Windows Terminal (Preview) Version: 0.4.2382.0
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<ol dir="auto">
<li>Open many terminal tabs -or- a small number with long titles</li>
<li>Note that at some point, depending on the width of the screen, new tabs do not appear on the tab bar at the top.</li>
<li>The tab is there, and you can <code class="notranslate">Ctrl+Tab</code> -or- <code class="notranslate">Ctrl+Shift+Tab</code> to cycle the tabs.</li>
</ol>
<h1 dir="auto">Expected behavior</h1>
<ol dir="auto">
<li>Current tab is <strong>always</strong> shown when on that tab.</li>
<li>Tab bar can scroll left or right to make the current tab show in the tab bar.</li>
<li>Current tab shows as much of title bar from left to right as possible, still allowing other tabs to have enough space to be clickable.</li>
<li>Cycling through tabs does not show hidden tabs even when landing on one of the hidden tabs.</li>
<li>Would really like to have the <strong>option</strong> as in VS Code to not have and <code class="notranslate">X</code> to close, but instead <em>right-click</em> <code class="notranslate">Close</code> menus item. This will be important as you apply making items smaller that are not the current tab-item, as it will be easy to click the close box by accident. Or, you can make the close box <code class="notranslate">X</code> only visible for the currently highlighted tab, but this seems overly complicated.</li>
<li>If there are too many items in the list, the last item should be <code class="notranslate">...</code>, and clicking it should list all the tabs in order.</li>
<li>Tabs should be able to be moved to a different position in the list.</li>
<li>Hovering over a tab that has been shortened due to screen real estate should show a popup indicating the full title. (Bonus points for showing other information about the tab (date it was opened, how long the session has been opened, what type of prompt it is such as PowerShell, CMD, Linux, etc.)</li>
</ol>
<h1 dir="auto">Actual behavior</h1>
<ol dir="auto">
<li>If you <code class="notranslate">Ctrl+Tab</code> to a tab that is not in the list at the top, the tab is still not shown. There is no way to verify which tab you are on, except based on what was in the window as you left it.</li>
<li>The current tab is not highlighted to indicate which tab is the current tab.</li>
<li>The tab bar shows a static list of the first few items, each at their full width until space runs out.</li>
<li>All tabs are shown at full width, even though they are not the currently selected tab.</li>
<li>There is no UI for accessing the full list of all open terminals.</li>
<li>There is no way to scroll through the list of tabs. Usually down with <code class="notranslate"><</code> and <code class="notranslate">></code> buttons appearing when the list becomes to big to display fully in the tab bar.</li>
</ol> | 0 |
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Python 3.5.2 (default, Nov 17 2016, 17:05:23)
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from requests.packages.urllib3.poolmanager import PoolManager
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'requests.packages'"><pre class="notranslate"><code class="notranslate">Python 3.5.2 (default, Nov 17 2016, 17:05:23)
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from requests.packages.urllib3.poolmanager import PoolManager
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'requests.packages'
</code></pre></div>
<p dir="auto">The following import statement used to work for the older version <code class="notranslate">2.14.2</code> but fails for the latest version <code class="notranslate">2.16.0</code></p> | <p dir="auto">Hey so the 2.16.0 release broke all of the vendored things I am assuming. I have <a href="https://github.com/tomchristie/apistar/pull/189" data-hovercard-type="pull_request" data-hovercard-url="/encode/apistar/pull/189/hovercard">issued</a> two <a href="https://github.com/encode/django-rest-framework/pull/5185" data-hovercard-type="pull_request" data-hovercard-url="/encode/django-rest-framework/pull/5185/hovercard">PRs</a> to two frameworks I use that rely on the vendored packages in requests.</p>
<p dir="auto">The <code class="notranslate">changelog</code> was a bit obscure about this</p>
<blockquote>
<p dir="auto">2.16.0<br>
Unvendor ALL the things!</p>
</blockquote>
<p dir="auto">Something like <code class="notranslate">BREAKING CHANGE: Vendor packages have been removed, if you relied on these you will need to modify your code</code> would be nice in a 2.16.1 changelog update maybe?</p>
<p dir="auto">I realize that it can be said these vendored packages are internal and should not be relied on but at least these packages had a use case for using requests and some of the underlying libs and used the vendor packages to ensure everything worked as expected with requests.</p>
<p dir="auto">Anyone who was relying on these will have their code break upon upgrade, so perhaps a bigger version bump would have been welcome, but at least this can be a warning to people coming here wondering why stuff broke. My solution was a <code class="notranslate">compat.py</code> that conditionally imported <code class="notranslate">urllib3</code> (works the same for other vendored packages), see my PRs for that fix.</p> | 1 |
<p dir="auto">I had an error below when trying to divide a monitor.<br>
Its error occured after some packages updated.</p>
<hr>
<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.200.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\neoloie\AppData\Local\atom\app-0.200.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\neoloie\AppData\Local\atom\app-0.200.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)<br>
at EventEmitter. (C:\Users\neoloie\AppData\Local\atom\app-0.200.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\neoloie\AppData\Local\atom\app-0.200.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\neoloie\AppData\Local\atom\app-0.200.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\neoloie\AppData\Local\atom\app-0.200.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\neoloie\AppData\Local\atom\app-0.200.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)
at emitMany (events.js:108:13)
at metaToValue (C:\Users\neoloie\AppData\Local\atom\app-0.200.0\resources\atom.asar\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\neoloie\AppData\Local\atom\app-0.200.0\resources\atom.asar\renderer\api\lib\remote.js:111:26)
at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\neoloie\AppData\Local\atom\app-0.200.0\resources\app.asar\src\context-menu-manager.js:170:31)
at HTMLDocument.<anonymous> (C:\Users\neoloie\AppData\Local\atom\app-0.200.0\resources\app.asar\src\window-event-handler.js:149:33)
at HTMLDocument.handler (C:\Users\neoloie\AppData\Local\atom\app-0.200.0\resources\app.asar\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\neoloie\AppData\Local\atom\app-0.200.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9)
at HTMLDocument.elemData.handle (C:\Users\neoloie\AppData\Local\atom\app-0.200.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46)
"><pre class="notranslate"><code class="notranslate">At C:\Users\neoloie\AppData\Local\atom\app-0.200.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\neoloie\AppData\Local\atom\app-0.200.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\neoloie\AppData\Local\atom\app-0.200.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\neoloie\AppData\Local\atom\app-0.200.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)
at emitMany (events.js:108:13)
at metaToValue (C:\Users\neoloie\AppData\Local\atom\app-0.200.0\resources\atom.asar\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\neoloie\AppData\Local\atom\app-0.200.0\resources\atom.asar\renderer\api\lib\remote.js:111:26)
at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\neoloie\AppData\Local\atom\app-0.200.0\resources\app.asar\src\context-menu-manager.js:170:31)
at HTMLDocument.<anonymous> (C:\Users\neoloie\AppData\Local\atom\app-0.200.0\resources\app.asar\src\window-event-handler.js:149:33)
at HTMLDocument.handler (C:\Users\neoloie\AppData\Local\atom\app-0.200.0\resources\app.asar\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\neoloie\AppData\Local\atom\app-0.200.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9)
at HTMLDocument.elemData.handle (C:\Users\neoloie\AppData\Local\atom\app-0.200.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=" 4x -6:54.7.0 window:decrease-font-size (atom-text-editor.editor.is-focused)
76x -0:13.6.0 core:move-down (atom-text-editor.editor.is-focused)"><pre class="notranslate"><code class="notranslate"> 4x -6:54.7.0 window:decrease-font-size (atom-text-editor.editor.is-focused)
76x -0:13.6.0 core:move-down (atom-text-editor.editor.is-focused)
</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="{
"editor": {
"fontSize": 12
}
}"><pre class="notranslate">{
<span class="pl-ent">"editor"</span>: {
<span class="pl-ent">"fontSize"</span>: <span class="pl-c1">12</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
atom-runner, v2.3.0
autocomplete-plus-jedi, v0.0.9
autocomplete-ruby, v0.1.0
japanese-menu, v0.6.0
jshint, v1.3.7
linter, v0.12.6
npm-autocomplete, v0.1.2
remember-session, v0.5.1
save-session, v0.15.1
script, v2.23.0
# Dev
No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span>
atom<span class="pl-k">-</span>runner, v2.<span class="pl-ii">3</span>.<span class="pl-ii">0</span>
autocomplete<span class="pl-k">-</span>plus<span class="pl-k">-</span>jedi, v0.<span class="pl-ii">0</span>.<span class="pl-ii">9</span>
autocomplete<span class="pl-k">-</span>ruby, v0.<span class="pl-ii">1</span>.<span class="pl-ii">0</span>
japanese<span class="pl-k">-</span>menu, v0.<span class="pl-ii">6</span>.<span class="pl-ii">0</span>
jshint, v1.<span class="pl-ii">3</span>.<span class="pl-ii">7</span>
linter, v0.<span class="pl-ii">12</span>.<span class="pl-ii">6</span>
npm<span class="pl-k">-</span>autocomplete, v0.<span class="pl-ii">1</span>.<span class="pl-ii">2</span>
remember<span class="pl-k">-</span>session, v0.<span class="pl-ii">5</span>.<span class="pl-ii">1</span>
save<span class="pl-k">-</span>session, v0.<span class="pl-ii">15</span>.<span class="pl-ii">1</span>
script, v2.<span class="pl-ii">23</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">xref <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="32078028" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/6942" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/6942/hovercard" href="https://github.com/pandas-dev/pandas/issues/6942">#6942</a><br>
xref <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="137459758" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/12499" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/12499/hovercard" href="https://github.com/pandas-dev/pandas/issues/12499">#12499</a><br>
xref <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="175624003" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/14179" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/14179/hovercard" href="https://github.com/pandas-dev/pandas/issues/14179">#14179</a></p>
<p dir="auto">Simple repro, casting to <code class="notranslate">object</code>, but a datetimelike is cast to its underlying repr</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [1]: s = pd.Series([1])
In [2]: s
Out[2]:
0 1
dtype: int64
In [3]: s[1] = pd.Timestamp('20130101')
In [4]: s
Out[4]:
0 1
1 1356998400000000000
dtype: object"><pre class="notranslate"><code class="notranslate">In [1]: s = pd.Series([1])
In [2]: s
Out[2]:
0 1
dtype: int64
In [3]: s[1] = pd.Timestamp('20130101')
In [4]: s
Out[4]:
0 1
1 1356998400000000000
dtype: object
</code></pre></div>
<h4 dir="auto">Code Sample, a copy-pastable example if possible</h4>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> import pandas as pd
>>> s = pd.Series()
>>> s.loc['date'] = pd.Timestamp.now()
>>> s
date 2017-02-27 15:04:32.357
dtype: datetime64[ns]
>>> s.loc['date2'] = pd.Timestamp.now()
>>> s
date 2017-02-27 15:04:32.357
date2 2017-02-27 15:04:41.724
dtype: datetime64[ns]
>>> s.loc['date3'] = 3
>>> s
date 2017-02-27 15:04:32.357000
date2 2017-02-27 15:04:41.724000
date3 3
dtype: object
>>> s.loc['date4'] = pd.Timestamp.now()
>>> s
date 2017-02-27 15:04:32.357000
date2 2017-02-27 15:04:41.724000
date3 3
date4 1488207907032000000
dtype: object"><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">s</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">Series</span>()
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">s</span>.<span class="pl-s1">loc</span>[<span class="pl-s">'date'</span>] <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">Timestamp</span>.<span class="pl-en">now</span>()
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">s</span>
<span class="pl-s1">date</span> <span class="pl-c1">2017</span><span class="pl-c1">-</span><span class="pl-c1">02</span><span class="pl-c1">-</span><span class="pl-c1">27</span> <span class="pl-c1">15</span>:<span class="pl-c1">04</span>:<span class="pl-c1">32.357</span>
<span class="pl-s1">dtype</span>: <span class="pl-s1">datetime64</span>[<span class="pl-s1">ns</span>]
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">s</span>.<span class="pl-s1">loc</span>[<span class="pl-s">'date2'</span>] <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">Timestamp</span>.<span class="pl-en">now</span>()
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">s</span>
<span class="pl-s1">date</span> <span class="pl-c1">2017</span><span class="pl-c1">-</span><span class="pl-c1">02</span><span class="pl-c1">-</span><span class="pl-c1">27</span> <span class="pl-c1">15</span>:<span class="pl-c1">04</span>:<span class="pl-c1">32.357</span>
<span class="pl-s1">date2</span> <span class="pl-c1">2017</span><span class="pl-c1">-</span><span class="pl-c1">02</span><span class="pl-c1">-</span><span class="pl-c1">27</span> <span class="pl-c1">15</span>:<span class="pl-c1">04</span>:<span class="pl-c1">41.724</span>
<span class="pl-s1">dtype</span>: <span class="pl-s1">datetime64</span>[<span class="pl-s1">ns</span>]
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">s</span>.<span class="pl-s1">loc</span>[<span class="pl-s">'date3'</span>] <span class="pl-c1">=</span> <span class="pl-c1">3</span>
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">s</span>
<span class="pl-s1">date</span> <span class="pl-c1">2017</span><span class="pl-c1">-</span><span class="pl-c1">02</span><span class="pl-c1">-</span><span class="pl-c1">27</span> <span class="pl-c1">15</span>:<span class="pl-c1">04</span>:<span class="pl-c1">32.357000</span>
<span class="pl-s1">date2</span> <span class="pl-c1">2017</span><span class="pl-c1">-</span><span class="pl-c1">02</span><span class="pl-c1">-</span><span class="pl-c1">27</span> <span class="pl-c1">15</span>:<span class="pl-c1">04</span>:<span class="pl-c1">41.724000</span>
<span class="pl-s1">date3</span> <span class="pl-c1">3</span>
<span class="pl-s1">dtype</span>: <span class="pl-s1">object</span>
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">s</span>.<span class="pl-s1">loc</span>[<span class="pl-s">'date4'</span>] <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">Timestamp</span>.<span class="pl-en">now</span>()
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">s</span>
<span class="pl-s1">date</span> <span class="pl-c1">2017</span><span class="pl-c1">-</span><span class="pl-c1">02</span><span class="pl-c1">-</span><span class="pl-c1">27</span> <span class="pl-c1">15</span>:<span class="pl-c1">04</span>:<span class="pl-c1">32.357000</span>
<span class="pl-s1">date2</span> <span class="pl-c1">2017</span><span class="pl-c1">-</span><span class="pl-c1">02</span><span class="pl-c1">-</span><span class="pl-c1">27</span> <span class="pl-c1">15</span>:<span class="pl-c1">04</span>:<span class="pl-c1">41.724000</span>
<span class="pl-s1">date3</span> <span class="pl-c1">3</span>
<span class="pl-s1">date4</span> <span class="pl-c1">1488207907032000000</span>
<span class="pl-s1">dtype</span>: <span class="pl-s1">object</span></pre></div>
<h4 dir="auto">Problem description</h4>
<p dir="auto">When a series' dtype is object, .loc assignment of pd.Timestamp values results in being cast to a long, rather than remaining a datetime. Since the dtype is object, I would expect objects to be uncasted.</p>
<h4 dir="auto">Expected Output</h4>
<p dir="auto">The expected behavior is to not be casted, i.e. to remain a datetime.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> s = s.append(pd.Series(data = [pd.Timestamp.now()], index = ['date_x']))
>>> s
date 2017-02-27 15:04:32.357000
date2 2017-02-27 15:04:41.724000
date3 3
date4 1488207907032000000
date_x 2017-02-27 15:11:03.995000
dtype: object"><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">s</span> <span class="pl-c1">=</span> <span class="pl-s1">s</span>.<span class="pl-en">append</span>(<span class="pl-s1">pd</span>.<span class="pl-v">Series</span>(<span class="pl-s1">data</span> <span class="pl-c1">=</span> [<span class="pl-s1">pd</span>.<span class="pl-v">Timestamp</span>.<span class="pl-en">now</span>()], <span class="pl-s1">index</span> <span class="pl-c1">=</span> [<span class="pl-s">'date_x'</span>]))
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">s</span>
<span class="pl-s1">date</span> <span class="pl-c1">2017</span><span class="pl-c1">-</span><span class="pl-c1">02</span><span class="pl-c1">-</span><span class="pl-c1">27</span> <span class="pl-c1">15</span>:<span class="pl-c1">04</span>:<span class="pl-c1">32.357000</span>
<span class="pl-s1">date2</span> <span class="pl-c1">2017</span><span class="pl-c1">-</span><span class="pl-c1">02</span><span class="pl-c1">-</span><span class="pl-c1">27</span> <span class="pl-c1">15</span>:<span class="pl-c1">04</span>:<span class="pl-c1">41.724000</span>
<span class="pl-s1">date3</span> <span class="pl-c1">3</span>
<span class="pl-s1">date4</span> <span class="pl-c1">1488207907032000000</span>
<span class="pl-s1">date_x</span> <span class="pl-c1">2017</span><span class="pl-c1">-</span><span class="pl-c1">02</span><span class="pl-c1">-</span><span class="pl-c1">27</span> <span class="pl-c1">15</span>:<span class="pl-c1">11</span>:<span class="pl-c1">03.995000</span>
<span class="pl-s1">dtype</span>: <span class="pl-s1">object</span></pre></div>
<h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4>
<details>
# Paste the output here pd.show_versions() here
27-Feb-17 15:08:27 DEBUG lzma module is not available
27-Feb-17 15:08:27 DEBUG Registered VCS backend: git
27-Feb-17 15:08:28 DEBUG Registered VCS backend: hg
27-Feb-17 15:08:28 DEBUG Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect
27-Feb-17 15:08:28 DEBUG Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect
27-Feb-17 15:08:28 DEBUG Config variable 'Py_UNICODE_SIZE' is unset, Python ABI tag may be incorrect
27-Feb-17 15:08:28 DEBUG Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect
27-Feb-17 15:08:28 DEBUG Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect
27-Feb-17 15:08:28 DEBUG Config variable 'Py_UNICODE_SIZE' is unset, Python ABI tag may be incorrect
27-Feb-17 15:08:28 DEBUG Registered VCS backend: svn
27-Feb-17 15:08:28 DEBUG Registered VCS backend: bzr
<h2 dir="auto">INSTALLED VERSIONS</h2>
<p dir="auto">commit: None<br>
python: 2.7.12.final.0<br>
python-bits: 64<br>
OS: Windows<br>
OS-release: 10<br>
machine: AMD64<br>
processor: Intel64 Family 6 Model 60 Stepping 3, GenuineIntel<br>
byteorder: little<br>
LC_ALL: None<br>
LANG: None<br>
LOCALE: None.None</p>
<p dir="auto">pandas: 0.19.2<br>
nose: 1.3.7<br>
pip: 9.0.1<br>
setuptools: 33.1.0.post20170122<br>
Cython: 0.25.2<br>
numpy: 1.10.4<br>
scipy: 0.17.1<br>
statsmodels: 0.8.0<br>
xarray: 0.9.1<br>
IPython: 5.2.2<br>
sphinx: 1.5.2<br>
patsy: 0.4.1<br>
dateutil: 2.6.0<br>
pytz: 2016.10<br>
blosc: None<br>
bottleneck: 1.2.0<br>
tables: 3.3.0<br>
numexpr: 2.6.1<br>
matplotlib: 2.0.0<br>
openpyxl: 2.4.1<br>
xlrd: 1.0.0<br>
xlwt: 1.2.0<br>
xlsxwriter: 0.9.6<br>
lxml: 3.7.2<br>
bs4: 4.5.3<br>
html5lib: 0.999<br>
httplib2: None<br>
apiclient: None<br>
sqlalchemy: 1.1.5<br>
pymysql: None<br>
psycopg2: None<br>
jinja2: 2.8<br>
boto: 2.45.0<br>
pandas_datareader: 0.2.1</p>
</details> | <p dir="auto">xref <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="175624003" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/14179" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/14179/hovercard" href="https://github.com/pandas-dev/pandas/issues/14179">#14179</a><br>
xref <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="137459758" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/12499" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/12499/hovercard" href="https://github.com/pandas-dev/pandas/issues/12499">#12499</a><br>
xref <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="269507526" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/18027" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/18027/hovercard" href="https://github.com/pandas-dev/pandas/issues/18027">#18027</a></p>
<p dir="auto"><a href="http://stackoverflow.com/questions/23250333/in-pandas-dataframe-after-i-set-an-entire-column-i-cant-update-another-column" rel="nofollow">http://stackoverflow.com/questions/23250333/in-pandas-dataframe-after-i-set-an-entire-column-i-cant-update-another-column</a></p>
<p dir="auto">but <code class="notranslate">.loc</code> works</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [50]: df = pd.DataFrame(index=pd.date_range(start,periods=1), columns=['timenow','Live'])
In [51]: df.at[start,'timenow'] = datetime.today() # initial value
In [52]: df
Out[52]:
timenow Live
2014-04-01 2014-04-23 12:42:38.883082 NaN
[1 rows x 2 columns]
In [53]: df._data
Out[53]:
BlockManager
Items: Index([u'timenow', u'Live'], dtype='object')
Axis 1: <class 'pandas.tseries.index.DatetimeIndex'>
[2014-04-01]
Length: 1, Freq: D, Timezone: None
ObjectBlock: [timenow, Live], 2 x 1, dtype: object
In [54]: df = pd.DataFrame(index=pd.date_range(start,periods=1), columns=['timenow','Live'])
In [55]: df.loc[start,'timenow'] = datetime.today() # initial value
In [56]: df
Out[56]:
timenow Live
2014-04-01 2014-04-23 12:43:00.554915 NaT
[1 rows x 2 columns]
In [57]: df._data
Out[57]:
BlockManager
Items: Index([u'timenow', u'Live'], dtype='object')
Axis 1: <class 'pandas.tseries.index.DatetimeIndex'>
[2014-04-01]
Length: 1, Freq: D, Timezone: None
DatetimeBlock: [timenow, Live], 2 x 1, dtype: datetime64[ns]
"><pre class="notranslate"><code class="notranslate">In [50]: df = pd.DataFrame(index=pd.date_range(start,periods=1), columns=['timenow','Live'])
In [51]: df.at[start,'timenow'] = datetime.today() # initial value
In [52]: df
Out[52]:
timenow Live
2014-04-01 2014-04-23 12:42:38.883082 NaN
[1 rows x 2 columns]
In [53]: df._data
Out[53]:
BlockManager
Items: Index([u'timenow', u'Live'], dtype='object')
Axis 1: <class 'pandas.tseries.index.DatetimeIndex'>
[2014-04-01]
Length: 1, Freq: D, Timezone: None
ObjectBlock: [timenow, Live], 2 x 1, dtype: object
In [54]: df = pd.DataFrame(index=pd.date_range(start,periods=1), columns=['timenow','Live'])
In [55]: df.loc[start,'timenow'] = datetime.today() # initial value
In [56]: df
Out[56]:
timenow Live
2014-04-01 2014-04-23 12:43:00.554915 NaT
[1 rows x 2 columns]
In [57]: df._data
Out[57]:
BlockManager
Items: Index([u'timenow', u'Live'], dtype='object')
Axis 1: <class 'pandas.tseries.index.DatetimeIndex'>
[2014-04-01]
Length: 1, Freq: D, Timezone: None
DatetimeBlock: [timenow, Live], 2 x 1, dtype: datetime64[ns]
</code></pre></div> | 1 |
<h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">module include_tasks</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/xxxx/.ansible.cfg
configured module search path = [u'/home/xxxx/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /opt/xxxx/venv/ansible2.4-python2.7/lib/python2.7/site-packages/ansible
executable location = /opt/xxxx/venv/ansible2.4-python2.7/bin/ansible
python version = 2.7.13 (default, Apr 12 2017, 06:53:51) [GCC 4.4.7 20120313 (Red Hat 4.4.7-18)]
"><pre class="notranslate"><code class="notranslate">ansible 2.4.1.0
config file = /home/xxxx/.ansible.cfg
configured module search path = [u'/home/xxxx/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /opt/xxxx/venv/ansible2.4-python2.7/lib/python2.7/site-packages/ansible
executable location = /opt/xxxx/venv/ansible2.4-python2.7/bin/ansible
python version = 2.7.13 (default, Apr 12 2017, 06:53:51) [GCC 4.4.7 20120313 (Red Hat 4.4.7-18)]
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ANSIBLE_PIPELINING(/home/xxxx/.ansible.cfg) = True
DEFAULT_HOST_LIST(/home/xxxx/.ansible.cfg) = [u'/home/xxxx/checkouts/ansible-tree/inventory']
DEFAULT_LOG_PATH(/home/xxxx/.ansible.cfg) = /home/xxxx/ansible.log
HOST_KEY_CHECKING(/home/xxxx/.ansible.cfg) = False
INVENTORY_IGNORE_EXTS(/home/xxxx/.ansible.cfg) = ['~', '.orig', '.bak', '.ini', '.cfg', '.retry', '.pyc', '.pyo', '.txt', '.back', 'script']
MAX_FILE_SIZE_FOR_DIFF(/home/xxxx/.ansible.cfg) = 4194304
RETRY_FILES_SAVE_PATH(/home/xxxx/.ansible.cfg) = /home/xxxx"><pre class="notranslate"><code class="notranslate">ANSIBLE_PIPELINING(/home/xxxx/.ansible.cfg) = True
DEFAULT_HOST_LIST(/home/xxxx/.ansible.cfg) = [u'/home/xxxx/checkouts/ansible-tree/inventory']
DEFAULT_LOG_PATH(/home/xxxx/.ansible.cfg) = /home/xxxx/ansible.log
HOST_KEY_CHECKING(/home/xxxx/.ansible.cfg) = False
INVENTORY_IGNORE_EXTS(/home/xxxx/.ansible.cfg) = ['~', '.orig', '.bak', '.ini', '.cfg', '.retry', '.pyc', '.pyo', '.txt', '.back', 'script']
MAX_FILE_SIZE_FOR_DIFF(/home/xxxx/.ansible.cfg) = 4194304
RETRY_FILES_SAVE_PATH(/home/xxxx/.ansible.cfg) = /home/xxxx
</code></pre></div>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">Centos 6</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">When you add a when condition to include_tasks which includes a undefined variable, it processes it as True instead of trowing an undefined error.</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<p dir="auto">Do not define or set VAR</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="- include_tasks: task.yml
when: VAR == "yes"
- debug: msg="test"
when: VAR == "yes"
"><pre class="notranslate">- <span class="pl-ent">include_tasks</span>: <span class="pl-s">task.yml</span>
<span class="pl-ent">when</span>: <span class="pl-s">VAR == "yes"</span>
- <span class="pl-ent">debug</span>: <span class="pl-s">msg="test"</span>
<span class="pl-ent">when</span>: <span class="pl-s">VAR == "yes"</span>
</pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">include_tasks should fail with "'VAR' is undefined"</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<p dir="auto">Include_tasks just gets executed and debug message fails with "'VAR' is undefined"</p> | <h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">include_tasks</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="devel version on 2018/03/24
2.6.0-100.git201803241800.d502745a4e.devel"><pre class="notranslate"><code class="notranslate">devel version on 2018/03/24
2.6.0-100.git201803241800.d502745a4e.devel
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<p dir="auto">standart</p>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">centos 7.4</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">include_tasks: i.yml<br>
when: undefinded_variable == ''</p>
<p dir="auto">when condition with an undefined variable not raise error - it is always true !</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<p dir="auto">role with two files:<br>
main.yml</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="- debug: msg="{{test_undef_var}}"
ignore_errors: yes
- debug: msg="{{test_undef_var}}"
when:
- test_undef_var == ''
ignore_errors: yes
- debug: msg="{{ansible_user}}"
- name: "test include_task {{test_undef_var}}"
include_tasks: test_include.yml
when:
- test_undef_var != ''
- ansible_user == "bond""><pre class="notranslate">- <span class="pl-ent">debug</span>: <span class="pl-s">msg="{{test_undef_var}}"</span>
<span class="pl-ent">ignore_errors</span>: <span class="pl-s">yes</span>
- <span class="pl-ent">debug</span>: <span class="pl-s">msg="{{test_undef_var}}"</span>
<span class="pl-ent">when</span>:
- <span class="pl-s">test_undef_var == ''</span>
<span class="pl-ent">ignore_errors</span>: <span class="pl-s">yes</span>
- <span class="pl-ent">debug</span>: <span class="pl-s">msg="{{ansible_user}}"</span>
- <span class="pl-ent">name</span>: <span class="pl-s"><span class="pl-pds">"</span>test include_task {{test_undef_var}}<span class="pl-pds">"</span></span>
<span class="pl-ent">include_tasks</span>: <span class="pl-s">test_include.yml</span>
<span class="pl-ent">when</span>:
- <span class="pl-s">test_undef_var != ''</span>
- <span class="pl-s">ansible_user == "bond"</span></pre></div>
<p dir="auto">test_include.yml</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="- debug: msg="{{ansible_user}}"
- debug: msg="{{test_undef_var}}"
ignore_errors: yes"><pre class="notranslate">- <span class="pl-ent">debug</span>: <span class="pl-s">msg="{{ansible_user}}"</span>
- <span class="pl-ent">debug</span>: <span class="pl-s">msg="{{test_undef_var}}"</span>
<span class="pl-ent">ignore_errors</span>: <span class="pl-s">yes</span></pre></div>
<p dir="auto">playbook.yml</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="- hosts:
- all
vars:
- ansible_ssh_user: bond
roles:
- test"><pre class="notranslate">- <span class="pl-ent">hosts</span>:
- <span class="pl-s">all</span>
<span class="pl-ent">vars</span>:
- <span class="pl-ent">ansible_ssh_user</span>: <span class="pl-s">bond</span>
<span class="pl-ent">roles</span>:
- <span class="pl-s">test</span></pre></div>
<p dir="auto">and run:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible-playbook -i 192.168.100.71, -k --diff test.yml"><pre class="notranslate"><code class="notranslate">ansible-playbook -i 192.168.100.71, -k --diff test.yml
</code></pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">playbook should fail on include_task with message test_undef_var is undefined</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<p dir="auto">task included without error</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="SSH password:
PLAY [all] *************************************************************************************************************************************************************
TASK [Gathering Facts] *************************************************************************************************************************************************
ok: [192.168.100.71]
TASK [test : debug] ****************************************************************************************************************************************************
fatal: [192.168.100.71]: FAILED! => {"msg": "The task includes an option with an undefined variable. The error was: 'test_undef_var' is undefined\n\nThe error appears to have been in '/home/robot/test1/roles/test/tasks/main.yml': line 1, column 3, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n\n- debug: msg=\"{{test_undef_var}}\"\n ^ here\nWe could be wrong, but this one looks like it might be an issue with\nmissing quotes. Always quote template expression brackets when they\nstart a value. For instance:\n\n with_items:\n - {{ foo }}\n\nShould be written as:\n\n with_items:\n - \"{{ foo }}\"\n"}
...ignoring
TASK [test : debug] ****************************************************************************************************************************************************
fatal: [192.168.100.71]: FAILED! => {"msg": "The conditional check 'test_undef_var == ''' failed. The error was: error while evaluating conditional (test_undef_var == ''): 'test_undef_var' is undefined\n\nThe error appears to have been in '/home/robot/test1/roles/test/tasks/main.yml': line 4, column 3, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n\n- debug: msg=\"{{test_undef_var}}\"\n ^ here\nWe could be wrong, but this one looks like it might be an issue with\nmissing quotes. Always quote template expression brackets when they\nstart a value. For instance:\n\n with_items:\n - {{ foo }}\n\nShould be written as:\n\n with_items:\n - \"{{ foo }}\"\n"}
...ignoring
TASK [test : debug] ****************************************************************************************************************************************************
ok: [192.168.100.71] => {
"msg": "bond"
}
TASK [test : test include_task {{test_undef_var}}] *********************************************************************************************************************
included: /home/robot/test1/roles/test/tasks/test_include.yml for 192.168.100.71
TASK [test : debug] ****************************************************************************************************************************************************
ok: [192.168.100.71] => {
"msg": "bond"
}
TASK [test : debug] ****************************************************************************************************************************************************
fatal: [192.168.100.71]: FAILED! => {"msg": "The task includes an option with an undefined variable. The error was: 'test_undef_var' is undefined\n\nThe error appears to have been in '/home/robot/test1/roles/test/tasks/test_include.yml': line 3, column 3, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n\n- debug: msg=\"{{test_undef_var}}\"\n ^ here\nWe could be wrong, but this one looks like it might be an issue with\nmissing quotes. Always quote template expression brackets when they\nstart a value. For instance:\n\n with_items:\n - {{ foo }}\n\nShould be written as:\n\n with_items:\n - \"{{ foo }}\"\n"}
...ignoring
PLAY RECAP *************************************************************************************************************************************************************
192.168.100.71 : ok=7 changed=0 unreachable=0 failed=0"><pre class="notranslate"><code class="notranslate">SSH password:
PLAY [all] *************************************************************************************************************************************************************
TASK [Gathering Facts] *************************************************************************************************************************************************
ok: [192.168.100.71]
TASK [test : debug] ****************************************************************************************************************************************************
fatal: [192.168.100.71]: FAILED! => {"msg": "The task includes an option with an undefined variable. The error was: 'test_undef_var' is undefined\n\nThe error appears to have been in '/home/robot/test1/roles/test/tasks/main.yml': line 1, column 3, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n\n- debug: msg=\"{{test_undef_var}}\"\n ^ here\nWe could be wrong, but this one looks like it might be an issue with\nmissing quotes. Always quote template expression brackets when they\nstart a value. For instance:\n\n with_items:\n - {{ foo }}\n\nShould be written as:\n\n with_items:\n - \"{{ foo }}\"\n"}
...ignoring
TASK [test : debug] ****************************************************************************************************************************************************
fatal: [192.168.100.71]: FAILED! => {"msg": "The conditional check 'test_undef_var == ''' failed. The error was: error while evaluating conditional (test_undef_var == ''): 'test_undef_var' is undefined\n\nThe error appears to have been in '/home/robot/test1/roles/test/tasks/main.yml': line 4, column 3, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n\n- debug: msg=\"{{test_undef_var}}\"\n ^ here\nWe could be wrong, but this one looks like it might be an issue with\nmissing quotes. Always quote template expression brackets when they\nstart a value. For instance:\n\n with_items:\n - {{ foo }}\n\nShould be written as:\n\n with_items:\n - \"{{ foo }}\"\n"}
...ignoring
TASK [test : debug] ****************************************************************************************************************************************************
ok: [192.168.100.71] => {
"msg": "bond"
}
TASK [test : test include_task {{test_undef_var}}] *********************************************************************************************************************
included: /home/robot/test1/roles/test/tasks/test_include.yml for 192.168.100.71
TASK [test : debug] ****************************************************************************************************************************************************
ok: [192.168.100.71] => {
"msg": "bond"
}
TASK [test : debug] ****************************************************************************************************************************************************
fatal: [192.168.100.71]: FAILED! => {"msg": "The task includes an option with an undefined variable. The error was: 'test_undef_var' is undefined\n\nThe error appears to have been in '/home/robot/test1/roles/test/tasks/test_include.yml': line 3, column 3, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n\n- debug: msg=\"{{test_undef_var}}\"\n ^ here\nWe could be wrong, but this one looks like it might be an issue with\nmissing quotes. Always quote template expression brackets when they\nstart a value. For instance:\n\n with_items:\n - {{ foo }}\n\nShould be written as:\n\n with_items:\n - \"{{ foo }}\"\n"}
...ignoring
PLAY RECAP *************************************************************************************************************************************************************
192.168.100.71 : ok=7 changed=0 unreachable=0 failed=0
</code></pre></div>
<p dir="auto">i try with == task included</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- name: "test include_task {{test_undef_var}}"
include_tasks: test_include.yml
when:
- test_undef_var == ''
- ansible_user == "bond""><pre class="notranslate"><code class="notranslate">- name: "test include_task {{test_undef_var}}"
include_tasks: test_include.yml
when:
- test_undef_var == ''
- ansible_user == "bond"
</code></pre></div>
<p dir="auto">include task skipped only when trye anisble_user == 'nobond'</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- name: "test include_task {{test_undef_var}}"
include_tasks: test_include.yml
when:
- test_undef_var == ''
- ansible_user == "nobond""><pre class="notranslate"><code class="notranslate">- name: "test include_task {{test_undef_var}}"
include_tasks: test_include.yml
when:
- test_undef_var == ''
- ansible_user == "nobond"
</code></pre></div> | 1 |
<p dir="auto">One feature about DataFrame that I found uncomfortable is the inconsistency of results:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="x = pd.DataFrame({'A': [1,2,3,4,5]}, index=['a','b','c','d','e'])
x.loc[['a', 'f']] # fine, value of 'f' is numpy.nan
x.loc[['f']] # throws "><pre class="notranslate"><code class="notranslate">x = pd.DataFrame({'A': [1,2,3,4,5]}, index=['a','b','c','d','e'])
x.loc[['a', 'f']] # fine, value of 'f' is numpy.nan
x.loc[['f']] # throws
</code></pre></div>
<p dir="auto">When developing data applications, I spend lot of time fixing this issue. I think we should make it more consistent. Either always returns (preferred) or always throws.</p> | <p dir="auto">I just upgraded to latest Pandas 0.16, and the new error has hit me (with Pandas 0.15) when slicing with multiple values. (df.ix[[list_of_values]]). I actually think it is more valid to return an empty DataFrame, than to throw an error.</p>
<p dir="auto">The best I've been able to come up with to reproduce the previous behaviour (fail silently, return empty DataFrame) is:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# I want to filter a DataFrame by the first level of the index
df.ix[df.reset_index().IndexValue.isin(list_of_values).values]"><pre class="notranslate"><span class="pl-c"># I want to filter a DataFrame by the first level of the index</span>
<span class="pl-s1">df</span>.<span class="pl-s1">ix</span>[<span class="pl-s1">df</span>.<span class="pl-en">reset_index</span>().<span class="pl-v">IndexValue</span>.<span class="pl-en">isin</span>(<span class="pl-s1">list_of_values</span>).<span class="pl-s1">values</span>]</pre></div>
<p dir="auto">Not saying I'm right on the error/empty argument; but is the above the most elegant solution?</p>
<p dir="auto">Perhaps we should consider three distinct slicing operations:</p>
<ol dir="auto">
<li>Insists on everything being there (and throws errors)</li>
<li>Creates spaces where there is nothing there (reindex)</li>
<li>Just returns what's present, leaving the rest out (silent error)</li>
</ol>
<p dir="auto">I would think anyone indexing would be vary aware of what they are expecting from the above?</p> | 1 |
<h2 dir="auto">Issue description</h2>
<p dir="auto">I noticed that some loss functions in <code class="notranslate">torch.nn.functional</code> do tensor broadcasting while other does not.<br>
I started using <code class="notranslate">cosine_embedding_loss</code> and was happy because it handles input tensors with (N, F) and (1, F) shapes, where N - number of examples, F - number of features in one example (vector). Then I moved to <code class="notranslate">mse_loss</code> and <code class="notranslate">l1_loss</code> to check for better results. And I was disappointed to see that the latter both require (N, F) and (N, F) tensors - they do not support tensor broadcasting as <code class="notranslate">cosine_embedding_loss</code> does. Now I need to either stack the second tensor N times (and I do not know whether the gradient history is stored if a tensor is copied; in any case it is memory and computationaly inefficient) or implement l1 and l2 losses on my own.</p>
<p dir="auto">Please, make loss behavior consistent - either all functions require exactly the same shape or handle broadcasting for each of them. Thank you.</p>
<h2 dir="auto">Code example</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="t1 = torch.randn(5,7)
t2 = torch.randn(1,7)
loss_cosine = F.cosine_embedding_loss(t1, t2, target=torch.ones(5)) # works fine
loss_l2 = F.mse_loss(t1, t2)
# RuntimeError: input and target shapes do not match: input [5 x 7], target [1 x 7]"><pre class="notranslate"><code class="notranslate">t1 = torch.randn(5,7)
t2 = torch.randn(1,7)
loss_cosine = F.cosine_embedding_loss(t1, t2, target=torch.ones(5)) # works fine
loss_l2 = F.mse_loss(t1, t2)
# RuntimeError: input and target shapes do not match: input [5 x 7], target [1 x 7]
</code></pre></div>
<ul dir="auto">
<li>How you installed PyTorch: <code class="notranslate">conda install pytorch-cpu torchvision-cpu -c pytorch</code></li>
<li>PyTorch version: 0.4.1</li>
<li>Python version: 3.6.6</li>
</ul> | <h2 dir="auto">To Reproduce</h2>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="a = T.zeros(5,1,10, requires_grad=True)
b = T.zeros(5,10,10, requires_grad=True)
F.mse_loss(a,b)
# OK
a = T.zeros(5,1,10)
b = T.zeros(5,10,10)
F.mse_loss(a,b)
# RuntimeError: input and target shapes do not match: input [5 x 1 x 10], target [5 x 10 x 10] at /opt/conda/conda-bld/pytorch_1524577523076/work/aten/src/THNN/generic/MSECriterion.c:13"><pre class="notranslate"><span class="pl-s1">a</span> <span class="pl-c1">=</span> <span class="pl-v">T</span>.<span class="pl-en">zeros</span>(<span class="pl-c1">5</span>,<span class="pl-c1">1</span>,<span class="pl-c1">10</span>, <span class="pl-s1">requires_grad</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)
<span class="pl-s1">b</span> <span class="pl-c1">=</span> <span class="pl-v">T</span>.<span class="pl-en">zeros</span>(<span class="pl-c1">5</span>,<span class="pl-c1">10</span>,<span class="pl-c1">10</span>, <span class="pl-s1">requires_grad</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)
<span class="pl-v">F</span>.<span class="pl-en">mse_loss</span>(<span class="pl-s1">a</span>,<span class="pl-s1">b</span>)
<span class="pl-c"># OK</span>
<span class="pl-s1">a</span> <span class="pl-c1">=</span> <span class="pl-v">T</span>.<span class="pl-en">zeros</span>(<span class="pl-c1">5</span>,<span class="pl-c1">1</span>,<span class="pl-c1">10</span>)
<span class="pl-s1">b</span> <span class="pl-c1">=</span> <span class="pl-v">T</span>.<span class="pl-en">zeros</span>(<span class="pl-c1">5</span>,<span class="pl-c1">10</span>,<span class="pl-c1">10</span>)
<span class="pl-v">F</span>.<span class="pl-en">mse_loss</span>(<span class="pl-s1">a</span>,<span class="pl-s1">b</span>)
<span class="pl-c"># RuntimeError: input and target shapes do not match: input [5 x 1 x 10], target [5 x 10 x 10] at /opt/conda/conda-bld/pytorch_1524577523076/work/aten/src/THNN/generic/MSECriterion.c:13</span></pre></div>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">Broadcast should work the same as with grad.</p>
<h2 dir="auto">Workaround</h2>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# assumes size_average=False
def my_mse(a,b):
return ((a-b)**2).sum()"><pre class="notranslate"><span class="pl-c"># assumes size_average=False</span>
<span class="pl-k">def</span> <span class="pl-en">my_mse</span>(<span class="pl-s1">a</span>,<span class="pl-s1">b</span>):
<span class="pl-k">return</span> ((<span class="pl-s1">a</span><span class="pl-c1">-</span><span class="pl-s1">b</span>)<span class="pl-c1">**</span><span class="pl-c1">2</span>).<span class="pl-en">sum</span>()</pre></div> | 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
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[x] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong><br>
When using <code class="notranslate">HashLocationStrategy</code> and change url manually to the one, which is protected by CanActivate guard (this returns false and fire redirect to the other page), navigation events are called twice.</p>
<p dir="auto"><strong>Expected behavior</strong><br>
All navigation event are called once only.</p>
<p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong><br>
Use the demo in <a href="http://plnkr.co/edit/4xlYD9wmetG5G0Dvjp0E?p=preview" rel="nofollow">http://plnkr.co/edit/4xlYD9wmetG5G0Dvjp0E?p=preview</a><br>
Open window mode <a href="http://run.plnkr.co/plunks/4xlYD9wmetG5G0Dvjp0E/#/component-one" rel="nofollow">http://run.plnkr.co/plunks/4xlYD9wmetG5G0Dvjp0E/#/component-one</a><br>
Click <code class="notranslate">Guarded Component Two</code> link - only one <code class="notranslate">NavigationStart </code>and <code class="notranslate">NavigationCancel </code>events logged in console.<br>
Manually change url from <code class="notranslate">/#/component-one</code> to <code class="notranslate">/#/component-two</code> and hit enter - two pair of <code class="notranslate">NavigationStart </code>and <code class="notranslate">NavigationCancel</code> events logged in console.</p>
<p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br>
As the duplication of navigation event causes guards logic to be executed twice (and this may contain API calls) - it is a performance issue. Potentially, if guard resolving depends on some conditions which are true after first failed attempt - the second one will be successful, however it is not desired behavior.</p>
<p dir="auto"><strong>Please tell us about your environment:</strong></p>
<ul dir="auto">
<li>
<p dir="auto"><strong>Angular version:</strong> 4.1.0</p>
</li>
<li>
<p dir="auto"><strong>Browser:</strong> Chrome 57</p>
</li>
<li>
<p dir="auto"><strong>Language:</strong> TypeScript</p>
</li>
</ul> | <p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[X ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[X ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong><br>
Currently, I have a deactivation guard on a route which will return false or true depending on a condition. To get to this guarded route, the user must pass though 3 navigation step. Now, once on the guarded route, when using <code class="notranslate">location.back()</code>, the guard is called. If it returns <code class="notranslate">true</code>, the previous route is loaded. If the guard returns false, the navigation is cancelled. But if we redo a Location.back() after a failed navigation, the previous route that will be loaded will be 2 steps in the history instead of 1 (user perception).</p>
<p dir="auto">Workflow</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Main -- navigate to --> Route 1
Route 1 -- navigate to --> Route 2
Route 2 -- navigate to --> Route 3
Route 3 -- location.back() --> guard returns true --> Route 2
Route 2 -- navigate to --> Route 3
Route 3 -- location.back() --> guard returns false --> Route 3
Route 3 -- location.back() --> guard returns true --> Route 1 (should be Route 2)"><pre class="notranslate"><code class="notranslate">Main -- navigate to --> Route 1
Route 1 -- navigate to --> Route 2
Route 2 -- navigate to --> Route 3
Route 3 -- location.back() --> guard returns true --> Route 2
Route 2 -- navigate to --> Route 3
Route 3 -- location.back() --> guard returns false --> Route 3
Route 3 -- location.back() --> guard returns true --> Route 1 (should be Route 2)
</code></pre></div>
<p dir="auto"><strong>Expected behavior</strong><br>
An expected behavior for a user would be that navigating back brings back to the previous routed page.<br>
Workflow</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Main -- navigate to --> Route 1
Route 1 -- navigate to --> Route 2
Route 2 -- navigate to --> Route 3
Route 3 -- location.back() --> guard returns true --> Route 2
Route 2 -- navigate to --> Route 3
Route 3 -- location.back() --> guard returns false --> Route 3
Route 3 -- location.back() --> guard returns true --> Route 2 (expected)"><pre class="notranslate"><code class="notranslate">Main -- navigate to --> Route 1
Route 1 -- navigate to --> Route 2
Route 2 -- navigate to --> Route 3
Route 3 -- location.back() --> guard returns true --> Route 2
Route 2 -- navigate to --> Route 3
Route 3 -- location.back() --> guard returns false --> Route 3
Route 3 -- location.back() --> guard returns true --> Route 2 (expected)
</code></pre></div>
<p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong><br>
<a href="https://embed.plnkr.co/k1iX7PzmOre7P6ACtcur/" rel="nofollow">Plnkr</a></p>
<ol dir="auto">
<li>Click button Nav to route1</li>
<li>Click button Nav to route2</li>
<li>Click button Nav to route3</li>
<li>Click button Block Nav Back</li>
<li>Click button Nav back
<ul dir="auto">
<li>BOGUE: The location.back() routed on Route1 instead of Route2</li>
</ul>
</li>
</ol>
<p dir="auto"><strong>Personnal investigation</strong><br>
After some investigation, I saw that in <code class="notranslate">routerState$.then</code> (<a href="https://sourcegraph.com/github.com/angular/angular@b5c4bf1c59c56d48b8a536aa61c7bd72d94c99fc/-/blob/modules/@angular/router/src/router.ts#L756" rel="nofollow">router.ts line 752</a>) this logic used when <code class="notranslate">navigationIsSuccessful == false</code> is pretty simply but it is the actual cause of this bug. Basically, when a deactivation guard is hit, the location of the browser is already changed to the previous route. Which means that when the guard returns false, the <code class="notranslate">routerState$</code> runs his logic and calls <code class="notranslate">resetUrlToCurrentUrlTree()</code>. At this point we can see that we replace the state of the current location. But by doing this, we loose that route in the history which means that in my plunker, if we click the block nav back 3 times and then click the nav back we will actually kill the application.</p>
<p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br>
This is for me a pretty big bug since a guard that returns false breaks alters the current routing history. In the case of our application this breaks the workflow and brings wrong business scopes to a user.</p>
<p dir="auto"><strong>Please tell us about your environment:</strong></p>
<p dir="auto">Windows 10, NPM, Nodejs, Visual Studio 2015 (using nodejs for typescript compilation)</p>
<ul dir="auto">
<li>
<p dir="auto"><strong>Angular version:</strong> 2.3.3</p>
</li>
<li>
<p dir="auto"><strong>Browser:</strong> [ all ]</p>
</li>
<li>
<p dir="auto"><strong>Language:</strong> [TypeScript 2.0.10 | ES5]</p>
</li>
</ul> | 1 |
<p dir="auto">Steps:</p>
<ul dir="auto">
<li><code class="notranslate">gomobile install golang.org/x/mobile/example/basic</code></li>
<li>start the app</li>
<li>press back button</li>
<li>start the app</li>
</ul>
<p dir="auto">The application crashes:</p>
<p dir="auto"><code class="notranslate">panic: attempting to init key (2) with valid texture</code></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="I/ActivityManager( 1882): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=org.golang.todo.basic/org.golang.app.GoNativeActivity (has extras)} from uid 10034 on display 0
V/WindowManager( 1882): addAppToken: AppWindowToken{4d98ab token=Token{23ccdafa ActivityRecord{13f78925 u0 org.golang.todo.basic/org.golang.app.GoNativeActivity t665}}} to stack=1 task=665 at 0
V/WindowManager( 1882): Adding window Window{13bc92a1 u0 Starting org.golang.todo.basic} at 3 of 9 (after Window{1984e7be u0 com.google.android.googlequicksearchbox/com.google.android.launcher.GEL})
D/audio_hw_primary( 1518): out_set_parameters: enter: usecase(1: low-latency-playback) kvpairs: routing=2
D/audio_hw_primary( 1518): select_devices: out_snd_device(2: speaker) in_snd_device(0: none)
D/msm8974_platform( 1518): platform_send_audio_calibration: sending audio calibration for snd_device(2) acdb_id(15)
E/ACDB-LOADER( 1518): Error: ACDB AFE returned = -19
D/audio_hw_primary( 1518): enable_snd_device: snd_device(2: speaker)
D/audio_hw_primary( 1518): enable_audio_route: apply and update mixer path: low-latency-playback speaker
V/PhoneStatusBar(28923): setLightsOn(true)
I/GoLog (13562): android device reports unknown density: 560
V/WindowManager( 1882): Adding window Window{3fba7223 u0 org.golang.todo.basic/org.golang.app.GoNativeActivity} at 3 of 10 (before Window{13bc92a1 u0 Starting org.golang.todo.basic})
E/BufferQueueProducer( 258): [org.golang.todo.basic/org.golang.app.GoNativeActivity] queueBuffer: BufferQueue has been abandoned
E/Surface (13562): queueBuffer: error queuing buffer to SurfaceTexture, -19
I/Adreno (13562): Failed to swap the native window
E/BufferQueueProducer( 258): [org.golang.todo.basic/org.golang.app.GoNativeActivity] dequeueBuffer: BufferQueue has been abandoned
I/Adreno (13562): Native window GetBuffer failed
E/BufferQueueProducer( 258): [org.golang.todo.basic/org.golang.app.GoNativeActivity] dequeueBuffer: BufferQueue has been abandoned
I/Adreno (13562): Native window GetBuffer failed
I/Adreno (13562): Failed to acquire a surface
I/Keyboard.Facilitator( 2299): onFinishInput()
E/BufferQueueProducer( 258): [org.golang.todo.basic/org.golang.app.GoNativeActivity] dequeueBuffer: BufferQueue has been abandoned
I/Adreno (13562): Native window GetBuffer failed
E/BufferQueueProducer( 258): [org.golang.todo.basic/org.golang.app.GoNativeActivity] dequeueBuffer: BufferQueue has been abandoned
I/Adreno (13562): Native window GetBuffer failed
I/ActivityManager( 1882): Displayed org.golang.todo.basic/org.golang.app.GoNativeActivity: +80ms
E/Go (13562): panic: attempting to init key (2) with valid texture
E/Go (13562): goroutine 20 [running]:
E/Go (13562): golang.org/x/mobile/exp/gl/glutil.(*texmapCache).init(0xaf3ae698, 0x2)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/exp/gl/glutil/glimage.go:137 +0x140
E/Go (13562): golang.org/x/mobile/exp/gl/glutil.start()
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/exp/gl/glutil/glimage.go:73 +0x314
E/Go (13562): golang.org/x/mobile/exp/gl/glutil.init.1.func1(0xaf315088, 0x9306c100, 0x0, 0x0)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/exp/gl/glutil/glimage.go:40 +0x80
E/Go (13562): golang.org/x/mobile/app.Filter(0xaf315088, 0x9306c100, 0x0, 0x0)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/app.go:94 +0x94
E/Go (13562): main.main.func1(0x82b60000, 0xaf3d3a80)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/example/basic/main.go:60 +0xa8
E/Go (13562): golang.org/x/mobile/app.main.func1(0xaf3580fc, 0x93062140)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/android.go:233 +0x64
E/Go (13562): created by golang.org/x/mobile/app.main
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/android.go:235 +0xb4
E/Go (13562): goroutine 8 [chan receive, locked to thread]:
E/Go (13562): golang.org/x/mobile/app.main(0xaf3580fc)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/android.go:237 +0xe4
E/Go (13562): golang.org/x/mobile/app.Main(0xaf3580fc)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/app.go:21 +0x1c
E/Go (13562): main.main()
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/example/basic/main.go:78 +0x1c
E/Go (13562): golang.org/x/mobile/app/internal/callfn.CallFn(0xaf20dfe8)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/internal/callfn/callfn_arm.s:10 +0x18
E/Go (13562): created by golang.org/x/mobile/app.callMain
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/android.go:79 +0x404
E/Go (13562): goroutine 17 [syscall, locked to thread]:
E/Go (13562): runtime.goexit()
E/Go (13562): /home/pierre/.gimme/versions/go/src/runtime/asm_arm.s:1016 +0x4
E/Go (13562): goroutine 5 [syscall]:
E/Go (13562): syscall.Syscall(0x3, 0x15, 0x93054000, 0x400, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/syscall/asm_linux_arm.s:17 +0x8
E/Go (13562): syscall.read(0x15, 0x93054000, 0x400, 0x400, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/syscall/zsyscall_linux_arm.go:783 +0x78
E/Go (13562): syscall.Read(0x15, 0x93054000, 0x400, 0x400, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/syscall/syscall_unix.go:160 +0x4c
E/Go (13562): os.(*File).read(0x92fe4160, 0x93054000, 0x400, 0x400, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/os/file_unix.go:211 +0x54
E/Go (13562): os.(*File).Read(0x92fe4160, 0x93054000, 0x400, 0x400, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/os/file.go:95 +0x7c
E/Go (13562): bufio.(*Reader).fill(0x92ff1f7c)
E/Go (13562): /home/pierre/.gimme/versions/go/src/bufio/bufio.go:97 +0x1c4
E/Go (13562): bufio.(*Reader).ReadSlice(0x92ff1f7c, 0x40a, 0x0, 0x0, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/bufio/bufio.go:328 +0x264
E/Go (13562): bufio.(*Reader).ReadLine(0x92ff1f7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/bufio/bufio.go:357 +0x60
E/Go (13562): golang.org/x/mobile/internal/mobileinit.lineLog(0x92fe4160, 0x6)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/internal/mobileinit/mobileinit_android.go:50 +0xe0
E/Go (13562): created by golang.org/x/mobile/internal/mobileinit.init.1
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/internal/mobileinit/mobileinit_android.go:74 +0x104
E/Go (13562): goroutine 6 [syscall]:
E/Go (13562): syscall.Syscall(0x3, 0x17, 0x93052000, 0x400, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/syscall/asm_linux_arm.s:17 +0x8
E/Go (13562): syscall.read(0x17, 0x93052000, 0x400, 0x400, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/syscall/zsyscall_linux_arm.go:783 +0x78
E/Go (13562): syscall.Read(0x17, 0x93052000, 0x400, 0x400, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/syscall/syscall_unix.go:160 +0x4c
E/Go (13562): os.(*File).read(0x92fe4170, 0x93052000, 0x400, 0x400, 0xaf3d3a1c, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/os/file_unix.go:211 +0x54
E/Go (13562): os.(*File).Read(0x92fe4170, 0x93052000, 0x400, 0x400, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/os/file.go:95 +0x7c
E/Go (13562): bufio.(*Reader).fill(0x92ff277c)
E/Go (13562): /home/pierre/.gimme/versions/go/src/bufio/bufio.go:97 +0x1c4
E/Go (13562): bufio.(*Reader).ReadSlice(0x92ff277c, 0x40a, 0x0, 0x0, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/bufio/bufio.go:328 +0x264
E/Go (13562): bufio.(*Reader).ReadLine(0x92ff277c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/bufio/bufio.go:357 +0x60
E/Go (13562): golang.org/x/mobile/internal/mobileinit.lineLog(0x92fe4170, 0x4)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/internal/mobileinit/mobileinit_android.go:50 +0xe0
E/Go (13562): created by golang.org/x/mobile/internal/mobileinit.init.1
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/internal/mobileinit/mobileinit_android.go:81 +0x194
E/Go (13562): goroutine 7 [runnable]:
E/Go (13562): golang.org/x/mobile/app.pump.func1(0x92fe4180, 0x93036140)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/app.go:140 +0x4ac
E/Go (13562): created by golang.org/x/mobile/app.pump
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/app.go:169 +0x88
E/Go (13562): goroutine 18 [syscall, locked to thread]:
E/Go (13562): runtime.goexit()
E/Go (13562): /home/pierre/.gimme/versions/go/src/runtime/asm_arm.s:1016 +0x4
E/Go (13562): goroutine 19 [runnable, locked to thread]:
E/Go (13562): golang.org/x/mobile/app._Cfunc_AInputQueue_getEvent(0xb4afaf60, 0x930974b8, 0xfffffff5)
E/Go (13562): ??:0 +0x34
E/Go (13562): golang.org/x/mobile/app.processEvents(0xb4afaf60)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/loop_android.go:143 +0x38
E/Go (13562): golang.org/x/mobile/app.windowDraw(0xb497dc08, 0xb4afaf60, 0x93072000, 0x93072001)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/loop_android.go:101 +0x3c
E/Go (13562): golang.org/x/mobile/app.main(0xaf3580fc)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/android.go:238 +0x114
E/Go (13562): golang.org/x/mobile/app.Main(0xaf3580fc)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/app.go:21 +0x1c
E/Go (13562): main.main()
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/example/basic/main.go:78 +0x1c
E/Go (13562): golang.org/x/mobile/app/internal/callfn.CallFn(0xaf20dfe8)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/internal/callfn/callfn_arm.s:10 +0x18
E/Go (13562): created by golang.org/x/mobile/app.callMain
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/android.go:79 +0x404
E/Go (13562): goroutine 35 [runnable]:
E/Go (13562): sync.runtime_Semacquire(0xaf3ae69c)
E/Go (13562): /home/pierre/.gimme/versions/go/src/runtime/sema.go:43 +0x24
E/Go (13562): sync.(*Mutex).Lock(0xaf3ae698)
E/Go (13562): /home/pierre/.gimme/versions/go/src/sync/mutex.go:82 +0x1fc
E/Go (13562): golang.org/x/mobile/exp/gl/glutil.(*texmapCache).get(0xaf3ae698, 0x3, 0x0)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/exp/gl/glutil/glimage.go:166 +0x30
E/Go (13562): golang.org/x/mobile/exp/gl/glutil.(*Image).Upload(0x9307e850)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/exp/gl/glutil/glimage.go:215 +0x30
E/Go (13562): golang.org/x/mobile/exp/app/debug.DrawFPS(0x43392492, 0x4399c57c, 0x40f8e38e)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/exp/app/debug/fps.go:68 +0x564
E/Go (13562): main.onPaint(0x43392492, 0x4399c57c, 0x40f8e38e)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/example/basic/main.go:126 +0x1ac
E/Go (13562): main.main.func1(0x82b60000, 0xaf3d3a80)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/example/basic/main.go:72 +0x144
E/Go (13562): golang.org/x/mobile/app.main.func1(0xaf3580fc, 0x93072000)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/android.go:233 +0x64
E/Go (13562): created by golang.org/x/mobile/app.main
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/android.go:235 +0xb4
I/WindowState( 1882): WIN DEATH: Window{3fba7223 u0 org.golang.todo.basic/org.golang.app.GoNativeActivity}
I/Zygote ( 1526): Process 13562 exited due to signal (6)
I/ActivityManager( 1882): Process org.golang.todo.basic (pid 13562) has died
W/ActivityManager( 1882): Force removing ActivityRecord{13f78925 u0 org.golang.todo.basic/org.golang.app.GoNativeActivity t665}: app died, no saved state
W/InputMethodManagerService( 1882): Got RemoteException sending setActive(false) notification to pid 13562 uid 10100"><pre class="notranslate"><code class="notranslate">I/ActivityManager( 1882): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=org.golang.todo.basic/org.golang.app.GoNativeActivity (has extras)} from uid 10034 on display 0
V/WindowManager( 1882): addAppToken: AppWindowToken{4d98ab token=Token{23ccdafa ActivityRecord{13f78925 u0 org.golang.todo.basic/org.golang.app.GoNativeActivity t665}}} to stack=1 task=665 at 0
V/WindowManager( 1882): Adding window Window{13bc92a1 u0 Starting org.golang.todo.basic} at 3 of 9 (after Window{1984e7be u0 com.google.android.googlequicksearchbox/com.google.android.launcher.GEL})
D/audio_hw_primary( 1518): out_set_parameters: enter: usecase(1: low-latency-playback) kvpairs: routing=2
D/audio_hw_primary( 1518): select_devices: out_snd_device(2: speaker) in_snd_device(0: none)
D/msm8974_platform( 1518): platform_send_audio_calibration: sending audio calibration for snd_device(2) acdb_id(15)
E/ACDB-LOADER( 1518): Error: ACDB AFE returned = -19
D/audio_hw_primary( 1518): enable_snd_device: snd_device(2: speaker)
D/audio_hw_primary( 1518): enable_audio_route: apply and update mixer path: low-latency-playback speaker
V/PhoneStatusBar(28923): setLightsOn(true)
I/GoLog (13562): android device reports unknown density: 560
V/WindowManager( 1882): Adding window Window{3fba7223 u0 org.golang.todo.basic/org.golang.app.GoNativeActivity} at 3 of 10 (before Window{13bc92a1 u0 Starting org.golang.todo.basic})
E/BufferQueueProducer( 258): [org.golang.todo.basic/org.golang.app.GoNativeActivity] queueBuffer: BufferQueue has been abandoned
E/Surface (13562): queueBuffer: error queuing buffer to SurfaceTexture, -19
I/Adreno (13562): Failed to swap the native window
E/BufferQueueProducer( 258): [org.golang.todo.basic/org.golang.app.GoNativeActivity] dequeueBuffer: BufferQueue has been abandoned
I/Adreno (13562): Native window GetBuffer failed
E/BufferQueueProducer( 258): [org.golang.todo.basic/org.golang.app.GoNativeActivity] dequeueBuffer: BufferQueue has been abandoned
I/Adreno (13562): Native window GetBuffer failed
I/Adreno (13562): Failed to acquire a surface
I/Keyboard.Facilitator( 2299): onFinishInput()
E/BufferQueueProducer( 258): [org.golang.todo.basic/org.golang.app.GoNativeActivity] dequeueBuffer: BufferQueue has been abandoned
I/Adreno (13562): Native window GetBuffer failed
E/BufferQueueProducer( 258): [org.golang.todo.basic/org.golang.app.GoNativeActivity] dequeueBuffer: BufferQueue has been abandoned
I/Adreno (13562): Native window GetBuffer failed
I/ActivityManager( 1882): Displayed org.golang.todo.basic/org.golang.app.GoNativeActivity: +80ms
E/Go (13562): panic: attempting to init key (2) with valid texture
E/Go (13562): goroutine 20 [running]:
E/Go (13562): golang.org/x/mobile/exp/gl/glutil.(*texmapCache).init(0xaf3ae698, 0x2)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/exp/gl/glutil/glimage.go:137 +0x140
E/Go (13562): golang.org/x/mobile/exp/gl/glutil.start()
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/exp/gl/glutil/glimage.go:73 +0x314
E/Go (13562): golang.org/x/mobile/exp/gl/glutil.init.1.func1(0xaf315088, 0x9306c100, 0x0, 0x0)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/exp/gl/glutil/glimage.go:40 +0x80
E/Go (13562): golang.org/x/mobile/app.Filter(0xaf315088, 0x9306c100, 0x0, 0x0)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/app.go:94 +0x94
E/Go (13562): main.main.func1(0x82b60000, 0xaf3d3a80)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/example/basic/main.go:60 +0xa8
E/Go (13562): golang.org/x/mobile/app.main.func1(0xaf3580fc, 0x93062140)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/android.go:233 +0x64
E/Go (13562): created by golang.org/x/mobile/app.main
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/android.go:235 +0xb4
E/Go (13562): goroutine 8 [chan receive, locked to thread]:
E/Go (13562): golang.org/x/mobile/app.main(0xaf3580fc)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/android.go:237 +0xe4
E/Go (13562): golang.org/x/mobile/app.Main(0xaf3580fc)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/app.go:21 +0x1c
E/Go (13562): main.main()
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/example/basic/main.go:78 +0x1c
E/Go (13562): golang.org/x/mobile/app/internal/callfn.CallFn(0xaf20dfe8)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/internal/callfn/callfn_arm.s:10 +0x18
E/Go (13562): created by golang.org/x/mobile/app.callMain
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/android.go:79 +0x404
E/Go (13562): goroutine 17 [syscall, locked to thread]:
E/Go (13562): runtime.goexit()
E/Go (13562): /home/pierre/.gimme/versions/go/src/runtime/asm_arm.s:1016 +0x4
E/Go (13562): goroutine 5 [syscall]:
E/Go (13562): syscall.Syscall(0x3, 0x15, 0x93054000, 0x400, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/syscall/asm_linux_arm.s:17 +0x8
E/Go (13562): syscall.read(0x15, 0x93054000, 0x400, 0x400, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/syscall/zsyscall_linux_arm.go:783 +0x78
E/Go (13562): syscall.Read(0x15, 0x93054000, 0x400, 0x400, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/syscall/syscall_unix.go:160 +0x4c
E/Go (13562): os.(*File).read(0x92fe4160, 0x93054000, 0x400, 0x400, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/os/file_unix.go:211 +0x54
E/Go (13562): os.(*File).Read(0x92fe4160, 0x93054000, 0x400, 0x400, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/os/file.go:95 +0x7c
E/Go (13562): bufio.(*Reader).fill(0x92ff1f7c)
E/Go (13562): /home/pierre/.gimme/versions/go/src/bufio/bufio.go:97 +0x1c4
E/Go (13562): bufio.(*Reader).ReadSlice(0x92ff1f7c, 0x40a, 0x0, 0x0, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/bufio/bufio.go:328 +0x264
E/Go (13562): bufio.(*Reader).ReadLine(0x92ff1f7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/bufio/bufio.go:357 +0x60
E/Go (13562): golang.org/x/mobile/internal/mobileinit.lineLog(0x92fe4160, 0x6)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/internal/mobileinit/mobileinit_android.go:50 +0xe0
E/Go (13562): created by golang.org/x/mobile/internal/mobileinit.init.1
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/internal/mobileinit/mobileinit_android.go:74 +0x104
E/Go (13562): goroutine 6 [syscall]:
E/Go (13562): syscall.Syscall(0x3, 0x17, 0x93052000, 0x400, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/syscall/asm_linux_arm.s:17 +0x8
E/Go (13562): syscall.read(0x17, 0x93052000, 0x400, 0x400, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/syscall/zsyscall_linux_arm.go:783 +0x78
E/Go (13562): syscall.Read(0x17, 0x93052000, 0x400, 0x400, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/syscall/syscall_unix.go:160 +0x4c
E/Go (13562): os.(*File).read(0x92fe4170, 0x93052000, 0x400, 0x400, 0xaf3d3a1c, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/os/file_unix.go:211 +0x54
E/Go (13562): os.(*File).Read(0x92fe4170, 0x93052000, 0x400, 0x400, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/os/file.go:95 +0x7c
E/Go (13562): bufio.(*Reader).fill(0x92ff277c)
E/Go (13562): /home/pierre/.gimme/versions/go/src/bufio/bufio.go:97 +0x1c4
E/Go (13562): bufio.(*Reader).ReadSlice(0x92ff277c, 0x40a, 0x0, 0x0, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/bufio/bufio.go:328 +0x264
E/Go (13562): bufio.(*Reader).ReadLine(0x92ff277c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0)
E/Go (13562): /home/pierre/.gimme/versions/go/src/bufio/bufio.go:357 +0x60
E/Go (13562): golang.org/x/mobile/internal/mobileinit.lineLog(0x92fe4170, 0x4)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/internal/mobileinit/mobileinit_android.go:50 +0xe0
E/Go (13562): created by golang.org/x/mobile/internal/mobileinit.init.1
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/internal/mobileinit/mobileinit_android.go:81 +0x194
E/Go (13562): goroutine 7 [runnable]:
E/Go (13562): golang.org/x/mobile/app.pump.func1(0x92fe4180, 0x93036140)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/app.go:140 +0x4ac
E/Go (13562): created by golang.org/x/mobile/app.pump
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/app.go:169 +0x88
E/Go (13562): goroutine 18 [syscall, locked to thread]:
E/Go (13562): runtime.goexit()
E/Go (13562): /home/pierre/.gimme/versions/go/src/runtime/asm_arm.s:1016 +0x4
E/Go (13562): goroutine 19 [runnable, locked to thread]:
E/Go (13562): golang.org/x/mobile/app._Cfunc_AInputQueue_getEvent(0xb4afaf60, 0x930974b8, 0xfffffff5)
E/Go (13562): ??:0 +0x34
E/Go (13562): golang.org/x/mobile/app.processEvents(0xb4afaf60)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/loop_android.go:143 +0x38
E/Go (13562): golang.org/x/mobile/app.windowDraw(0xb497dc08, 0xb4afaf60, 0x93072000, 0x93072001)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/loop_android.go:101 +0x3c
E/Go (13562): golang.org/x/mobile/app.main(0xaf3580fc)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/android.go:238 +0x114
E/Go (13562): golang.org/x/mobile/app.Main(0xaf3580fc)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/app.go:21 +0x1c
E/Go (13562): main.main()
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/example/basic/main.go:78 +0x1c
E/Go (13562): golang.org/x/mobile/app/internal/callfn.CallFn(0xaf20dfe8)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/internal/callfn/callfn_arm.s:10 +0x18
E/Go (13562): created by golang.org/x/mobile/app.callMain
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/android.go:79 +0x404
E/Go (13562): goroutine 35 [runnable]:
E/Go (13562): sync.runtime_Semacquire(0xaf3ae69c)
E/Go (13562): /home/pierre/.gimme/versions/go/src/runtime/sema.go:43 +0x24
E/Go (13562): sync.(*Mutex).Lock(0xaf3ae698)
E/Go (13562): /home/pierre/.gimme/versions/go/src/sync/mutex.go:82 +0x1fc
E/Go (13562): golang.org/x/mobile/exp/gl/glutil.(*texmapCache).get(0xaf3ae698, 0x3, 0x0)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/exp/gl/glutil/glimage.go:166 +0x30
E/Go (13562): golang.org/x/mobile/exp/gl/glutil.(*Image).Upload(0x9307e850)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/exp/gl/glutil/glimage.go:215 +0x30
E/Go (13562): golang.org/x/mobile/exp/app/debug.DrawFPS(0x43392492, 0x4399c57c, 0x40f8e38e)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/exp/app/debug/fps.go:68 +0x564
E/Go (13562): main.onPaint(0x43392492, 0x4399c57c, 0x40f8e38e)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/example/basic/main.go:126 +0x1ac
E/Go (13562): main.main.func1(0x82b60000, 0xaf3d3a80)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/example/basic/main.go:72 +0x144
E/Go (13562): golang.org/x/mobile/app.main.func1(0xaf3580fc, 0x93072000)
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/android.go:233 +0x64
E/Go (13562): created by golang.org/x/mobile/app.main
E/Go (13562): /home/pierre/Go/src/golang.org/x/mobile/app/android.go:235 +0xb4
I/WindowState( 1882): WIN DEATH: Window{3fba7223 u0 org.golang.todo.basic/org.golang.app.GoNativeActivity}
I/Zygote ( 1526): Process 13562 exited due to signal (6)
I/ActivityManager( 1882): Process org.golang.todo.basic (pid 13562) has died
W/ActivityManager( 1882): Force removing ActivityRecord{13f78925 u0 org.golang.todo.basic/org.golang.app.GoNativeActivity t665}: app died, no saved state
W/InputMethodManagerService( 1882): Got RemoteException sending setActive(false) notification to pid 13562 uid 10100
</code></pre></div>
<p dir="auto">Go version: go version devel +1421bc1 Wed Jul 22 09:18:33 2015 +0000 linux/amd64<br>
Device: Nexus 6<br>
Android version: 5.1.1 stock</p> | <p dir="auto">golang.org/x/mobile/example/basic<br>
its a UI interaction bug.</p>
<p dir="auto">Context:<br>
gedw99-MacBook-Pro:audio apple$ go version<br>
go version go1.5beta2 darwin/amd64</p>
<p dir="auto">gedw99-MacBook-Pro:audio apple$ which go<br>
/usr/local/go/bin/go<br>
gedw99-MacBook-Pro:audio apple$</p>
<p dir="auto">Steps to reproduce:<br>
compile for android<br>
load apk on nexus 6<br>
open program and it works fine.<br>
hit home button<br>
open program and it works fine<br>
hit back button<br>
open program and it shows a dithered triangle.</p>
<ul dir="auto">
<li>it looks like 2 programs running on top of each other with a alpha transparency between them.</li>
</ul> | 1 |
<p dir="auto">I am trying to run <code class="notranslate">resnet_v2.py</code> from provided modles but getting error <code class="notranslate">ImportError: No module named nets </code>.<br>
I have done following<br>
First installing slim<br>
<code class="notranslate">cd $HOME/tensorflow git clone https://github.com/tensorflow/models/</code></p>
<p dir="auto">To verify that this has worked, execute the following commands; it should run<br>
without raising any errors.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="`cd $HOME/tensorflow/models/slim
python3 -c "from nets import cifarnet; mynet = cifarnet.cifarnet"`"><pre class="notranslate"><code class="notranslate">`cd $HOME/tensorflow/models/slim
python3 -c "from nets import cifarnet; mynet = cifarnet.cifarnet"`
</code></pre></div>
<p dir="auto">I got no error.</p>
<p dir="auto">But when I run following gives error <strong>"ImportError: No module named nets"</strong>. I have also tried<br>
<code class="notranslate">cd $HOME/tensorflow/models/slim/ python3 -c "from nets import resnet_utils"</code></p>
<p dir="auto">Got not error. Also build using <code class="notranslate">bazel build nets</code> output<br>
<code class="notranslate">INFO: Found 1 target... Target //slim:nets up-to-date (nothing to build) INFO: Elapsed time: 0.096s, Critical Path: 0.00s </code></p>
<p dir="auto">I don't know why this is not working.</p> | <p dir="auto">I am trying to run <code class="notranslate">resnet_v2.py</code> from provided modles but getting error <code class="notranslate">ImportError: No module named nets.</code><br>
I have done following<br>
First installing slim<br>
<code class="notranslate">cd $HOME/tensorflow git clone https://github.com/tensorflow/models/</code></p>
<p dir="auto">To verify that this has worked, execute the following commands; it should run<br>
without raising any errors.</p>
<p dir="auto"><code class="notranslate">cd $HOME/tensorflow/models/slim python3 -c "from nets import cifarnet; mynet = cifarnet.cifarnet"</code><br>
I got no error.</p>
<p dir="auto">But when I run following gives error "ImportError: No module named nets". I have also tried<br>
<code class="notranslate">cd $HOME/tensorflow/models/slim/ python3 -c "from nets import resnet_utils"</code></p>
<p dir="auto"><code class="notranslate">Got not error. Also build using bazel build nets output INFO: Found 1 target... Target //slim:nets up-to-date (nothing to build) INFO: Elapsed time: 0.096s, Critical Path: 0.00s</code></p>
<p dir="auto">Same thing happen when try to run Inception with error <code class="notranslate">ImportError: No module named inception</code></p>
<p dir="auto">I don't know why this is not working.</p> | 1 |
<ul dir="auto">
<li>Output of <code class="notranslate">node_modules/.bin/electron --version</code>: 3.0.13</li>
<li>Operating System (Platform and Version): MacOS 10.14.2</li>
<li>Output of <code class="notranslate">node_modules/.bin/electron --version</code> on last known working Electron version (if applicable): 2.0.16</li>
</ul>
<p dir="auto"><strong>Expected Behavior</strong><br>
Print all content.</p>
<p dir="auto"><strong>Actual behavior</strong><br>
Only printing first page's content, the reset of the pages are blank. Electron 2 prints all pages.</p>
<p dir="auto"><strong>To Reproduce</strong><br>
Print anything greater than one page on Electron 3 using <code class="notranslate">window.print()</code>.</p>
<p dir="auto"><strong>Screenshots</strong><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/4603906/50240589-2ce82d00-0393-11e9-9f03-dd4a1241e649.jpg"><img src="https://user-images.githubusercontent.com/4603906/50240589-2ce82d00-0393-11e9-9f03-dd4a1241e649.jpg" alt="screen shot 2018-12-19 at 1 33 15 pm" style="max-width: 100%;"></a></p> | <ul dir="auto">
<li>Electron Version: 3.0.0-beta.6</li>
<li>Operating System (Platform and Version): Mac OS 10.13.6</li>
<li>Last known working Electron version: 2.0.7</li>
</ul>
<p dir="auto"><strong>Expected Behavior</strong></p>
<p dir="auto">If content spans multiple pages, all pages should print.</p>
<p dir="auto"><strong>Actual behavior</strong></p>
<p dir="auto">Only content on the first page is being printed</p>
<p dir="auto"><strong>To Reproduce</strong></p>
<p dir="auto"><a href="https://github.com/enstrategic/printing-example">https://github.com/enstrategic/printing-example</a></p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ git clone https://github.com/enstrategic/printing-example
$ yarn
$ yarn run start"><pre class="notranslate">$ git clone https://github.com/enstrategic/printing-example
$ yarn
$ yarn run start</pre></div>
<p dir="auto">Click on the print button</p>
<p dir="auto"><strong>Screenshots</strong></p>
<p dir="auto">Electron 3 example:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/6138011/44467294-c0754100-a5df-11e8-945e-f8ce2a5063ef.png"><img src="https://user-images.githubusercontent.com/6138011/44467294-c0754100-a5df-11e8-945e-f8ce2a5063ef.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Electron 2 output:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/6138011/44467391-029e8280-a5e0-11e8-92fd-9dacc900322b.png"><img src="https://user-images.githubusercontent.com/6138011/44467391-029e8280-a5e0-11e8-92fd-9dacc900322b.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto"><strong>Additional Information</strong><br>
Add any other context about the problem here.</p> | 1 |
<p dir="auto"><strong>Migrated issue, originally created by Pablo Marti (<a href="https://github.com/pmarti">@pmarti</a>)</strong></p>
<p dir="auto">Hi there,</p>
<p dir="auto">I have a User model class with a profile attribute marked as mutable</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="class User(db.Model):
...
profile = db.Column(MutableDict.as_mutable(JSONB()))"><pre class="notranslate"><code class="notranslate">class User(db.Model):
...
profile = db.Column(MutableDict.as_mutable(JSONB()))
</code></pre></div>
<p dir="auto">This works perfectly under python2.7, but now when I issue a query using pypy 2.6 I get this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last):
File "/Users/pablo/.virtualenvs/drop/src/flask/flask/app.py", line 1537, in full_dispatch_request
rv = self.dispatch_request()
File "/Users/pablo/.virtualenvs/drop/src/flask/flask/app.py", line 1523, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/Users/pablo/Development/drop-server/drop/api/decorators.py", line 73, in decorated_function
.get(user_id)
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/orm/query.py", line 818, in get
return self._get_impl(ident, loading.load_on_ident)
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/orm/query.py", line 851, in _get_impl
return fallback_fn(self, key)
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/orm/loading.py", line 217, in load_on_ident
return q.one()
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/orm/query.py", line 2472, in one
ret = list(self)
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/orm/loading.py", line 84, in instances
util.raise_from_cause(err)
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/util/compat.py", line 199, in raise_from_cause
reraise(type(exception), exception, tb=exc_tb)
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/orm/loading.py", line 69, in instances
rows = [proc(row) for row in fetch]
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/orm/loading.py", line 430, in _instance
state.manager.dispatch.load(state, context)
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/event/attr.py", line 258, in __call__
fn(*args, **kw)
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/ext/mutable.py", line 428, in load
val = cls.coerce(key, val)
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/ext/mutable.py", line 638, in coerce
return Mutable.coerce(key, value)
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/ext/mutable.py", line 403, in coerce
raise ValueError(msg % (key, type(value)))
ValueError: Attribute 'profile' does not accept objects of type <type 'list'>"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last):
File "/Users/pablo/.virtualenvs/drop/src/flask/flask/app.py", line 1537, in full_dispatch_request
rv = self.dispatch_request()
File "/Users/pablo/.virtualenvs/drop/src/flask/flask/app.py", line 1523, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/Users/pablo/Development/drop-server/drop/api/decorators.py", line 73, in decorated_function
.get(user_id)
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/orm/query.py", line 818, in get
return self._get_impl(ident, loading.load_on_ident)
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/orm/query.py", line 851, in _get_impl
return fallback_fn(self, key)
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/orm/loading.py", line 217, in load_on_ident
return q.one()
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/orm/query.py", line 2472, in one
ret = list(self)
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/orm/loading.py", line 84, in instances
util.raise_from_cause(err)
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/util/compat.py", line 199, in raise_from_cause
reraise(type(exception), exception, tb=exc_tb)
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/orm/loading.py", line 69, in instances
rows = [proc(row) for row in fetch]
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/orm/loading.py", line 430, in _instance
state.manager.dispatch.load(state, context)
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/event/attr.py", line 258, in __call__
fn(*args, **kw)
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/ext/mutable.py", line 428, in load
val = cls.coerce(key, val)
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/ext/mutable.py", line 638, in coerce
return Mutable.coerce(key, value)
File "/Users/pablo/.virtualenvs/drop/site-packages/sqlalchemy/ext/mutable.py", line 403, in coerce
raise ValueError(msg % (key, type(value)))
ValueError: Attribute 'profile' does not accept objects of type <type 'list'>
</code></pre></div>
<p dir="auto">Dependencies:</p>
<p dir="auto">SQLAlchemy==1.0.4<br>
psycopg2cffi==2.7.0</p> | <p dir="auto"><strong>Migrated issue, originally created by Raphaël Slinckx</strong></p>
<p dir="auto">Here is a test case yielding different results between sqlalchemy 0.9.9 and 1.0+</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import json
from sqlalchemy import create_engine, Column
from sqlalchemy.types import TypeDecorator, UnicodeText, Integer
from sqlalchemy.ext.mutable import MutableDict
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import Session
class JSONDictType(TypeDecorator):
impl = UnicodeText
def process_bind_param(self, value, dialect):
if value is not None:
value = unicode(json.dumps(value))
return value
def process_result_value(self, value, dialect):
if value is not None:
value = json.loads(value)
return value
def JSON():
return MutableDict.as_mutable(JSONDictType)
Base = declarative_base()
class MyDataClass(Base):
__tablename__ = 'my_data'
id = Column(Integer, primary_key=True)
data = Column(JSON(), default={}, nullable=False)
session = Session(create_engine("sqlite:///:memory:", echo=True))
Base.metadata.create_all(session.bind)
m1 = MyDataClass()
session.add(m1)
session.flush() # Note: without this, the m1.data is None on sqlalchemy 1.0
m1.data["test"] = 1
session.commit()
m2 = MyDataClass()
session.add(m2)
session.commit()
assert m1.data == {'test': 1}
assert m2.data == {}
# With sqlalchemy 1.0 this results in
# m1.data == {}
# m2.data == {'test': 1}"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">json</span>
<span class="pl-k">from</span> <span class="pl-s1">sqlalchemy</span> <span class="pl-k">import</span> <span class="pl-s1">create_engine</span>, <span class="pl-v">Column</span>
<span class="pl-k">from</span> <span class="pl-s1">sqlalchemy</span>.<span class="pl-s1">types</span> <span class="pl-k">import</span> <span class="pl-v">TypeDecorator</span>, <span class="pl-v">UnicodeText</span>, <span class="pl-v">Integer</span>
<span class="pl-k">from</span> <span class="pl-s1">sqlalchemy</span>.<span class="pl-s1">ext</span>.<span class="pl-s1">mutable</span> <span class="pl-k">import</span> <span class="pl-v">MutableDict</span>
<span class="pl-k">from</span> <span class="pl-s1">sqlalchemy</span>.<span class="pl-s1">ext</span>.<span class="pl-s1">declarative</span> <span class="pl-k">import</span> <span class="pl-s1">declarative_base</span>
<span class="pl-k">from</span> <span class="pl-s1">sqlalchemy</span>.<span class="pl-s1">orm</span> <span class="pl-k">import</span> <span class="pl-v">Session</span>
<span class="pl-k">class</span> <span class="pl-v">JSONDictType</span>(<span class="pl-v">TypeDecorator</span>):
<span class="pl-s1">impl</span> <span class="pl-c1">=</span> <span class="pl-v">UnicodeText</span>
<span class="pl-k">def</span> <span class="pl-en">process_bind_param</span>(<span class="pl-s1">self</span>, <span class="pl-s1">value</span>, <span class="pl-s1">dialect</span>):
<span class="pl-k">if</span> <span class="pl-s1">value</span> <span class="pl-c1">is</span> <span class="pl-c1">not</span> <span class="pl-c1">None</span>:
<span class="pl-s1">value</span> <span class="pl-c1">=</span> <span class="pl-en">unicode</span>(<span class="pl-s1">json</span>.<span class="pl-en">dumps</span>(<span class="pl-s1">value</span>))
<span class="pl-k">return</span> <span class="pl-s1">value</span>
<span class="pl-k">def</span> <span class="pl-en">process_result_value</span>(<span class="pl-s1">self</span>, <span class="pl-s1">value</span>, <span class="pl-s1">dialect</span>):
<span class="pl-k">if</span> <span class="pl-s1">value</span> <span class="pl-c1">is</span> <span class="pl-c1">not</span> <span class="pl-c1">None</span>:
<span class="pl-s1">value</span> <span class="pl-c1">=</span> <span class="pl-s1">json</span>.<span class="pl-en">loads</span>(<span class="pl-s1">value</span>)
<span class="pl-k">return</span> <span class="pl-s1">value</span>
<span class="pl-k">def</span> <span class="pl-v">JSON</span>():
<span class="pl-k">return</span> <span class="pl-v">MutableDict</span>.<span class="pl-en">as_mutable</span>(<span class="pl-v">JSONDictType</span>)
<span class="pl-v">Base</span> <span class="pl-c1">=</span> <span class="pl-en">declarative_base</span>()
<span class="pl-k">class</span> <span class="pl-v">MyDataClass</span>(<span class="pl-v">Base</span>):
<span class="pl-s1">__tablename__</span> <span class="pl-c1">=</span> <span class="pl-s">'my_data'</span>
<span class="pl-s1">id</span> <span class="pl-c1">=</span> <span class="pl-v">Column</span>(<span class="pl-v">Integer</span>, <span class="pl-s1">primary_key</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)
<span class="pl-s1">data</span> <span class="pl-c1">=</span> <span class="pl-v">Column</span>(<span class="pl-v">JSON</span>(), <span class="pl-s1">default</span><span class="pl-c1">=</span>{}, <span class="pl-s1">nullable</span><span class="pl-c1">=</span><span class="pl-c1">False</span>)
<span class="pl-s1">session</span> <span class="pl-c1">=</span> <span class="pl-v">Session</span>(<span class="pl-en">create_engine</span>(<span class="pl-s">"sqlite:///:memory:"</span>, <span class="pl-s1">echo</span><span class="pl-c1">=</span><span class="pl-c1">True</span>))
<span class="pl-v">Base</span>.<span class="pl-s1">metadata</span>.<span class="pl-en">create_all</span>(<span class="pl-s1">session</span>.<span class="pl-s1">bind</span>)
<span class="pl-s1">m1</span> <span class="pl-c1">=</span> <span class="pl-v">MyDataClass</span>()
<span class="pl-s1">session</span>.<span class="pl-en">add</span>(<span class="pl-s1">m1</span>)
<span class="pl-s1">session</span>.<span class="pl-en">flush</span>() <span class="pl-c"># Note: without this, the m1.data is None on sqlalchemy 1.0</span>
<span class="pl-s1">m1</span>.<span class="pl-s1">data</span>[<span class="pl-s">"test"</span>] <span class="pl-c1">=</span> <span class="pl-c1">1</span>
<span class="pl-s1">session</span>.<span class="pl-en">commit</span>()
<span class="pl-s1">m2</span> <span class="pl-c1">=</span> <span class="pl-v">MyDataClass</span>()
<span class="pl-s1">session</span>.<span class="pl-en">add</span>(<span class="pl-s1">m2</span>)
<span class="pl-s1">session</span>.<span class="pl-en">commit</span>()
<span class="pl-k">assert</span> <span class="pl-s1">m1</span>.<span class="pl-s1">data</span> <span class="pl-c1">==</span> {<span class="pl-s">'test'</span>: <span class="pl-c1">1</span>}
<span class="pl-k">assert</span> <span class="pl-s1">m2</span>.<span class="pl-s1">data</span> <span class="pl-c1">==</span> {}
<span class="pl-c"># With sqlalchemy 1.0 this results in</span>
<span class="pl-c"># m1.data == {}</span>
<span class="pl-c"># m2.data == {'test': 1}</span></pre></div>
<p dir="auto">As you can see the default={} seemed to work previously (also the m1.data['test'] = 1 worked without the session.flush() just above)</p>
<p dir="auto">With the latest version, the dict provided as default seems to be used and re-used resulting in a process-wide globally shared default dict which can lead to catastrophic leaks in a webapp for example. Also the object needs to be flushed before m1.data is populated.</p>
<p dir="auto">Maybe this usage was not expected or even discouraged, but I didn't find anything in the docs about this. The closest thing I identified is the change discussed here: <a href="http://docs.sqlalchemy.org/en/latest/changelog/migration_10.html#changes-to-attribute-events-and-other-operations-regarding-attributes-that-have-no-pre-existing-value" rel="nofollow">http://docs.sqlalchemy.org/en/latest/changelog/migration_10.html#changes-to-attribute-events-and-other-operations-regarding-attributes-that-have-no-pre-existing-value</a> and possibly the new default handling.</p>
<p dir="auto">What is the expected behavior as of 1.0 ? And how do I get the old behavior using the latest version ?</p> | 1 |
<h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 4.0.0-alpha, 4.0.0-beta</li>
<li>Operating System / Platform => Ubuntu 16.04</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">Since OpenCV 4.0.0-alpha, I cannot use anymore <code class="notranslate">Features2d.NOT_DRAW_SINGLE_POINTS</code> with Java binding.</p>
<p dir="auto">Is this intended since it looks like it is no more possible to call <code class="notranslate">drawMatches</code> with this flag parameter?</p>
<p dir="auto">In <a href="https://docs.opencv.org/3.4.3/javadoc/org/opencv/features2d/Features2d.html" rel="nofollow">3.4.3</a>, there is:<br>
<code class="notranslate">drawMatches(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, Mat outImg, Scalar matchColor, Scalar singlePointColor, MatOfByte matchesMask, int flags)</code></p>
<p dir="auto">But in <a href="https://docs.opencv.org/4.0.0-beta/javadoc/org/opencv/features2d/Features2d.html" rel="nofollow">4.0.0-beta</a> there is only:<br>
<code class="notranslate">drawMatches(Mat img1, MatOfKeyPoint keypoints1, Mat img2, MatOfKeyPoint keypoints2, MatOfDMatch matches1to2, Mat outImg, Scalar matchColor, Scalar singlePointColor, MatOfByte matchesMask)</code></p> | <h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 4.0.0</li>
<li>Operating System / Platform => nixpkgs on macOS 10.14 (Mojave)</li>
<li>Compiler => clang</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">I'm packaging OpenCV-4.0.0 in nixpkgs at <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="384082666" data-permission-text="Title is private" data-url="https://github.com/NixOS/nixpkgs/issues/51027" data-hovercard-type="pull_request" data-hovercard-url="/NixOS/nixpkgs/pull/51027/hovercard" href="https://github.com/NixOS/nixpkgs/pull/51027">NixOS/nixpkgs#51027</a>.</p>
<p dir="auto">The build succeeds on the <code class="notranslate">aarch64-linux</code> and <code class="notranslate">x86_64-linux</code> platforms. Unfortunately it fails on <code class="notranslate">x86_64-darwin</code> while linking the <code class="notranslate">videoio</code> module. See the full build log <a href="https://logs.nix.ci/?key=nixos/nixpkgs.51027&attempt_id=2f1211fc-1c0b-45fb-837f-f240cc720170" rel="nofollow">here</a>.</p>
<p dir="auto">So it looks like a linker issue:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ 62%] Linking CXX shared library ../../lib/libopencv_videoio.dylib
Undefined symbols for architecture x86_64:
"_OBJC_CLASS_$_NSData", referenced from:
objc-class-ref in cap_avfoundation_mac.mm.o
"_OBJC_CLASS_$_NSDate", referenced from:
objc-class-ref in cap_avfoundation_mac.mm.o
"_OBJC_CLASS_$_NSDictionary", referenced from:
objc-class-ref in cap_avfoundation_mac.mm.o
"_OBJC_CLASS_$_NSURL", referenced from:
objc-class-ref in cap_avfoundation_mac.mm.o
ld: symbol(s) not found for architecture x86_64
clang-5.0: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [modules/videoio/CMakeFiles/opencv_videoio.dir/build.make:193: lib/libopencv_videoio.4.0.0.dylib] Error 1"><pre class="notranslate"><code class="notranslate">[ 62%] Linking CXX shared library ../../lib/libopencv_videoio.dylib
Undefined symbols for architecture x86_64:
"_OBJC_CLASS_$_NSData", referenced from:
objc-class-ref in cap_avfoundation_mac.mm.o
"_OBJC_CLASS_$_NSDate", referenced from:
objc-class-ref in cap_avfoundation_mac.mm.o
"_OBJC_CLASS_$_NSDictionary", referenced from:
objc-class-ref in cap_avfoundation_mac.mm.o
"_OBJC_CLASS_$_NSURL", referenced from:
objc-class-ref in cap_avfoundation_mac.mm.o
ld: symbol(s) not found for architecture x86_64
clang-5.0: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [modules/videoio/CMakeFiles/opencv_videoio.dir/build.make:193: lib/libopencv_videoio.4.0.0.dylib] Error 1
</code></pre></div>
<p dir="auto">Apparently <a href="https://developer.apple.com/documentation/foundation/nsdata" rel="nofollow"><code class="notranslate">NSData</code> is part of the Foundation framework</a>. I don't see <code class="notranslate">-framework foundation</code> anywhere in the opencv sources so I tried adding it to the makefile of the failing videoio module <a href="https://github.com/opencv/opencv/blob/4.0.0/modules/videoio/CMakeLists.txt#L16">here</a>. Unfortunately that didn't help.</p>
<p dir="auto">Any idea what I'm doing wrong?</p>
<h5 dir="auto">Steps to reproduce</h5>
<p dir="auto">First <a href="https://nixos.org/nix/" rel="nofollow">install Nix</a> on OS X.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="git clone [email protected]:NixOS/nixpkgs.git
cd nixpkgs
# Fetch my PR that adds OpenCV-4.0.0
git fetch origin pull/51027/head:opencv-4.0.0
git checkout opencv-4.0.0
# Try building OpenCV-4.0.0
nix-build -A opencv4"><pre class="notranslate"><code class="notranslate">git clone [email protected]:NixOS/nixpkgs.git
cd nixpkgs
# Fetch my PR that adds OpenCV-4.0.0
git fetch origin pull/51027/head:opencv-4.0.0
git checkout opencv-4.0.0
# Try building OpenCV-4.0.0
nix-build -A opencv4
</code></pre></div> | 0 |
<blockquote>
<p dir="auto">Issue originally reported by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/marcoacierno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/marcoacierno">@marcoacierno</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="258246083" data-permission-text="Title is private" data-url="https://github.com/babel/babel-preset-env/issues/417" data-hovercard-type="issue" data-hovercard-url="/babel/babel-preset-env/issues/417/hovercard" href="https://github.com/babel/babel-preset-env/issues/417">babel/babel-preset-env#417</a></p>
</blockquote>
<p dir="auto">I'm having difficulties using the plugin transform-class-properties together with babel-preset-env, even if it's defined in the <code class="notranslate">.babelrc</code> the build still says 'Missing class properties transform.'. Searching online I found that you need to use transform-class-properties before the others (or after, can't recall now) but as far as I know I can't change the execution order in the babelrc.</p>
<p dir="auto">How can I solve this problem?</p>
<p dir="auto">The error</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="SyntaxError: /Users/marco/projects/TAOPP/Frontend/js/App.js: Missing class properties transform.
32 |
33 | class App extends React.Component {
> 34 | static childContextTypes = {
| ^"><pre class="notranslate"><code class="notranslate">SyntaxError: /Users/marco/projects/TAOPP/Frontend/js/App.js: Missing class properties transform.
32 |
33 | class App extends React.Component {
> 34 | static childContextTypes = {
| ^
</code></pre></div>
<p dir="auto">My .babelrc</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
'presets': [
['env', {
'targets': {
'browsers': ['last 2 versions'],
},
'modules': false,
'debug': true,
}],
'react',
],
'plugins': [
'transform-class-properties',
'transform-object-rest-spread',
],
'env': {
'server': {
'presets': [
['env', {
'modules': 'commonjs',
}],
]
},
'production': {
'presets': ['minify'],
},
},
}"><pre class="notranslate"><code class="notranslate">{
'presets': [
['env', {
'targets': {
'browsers': ['last 2 versions'],
},
'modules': false,
'debug': true,
}],
'react',
],
'plugins': [
'transform-class-properties',
'transform-object-rest-spread',
],
'env': {
'server': {
'presets': [
['env', {
'modules': 'commonjs',
}],
]
},
'production': {
'presets': ['minify'],
},
},
}
</code></pre></div>
<p dir="auto">(p.s. the documentation is not really clear about how <code class="notranslate">.babelrc</code> handles the env merge, so I'm not sure that my babelrc is correct)</p> | <p dir="auto">The code as follow running normally at last version(V7.8.6), but at Version7.8.7,throw error.</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="let obj = {one:{a:1}, other: {b:2}}
function fn(obj, key) {
for(var key in obj) {
fn(obj[key], key)
}
}
fn(obj, 'base');"><pre class="notranslate"><span class="pl-k">let</span> <span class="pl-s1">obj</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-c1">one</span>:<span class="pl-kos">{</span><span class="pl-c1">a</span>:<span class="pl-c1">1</span><span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-c1">other</span>: <span class="pl-kos">{</span><span class="pl-c1">b</span>:<span class="pl-c1">2</span><span class="pl-kos">}</span><span class="pl-kos">}</span>
<span class="pl-k">function</span> <span class="pl-en">fn</span><span class="pl-kos">(</span><span class="pl-s1">obj</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-k">for</span><span class="pl-kos">(</span><span class="pl-k">var</span> <span class="pl-s1">key</span> <span class="pl-k">in</span> <span class="pl-s1">obj</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">fn</span><span class="pl-kos">(</span><span class="pl-s1">obj</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">key</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-en">fn</span><span class="pl-kos">(</span><span class="pl-s1">obj</span><span class="pl-kos">,</span> <span class="pl-s">'base'</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">throw error:</p>
<p dir="auto">TypeError: Property left of ForInStatement expected node to be of a type ["VariableDeclaration","LVal"] but instead got null.</p>
<p dir="auto">my enviorment: <code class="notranslate">@babel/core:7.8.7, @babel/types:7.8.7,@babel/generator:7.8.7</code>.</p>
<p dir="auto">Now, I fix it as:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="let obj = {base:{a:1}, other: {b:2}}
function fn(obj, key) {
for(let key in obj) {
fn(obj[key], key)
}
}
fn(obj, 'base');"><pre class="notranslate"><span class="pl-k">let</span> <span class="pl-s1">obj</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-c1">base</span>:<span class="pl-kos">{</span><span class="pl-c1">a</span>:<span class="pl-c1">1</span><span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-c1">other</span>: <span class="pl-kos">{</span><span class="pl-c1">b</span>:<span class="pl-c1">2</span><span class="pl-kos">}</span><span class="pl-kos">}</span>
<span class="pl-k">function</span> <span class="pl-en">fn</span><span class="pl-kos">(</span><span class="pl-s1">obj</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-k">for</span><span class="pl-kos">(</span><span class="pl-k">let</span> <span class="pl-s1">key</span> <span class="pl-k">in</span> <span class="pl-s1">obj</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">fn</span><span class="pl-kos">(</span><span class="pl-s1">obj</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">key</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-en">fn</span><span class="pl-kos">(</span><span class="pl-s1">obj</span><span class="pl-kos">,</span> <span class="pl-s">'base'</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">or like this:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="let obj = {base:{a:1}, other: {b:2}}
function fn(obj, key) {
for(var key2 in obj) {
fn(obj[key2], key2)
}
}
fn(obj, 'base');"><pre class="notranslate"><span class="pl-k">let</span> <span class="pl-s1">obj</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-c1">base</span>:<span class="pl-kos">{</span><span class="pl-c1">a</span>:<span class="pl-c1">1</span><span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-c1">other</span>: <span class="pl-kos">{</span><span class="pl-c1">b</span>:<span class="pl-c1">2</span><span class="pl-kos">}</span><span class="pl-kos">}</span>
<span class="pl-k">function</span> <span class="pl-en">fn</span><span class="pl-kos">(</span><span class="pl-s1">obj</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-k">for</span><span class="pl-kos">(</span><span class="pl-k">var</span> <span class="pl-s1">key2</span> <span class="pl-k">in</span> <span class="pl-s1">obj</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">fn</span><span class="pl-kos">(</span><span class="pl-s1">obj</span><span class="pl-kos">[</span><span class="pl-s1">key2</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-s1">key2</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-en">fn</span><span class="pl-kos">(</span><span class="pl-s1">obj</span><span class="pl-kos">,</span> <span class="pl-s">'base'</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Is it a bug with V7.8.7 or just change rules?</p> | 0 |
<p dir="auto">npm WARN deprecated [email protected]: One of your dependencies needs to upgrade to fsevents v2: 1) Proper nodejs v10+ support 2) No more fetching binaries from AWS, smaller package size<br>
npm WARN deprecated [email protected]: core-js@<3.0 is no longer maintained and not recommended for usage due to the number of issues. Please, upgrade your dependencies to the actual version of core-js@3.<br>
[ ......] | extract:rxjs: sill extract rxjs@^6.5.2 extracted to /mnt/d/work/luoshu/node_modules/.staging/rxj<br>
[ ......] | extract:rxjs: sill extract rxjs@^6.5.2 extracted to /mnt/d/work/luoshu/node_modules/.staging/rxj<br>
npm ERR! cb() never called!</p>
<p dir="auto">npm ERR! This is an error with npm itself. Please report this error at:<br>
npm ERR! <a href="https://npm.community" rel="nofollow">https://npm.community</a></p>
<p dir="auto">npm ERR! A complete log of this run can be found in:<br>
npm ERR! /home/zhaohx/.npm/_logs/2019-12-11T10_27_58_941Z-debug.log</p> | <h3 dir="auto">Is there an existing issue for this?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the existing issues</li>
</ul>
<h3 dir="auto">This issue exists in the latest npm version</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I am using the latest npm</li>
</ul>
<h3 dir="auto">Current Behavior</h3>
<p dir="auto">I can observe moduleA in node_modules of moduleB</p>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">npm must not download a peer dependency if it is resolvable within NODE_PATH or any other method described in <a href="https://nodejs.org/api/modules.html#loading-from-the-global-folders" rel="nofollow">https://nodejs.org/api/modules.html#loading-from-the-global-folders</a></p>
<h3 dir="auto">Steps To Reproduce</h3>
<ol dir="auto">
<li>Install moduleA globally (<code class="notranslate">npm i -g moduleA</code>)</li>
<li>Install moduleB, where moduleA is set as a peer dependency locally: <code class="notranslate">NODE_PATH=<node_modules_root_where_moduleA_installled> npm i moduleB</code></li>
<li>Check node_modules folder of moduleB</li>
</ol>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>npm: 8.16.0</li>
<li>Node.js: v18.5.0</li>
<li>OS Name: macOS</li>
<li>System Model Name: Darwin SL-1204 21.5.0 Darwin Kernel Version 21.5.0: Tue Apr 26 21:08:22 PDT 2022; root:xnu-8020.121.3~4/RELEASE_X86_64 x86_64</li>
<li>npm config:</li>
</ul>
<div class="highlight highlight-source-ini notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="; copy and paste output from `npm config ls` here"><pre class="notranslate"><span class="pl-c"><span class="pl-c">;</span> copy and paste output from `npm config ls` here</span></pre></div> | 0 |
<h3 dir="auto">Preflight Checklist</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://www.github.com/electron/electron/issues">issue tracker</a> for a feature request that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Electron Version</h3>
<p dir="auto">12.x</p>
<h3 dir="auto">What operating system are you using?</h3>
<p dir="auto">Other (specify below)</p>
<h3 dir="auto">Operating System Version</h3>
<p dir="auto">both in win and mac</p>
<h3 dir="auto">What arch are you using?</h3>
<p dir="auto">x64</p>
<h3 dir="auto">Last Known Working Electron version</h3>
<p dir="auto">11.4.3</p>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">print options</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
silent: true,
deviceName: 'actual printer name',
landscape: true,
copies: 2,
pageRanges: [{from: 1, to: 1}],
pageSize: 'A5'
}"><pre class="notranslate"><code class="notranslate">{
silent: true,
deviceName: 'actual printer name',
landscape: true,
copies: 2,
pageRanges: [{from: 1, to: 1}],
pageSize: 'A5'
}
</code></pre></div>
<p dir="auto">all of the options would be honored when silent true</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">all of the options above not honored</p>
<h3 dir="auto">Testcase Gist URL</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Additional Information</h3>
<p dir="auto"><em>No response</em></p> | <h3 dir="auto">Preflight Checklist</h3>
<p dir="auto">I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.<br>
I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.<br>
I have searched the <a href="https://www.github.com/electron/electron/issues">issue tracker</a> for a feature request that matches the one I want to file, without success.</p>
<h3 dir="auto">Electron Version</h3>
<p dir="auto">12.0.2</p>
<h3 dir="auto">What operating system are you using?</h3>
<p dir="auto">Windows</p>
<h3 dir="auto">Operating System Version</h3>
<p dir="auto">Windows 10 Home Single Language 20H2 19042.867</p>
<h3 dir="auto">What arch are you using?</h3>
<p dir="auto">ia32</p>
<h3 dir="auto">Last Known Working Electron version</h3>
<p dir="auto">11.4.2</p>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">This script should print to all existing printers. The printers "Microsoft XPS Document Writer" and "Microsoft Print to PDF" should block the loop and ask for file name.</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">All prints will return success, but print will happen always only to print set as default in system.</p>
<h3 dir="auto">Testcase Gist URL</h3>
<p dir="auto"><a href="https://gist.github.com/fc8b4a9fbf986965c51e8f92b8ddb39f">https://gist.github.com/fc8b4a9fbf986965c51e8f92b8ddb39f</a></p>
<p dir="auto">Good way to run the test is to set printer "Microsoft Print To PDF" as default printer.</p> | 1 |
<p dir="auto">Some NumPy C functions do not have signatures available. I have not audited the full API but I know this is true at least for <code class="notranslate">arange</code>.</p>
<p dir="auto">It <a href="https://stackoverflow.com/a/25847066/907060" rel="nofollow">sounds like</a> you can add signatures for functions defined in C by adding a <code class="notranslate">__text_signature__</code> attribute. Or you can add a <code class="notranslate">__signature__</code> attribute to return a <a href="https://docs.python.org/3/library/inspect.html#inspect.Signature" rel="nofollow"><code class="notranslate">Signature</code> instance</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 numpy as np
import inspect
inspect.signature(np.arange)"><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">inspect</span>
<span class="pl-s1">inspect</span>.<span class="pl-en">signature</span>(<span class="pl-s1">np</span>.<span class="pl-s1">arange</span>)</pre></div>
<h3 dir="auto">Error message:</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-3-5338db87f2d9> in <module>
----> 1 signature(np.arange)
/usr/local/Caskroom/miniconda/base/envs/python-record-api/lib/python3.8/inspect.py in signature(obj, follow_wrapped)
3091 def signature(obj, *, follow_wrapped=True):
3092 """Get a signature object for the passed callable."""
-> 3093 return Signature.from_callable(obj, follow_wrapped=follow_wrapped)
3094
3095
/usr/local/Caskroom/miniconda/base/envs/python-record-api/lib/python3.8/inspect.py in from_callable(cls, obj, follow_wrapped)
2840 def from_callable(cls, obj, *, follow_wrapped=True):
2841 """Constructs Signature for the given callable object."""
-> 2842 return _signature_from_callable(obj, sigcls=cls,
2843 follow_wrapper_chains=follow_wrapped)
2844
/usr/local/Caskroom/miniconda/base/envs/python-record-api/lib/python3.8/inspect.py in _signature_from_callable(obj, follow_wrapper_chains, skip_bound_arg, sigcls)
2294
2295 if _signature_is_builtin(obj):
-> 2296 return _signature_from_builtin(sigcls, obj,
2297 skip_bound_arg=skip_bound_arg)
2298
/usr/local/Caskroom/miniconda/base/envs/python-record-api/lib/python3.8/inspect.py in _signature_from_builtin(cls, func, skip_bound_arg)
2105 s = getattr(func, "__text_signature__", None)
2106 if not s:
-> 2107 raise ValueError("no signature found for builtin {!r}".format(func))
2108
2109 return _signature_fromstr(cls, func, s, skip_bound_arg)
ValueError: no signature found for builtin <built-in function arange>"><pre class="notranslate"><code class="notranslate">---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-3-5338db87f2d9> in <module>
----> 1 signature(np.arange)
/usr/local/Caskroom/miniconda/base/envs/python-record-api/lib/python3.8/inspect.py in signature(obj, follow_wrapped)
3091 def signature(obj, *, follow_wrapped=True):
3092 """Get a signature object for the passed callable."""
-> 3093 return Signature.from_callable(obj, follow_wrapped=follow_wrapped)
3094
3095
/usr/local/Caskroom/miniconda/base/envs/python-record-api/lib/python3.8/inspect.py in from_callable(cls, obj, follow_wrapped)
2840 def from_callable(cls, obj, *, follow_wrapped=True):
2841 """Constructs Signature for the given callable object."""
-> 2842 return _signature_from_callable(obj, sigcls=cls,
2843 follow_wrapper_chains=follow_wrapped)
2844
/usr/local/Caskroom/miniconda/base/envs/python-record-api/lib/python3.8/inspect.py in _signature_from_callable(obj, follow_wrapper_chains, skip_bound_arg, sigcls)
2294
2295 if _signature_is_builtin(obj):
-> 2296 return _signature_from_builtin(sigcls, obj,
2297 skip_bound_arg=skip_bound_arg)
2298
/usr/local/Caskroom/miniconda/base/envs/python-record-api/lib/python3.8/inspect.py in _signature_from_builtin(cls, func, skip_bound_arg)
2105 s = getattr(func, "__text_signature__", None)
2106 if not s:
-> 2107 raise ValueError("no signature found for builtin {!r}".format(func))
2108
2109 return _signature_fromstr(cls, func, s, skip_bound_arg)
ValueError: no signature found for builtin <built-in function arange>
</code></pre></div>
<h3 dir="auto">Numpy/Python version information:</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> import sys, numpy; print(numpy.__version__, sys.version)
1.18.4 3.8.2 | packaged by conda-forge | (default, Apr 16 2020, 17:20:38)
[Clang 9.0.1 ]"><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-k">import</span> <span class="pl-s1">sys</span>, <span class="pl-s1">numpy</span>; <span class="pl-en">print</span>(<span class="pl-s1">numpy</span>.<span class="pl-s1">__version__</span>, <span class="pl-s1">sys</span>.<span class="pl-s1">version</span>)
<span class="pl-c1">1.18</span>.<span class="pl-c1">4</span> <span class="pl-c1">3.8</span>.<span class="pl-c1">2</span> <span class="pl-c1">|</span> <span class="pl-s1">packaged</span> <span class="pl-s1">by</span> <span class="pl-s1">conda</span><span class="pl-c1">-</span><span class="pl-s1">forge</span> <span class="pl-c1">|</span> (<span class="pl-s1">default</span>, <span class="pl-v">Apr</span> <span class="pl-c1">16</span> <span class="pl-c1">2020</span>, <span class="pl-c1">17</span>:<span class="pl-c1">20</span>:<span class="pl-c1">38</span>)
[<span class="pl-v">Clang</span> <span class="pl-c1">9.0</span><span class="pl-c1">.1</span> ]</pre></div> | <p dir="auto">Which involves including <code class="notranslate">--\n\n</code> in the docstrings. See <a href="http://stackoverflow.com/a/41245451/102441" rel="nofollow">http://stackoverflow.com/a/41245451/102441</a></p> | 1 |
<p dir="auto">I'm using the latest version of VS Code on OS X (Version 0.10.8 (0.10.8), <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/microsoft/vscode/commit/db71ac615ddf9f33b133ff2536f5d33a77d4774e/hovercard" href="https://github.com/microsoft/vscode/commit/db71ac615ddf9f33b133ff2536f5d33a77d4774e"><tt>db71ac6</tt></a>).</p>
<p dir="auto">Replication steps:<br>
Paste the following into a new whatever.ts file.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="function foo() { }
function bar() { }
function baz() { }
export {
foo,
bar,
baz
};"><pre class="notranslate"><code class="notranslate">function foo() { }
function bar() { }
function baz() { }
export {
foo,
bar,
baz
};
</code></pre></div>
<p dir="auto">Now highlight the properties of the export (the 3 lines saying foo, bar, baz) and press tab to indent them and it outputs the following and can't be undone using the undo command:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="function foo() { }
function bar() { }
function baz() { }
export {
az
};"><pre class="notranslate"><code class="notranslate">function foo() { }
function bar() { }
function baz() { }
export {
az
};
</code></pre></div>
<p dir="auto">The indenting seems to happen but where did my exports go?! <g-emoji class="g-emoji" alias="open_mouth" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f62e.png">😮</g-emoji></p> | <p dir="auto">I wanted to indent multiple lines at once but it failed. This is how it looks like when I select some lines and press <kbd>Tab</kbd>. Sometimes it works though, like when creating an untitled file in split screen.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1913805/12911690/8a6cd162-cf14-11e5-8bba-8ff1210c10f5.gif"><img src="https://cloud.githubusercontent.com/assets/1913805/12911690/8a6cd162-cf14-11e5-8bba-8ff1210c10f5.gif" alt="indent" data-animated-image="" style="max-width: 100%;"></a></p>
<p dir="auto">Quite important bug <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/egamma/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/egamma">@egamma</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jrieken/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jrieken">@jrieken</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bpasero/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bpasero">@bpasero</a></p> | 1 |
<h2 dir="auto"><g-emoji class="g-emoji" alias="memo" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4dd.png">📝</g-emoji> Provide a description of the new feature</h2>
<p dir="auto">It would be nice to have a feature similar to Linux Xcompose or wincompose.</p>
<h2 dir="auto"><em>What is the expected behavior of the proposed feature? What is the scenario this would be used?</em></h2>
<p dir="auto">The expected behavior would be to have similar capabilities as we have with <a href="https://github.com/samhocevar/wincompose">https://github.com/samhocevar/wincompose</a><br>
It's a great tool that I think should be included with powertoys.</p>
<hr>
<p dir="auto">If you'd like to see this feature implemented, add a <g-emoji class="g-emoji" alias="+1" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f44d.png">👍</g-emoji> reaction to this post.</p> | <h2 dir="auto"><g-emoji class="g-emoji" alias="memo" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4dd.png">📝</g-emoji> Provide a description of the new feature</h2>
<p dir="auto">What if I write asap and automatically the word is replaced by "as soon as possible" ?<br>
There are lots of programs that can do it but most of them are not free and they have lots of useless features and they are resources-hungry.<br>
It's not implemented natively on windows but this is a very very very important feature to save time and correct typing errors.</p>
<p dir="auto">I got this idea from Text Replacement in Ios, which is basilar but efficient.</p>
<p dir="auto">If you'd like to see this feature implemented, add a 👍 reaction to this post.</p> | 0 |
<p dir="auto">when using the "yum" module to install a package in RHEL6, I just get this error:</p>
<p dir="auto">fatal: [jofo-mgmt1] => failed to parse: This system is not registered with RHN.</p>
<p dir="auto">RHN support will be disabled.</p>
<p dir="auto">{"changed": true}</p>
<p dir="auto">These lines are always printed by yum on the machine, unless the RHN plugin is disabled with "--disableplugin=rhnplugin", or, I guess, by registering the machine with RHN. However, the latter would probably be impractical since it's actually a disposable VM in a opennebula cluster.</p> | <p dir="auto">From <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Vladimir-csp/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Vladimir-csp">@Vladimir-csp</a> on 2016-06-12T09:45:24Z</p>
<h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Feature Idea</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">copy<br>
template</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.1.0.0
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides"><pre class="notranslate"><code class="notranslate">ansible 2.1.0.0
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">N/A</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">As was suggested in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="31218546" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible/issues/6929" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible/issues/6929/hovercard" href="https://github.com/ansible/ansible/issues/6929">#6929</a>, I am opening new issue on this matter<br>
Please add 'state' parameter for template and copy modules, so items could be removed with the same task by using condition or variable override.</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate">
</code></pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">Something like this should be possible</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- name: govern foo template
template: src=foo dest=/etc/foo state="{% if enable_foo == true %}present{% else %}absent{% endif%}""><pre class="notranslate"><code class="notranslate">- name: govern foo template
template: src=foo dest=/etc/foo state="{% if enable_foo == true %}present{% else %}absent{% endif%}"
</code></pre></div>
<p dir="auto">On second thought, file, copy, and template modules could be merged together into file module to make some cool things like:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- name: linked template
file: template=foo.conf state=link src=../bar/bar.conf dest=/etc/foo/foo.conf
# makes link /etc/foo/foo.conf > /etc/bar/bar.conf,
# templates /etc/foo/foo.conf from foo.conf effectively writing to /etc/bar/bar.conf."><pre class="notranslate"><code class="notranslate">- name: linked template
file: template=foo.conf state=link src=../bar/bar.conf dest=/etc/foo/foo.conf
# makes link /etc/foo/foo.conf > /etc/bar/bar.conf,
# templates /etc/foo/foo.conf from foo.conf effectively writing to /etc/bar/bar.conf.
</code></pre></div>
<h5 dir="auto">ACTUAL RESULTS</h5>
<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">Copied from original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="159818844" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible-modules-core/issues/3934" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible-modules-core/issues/3934/hovercard" href="https://github.com/ansible/ansible-modules-core/issues/3934">ansible/ansible-modules-core#3934</a></p> | 0 |
<table role="table">
<thead>
<tr>
<th align="center">Drawer Opened</th>
<th align="center">Drawer Closed</th>
</tr>
</thead>
<tbody>
<tr>
<td align="center"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/23476626/39396451-556da036-4ae6-11e8-9b89-ad63b6b1e2a0.png"><img src="https://user-images.githubusercontent.com/23476626/39396451-556da036-4ae6-11e8-9b89-ad63b6b1e2a0.png" alt="screenshot_20180428-131121" style="max-width: 100%;"></a></td>
<td align="center"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/23476626/39396455-5da5965a-4ae6-11e8-9e3d-2bc7e6f8e6ca.png"><img src="https://user-images.githubusercontent.com/23476626/39396455-5da5965a-4ae6-11e8-9e3d-2bc7e6f8e6ca.png" alt="screenshot_20180428-131113" style="max-width: 100%;"></a></td>
</tr>
</tbody>
</table> | <p dir="auto">When I use flutter plugin and open my webpage always white screen, But that doesn't happen with setting Android webView <code class="notranslate">webSettings.setDomStorageEnabled(true)</code> to load this webpage. I expect to webview_flutter plugin support the <code class="notranslate">webSettings.setDomStorageEnabled(true)</code> and other WebSettings settings , The following is the log information:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="I/flutter (19871): ip = http://192.168.90.84/dist/index.html
E/BufferQueueProducer(19871): [] Can not get hwsched service
D/HwCust (19871): Create obj success use class android.app.HwCustHwWallpaperManagerImpl
I/WebViewFactory(19871): Loading com.google.android.webview version 66.0.3359.126 (code 335912650)
D/HwFLClassLoader(19871): USE_FEATURE_LIST had not init!
I/cr_LibraryLoader(19871): Time to load native libraries: 2 ms (timestamps 2442-2444)
I/chromium(19871): [INFO:library_loader_hooks.cc(36)] Chromium logging enabled: level = 0, default verbosity = 0
I/cr_LibraryLoader(19871): Expected native library version number "66.0.3359.126", actual native library version number "66.0.3359.126"
W/cr_ChildProcLH(19871): Create a new ChildConnectionAllocator with package name = com.google.android.webview, sandboxed = true
I/cr_BrowserStartup(19871): Initializing chromium process, singleProcess=false
I/cr_base (19871): Android Locale: zh_CN_#Hans requires .pak files: []
I/HwCust (19871): Constructor found for class android.net.HwCustConnectivityManagerImpl
D/HwCust (19871): Create obj success use class android.net.HwCustConnectivityManagerImpl
D/HwCust (19871): Create obj success use class android.net.HwCustConnectivityManagerImpl
I/zygote64(19871): Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.WebViewContentsClientAdapter$3>: java.lang.NoClassDefFoundError: Failed resolution of: Landroid/webkit/SafeBrowsingResponse;
I/zygote64(19871): at void com.android.webview.chromium.WebViewChromium.init(java.util.Map, boolean) (WebViewChromium.java:48)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int, java.util.Map, boolean) (WebView.java:651)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int) (WebView.java:581)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int) (WebView.java:564)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet) (WebView.java:551)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context) (WebView.java:541)
I/zygote64(19871): at void io.flutter.plugins.webviewflutter.FlutterWebView.<init>(android.content.Context, io.flutter.plugin.common.BinaryMessenger, int, java.util.Map) (FlutterWebView.java:20)
I/zygote64(19871): at io.flutter.plugin.platform.PlatformView io.flutter.plugins.webviewflutter.WebViewFactory.create(android.content.Context, int, java.lang.Object) (WebViewFactory.java:22)
I/zygote64(19871): at void io.flutter.plugin.platform.SingleViewPresentation.onCreate(android.os.Bundle) (SingleViewPresentation.java:130)
I/zygote64(19871): at void android.app.Dialog.dispatchOnCreate(android.os.Bundle) (Dialog.java:528)
I/zygote64(19871): at void android.app.Dialog.show() (Dialog.java:389)
I/zygote64(19871): at void android.app.Presentation.show() (Presentation.java:249)
I/zygote64(19871): at void io.flutter.plugin.platform.VirtualDisplayController.<init>(android.content.Context, android.hardware.display.VirtualDisplay, io.flutter.plugin.platform.PlatformViewFactory, android.view.Surface, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, java.lang.Object) (VirtualDisplayController.java:75)
I/zygote64(19871): at io.flutter.plugin.platform.VirtualDisplayController io.flutter.plugin.platform.VirtualDisplayController.create(android.content.Context, io.flutter.plugin.platform.PlatformViewFactory, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, int, int, java.lang.Object) (VirtualDisplayController.java:47)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.createPlatformView(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:179)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.onMethodCall(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:118)
I/zygote64(19871): at void io.flutter.plugin.common.MethodChannel$IncomingMethodCallHandler.onMessage(java.nio.ByteBuffer, io.flutter.plugin.common.BinaryMessenger$BinaryReply) (MethodChannel.java:200)
I/zygote64(19871): at void io.flutter.view.FlutterNativeView.handlePlatformMessage(java.lang.String, byte[], int) (FlutterNativeView.java:163)
I/zygote64(19871): at void android.os.MessageQueue.nativePollOnce(long, int) (MessageQueue.java:-2)
I/zygote64(19871): at android.os.Message android.os.MessageQueue.next() (MessageQueue.java:379)
I/zygote64(19871): at void android.os.Looper.loop() (Looper.java:144)
I/zygote64(19871): at void android.app.ActivityThread.main(java.lang.String[]) (ActivityThread.java:7425)
I/zygote64(19871): at java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[]) (Method.java:-2)
I/zygote64(19871): at void com.android.internal.os.Zygote$MethodAndArgsCaller.run() (Zygote.java:245)
I/zygote64(19871): at void com.android.internal.os.ZygoteInit.main(java.lang.String[]) (ZygoteInit.java:921)
I/zygote64(19871): Caused by: java.lang.ClassNotFoundException: Didn't find class "android.webkit.SafeBrowsingResponse" on path: DexPathList[[zip file "/system/app/WebViewGoogle/WebViewGoogle.apk"],nativeLibraryDirectories=[/system/app/WebViewGoogle/lib/arm64, /system/app/WebViewGoogle/WebViewGoogle.apk!/lib/arm64-v8a, /system/lib64, /vendor/lib64, /product/lib64, /system/lib64, /vendor/lib64, /product/lib64]]
I/zygote64(19871): at java.lang.Class dalvik.system.BaseDexClassLoader.findClass(java.lang.String) (BaseDexClassLoader.java:93)
I/zygote64(19871): at java.lang.Class java.lang.ClassLoader.loadClass(java.lang.String, boolean) (ClassLoader.java:379)
I/zygote64(19871): at java.lang.Class java.lang.ClassLoader.loadClass(java.lang.String) (ClassLoader.java:312)
I/zygote64(19871): at void com.android.webview.chromium.WebViewChromium.init(java.util.Map, boolean) (WebViewChromium.java:48)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int, java.util.Map, boolean) (WebView.java:651)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int) (WebView.java:581)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int) (WebView.java:564)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet) (WebView.java:551)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context) (WebView.java:541)
I/zygote64(19871): at void io.flutter.plugins.webviewflutter.FlutterWebView.<init>(android.content.Context, io.flutter.plugin.common.BinaryMessenger, int, java.util.Map) (FlutterWebView.java:20)
I/zygote64(19871): at io.flutter.plugin.platform.PlatformView io.flutter.plugins.webviewflutter.WebViewFactory.create(android.content.Context, int, java.lang.Object) (WebViewFactory.java:22)
I/zygote64(19871): at void io.flutter.plugin.platform.SingleViewPresentation.onCreate(android.os.Bundle) (SingleViewPresentation.java:130)
I/zygote64(19871): at void android.app.Dialog.dispatchOnCreate(android.os.Bundle) (Dialog.java:528)
I/zygote64(19871): at void android.app.Dialog.show() (Dialog.java:389)
I/zygote64(19871): at void android.app.Presentation.show() (Presentation.java:249)
I/zygote64(19871): at void io.flutter.plugin.platform.VirtualDisplayController.<init>(android.content.Context, android.hardware.display.VirtualDisplay, io.flutter.plugin.platform.PlatformViewFactory, android.view.Surface, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, java.lang.Object) (VirtualDisplayController.java:75)
I/zygote64(19871): at io.flutter.plugin.platform.VirtualDisplayController io.flutter.plugin.platform.VirtualDisplayController.create(android.content.Context, io.flutter.plugin.platform.PlatformViewFactory, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, int, int, java.lang.Object) (VirtualDisplayController.java:47)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.createPlatformView(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:179)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.onMethodCall(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:118)
I/zygote64(19871): at void io.flutter.plugin.common.MethodChannel$IncomingMethodCallHandler.onMessage(java.nio.ByteBuffer, io.flutter.plugin.common.BinaryMessenger$BinaryReply) (MethodChannel.java:200)
I/zygote64(19871): at void io.flutter.view.FlutterNativeView.handlePlatformMessage(java.lang.String, byte[], int) (FlutterNativeView.java:163)
I/zygote64(19871): at void android.os.MessageQueue.nativePollOnce(long, int) (MessageQueue.java:-2)
I/zygote64(19871): at android.os.Message android.os.MessageQueue.next() (MessageQueue.java:379)
I/zygote64(19871): at void android.os.Looper.loop() (Looper.java:144)
I/zygote64(19871): at void android.app.ActivityThread.main(java.lang.String[]) (ActivityThread.java:7425)
I/zygote64(19871): at java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[]) (Method.java:-2)
I/zygote64(19871): at void com.android.internal.os.Zygote$MethodAndArgsCaller.run() (Zygote.java:245)
I/zygote64(19871): at void com.android.internal.os.ZygoteInit.main(java.lang.String[]) (ZygoteInit.java:921)
I/zygote64(19871):
I/zygote64(19871): Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.WebViewContentsClientAdapter$3>: java.lang.NoClassDefFoundError: Failed resolution of: Landroid/webkit/SafeBrowsingResponse;
I/zygote64(19871): at void com.android.webview.chromium.WebViewChromium.init(java.util.Map, boolean) (WebViewChromium.java:48)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int, java.util.Map, boolean) (WebView.java:651)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int) (WebView.java:581)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int) (WebView.java:564)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet) (WebView.java:551)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context) (WebView.java:541)
I/zygote64(19871): at void io.flutter.plugins.webviewflutter.FlutterWebView.<init>(android.content.Context, io.flutter.plugin.common.BinaryMessenger, int, java.util.Map) (FlutterWebView.java:20)
I/zygote64(19871): at io.flutter.plugin.platform.PlatformView io.flutter.plugins.webviewflutter.WebViewFactory.create(android.content.Context, int, java.lang.Object) (WebViewFactory.java:22)
I/zygote64(19871): at void io.flutter.plugin.platform.SingleViewPresentation.onCreate(android.os.Bundle) (SingleViewPresentation.java:130)
I/zygote64(19871): at void android.app.Dialog.dispatchOnCreate(android.os.Bundle) (Dialog.java:528)
I/zygote64(19871): at void android.app.Dialog.show() (Dialog.java:389)
I/zygote64(19871): at void android.app.Presentation.show() (Presentation.java:249)
I/zygote64(19871): at void io.flutter.plugin.platform.VirtualDisplayController.<init>(android.content.Context, android.hardware.display.VirtualDisplay, io.flutter.plugin.platform.PlatformViewFactory, android.view.Surface, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, java.lang.Object) (VirtualDisplayController.java:75)
I/zygote64(19871): at io.flutter.plugin.platform.VirtualDisplayController io.flutter.plugin.platform.VirtualDisplayController.create(android.content.Context, io.flutter.plugin.platform.PlatformViewFactory, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, int, int, java.lang.Object) (VirtualDisplayController.java:47)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.createPlatformView(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:179)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.onMethodCall(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:118)
I/zygote64(19871): at void io.flutter.plugin.common.MethodChannel$IncomingMethodCallHandler.onMessage(java.nio.ByteBuffer, io.flutter.plugin.common.BinaryMessenger$BinaryReply) (MethodChannel.java:200)
I/zygote64(19871): at void io.flutter.view.FlutterNativeView.handlePlatformMessage(java.lang.String, byte[], int) (FlutterNativeView.java:163)
I/zygote64(19871): at void android.os.MessageQueue.nativePollOnce(long, int) (MessageQueue.java:-2)
I/zygote64(19871): at android.os.Message android.os.MessageQueue.next() (MessageQueue.java:379)
I/zygote64(19871): at void android.os.Looper.loop() (Looper.java:144)
I/zygote64(19871): at void android.app.ActivityThread.main(java.lang.String[]) (ActivityThread.java:7425)
I/zygote64(19871): at java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[]) (Method.java:-2)
I/zygote64(19871): at void com.android.internal.os.Zygote$MethodAndArgsCaller.run() (Zygote.java:245)
I/zygote64(19871): at void com.android.internal.os.ZygoteInit.main(java.lang.String[]) (ZygoteInit.java:921)
I/zygote64(19871): Caused by: java.lang.ClassNotFoundException: Didn't find class "android.webkit.SafeBrowsingResponse" on path: DexPathList[[zip file "/system/app/WebViewGoogle/WebViewGoogle.apk"],nativeLibraryDirectories=[/system/app/WebViewGoogle/lib/arm64, /system/app/WebViewGoogle/WebViewGoogle.apk!/lib/arm64-v8a, /system/lib64, /vendor/lib64, /product/lib64, /system/lib64, /vendor/lib64, /product/lib64]]
I/zygote64(19871): at java.lang.Class dalvik.system.BaseDexClassLoader.findClass(java.lang.String) (BaseDexClassLoader.java:93)
I/zygote64(19871): at java.lang.Class java.lang.ClassLoader.loadClass(java.lang.String, boolean) (ClassLoader.java:379)
I/zygote64(19871): at java.lang.Class java.lang.ClassLoader.loadClass(java.lang.String) (ClassLoader.java:312)
I/zygote64(19871): at void com.android.webview.chromium.WebViewChromium.init(java.util.Map, boolean) (WebViewChromium.java:48)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int, java.util.Map, boolean) (WebView.java:651)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int) (WebView.java:581)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int) (WebView.java:564)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet) (WebView.java:551)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context) (WebView.java:541)
I/zygote64(19871): at void io.flutter.plugins.webviewflutter.FlutterWebView.<init>(android.content.Context, io.flutter.plugin.common.BinaryMessenger, int, java.util.Map) (FlutterWebView.java:20)
I/zygote64(19871): at io.flutter.plugin.platform.PlatformView io.flutter.plugins.webviewflutter.WebViewFactory.create(android.content.Context, int, java.lang.Object) (WebViewFactory.java:22)
I/zygote64(19871): at void io.flutter.plugin.platform.SingleViewPresentation.onCreate(android.os.Bundle) (SingleViewPresentation.java:130)
I/zygote64(19871): at void android.app.Dialog.dispatchOnCreate(android.os.Bundle) (Dialog.java:528)
I/zygote64(19871): at void android.app.Dialog.show() (Dialog.java:389)
I/zygote64(19871): at void android.app.Presentation.show() (Presentation.java:249)
I/zygote64(19871): at void io.flutter.plugin.platform.VirtualDisplayController.<init>(android.content.Context, android.hardware.display.VirtualDisplay, io.flutter.plugin.platform.PlatformViewFactory, android.view.Surface, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, java.lang.Object) (VirtualDisplayController.java:75)
I/zygote64(19871): at io.flutter.plugin.platform.VirtualDisplayController io.flutter.plugin.platform.VirtualDisplayController.create(android.content.Context, io.flutter.plugin.platform.PlatformViewFactory, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, int, int, java.lang.Object) (VirtualDisplayController.java:47)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.createPlatformView(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:179)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.onMethodCall(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:118)
I/zygote64(19871): at void io.flutter.plugin.common.MethodChannel$IncomingMethodCallHandler.onMessage(java.nio.ByteBuffer, io.flutter.plugin.common.BinaryMessenger$BinaryReply) (MethodChannel.java:200)
I/zygote64(19871): at void io.flutter.view.FlutterNativeView.handlePlatformMessage(java.lang.String, byte[], int) (FlutterNativeView.java:163)
I/zygote64(19871): at void android.os.MessageQueue.nativePollOnce(long, int) (MessageQueue.java:-2)
I/zygote64(19871): at android.os.Message android.os.MessageQueue.next() (MessageQueue.java:379)
I/zygote64(19871): at void android.os.Looper.loop() (Looper.java:144)
I/zygote64(19871): at void android.app.ActivityThread.main(java.lang.String[]) (ActivityThread.java:7425)
I/zygote64(19871): at java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[]) (Method.java:-2)
I/zygote64(19871): at void com.android.internal.os.Zygote$MethodAndArgsCaller.run() (Zygote.java:245)
I/zygote64(19871): at void com.android.internal.os.ZygoteInit.main(java.lang.String[]) (ZygoteInit.java:921)
I/zygote64(19871):
I/zygote64(19871): Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.WebViewContentsClientAdapter$3>: java.lang.NoClassDefFoundError: Failed resolution of: Landroid/webkit/SafeBrowsingResponse;
I/zygote64(19871): at void com.android.webview.chromium.WebViewChromium.init(java.util.Map, boolean) (WebViewChromium.java:48)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int, java.util.Map, boolean) (WebView.java:651)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int) (WebView.java:581)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int) (WebView.java:564)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet) (WebView.java:551)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context) (WebView.java:541)
I/zygote64(19871): at void io.flutter.plugins.webviewflutter.FlutterWebView.<init>(android.content.Context, io.flutter.plugin.common.BinaryMessenger, int, java.util.Map) (FlutterWebView.java:20)
I/zygote64(19871): at io.flutter.plugin.platform.PlatformView io.flutter.plugins.webviewflutter.WebViewFactory.create(android.content.Context, int, java.lang.Object) (WebViewFactory.java:22)
I/zygote64(19871): at void io.flutter.plugin.platform.SingleViewPresentation.onCreate(android.os.Bundle) (SingleViewPresentation.java:130)
I/zygote64(19871): at void android.app.Dialog.dispatchOnCreate(android.os.Bundle) (Dialog.java:528)
I/zygote64(19871): at void android.app.Dialog.show() (Dialog.java:389)
I/zygote64(19871): at void android.app.Presentation.show() (Presentation.java:249)
I/zygote64(19871): at void io.flutter.plugin.platform.VirtualDisplayController.<init>(android.content.Context, android.hardware.display.VirtualDisplay, io.flutter.plugin.platform.PlatformViewFactory, android.view.Surface, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, java.lang.Object) (VirtualDisplayController.java:75)
I/zygote64(19871): at io.flutter.plugin.platform.VirtualDisplayController io.flutter.plugin.platform.VirtualDisplayController.create(android.content.Context, io.flutter.plugin.platform.PlatformViewFactory, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, int, int, java.lang.Object) (VirtualDisplayController.java:47)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.createPlatformView(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:179)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.onMethodCall(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:118)
I/zygote64(19871): at void io.flutter.plugin.common.MethodChannel$IncomingMethodCallHandler.onMessage(java.nio.ByteBuffer, io.flutter.plugin.common.BinaryMessenger$BinaryReply) (MethodChannel.java:200)
I/zygote64(19871): at void io.flutter.view.FlutterNativeView.handlePlatformMessage(java.lang.String, byte[], int) (FlutterNativeView.java:163)
I/zygote64(19871): at void android.os.MessageQueue.nativePollOnce(long, int) (MessageQueue.java:-2)
I/zygote64(19871): at android.os.Message android.os.MessageQueue.next() (MessageQueue.java:379)
I/zygote64(19871): at void android.os.Looper.loop() (Looper.java:144)
I/zygote64(19871): at void android.app.ActivityThread.main(java.lang.String[]) (ActivityThread.java:7425)
I/zygote64(19871): at java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[]) (Method.java:-2)
I/zygote64(19871): at void com.android.internal.os.Zygote$MethodAndArgsCaller.run() (Zygote.java:245)
I/zygote64(19871): at void com.android.internal.os.ZygoteInit.main(java.lang.String[]) (ZygoteInit.java:921)
I/zygote64(19871): Caused by: java.lang.ClassNotFoundException: Didn't find class "android.webkit.SafeBrowsingResponse" on path: DexPathList[[zip file "/system/app/WebViewGoogle/WebViewGoogle.apk"],nativeLibraryDirectories=[/system/app/WebViewGoogle/lib/arm64, /system/app/WebViewGoogle/WebViewGoogle.apk!/lib/arm64-v8a, /system/lib64, /vendor/lib64, /product/lib64, /system/lib64, /vendor/lib64, /product/lib64]]
I/zygote64(19871): at java.lang.Class dalvik.system.BaseDexClassLoader.findClass(java.lang.String) (BaseDexClassLoader.java:93)
I/zygote64(19871): at java.lang.Class java.lang.ClassLoader.loadClass(java.lang.String, boolean) (ClassLoader.java:379)
I/zygote64(19871): at java.lang.Class java.lang.ClassLoader.loadClass(java.lang.String) (ClassLoader.java:312)
I/zygote64(19871): at void com.android.webview.chromium.WebViewChromium.init(java.util.Map, boolean) (WebViewChromium.java:48)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int, java.util.Map, boolean) (WebView.java:651)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int) (WebView.java:581)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int) (WebView.java:564)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet) (WebView.java:551)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context) (WebView.java:541)
I/zygote64(19871): at void io.flutter.plugins.webviewflutter.FlutterWebView.<init>(android.content.Context, io.flutter.plugin.common.BinaryMessenger, int, java.util.Map) (FlutterWebView.java:20)
I/zygote64(19871): at io.flutter.plugin.platform.PlatformView io.flutter.plugins.webviewflutter.WebViewFactory.create(android.content.Context, int, java.lang.Object) (WebViewFactory.java:22)
I/zygote64(19871): at void io.flutter.plugin.platform.SingleViewPresentation.onCreate(android.os.Bundle) (SingleViewPresentation.java:130)
I/zygote64(19871): at void android.app.Dialog.dispatchOnCreate(android.os.Bundle) (Dialog.java:528)
I/zygote64(19871): at void android.app.Dialog.show() (Dialog.java:389)
I/zygote64(19871): at void android.app.Presentation.show() (Presentation.java:249)
I/zygote64(19871): at void io.flutter.plugin.platform.VirtualDisplayController.<init>(android.content.Context, android.hardware.display.VirtualDisplay, io.flutter.plugin.platform.PlatformViewFactory, android.view.Surface, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, java.lang.Object) (VirtualDisplayController.java:75)
I/zygote64(19871): at io.flutter.plugin.platform.VirtualDisplayController io.flutter.plugin.platform.VirtualDisplayController.create(android.content.Context, io.flutter.plugin.platform.PlatformViewFactory, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, int, int, java.lang.Object) (VirtualDisplayController.java:47)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.createPlatformView(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:179)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.onMethodCall(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:118)
I/zygote64(19871): at void io.flutter.plugin.common.MethodChannel$IncomingMethodCallHandler.onMessage(java.nio.ByteBuffer, io.flutter.plugin.common.BinaryMessenger$BinaryReply) (MethodChannel.java:200)
I/zygote64(19871): at void io.flutter.view.FlutterNativeView.handlePlatformMessage(java.lang.String, byte[], int) (FlutterNativeView.java:163)
I/zygote64(19871): at void android.os.MessageQueue.nativePollOnce(long, int) (MessageQueue.java:-2)
I/zygote64(19871): at android.os.Message android.os.MessageQueue.next() (MessageQueue.java:379)
I/zygote64(19871): at void android.os.Looper.loop() (Looper.java:144)
I/zygote64(19871): at void android.app.ActivityThread.main(java.lang.String[]) (ActivityThread.java:7425)
I/zygote64(19871): at java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[]) (Method.java:-2)
I/zygote64(19871): at void com.android.internal.os.Zygote$MethodAndArgsCaller.run() (Zygote.java:245)
I/zygote64(19871): at void com.android.internal.os.ZygoteInit.main(java.lang.String[]) (ZygoteInit.java:921)
I/zygote64(19871):
W/cr_media(19871): Requires BLUETOOTH permission
D/HwRTBlurUtils(19871): check blur style for HwPhoneWindow, themeResId : 0x0103023e, context : android.app.Presentation$3@84fb512, Nhwext : 0, get Blur : disable with , null
D/HwRTBlurUtils(19871): check blur style for HwPhoneWindow, themeResId : 0x0103023e, context : android.app.Presentation$3@84fb512, Nhwext : 0, get Blur : disable with , null
D/OpenGLRenderer(19871): HWUI Binary is enabled
D/OpenGLRenderer(19871): HWUI Binary is enabled
D/NetworkSecurityConfig(19871): No Network Security Config specified, using platform default
W/libEGL (19871): load: so=libEGL_vr.so
W/libEGL (19871): dlopen failed: library "libEGL_vr.so" not found
W/libEGL (19871): load: so=libEGL_vr.so
W/libEGL (19871): dlopen failed: library "libEGL_vr.so" not found
I/PressGestureDetector(19871): HiTouch restricted: Sub windows restricted.
W/Settings(19871): mValues not put! needsGenerationTracker: true currentGeneration: -1 name: accessibility_captioning_enabled value: null
W/VideoCapabilities(19871): Unrecognized profile/level 1/32 for video/mp4v-es
W/VideoCapabilities(19871): Unrecognized profile/level 32768/2 for video/mp4v-es
W/VideoCapabilities(19871): Unrecognized profile/level 32768/64 for video/mp4v-es
W/VideoCapabilities(19871): Unsupported mime video/mpeg
W/VideoCapabilities(19871): Unrecognized profile/level 0/0 for video/mpeg2
W/VideoCapabilities(19871): Unrecognized profile/level 0/2 for video/mpeg2
W/VideoCapabilities(19871): Unrecognized profile/level 0/3 for video/mpeg2
I/VideoCapabilities(19871): Unsupported profile 5 for video/mpeg2
I/chatty (19871): uid=10485(u0_a485) Chrome_InProcGp identical 2 lines
I/VideoCapabilities(19871): Unsupported profile 5 for video/mpeg2
D/mali_winsys(19871): EGLint new_window_surface(egl_winsys_display *, void *, EGLSurface, EGLConfig, egl_winsys_surface **, egl_color_buffer_format *, EGLBoolean) returns 0x3000
W/VideoCapabilities(19871): Unsupported mime video/vc1
W/VideoCapabilities(19871): Unsupported mime video/x-pn-realvideo
W/VideoCapabilities(19871): Unsupported mime video/clic
I/zygote64(19871): Do partial code cache collection, code=28KB, data=29KB
I/zygote64(19871): After code cache collection, code=28KB, data=29KB
I/zygote64(19871): Increasing code cache capacity to 128KB
W/cr_CrashFileManager(19871): /data/user/0/com.starcor.flutterbigdata/cache/WebView/Crash Reports does not exist or is not a directory
I/VideoCapabilities(19871): Unsupported profile 4 for video/mp4v-es
W/cr_MediaCodecUtil(19871): HW encoder for video/avc is not available on this device.
W/libEGL (19871): load: so=libEGL_vr.so
W/libEGL (19871): dlopen failed: library "libEGL_vr.so" not found
W/libEGL (19871): load: so=libEGL_vr.so
W/libEGL (19871): dlopen failed: library "libEGL_vr.so" not found
I/zygote64(19871): Do partial code cache collection, code=52KB, data=51KB
I/zygote64(19871): After code cache collection, code=52KB, data=51KB
I/zygote64(19871): Increasing code cache capacity to 256KB
I/zygote64(19871): Compiler allocated 6MB to compile void android.view.ViewRootImpl.performTraversals()
W/libEGL (19871): load: so=libEGL_vr.so
W/libEGL (19871): dlopen failed: library "libEGL_vr.so" not found
W/libEGL (19871): load: so=libEGL_vr.so
W/libEGL (19871): dlopen failed: library "libEGL_vr.so" not found
W/libEGL (19871): load: so=libEGL_vr.so
W/libEGL (19871): dlopen failed: library "libEGL_vr.so" not found
W/libEGL (19871): load: so=libEGL_vr.so
W/libEGL (19871): dlopen failed: library "libEGL_vr.so" not found
I/chromium(19871): [INFO:CONSOLE(50)] "Uncaught TypeError: Cannot read property 'getItem' of null", source: http://192.168.90.84/dist/js/app.2cdac70722d410d5ede9.js (50)"><pre class="notranslate"><code class="notranslate">I/flutter (19871): ip = http://192.168.90.84/dist/index.html
E/BufferQueueProducer(19871): [] Can not get hwsched service
D/HwCust (19871): Create obj success use class android.app.HwCustHwWallpaperManagerImpl
I/WebViewFactory(19871): Loading com.google.android.webview version 66.0.3359.126 (code 335912650)
D/HwFLClassLoader(19871): USE_FEATURE_LIST had not init!
I/cr_LibraryLoader(19871): Time to load native libraries: 2 ms (timestamps 2442-2444)
I/chromium(19871): [INFO:library_loader_hooks.cc(36)] Chromium logging enabled: level = 0, default verbosity = 0
I/cr_LibraryLoader(19871): Expected native library version number "66.0.3359.126", actual native library version number "66.0.3359.126"
W/cr_ChildProcLH(19871): Create a new ChildConnectionAllocator with package name = com.google.android.webview, sandboxed = true
I/cr_BrowserStartup(19871): Initializing chromium process, singleProcess=false
I/cr_base (19871): Android Locale: zh_CN_#Hans requires .pak files: []
I/HwCust (19871): Constructor found for class android.net.HwCustConnectivityManagerImpl
D/HwCust (19871): Create obj success use class android.net.HwCustConnectivityManagerImpl
D/HwCust (19871): Create obj success use class android.net.HwCustConnectivityManagerImpl
I/zygote64(19871): Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.WebViewContentsClientAdapter$3>: java.lang.NoClassDefFoundError: Failed resolution of: Landroid/webkit/SafeBrowsingResponse;
I/zygote64(19871): at void com.android.webview.chromium.WebViewChromium.init(java.util.Map, boolean) (WebViewChromium.java:48)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int, java.util.Map, boolean) (WebView.java:651)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int) (WebView.java:581)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int) (WebView.java:564)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet) (WebView.java:551)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context) (WebView.java:541)
I/zygote64(19871): at void io.flutter.plugins.webviewflutter.FlutterWebView.<init>(android.content.Context, io.flutter.plugin.common.BinaryMessenger, int, java.util.Map) (FlutterWebView.java:20)
I/zygote64(19871): at io.flutter.plugin.platform.PlatformView io.flutter.plugins.webviewflutter.WebViewFactory.create(android.content.Context, int, java.lang.Object) (WebViewFactory.java:22)
I/zygote64(19871): at void io.flutter.plugin.platform.SingleViewPresentation.onCreate(android.os.Bundle) (SingleViewPresentation.java:130)
I/zygote64(19871): at void android.app.Dialog.dispatchOnCreate(android.os.Bundle) (Dialog.java:528)
I/zygote64(19871): at void android.app.Dialog.show() (Dialog.java:389)
I/zygote64(19871): at void android.app.Presentation.show() (Presentation.java:249)
I/zygote64(19871): at void io.flutter.plugin.platform.VirtualDisplayController.<init>(android.content.Context, android.hardware.display.VirtualDisplay, io.flutter.plugin.platform.PlatformViewFactory, android.view.Surface, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, java.lang.Object) (VirtualDisplayController.java:75)
I/zygote64(19871): at io.flutter.plugin.platform.VirtualDisplayController io.flutter.plugin.platform.VirtualDisplayController.create(android.content.Context, io.flutter.plugin.platform.PlatformViewFactory, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, int, int, java.lang.Object) (VirtualDisplayController.java:47)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.createPlatformView(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:179)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.onMethodCall(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:118)
I/zygote64(19871): at void io.flutter.plugin.common.MethodChannel$IncomingMethodCallHandler.onMessage(java.nio.ByteBuffer, io.flutter.plugin.common.BinaryMessenger$BinaryReply) (MethodChannel.java:200)
I/zygote64(19871): at void io.flutter.view.FlutterNativeView.handlePlatformMessage(java.lang.String, byte[], int) (FlutterNativeView.java:163)
I/zygote64(19871): at void android.os.MessageQueue.nativePollOnce(long, int) (MessageQueue.java:-2)
I/zygote64(19871): at android.os.Message android.os.MessageQueue.next() (MessageQueue.java:379)
I/zygote64(19871): at void android.os.Looper.loop() (Looper.java:144)
I/zygote64(19871): at void android.app.ActivityThread.main(java.lang.String[]) (ActivityThread.java:7425)
I/zygote64(19871): at java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[]) (Method.java:-2)
I/zygote64(19871): at void com.android.internal.os.Zygote$MethodAndArgsCaller.run() (Zygote.java:245)
I/zygote64(19871): at void com.android.internal.os.ZygoteInit.main(java.lang.String[]) (ZygoteInit.java:921)
I/zygote64(19871): Caused by: java.lang.ClassNotFoundException: Didn't find class "android.webkit.SafeBrowsingResponse" on path: DexPathList[[zip file "/system/app/WebViewGoogle/WebViewGoogle.apk"],nativeLibraryDirectories=[/system/app/WebViewGoogle/lib/arm64, /system/app/WebViewGoogle/WebViewGoogle.apk!/lib/arm64-v8a, /system/lib64, /vendor/lib64, /product/lib64, /system/lib64, /vendor/lib64, /product/lib64]]
I/zygote64(19871): at java.lang.Class dalvik.system.BaseDexClassLoader.findClass(java.lang.String) (BaseDexClassLoader.java:93)
I/zygote64(19871): at java.lang.Class java.lang.ClassLoader.loadClass(java.lang.String, boolean) (ClassLoader.java:379)
I/zygote64(19871): at java.lang.Class java.lang.ClassLoader.loadClass(java.lang.String) (ClassLoader.java:312)
I/zygote64(19871): at void com.android.webview.chromium.WebViewChromium.init(java.util.Map, boolean) (WebViewChromium.java:48)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int, java.util.Map, boolean) (WebView.java:651)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int) (WebView.java:581)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int) (WebView.java:564)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet) (WebView.java:551)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context) (WebView.java:541)
I/zygote64(19871): at void io.flutter.plugins.webviewflutter.FlutterWebView.<init>(android.content.Context, io.flutter.plugin.common.BinaryMessenger, int, java.util.Map) (FlutterWebView.java:20)
I/zygote64(19871): at io.flutter.plugin.platform.PlatformView io.flutter.plugins.webviewflutter.WebViewFactory.create(android.content.Context, int, java.lang.Object) (WebViewFactory.java:22)
I/zygote64(19871): at void io.flutter.plugin.platform.SingleViewPresentation.onCreate(android.os.Bundle) (SingleViewPresentation.java:130)
I/zygote64(19871): at void android.app.Dialog.dispatchOnCreate(android.os.Bundle) (Dialog.java:528)
I/zygote64(19871): at void android.app.Dialog.show() (Dialog.java:389)
I/zygote64(19871): at void android.app.Presentation.show() (Presentation.java:249)
I/zygote64(19871): at void io.flutter.plugin.platform.VirtualDisplayController.<init>(android.content.Context, android.hardware.display.VirtualDisplay, io.flutter.plugin.platform.PlatformViewFactory, android.view.Surface, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, java.lang.Object) (VirtualDisplayController.java:75)
I/zygote64(19871): at io.flutter.plugin.platform.VirtualDisplayController io.flutter.plugin.platform.VirtualDisplayController.create(android.content.Context, io.flutter.plugin.platform.PlatformViewFactory, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, int, int, java.lang.Object) (VirtualDisplayController.java:47)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.createPlatformView(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:179)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.onMethodCall(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:118)
I/zygote64(19871): at void io.flutter.plugin.common.MethodChannel$IncomingMethodCallHandler.onMessage(java.nio.ByteBuffer, io.flutter.plugin.common.BinaryMessenger$BinaryReply) (MethodChannel.java:200)
I/zygote64(19871): at void io.flutter.view.FlutterNativeView.handlePlatformMessage(java.lang.String, byte[], int) (FlutterNativeView.java:163)
I/zygote64(19871): at void android.os.MessageQueue.nativePollOnce(long, int) (MessageQueue.java:-2)
I/zygote64(19871): at android.os.Message android.os.MessageQueue.next() (MessageQueue.java:379)
I/zygote64(19871): at void android.os.Looper.loop() (Looper.java:144)
I/zygote64(19871): at void android.app.ActivityThread.main(java.lang.String[]) (ActivityThread.java:7425)
I/zygote64(19871): at java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[]) (Method.java:-2)
I/zygote64(19871): at void com.android.internal.os.Zygote$MethodAndArgsCaller.run() (Zygote.java:245)
I/zygote64(19871): at void com.android.internal.os.ZygoteInit.main(java.lang.String[]) (ZygoteInit.java:921)
I/zygote64(19871):
I/zygote64(19871): Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.WebViewContentsClientAdapter$3>: java.lang.NoClassDefFoundError: Failed resolution of: Landroid/webkit/SafeBrowsingResponse;
I/zygote64(19871): at void com.android.webview.chromium.WebViewChromium.init(java.util.Map, boolean) (WebViewChromium.java:48)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int, java.util.Map, boolean) (WebView.java:651)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int) (WebView.java:581)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int) (WebView.java:564)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet) (WebView.java:551)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context) (WebView.java:541)
I/zygote64(19871): at void io.flutter.plugins.webviewflutter.FlutterWebView.<init>(android.content.Context, io.flutter.plugin.common.BinaryMessenger, int, java.util.Map) (FlutterWebView.java:20)
I/zygote64(19871): at io.flutter.plugin.platform.PlatformView io.flutter.plugins.webviewflutter.WebViewFactory.create(android.content.Context, int, java.lang.Object) (WebViewFactory.java:22)
I/zygote64(19871): at void io.flutter.plugin.platform.SingleViewPresentation.onCreate(android.os.Bundle) (SingleViewPresentation.java:130)
I/zygote64(19871): at void android.app.Dialog.dispatchOnCreate(android.os.Bundle) (Dialog.java:528)
I/zygote64(19871): at void android.app.Dialog.show() (Dialog.java:389)
I/zygote64(19871): at void android.app.Presentation.show() (Presentation.java:249)
I/zygote64(19871): at void io.flutter.plugin.platform.VirtualDisplayController.<init>(android.content.Context, android.hardware.display.VirtualDisplay, io.flutter.plugin.platform.PlatformViewFactory, android.view.Surface, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, java.lang.Object) (VirtualDisplayController.java:75)
I/zygote64(19871): at io.flutter.plugin.platform.VirtualDisplayController io.flutter.plugin.platform.VirtualDisplayController.create(android.content.Context, io.flutter.plugin.platform.PlatformViewFactory, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, int, int, java.lang.Object) (VirtualDisplayController.java:47)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.createPlatformView(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:179)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.onMethodCall(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:118)
I/zygote64(19871): at void io.flutter.plugin.common.MethodChannel$IncomingMethodCallHandler.onMessage(java.nio.ByteBuffer, io.flutter.plugin.common.BinaryMessenger$BinaryReply) (MethodChannel.java:200)
I/zygote64(19871): at void io.flutter.view.FlutterNativeView.handlePlatformMessage(java.lang.String, byte[], int) (FlutterNativeView.java:163)
I/zygote64(19871): at void android.os.MessageQueue.nativePollOnce(long, int) (MessageQueue.java:-2)
I/zygote64(19871): at android.os.Message android.os.MessageQueue.next() (MessageQueue.java:379)
I/zygote64(19871): at void android.os.Looper.loop() (Looper.java:144)
I/zygote64(19871): at void android.app.ActivityThread.main(java.lang.String[]) (ActivityThread.java:7425)
I/zygote64(19871): at java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[]) (Method.java:-2)
I/zygote64(19871): at void com.android.internal.os.Zygote$MethodAndArgsCaller.run() (Zygote.java:245)
I/zygote64(19871): at void com.android.internal.os.ZygoteInit.main(java.lang.String[]) (ZygoteInit.java:921)
I/zygote64(19871): Caused by: java.lang.ClassNotFoundException: Didn't find class "android.webkit.SafeBrowsingResponse" on path: DexPathList[[zip file "/system/app/WebViewGoogle/WebViewGoogle.apk"],nativeLibraryDirectories=[/system/app/WebViewGoogle/lib/arm64, /system/app/WebViewGoogle/WebViewGoogle.apk!/lib/arm64-v8a, /system/lib64, /vendor/lib64, /product/lib64, /system/lib64, /vendor/lib64, /product/lib64]]
I/zygote64(19871): at java.lang.Class dalvik.system.BaseDexClassLoader.findClass(java.lang.String) (BaseDexClassLoader.java:93)
I/zygote64(19871): at java.lang.Class java.lang.ClassLoader.loadClass(java.lang.String, boolean) (ClassLoader.java:379)
I/zygote64(19871): at java.lang.Class java.lang.ClassLoader.loadClass(java.lang.String) (ClassLoader.java:312)
I/zygote64(19871): at void com.android.webview.chromium.WebViewChromium.init(java.util.Map, boolean) (WebViewChromium.java:48)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int, java.util.Map, boolean) (WebView.java:651)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int) (WebView.java:581)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int) (WebView.java:564)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet) (WebView.java:551)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context) (WebView.java:541)
I/zygote64(19871): at void io.flutter.plugins.webviewflutter.FlutterWebView.<init>(android.content.Context, io.flutter.plugin.common.BinaryMessenger, int, java.util.Map) (FlutterWebView.java:20)
I/zygote64(19871): at io.flutter.plugin.platform.PlatformView io.flutter.plugins.webviewflutter.WebViewFactory.create(android.content.Context, int, java.lang.Object) (WebViewFactory.java:22)
I/zygote64(19871): at void io.flutter.plugin.platform.SingleViewPresentation.onCreate(android.os.Bundle) (SingleViewPresentation.java:130)
I/zygote64(19871): at void android.app.Dialog.dispatchOnCreate(android.os.Bundle) (Dialog.java:528)
I/zygote64(19871): at void android.app.Dialog.show() (Dialog.java:389)
I/zygote64(19871): at void android.app.Presentation.show() (Presentation.java:249)
I/zygote64(19871): at void io.flutter.plugin.platform.VirtualDisplayController.<init>(android.content.Context, android.hardware.display.VirtualDisplay, io.flutter.plugin.platform.PlatformViewFactory, android.view.Surface, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, java.lang.Object) (VirtualDisplayController.java:75)
I/zygote64(19871): at io.flutter.plugin.platform.VirtualDisplayController io.flutter.plugin.platform.VirtualDisplayController.create(android.content.Context, io.flutter.plugin.platform.PlatformViewFactory, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, int, int, java.lang.Object) (VirtualDisplayController.java:47)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.createPlatformView(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:179)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.onMethodCall(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:118)
I/zygote64(19871): at void io.flutter.plugin.common.MethodChannel$IncomingMethodCallHandler.onMessage(java.nio.ByteBuffer, io.flutter.plugin.common.BinaryMessenger$BinaryReply) (MethodChannel.java:200)
I/zygote64(19871): at void io.flutter.view.FlutterNativeView.handlePlatformMessage(java.lang.String, byte[], int) (FlutterNativeView.java:163)
I/zygote64(19871): at void android.os.MessageQueue.nativePollOnce(long, int) (MessageQueue.java:-2)
I/zygote64(19871): at android.os.Message android.os.MessageQueue.next() (MessageQueue.java:379)
I/zygote64(19871): at void android.os.Looper.loop() (Looper.java:144)
I/zygote64(19871): at void android.app.ActivityThread.main(java.lang.String[]) (ActivityThread.java:7425)
I/zygote64(19871): at java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[]) (Method.java:-2)
I/zygote64(19871): at void com.android.internal.os.Zygote$MethodAndArgsCaller.run() (Zygote.java:245)
I/zygote64(19871): at void com.android.internal.os.ZygoteInit.main(java.lang.String[]) (ZygoteInit.java:921)
I/zygote64(19871):
I/zygote64(19871): Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.WebViewContentsClientAdapter$3>: java.lang.NoClassDefFoundError: Failed resolution of: Landroid/webkit/SafeBrowsingResponse;
I/zygote64(19871): at void com.android.webview.chromium.WebViewChromium.init(java.util.Map, boolean) (WebViewChromium.java:48)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int, java.util.Map, boolean) (WebView.java:651)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int) (WebView.java:581)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int) (WebView.java:564)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet) (WebView.java:551)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context) (WebView.java:541)
I/zygote64(19871): at void io.flutter.plugins.webviewflutter.FlutterWebView.<init>(android.content.Context, io.flutter.plugin.common.BinaryMessenger, int, java.util.Map) (FlutterWebView.java:20)
I/zygote64(19871): at io.flutter.plugin.platform.PlatformView io.flutter.plugins.webviewflutter.WebViewFactory.create(android.content.Context, int, java.lang.Object) (WebViewFactory.java:22)
I/zygote64(19871): at void io.flutter.plugin.platform.SingleViewPresentation.onCreate(android.os.Bundle) (SingleViewPresentation.java:130)
I/zygote64(19871): at void android.app.Dialog.dispatchOnCreate(android.os.Bundle) (Dialog.java:528)
I/zygote64(19871): at void android.app.Dialog.show() (Dialog.java:389)
I/zygote64(19871): at void android.app.Presentation.show() (Presentation.java:249)
I/zygote64(19871): at void io.flutter.plugin.platform.VirtualDisplayController.<init>(android.content.Context, android.hardware.display.VirtualDisplay, io.flutter.plugin.platform.PlatformViewFactory, android.view.Surface, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, java.lang.Object) (VirtualDisplayController.java:75)
I/zygote64(19871): at io.flutter.plugin.platform.VirtualDisplayController io.flutter.plugin.platform.VirtualDisplayController.create(android.content.Context, io.flutter.plugin.platform.PlatformViewFactory, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, int, int, java.lang.Object) (VirtualDisplayController.java:47)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.createPlatformView(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:179)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.onMethodCall(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:118)
I/zygote64(19871): at void io.flutter.plugin.common.MethodChannel$IncomingMethodCallHandler.onMessage(java.nio.ByteBuffer, io.flutter.plugin.common.BinaryMessenger$BinaryReply) (MethodChannel.java:200)
I/zygote64(19871): at void io.flutter.view.FlutterNativeView.handlePlatformMessage(java.lang.String, byte[], int) (FlutterNativeView.java:163)
I/zygote64(19871): at void android.os.MessageQueue.nativePollOnce(long, int) (MessageQueue.java:-2)
I/zygote64(19871): at android.os.Message android.os.MessageQueue.next() (MessageQueue.java:379)
I/zygote64(19871): at void android.os.Looper.loop() (Looper.java:144)
I/zygote64(19871): at void android.app.ActivityThread.main(java.lang.String[]) (ActivityThread.java:7425)
I/zygote64(19871): at java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[]) (Method.java:-2)
I/zygote64(19871): at void com.android.internal.os.Zygote$MethodAndArgsCaller.run() (Zygote.java:245)
I/zygote64(19871): at void com.android.internal.os.ZygoteInit.main(java.lang.String[]) (ZygoteInit.java:921)
I/zygote64(19871): Caused by: java.lang.ClassNotFoundException: Didn't find class "android.webkit.SafeBrowsingResponse" on path: DexPathList[[zip file "/system/app/WebViewGoogle/WebViewGoogle.apk"],nativeLibraryDirectories=[/system/app/WebViewGoogle/lib/arm64, /system/app/WebViewGoogle/WebViewGoogle.apk!/lib/arm64-v8a, /system/lib64, /vendor/lib64, /product/lib64, /system/lib64, /vendor/lib64, /product/lib64]]
I/zygote64(19871): at java.lang.Class dalvik.system.BaseDexClassLoader.findClass(java.lang.String) (BaseDexClassLoader.java:93)
I/zygote64(19871): at java.lang.Class java.lang.ClassLoader.loadClass(java.lang.String, boolean) (ClassLoader.java:379)
I/zygote64(19871): at java.lang.Class java.lang.ClassLoader.loadClass(java.lang.String) (ClassLoader.java:312)
I/zygote64(19871): at void com.android.webview.chromium.WebViewChromium.init(java.util.Map, boolean) (WebViewChromium.java:48)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int, java.util.Map, boolean) (WebView.java:651)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int, int) (WebView.java:581)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet, int) (WebView.java:564)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context, android.util.AttributeSet) (WebView.java:551)
I/zygote64(19871): at void android.webkit.WebView.<init>(android.content.Context) (WebView.java:541)
I/zygote64(19871): at void io.flutter.plugins.webviewflutter.FlutterWebView.<init>(android.content.Context, io.flutter.plugin.common.BinaryMessenger, int, java.util.Map) (FlutterWebView.java:20)
I/zygote64(19871): at io.flutter.plugin.platform.PlatformView io.flutter.plugins.webviewflutter.WebViewFactory.create(android.content.Context, int, java.lang.Object) (WebViewFactory.java:22)
I/zygote64(19871): at void io.flutter.plugin.platform.SingleViewPresentation.onCreate(android.os.Bundle) (SingleViewPresentation.java:130)
I/zygote64(19871): at void android.app.Dialog.dispatchOnCreate(android.os.Bundle) (Dialog.java:528)
I/zygote64(19871): at void android.app.Dialog.show() (Dialog.java:389)
I/zygote64(19871): at void android.app.Presentation.show() (Presentation.java:249)
I/zygote64(19871): at void io.flutter.plugin.platform.VirtualDisplayController.<init>(android.content.Context, android.hardware.display.VirtualDisplay, io.flutter.plugin.platform.PlatformViewFactory, android.view.Surface, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, java.lang.Object) (VirtualDisplayController.java:75)
I/zygote64(19871): at io.flutter.plugin.platform.VirtualDisplayController io.flutter.plugin.platform.VirtualDisplayController.create(android.content.Context, io.flutter.plugin.platform.PlatformViewFactory, io.flutter.view.TextureRegistry$SurfaceTextureEntry, int, int, int, java.lang.Object) (VirtualDisplayController.java:47)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.createPlatformView(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:179)
I/zygote64(19871): at void io.flutter.plugin.platform.PlatformViewsController.onMethodCall(io.flutter.plugin.common.MethodCall, io.flutter.plugin.common.MethodChannel$Result) (PlatformViewsController.java:118)
I/zygote64(19871): at void io.flutter.plugin.common.MethodChannel$IncomingMethodCallHandler.onMessage(java.nio.ByteBuffer, io.flutter.plugin.common.BinaryMessenger$BinaryReply) (MethodChannel.java:200)
I/zygote64(19871): at void io.flutter.view.FlutterNativeView.handlePlatformMessage(java.lang.String, byte[], int) (FlutterNativeView.java:163)
I/zygote64(19871): at void android.os.MessageQueue.nativePollOnce(long, int) (MessageQueue.java:-2)
I/zygote64(19871): at android.os.Message android.os.MessageQueue.next() (MessageQueue.java:379)
I/zygote64(19871): at void android.os.Looper.loop() (Looper.java:144)
I/zygote64(19871): at void android.app.ActivityThread.main(java.lang.String[]) (ActivityThread.java:7425)
I/zygote64(19871): at java.lang.Object java.lang.reflect.Method.invoke(java.lang.Object, java.lang.Object[]) (Method.java:-2)
I/zygote64(19871): at void com.android.internal.os.Zygote$MethodAndArgsCaller.run() (Zygote.java:245)
I/zygote64(19871): at void com.android.internal.os.ZygoteInit.main(java.lang.String[]) (ZygoteInit.java:921)
I/zygote64(19871):
W/cr_media(19871): Requires BLUETOOTH permission
D/HwRTBlurUtils(19871): check blur style for HwPhoneWindow, themeResId : 0x0103023e, context : android.app.Presentation$3@84fb512, Nhwext : 0, get Blur : disable with , null
D/HwRTBlurUtils(19871): check blur style for HwPhoneWindow, themeResId : 0x0103023e, context : android.app.Presentation$3@84fb512, Nhwext : 0, get Blur : disable with , null
D/OpenGLRenderer(19871): HWUI Binary is enabled
D/OpenGLRenderer(19871): HWUI Binary is enabled
D/NetworkSecurityConfig(19871): No Network Security Config specified, using platform default
W/libEGL (19871): load: so=libEGL_vr.so
W/libEGL (19871): dlopen failed: library "libEGL_vr.so" not found
W/libEGL (19871): load: so=libEGL_vr.so
W/libEGL (19871): dlopen failed: library "libEGL_vr.so" not found
I/PressGestureDetector(19871): HiTouch restricted: Sub windows restricted.
W/Settings(19871): mValues not put! needsGenerationTracker: true currentGeneration: -1 name: accessibility_captioning_enabled value: null
W/VideoCapabilities(19871): Unrecognized profile/level 1/32 for video/mp4v-es
W/VideoCapabilities(19871): Unrecognized profile/level 32768/2 for video/mp4v-es
W/VideoCapabilities(19871): Unrecognized profile/level 32768/64 for video/mp4v-es
W/VideoCapabilities(19871): Unsupported mime video/mpeg
W/VideoCapabilities(19871): Unrecognized profile/level 0/0 for video/mpeg2
W/VideoCapabilities(19871): Unrecognized profile/level 0/2 for video/mpeg2
W/VideoCapabilities(19871): Unrecognized profile/level 0/3 for video/mpeg2
I/VideoCapabilities(19871): Unsupported profile 5 for video/mpeg2
I/chatty (19871): uid=10485(u0_a485) Chrome_InProcGp identical 2 lines
I/VideoCapabilities(19871): Unsupported profile 5 for video/mpeg2
D/mali_winsys(19871): EGLint new_window_surface(egl_winsys_display *, void *, EGLSurface, EGLConfig, egl_winsys_surface **, egl_color_buffer_format *, EGLBoolean) returns 0x3000
W/VideoCapabilities(19871): Unsupported mime video/vc1
W/VideoCapabilities(19871): Unsupported mime video/x-pn-realvideo
W/VideoCapabilities(19871): Unsupported mime video/clic
I/zygote64(19871): Do partial code cache collection, code=28KB, data=29KB
I/zygote64(19871): After code cache collection, code=28KB, data=29KB
I/zygote64(19871): Increasing code cache capacity to 128KB
W/cr_CrashFileManager(19871): /data/user/0/com.starcor.flutterbigdata/cache/WebView/Crash Reports does not exist or is not a directory
I/VideoCapabilities(19871): Unsupported profile 4 for video/mp4v-es
W/cr_MediaCodecUtil(19871): HW encoder for video/avc is not available on this device.
W/libEGL (19871): load: so=libEGL_vr.so
W/libEGL (19871): dlopen failed: library "libEGL_vr.so" not found
W/libEGL (19871): load: so=libEGL_vr.so
W/libEGL (19871): dlopen failed: library "libEGL_vr.so" not found
I/zygote64(19871): Do partial code cache collection, code=52KB, data=51KB
I/zygote64(19871): After code cache collection, code=52KB, data=51KB
I/zygote64(19871): Increasing code cache capacity to 256KB
I/zygote64(19871): Compiler allocated 6MB to compile void android.view.ViewRootImpl.performTraversals()
W/libEGL (19871): load: so=libEGL_vr.so
W/libEGL (19871): dlopen failed: library "libEGL_vr.so" not found
W/libEGL (19871): load: so=libEGL_vr.so
W/libEGL (19871): dlopen failed: library "libEGL_vr.so" not found
W/libEGL (19871): load: so=libEGL_vr.so
W/libEGL (19871): dlopen failed: library "libEGL_vr.so" not found
W/libEGL (19871): load: so=libEGL_vr.so
W/libEGL (19871): dlopen failed: library "libEGL_vr.so" not found
I/chromium(19871): [INFO:CONSOLE(50)] "Uncaught TypeError: Cannot read property 'getItem' of null", source: http://192.168.90.84/dist/js/app.2cdac70722d410d5ede9.js (50)
</code></pre></div> | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.