text1
stringlengths
0
536k
text2
stringlengths
0
536k
label
int64
0
1
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/21040178/30143749-047667b4-93ba-11e7-9a38-eb04272e314d.png"><img src="https://user-images.githubusercontent.com/21040178/30143749-047667b4-93ba-11e7-9a38-eb04272e314d.png" alt="image" style="max-width: 100%;"></a><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/21040178/30143758-172ab068-93ba-11e7-8d67-0001dc037ae4.png"><img src="https://user-images.githubusercontent.com/21040178/30143758-172ab068-93ba-11e7-8d67-0001dc037ae4.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/21040178/30143844-61dd13e4-93ba-11e7-98bd-9f714d0307fe.png"><img src="https://user-images.githubusercontent.com/21040178/30143844-61dd13e4-93ba-11e7-98bd-9f714d0307fe.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">Is there anything wrong with my code?<br> Why is the picture like this?</p>
<p dir="auto">With this layout:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;FrameLayout xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot; xmlns:tools=&quot;http://schemas.android.com/tools&quot; android:layout_width=&quot;@dimen/media_bubble_height&quot; android:layout_height=&quot;@dimen/media_bubble_height&quot; android:layout_marginBottom=&quot;5dp&quot; android:layout_gravity=&quot;center&quot; android:scaleType=&quot;centerCrop&quot; android:adjustViewBounds=&quot;true&quot;&gt; &lt;ImageView android:id=&quot;@+id/image&quot; android:layout_width=&quot;match_parent&quot; android:layout_height=&quot;match_parent&quot; android:adjustViewBounds=&quot;true&quot; android:clickable=&quot;false&quot; android:longClickable=&quot;false&quot; android:scaleType=&quot;fitCenter&quot;/&gt; &lt;/FrameLayout&gt;"><pre class="notranslate"><code class="notranslate">&lt;FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="@dimen/media_bubble_height" android:layout_height="@dimen/media_bubble_height" android:layout_marginBottom="5dp" android:layout_gravity="center" android:scaleType="centerCrop" android:adjustViewBounds="true"&gt; &lt;ImageView android:id="@+id/image" android:layout_width="match_parent" android:layout_height="match_parent" android:adjustViewBounds="true" android:clickable="false" android:longClickable="false" android:scaleType="fitCenter"/&gt; &lt;/FrameLayout&gt; </code></pre></div> <p dir="auto">Loading a gif into the ImageView:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" GlideApp.with(getContext()) .load(model) .diskCacheStrategy(DiskCacheStrategy.NONE) .transform(new RoundedCorners(radius)) .transition(withCrossFade()) .into(image);"><pre class="notranslate"><code class="notranslate"> GlideApp.with(getContext()) .load(model) .diskCacheStrategy(DiskCacheStrategy.NONE) .transform(new RoundedCorners(radius)) .transition(withCrossFade()) .into(image); </code></pre></div> <p dir="auto">Consistently produces these glitches in Glide 4.2.0:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/512439/31473424-40e8c868-aea9-11e7-994f-14a83fdee1ff.gif"><img src="https://user-images.githubusercontent.com/512439/31473424-40e8c868-aea9-11e7-994f-14a83fdee1ff.gif" alt="glitchy" data-animated-image="" style="max-width: 100%;"></a></p> <p dir="auto">Happens for every gif I try, here's a sample:<br> <a href="https://media.giphy.com/media/xUNd9W5Wbh8cRmdFBe/giphy.gif" rel="nofollow">https://media.giphy.com/media/xUNd9W5Wbh8cRmdFBe/giphy.gif</a></p> <p dir="auto">In Glide 3.7 I used a custom RoundedCorners transformation (I don't think one came with Glide?) and this wasn't an issue.</p> <p dir="auto"><strong>Glide Version</strong>: 4.2.0</p>
1
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=kdonald" rel="nofollow">Keith Donald</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-6306?redirect=false" rel="nofollow">SPR-6306</a></strong> and commented</p> <p dir="auto">Spring MVC setup could be simplified considerably by adding a custom XML namespace. A simple tag to configure mvc:annotated-controllers/ with reasonable default settings would be a great start.</p> <p dir="auto">Example benefits:</p> <p dir="auto"><strong>AFTER MVC NAMESPACE</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" &lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;beans xmlns=&quot;http://www.springframework.org/schema/beans&quot; xmlns:mvc=&quot;http://www.springframework.org/schema/mvc&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:schemaLocation=&quot;http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd&quot;&gt; &lt;mvc:annotation-driven/&gt; &lt;/beans&gt; "><pre class="notranslate"><code class="notranslate"> &lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;beans xmlns="http://www.springframework.org/schema/beans" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"&gt; &lt;mvc:annotation-driven/&gt; &lt;/beans&gt; </code></pre></div> <p dir="auto"><strong>BEFORE MVC NAMESPACE</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" &lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;beans xmlns=&quot;http://www.springframework.org/schema/beans&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xsi:schemaLocation=&quot; http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd&quot;&gt; &lt;!-- HANDLER MAPPING RULES --&gt; &lt;!-- Maps requests to @Controllers based on @RequestMapping(&quot;path&quot;) annotation values If no annotation-based path mapping is found, Spring MVC sends a 404 response and logs a pageNotFound warning. --&gt; &lt;bean class=&quot;org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping&quot;&gt; &lt;property name=&quot;order&quot; value=&quot;1&quot; /&gt; &lt;/bean&gt; &lt;!-- REGISTERED HANDLER TYPES --&gt; &lt;!-- Enables annotated @Controllers; responsible for invoking an annotated POJO @Controller when one is mapped. --&gt; &lt;bean class=&quot;org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter&quot;&gt; &lt;!-- Configures Spring MVC DataBinder instances globally --&gt; &lt;property name=&quot;webBindingInitializer&quot;&gt; &lt;bean class=&quot;org.springframework.web.bind.support.ConfigurableWebBindingInitializer&quot;&gt; &lt;property name=&quot;conversionService&quot; ref=&quot;conversionService&quot; /&gt; &lt;property name=&quot;validator&quot; ref=&quot;validator&quot; /&gt; &lt;/bean&gt; &lt;/property&gt; &lt;/bean&gt; &lt;!-- FIELD TYPE CONVERSION AND VALIDATION --&gt; &lt;!-- Enables the Spring 3 Type Conversion system that uses Joda Time Formatting for Date/Time types --&gt; &lt;bean id=&quot;conversionService&quot; class=&quot;org.springframework.samples.petclinic.util.PetclinicConversionServiceFactory&quot; /&gt; &lt;!-- Configures JSR-303 Declarative Validation with default provider on classpath (Hibernate Validator) --&gt; &lt;bean id=&quot;validator&quot; class=&quot;org.springframework.validation.beanvalidation.LocalValidatorFactoryBean&quot; /&gt; &lt;/beans&gt; "><pre class="notranslate"><code class="notranslate"> &lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"&gt; &lt;!-- HANDLER MAPPING RULES --&gt; &lt;!-- Maps requests to @Controllers based on @RequestMapping("path") annotation values If no annotation-based path mapping is found, Spring MVC sends a 404 response and logs a pageNotFound warning. --&gt; &lt;bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"&gt; &lt;property name="order" value="1" /&gt; &lt;/bean&gt; &lt;!-- REGISTERED HANDLER TYPES --&gt; &lt;!-- Enables annotated @Controllers; responsible for invoking an annotated POJO @Controller when one is mapped. --&gt; &lt;bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"&gt; &lt;!-- Configures Spring MVC DataBinder instances globally --&gt; &lt;property name="webBindingInitializer"&gt; &lt;bean class="org.springframework.web.bind.support.ConfigurableWebBindingInitializer"&gt; &lt;property name="conversionService" ref="conversionService" /&gt; &lt;property name="validator" ref="validator" /&gt; &lt;/bean&gt; &lt;/property&gt; &lt;/bean&gt; &lt;!-- FIELD TYPE CONVERSION AND VALIDATION --&gt; &lt;!-- Enables the Spring 3 Type Conversion system that uses Joda Time Formatting for Date/Time types --&gt; &lt;bean id="conversionService" class="org.springframework.samples.petclinic.util.PetclinicConversionServiceFactory" /&gt; &lt;!-- Configures JSR-303 Declarative Validation with default provider on classpath (Hibernate Validator) --&gt; &lt;bean id="validator" class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean" /&gt; &lt;/beans&gt; </code></pre></div> <hr> <p dir="auto"><strong>Affects:</strong> 3.0 RC1</p> <p dir="auto"><strong>Issue Links:</strong></p> <ul dir="auto"> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398063667" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/6422" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/6422/hovercard" href="https://github.com/spring-projects/spring-framework/issues/6422">#6422</a> Add schema for web configuration (handler mappings) (<em><strong>"duplicates"</strong></em>)</li> </ul> <p dir="auto">1 votes, 3 watchers</p>
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=belamiru" rel="nofollow">Mikhail Moussikhine</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-9133?redirect=false" rel="nofollow">SPR-9133</a></strong> and commented</p> <p dir="auto"><code class="notranslate">@Configuration</code><br> <code class="notranslate">@PropertySource</code>({ "${property1}", "${property2}" })<br> class AppConfig {<br> }</p> <p dir="auto">Only first ${property1} placeholder will be resolved. Second and any other values will be used as is. The cause and fix are simple:</p> <p dir="auto">File:<br> ./org.springframework.context/src/main/java/org/springframework/context/annotation/ConfigurationClassParser.java</p> <p dir="auto">Function:<br> protected AnnotationMetadata doProcessConfigurationClass(ConfigurationClass configClass, AnnotationMetadata metadata) {}</p> <p dir="auto">Line: 187<br> for (int i = 0; i &lt; nLocations; i++) {<br> locations[0] = this.environment.resolveRequiredPlaceholders(locations[0]);<br> }</p> <p dir="auto">Should be:<br> for (int i = 0; i &lt; nLocations; i++) {<br> locations[i] = this.environment.resolveRequiredPlaceholders(locations[i]);<br> }</p> <p dir="auto">Just a typo, I guess.</p> <hr> <p dir="auto"><strong>Affects:</strong> 3.1.1</p> <p dir="auto"><strong>Sub-tasks:</strong></p> <ul dir="auto"> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398117394" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13775" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13775/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13775">#13775</a> Backport "Fix regression in <code class="notranslate">@PropertySource</code> placeholder resolution"</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="398117355" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13770" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13770/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13770">#13770</a> Multiple PropertySource fails to use System property (<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="398118960" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/14016" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/14016/hovercard" href="https://github.com/spring-projects/spring-framework/issues/14016">#14016</a> Resolving ${} system properties in <code class="notranslate">@PropertySource</code> annotation does not work anymore (<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="398117311" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13766" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13766/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13766">#13766</a> <code class="notranslate">@PropertySource</code> annotation with multiple values and a name fails to register all property sources</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/e30d6104f367eb416c420ef801a8f152201443cd/hovercard" href="https://github.com/spring-projects/spring-framework/commit/e30d6104f367eb416c420ef801a8f152201443cd"><tt>e30d610</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/4df2a14b13ac41d71f8034fa68e1b7e54e3f7a48/hovercard" href="https://github.com/spring-projects/spring-framework/commit/4df2a14b13ac41d71f8034fa68e1b7e54e3f7a48"><tt>4df2a14</tt></a></p>
0
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/incubator-dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/apache/incubator-dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li> </ul> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>Dubbo version: 2.7.0</li> <li>Operating System version: MacOS</li> <li>Java version: 11.0.1</li> </ul> <h3 dir="auto">Steps to reproduce this issue</h3> <ol dir="auto"> <li>Run org.apache.dubbo.demo.provider.Provider</li> </ol> <h3 dir="auto">Expected Result</h3> <p dir="auto">Provider should start.</p> <h3 dir="auto">Actual Result</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Caused by: java.lang.IllegalStateException: Failed to connect to config center (zookeeper): 127.0.0.1:2181 in 30000ms. at org.apache.dubbo.configcenter.support.zookeeper.ZookeeperDynamicConfiguration.initWith(ZookeeperDynamicConfiguration.java:79) at org.apache.dubbo.configcenter.AbstractDynamicConfiguration.&lt;init&gt;(AbstractDynamicConfiguration.java:46) at org.apache.dubbo.configcenter.support.zookeeper.ZookeeperDynamicConfiguration.&lt;init&gt;(ZookeeperDynamicConfiguration.java:62) at org.apache.dubbo.configcenter.support.zookeeper.ZookeeperDynamicConfigurationFactory.createDynamicConfiguration(ZookeeperDynamicConfigurationFactory.java:29) at org.apache.dubbo.configcenter.AbstractDynamicConfigurationFactory.getDynamicConfiguration(AbstractDynamicConfigurationFactory.java:33) at org.apache.dubbo.config.ConfigCenterConfig.startDynamicConfiguration(ConfigCenterConfig.java:105) at org.apache.dubbo.config.ConfigCenterConfig.init(ConfigCenterConfig.java:82) at org.apache.dubbo.config.spring.ConfigCenterBean.afterPropertiesSet(ConfigCenterBean.java:98) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1688) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1626) ... 12 more"><pre class="notranslate"><code class="notranslate">Caused by: java.lang.IllegalStateException: Failed to connect to config center (zookeeper): 127.0.0.1:2181 in 30000ms. at org.apache.dubbo.configcenter.support.zookeeper.ZookeeperDynamicConfiguration.initWith(ZookeeperDynamicConfiguration.java:79) at org.apache.dubbo.configcenter.AbstractDynamicConfiguration.&lt;init&gt;(AbstractDynamicConfiguration.java:46) at org.apache.dubbo.configcenter.support.zookeeper.ZookeeperDynamicConfiguration.&lt;init&gt;(ZookeeperDynamicConfiguration.java:62) at org.apache.dubbo.configcenter.support.zookeeper.ZookeeperDynamicConfigurationFactory.createDynamicConfiguration(ZookeeperDynamicConfigurationFactory.java:29) at org.apache.dubbo.configcenter.AbstractDynamicConfigurationFactory.getDynamicConfiguration(AbstractDynamicConfigurationFactory.java:33) at org.apache.dubbo.config.ConfigCenterConfig.startDynamicConfiguration(ConfigCenterConfig.java:105) at org.apache.dubbo.config.ConfigCenterConfig.init(ConfigCenterConfig.java:82) at org.apache.dubbo.config.spring.ConfigCenterBean.afterPropertiesSet(ConfigCenterBean.java:98) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1688) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1626) ... 12 more </code></pre></div> <p dir="auto">People may not install zookeeper locally, we need to restore the behavior to use multicast as default registry.</p>
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li> </ul> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>Dubbo version: 2.7.3</li> <li>Operating System version: macOs</li> <li>Java version: 1.8</li> </ul> <h3 dir="auto">Steps to reproduce this issue</h3> <ol dir="auto"> <li>export service with protocolConfig defined as below in API mode.</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ProtocolConfig protocolConfig = new ProtocolConfig(); protocolConfig.setPort(20880); protocolConfig.setIothreads(2); ServiceConfig messageService = new ServiceConfig(); messageService.setProtocol(protocolConfig);"><pre class="notranslate"><code class="notranslate">ProtocolConfig protocolConfig = new ProtocolConfig(); protocolConfig.setPort(20880); protocolConfig.setIothreads(2); ServiceConfig messageService = new ServiceConfig(); messageService.setProtocol(protocolConfig); </code></pre></div> <ol start="2" dir="auto"> <li>export another service with default protocol as below in XML mode.</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;bean id=&quot;demoService&quot; class=&quot;com.ctrip.framework.cdubbo.api.DemoServiceImpl&quot;/&gt; &lt;dubbo:service interface=&quot;com.ctrip.framework.cdubbo.api.DemoService&quot; ref=&quot;demoService&quot;&gt; &lt;/dubbo:service&gt;"><pre class="notranslate"><code class="notranslate">&lt;bean id="demoService" class="com.ctrip.framework.cdubbo.api.DemoServiceImpl"/&gt; &lt;dubbo:service interface="com.ctrip.framework.cdubbo.api.DemoService" ref="demoService"&gt; &lt;/dubbo:service&gt; </code></pre></div> <ol start="3" dir="auto"> <li>XML service get API service's protocol, which makes port and iothreads parameter incorrect.</li> </ol> <p dir="auto">Pls. provide [GitHub address] to reproduce this issue.</p> <h3 dir="auto">Expected Result</h3> <p dir="auto">XML service's port should in default 20880.</p> <h3 dir="auto">Actual Result</h3> <p dir="auto">XML service's port is 20770, and iothreds is 2.</p>
0
<h1 dir="auto">Checklist</h1> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" 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>[ x 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 dir="auto"> <li>[-] I have tried reproducing the issue on more than one Python version<br> and/or implementation.</li> <li>[-] I have tried reproducing the issue on more than one message broker and/or<br> result backend.</li> <li>[-] I have tried reproducing the issue on more than one version of the message<br> broker and/or result backend.</li> <li>[-] I have tried reproducing the issue on more than one operating system.</li> <li>[-] I have tried reproducing the issue on more than one workers pool.</li> <li>[-] I have tried reproducing the issue with autoscaling, retries,<br> ETA/Countdown &amp; rate limits disabled.</li> <li>[-] I have tried reproducing the issue after downgrading<br> and/or upgrading Celery and its dependencies.</li> </ul> <h2 dir="auto">Related Issues and Possible Duplicates</h2> <h4 dir="auto">Related Issues</h4> <ul dir="auto"> <li>None</li> </ul> <h4 dir="auto">Possible Duplicates</h4> <ul dir="auto"> <li>None</li> </ul> <h2 dir="auto">Environment &amp; Settings</h2> 4.3.0 (rhubarb) <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 -&gt; celery:4.3.0 (rhubarb) kombu:4.6.1 py:3.6.9 billiard:3.6.0.0 redis:3.2.1 platform -&gt; system:Darwin arch:64bit kernel version:17.7.0 imp:CPython loader -&gt; celery.loaders.app.AppLoader settings -&gt; transport:redis results:redis://localhost:6379/0 accept_content: ['application/json', 'application/x-python-serialize', 'application/x-bson'] broker_heartbeat: 0 broker_url: 'redis://localhost:6379/0' enable_utc: True imports: ('service.tasks',)"><pre class="notranslate"><code class="notranslate"> software -&gt; celery:4.3.0 (rhubarb) kombu:4.6.1 py:3.6.9 billiard:3.6.0.0 redis:3.2.1 platform -&gt; system:Darwin arch:64bit kernel version:17.7.0 imp:CPython loader -&gt; celery.loaders.app.AppLoader settings -&gt; transport:redis results:redis://localhost:6379/0 accept_content: ['application/json', 'application/x-python-serialize', 'application/x-bson'] broker_heartbeat: 0 broker_url: 'redis://localhost:6379/0' enable_utc: True imports: ('service.tasks',) </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.6.9</li> <li><strong>Minimal Celery Version</strong>: 4.3</li> <li><strong>Minimal Kombu Version</strong>: N/A or Unknown</li> <li><strong>Minimal Broker Version</strong>: N/A or Unknown</li> <li><strong>Minimal Result Backend Version</strong>: N/A or Unknown</li> <li><strong>Minimal OS and/or Kernel Version</strong>: N/A or Unknown</li> <li><strong>Minimal Broker Client Version</strong>: N/A or Unknown</li> <li><strong>Minimal Result Backend Client Version</strong>: N/A or Unknown</li> </ul> <h3 dir="auto">Python Packages</h3> <details> <summary><b><code class="notranslate">pip freeze</code> Output:</b></summary> <p dir="auto"> </p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="alembic==1.0.10 amqp==2.5.0 aniso8601==6.0.0 billiard==3.6.0.0 boto3==1.9.162 botocore==1.12.162 bson==0.5.8 celery==4.3.0 certifi==2019.3.9 chardet==3.0.4 Click==7.0 docutils==0.14 Flask==1.0.3 Flask-RESTful==0.3.7 gevent==1.4.0 greenlet==0.4.15 grequests==0.3.0 idna==2.7 itsdangerous==1.1.0 Jinja2==2.10.1 jmespath==0.9.4 kombu==4.6.1 Mako==1.0.12 MarkupSafe==1.1.1 pg8000==1.12.3 psycopg2==2.7.5 pylru==1.2.0 python-dateutil==2.8.0 python-editor==1.0.4 python-json-logger==0.1.11 pytz==2019.1 redis==3.2.1 requests==2.19.1 s3transfer==0.2.1 six==1.12.0 SQLAlchemy==1.3.4 urllib3==1.23 vine==1.3.0 Werkzeug==0.15.4"><pre class="notranslate"><code class="notranslate">alembic==1.0.10 amqp==2.5.0 aniso8601==6.0.0 billiard==3.6.0.0 boto3==1.9.162 botocore==1.12.162 bson==0.5.8 celery==4.3.0 certifi==2019.3.9 chardet==3.0.4 Click==7.0 docutils==0.14 Flask==1.0.3 Flask-RESTful==0.3.7 gevent==1.4.0 greenlet==0.4.15 grequests==0.3.0 idna==2.7 itsdangerous==1.1.0 Jinja2==2.10.1 jmespath==0.9.4 kombu==4.6.1 Mako==1.0.12 MarkupSafe==1.1.1 pg8000==1.12.3 psycopg2==2.7.5 pylru==1.2.0 python-dateutil==2.8.0 python-editor==1.0.4 python-json-logger==0.1.11 pytz==2019.1 redis==3.2.1 requests==2.19.1 s3transfer==0.2.1 six==1.12.0 SQLAlchemy==1.3.4 urllib3==1.23 vine==1.3.0 Werkzeug==0.15.4 </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> <p dir="auto">a chord over redis broker, one of the tasks raises exception and the error is not registered correctly in celery. the exception is as follows:</p> <details> <p dir="auto"> </p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[r-celery-worker-cpu-5d47cffb98-n86dz] [2019-11-21 14:47:26,053: ERROR/ForkPoolWorker-1] Chord callback for 'b30c24c5-9653-49bf-8917-87742b82155c' raised: TypeError('__init__() takes 1 positional argument but 2 were given',) [r-celery-worker-cpu-5d47cffb98-n86dz] Traceback (most recent call last): [r-celery-worker-cpu-5d47cffb98-n86dz] File &quot;/usr/local/lib/python3.6/site-packages/celery/backends/redis.py&quot;, line 399, in on_chord_part_return [r-celery-worker-cpu-5d47cffb98-n86dz] callback.delay([unpack(tup, decode) for tup in resl]) [r-celery-worker-cpu-5d47cffb98-n86dz] File &quot;/usr/local/lib/python3.6/site-packages/celery/backends/redis.py&quot;, line 399, in &lt;listcomp&gt; [r-celery-worker-cpu-5d47cffb98-n86dz] callback.delay([unpack(tup, decode) for tup in resl]) [r-celery-worker-cpu-5d47cffb98-n86dz] File &quot;/usr/local/lib/python3.6/site-packages/celery/backends/redis.py&quot;, line 350, in _unpack_chord_result [r-celery-worker-cpu-5d47cffb98-n86dz] retval = self.exception_to_python(retval) [r-celery-worker-cpu-5d47cffb98-n86dz] File &quot;/usr/local/lib/python3.6/site-packages/celery/backends/base.py&quot;, line 281, in exception_to_python [r-celery-worker-cpu-5d47cffb98-n86dz] exc = cls(*exc_msg if isinstance(exc_msg, tuple) else exc_msg) [r-celery-worker-cpu-5d47cffb98-n86dz] TypeError: __init__() takes 1 positional argument but 2 were given "><pre class="notranslate"><code class="notranslate">[r-celery-worker-cpu-5d47cffb98-n86dz] [2019-11-21 14:47:26,053: ERROR/ForkPoolWorker-1] Chord callback for 'b30c24c5-9653-49bf-8917-87742b82155c' raised: TypeError('__init__() takes 1 positional argument but 2 were given',) [r-celery-worker-cpu-5d47cffb98-n86dz] Traceback (most recent call last): [r-celery-worker-cpu-5d47cffb98-n86dz] File "/usr/local/lib/python3.6/site-packages/celery/backends/redis.py", line 399, in on_chord_part_return [r-celery-worker-cpu-5d47cffb98-n86dz] callback.delay([unpack(tup, decode) for tup in resl]) [r-celery-worker-cpu-5d47cffb98-n86dz] File "/usr/local/lib/python3.6/site-packages/celery/backends/redis.py", line 399, in &lt;listcomp&gt; [r-celery-worker-cpu-5d47cffb98-n86dz] callback.delay([unpack(tup, decode) for tup in resl]) [r-celery-worker-cpu-5d47cffb98-n86dz] File "/usr/local/lib/python3.6/site-packages/celery/backends/redis.py", line 350, in _unpack_chord_result [r-celery-worker-cpu-5d47cffb98-n86dz] retval = self.exception_to_python(retval) [r-celery-worker-cpu-5d47cffb98-n86dz] File "/usr/local/lib/python3.6/site-packages/celery/backends/base.py", line 281, in exception_to_python [r-celery-worker-cpu-5d47cffb98-n86dz] exc = cls(*exc_msg if isinstance(exc_msg, tuple) else exc_msg) [r-celery-worker-cpu-5d47cffb98-n86dz] TypeError: __init__() takes 1 positional argument but 2 were given </code></pre></div> <p dir="auto"></p> </details> <h1 dir="auto">Expected Behavior</h1> <p dir="auto">the chord should fail safely and call the on_error callback</p> <h1 dir="auto">Actual Behavior</h1> <p dir="auto">the original error is not written, and on error cb not called</p>
<h2 dir="auto">Checklist</h2> <ul dir="auto"> <li>Not able to scale up Celery Beat using Docker containers running on multiple servers without replicating the tasks. E.g: If I have 2 containers running, it would run the same task twice.</li> </ul> <h2 dir="auto">Steps to reproduce</h2> <h2 dir="auto">Expected behavior</h2> <ul dir="auto"> <li>Being able to scale up Celery Beat</li> </ul> <h2 dir="auto">Actual behavior</h2>
0
<p dir="auto">The following was unexpected:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="@generated function bar(args...) :( args[1] ) end julia&gt; @code_llvm bar(1,2,3) define %jl_value_t* @julia_bar_21185(%jl_value_t*, %jl_value_t**, i32) { top: %3 = alloca [3 x %jl_value_t*], align 8 %.sub = getelementptr inbounds [3 x %jl_value_t*]* %3, i64 0, i64 0 %4 = getelementptr [3 x %jl_value_t*]* %3, i64 0, i64 2 store %jl_value_t* inttoptr (i64 2 to %jl_value_t*), %jl_value_t** %.sub, align 8 %5 = getelementptr [3 x %jl_value_t*]* %3, i64 0, i64 1 %6 = load %jl_value_t*** @jl_pgcstack, align 8 %.c = bitcast %jl_value_t** %6 to %jl_value_t* store %jl_value_t* %.c, %jl_value_t** %5, align 8 store %jl_value_t** %.sub, %jl_value_t*** @jl_pgcstack, align 8 store %jl_value_t* null, %jl_value_t** %4, align 8 %7 = icmp eq i32 %2, 0 br i1 %7, label %fail, label %pass fail: ; preds = %top call void @jl_bounds_error_tuple_int(%jl_value_t** %1, i64 0, i64 1) unreachable pass: ; preds = %top %8 = load %jl_value_t** %1, align 8 %9 = load %jl_value_t** %5, align 8 %10 = getelementptr inbounds %jl_value_t* %9, i64 0, i32 0 store %jl_value_t** %10, %jl_value_t*** @jl_pgcstack, align 8 ret %jl_value_t* %8 }"><pre class="notranslate"><code class="notranslate">@generated function bar(args...) :( args[1] ) end julia&gt; @code_llvm bar(1,2,3) define %jl_value_t* @julia_bar_21185(%jl_value_t*, %jl_value_t**, i32) { top: %3 = alloca [3 x %jl_value_t*], align 8 %.sub = getelementptr inbounds [3 x %jl_value_t*]* %3, i64 0, i64 0 %4 = getelementptr [3 x %jl_value_t*]* %3, i64 0, i64 2 store %jl_value_t* inttoptr (i64 2 to %jl_value_t*), %jl_value_t** %.sub, align 8 %5 = getelementptr [3 x %jl_value_t*]* %3, i64 0, i64 1 %6 = load %jl_value_t*** @jl_pgcstack, align 8 %.c = bitcast %jl_value_t** %6 to %jl_value_t* store %jl_value_t* %.c, %jl_value_t** %5, align 8 store %jl_value_t** %.sub, %jl_value_t*** @jl_pgcstack, align 8 store %jl_value_t* null, %jl_value_t** %4, align 8 %7 = icmp eq i32 %2, 0 br i1 %7, label %fail, label %pass fail: ; preds = %top call void @jl_bounds_error_tuple_int(%jl_value_t** %1, i64 0, i64 1) unreachable pass: ; preds = %top %8 = load %jl_value_t** %1, align 8 %9 = load %jl_value_t** %5, align 8 %10 = getelementptr inbounds %jl_value_t* %9, i64 0, i32 0 store %jl_value_t** %10, %jl_value_t*** @jl_pgcstack, align 8 ret %jl_value_t* %8 } </code></pre></div> <p dir="auto">I was hoping that the code would look more like this:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="function bar2(a,b,c) return a end julia&gt; @code_llvm bar2(1,2,3) define i64 @julia_bar2_21186(i64, i64, i64) { top: ret i64 %0 }"><pre class="notranslate"><code class="notranslate">function bar2(a,b,c) return a end julia&gt; @code_llvm bar2(1,2,3) define i64 @julia_bar2_21186(i64, i64, i64) { top: ret i64 %0 } </code></pre></div> <p dir="auto">Am I doing anything wrong?</p> <p dir="auto">CC <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/joehuchette/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/joehuchette">@joehuchette</a></p>
<p dir="auto">It seems that for both <code class="notranslate">f(args...)</code> and <code class="notranslate">f(args)</code> (called with a tuple), the function is specialized to take a tuple as argument. However, in the first case, the argument is always boxed into a <code class="notranslate">jl_value_t*</code> before passing in while for the second case (at least after) the tuple type change, no boxing/gc frame is necessary.</p> <p dir="auto">From the output from the example code below, it seems that the function is already specialized on the types of the arguments although they are somehow still using the generic <code class="notranslate">jl_value_t*</code> type as the type for both input and output.</p> <p dir="auto">Example code</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@noinline f1(args...) = args @noinline f2(args) = args g1() = f1(1, 2, 3) g2() = f2((1, 2, 3)) function time_func(f::Function, args...) println(f) f(args...) gc() @time for i in 1:1000000 f(args...) end gc() end @code_llvm g1() @code_llvm f1(1, 2, 3) @code_llvm g2() @code_llvm f2((1, 2, 3)) time_func(g1) time_func(g2)"><pre class="notranslate"><span class="pl-c1">@noinline</span> <span class="pl-en">f1</span>(args<span class="pl-k">...</span>) <span class="pl-k">=</span> args <span class="pl-c1">@noinline</span> <span class="pl-en">f2</span>(args) <span class="pl-k">=</span> args <span class="pl-en">g1</span>() <span class="pl-k">=</span> <span class="pl-c1">f1</span>(<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">3</span>) <span class="pl-en">g2</span>() <span class="pl-k">=</span> <span class="pl-c1">f2</span>((<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">3</span>)) <span class="pl-k">function</span> <span class="pl-en">time_func</span>(f<span class="pl-k">::</span><span class="pl-c1">Function</span>, args<span class="pl-k">...</span>) <span class="pl-c1">println</span>(f) <span class="pl-c1">f</span>(args<span class="pl-k">...</span>) <span class="pl-c1">gc</span>() <span class="pl-c1">@time</span> <span class="pl-k">for</span> i <span class="pl-k">in</span> <span class="pl-c1">1</span><span class="pl-k">:</span><span class="pl-c1">1000000</span> <span class="pl-c1">f</span>(args<span class="pl-k">...</span>) <span class="pl-k">end</span> <span class="pl-c1">gc</span>() <span class="pl-k">end</span> <span class="pl-c1">@code_llvm</span> <span class="pl-c1">g1</span>() <span class="pl-c1">@code_llvm</span> <span class="pl-c1">f1</span>(<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">3</span>) <span class="pl-c1">@code_llvm</span> <span class="pl-c1">g2</span>() <span class="pl-c1">@code_llvm</span> <span class="pl-c1">f2</span>((<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">3</span>)) <span class="pl-c1">time_func</span>(g1) <span class="pl-c1">time_func</span>(g2)</pre></div> <p dir="auto">Output</p> <div class="highlight highlight-source-llvm notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="define [3 x i64] @julia_g1_44267() { top: %0 = alloca [5 x %jl_value_t*], align 8 %.sub = getelementptr inbounds [5 x %jl_value_t*]* %0, i64 0, i64 0 %1 = getelementptr [5 x %jl_value_t*]* %0, i64 0, i64 2 %2 = bitcast [5 x %jl_value_t*]* %0 to i64* store i64 6, i64* %2, align 8 %3 = getelementptr [5 x %jl_value_t*]* %0, i64 0, i64 1 %4 = bitcast %jl_value_t** %3 to %jl_value_t*** %5 = load %jl_value_t*** @jl_pgcstack, align 8 store %jl_value_t** %5, %jl_value_t*** %4, align 8 store %jl_value_t** %.sub, %jl_value_t*** @jl_pgcstack, align 8 %6 = getelementptr [5 x %jl_value_t*]* %0, i64 0, i64 3 %7 = getelementptr [5 x %jl_value_t*]* %0, i64 0, i64 4 store %jl_value_t* inttoptr (i64 139909651832960 to %jl_value_t*), %jl_value_t** %1, align 8 store %jl_value_t* inttoptr (i64 139909651833008 to %jl_value_t*), %jl_value_t** %6, align 8 store %jl_value_t* inttoptr (i64 139909651833056 to %jl_value_t*), %jl_value_t** %7, align 8 %8 = call %jl_value_t* @julia_f1_44268(%jl_value_t* inttoptr (i64 139909684716976 to %jl_value_t*), %jl_value_t** %1, i32 3) %9 = bitcast %jl_value_t* %8 to [3 x i64]* %10 = load [3 x i64]* %9, align 8 %11 = load %jl_value_t*** %4, align 8 store %jl_value_t** %11, %jl_value_t*** @jl_pgcstack, align 8 ret [3 x i64] %10 } define %jl_value_t* @julia_f1_44268(%jl_value_t*, %jl_value_t**, i32) { top: %3 = alloca [3 x %jl_value_t*], align 8 %.sub = getelementptr inbounds [3 x %jl_value_t*]* %3, i64 0, i64 0 %4 = getelementptr [3 x %jl_value_t*]* %3, i64 0, i64 2 %5 = bitcast [3 x %jl_value_t*]* %3 to i64* store i64 2, i64* %5, align 8 %6 = getelementptr [3 x %jl_value_t*]* %3, i64 0, i64 1 %7 = bitcast %jl_value_t** %6 to %jl_value_t*** %8 = load %jl_value_t*** @jl_pgcstack, align 8 store %jl_value_t** %8, %jl_value_t*** %7, align 8 store %jl_value_t** %.sub, %jl_value_t*** @jl_pgcstack, align 8 store %jl_value_t* null, %jl_value_t** %4, align 8 %9 = call %jl_value_t* @jl_f_tuple(%jl_value_t* null, %jl_value_t** %1, i32 %2) store %jl_value_t* %9, %jl_value_t** %4, align 8 %10 = load %jl_value_t*** %7, align 8 store %jl_value_t** %10, %jl_value_t*** @jl_pgcstack, align 8 ret %jl_value_t* %9 } define [3 x i64] @julia_g2_44275() { top: %0 = call [3 x i64] @julia_f2_44276([3 x i64] [i64 1, i64 2, i64 3]) ret [3 x i64] %0 } define [3 x i64] @julia_f2_44276([3 x i64]) { top: ret [3 x i64] %0 } g1 elapsed time: 0.193401883 seconds (61 MB allocated, 14.06% gc time in 2 pauses with 0 full sweep) g2 elapsed time: 0.025389954 seconds (30 MB allocated, 1.64% gc time in 1 pauses with 0 full sweep)"><pre class="notranslate"><span class="pl-k">define</span> [<span class="pl-c1">3</span> x <span class="pl-k">i64</span>] <span class="pl-c1">@julia_g1_44267</span>() { top: <span class="pl-c1">%0</span> = <span class="pl-k">alloca</span> [<span class="pl-c1">5</span> x <span class="pl-k">%jl_value_t*</span>], <span class="pl-k">align</span> <span class="pl-c1">8</span> <span class="pl-c1">%.sub</span> = <span class="pl-k">getelementptr</span> <span class="pl-k">inbounds</span> [<span class="pl-c1">5</span> x <span class="pl-k">%jl_value_t*</span>]* <span class="pl-c1">%0</span>, <span class="pl-k">i64</span> <span class="pl-c1">0</span>, <span class="pl-k">i64</span> <span class="pl-c1">0</span> <span class="pl-c1">%1</span> = <span class="pl-k">getelementptr</span> [<span class="pl-c1">5</span> x <span class="pl-k">%jl_value_t*</span>]* <span class="pl-c1">%0</span>, <span class="pl-k">i64</span> <span class="pl-c1">0</span>, <span class="pl-k">i64</span> <span class="pl-c1">2</span> <span class="pl-c1">%2</span> = <span class="pl-k">bitcast</span> [<span class="pl-c1">5</span> x <span class="pl-k">%jl_value_t*</span>]* <span class="pl-c1">%0</span> <span class="pl-k">to</span> <span class="pl-k">i64*</span> <span class="pl-k">store</span> <span class="pl-k">i64</span> <span class="pl-c1">6</span>, <span class="pl-k">i64*</span> <span class="pl-c1">%2</span>, <span class="pl-k">align</span> <span class="pl-c1">8</span> <span class="pl-c1">%3</span> = <span class="pl-k">getelementptr</span> [<span class="pl-c1">5</span> x <span class="pl-k">%jl_value_t*</span>]* <span class="pl-c1">%0</span>, <span class="pl-k">i64</span> <span class="pl-c1">0</span>, <span class="pl-k">i64</span> <span class="pl-c1">1</span> <span class="pl-c1">%4</span> = <span class="pl-k">bitcast</span> <span class="pl-k">%jl_value_t**</span> <span class="pl-c1">%3</span> <span class="pl-k">to</span> <span class="pl-k">%jl_value_t***</span> <span class="pl-c1">%5</span> = <span class="pl-k">load</span> <span class="pl-k">%jl_value_t***</span> <span class="pl-c1">@jl_pgcstack</span>, <span class="pl-k">align</span> <span class="pl-c1">8</span> <span class="pl-k">store</span> <span class="pl-k">%jl_value_t**</span> <span class="pl-c1">%5</span>, <span class="pl-k">%jl_value_t***</span> <span class="pl-c1">%4</span>, <span class="pl-k">align</span> <span class="pl-c1">8</span> <span class="pl-k">store</span> <span class="pl-k">%jl_value_t**</span> <span class="pl-c1">%.sub</span>, <span class="pl-k">%jl_value_t***</span> <span class="pl-c1">@jl_pgcstack</span>, <span class="pl-k">align</span> <span class="pl-c1">8</span> <span class="pl-c1">%6</span> = <span class="pl-k">getelementptr</span> [<span class="pl-c1">5</span> x <span class="pl-k">%jl_value_t*</span>]* <span class="pl-c1">%0</span>, <span class="pl-k">i64</span> <span class="pl-c1">0</span>, <span class="pl-k">i64</span> <span class="pl-c1">3</span> <span class="pl-c1">%7</span> = <span class="pl-k">getelementptr</span> [<span class="pl-c1">5</span> x <span class="pl-k">%jl_value_t*</span>]* <span class="pl-c1">%0</span>, <span class="pl-k">i64</span> <span class="pl-c1">0</span>, <span class="pl-k">i64</span> <span class="pl-c1">4</span> <span class="pl-k">store</span> <span class="pl-k">%jl_value_t*</span> <span class="pl-k">inttoptr</span> (<span class="pl-k">i64</span> <span class="pl-c1">139909651832960</span> <span class="pl-k">to</span> <span class="pl-k">%jl_value_t*</span>), <span class="pl-k">%jl_value_t**</span> <span class="pl-c1">%1</span>, <span class="pl-k">align</span> <span class="pl-c1">8</span> <span class="pl-k">store</span> <span class="pl-k">%jl_value_t*</span> <span class="pl-k">inttoptr</span> (<span class="pl-k">i64</span> <span class="pl-c1">139909651833008</span> <span class="pl-k">to</span> <span class="pl-k">%jl_value_t*</span>), <span class="pl-k">%jl_value_t**</span> <span class="pl-c1">%6</span>, <span class="pl-k">align</span> <span class="pl-c1">8</span> <span class="pl-k">store</span> <span class="pl-k">%jl_value_t*</span> <span class="pl-k">inttoptr</span> (<span class="pl-k">i64</span> <span class="pl-c1">139909651833056</span> <span class="pl-k">to</span> <span class="pl-k">%jl_value_t*</span>), <span class="pl-k">%jl_value_t**</span> <span class="pl-c1">%7</span>, <span class="pl-k">align</span> <span class="pl-c1">8</span> <span class="pl-c1">%8</span> = <span class="pl-k">call</span> <span class="pl-k">%jl_value_t*</span> <span class="pl-c1">@julia_f1_44268</span>(<span class="pl-k">%jl_value_t*</span> <span class="pl-k">inttoptr</span> (<span class="pl-k">i64</span> <span class="pl-c1">139909684716976</span> <span class="pl-k">to</span> <span class="pl-k">%jl_value_t*</span>), <span class="pl-k">%jl_value_t**</span> <span class="pl-c1">%1</span>, <span class="pl-k">i32</span> <span class="pl-c1">3</span>) <span class="pl-c1">%9</span> = <span class="pl-k">bitcast</span> <span class="pl-k">%jl_value_t*</span> <span class="pl-c1">%8</span> <span class="pl-k">to</span> [<span class="pl-c1">3</span> x <span class="pl-k">i64</span>]* <span class="pl-c1">%10</span> = <span class="pl-k">load</span> [<span class="pl-c1">3</span> x <span class="pl-k">i64</span>]* <span class="pl-c1">%9</span>, <span class="pl-k">align</span> <span class="pl-c1">8</span> <span class="pl-c1">%11</span> = <span class="pl-k">load</span> <span class="pl-k">%jl_value_t***</span> <span class="pl-c1">%4</span>, <span class="pl-k">align</span> <span class="pl-c1">8</span> <span class="pl-k">store</span> <span class="pl-k">%jl_value_t**</span> <span class="pl-c1">%11</span>, <span class="pl-k">%jl_value_t***</span> <span class="pl-c1">@jl_pgcstack</span>, <span class="pl-k">align</span> <span class="pl-c1">8</span> <span class="pl-k">ret</span> [<span class="pl-c1">3</span> x <span class="pl-k">i64</span>] <span class="pl-c1">%10</span> } <span class="pl-k">define</span> <span class="pl-k">%jl_value_t*</span> <span class="pl-c1">@julia_f1_44268</span>(<span class="pl-k">%jl_value_t*</span>, <span class="pl-k">%jl_value_t**</span>, <span class="pl-k">i32</span>) { top: <span class="pl-c1">%3</span> = <span class="pl-k">alloca</span> [<span class="pl-c1">3</span> x <span class="pl-k">%jl_value_t*</span>], <span class="pl-k">align</span> <span class="pl-c1">8</span> <span class="pl-c1">%.sub</span> = <span class="pl-k">getelementptr</span> <span class="pl-k">inbounds</span> [<span class="pl-c1">3</span> x <span class="pl-k">%jl_value_t*</span>]* <span class="pl-c1">%3</span>, <span class="pl-k">i64</span> <span class="pl-c1">0</span>, <span class="pl-k">i64</span> <span class="pl-c1">0</span> <span class="pl-c1">%4</span> = <span class="pl-k">getelementptr</span> [<span class="pl-c1">3</span> x <span class="pl-k">%jl_value_t*</span>]* <span class="pl-c1">%3</span>, <span class="pl-k">i64</span> <span class="pl-c1">0</span>, <span class="pl-k">i64</span> <span class="pl-c1">2</span> <span class="pl-c1">%5</span> = <span class="pl-k">bitcast</span> [<span class="pl-c1">3</span> x <span class="pl-k">%jl_value_t*</span>]* <span class="pl-c1">%3</span> <span class="pl-k">to</span> <span class="pl-k">i64*</span> <span class="pl-k">store</span> <span class="pl-k">i64</span> <span class="pl-c1">2</span>, <span class="pl-k">i64*</span> <span class="pl-c1">%5</span>, <span class="pl-k">align</span> <span class="pl-c1">8</span> <span class="pl-c1">%6</span> = <span class="pl-k">getelementptr</span> [<span class="pl-c1">3</span> x <span class="pl-k">%jl_value_t*</span>]* <span class="pl-c1">%3</span>, <span class="pl-k">i64</span> <span class="pl-c1">0</span>, <span class="pl-k">i64</span> <span class="pl-c1">1</span> <span class="pl-c1">%7</span> = <span class="pl-k">bitcast</span> <span class="pl-k">%jl_value_t**</span> <span class="pl-c1">%6</span> <span class="pl-k">to</span> <span class="pl-k">%jl_value_t***</span> <span class="pl-c1">%8</span> = <span class="pl-k">load</span> <span class="pl-k">%jl_value_t***</span> <span class="pl-c1">@jl_pgcstack</span>, <span class="pl-k">align</span> <span class="pl-c1">8</span> <span class="pl-k">store</span> <span class="pl-k">%jl_value_t**</span> <span class="pl-c1">%8</span>, <span class="pl-k">%jl_value_t***</span> <span class="pl-c1">%7</span>, <span class="pl-k">align</span> <span class="pl-c1">8</span> <span class="pl-k">store</span> <span class="pl-k">%jl_value_t**</span> <span class="pl-c1">%.sub</span>, <span class="pl-k">%jl_value_t***</span> <span class="pl-c1">@jl_pgcstack</span>, <span class="pl-k">align</span> <span class="pl-c1">8</span> <span class="pl-k">store</span> <span class="pl-k">%jl_value_t*</span> <span class="pl-k">null</span>, <span class="pl-k">%jl_value_t**</span> <span class="pl-c1">%4</span>, <span class="pl-k">align</span> <span class="pl-c1">8</span> <span class="pl-c1">%9</span> = <span class="pl-k">call</span> <span class="pl-k">%jl_value_t*</span> <span class="pl-c1">@jl_f_tuple</span>(<span class="pl-k">%jl_value_t*</span> <span class="pl-k">null</span>, <span class="pl-k">%jl_value_t**</span> <span class="pl-c1">%1</span>, <span class="pl-k">i32</span> <span class="pl-c1">%2</span>) <span class="pl-k">store</span> <span class="pl-k">%jl_value_t*</span> <span class="pl-c1">%9</span>, <span class="pl-k">%jl_value_t**</span> <span class="pl-c1">%4</span>, <span class="pl-k">align</span> <span class="pl-c1">8</span> <span class="pl-c1">%10</span> = <span class="pl-k">load</span> <span class="pl-k">%jl_value_t***</span> <span class="pl-c1">%7</span>, <span class="pl-k">align</span> <span class="pl-c1">8</span> <span class="pl-k">store</span> <span class="pl-k">%jl_value_t**</span> <span class="pl-c1">%10</span>, <span class="pl-k">%jl_value_t***</span> <span class="pl-c1">@jl_pgcstack</span>, <span class="pl-k">align</span> <span class="pl-c1">8</span> <span class="pl-k">ret</span> <span class="pl-k">%jl_value_t*</span> <span class="pl-c1">%9</span> } <span class="pl-k">define</span> [<span class="pl-c1">3</span> x <span class="pl-k">i64</span>] <span class="pl-c1">@julia_g2_44275</span>() { top: <span class="pl-c1">%0</span> = <span class="pl-k">call</span> [<span class="pl-c1">3</span> x <span class="pl-k">i64</span>] <span class="pl-c1">@julia_f2_44276</span>([<span class="pl-c1">3</span> x <span class="pl-k">i64</span>] [<span class="pl-k">i64</span> <span class="pl-c1">1</span>, <span class="pl-k">i64</span> <span class="pl-c1">2</span>, <span class="pl-k">i64</span> <span class="pl-c1">3</span>]) <span class="pl-k">ret</span> [<span class="pl-c1">3</span> x <span class="pl-k">i64</span>] <span class="pl-c1">%0</span> } <span class="pl-k">define</span> [<span class="pl-c1">3</span> x <span class="pl-k">i64</span>] <span class="pl-c1">@julia_f2_44276</span>([<span class="pl-c1">3</span> x <span class="pl-k">i64</span>]) { top: <span class="pl-k">ret</span> [<span class="pl-c1">3</span> x <span class="pl-k">i64</span>] <span class="pl-c1">%0</span> } g1 elapsed time: <span class="pl-c1">0</span>.<span class="pl-c1">193401883</span> seconds (<span class="pl-c1">61</span> MB allocated, <span class="pl-c1">14</span>.<span class="pl-c1">06</span>% <span class="pl-k">gc</span> time in <span class="pl-c1">2</span> pauses with <span class="pl-c1">0</span> full sweep) g2 elapsed time: <span class="pl-c1">0</span>.<span class="pl-c1">025389954</span> seconds (<span class="pl-c1">30</span> MB allocated, <span class="pl-c1">1</span>.<span class="pl-c1">64</span>% <span class="pl-k">gc</span> time in <span class="pl-c1">1</span> pauses with <span class="pl-c1">0</span> full sweep)</pre></div> <p dir="auto">(Related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="75589625" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/11244" data-hovercard-type="pull_request" data-hovercard-url="/JuliaLang/julia/pull/11244/hovercard" href="https://github.com/JuliaLang/julia/pull/11244">#11244</a>)</p>
1
<p dir="auto">In the meantime, using the above ideas here is what I came up with:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { withRouter } from 'next/router'; export const withPageRouter = Component =&gt; { return withRouter(({ router, ...props }) =&gt; { router.query = [ ...new URLSearchParams((router.asPath || '').split(/\?/)[1]).entries() ].reduce((q, [k, v]) =&gt; Object.assign(q, { [k]: v }), {}); return &lt;Component {...props} router={router} /&gt;; }); }; "><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">withRouter</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'next/router'</span><span class="pl-kos">;</span> <span class="pl-k">export</span> <span class="pl-k">const</span> <span class="pl-en">withPageRouter</span> <span class="pl-c1">=</span> <span class="pl-v">Component</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-en">withRouter</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">{</span> router<span class="pl-kos">,</span> ...<span class="pl-s1">props</span> <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-s1">router</span><span class="pl-kos">.</span><span class="pl-c1">query</span> <span class="pl-c1">=</span> <span class="pl-kos">[</span> ...<span class="pl-k">new</span> <span class="pl-v">URLSearchParams</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">router</span><span class="pl-kos">.</span><span class="pl-c1">asPath</span> <span class="pl-c1">||</span> <span class="pl-s">''</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">split</span><span class="pl-kos">(</span><span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\?</span><span class="pl-c1">/</span></span><span class="pl-kos">)</span><span class="pl-kos">[</span><span class="pl-c1">1</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">entries</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-en">reduce</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">q</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s1">k</span><span class="pl-kos">,</span> <span class="pl-s1">v</span><span class="pl-kos">]</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">assign</span><span class="pl-kos">(</span><span class="pl-s1">q</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-kos">[</span><span class="pl-s1">k</span><span class="pl-kos">]</span>: <span class="pl-s1">v</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">return</span> <span class="pl-c1">&lt;</span><span class="pl-ent">Component</span> <span class="pl-kos">{</span>...<span class="pl-s1">props</span><span class="pl-kos">}</span> <span class="pl-c1">router</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-s1">router</span><span class="pl-kos">}</span> <span class="pl-c1">/</span><span class="pl-c1">&gt;</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">;</span></pre></div> <p dir="auto"><em>Originally posted by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/cansin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/cansin">@cansin</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="342645355" data-permission-text="Title is private" data-url="https://github.com/vercel/next.js/issues/4804" data-hovercard-type="issue" data-hovercard-url="/vercel/next.js/issues/4804/hovercard?comment_id=541420735&amp;comment_type=issue_comment" href="https://github.com/vercel/next.js/issues/4804#issuecomment-541420735">#4804 (comment)</a></em></p> <hr> <p dir="auto">We should make sure (add a test) that client-side query strings are correctly merged into statically exported pages post-hydration (for a normal and dynamically routed page).</p>
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues?q=test">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ npm run test"><pre class="notranslate">$ npm run <span class="pl-c1">test</span></pre></div> <p dir="auto">Should run testcases without mistakes</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5475069/38540314-25c3de5c-3cce-11e8-96f2-ac37c0ac4945.png"><img src="https://user-images.githubusercontent.com/5475069/38540314-25c3de5c-3cce-11e8-96f2-ac37c0ac4945.png" alt="image" style="max-width: 100%;"></a></p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <ol dir="auto"> <li>download next.js canary</li> <li><code class="notranslate">npm install</code></li> <li><code class="notranslate">npm run test</code></li> </ol> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>next</td> <td>canary</td> </tr> <tr> <td>node</td> <td>6.7.0</td> </tr> <tr> <td>OS</td> <td>Mac OS 10.12.6</td> </tr> <tr> <td>tty</td> <td>zsh</td> </tr> </tbody> </table>
0
<p dir="auto">From <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/michaelgaribaldi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/michaelgaribaldi">@michaelgaribaldi</a> on 2016-10-28T22:32:33Z</p> <h5 dir="auto">ISSUE TYPE</h5> <ul dir="auto"> <li>Bug Report</li> </ul> <h5 dir="auto">COMPONENT NAME</h5> <p dir="auto">eos_config</p> <h5 dir="auto">ANSIBLE VERSION</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.3.0 config file = /home/vagrant/iostest/ansible.cfg configured module search path = Default w/o overrides"><pre class="notranslate"><code class="notranslate">ansible 2.3.0 config file = /home/vagrant/iostest/ansible.cfg configured module search path = Default w/o overrides </code></pre></div> <h5 dir="auto">CONFIGURATION</h5> <p dir="auto">Using default config</p> <h5 dir="auto">OS / ENVIRONMENT</h5> <p dir="auto">Ubuntu managing Arista</p> <h5 dir="auto">SUMMARY</h5> <p dir="auto">In this special case when multiple VLANS are created without a name (or the same name) associated to them, the "show run" of an Arista config puts them in one line such as "vlan 10-11". This breaks the idempotency since it will attempt to add the VLAN again. It will attempt to add VLAN 10 or 11 again, for example. It appears as though during the running config check, the module is parsing for an individual VLAN line with that particualr VLAN.</p> <h5 dir="auto">STEPS TO REPRODUCE</h5> <ol dir="auto"> <li> <p dir="auto">Create a task that adds a NEW vlan to an arista switch. Do not add a name to this vlan at this time.</p> </li> <li> <p dir="auto">Run the task again but change make vlan 11 instead of vlan 10</p> </li> <li> <p dir="auto">Run the exact task in step 1...adding vlan 10 to the switch again</p> </li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#eos.yaml - name: role add vlan using eos_config module connection: local eos_config: lines: - vlan 10 provider: &quot;{{ cli }}&quot; register: vlan_created_out #arista-vlan.yaml --- - name: playbook - vlan add using eos_config hosts: eos gather_facts: no connection: local vars_files: - creds.yaml roles: - { role: vlan_add } "><pre class="notranslate"><code class="notranslate">#eos.yaml - name: role add vlan using eos_config module connection: local eos_config: lines: - vlan 10 provider: "{{ cli }}" register: vlan_created_out #arista-vlan.yaml --- - name: playbook - vlan add using eos_config hosts: eos gather_facts: no connection: local vars_files: - creds.yaml roles: - { role: vlan_add } </code></pre></div> <h5 dir="auto">EXPECTED RESULTS</h5> <p dir="auto">Step 1) Expected output, changed=1 and new vlan 10 created<br> Step 2) Expected output, changed=1 and new vlan 11 created<br> Step 3) Expected output, changed=0 and vlan 10 not attempted to be created</p> <h5 dir="auto">ACTUAL RESULTS</h5> <p dir="auto">Step 1) Expected output, changed=1 and new vlan 10 created<br> Step 2) Expected output, changed=1 and new vlan 11 created<br> Step 3) Expected output, changed=1 and vlan 10 attempted to be created again...you can see when logging AAA commands that the vlan is attempting to be created every time.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"> </code></pre></div> <p dir="auto">Copied from original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="186036486" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible-modules-core/issues/5430" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible-modules-core/issues/5430/hovercard" href="https://github.com/ansible/ansible-modules-core/issues/5430">ansible/ansible-modules-core#5430</a></p>
<p dir="auto">From <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/michaelgaribaldi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/michaelgaribaldi">@michaelgaribaldi</a> on 2016-10-28T22:32:33Z</p> <h5 dir="auto">ISSUE TYPE</h5> <ul dir="auto"> <li>Bug Report</li> </ul> <h5 dir="auto">COMPONENT NAME</h5> <p dir="auto">eos_config</p> <h5 dir="auto">ANSIBLE VERSION</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.3.0 config file = /home/vagrant/iostest/ansible.cfg configured module search path = Default w/o overrides"><pre class="notranslate"><code class="notranslate">ansible 2.3.0 config file = /home/vagrant/iostest/ansible.cfg configured module search path = Default w/o overrides </code></pre></div> <h5 dir="auto">CONFIGURATION</h5> <p dir="auto">Using default config</p> <h5 dir="auto">OS / ENVIRONMENT</h5> <p dir="auto">Ubuntu managing Arista</p> <h5 dir="auto">SUMMARY</h5> <p dir="auto">In this special case when multiple VLANS are created without a name (or the same name) associated to them, the "show run" of an Arista config puts them in one line such as "vlan 10-11". This breaks the idempotency since it will attempt to add the VLAN again. It will attempt to add VLAN 10 or 11 again, for example. It appears as though during the running config check, the module is parsing for an individual VLAN line with that particualr VLAN.</p> <h5 dir="auto">STEPS TO REPRODUCE</h5> <ol dir="auto"> <li> <p dir="auto">Create a task that adds a NEW vlan to an arista switch. Do not add a name to this vlan at this time.</p> </li> <li> <p dir="auto">Run the task again but change make vlan 11 instead of vlan 10</p> </li> <li> <p dir="auto">Run the exact task in step 1...adding vlan 10 to the switch again</p> </li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#eos.yaml - name: role add vlan using eos_config module connection: local eos_config: lines: - vlan 10 provider: &quot;{{ cli }}&quot; register: vlan_created_out #arista-vlan.yaml --- - name: playbook - vlan add using eos_config hosts: eos gather_facts: no connection: local vars_files: - creds.yaml roles: - { role: vlan_add } "><pre class="notranslate"><code class="notranslate">#eos.yaml - name: role add vlan using eos_config module connection: local eos_config: lines: - vlan 10 provider: "{{ cli }}" register: vlan_created_out #arista-vlan.yaml --- - name: playbook - vlan add using eos_config hosts: eos gather_facts: no connection: local vars_files: - creds.yaml roles: - { role: vlan_add } </code></pre></div> <h5 dir="auto">EXPECTED RESULTS</h5> <p dir="auto">Step 1) Expected output, changed=1 and new vlan 10 created<br> Step 2) Expected output, changed=1 and new vlan 11 created<br> Step 3) Expected output, changed=0 and vlan 10 not attempted to be created</p> <h5 dir="auto">ACTUAL RESULTS</h5> <p dir="auto">Step 1) Expected output, changed=1 and new vlan 10 created<br> Step 2) Expected output, changed=1 and new vlan 11 created<br> Step 3) Expected output, changed=1 and vlan 10 attempted to be created again...you can see when logging AAA commands that the vlan is attempting to be created every time.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"> </code></pre></div> <p dir="auto">Copied from original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="186036486" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible-modules-core/issues/5430" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible-modules-core/issues/5430/hovercard" href="https://github.com/ansible/ansible-modules-core/issues/5430">ansible/ansible-modules-core#5430</a></p>
1
<ul dir="auto"> <li>VSCode Version: 1.2.0</li> <li>OS Version: Windows 10</li> </ul> <p dir="auto">Steps to Reproduce:</p> <ol dir="auto"> <li>Open the new embedded command line (CTRL + ")</li> <li>Close CLI and change vscode theme</li> <li>Then open embedded CLI again</li> </ol> <p dir="auto">It is not working!</p>
<ul dir="auto"> <li>VSCode Version: Version 1.2.0-insider Commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/microsoft/vscode/commit/7ccb21d7e7256a7d42f3dda8b2d3721b8e59724f/hovercard" href="https://github.com/microsoft/vscode/commit/7ccb21d7e7256a7d42f3dda8b2d3721b8e59724f"><tt>7ccb21d</tt></a></li> <li>OS Version: Fedora 23</li> </ul> <p dir="auto">Steps to Reproduce:</p> <ol dir="auto"> <li>Open Terminal</li> <li>Change Color Theme</li> </ol> <p dir="auto">Terminal is then broken until VSCode is restarted</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/763861/15823098/7f599b88-2bf9-11e6-83e2-f4bab18fe0de.gif"><img src="https://cloud.githubusercontent.com/assets/763861/15823098/7f599b88-2bf9-11e6-83e2-f4bab18fe0de.gif" alt="anim" data-animated-image="" style="max-width: 100%;"></a></p>
1
<p dir="auto">Compare this <a href="https://babeljs.io/repl/#?experimental=true&amp;evaluate=true&amp;loose=false&amp;spec=false&amp;code=function%20f%20()%7B%0A%20%20%2F%2F%20comment%20here%0A%20%20var%20f%0A%7D" rel="nofollow">https://babeljs.io/repl/#?experimental=true&amp;evaluate=true&amp;loose=false&amp;spec=false&amp;code=function%20f%20()%7B%0A%20%20%2F%2F%20comment%20here%0A%20%20var%20f%0A%7D</a></p> <p dir="auto">to this <a href="https://babeljs.io/repl/#?experimental=true&amp;evaluate=true&amp;loose=false&amp;spec=false&amp;code=function%20f%20()%7B%0A%20%20%2F%2F%20comment%20here%0A%7D" rel="nofollow">https://babeljs.io/repl/#?experimental=true&amp;evaluate=true&amp;loose=false&amp;spec=false&amp;code=function%20f%20()%7B%0A%20%20%2F%2F%20comment%20here%0A%7D</a></p> <p dir="auto">Is there any reason for this behaviour? I used this trick <a href="https://github.com/ractivejs/ractive/blob/db7a5d61730ad72857ae355597838b3d77f5bc28/src/utils/log.js#L21">https://github.com/ractivejs/ractive/blob/db7a5d61730ad72857ae355597838b3d77f5bc28/src/utils/log.js#L21</a> and suddenly realised it doesn't work because of the issue. I managed to solve it by switching to a similar technique (unused variable), but this still looks like an inconsistency.</p>
<p dir="auto">This code:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="try { foo(); } catch(e) { // do nothing }"><pre class="notranslate"><span class="pl-k">try</span> <span class="pl-kos">{</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">catch</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-c">// do nothing</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">Compiles to this:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&quot;use strict&quot;; try { foo(); } catch (e) {} // do nothing"><pre class="notranslate"><span class="pl-s">"use strict"</span><span class="pl-kos">;</span> <span class="pl-k">try</span> <span class="pl-kos">{</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">catch</span> <span class="pl-kos">(</span><span class="pl-s1">e</span><span class="pl-kos">)</span> <span class="pl-kos">{</span><span class="pl-kos">}</span> <span class="pl-c">// do nothing</span></pre></div> <p dir="auto">It's ok at all, except eslint. It's affecting <code class="notranslate">no-empty</code> rule.</p>
1
<h2 dir="auto">Bug Report</h2> <p dir="auto"><strong>Current Behavior</strong><br> A clear and concise description of the behavior.<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/3963651/45399034-3584e500-b679-11e8-9b39-74505e92b71e.png"><img src="https://user-images.githubusercontent.com/3963651/45399034-3584e500-b679-11e8-9b39-74505e92b71e.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto"><strong>Input Code</strong></p> <ul dir="auto"> <li>REPL or Repo link if applicable:</li> </ul> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="TypeError: Cannot read property 'buildError' of undefined at Scope.checkBlockScopedCollisions (/Users/puss/work/ioc/parrot-tool-must/node_modules/_@babel_traverse@7.0.0@@babel/traverse/lib/scope/index.js:347:22) at Scope.registerBinding (/Users/puss/work/ioc/parrot-tool-must/node_modules/_@babel_traverse@7.0.0@@babel/traverse/lib/scope/index.js:504:16) at Scope.registerDeclaration (/Users/puss/work/ioc/parrot-tool-must/node_modules/_@babel_traverse@7.0.0@@babel/traverse/lib/scope/index.js:452:14) at Object.Declaration (/Users/puss/work/ioc/parrot-tool-must/node_modules/_@babel_traverse@7.0.0@@babel/traverse/lib/scope/index.js:125:12) at NodePath._call (/Users/puss/work/ioc/parrot-tool-must/node_modules/_@babel_traverse@7.0.0@@babel/traverse/lib/path/context.js:53:20) at NodePath.call (/Users/puss/work/ioc/parrot-tool-must/node_modules/_@babel_traverse@7.0.0@@babel/traverse/lib/path/context.js:40:17) at NodePath.visit (/Users/puss/work/ioc/parrot-tool-must/node_modules/_@babel_traverse@7.0.0@@babel/traverse/lib/path/context.js:88:12) at TraversalContext.visitQueue (/Users/puss/work/ioc/parrot-tool-must/node_modules/_@babel_traverse@7.0.0@@babel/traverse/lib/context.js:118:16) at TraversalContext.visitMultiple (/Users/puss/work/ioc/parrot-tool-must/node_modules/_@babel_traverse@7.0.0@@babel/traverse/lib/context.js:85:17) at TraversalContext.visit (/Users/puss/work/ioc/parrot-tool-must/node_modules/_@babel_traverse@7.0.0@@babel/traverse/lib/context.js:144:19) "><pre class="notranslate">TypeError: Cannot <span class="pl-c1">read</span> property <span class="pl-s"><span class="pl-pds">'</span>buildError<span class="pl-pds">'</span></span> of undefined at Scope.checkBlockScopedCollisions (/Users/puss/work/ioc/parrot-tool-must/node_modules/_@babel_traverse@7.0.0@@babel/traverse/lib/scope/index.js:347:22) at Scope.registerBinding (/Users/puss/work/ioc/parrot-tool-must/node_modules/_@babel_traverse@7.0.0@@babel/traverse/lib/scope/index.js:504:16) at Scope.registerDeclaration (/Users/puss/work/ioc/parrot-tool-must/node_modules/_@babel_traverse@7.0.0@@babel/traverse/lib/scope/index.js:452:14) at Object.Declaration (/Users/puss/work/ioc/parrot-tool-must/node_modules/_@babel_traverse@7.0.0@@babel/traverse/lib/scope/index.js:125:12) at NodePath._call (/Users/puss/work/ioc/parrot-tool-must/node_modules/_@babel_traverse@7.0.0@@babel/traverse/lib/path/context.js:53:20) at NodePath.call (/Users/puss/work/ioc/parrot-tool-must/node_modules/_@babel_traverse@7.0.0@@babel/traverse/lib/path/context.js:40:17) at NodePath.visit (/Users/puss/work/ioc/parrot-tool-must/node_modules/_@babel_traverse@7.0.0@@babel/traverse/lib/path/context.js:88:12) at TraversalContext.visitQueue (/Users/puss/work/ioc/parrot-tool-must/node_modules/_@babel_traverse@7.0.0@@babel/traverse/lib/context.js:118:16) at TraversalContext.visitMultiple (/Users/puss/work/ioc/parrot-tool-must/node_modules/_@babel_traverse@7.0.0@@babel/traverse/lib/context.js:85:17) at TraversalContext.visit (/Users/puss/work/ioc/parrot-tool-must/node_modules/_@babel_traverse@7.0.0@@babel/traverse/lib/context.js:144:19) </pre></div> <p dir="auto"><strong>Environment</strong></p> <ul dir="auto"> <li>Babel version(s): [v7.0.0]</li> <li>Node/npm version: [Node v10.9.0/npm 5.15.0]</li> <li>OS: [e.g. OSX 10.13.6]</li> <li>Monorepo [e.g. yes/no/Lerna]</li> <li>How you are using Babel: [<code class="notranslate">AST parser</code>]<br> .</li> </ul>
<h2 dir="auto">Bug Report</h2> <p dir="auto"><strong>Current Behavior</strong><br> <code class="notranslate">@babel/traverse</code> tries to throw a <code class="notranslate">Duplicate declaration</code> error for key duplicates in different ambient module declarations in one file. <code class="notranslate">@babel/parser</code> with <code class="notranslate">typescript</code> plugin is used to build an AST.<br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="180482095" data-permission-text="Title is private" data-url="https://github.com/babel/babel/issues/4640" data-hovercard-type="issue" data-hovercard-url="/babel/babel/issues/4640/hovercard" href="https://github.com/babel/babel/issues/4640">#4640</a> explains why <code class="notranslate">Cannot read property 'file' of undefined</code> is thrown.</p> <p dir="auto"><strong>Input Code</strong></p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const parse = require('@babel/parser').parse; const traverse = require('@babel/traverse').default; const code = ` declare module 'module1' { export const variable: string; } declare module 'module2' { export const variable: number; } `; const ast = parse(code, { sourceType: 'module', plugins: ['typescript'] }); traverse(ast, { enter(path) { // smth } });"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">parse</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'@babel/parser'</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">parse</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">traverse</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'@babel/traverse'</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">default</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">code</span> <span class="pl-c1">=</span> <span class="pl-s">`</span> <span class="pl-s">declare module 'module1' {</span> <span class="pl-s"> export const variable: string;</span> <span class="pl-s">}</span> <span class="pl-s"></span> <span class="pl-s">declare module 'module2' {</span> <span class="pl-s"> export const variable: number;</span> <span class="pl-s">}</span> <span class="pl-s">`</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">ast</span> <span class="pl-c1">=</span> <span class="pl-s1">parse</span><span class="pl-kos">(</span><span class="pl-s1">code</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">sourceType</span>: <span class="pl-s">'module'</span><span class="pl-kos">,</span> <span class="pl-c1">plugins</span>: <span class="pl-kos">[</span><span class="pl-s">'typescript'</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">traverse</span><span class="pl-kos">(</span><span class="pl-s1">ast</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-en">enter</span><span class="pl-kos">(</span><span class="pl-s1">path</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-c">// smth</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto"><strong>Output</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="...\node_modules\@babel\traverse\lib\scope\index.js:347 throw this.hub.file.buildCodeFrameError(id, `Duplicate declaration &quot;${name}&quot;`, TypeError); ^ TypeError: Cannot read property 'file' of undefined at Scope.checkBlockScopedCollisions (...\node_modules\@babel\traverse\lib\scope\index.js:347:22) at Scope.registerBinding (...\node_modules\@babel\traverse\lib\scope\index.js:506:16) at Scope.registerDeclaration (...\node_modules\@babel\traverse\lib\scope\index.js:454:14) at Object.Declaration (...\node_modules\@babel\traverse\lib\scope\index.js:125:12) at NodePath._call (...\node_modules\@babel\traverse\lib\path\context.js:53:20) at NodePath.call (...\node_modules\@babel\traverse\lib\path\context.js:40:17) at NodePath.visit (...\node_modules\@babel\traverse\lib\path\context.js:88:12) at TraversalContext.visitQueue (...\node_modules\@babel\traverse\lib\context.js:118:16) at TraversalContext.visitMultiple (...\node_modules\@babel\traverse\lib\context.js:85:17) at TraversalContext.visit (...\node_modules\@babel\traverse\lib\context.js:144:19)"><pre class="notranslate"><code class="notranslate">...\node_modules\@babel\traverse\lib\scope\index.js:347 throw this.hub.file.buildCodeFrameError(id, `Duplicate declaration "${name}"`, TypeError); ^ TypeError: Cannot read property 'file' of undefined at Scope.checkBlockScopedCollisions (...\node_modules\@babel\traverse\lib\scope\index.js:347:22) at Scope.registerBinding (...\node_modules\@babel\traverse\lib\scope\index.js:506:16) at Scope.registerDeclaration (...\node_modules\@babel\traverse\lib\scope\index.js:454:14) at Object.Declaration (...\node_modules\@babel\traverse\lib\scope\index.js:125:12) at NodePath._call (...\node_modules\@babel\traverse\lib\path\context.js:53:20) at NodePath.call (...\node_modules\@babel\traverse\lib\path\context.js:40:17) at NodePath.visit (...\node_modules\@babel\traverse\lib\path\context.js:88:12) at TraversalContext.visitQueue (...\node_modules\@babel\traverse\lib\context.js:118:16) at TraversalContext.visitMultiple (...\node_modules\@babel\traverse\lib\context.js:85:17) at TraversalContext.visit (...\node_modules\@babel\traverse\lib\context.js:144:19) </code></pre></div> <p dir="auto"><strong>Expected behavior</strong><br> Each module declaration has its own block scope, so the <code class="notranslate">Duplicate declaration</code> error shouldn't be thrown.</p> <p dir="auto"><strong>Environment</strong></p> <ul dir="auto"> <li>Babel version: v7.0.0-beta.51</li> <li>Node/npm version: node 8.11.3 / npm 5.6.0</li> <li>OS: Windows 10</li> </ul>
1
<p dir="auto">This is slightly inconvenient when one uses <code class="notranslate">atom -w</code> for things like git commit messages, it'd be great if just closing the tab that was opened was enough to cause the process to exit.</p>
<p dir="auto">Hi, guys.<br> I've started to learn how to code and found out about Atom. I downloaded the installer and when I run it shows a error message "Instalation has failed/Failed to extract installer", even if I run as admin. Downloaded the installer twice. Am I doing something wrong? My os is win8 x64.<br> Thanks.</p>
0
<p dir="auto">Filing this as a close duplicate of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="396935742" data-permission-text="Title is private" data-url="https://github.com/babel/babel/issues/9299" data-hovercard-type="issue" data-hovercard-url="/babel/babel/issues/9299/hovercard" href="https://github.com/babel/babel/issues/9299">#9299</a> because that issue is locked, and with the release of Node v12, the createRequireFromPath boilerplate has become more <a href="http://2ality.com/2019/04/nodejs-esm-impl.html#importing-commonjs-from-esm" rel="nofollow">widespread</a>, and it involves <code class="notranslate">import.meta.url</code>:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import {createRequireFromPath as createRequire} from 'module'; import {fileURLToPath as fromURL} from 'url'; const require = createRequire(fromURL(import.meta.url));"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-s1">createRequireFromPath</span> <span class="pl-k">as</span> <span class="pl-s1">createRequire</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'module'</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-s1">fileURLToPath</span> <span class="pl-k">as</span> <span class="pl-s1">fromURL</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'url'</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">require</span> <span class="pl-c1">=</span> <span class="pl-en">createRequire</span><span class="pl-kos">(</span><span class="pl-en">fromURL</span><span class="pl-kos">(</span><span class="pl-k">import</span><span class="pl-kos">.</span><span class="pl-c1">meta</span><span class="pl-kos">.</span><span class="pl-c1">url</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">As a Babel end-user, I don't know how to work around the <code class="notranslate">SyntaxError: Cannot use 'import.meta' outside a module</code>, and leaving that issue open might allow someone more knowledgeable to offer a solution.</p> <p dir="auto"><sub>I personally find it mildly infuriating when conversations are locked without any spam or abuse problems, because nether I nor others can add anything that might help each other. Sometimes the "final word" from the core team is less than intelligible to those new to the topic.</sub></p>
<p dir="auto">I am getting the following two type errors after switching to preset-env;</p> <h3 dir="auto">Issue 1</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Duplicate declaration &quot;activities&quot; (This is an error on an internal node. Probably an internal error)"><pre class="notranslate"><code class="notranslate">Duplicate declaration "activities" (This is an error on an internal node. Probably an internal error) </code></pre></div> <p dir="auto">Related relevant code with the various (valid) declarations of <code class="notranslate">activities</code>:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=".run((Page, Filters, moment, $store, $state, $transitions) =&gt; { $transitions.onEnter({to: 'bookings'}, transition =&gt; { const params = {}; if (!params.activity) { const activities = transition.injector().get('activities'); //... } //... }); //Page setup $transitions.onSuccess({to: 'bookings'}, transition =&gt; { //... const activities = transition.injector().get('activities'); //... }); Page.defineOption('switchActivity', { async click() { //... const activities = await $store.activities.query(); //... }, }); });"><pre class="notranslate"><span class="pl-kos">.</span><span class="pl-en">run</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-v">Page</span><span class="pl-kos">,</span> <span class="pl-v">Filters</span><span class="pl-kos">,</span> <span class="pl-s1">moment</span><span class="pl-kos">,</span> <span class="pl-s1">$store</span><span class="pl-kos">,</span> <span class="pl-s1">$state</span><span class="pl-kos">,</span> <span class="pl-s1">$transitions</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-s1">$transitions</span><span class="pl-kos">.</span><span class="pl-en">onEnter</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-c1">to</span>: <span class="pl-s">'bookings'</span><span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-s1">transition</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">const</span> <span class="pl-s1">params</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-c1">!</span><span class="pl-s1">params</span><span class="pl-kos">.</span><span class="pl-c1">activity</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">const</span> <span class="pl-s1">activities</span> <span class="pl-c1">=</span> <span class="pl-s1">transition</span><span class="pl-kos">.</span><span class="pl-en">injector</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">get</span><span class="pl-kos">(</span><span class="pl-s">'activities'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">//...</span> <span class="pl-kos">}</span> <span class="pl-c">//...</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">//Page setup</span> <span class="pl-s1">$transitions</span><span class="pl-kos">.</span><span class="pl-en">onSuccess</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-c1">to</span>: <span class="pl-s">'bookings'</span><span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-s1">transition</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-c">//...</span> <span class="pl-k">const</span> <span class="pl-s1">activities</span> <span class="pl-c1">=</span> <span class="pl-s1">transition</span><span class="pl-kos">.</span><span class="pl-en">injector</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">get</span><span class="pl-kos">(</span><span class="pl-s">'activities'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">//...</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-v">Page</span><span class="pl-kos">.</span><span class="pl-en">defineOption</span><span class="pl-kos">(</span><span class="pl-s">'switchActivity'</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-k">async</span> <span class="pl-en">click</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-c">//...</span> <span class="pl-k">const</span> <span class="pl-s1">activities</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">$store</span><span class="pl-kos">.</span><span class="pl-c1">activities</span><span class="pl-kos">.</span><span class="pl-en">query</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">//...</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">They are all defined in their own function scope, so perfectly valid.</p> <h3 dir="auto">Issue 2</h3> <p dir="auto"><code class="notranslate">Cannot read property '0' of null</code></p> <p dir="auto">Related code:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" //Set relevant option if (last &amp;&amp; this.reminderOptions.some(o =&gt; o.value === last)) { this.booking.reminderTime = last; } else { this.booking.reminderTime = this.reminderOptions[0].value; }"><pre class="notranslate"> <span class="pl-c">//Set relevant option</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">last</span> <span class="pl-c1">&amp;&amp;</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">reminderOptions</span><span class="pl-kos">.</span><span class="pl-en">some</span><span class="pl-kos">(</span><span class="pl-s1">o</span> <span class="pl-c1">=&gt;</span> <span class="pl-s1">o</span><span class="pl-kos">.</span><span class="pl-c1">value</span> <span class="pl-c1">===</span> <span class="pl-s1">last</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">booking</span><span class="pl-kos">.</span><span class="pl-c1">reminderTime</span> <span class="pl-c1">=</span> <span class="pl-s1">last</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-kos">{</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">booking</span><span class="pl-kos">.</span><span class="pl-c1">reminderTime</span> <span class="pl-c1">=</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">reminderOptions</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-c1">value</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">No idea why the latter error would be thrown as babel can't know what the value of <code class="notranslate">this.reminderOptions</code> will be at runtime, or whether it is <code class="notranslate">null</code>.</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="{ &quot;presets&quot;: [ [&quot;env&quot;, { &quot;targets&quot;: { &quot;browsers&quot;: [&quot;chrome &gt;= 60&quot;] } }] ], &quot;plugins&quot;: [ &quot;syntax-async-functions&quot;, &quot;transform-regenerator&quot;, &quot;angularjs-annotate&quot; ] }"><pre class="notranslate"><span class="pl-kos">{</span> <span class="pl-s">"presets"</span>: <span class="pl-kos">[</span> <span class="pl-kos">[</span><span class="pl-s">"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">"browsers"</span>: <span class="pl-kos">[</span><span class="pl-s">"chrome &gt;= 60"</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-s">"plugins"</span>: <span class="pl-kos">[</span> <span class="pl-s">"syntax-async-functions"</span><span class="pl-kos">,</span> <span class="pl-s">"transform-regenerator"</span><span class="pl-kos">,</span> <span class="pl-s">"angularjs-annotate"</span> <span class="pl-kos">]</span> <span class="pl-kos">}</span></pre></div> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">The code should compile and no errors should be thrown</p> <h3 dir="auto">Current Behavior</h3> <p dir="auto">Error is thrown as described above.</p> <h3 dir="auto">Context</h3> <p dir="auto">Can't build, had to revert back to es2015</p> <h3 dir="auto">Your Environment</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" &quot;babel-core&quot;: &quot;^6.26.0&quot;, &quot;babel-plugin-angularjs-annotate&quot;: &quot;^0.8.2&quot;, &quot;babel-plugin-syntax-async-functions&quot;: &quot;^6.13.0&quot;, &quot;babel-plugin-transform-regenerator&quot;: &quot;^6.26.0&quot;, &quot;babel-polyfill&quot;: &quot;^6.26.0&quot;, &quot;babel-preset-env&quot;: &quot;^1.6.1&quot;,"><pre class="notranslate"><code class="notranslate"> "babel-core": "^6.26.0", "babel-plugin-angularjs-annotate": "^0.8.2", "babel-plugin-syntax-async-functions": "^6.13.0", "babel-plugin-transform-regenerator": "^6.26.0", "babel-polyfill": "^6.26.0", "babel-preset-env": "^1.6.1", </code></pre></div> <table role="table"> <thead> <tr> <th>software</th> <th>version(s)</th> </tr> </thead> <tbody> <tr> <td>node</td> <td>8.9.4</td> </tr> <tr> <td>npm</td> <td>Yarn 1.3.2</td> </tr> <tr> <td>Operating System</td> <td>OS X</td> </tr> </tbody> </table>
0
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=costin" rel="nofollow">Costin Leau</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-7703?redirect=false" rel="nofollow">SPR-7703</a></strong> and commented</p> <p dir="auto">The process of finding the methods to be invoked for each http dispatch could be improved. While it has been already addressed in a previous released, there are still some minor improvements to be made.</p> <hr> <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="398102959" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/11510" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/11510/hovercard" href="https://github.com/spring-projects/spring-framework/issues/11510">#11510</a> improve annotation based invocations (<em><strong>"duplicates"</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/ec2603de63341a1a3bba756c8e767c4bd4ea50bd/hovercard" href="https://github.com/spring-projects/spring-framework/commit/ec2603de63341a1a3bba756c8e767c4bd4ea50bd"><tt>ec2603d</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/01e79cfeddf788b3059f9012c0e19aca87e3902c/hovercard" href="https://github.com/spring-projects/spring-framework/commit/01e79cfeddf788b3059f9012c0e19aca87e3902c"><tt>01e79cf</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/3552173b81f8e67640300156ed1659b2d2810e37/hovercard" href="https://github.com/spring-projects/spring-framework/commit/3552173b81f8e67640300156ed1659b2d2810e37"><tt>3552173</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/18540debf6ae0ef4de9feda2b7caee457233e08f/hovercard" href="https://github.com/spring-projects/spring-framework/commit/18540debf6ae0ef4de9feda2b7caee457233e08f"><tt>18540de</tt></a></p>
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=arjen.poutsma" rel="nofollow">Arjen Poutsma</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-7023?redirect=false" rel="nofollow">SPR-7023</a></strong> and commented</p> <p dir="auto">Currently, the RestTemplate has no way to handle generic types. In other words, the following does not work:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="List&lt;MyDomain&gt; myDomainList = restTemplate.getForObject(uri, List.class);"><pre class="notranslate"><code class="notranslate">List&lt;MyDomain&gt; myDomainList = restTemplate.getForObject(uri, List.class); </code></pre></div> <p dir="auto">This should be fixed.</p> <hr> <p dir="auto"><strong>Affects:</strong> 3.1.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="398115515" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13482" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13482/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13482">#13482</a> RestTemplate Converting Generic Types (<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="398112570" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13028" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13028/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13028">#13028</a> HttpMessageConverter doesn't support typed collections</li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398199842" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/19423" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/19423/hovercard" href="https://github.com/spring-projects/spring-framework/issues/19423">#19423</a> Add PATCH HTTP operation to RestTemplate</li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398103919" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/11667" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/11667/hovercard" href="https://github.com/spring-projects/spring-framework/issues/11667">#11667</a> RestTemplate fails to convert properly for Generic Type Container with MappingJacksonHttpMessageConverter</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/ed3823b045fd19cdb801609eb034c93dd4d75c3f/hovercard" href="https://github.com/spring-projects/spring-framework/commit/ed3823b045fd19cdb801609eb034c93dd4d75c3f"><tt>ed3823b</tt></a></p> <p dir="auto">14 votes, 16 watchers</p>
0
<p dir="auto">If we add 'numpy==1.20.2' requirements.txt, it resolves the following issue</p> <p dir="auto">2021-05-10 20:35:16,558 | Final missing wheels: {numpy==1.20.3(wheel)}<br> 2021-05-10 20:35:19,015 | PythonPipBuilder:ResolveDependencies failed<br> Traceback (most recent call last):<br> File "/usr/local/Cellar/aws-sam-cli/1.21.1/libexec/lib/python3.8/site-packages/aws_lambda_builders/workflows/python_pip/actions.py", line 39, in execute<br> package_builder.build_dependencies(<br> File "/usr/local/Cellar/aws-sam-cli/1.21.1/libexec/lib/python3.8/site-packages/aws_lambda_builders/workflows/python_pip/packager.py", line 137, in build_dependencies<br> self._dependency_builder.build_site_packages(requirements_path, artifacts_dir_path, scratch_dir_path)<br> File "/usr/local/Cellar/aws-sam-cli/1.21.1/libexec/lib/python3.8/site-packages/aws_lambda_builders/workflows/python_pip/packager.py", line 207, in build_site_packages<br> raise MissingDependencyError(packages_without_wheels)<br> aws_lambda_builders.workflows.python_pip.packager.MissingDependencyError: {numpy==1.20.3(wheel)}</p> <p dir="auto">During handling of the above exception, another exception occurred:</p> <p dir="auto">Traceback (most recent call last):<br> File "/usr/local/Cellar/aws-sam-cli/1.21.1/libexec/lib/python3.8/site-packages/aws_lambda_builders/workflow.py", line 269, in run<br> action.execute()<br> File "/usr/local/Cellar/aws-sam-cli/1.21.1/libexec/lib/python3.8/site-packages/aws_lambda_builders/workflows/python_pip/actions.py", line 45, in execute<br> raise ActionFailedError(str(ex))<br> aws_lambda_builders.actions.ActionFailedError: {numpy==1.20.3(wheel)}</p> <p dir="auto">Build Failed</p>
<p dir="auto">I was wondering if it's possible for the relevant Numpy DLLs (e.g. lapack_lite or _umath_linalg) to export the CBLAS functions, so that other software can call into them using e.g. ctypes. Under Linux they are exported by default, but not under Windows (AFAIK you have to explicitly export symbols on Windows, by default "global" symbols in a shared library are private to the library).</p> <p dir="auto">Or perhaps I'm missing another way of accessing those functions at runtime?</p>
0
<h3 dir="auto">Version</h3> <p dir="auto">2.5.13</p> <h3 dir="auto">Steps to reproduce</h3> <p dir="auto">Use a component for property display in a loop over ordered by descendant array</p> <h3 dir="auto">What is expected?</h3> <p dir="auto">An actual value</p> <h3 dir="auto">What is actually happening?</h3> <p dir="auto">Cached value of previous object is displaying</p> <hr> <p dir="auto">I'm new with Vuejs and probably my issue is a dummy one, but I've not still realized how to fix it.</p> <p dir="auto"><strong>Situation</strong>: I have a collection of objects which I've sorted with lodash:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ computed: { sortedAlerts: function() { return _.orderBy(this.filteredAlerts, 'createdAtUtc', 'desc'); } } }"><pre class="notranslate"><span class="pl-kos">{</span> <span class="pl-c1">computed</span>: <span class="pl-kos">{</span> <span class="pl-en">sortedAlerts</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-s1">_</span><span class="pl-kos">.</span><span class="pl-en">orderBy</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">filteredAlerts</span><span class="pl-kos">,</span> <span class="pl-s">'createdAtUtc'</span><span class="pl-kos">,</span> <span class="pl-s">'desc'</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">And iterating with <code class="notranslate">v-for="alert in sortedAlerts"</code>.</p> <p dir="auto">I also display one of the object property with the usage of Vuejs component:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="components: { 'alert-title': { props: ['model'], computed: { indicatorTitle: function() { return this.alert.indicator.title.toLowerCase(); }, conditionTitle: function() { return this.alert.condition.title.toLowerCase(); } }, template:'&lt;span&gt;&lt;i&gt;{{indicatorTitle}}&lt;/i&gt; is {{conditionTitle}} {{alert.amount}}&lt;/span&gt;', data: function() { return { alert: this.model } } } }"><pre class="notranslate">components: <span class="pl-kos">{</span> <span class="pl-s">'alert-title'</span>: <span class="pl-kos">{</span> <span class="pl-c1">props</span>: <span class="pl-kos">[</span><span class="pl-s">'model'</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-c1">computed</span>: <span class="pl-kos">{</span> <span class="pl-en">indicatorTitle</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-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">alert</span><span class="pl-kos">.</span><span class="pl-c1">indicator</span><span class="pl-kos">.</span><span class="pl-c1">title</span><span class="pl-kos">.</span><span class="pl-en">toLowerCase</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-en">conditionTitle</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-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">alert</span><span class="pl-kos">.</span><span class="pl-c1">condition</span><span class="pl-kos">.</span><span class="pl-c1">title</span><span class="pl-kos">.</span><span class="pl-en">toLowerCase</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-c1">template</span>:<span class="pl-s">'&lt;span&gt;&lt;i&gt;{{indicatorTitle}}&lt;/i&gt; is {{conditionTitle}} {{alert.amount}}&lt;/span&gt;'</span><span class="pl-kos">,</span> <span class="pl-en">data</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-kos">{</span> <span class="pl-c1">alert</span>: <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">model</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">like this <code class="notranslate">&lt;span is="alert-title" v-bind:model="alert"&gt;&lt;/span&gt;</code>.</p> <p dir="auto">Finally, when I add new objects into this array (which going to be the first elements in ordered array), the <code class="notranslate">alert-title</code> component do not display newly added object in a proper way (but continue to display the <strong>previous one</strong>, which now is actualty the second and duplicate).</p> <p dir="auto">Page refresh is fixing this situation, but I'm pretty sure that the code have an issue.</p> <p dir="auto">I know it's not too clear but I hope someone could figure out what's wrong with it.</p> <p dir="auto">Let me know if an example should also be provided.</p> <p dir="auto">Thank you.</p>
<h3 dir="auto">Important Note</h3> <p dir="auto">I don't want this to happen in Vue, I just want to know how can I implement this in my projects.<br> If this can't be done right now ... Then this is a feature request of <strong>CustomKey</strong><br> If this can already happen ... Then Please tell me how I can and happy to close!</p> <hr> <h3 dir="auto">What problem does this feature solve?</h3> <p dir="auto">Keeping things short</p> <p dir="auto">I want to duplicate this below stuff</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="export default { components: { ComponentAdam, ComponentMadam, }, };"><pre class="notranslate"><span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-kos">{</span> <span class="pl-c1">components</span>: <span class="pl-kos">{</span> ComponentAdam<span class="pl-kos">,</span> ComponentMadam<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">and make something like this ...</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="export default { components: { ComponentAdam, ComponentMadam, }, objects: { ObjectSierra, ObjectHotel, ObjectIndia, ObjectEcho, ObjectLima, ObjectDelta, }, };"><pre class="notranslate"><span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-kos">{</span> <span class="pl-c1">components</span>: <span class="pl-kos">{</span> ComponentAdam<span class="pl-kos">,</span> ComponentMadam<span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-c1">objects</span>: <span class="pl-kos">{</span> ObjectSierra<span class="pl-kos">,</span> ObjectHotel<span class="pl-kos">,</span> ObjectIndia<span class="pl-kos">,</span> ObjectEcho<span class="pl-kos">,</span> ObjectLima<span class="pl-kos">,</span> ObjectDelta<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> <hr> <h3 dir="auto">What does the proposed API look like?</h3> <p dir="auto">Not exactly sure!</p>
0
<ul dir="auto"> <li>Electron version: v.1.8.2.beta4</li> <li>Operating system: Windows 10</li> </ul> <p dir="auto">I have a simple window and showed DevTools on it and when I start typing into its console, program crashes.</p> <p dir="auto">edit:grammar</p>
<ul dir="auto"> <li>Electron version: 1.8.2-beta.3</li> <li>Operating system: Windows_NT 10.0.15063</li> </ul> <h3 dir="auto">Expected behavior</h3> <p dir="auto">When devtools are open I should be able to type directly into the console.</p> <h3 dir="auto">Actual behavior</h3> <p dir="auto">When you type into the console in devtools it crashes the electron app without showing any errors.</p> <h3 dir="auto">How to reproduce</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="git clone https://github.com/electron/electron-api-demos.git cd electron-api-demos npm install --save-dev electron@1.8.2-beta.3 npm install npm start"><pre class="notranslate"><code class="notranslate">git clone https://github.com/electron/electron-api-demos.git cd electron-api-demos npm install --save-dev electron@1.8.2-beta.3 npm install npm start </code></pre></div> <p dir="auto">When the electron window opens, go to View menu, then Toggle Developer Tools option.<br> Go to Console tab.<br> Click into the console by the &gt; and start typing anything.</p>
1
<p dir="auto">I have faced the issue with production build. I don't know why, but Next's babel config didn't properly compile my source code, so I ended up with "unexpected token punc()" which is most likely not compiled source to ES5 (which is needed for UglifyJS).</p> <p dir="auto">I have been searching for issues and also tried to extend babel config with babel-preset-env (targets.uglifyjs = true), but actually it didn't work, nor es-2015 presets.</p> <p dir="auto">I have fixed this issue by extending webpack config with <code class="notranslate">BabiliPlugin</code> and removing UglifyJS. This is first issue I wanted to report... Moreover I think uglify should be removed if it doesn't support new JS syntax. I want to be able to specify what browsers I support.</p> <p dir="auto">I have also a problem to detect where and what caused the problem in my source.</p> <p dir="auto">Sorry if this issue has been already discussed.</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul>
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto"><code class="notranslate">next dev</code> should accept the -H/--hostname argument, like <code class="notranslate">next start</code> (see <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="205675873" data-permission-text="Title is private" data-url="https://github.com/vercel/next.js/issues/1017" data-hovercard-type="pull_request" data-hovercard-url="/vercel/next.js/pull/1017/hovercard" href="https://github.com/vercel/next.js/pull/1017">#1017</a>).</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto"><code class="notranslate">next dev</code> ignores the hostname argument, defaulting to <code class="notranslate">localhost</code>.</p> <h2 dir="auto">Context</h2> <p dir="auto">Cloud9 wants servers to start on 0.0.0.0</p> <p dir="auto">I am happy to provide a PR for this if you agree.</p>
0
<p dir="auto">I was just installing Three through npm and noticed that the code snippet and the JS fiddle at the end of the page is using THREE.CanvasRenderer. <a href="https://www.npmjs.com/package/three" rel="nofollow">https://www.npmjs.com/package/three</a></p> <p dir="auto">You'll see this warning in the console:<br> <code class="notranslate">"THREE.CanvasRenderer has been moved to /examples/js/renderers/CanvasRenderer.js"</code></p> <p dir="auto">It should probably be updated to use: <code class="notranslate">renderer = new THREE.WebGLRenderer();</code><br> Fixed fiddle: <a href="https://jsfiddle.net/9sp1hqvb/" rel="nofollow">https://jsfiddle.net/9sp1hqvb/</a></p> <p dir="auto">The script on the page should also have that fix:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;script&gt; var camera, scene, renderer; var geometry, material, mesh; init(); animate(); function init() { camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 1, 10000 ); camera.position.z = 1000; scene = new THREE.Scene(); geometry = new THREE.BoxGeometry( 200, 200, 200 ); material = new THREE.MeshBasicMaterial( { color: 0xff0000, wireframe: true } ); mesh = new THREE.Mesh( geometry, material ); scene.add( mesh ); renderer = new THREE.WebGLRenderer(); renderer.setSize( window.innerWidth, window.innerHeight ); document.body.appendChild( renderer.domElement ); } function animate() { // note: three.js includes requestAnimationFrame shim requestAnimationFrame( animate ); mesh.rotation.x += 0.01; mesh.rotation.y += 0.02; renderer.render( scene, camera ); } &lt;/script&gt; "><pre class="notranslate"><code class="notranslate">&lt;script&gt; var camera, scene, renderer; var geometry, material, mesh; init(); animate(); function init() { camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 1, 10000 ); camera.position.z = 1000; scene = new THREE.Scene(); geometry = new THREE.BoxGeometry( 200, 200, 200 ); material = new THREE.MeshBasicMaterial( { color: 0xff0000, wireframe: true } ); mesh = new THREE.Mesh( geometry, material ); scene.add( mesh ); renderer = new THREE.WebGLRenderer(); renderer.setSize( window.innerWidth, window.innerHeight ); document.body.appendChild( renderer.domElement ); } function animate() { // note: three.js includes requestAnimationFrame shim requestAnimationFrame( animate ); mesh.rotation.x += 0.01; mesh.rotation.y += 0.02; renderer.render( scene, camera ); } &lt;/script&gt; </code></pre></div> <p dir="auto">If you're installing for the first time, this would be super confusing.</p> <p dir="auto">Sorry if this issue is a duplicate. I searched but didn't find anything about this.</p>
<p dir="auto">Hi,</p> <p dir="auto">First thank you for your amazing work. I am stunned by what that library can do!<br> I am using three.js with a dae on an ipad.<br> Now what i want to do is</p> <ul dir="auto"> <li>select an object with touch</li> <li>make all other objects' opacity to 0.2 and the selected to 1.0<br> This would make it clear what object you selected.</li> </ul> <p dir="auto">Now my problem is that the same material is shared by almost all objects in the dae. So applying opacity to one object's material will actually apply it to almost all objects in the dae.</p> <p dir="auto">So my idea was to use traverseHierarchy on dae loading and do something like<br> object.material = object.material.clone()</p> <p dir="auto">But that doesnt work. So my question is how can i clone a material?<br> Or may be there is another way of doing what i want ...</p> <p dir="auto">Thank you</p>
0
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 18363.959 PowerToys version: 0.19.2 PowerToy module for which you are reporting the bug (if applicable): PowerToys Run and/or Keyboard Manager"><pre class="notranslate"><code class="notranslate">Windows build number: 18363.959 PowerToys version: 0.19.2 PowerToy module for which you are reporting the bug (if applicable): PowerToys Run and/or Keyboard Manager </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <ol dir="auto"> <li>Setup a Keyboard shortcut for Win+R -&gt; Alt+Space<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/8959496/88466786-d43d1800-ce84-11ea-88c0-b8b4b77990fc.png"><img src="https://user-images.githubusercontent.com/8959496/88466786-d43d1800-ce84-11ea-88c0-b8b4b77990fc.png" alt="image" style="max-width: 100%;"></a></li> <li>(optional) Open PowerToys Run with Alt+Space, type some stuff (anything), hit Esc</li> <li>Open PowerToys Run with Win+R, note that you can hit backspace and escape, but typing anything else doesn't work.</li> <li>Now 'Alt' is soft-locked pressed on the machine and trying to interact with other windows/OS causes issues, like trying to hit Win+R again is actually trying to hit Win+Alt+R and start a GameBar recording.</li> </ol> <h1 dir="auto">Expected behavior</h1> <p dir="auto">Win+R should be able to bring up PowerToys Run normally, this worked fine before, so seems like a regression?<br> Alt key shouldn't get stuck 'down'.</p> <h1 dir="auto">Actual behavior</h1> <p dir="auto">Unable to type into Power Toys Run textbox, Alt key is getting stuck in pressed state after closing PowerToys Run after using mapped shortcut.</p>
<p dir="auto">Ability to open a website in a choice of browsers after typing a URL, or at the very least, the default browser</p>
0
<p dir="auto"><strong>environment:</strong><br> ubuntu 16<br> CUDA 9.0<br> CUDNN 7<br> anaconda3<br> python2.7</p> <p dir="auto">hi! I install caffe2 from source.<br> <code class="notranslate">python setup.py install</code><br> I encounter the issue such as:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="-- Build files have been written to: /home/user/backup/lichu/pytorch/build + make install -j16 [ 1%] Built target onnxifi_dummy [ 1%] Built target js_embed [ 1%] Built target fbgemm_avx512 [ 2%] Built target fbgemm_avx2 [ 2%] Built target clog [ 2%] Built target ATEN_CPU_FILES_GEN_TARGET [ 2%] Built target onnxifi_loader [ 2%] Building CXX object third_party/googletest/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o [ 3%] Built target gloo [ 3%] Built target benchmark [ 3%] Built target common [ 3%] Built target pthreadpool [ 3%] Built target mkrename [ 4%] Built target c10 [ 6%] Built target asmjit [ 7%] Built target libprotobuf-lite [ 7%] Built target mkdisp [ 7%] Built target mkmasked_gnuabi [ 7%] Built target ATEN_CUDA_FILES_GEN_TARGET [ 7%] Built target mkrename_gnuabi [ 8%] Built target c10_utils_gpu [ 8%] Built target arraymap [ 8%] Built target mkalias [ 8%] Built target c10_utils_hip [ 8%] Built target c10_utils_cpu [ 8%] Built target nnpack_reference_layers [ 9%] Built target cpuinfo [ 9%] Built target benchmark_main [ 9%] Built target torch_shm_manager [ 9%] Built target renameAVX.h_generated [ 9%] Built target onnxifi_wrapper [ 9%] Built target headers [ 9%] Built target renamedsp128.h_generated [ 9%] Built target __aten_op_header_gen [ 9%] Built target dispavx.c_generated [ 9%] Built target dispsse.c_generated [ 9%] Built target renameSSE2.h_generated [ 9%] Built target renameFMA4.h_generated [ 9%] Built target renamedsp256.h_generated [ 9%] Built target renameAVX2.h_generated [ 9%] Built target renameAVX2128.h_generated [ 9%] Built target renameSSE4.h_generated [ 9%] Built target fbgemm [ 10%] Built target qnnpack [ 11%] Built target nnpack [ 11%] Built target sleefavx [ 11%] Linking CXX static library ../../../lib/libgloo_cuda.a [ 11%] Built target dispsse_obj [ 11%] Built target dispavx_obj [ 11%] Built target sleefsse2 [ 11%] Built target sleeffma4 [ 11%] Built target sleefavx2 [ 15%] Built target libprotobuf [ 16%] Built target sleefavx2128 [ 16%] Built target sleefsse4 [ 16%] Built target sleef [ 20%] Built target libprotoc [ 21%] Built target gloo_cuda [ 21%] Linking CXX executable ../../../bin/protoc [ 21%] Built target gloo_builder [ 21%] Built target protoc [ 21%] Running C++/Python protocol buffer compiler on /home/user/backup/lichu/pytorch/caffe2/proto/predictor_consts.proto [ 21%] Running C++/Python protocol buffer compiler on /home/user/backup/lichu/pytorch/caffe2/proto/prof_dag.proto [ 21%] Running C++/Python protocol buffer compiler on /home/user/backup/lichu/pytorch/caffe2/proto/metanet.proto [ 21%] Running C++/Python protocol buffer compiler on /home/user/backup/lichu/pytorch/caffe2/proto/hsm.proto [ 21%] Running C++/Python protocol buffer compiler on /home/user/backup/lichu/pytorch/caffe2/proto/caffe2.proto [ 21%] Running C++/Python protocol buffer compiler on /home/user/backup/lichu/pytorch/caffe2/proto/caffe2_legacy.proto [ 21%] Built target gen_onnx_proto [ 21%] Running C++/Python protocol buffer compiler on /home/user/backup/lichu/pytorch/caffe2/proto/torch.proto [ 21%] Built target onnx_proto Scanning dependencies of target Caffe2_PROTO [ 23%] Built target onnx [ 23%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/torch.pb.cc.o [ 23%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/metanet.pb.cc.o [ 23%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2_legacy.pb.cc.o [ 23%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2.pb.cc.o [ 24%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/prof_dag.pb.cc.o [ 24%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/predictor_consts.pb.cc.o [ 24%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/hsm.pb.cc.o [ 24%] Built target python_copy_files [ 24%] Built target Caffe2_PROTO Scanning dependencies of target dispatch Scanning dependencies of target Caffe2_perfkernels_avx2 Scanning dependencies of target Caffe2_perfkernels_avx [ 24%] Linking CXX static library ../lib/libcaffe2_protos.a Scanning dependencies of target caffe2_dnnlowp_avx2_ops [ 24%] Building CXX object caffe2/core/dispatch/CMakeFiles/dispatch.dir/OpSchemaRegistration.cpp.o [ 24%] Building CXX object caffe2/core/dispatch/CMakeFiles/dispatch.dir/DispatchTable.cpp.o [ 24%] Building CXX object caffe2/core/dispatch/CMakeFiles/dispatch.dir/KernelRegistration.cpp.o [ 24%] Building CXX object caffe2/core/dispatch/CMakeFiles/dispatch.dir/Dispatcher.cpp.o [ 24%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx.dir/typed_axpy_avx.cc.o [ 24%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx.dir/adagrad_avx.cc.o [ 25%] Building CXX object caffe2/core/dispatch/CMakeFiles/dispatch.dir/OpSchema.cpp.o [ 25%] Built target caffe2_protos [ 25%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/typed_axpy_avx2.cc.o [ 25%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/embedding_lookup_avx2.cc.o [ 25%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/math_cpu_avx2.cc.o [ 25%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/embedding_lookup_fused_8bit_rowwise_avx2.cc.o [ 25%] Building CXX object caffe2/quantization/server/CMakeFiles/caffe2_dnnlowp_avx2_ops.dir/conv_dnnlowp_op.cc.o [ 25%] Building CXX object caffe2/quantization/server/CMakeFiles/caffe2_dnnlowp_avx2_ops.dir/fully_connected_fake_lowp_op.cc.o [ 25%] Building CXX object caffe2/quantization/server/CMakeFiles/caffe2_dnnlowp_avx2_ops.dir/elementwise_sum_dnnlowp_op.cc.o [ 25%] Building CXX object caffe2/quantization/server/CMakeFiles/caffe2_dnnlowp_avx2_ops.dir/group_norm_dnnlowp_op.cc.o [ 26%] Building CXX object caffe2/quantization/server/CMakeFiles/caffe2_dnnlowp_avx2_ops.dir/relu_dnnlowp_op.cc.o [ 26%] Building CXX object caffe2/quantization/server/CMakeFiles/caffe2_dnnlowp_avx2_ops.dir/dnnlowp.cc.o [ 26%] Built target dispatch [ 26%] Linking CXX static library ../../../lib/libgtest.a [ 26%] Built target gtest [ 26%] Building CXX object third_party/googletest/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o [ 26%] Built target Caffe2_perfkernels_avx [ 26%] Linking CXX static library ../../../lib/libgtest_main.a [ 26%] Built target gtest_main [ 26%] Building CXX object c10/test/CMakeFiles/c10_DeviceGuard_test.dir/DeviceGuard_test.cpp.o [ 26%] Building CXX object c10/test/CMakeFiles/c10_Metaprogramming_test.dir/util/Metaprogramming_test.cpp.o [ 26%] Building CXX object c10/test/CMakeFiles/c10_logging_test.dir/logging_test.cpp.o [ 26%] Building CXX object c10/test/CMakeFiles/c10_InlineStreamGuard_test.dir/detail/InlineStreamGuard_test.cpp.o [ 26%] Building CXX object c10/test/CMakeFiles/c10_TypeTraits_test.dir/util/TypeTraits_test.cpp.o [ 26%] Building CXX object c10/test/CMakeFiles/c10_InlineDeviceGuard_test.dir/detail/InlineDeviceGuard_test.cpp.o [ 26%] Building CXX object c10/test/CMakeFiles/c10_registry_test.dir/registry_test.cpp.o [ 26%] Building CXX object c10/test/CMakeFiles/c10_StreamGuard_test.dir/StreamGuard_test.cpp.o [ 26%] Linking CXX executable ../../bin/c10_StreamGuard_test [ 26%] Built target c10_StreamGuard_test [ 26%] Building CXX object c10/test/CMakeFiles/c10_Array_test.dir/util/Array_test.cpp.o [ 26%] Linking CXX executable ../../bin/c10_TypeTraits_test [ 26%] Built target c10_TypeTraits_test [ 26%] Building CXX object c10/test/CMakeFiles/c10_flags_test.dir/flags_test.cpp.o [ 26%] Building CXX object c10/test/CMakeFiles/c10_TypeList_test.dir/util/TypeList_test.cpp.o [ 26%] Linking CXX executable ../../bin/c10_DeviceGuard_test [ 26%] Built target Caffe2_perfkernels_avx2 [ 26%] Built target c10_DeviceGuard_test [ 26%] Linking CXX executable ../../bin/c10_utils_gpu_test [ 26%] Building CXX object caffe2/utils/CMakeFiles/c10_utils_hip_test.dir/dummy.cpp.o [ 26%] Linking CXX executable ../../bin/c10_Metaprogramming_test [ 26%] Linking CXX executable ../../bin/c10_utils_hip_test [ 26%] Built target c10_utils_gpu_test [ 26%] Linking CXX executable ../../bin/c10_utils_cpu_test [ 27%] Built target c10_Metaprogramming_test Scanning dependencies of target dispatch_test [ 27%] Built target c10_utils_hip_test [ 27%] Building CXX object caffe2/core/dispatch/CMakeFiles/dispatch_test.dir/OpSchema_test.cpp.o [ 27%] Built target c10_utils_cpu_test [ 27%] Linking CXX executable ../../bin/c10_Array_test [ 27%] Linking CXX executable ../../bin/c10_logging_test [ 27%] Built target c10_Array_test [ 27%] Built target c10_logging_test [ 27%] Linking CXX executable ../../bin/c10_registry_test [ 27%] Linking CXX executable ../../bin/c10_InlineDeviceGuard_test [ 27%] Built target c10_registry_test [ 27%] Linking CXX executable ../../bin/c10_InlineStreamGuard_test [ 27%] Built target c10_InlineDeviceGuard_test [ 27%] Built target c10_InlineStreamGuard_test [ 27%] Linking CXX executable ../../bin/c10_flags_test [ 27%] Linking CXX executable ../../bin/c10_TypeList_test [ 27%] Built target c10_flags_test [ 27%] Built target c10_TypeList_test [ 27%] Linking CXX executable ../../../bin/dispatch_test [ 27%] Built target dispatch_test [ 27%] Built target caffe2_dnnlowp_avx2_ops Scanning dependencies of target caffe2 [ 27%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUGenerator.cpp.o [ 27%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/UndefinedType.cpp.o [ 27%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUTypeDefault.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/Context.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/Utils.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/SparseTensorImpl.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/DLConvertor.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/TensorGeometry.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/ExpandUtils.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/detail/CPUGuardImpl.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/blob.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/cpu/FlushDenormal.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/TensorUtils.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/detail/CUDAHooksInterface.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUGeneral.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/detail/ComplexHooksInterface.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/Formatting.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/register_symbols.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/Range.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/ATenGeneral.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/Allocator.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/TensorImpl.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/Storage.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/type.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/UniqueVoidPtr.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/ATenCoreTest.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/Tensor.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/intrusive_ptr.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/TensorTypeId.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/Scalar.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/OptionsGuard.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/typeid.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/interned_strings.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/thread_pool.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/ArrayRef.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/VariableHooksInterface.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/StorageImpl.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/TensorOptions.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/AlignOf.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/LegacyTypeDispatch.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/ivalue.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/TensorTypeIdRegistration.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/SmallVector.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/UndefinedTensorImpl.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/context_base.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Dropout.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Memory.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/TensorCompare.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/RoiPooling.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Resize.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/TensorProperties.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/PixelShuffle.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/ReduceOps.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Unique.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/GridSampler.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Normalization.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/LegacyBridge.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/RNN.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/PackedSequence.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/TensorConversions.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/TensorIterator.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Copy.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/LinearAlgebra.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Pooling.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Scalar.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/TensorIteratorReduce.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Indexing.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/SoftMax.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Distance.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/BatchLinearAlgebra.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/WeightNorm.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/TensorFactories.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/ConvolutionTBC.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/TensorShape.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/TypeProperties.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/TensorTransformations.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/EmbeddingBag.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Activation.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Loss.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Linear.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Embedding.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/LegacyDefinitions.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/DispatchStub.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Distributions.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/BinaryOps.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/ConstantPadNd.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/LossCTC.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/UnaryOps.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Convolution.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/SpectralOps.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/SummaryOps.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/sparse/SparseTensor.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/sparse/SparseTensorMath.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/mkl/SpectralOps.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/mkl/LinearAlgebra.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/mkldnn/Conv.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUByteType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUCharType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUCopy.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUDoubleType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUFloatType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUHalfType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUIntType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPULongType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUShortType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/RegisterCPU.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/SparseCPUByteType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/SparseCPUCharType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/SparseCPUDoubleType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/SparseCPUFloatType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/SparseCPUIntType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/SparseCPULongType.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/SparseCPUShortType.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/TypeDefault.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THGeneral.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THAllocator.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THSize.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THStorageFunctions.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THTensor.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THTensorCopy.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THTensorRandom.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THTensorMath.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THTensorMoreMath.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THTensorEvenMoreMath.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THTensorConv.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THTensorLapack.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THBlas.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THLapack.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THLogAdd.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THRandom.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THFile.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THDiskFile.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THMemoryFile.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THVector.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/vector/AVX.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/vector/AVX2.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/THNN/init.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.AVX2.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.AVX2.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.AVX2.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/Activation.cpp.AVX2.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.AVX2.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.AVX2.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.AVX2.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.AVX2.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.AVX.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.AVX.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.AVX.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/Activation.cpp.AVX.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.AVX.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.AVX.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.AVX.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.AVX.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.DEFAULT.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.DEFAULT.cpp.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.DEFAULT.cpp.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/Activation.cpp.DEFAULT.cpp.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.DEFAULT.cpp.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.DEFAULT.cpp.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.DEFAULT.cpp.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/aten/aten_op.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/allgather_ops.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/allreduce_ops.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/barrier_ops.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/broadcast_ops.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/common.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/common_world_ops.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/context.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/reduce_scatter_ops.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/store_handler.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/script/compiler.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/script/lexer.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/operator.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_async_tracing.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/workspace.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_async_scheduling.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/qtensor_serialization.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/blob_serialization.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/types.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/module.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/context_base.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/tensor_impl.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/graph.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/operator_schema.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/transform.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/tensor.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/common.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/blob_stats.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_async_base.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/qtensor.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/int8_serialization.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/prof_dag_counters.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/init_intrinsics_check.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/tensor_int8.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_simple.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/init.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_dag.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/memonger.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_dag_utils.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_async_polling.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/init_omp.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/operator_c10wrapper.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/stats.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/plan_executor.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/numa.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/allocator.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_simple_refcount.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/context.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/event.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/db.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/proto_convert.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/proto_wrap.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/proto_utils.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/murmur_hash3.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/smart_tensor_printer.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/signal_handler.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/string_utils.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/threadpool/ThreadPool.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/cpuid.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/bench_utils.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/math_cpu.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/math_utils.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/thread_name.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/threadpool/pthreadpool.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/threadpool/pthreadpool_impl.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/predictor/predictor.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/predictor/predictor_utils.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/predictor/predictor_config.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/nomnigraph/tests/test_util.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/nomnigraph/Representations/NeuralNet.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/db/create_db_op.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/db/protodb.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/file_store_handler.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/file_store_handler_op.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/store_handler.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/store_ops.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/mpi/mpi_common.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/mpi/mpi_ops.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/observers/time_observer.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/observers/runcnt_observer.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/backend.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/helper.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/backend_rep.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/onnx_exporter.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/device.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/onnxifi_init.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/numpy_tile_op.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_ops_utils.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_sub_op.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_gather_ops.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_op_eigen.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stump_func_op.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/workspace_ops.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_front_back_sum_ops.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gather_fused_8bit_rowwise_op.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/utility_ops.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_ops.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sigmoid_op.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/atan_op.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/zero_gradient_op.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ngram_ops.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/atomic_ops.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/segment_reduction_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_sum_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/top_k.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/integral_image_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_rotated_gradient_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reservoir_sampling.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/channel_shuffle_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stats_put_ops.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ensure_cpu_output_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/normalize_l1_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/selu_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/index_ops.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_add_gradient_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/onnx_while_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cosh_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/flatten_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quant_decode_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lpnorm_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gru_unit_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reshape_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_transpose_op_mobile.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/crf_viterbi_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/find_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/while_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pad_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/feed_blob_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conditional_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/create_scope_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_top_k_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pow_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ctc_greedy_decoder_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tanh_gradient_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_mul_gradient_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cast_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/unique_ops.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/floor_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reciprocal_gradient_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reciprocal_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/prelu_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/instance_norm_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ceil_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/layer_norm_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/log_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/h_softmax_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/feature_maps_ops.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/onnxifi_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_linear_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/given_tensor_byte_string_to_uint8_fill_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/swish_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softplus_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_transpose_gradient_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/im2col_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/merge_id_lists_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tensor_protos_db_input.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/remove_data_blocks_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/perplexity_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stop_gradient.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/multi_class_accuracy_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/length_split_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softmax_shared.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_box_cox_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/expand_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/abs_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sparse_to_dense_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/arg_ops.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/accumulate_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/enforce_finite_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/glu_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lp_pool_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/is_empty_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/copy_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/summarize_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/square_root_divide_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_matmul_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/weighted_sample_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/box_with_nms_limit_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/logit_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/map_ops.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_ops_schema.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_logical_ops.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_gradient_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_rotated_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reverse_packed_segs_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduction_ops.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/piecewise_linear_transform_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_transpose_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/slice_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_gradient_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/normalize_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softmax_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/relu_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/spatial_softmax_with_loss_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/generate_proposals_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/negative_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/load_save_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_ops.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/text_file_reader.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ctc_beam_search_decoder_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/string_ops.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_reducer_ops.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/flexible_top_k.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/asin_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/upsample_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_sub_gradient_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cbrt_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/thresholded_relu_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pack_rnn_sequence_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/minmax_gradient_ops.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fused_rowwise_random_quantization_ops.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cosine_embedding_criterion_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_div_gradient_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/hard_sigmoid_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/resize_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/expand_squeeze_dims_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fully_connected_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/clip_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/weighted_multi_sampling_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_reducer_rowwise_8bit_ops.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_sparse_to_dense_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/acos_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/channel_backprop_stats_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/concat_split_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pack_segments.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/half_float_ops.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/assert_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/if_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/boolean_mask_ops.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/dataset_ops.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/deform_conv_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/do_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/boolean_unmask_ops.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/negate_gradient_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_reducer_fused_8bit_rowwise_ops.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gather_ranges_to_dense_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/text_file_reader_utils.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/group_norm_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sinusoid_position_encoding_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/given_tensor_fill_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rmac_regions_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sparse_to_dense_mask_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/partition_ops.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/filler_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fc_inference.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sparse_normalize_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fused_rowwise_8bit_conversion_ops.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cross_entropy_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/distance_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/norm_planar_yuv_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/data_couple.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gather_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stats_ops.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/index_hash_ops.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tile_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/loss_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/replace_nan_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/locally_connected_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/free_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lstm_unit_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/order_switch_ops.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_moments_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stylizer_ops.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softmax_with_loss_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/dropout_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/counter_ops.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/exp_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/find_duplicate_elements_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/heatmap_max_keypoint_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tan_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/minmax_ops.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/mod_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/deform_conv_gradient_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/one_hot_ops.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/accuracy_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/space_batch_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_op_shared.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_front_back_max_ops.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_mul_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/collect_and_distribute_fpn_rpn_proposals_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/bisect_percentile_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rsqrt_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/percentile_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softsign_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/shape_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sqrt_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_tile_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/spatial_batch_norm_gradient_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sqr_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/communicator_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/channel_stats_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_div_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/byte_weight_dequant_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pool_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/variable_length_sequence_padding.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/key_split_ops.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rowmul_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/leaky_relu_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_add_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/local_response_normalization_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/transpose_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cube_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/scale_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elu_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/prepend_dim_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_pad_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pool_gradient_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tt_linear_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/margin_ranking_criterion_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cos_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/instance_norm_gradient_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rank_loss_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/apmeter_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sequence_ops.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/matmul_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/relu_n_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_front_back_mean_ops.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/locally_connected_op_util.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tanh_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/listwise_l2r_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/spatial_batch_norm_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/mean_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/affine_channel_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sin_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sigmoid_gradient_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_bucketize_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/jsd_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ensure_clipped_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/moments_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/bbox_transform_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_pool_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sinh_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/last_n_window_collector.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/mul.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/expand_dims.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/averaged_loss.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/flatten.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/enforce_finite.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/stop_gradient.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/fc.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/batch_matmul.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/batch_gather.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/sparse_lengths_sum.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/add.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/filler.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/concat.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/sigmoid_cross_entropy_with_logits.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/sigmoid.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/cast.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/relu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/sigmoid_cross_entropy_with_logits_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/sigmoid_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/batch_matmul_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/mul_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/flatten_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/sparse_lengths_sum_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/add_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/filler_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/averaged_loss_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/relu_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/expand_dims_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/concat_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/fc_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/cast_cpu.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/stop_gradient_cpu.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/enforce_finite_cpu.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/batch_gather_cpu.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rnn/recurrent_network_executor.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rnn/recurrent_network_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rnn/recurrent_network_blob_fetcher_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/activation_distribution_observer.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/batch_matmul_dnnlowp_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/caffe2_dnnlowp_utils.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/channel_shuffle_dnnlowp_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/concat_dnnlowp_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/conv_dnnlowp_acc16_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/conv_relu_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/dequantize_dnnlowp_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/dnnlowp_partition.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/elementwise_add_dnnlowp_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/elementwise_linear_dnnlowp_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/elementwise_mul_dnnlowp_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/elementwise_sum_relu_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/fbgemm_pack_matrix_cache.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/fully_connected_dnnlowp_acc16_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/fully_connected_dnnlowp_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/fully_connected_rowwise_dnnlowp_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/lstm_unit_dnnlowp_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/pool_dnnlowp_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/quantize_dnnlowp_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/sigmoid_dnnlowp_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/tanh_dnnlowp_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/utility_dnnlowp_ops.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/dynamic_histogram.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/kl_minimization.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/norm_minimization.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/p99.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/sigmoid.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/tanh.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/init_qnnpack.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_add_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_average_pool_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_channel_shuffle_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_concat_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_conv_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_conv_transpose_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_dequantize_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_fc_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_flatten_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_given_tensor_fill_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_leaky_relu_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_max_pool_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_quantize_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_relu_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_reshape_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_resize_nearest_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_roi_align_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_slice_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_sigmoid_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_softmax_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/fusion.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/sink.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/backend_cutting.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/dead_code_elim.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/onnxifi_transformer.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/distributed_converter.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/mobile.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/passes.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/optimizer.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/converter.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/distributed.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/optimize_ideep.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/device.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/annotations.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/typed_axpy.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/math_cpu_base.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/embedding_lookup.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/fused_8bit_rowwise_embedding_lookup.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/adagrad.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/blobs_queue_db.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/rebatching_queue.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/rebatching_queue_ops.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/blobs_queue.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/queue_ops.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/iter_op.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/wngrad_op.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/adagrad_op.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/clip_tensor_op.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/lars_op.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/learning_rate_adaption_op.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/ftrl_op.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/momentum_sgd_op.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/adam_op.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/gftrl_op.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/rmsprop_op.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/learning_rate_op.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/yellowfin_op.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/adadelta_op.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/share/contrib/nnpack/conv_op.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/share/contrib/depthwise/depthwise3x3_conv_op.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/single_op_transform.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/common_subexpression_elimination.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/pattern_net_transform.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/conv_to_nnpack_transform.cc.o [ 56%] Linking CXX shared library ../lib/libcaffe2.so [ 56%] Built target caffe2 Scanning dependencies of target caffe2_observers Scanning dependencies of target caffe2_module_test_dynamic Scanning dependencies of target caffe2_pybind11_state [ 56%] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/shm.dir/core.cpp.o [ 56%] Building CXX object modules/module_test/CMakeFiles/caffe2_module_test_dynamic.dir/module_test_dynamic.cc.o [ 56%] Building CXX object modules/observers/CMakeFiles/caffe2_observers.dir/net_observer_reporter_print.cc.o [ 56%] Building CXX object modules/observers/CMakeFiles/caffe2_observers.dir/observer_config.cc.o [ 56%] Building CXX object modules/observers/CMakeFiles/caffe2_observers.dir/perf_observer.cc.o [ 56%] Building CXX object caffe2/torch/lib/THD/CMakeFiles/THD.dir/base/data_channels/DataChannelMPI.cpp.o [ 56%] Building CXX object caffe2/torch/lib/THD/CMakeFiles/THD.dir/base/data_channels/DataChannelNccl.cpp.o [ 56%] Building CXX object caffe2/torch/lib/THD/CMakeFiles/THD.dir/base/DataChannelRequest.cpp.o [ 56%] Building CXX object caffe2/torch/lib/THD/CMakeFiles/THD.dir/base/RPCType.cpp.o [ 56%] Building CXX object caffe2/torch/lib/THD/CMakeFiles/THD.dir/process_group/Collectives.cpp.o [ 56%] Building CXX object caffe2/torch/lib/THD/CMakeFiles/THD.dir/process_group/General.cpp.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2_pybind11_state.dir/python/pybind_state_dlpack.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2_pybind11_state.dir/python/pybind_state_registry.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2_pybind11_state.dir/python/pybind_state.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2_pybind11_state.dir/python/pybind_state_nomni.cc.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/core/caffe2_gpu_generated_context_gpu.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/core/caffe2_gpu_generated_THCCachingAllocator.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/utils/caffe2_gpu_generated_math_gpu.cu.o /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:31:17: error: ‘ncclInt8’ was not declared in this scope {at::kChar, ncclInt8}, ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:32:17: error: ‘ncclUint8’ was not declared in this scope {at::kByte, ncclUint8}, ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:35:16: error: ‘ncclInt32’ was not declared in this scope {at::kInt, ncclInt32}, ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:38:1: error: could not convert ‘{{at::kChar, &lt;expression error&gt;}, {at::kByte, &lt;expression error&gt;}, {at::kFloat, ncclFloat}, {at::kDouble, ncclDouble}, {at::kInt, &lt;expression error&gt;}, {at::kLong, ncclInt64}, {at::kHalf, ncclHalf}}’ from ‘&lt;brace-enclosed initializer list&gt;’ to ‘std::unordered_map&lt;at::ScalarType, ncclDataType_t&gt;’ }; ^ In file included from /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:1:0: /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp: In member function ‘void thd::DataChannelNccl::_destroyNcclResources(THDGroup)’: /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:187:40: error: void value not ignored as it ought to be NCCL_CHECK(ncclCommDestroy(comm)); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp: In member function ‘thd::NcclResourcePair thd::DataChannelNccl::_getNcclResourcePair(std::vector&lt;at::Tensor&gt;&amp;, THDGroup)’: /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:295:29: error: ‘ncclGroupStart’ was not declared in this scope NCCL_CHECK(ncclGroupStart()); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:302:27: error: ‘ncclGroupEnd’ was not declared in this scope NCCL_CHECK(ncclGroupEnd()); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp: In member function ‘virtual void thd::DataChannelNccl::allReduce(std::vector&lt;at::Tensor&gt;&amp;, THDReduceOp, THDGroup)’: /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:417:29: error: ‘ncclGroupStart’ was not declared in this scope NCCL_CHECK(ncclGroupStart()); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:432:27: error: ‘ncclGroupEnd’ was not declared in this scope NCCL_CHECK(ncclGroupEnd()); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp: In member function ‘virtual void thd::DataChannelNccl::allGather(std::vector&lt;at::Tensor&gt;&amp;, std::vector&lt;at::Tensor&gt;&amp;, THDGroup)’: /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:466:29: error: ‘ncclGroupStart’ was not declared in this scope NCCL_CHECK(ncclGroupStart()); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:473:27: error: invalid conversion from ‘void*’ to ‘int’ [-fpermissive] output[i].data_ptr(), ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:474:23: error: invalid conversion from ‘int64_t {aka long int}’ to ‘ncclDataType_t’ [-fpermissive] input[i].numel(), ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:477:15: error: cannot convert ‘ncclDataType_t’ to ‘void*’ for argument ‘4’ to ‘ncclResult_t ncclAllGather(const void*, int, ncclDataType_t, void*, ncclComm_t, cudaStream_t)’ stream)); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:480:27: error: ‘ncclGroupEnd’ was not declared in this scope NCCL_CHECK(ncclGroupEnd()); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp: In member function ‘virtual void thd::DataChannelNccl::reduce(std::vector&lt;at::Tensor&gt;&amp;, THDReduceOp, thd::rank_type, THDGroup)’: /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:516:29: error: ‘ncclGroupStart’ was not declared in this scope NCCL_CHECK(ncclGroupStart()); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:532:27: error: ‘ncclGroupEnd’ was not declared in this scope NCCL_CHECK(ncclGroupEnd()); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp: In member function ‘virtual void thd::DataChannelNccl::broadcast(std::vector&lt;at::Tensor&gt;&amp;, thd::rank_type, THDGroup)’: /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:568:29: error: ‘ncclGroupStart’ was not declared in this scope NCCL_CHECK(ncclGroupStart()); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:582:27: error: ‘ncclGroupEnd’ was not declared in this scope NCCL_CHECK(ncclGroupEnd()); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ [ 57%] Linking CXX shared library ../../../../lib/libshm.so [ 57%] Built target shm [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_copy_op.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_reduction_ops.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_max_pool_with_index.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_multi_class_accuracy_op.cu.o caffe2/torch/lib/THD/CMakeFiles/THD.dir/build.make:278: recipe for target 'caffe2/torch/lib/THD/CMakeFiles/THD.dir/base/data_channels/DataChannelNccl.cpp.o' failed make[2]: *** [caffe2/torch/lib/THD/CMakeFiles/THD.dir/base/data_channels/DataChannelNccl.cpp.o] Error 1 make[2]: *** Waiting for unfinished jobs.... [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_lengths_tile_op.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_softsign_op.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_cosh_op.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_transpose_op.cu.o [ 57%] Linking CXX shared library ../../lib/libcaffe2_module_test_dynamic.so [ 57%] Built target caffe2_module_test_dynamic [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_piecewise_linear_transform_op.cu.o [ 57%] Linking CXX shared library ../../lib/libcaffe2_observers.so [ 57%] Built target caffe2_observers [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_selu_op.cu.o CMakeFiles/Makefile2:9972: recipe for target 'caffe2/torch/lib/THD/CMakeFiles/THD.dir/all' failed make[1]: *** [caffe2/torch/lib/THD/CMakeFiles/THD.dir/all] Error 2 make[1]: *** Waiting for unfinished jobs.... [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_lengths_pad_op.cu.o /home/user/backup/lichu/pytorch/caffe2/core/context_gpu.cu(24): warning: function &quot;c10::&lt;unnamed&gt;::C10FlagParser_caffe2_cuda_memory_pool::C10FlagParser_caffe2_cuda_memory_pool(const std::__cxx11::string &amp;)&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/core/context_gpu.cu(32): warning: function &quot;c10::&lt;unnamed&gt;::C10FlagParser_caffe2_cub_bin_growth::C10FlagParser_caffe2_cub_bin_growth(const std::__cxx11::string &amp;)&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/core/context_gpu.cu(37): warning: function &quot;c10::&lt;unnamed&gt;::C10FlagParser_caffe2_cub_min_bin::C10FlagParser_caffe2_cub_min_bin(const std::__cxx11::string &amp;)&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/core/context_gpu.cu(42): warning: function &quot;c10::&lt;unnamed&gt;::C10FlagParser_caffe2_cub_max_bin::C10FlagParser_caffe2_cub_max_bin(const std::__cxx11::string &amp;)&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/core/context_gpu.cu(47): warning: function &quot;c10::&lt;unnamed&gt;::C10FlagParser_caffe2_cub_max_managed_mb::C10FlagParser_caffe2_cub_max_managed_mb(const std::__cxx11::string &amp;)&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/core/context_gpu.cu(53): warning: function &quot;c10::&lt;unnamed&gt;::C10FlagParser_caffe2_cub_print_allocation_events::C10FlagParser_caffe2_cub_print_allocation_events(const std::__cxx11::string &amp;)&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/core/context_gpu.cu(59): warning: function &quot;c10::&lt;unnamed&gt;::C10FlagParser_caffe2_gpu_memory_tracking::C10FlagParser_caffe2_gpu_memory_tracking(const std::__cxx11::string &amp;)&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/core/context_gpu.cu(63): warning: function &quot;c10::&lt;unnamed&gt;::C10FlagParser_caffe2_gpu_memory_report_interval_mb::C10FlagParser_caffe2_gpu_memory_report_interval_mb(const std::__cxx11::string &amp;)&quot; was declared but never referenced [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_roi_align_gradient_op.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_tile_op.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_sparse_normalize_op_gpu.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_softmax_ops.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_loss_op.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_resize_op.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_elementwise_linear_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_cbrt_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_sinh_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_floor_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_assert_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_atan_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_pow_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_channel_backprop_stats_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_affine_channel_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_cross_entropy_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_elementwise_ops.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_half_float_ops.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_pad_op_gpu.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_slice_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_acos_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_arg_ops.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_relu_n_op.cu.o /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(66): warning: function &quot;caffe2::math::&lt;unnamed&gt;::AddFunctor&lt;T&gt;::operator() [with T=double]&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(66): warning: function &quot;caffe2::math::&lt;unnamed&gt;::AddFunctor&lt;T&gt;::operator() [with T=float]&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(66): warning: function &quot;caffe2::math::&lt;unnamed&gt;::AddFunctor&lt;T&gt;::operator() [with T=int64_t]&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(66): warning: function &quot;caffe2::math::&lt;unnamed&gt;::AddFunctor&lt;T&gt;::operator() [with T=int32_t]&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(66): warning: function &quot;caffe2::math::&lt;unnamed&gt;::AddFunctor&lt;c10::Half&gt;::operator()&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(67): warning: function &quot;caffe2::math::&lt;unnamed&gt;::SubFunctor&lt;T&gt;::operator() [with T=double]&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(67): warning: function &quot;caffe2::math::&lt;unnamed&gt;::SubFunctor&lt;T&gt;::operator() [with T=float]&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(67): warning: function &quot;caffe2::math::&lt;unnamed&gt;::SubFunctor&lt;T&gt;::operator() [with T=int64_t]&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(67): warning: function &quot;caffe2::math::&lt;unnamed&gt;::SubFunctor&lt;T&gt;::operator() [with T=int32_t]&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(67): warning: function &quot;caffe2::math::&lt;unnamed&gt;::SubFunctor&lt;c10::Half&gt;::operator()&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(68): warning: function &quot;caffe2::math::&lt;unnamed&gt;::MulFunctor&lt;T&gt;::operator() [with T=double]&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(68): warning: function &quot;caffe2::math::&lt;unnamed&gt;::MulFunctor&lt;T&gt;::operator() [with T=float]&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(68): warning: function &quot;caffe2::math::&lt;unnamed&gt;::MulFunctor&lt;T&gt;::operator() [with T=int64_t]&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(68): warning: function &quot;caffe2::math::&lt;unnamed&gt;::MulFunctor&lt;T&gt;::operator() [with T=int32_t]&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(68): warning: function &quot;caffe2::math::&lt;unnamed&gt;::MulFunctor&lt;c10::Half&gt;::operator()&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(69): warning: function &quot;caffe2::math::&lt;unnamed&gt;::DivFunctor&lt;T&gt;::operator() [with T=double]&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(69): warning: function &quot;caffe2::math::&lt;unnamed&gt;::DivFunctor&lt;T&gt;::operator() [with T=float]&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(69): warning: function &quot;caffe2::math::&lt;unnamed&gt;::DivFunctor&lt;T&gt;::operator() [with T=int64_t]&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(69): warning: function &quot;caffe2::math::&lt;unnamed&gt;::DivFunctor&lt;T&gt;::operator() [with T=int32_t]&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(69): warning: function &quot;caffe2::math::&lt;unnamed&gt;::DivFunctor&lt;c10::Half&gt;::operator()&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(1866): warning: function &quot;caffe2::math::&lt;unnamed&gt;::FloatTransform&lt;T&gt;::operator() [with T=c10::Half]&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(1899): warning: function &quot;caffe2::math::&lt;unnamed&gt;::SqrTransform&lt;T&gt;::operator() [with T=float]&quot; was declared but never referenced [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_sigmoid_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_local_response_normalization_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_clip_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_integral_image_op.cu.o [ 58%] Linking CXX shared module python/caffe2_pybind11_state.so [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_roi_align_rotated_op.cu.o [ 58%] Built target caffe2_pybind11_state [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_reduce_ops.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_enforce_finite_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_cosine_embedding_criterion_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_asin_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_ensure_cpu_output_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_rmac_regions_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_sequence_ops.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_replace_nan_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_segment_reduction_op_gpu.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_channel_stats_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_reciprocal_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_tanh_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_spatial_batch_norm_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_lp_pool_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_prelu_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_one_hot_ops.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_channel_shuffle_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_data_couple_gpu.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_reduce_front_back_max_ops.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_mean_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_space_batch_op_gpu.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_group_norm_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_sin_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_reverse_packed_segs_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_hard_sigmoid_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_stump_func_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_top_k.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_weighted_sample_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_batch_moments_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_batch_gather_ops.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_leaky_relu_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_find_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_summarize_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_abs_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_instance_norm_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_roi_align_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_normalize_ops.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_glu_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_accuracy_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_cos_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_deform_conv_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_cube_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_margin_ranking_criterion_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_gather_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_sparse_to_dense_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_dropout_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_pack_segments.cu.o /home/user/backup/lichu/pytorch/caffe2/operators/summarize_op.cu(37): warning: function &quot;caffe2::&lt;unnamed&gt;::summary_stats_unary_op&lt;T&gt;::operator() [with T=float]&quot; was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/operators/summarize_op.cu(57): warning: function &quot;caffe2::&lt;unnamed&gt;::summary_stats_binary_op&lt;T&gt;::operator() [with T=float]&quot; was declared but never referenced [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_utility_ops.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_elu_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_elementwise_div_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_rsqrt_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_elementwise_mul_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_upsample_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_roi_align_rotated_gradient_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_batch_matmul_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_thresholded_relu_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_softplus_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_swish_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_perplexity_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_accumulate_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_given_tensor_byte_string_to_uint8_fill_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_moments_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_boolean_mask_ops.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_filler_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_unique_ops.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_pool_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_ceil_op.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_tan_op.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_logit_op.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_given_tensor_fill_op.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_cast_op.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_layer_norm_op.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_reduce_front_back_sum_mean_ops.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_mem_query_op.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_gru_unit_op_gpu.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_boolean_unmask_ops.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_distance_op.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_lstm_unit_op_gpu.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_roi_pool_op.cu.o /home/user/backup/lichu/pytorch/caffe2/operators/mem_query_op.cu(9): warning: function &quot;caffe2::&lt;unnamed&gt;::GetGPUMemoryUsageOp::GetGPUMemoryUsageOp(const caffe2::OperatorDef &amp;, caffe2::Workspace *)&quot; was declared but never referenced [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_relu_op.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/rnn/caffe2_gpu_generated_recurrent_network_op_gpu.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/caffe2_gpu_generated_yellowfin_op_gpu.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/caffe2_gpu_generated_adadelta_op_gpu.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/caffe2_gpu_generated_adam_op_gpu.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/caffe2_gpu_generated_fp32_momentum_sgd_op.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/caffe2_gpu_generated_lars_op_gpu.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/caffe2_gpu_generated_adagrad_op_gpu.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/caffe2_gpu_generated_rmsprop_op_gpu.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/caffe2_gpu_generated_momentum_sgd_op_gpu.cu.o [ 63%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/caffe2_gpu_generated_fp16_momentum_sgd_op.cu.o Scanning dependencies of target caffe2_gpu [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/native/cudnn/BatchNorm.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/native/cudnn/RNN.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/native/cudnn/GridSampler.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/native/cudnn/LossCTC.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/native/cudnn/Conv.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/native/miopen/BatchNorm_miopen.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/native/miopen/Conv_miopen.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/native/sparse/cuda/SparseCUDATensor.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/cuda/CUDAContext.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/cuda/detail/CUDAGuardImpl.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/cuda/PinnedMemoryAllocator.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/cuda/CUDAGenerator.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/cuda/CUDAStream.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/native/cudnn/AffineGridGenerator.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/cuda/detail/CUDAHooks.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/cuda/CUDATypeDefault.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/native/cuda/CUDAUnaryOps.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/CUDAByteType.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/CUDACharType.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/CUDACopy.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/CUDADoubleType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/CUDAFloatType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/CUDAHalfType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/CUDAIntType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/CUDALongType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/CUDAShortType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/RegisterCUDA.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/SparseCUDAByteType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/SparseCUDACharType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/SparseCUDADoubleType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/SparseCUDAFloatType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/SparseCUDAIntType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/SparseCUDALongType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/SparseCUDAShortType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/THC/THCCachingAllocator.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/THC/THCCachingHostAllocator.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/THC/THCGeneral.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/THC/THCStorageCopy.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/THC/THCStream.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/THC/THCTensor.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/THC/THCTensorCopy.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/THC/THCTensorRandom.cpp.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/cudnn/Types.cpp.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/cudnn/Handle.cpp.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/cudnn/Descriptors.cpp.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/contrib/aten/aten_op_cuda.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/contrib/gloo/allreduce_ops_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/contrib/gloo/broadcast_ops_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/contrib/gloo/common_world_ops_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/contrib/nccl/cuda_nccl_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/contrib/nccl/cuda_nccl_op_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/core/common_cudnn.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/core/blob_serialization_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/core/net_async_dag_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/core/common_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/core/event_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/db/create_db_op_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/distributed/file_store_handler_op_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/mpi/mpi_ops_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/conv_op_cache_cudnn.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/conv_transpose_op_cudnn.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/relu_op_cudnn.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/local_response_normalization_op_cudnn.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/utility_ops_cudnn.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/dropout_op_cudnn.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/tanh_op_cudnn.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/sigmoid_op_cudnn.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/elu_op_cudnn.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/transpose_op_cudnn.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/softmax_op_cudnn.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/conv_op_cudnn.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/order_switch_ops_cudnn.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/expand_squeeze_dims_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/while_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/elementwise_sub_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/counter_ops_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/locally_connected_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/elementwise_add_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/exp_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/conv_transpose_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/fully_connected_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/sqrt_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/sqr_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/negate_gradient_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/if_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/tensor_protos_db_input_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/expand_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/concat_split_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/stop_gradient_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/do_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/load_save_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/reshape_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/shape_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/scale_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/matmul_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/zero_gradient_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/log_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/free_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/conv_op_shared_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/negative_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/conv_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/im2col_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/order_switch_ops_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/prepend_dim_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/communicator_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/rnn/recurrent_op_cudnn.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/rnn/recurrent_network_blob_fetcher_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/rnn/recurrent_network_executor_gpu.cc.o [ 68%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/queue/queue_ops_gpu.cc.o [ 68%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/learning_rate_op_gpu.cc.o [ 68%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/iter_op_gpu.cc.o [ 68%] Linking CXX shared library ../lib/libcaffe2_gpu.so [ 75%] Built target caffe2_gpu Makefile:127: recipe for target 'all' failed make: *** [all] Error 2 Failed to run 'bash ../tools/build_pytorch_libs.sh --use-cuda --use-fbgemm --use-nnpack --use-mkldnn --use-qnnpack caffe2' "><pre class="notranslate"><code class="notranslate">-- Build files have been written to: /home/user/backup/lichu/pytorch/build + make install -j16 [ 1%] Built target onnxifi_dummy [ 1%] Built target js_embed [ 1%] Built target fbgemm_avx512 [ 2%] Built target fbgemm_avx2 [ 2%] Built target clog [ 2%] Built target ATEN_CPU_FILES_GEN_TARGET [ 2%] Built target onnxifi_loader [ 2%] Building CXX object third_party/googletest/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o [ 3%] Built target gloo [ 3%] Built target benchmark [ 3%] Built target common [ 3%] Built target pthreadpool [ 3%] Built target mkrename [ 4%] Built target c10 [ 6%] Built target asmjit [ 7%] Built target libprotobuf-lite [ 7%] Built target mkdisp [ 7%] Built target mkmasked_gnuabi [ 7%] Built target ATEN_CUDA_FILES_GEN_TARGET [ 7%] Built target mkrename_gnuabi [ 8%] Built target c10_utils_gpu [ 8%] Built target arraymap [ 8%] Built target mkalias [ 8%] Built target c10_utils_hip [ 8%] Built target c10_utils_cpu [ 8%] Built target nnpack_reference_layers [ 9%] Built target cpuinfo [ 9%] Built target benchmark_main [ 9%] Built target torch_shm_manager [ 9%] Built target renameAVX.h_generated [ 9%] Built target onnxifi_wrapper [ 9%] Built target headers [ 9%] Built target renamedsp128.h_generated [ 9%] Built target __aten_op_header_gen [ 9%] Built target dispavx.c_generated [ 9%] Built target dispsse.c_generated [ 9%] Built target renameSSE2.h_generated [ 9%] Built target renameFMA4.h_generated [ 9%] Built target renamedsp256.h_generated [ 9%] Built target renameAVX2.h_generated [ 9%] Built target renameAVX2128.h_generated [ 9%] Built target renameSSE4.h_generated [ 9%] Built target fbgemm [ 10%] Built target qnnpack [ 11%] Built target nnpack [ 11%] Built target sleefavx [ 11%] Linking CXX static library ../../../lib/libgloo_cuda.a [ 11%] Built target dispsse_obj [ 11%] Built target dispavx_obj [ 11%] Built target sleefsse2 [ 11%] Built target sleeffma4 [ 11%] Built target sleefavx2 [ 15%] Built target libprotobuf [ 16%] Built target sleefavx2128 [ 16%] Built target sleefsse4 [ 16%] Built target sleef [ 20%] Built target libprotoc [ 21%] Built target gloo_cuda [ 21%] Linking CXX executable ../../../bin/protoc [ 21%] Built target gloo_builder [ 21%] Built target protoc [ 21%] Running C++/Python protocol buffer compiler on /home/user/backup/lichu/pytorch/caffe2/proto/predictor_consts.proto [ 21%] Running C++/Python protocol buffer compiler on /home/user/backup/lichu/pytorch/caffe2/proto/prof_dag.proto [ 21%] Running C++/Python protocol buffer compiler on /home/user/backup/lichu/pytorch/caffe2/proto/metanet.proto [ 21%] Running C++/Python protocol buffer compiler on /home/user/backup/lichu/pytorch/caffe2/proto/hsm.proto [ 21%] Running C++/Python protocol buffer compiler on /home/user/backup/lichu/pytorch/caffe2/proto/caffe2.proto [ 21%] Running C++/Python protocol buffer compiler on /home/user/backup/lichu/pytorch/caffe2/proto/caffe2_legacy.proto [ 21%] Built target gen_onnx_proto [ 21%] Running C++/Python protocol buffer compiler on /home/user/backup/lichu/pytorch/caffe2/proto/torch.proto [ 21%] Built target onnx_proto Scanning dependencies of target Caffe2_PROTO [ 23%] Built target onnx [ 23%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/torch.pb.cc.o [ 23%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/metanet.pb.cc.o [ 23%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2_legacy.pb.cc.o [ 23%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2.pb.cc.o [ 24%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/prof_dag.pb.cc.o [ 24%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/predictor_consts.pb.cc.o [ 24%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/hsm.pb.cc.o [ 24%] Built target python_copy_files [ 24%] Built target Caffe2_PROTO Scanning dependencies of target dispatch Scanning dependencies of target Caffe2_perfkernels_avx2 Scanning dependencies of target Caffe2_perfkernels_avx [ 24%] Linking CXX static library ../lib/libcaffe2_protos.a Scanning dependencies of target caffe2_dnnlowp_avx2_ops [ 24%] Building CXX object caffe2/core/dispatch/CMakeFiles/dispatch.dir/OpSchemaRegistration.cpp.o [ 24%] Building CXX object caffe2/core/dispatch/CMakeFiles/dispatch.dir/DispatchTable.cpp.o [ 24%] Building CXX object caffe2/core/dispatch/CMakeFiles/dispatch.dir/KernelRegistration.cpp.o [ 24%] Building CXX object caffe2/core/dispatch/CMakeFiles/dispatch.dir/Dispatcher.cpp.o [ 24%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx.dir/typed_axpy_avx.cc.o [ 24%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx.dir/adagrad_avx.cc.o [ 25%] Building CXX object caffe2/core/dispatch/CMakeFiles/dispatch.dir/OpSchema.cpp.o [ 25%] Built target caffe2_protos [ 25%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/typed_axpy_avx2.cc.o [ 25%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/embedding_lookup_avx2.cc.o [ 25%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/math_cpu_avx2.cc.o [ 25%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/embedding_lookup_fused_8bit_rowwise_avx2.cc.o [ 25%] Building CXX object caffe2/quantization/server/CMakeFiles/caffe2_dnnlowp_avx2_ops.dir/conv_dnnlowp_op.cc.o [ 25%] Building CXX object caffe2/quantization/server/CMakeFiles/caffe2_dnnlowp_avx2_ops.dir/fully_connected_fake_lowp_op.cc.o [ 25%] Building CXX object caffe2/quantization/server/CMakeFiles/caffe2_dnnlowp_avx2_ops.dir/elementwise_sum_dnnlowp_op.cc.o [ 25%] Building CXX object caffe2/quantization/server/CMakeFiles/caffe2_dnnlowp_avx2_ops.dir/group_norm_dnnlowp_op.cc.o [ 26%] Building CXX object caffe2/quantization/server/CMakeFiles/caffe2_dnnlowp_avx2_ops.dir/relu_dnnlowp_op.cc.o [ 26%] Building CXX object caffe2/quantization/server/CMakeFiles/caffe2_dnnlowp_avx2_ops.dir/dnnlowp.cc.o [ 26%] Built target dispatch [ 26%] Linking CXX static library ../../../lib/libgtest.a [ 26%] Built target gtest [ 26%] Building CXX object third_party/googletest/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o [ 26%] Built target Caffe2_perfkernels_avx [ 26%] Linking CXX static library ../../../lib/libgtest_main.a [ 26%] Built target gtest_main [ 26%] Building CXX object c10/test/CMakeFiles/c10_DeviceGuard_test.dir/DeviceGuard_test.cpp.o [ 26%] Building CXX object c10/test/CMakeFiles/c10_Metaprogramming_test.dir/util/Metaprogramming_test.cpp.o [ 26%] Building CXX object c10/test/CMakeFiles/c10_logging_test.dir/logging_test.cpp.o [ 26%] Building CXX object c10/test/CMakeFiles/c10_InlineStreamGuard_test.dir/detail/InlineStreamGuard_test.cpp.o [ 26%] Building CXX object c10/test/CMakeFiles/c10_TypeTraits_test.dir/util/TypeTraits_test.cpp.o [ 26%] Building CXX object c10/test/CMakeFiles/c10_InlineDeviceGuard_test.dir/detail/InlineDeviceGuard_test.cpp.o [ 26%] Building CXX object c10/test/CMakeFiles/c10_registry_test.dir/registry_test.cpp.o [ 26%] Building CXX object c10/test/CMakeFiles/c10_StreamGuard_test.dir/StreamGuard_test.cpp.o [ 26%] Linking CXX executable ../../bin/c10_StreamGuard_test [ 26%] Built target c10_StreamGuard_test [ 26%] Building CXX object c10/test/CMakeFiles/c10_Array_test.dir/util/Array_test.cpp.o [ 26%] Linking CXX executable ../../bin/c10_TypeTraits_test [ 26%] Built target c10_TypeTraits_test [ 26%] Building CXX object c10/test/CMakeFiles/c10_flags_test.dir/flags_test.cpp.o [ 26%] Building CXX object c10/test/CMakeFiles/c10_TypeList_test.dir/util/TypeList_test.cpp.o [ 26%] Linking CXX executable ../../bin/c10_DeviceGuard_test [ 26%] Built target Caffe2_perfkernels_avx2 [ 26%] Built target c10_DeviceGuard_test [ 26%] Linking CXX executable ../../bin/c10_utils_gpu_test [ 26%] Building CXX object caffe2/utils/CMakeFiles/c10_utils_hip_test.dir/dummy.cpp.o [ 26%] Linking CXX executable ../../bin/c10_Metaprogramming_test [ 26%] Linking CXX executable ../../bin/c10_utils_hip_test [ 26%] Built target c10_utils_gpu_test [ 26%] Linking CXX executable ../../bin/c10_utils_cpu_test [ 27%] Built target c10_Metaprogramming_test Scanning dependencies of target dispatch_test [ 27%] Built target c10_utils_hip_test [ 27%] Building CXX object caffe2/core/dispatch/CMakeFiles/dispatch_test.dir/OpSchema_test.cpp.o [ 27%] Built target c10_utils_cpu_test [ 27%] Linking CXX executable ../../bin/c10_Array_test [ 27%] Linking CXX executable ../../bin/c10_logging_test [ 27%] Built target c10_Array_test [ 27%] Built target c10_logging_test [ 27%] Linking CXX executable ../../bin/c10_registry_test [ 27%] Linking CXX executable ../../bin/c10_InlineDeviceGuard_test [ 27%] Built target c10_registry_test [ 27%] Linking CXX executable ../../bin/c10_InlineStreamGuard_test [ 27%] Built target c10_InlineDeviceGuard_test [ 27%] Built target c10_InlineStreamGuard_test [ 27%] Linking CXX executable ../../bin/c10_flags_test [ 27%] Linking CXX executable ../../bin/c10_TypeList_test [ 27%] Built target c10_flags_test [ 27%] Built target c10_TypeList_test [ 27%] Linking CXX executable ../../../bin/dispatch_test [ 27%] Built target dispatch_test [ 27%] Built target caffe2_dnnlowp_avx2_ops Scanning dependencies of target caffe2 [ 27%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUGenerator.cpp.o [ 27%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/UndefinedType.cpp.o [ 27%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUTypeDefault.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/Context.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/Utils.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/SparseTensorImpl.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/DLConvertor.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/TensorGeometry.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/ExpandUtils.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/detail/CPUGuardImpl.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/blob.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/cpu/FlushDenormal.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/TensorUtils.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/detail/CUDAHooksInterface.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUGeneral.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/detail/ComplexHooksInterface.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/Formatting.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/register_symbols.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/Range.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/ATenGeneral.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/Allocator.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/TensorImpl.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/Storage.cpp.o [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/type.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/UniqueVoidPtr.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/ATenCoreTest.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/Tensor.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/intrusive_ptr.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/TensorTypeId.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/Scalar.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/OptionsGuard.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/typeid.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/interned_strings.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/thread_pool.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/ArrayRef.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/VariableHooksInterface.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/StorageImpl.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/TensorOptions.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/AlignOf.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/LegacyTypeDispatch.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/ivalue.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/TensorTypeIdRegistration.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/SmallVector.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/UndefinedTensorImpl.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/core/context_base.cpp.o [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Dropout.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Memory.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/TensorCompare.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/RoiPooling.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Resize.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/TensorProperties.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/PixelShuffle.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/ReduceOps.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Unique.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/GridSampler.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Normalization.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/LegacyBridge.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/RNN.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/PackedSequence.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/TensorConversions.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/TensorIterator.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Copy.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/LinearAlgebra.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Pooling.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Scalar.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/TensorIteratorReduce.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Indexing.cpp.o [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/SoftMax.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Distance.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/BatchLinearAlgebra.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/WeightNorm.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/TensorFactories.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/ConvolutionTBC.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/TensorShape.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/TypeProperties.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/TensorTransformations.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/EmbeddingBag.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Activation.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Loss.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Linear.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Embedding.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/LegacyDefinitions.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/DispatchStub.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Distributions.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/BinaryOps.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/ConstantPadNd.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/LossCTC.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/UnaryOps.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/Convolution.cpp.o [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/SpectralOps.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/SummaryOps.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/sparse/SparseTensor.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/sparse/SparseTensorMath.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/mkl/SpectralOps.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/mkl/LinearAlgebra.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/mkldnn/Conv.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUByteType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUCharType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUCopy.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUDoubleType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUFloatType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUHalfType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUIntType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPULongType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/CPUShortType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/RegisterCPU.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/SparseCPUByteType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/SparseCPUCharType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/SparseCPUDoubleType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/SparseCPUFloatType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/SparseCPUIntType.cpp.o [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/SparseCPULongType.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/SparseCPUShortType.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/TypeDefault.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THGeneral.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THAllocator.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THSize.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THStorageFunctions.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THTensor.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THTensorCopy.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THTensorRandom.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THTensorMath.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THTensorMoreMath.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THTensorEvenMoreMath.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THTensorConv.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THTensorLapack.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THBlas.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THLapack.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THLogAdd.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THRandom.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THFile.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THDiskFile.cpp.o [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THMemoryFile.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/THVector.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/vector/AVX.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/TH/vector/AVX2.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/THNN/init.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.AVX2.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.AVX2.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.AVX2.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/Activation.cpp.AVX2.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.AVX2.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.AVX2.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.AVX2.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.AVX2.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.AVX.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.AVX.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.AVX.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/Activation.cpp.AVX.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.AVX.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.AVX.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.AVX.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.AVX.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.DEFAULT.cpp.o [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.DEFAULT.cpp.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.DEFAULT.cpp.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/Activation.cpp.DEFAULT.cpp.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.DEFAULT.cpp.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.DEFAULT.cpp.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.DEFAULT.cpp.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/aten/aten_op.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/allgather_ops.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/allreduce_ops.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/barrier_ops.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/broadcast_ops.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/common.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/common_world_ops.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/context.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/reduce_scatter_ops.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/store_handler.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/script/compiler.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/script/lexer.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/operator.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_async_tracing.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/workspace.cc.o [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_async_scheduling.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/qtensor_serialization.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/blob_serialization.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/types.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/module.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/context_base.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/tensor_impl.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/graph.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/operator_schema.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/transform.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/tensor.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/common.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/blob_stats.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_async_base.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/qtensor.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/int8_serialization.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/prof_dag_counters.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/init_intrinsics_check.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/tensor_int8.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_simple.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/init.cc.o [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_dag.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/memonger.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_dag_utils.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_async_polling.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/init_omp.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/operator_c10wrapper.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/stats.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/plan_executor.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/numa.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/allocator.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_simple_refcount.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/context.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/event.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/db.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/proto_convert.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/proto_wrap.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/proto_utils.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/murmur_hash3.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/smart_tensor_printer.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/signal_handler.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/string_utils.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/threadpool/ThreadPool.cc.o [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/cpuid.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/bench_utils.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/math_cpu.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/math_utils.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/thread_name.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/threadpool/pthreadpool.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/threadpool/pthreadpool_impl.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/predictor/predictor.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/predictor/predictor_utils.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/predictor/predictor_config.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/nomnigraph/tests/test_util.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/nomnigraph/Representations/NeuralNet.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/db/create_db_op.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/db/protodb.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/file_store_handler.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/file_store_handler_op.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/store_handler.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/store_ops.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/mpi/mpi_common.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/mpi/mpi_ops.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/observers/time_observer.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/observers/runcnt_observer.cc.o [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/backend.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/helper.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/backend_rep.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/onnx_exporter.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/device.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/onnxifi_init.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/numpy_tile_op.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_ops_utils.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_sub_op.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_gather_ops.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_op_eigen.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stump_func_op.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/workspace_ops.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_front_back_sum_ops.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gather_fused_8bit_rowwise_op.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/utility_ops.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_ops.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sigmoid_op.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/atan_op.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/zero_gradient_op.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ngram_ops.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/atomic_ops.cc.o [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/segment_reduction_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_sum_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/top_k.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/integral_image_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_rotated_gradient_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reservoir_sampling.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/channel_shuffle_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stats_put_ops.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ensure_cpu_output_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/normalize_l1_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/selu_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/index_ops.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_add_gradient_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/onnx_while_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cosh_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/flatten_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quant_decode_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lpnorm_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gru_unit_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reshape_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_transpose_op_mobile.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/crf_viterbi_op.cc.o [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/find_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/while_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pad_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/feed_blob_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conditional_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/create_scope_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_top_k_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pow_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ctc_greedy_decoder_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tanh_gradient_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_mul_gradient_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cast_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/unique_ops.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/floor_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reciprocal_gradient_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reciprocal_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/prelu_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/instance_norm_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ceil_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/layer_norm_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/log_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/h_softmax_op.cc.o [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/feature_maps_ops.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/onnxifi_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_linear_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/given_tensor_byte_string_to_uint8_fill_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/swish_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softplus_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_transpose_gradient_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/im2col_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/merge_id_lists_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tensor_protos_db_input.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/remove_data_blocks_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/perplexity_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stop_gradient.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/multi_class_accuracy_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/length_split_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softmax_shared.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_box_cox_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/expand_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/abs_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sparse_to_dense_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/arg_ops.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/accumulate_op.cc.o [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/enforce_finite_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/glu_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lp_pool_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/is_empty_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/copy_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/summarize_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/square_root_divide_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_matmul_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/weighted_sample_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/box_with_nms_limit_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/logit_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/map_ops.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_ops_schema.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_logical_ops.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_gradient_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_rotated_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reverse_packed_segs_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduction_ops.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/piecewise_linear_transform_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_transpose_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/slice_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_op.cc.o [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_gradient_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/normalize_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softmax_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/relu_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/spatial_softmax_with_loss_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/generate_proposals_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/negative_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/load_save_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_ops.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/text_file_reader.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ctc_beam_search_decoder_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/string_ops.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_reducer_ops.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/flexible_top_k.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/asin_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/upsample_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_sub_gradient_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cbrt_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/thresholded_relu_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pack_rnn_sequence_op.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/minmax_gradient_ops.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fused_rowwise_random_quantization_ops.cc.o [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cosine_embedding_criterion_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_div_gradient_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/hard_sigmoid_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/resize_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/expand_squeeze_dims_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fully_connected_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/clip_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/weighted_multi_sampling_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_reducer_rowwise_8bit_ops.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_sparse_to_dense_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/acos_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/channel_backprop_stats_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/concat_split_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pack_segments.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/half_float_ops.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/assert_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/if_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/boolean_mask_ops.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/dataset_ops.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/deform_conv_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/do_op.cc.o [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/boolean_unmask_ops.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/negate_gradient_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_reducer_fused_8bit_rowwise_ops.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gather_ranges_to_dense_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/text_file_reader_utils.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/group_norm_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sinusoid_position_encoding_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/given_tensor_fill_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rmac_regions_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sparse_to_dense_mask_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/partition_ops.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/filler_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fc_inference.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sparse_normalize_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fused_rowwise_8bit_conversion_ops.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cross_entropy_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/distance_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/norm_planar_yuv_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/data_couple.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gather_op.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stats_ops.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/index_hash_ops.cc.o [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tile_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/loss_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/replace_nan_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/locally_connected_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/free_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lstm_unit_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/order_switch_ops.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_moments_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stylizer_ops.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softmax_with_loss_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/dropout_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/counter_ops.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/exp_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/find_duplicate_elements_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/heatmap_max_keypoint_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tan_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/minmax_ops.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/mod_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/deform_conv_gradient_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/one_hot_ops.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/accuracy_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/space_batch_op.cc.o [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_op_shared.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_front_back_max_ops.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_mul_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/collect_and_distribute_fpn_rpn_proposals_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/bisect_percentile_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rsqrt_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/percentile_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softsign_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/shape_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sqrt_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_tile_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/spatial_batch_norm_gradient_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sqr_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/communicator_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/channel_stats_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_div_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/byte_weight_dequant_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pool_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/variable_length_sequence_padding.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/key_split_ops.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rowmul_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/leaky_relu_op.cc.o [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_add_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/local_response_normalization_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/transpose_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cube_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/scale_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elu_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/prepend_dim_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_pad_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pool_gradient_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tt_linear_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/margin_ranking_criterion_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cos_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/instance_norm_gradient_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rank_loss_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/apmeter_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sequence_ops.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/matmul_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/relu_n_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_front_back_mean_ops.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/locally_connected_op_util.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tanh_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/listwise_l2r_op.cc.o [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/spatial_batch_norm_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/mean_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/affine_channel_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sin_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sigmoid_gradient_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_bucketize_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/jsd_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ensure_clipped_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/moments_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/bbox_transform_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_pool_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sinh_op.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/last_n_window_collector.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/mul.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/expand_dims.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/averaged_loss.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/flatten.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/enforce_finite.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/stop_gradient.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/fc.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/batch_matmul.cc.o [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/batch_gather.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/sparse_lengths_sum.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/add.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/filler.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/concat.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/sigmoid_cross_entropy_with_logits.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/sigmoid.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/cast.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/relu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/sigmoid_cross_entropy_with_logits_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/sigmoid_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/batch_matmul_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/mul_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/flatten_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/sparse_lengths_sum_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/add_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/filler_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/averaged_loss_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/relu_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/expand_dims_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/concat_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/fc_cpu.cc.o [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/cast_cpu.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/stop_gradient_cpu.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/enforce_finite_cpu.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/batch_gather_cpu.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rnn/recurrent_network_executor.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rnn/recurrent_network_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rnn/recurrent_network_blob_fetcher_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/activation_distribution_observer.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/batch_matmul_dnnlowp_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/caffe2_dnnlowp_utils.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/channel_shuffle_dnnlowp_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/concat_dnnlowp_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/conv_dnnlowp_acc16_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/conv_relu_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/dequantize_dnnlowp_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/dnnlowp_partition.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/elementwise_add_dnnlowp_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/elementwise_linear_dnnlowp_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/elementwise_mul_dnnlowp_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/elementwise_sum_relu_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/fbgemm_pack_matrix_cache.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/fully_connected_dnnlowp_acc16_op.cc.o [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/fully_connected_dnnlowp_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/fully_connected_rowwise_dnnlowp_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/lstm_unit_dnnlowp_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/pool_dnnlowp_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/quantize_dnnlowp_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/sigmoid_dnnlowp_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/tanh_dnnlowp_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/utility_dnnlowp_ops.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/dynamic_histogram.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/kl_minimization.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/norm_minimization.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/p99.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/sigmoid.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/quantization/server/tanh.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/init_qnnpack.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_add_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_average_pool_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_channel_shuffle_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_concat_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_conv_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_conv_transpose_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_dequantize_op.cc.o [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_fc_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_flatten_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_given_tensor_fill_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_leaky_relu_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_max_pool_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_quantize_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_relu_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_reshape_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_resize_nearest_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_roi_align_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_slice_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_sigmoid_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_softmax_op.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/fusion.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/sink.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/backend_cutting.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/dead_code_elim.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/onnxifi_transformer.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/distributed_converter.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/mobile.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/passes.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/optimizer.cc.o [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/converter.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/distributed.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/optimize_ideep.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/device.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/annotations.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/typed_axpy.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/math_cpu_base.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/embedding_lookup.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/fused_8bit_rowwise_embedding_lookup.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/adagrad.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/blobs_queue_db.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/rebatching_queue.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/rebatching_queue_ops.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/blobs_queue.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/queue_ops.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/iter_op.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/wngrad_op.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/adagrad_op.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/clip_tensor_op.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/lars_op.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/learning_rate_adaption_op.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/ftrl_op.cc.o [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/momentum_sgd_op.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/adam_op.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/gftrl_op.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/rmsprop_op.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/learning_rate_op.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/yellowfin_op.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/adadelta_op.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/share/contrib/nnpack/conv_op.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/share/contrib/depthwise/depthwise3x3_conv_op.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/single_op_transform.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/common_subexpression_elimination.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/pattern_net_transform.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/conv_to_nnpack_transform.cc.o [ 56%] Linking CXX shared library ../lib/libcaffe2.so [ 56%] Built target caffe2 Scanning dependencies of target caffe2_observers Scanning dependencies of target caffe2_module_test_dynamic Scanning dependencies of target caffe2_pybind11_state [ 56%] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/shm.dir/core.cpp.o [ 56%] Building CXX object modules/module_test/CMakeFiles/caffe2_module_test_dynamic.dir/module_test_dynamic.cc.o [ 56%] Building CXX object modules/observers/CMakeFiles/caffe2_observers.dir/net_observer_reporter_print.cc.o [ 56%] Building CXX object modules/observers/CMakeFiles/caffe2_observers.dir/observer_config.cc.o [ 56%] Building CXX object modules/observers/CMakeFiles/caffe2_observers.dir/perf_observer.cc.o [ 56%] Building CXX object caffe2/torch/lib/THD/CMakeFiles/THD.dir/base/data_channels/DataChannelMPI.cpp.o [ 56%] Building CXX object caffe2/torch/lib/THD/CMakeFiles/THD.dir/base/data_channels/DataChannelNccl.cpp.o [ 56%] Building CXX object caffe2/torch/lib/THD/CMakeFiles/THD.dir/base/DataChannelRequest.cpp.o [ 56%] Building CXX object caffe2/torch/lib/THD/CMakeFiles/THD.dir/base/RPCType.cpp.o [ 56%] Building CXX object caffe2/torch/lib/THD/CMakeFiles/THD.dir/process_group/Collectives.cpp.o [ 56%] Building CXX object caffe2/torch/lib/THD/CMakeFiles/THD.dir/process_group/General.cpp.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2_pybind11_state.dir/python/pybind_state_dlpack.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2_pybind11_state.dir/python/pybind_state_registry.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2_pybind11_state.dir/python/pybind_state.cc.o [ 56%] Building CXX object caffe2/CMakeFiles/caffe2_pybind11_state.dir/python/pybind_state_nomni.cc.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/core/caffe2_gpu_generated_context_gpu.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/core/caffe2_gpu_generated_THCCachingAllocator.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/utils/caffe2_gpu_generated_math_gpu.cu.o /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:31:17: error: ‘ncclInt8’ was not declared in this scope {at::kChar, ncclInt8}, ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:32:17: error: ‘ncclUint8’ was not declared in this scope {at::kByte, ncclUint8}, ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:35:16: error: ‘ncclInt32’ was not declared in this scope {at::kInt, ncclInt32}, ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:38:1: error: could not convert ‘{{at::kChar, &lt;expression error&gt;}, {at::kByte, &lt;expression error&gt;}, {at::kFloat, ncclFloat}, {at::kDouble, ncclDouble}, {at::kInt, &lt;expression error&gt;}, {at::kLong, ncclInt64}, {at::kHalf, ncclHalf}}’ from ‘&lt;brace-enclosed initializer list&gt;’ to ‘std::unordered_map&lt;at::ScalarType, ncclDataType_t&gt;’ }; ^ In file included from /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:1:0: /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp: In member function ‘void thd::DataChannelNccl::_destroyNcclResources(THDGroup)’: /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:187:40: error: void value not ignored as it ought to be NCCL_CHECK(ncclCommDestroy(comm)); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp: In member function ‘thd::NcclResourcePair thd::DataChannelNccl::_getNcclResourcePair(std::vector&lt;at::Tensor&gt;&amp;, THDGroup)’: /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:295:29: error: ‘ncclGroupStart’ was not declared in this scope NCCL_CHECK(ncclGroupStart()); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:302:27: error: ‘ncclGroupEnd’ was not declared in this scope NCCL_CHECK(ncclGroupEnd()); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp: In member function ‘virtual void thd::DataChannelNccl::allReduce(std::vector&lt;at::Tensor&gt;&amp;, THDReduceOp, THDGroup)’: /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:417:29: error: ‘ncclGroupStart’ was not declared in this scope NCCL_CHECK(ncclGroupStart()); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:432:27: error: ‘ncclGroupEnd’ was not declared in this scope NCCL_CHECK(ncclGroupEnd()); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp: In member function ‘virtual void thd::DataChannelNccl::allGather(std::vector&lt;at::Tensor&gt;&amp;, std::vector&lt;at::Tensor&gt;&amp;, THDGroup)’: /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:466:29: error: ‘ncclGroupStart’ was not declared in this scope NCCL_CHECK(ncclGroupStart()); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:473:27: error: invalid conversion from ‘void*’ to ‘int’ [-fpermissive] output[i].data_ptr(), ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:474:23: error: invalid conversion from ‘int64_t {aka long int}’ to ‘ncclDataType_t’ [-fpermissive] input[i].numel(), ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:477:15: error: cannot convert ‘ncclDataType_t’ to ‘void*’ for argument ‘4’ to ‘ncclResult_t ncclAllGather(const void*, int, ncclDataType_t, void*, ncclComm_t, cudaStream_t)’ stream)); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:480:27: error: ‘ncclGroupEnd’ was not declared in this scope NCCL_CHECK(ncclGroupEnd()); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp: In member function ‘virtual void thd::DataChannelNccl::reduce(std::vector&lt;at::Tensor&gt;&amp;, THDReduceOp, thd::rank_type, THDGroup)’: /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:516:29: error: ‘ncclGroupStart’ was not declared in this scope NCCL_CHECK(ncclGroupStart()); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:532:27: error: ‘ncclGroupEnd’ was not declared in this scope NCCL_CHECK(ncclGroupEnd()); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp: In member function ‘virtual void thd::DataChannelNccl::broadcast(std::vector&lt;at::Tensor&gt;&amp;, thd::rank_type, THDGroup)’: /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:568:29: error: ‘ncclGroupStart’ was not declared in this scope NCCL_CHECK(ncclGroupStart()); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.cpp:582:27: error: ‘ncclGroupEnd’ was not declared in this scope NCCL_CHECK(ncclGroupEnd()); ^ /home/user/backup/lichu/pytorch/torch/lib/THD/base/data_channels/DataChannelNccl.hpp:16:26: note: in definition of macro ‘NCCL_CHECK’ ncclResult_t error = cmd; \ ^ [ 57%] Linking CXX shared library ../../../../lib/libshm.so [ 57%] Built target shm [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_copy_op.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_reduction_ops.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_max_pool_with_index.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_multi_class_accuracy_op.cu.o caffe2/torch/lib/THD/CMakeFiles/THD.dir/build.make:278: recipe for target 'caffe2/torch/lib/THD/CMakeFiles/THD.dir/base/data_channels/DataChannelNccl.cpp.o' failed make[2]: *** [caffe2/torch/lib/THD/CMakeFiles/THD.dir/base/data_channels/DataChannelNccl.cpp.o] Error 1 make[2]: *** Waiting for unfinished jobs.... [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_lengths_tile_op.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_softsign_op.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_cosh_op.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_transpose_op.cu.o [ 57%] Linking CXX shared library ../../lib/libcaffe2_module_test_dynamic.so [ 57%] Built target caffe2_module_test_dynamic [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_piecewise_linear_transform_op.cu.o [ 57%] Linking CXX shared library ../../lib/libcaffe2_observers.so [ 57%] Built target caffe2_observers [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_selu_op.cu.o CMakeFiles/Makefile2:9972: recipe for target 'caffe2/torch/lib/THD/CMakeFiles/THD.dir/all' failed make[1]: *** [caffe2/torch/lib/THD/CMakeFiles/THD.dir/all] Error 2 make[1]: *** Waiting for unfinished jobs.... [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_lengths_pad_op.cu.o /home/user/backup/lichu/pytorch/caffe2/core/context_gpu.cu(24): warning: function "c10::&lt;unnamed&gt;::C10FlagParser_caffe2_cuda_memory_pool::C10FlagParser_caffe2_cuda_memory_pool(const std::__cxx11::string &amp;)" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/core/context_gpu.cu(32): warning: function "c10::&lt;unnamed&gt;::C10FlagParser_caffe2_cub_bin_growth::C10FlagParser_caffe2_cub_bin_growth(const std::__cxx11::string &amp;)" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/core/context_gpu.cu(37): warning: function "c10::&lt;unnamed&gt;::C10FlagParser_caffe2_cub_min_bin::C10FlagParser_caffe2_cub_min_bin(const std::__cxx11::string &amp;)" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/core/context_gpu.cu(42): warning: function "c10::&lt;unnamed&gt;::C10FlagParser_caffe2_cub_max_bin::C10FlagParser_caffe2_cub_max_bin(const std::__cxx11::string &amp;)" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/core/context_gpu.cu(47): warning: function "c10::&lt;unnamed&gt;::C10FlagParser_caffe2_cub_max_managed_mb::C10FlagParser_caffe2_cub_max_managed_mb(const std::__cxx11::string &amp;)" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/core/context_gpu.cu(53): warning: function "c10::&lt;unnamed&gt;::C10FlagParser_caffe2_cub_print_allocation_events::C10FlagParser_caffe2_cub_print_allocation_events(const std::__cxx11::string &amp;)" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/core/context_gpu.cu(59): warning: function "c10::&lt;unnamed&gt;::C10FlagParser_caffe2_gpu_memory_tracking::C10FlagParser_caffe2_gpu_memory_tracking(const std::__cxx11::string &amp;)" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/core/context_gpu.cu(63): warning: function "c10::&lt;unnamed&gt;::C10FlagParser_caffe2_gpu_memory_report_interval_mb::C10FlagParser_caffe2_gpu_memory_report_interval_mb(const std::__cxx11::string &amp;)" was declared but never referenced [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_roi_align_gradient_op.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_tile_op.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_sparse_normalize_op_gpu.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_softmax_ops.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_loss_op.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_resize_op.cu.o [ 57%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_elementwise_linear_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_cbrt_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_sinh_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_floor_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_assert_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_atan_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_pow_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_channel_backprop_stats_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_affine_channel_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_cross_entropy_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_elementwise_ops.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_half_float_ops.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_pad_op_gpu.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_slice_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_acos_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_arg_ops.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_relu_n_op.cu.o /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(66): warning: function "caffe2::math::&lt;unnamed&gt;::AddFunctor&lt;T&gt;::operator() [with T=double]" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(66): warning: function "caffe2::math::&lt;unnamed&gt;::AddFunctor&lt;T&gt;::operator() [with T=float]" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(66): warning: function "caffe2::math::&lt;unnamed&gt;::AddFunctor&lt;T&gt;::operator() [with T=int64_t]" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(66): warning: function "caffe2::math::&lt;unnamed&gt;::AddFunctor&lt;T&gt;::operator() [with T=int32_t]" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(66): warning: function "caffe2::math::&lt;unnamed&gt;::AddFunctor&lt;c10::Half&gt;::operator()" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(67): warning: function "caffe2::math::&lt;unnamed&gt;::SubFunctor&lt;T&gt;::operator() [with T=double]" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(67): warning: function "caffe2::math::&lt;unnamed&gt;::SubFunctor&lt;T&gt;::operator() [with T=float]" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(67): warning: function "caffe2::math::&lt;unnamed&gt;::SubFunctor&lt;T&gt;::operator() [with T=int64_t]" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(67): warning: function "caffe2::math::&lt;unnamed&gt;::SubFunctor&lt;T&gt;::operator() [with T=int32_t]" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(67): warning: function "caffe2::math::&lt;unnamed&gt;::SubFunctor&lt;c10::Half&gt;::operator()" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(68): warning: function "caffe2::math::&lt;unnamed&gt;::MulFunctor&lt;T&gt;::operator() [with T=double]" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(68): warning: function "caffe2::math::&lt;unnamed&gt;::MulFunctor&lt;T&gt;::operator() [with T=float]" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(68): warning: function "caffe2::math::&lt;unnamed&gt;::MulFunctor&lt;T&gt;::operator() [with T=int64_t]" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(68): warning: function "caffe2::math::&lt;unnamed&gt;::MulFunctor&lt;T&gt;::operator() [with T=int32_t]" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(68): warning: function "caffe2::math::&lt;unnamed&gt;::MulFunctor&lt;c10::Half&gt;::operator()" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(69): warning: function "caffe2::math::&lt;unnamed&gt;::DivFunctor&lt;T&gt;::operator() [with T=double]" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(69): warning: function "caffe2::math::&lt;unnamed&gt;::DivFunctor&lt;T&gt;::operator() [with T=float]" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(69): warning: function "caffe2::math::&lt;unnamed&gt;::DivFunctor&lt;T&gt;::operator() [with T=int64_t]" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(69): warning: function "caffe2::math::&lt;unnamed&gt;::DivFunctor&lt;T&gt;::operator() [with T=int32_t]" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(69): warning: function "caffe2::math::&lt;unnamed&gt;::DivFunctor&lt;c10::Half&gt;::operator()" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(1866): warning: function "caffe2::math::&lt;unnamed&gt;::FloatTransform&lt;T&gt;::operator() [with T=c10::Half]" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/utils/math_gpu.cu(1899): warning: function "caffe2::math::&lt;unnamed&gt;::SqrTransform&lt;T&gt;::operator() [with T=float]" was declared but never referenced [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_sigmoid_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_local_response_normalization_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_clip_op.cu.o [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_integral_image_op.cu.o [ 58%] Linking CXX shared module python/caffe2_pybind11_state.so [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_roi_align_rotated_op.cu.o [ 58%] Built target caffe2_pybind11_state [ 58%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_reduce_ops.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_enforce_finite_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_cosine_embedding_criterion_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_asin_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_ensure_cpu_output_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_rmac_regions_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_sequence_ops.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_replace_nan_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_segment_reduction_op_gpu.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_channel_stats_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_reciprocal_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_tanh_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_spatial_batch_norm_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_lp_pool_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_prelu_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_one_hot_ops.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_channel_shuffle_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_data_couple_gpu.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_reduce_front_back_max_ops.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_mean_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_space_batch_op_gpu.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_group_norm_op.cu.o [ 59%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_sin_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_reverse_packed_segs_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_hard_sigmoid_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_stump_func_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_top_k.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_weighted_sample_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_batch_moments_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_batch_gather_ops.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_leaky_relu_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_find_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_summarize_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_abs_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_instance_norm_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_roi_align_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_normalize_ops.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_glu_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_accuracy_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_cos_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_deform_conv_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_cube_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_margin_ranking_criterion_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_gather_op.cu.o [ 60%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_sparse_to_dense_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_dropout_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_pack_segments.cu.o /home/user/backup/lichu/pytorch/caffe2/operators/summarize_op.cu(37): warning: function "caffe2::&lt;unnamed&gt;::summary_stats_unary_op&lt;T&gt;::operator() [with T=float]" was declared but never referenced /home/user/backup/lichu/pytorch/caffe2/operators/summarize_op.cu(57): warning: function "caffe2::&lt;unnamed&gt;::summary_stats_binary_op&lt;T&gt;::operator() [with T=float]" was declared but never referenced [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_utility_ops.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_elu_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_elementwise_div_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_rsqrt_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_elementwise_mul_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_upsample_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_roi_align_rotated_gradient_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_batch_matmul_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_thresholded_relu_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_softplus_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_swish_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_perplexity_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_accumulate_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_given_tensor_byte_string_to_uint8_fill_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_moments_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_boolean_mask_ops.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_filler_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_unique_ops.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_pool_op.cu.o [ 61%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_ceil_op.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_tan_op.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_logit_op.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_given_tensor_fill_op.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_cast_op.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_layer_norm_op.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_reduce_front_back_sum_mean_ops.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_mem_query_op.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_gru_unit_op_gpu.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_boolean_unmask_ops.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_distance_op.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_lstm_unit_op_gpu.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_roi_pool_op.cu.o /home/user/backup/lichu/pytorch/caffe2/operators/mem_query_op.cu(9): warning: function "caffe2::&lt;unnamed&gt;::GetGPUMemoryUsageOp::GetGPUMemoryUsageOp(const caffe2::OperatorDef &amp;, caffe2::Workspace *)" was declared but never referenced [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/caffe2_gpu_generated_relu_op.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/operators/rnn/caffe2_gpu_generated_recurrent_network_op_gpu.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/caffe2_gpu_generated_yellowfin_op_gpu.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/caffe2_gpu_generated_adadelta_op_gpu.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/caffe2_gpu_generated_adam_op_gpu.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/caffe2_gpu_generated_fp32_momentum_sgd_op.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/caffe2_gpu_generated_lars_op_gpu.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/caffe2_gpu_generated_adagrad_op_gpu.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/caffe2_gpu_generated_rmsprop_op_gpu.cu.o [ 62%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/caffe2_gpu_generated_momentum_sgd_op_gpu.cu.o [ 63%] Building NVCC (Device) object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/caffe2_gpu_generated_fp16_momentum_sgd_op.cu.o Scanning dependencies of target caffe2_gpu [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/native/cudnn/BatchNorm.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/native/cudnn/RNN.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/native/cudnn/GridSampler.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/native/cudnn/LossCTC.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/native/cudnn/Conv.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/native/miopen/BatchNorm_miopen.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/native/miopen/Conv_miopen.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/native/sparse/cuda/SparseCUDATensor.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/cuda/CUDAContext.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/cuda/detail/CUDAGuardImpl.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/cuda/PinnedMemoryAllocator.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/cuda/CUDAGenerator.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/cuda/CUDAStream.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/native/cudnn/AffineGridGenerator.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/cuda/detail/CUDAHooks.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/cuda/CUDATypeDefault.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/native/cuda/CUDAUnaryOps.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/CUDAByteType.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/CUDACharType.cpp.o [ 63%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/CUDACopy.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/CUDADoubleType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/CUDAFloatType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/CUDAHalfType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/CUDAIntType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/CUDALongType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/CUDAShortType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/RegisterCUDA.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/SparseCUDAByteType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/SparseCUDACharType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/SparseCUDADoubleType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/SparseCUDAFloatType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/SparseCUDAIntType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/SparseCUDALongType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/SparseCUDAShortType.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/THC/THCCachingAllocator.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/THC/THCCachingHostAllocator.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/THC/THCGeneral.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/THC/THCStorageCopy.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/THC/THCStream.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/THC/THCTensor.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/THC/THCTensorCopy.cpp.o [ 64%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/THC/THCTensorRandom.cpp.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/cudnn/Types.cpp.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/cudnn/Handle.cpp.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/__/aten/src/ATen/cudnn/Descriptors.cpp.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/contrib/aten/aten_op_cuda.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/contrib/gloo/allreduce_ops_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/contrib/gloo/broadcast_ops_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/contrib/gloo/common_world_ops_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/contrib/nccl/cuda_nccl_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/contrib/nccl/cuda_nccl_op_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/core/common_cudnn.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/core/blob_serialization_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/core/net_async_dag_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/core/common_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/core/event_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/db/create_db_op_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/distributed/file_store_handler_op_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/mpi/mpi_ops_gpu.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/conv_op_cache_cudnn.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/conv_transpose_op_cudnn.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/relu_op_cudnn.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/local_response_normalization_op_cudnn.cc.o [ 65%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/utility_ops_cudnn.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/dropout_op_cudnn.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/tanh_op_cudnn.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/sigmoid_op_cudnn.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/elu_op_cudnn.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/transpose_op_cudnn.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/softmax_op_cudnn.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/conv_op_cudnn.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/order_switch_ops_cudnn.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/expand_squeeze_dims_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/while_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/elementwise_sub_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/counter_ops_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/locally_connected_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/elementwise_add_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/exp_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/conv_transpose_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/fully_connected_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/sqrt_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/sqr_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/negate_gradient_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/if_op_gpu.cc.o [ 66%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/tensor_protos_db_input_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/expand_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/concat_split_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/stop_gradient_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/do_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/load_save_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/reshape_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/shape_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/scale_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/matmul_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/zero_gradient_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/log_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/free_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/conv_op_shared_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/negative_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/conv_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/im2col_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/order_switch_ops_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/prepend_dim_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/communicator_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/rnn/recurrent_op_cudnn.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/rnn/recurrent_network_blob_fetcher_op_gpu.cc.o [ 67%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/operators/rnn/recurrent_network_executor_gpu.cc.o [ 68%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/queue/queue_ops_gpu.cc.o [ 68%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/learning_rate_op_gpu.cc.o [ 68%] Building CXX object caffe2/CMakeFiles/caffe2_gpu.dir/sgd/iter_op_gpu.cc.o [ 68%] Linking CXX shared library ../lib/libcaffe2_gpu.so [ 75%] Built target caffe2_gpu Makefile:127: recipe for target 'all' failed make: *** [all] Error 2 Failed to run 'bash ../tools/build_pytorch_libs.sh --use-cuda --use-fbgemm --use-nnpack --use-mkldnn --use-qnnpack caffe2' </code></pre></div> <p dir="auto">can you help me please? thanks!</p> <p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/malfet/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/malfet">@malfet</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/seemethere/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/seemethere">@seemethere</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/walterddr/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/walterddr">@walterddr</a></p>
<h2 dir="auto"><g-emoji class="g-emoji" alias="question" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2753.png">❓</g-emoji> Questions and Help</h2> <p dir="auto">-- Build files have been written to: /home/feng/pytorch/build</p> <ul dir="auto"> <li>make install -j12<br> Scanning dependencies of target js_embed<br> Scanning dependencies of target benchmark<br> Scanning dependencies of target nccl_external<br> Scanning dependencies of target pthreadpool<br> Scanning dependencies of target clog<br> Scanning dependencies of target gtest<br> Scanning dependencies of target gloo<br> Scanning dependencies of target onnxifi_dummy<br> Scanning dependencies of target onnxifi_loader<br> Scanning dependencies of target libprotobuf-lite<br> Scanning dependencies of target libprotobuf<br> [ 0%] Creating directories for 'nccl_external'<br> Scanning dependencies of target mkldnn<br> [ 1%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/json_reporter.cc.o<br> [ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/js_embed.dir/<strong>/src/google/protobuf/compiler/js/embed.cc.o<br> [ 1%] Building C object confu-deps/clog/CMakeFiles/clog.dir/src/clog.c.o<br> [ 1%] No download step for 'nccl_external'<br> [ 1%] No patch step for 'nccl_external'<br> [ 1%] No update step for 'nccl_external'<br> [ 1%] No configure step for 'nccl_external'<br> [ 1%] Performing build step for 'nccl_external'<br> [ 1%] Building C object third_party/onnx/CMakeFiles/onnxifi_loader.dir/onnx/onnxifi_loader.c.o<br> [ 1%] Building C object third_party/onnx/CMakeFiles/onnxifi_dummy.dir/onnx/onnxifi_dummy.c.o<br> [ 1%] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/threadpool-pthreads.c.o<br> make[3]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c: In function ‘clog_vlog_fatal’:<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c:120:4: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]<br> write(STDERR_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH);<br> ^<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c: In function ‘clog_vlog_error’:<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c:196:4: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]<br> write(STDERR_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH);<br> ^<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c: In function ‘clog_vlog_warning’:<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c:272:4: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]<br> write(STDERR_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH);<br> ^<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c: In function ‘clog_vlog_info’:<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c:348:4: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]<br> write(STDOUT_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH);<br> ^<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c: In function ‘clog_vlog_debug’:<br> /home/feng/pytorch/third_party/QNNPACK/deps/clog/src/clog.c:424:4: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]<br> write(STDOUT_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH);<br> ^<br> [ 1%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/algorithm.cc.o<br> [ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/arena.cc.o<br> Generating nccl.h.in &gt; /home/feng/pytorch/build/nccl/include/nccl.h<br> Compiling init.cu &gt; /home/feng/pytorch/build/nccl/obj/init.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 1%] Building CXX object third_party/googletest/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o<br> [ 1%] Linking CXX executable ../../../bin/js_embed<br> [ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/arenastring.cc.o<br> [ 1%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/string_util.cc.o<br> [ 1%] Linking C shared library ../../lib/libonnxifi_dummy.so<br> [ 1%] Linking C static library ../../lib/libpthreadpool.a<br> [ 1%] Linking C static library ../../lib/libclog.a<br> [ 1%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allgather.cc.o<br> [ 1%] Linking C static library ../../lib/libonnxifi_loader.a<br> [ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/primitive.cpp.o<br> [ 1%] Built target onnxifi_dummy<br> [ 1%] Built target js_embed<br> [ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/pooling.cpp.o<br> [ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/extension_set.cc.o<br> [ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/arena.cc.o<br> [ 1%] Built target onnxifi_loader<br> [ 1%] Built target pthreadpool<br> [ 1%] Built target clog<br> [ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/arenastring.cc.o<br> Scanning dependencies of target python_copy_files<br> Scanning dependencies of target c10<br> [ 1%] Building CXX object c10/CMakeFiles/c10.dir/DeviceType.cpp.o<br> [ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/engine.cpp.o<br> [ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/query.cpp.o<br> [ 1%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/generated_message_table_driven_lite.cc.o<br> [ 1%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allreduce.cc.o<br> [ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/softmax.cpp.o<br> [ 1%] Building CXX object c10/CMakeFiles/c10.dir/Half.cpp.o<br> [ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/mkldnn_debug.cpp.o<br> [ 1%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/batch_normalization.cpp.o<br> [ 2%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/extension_set.cc.o<br> [ 2%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/scratchpad.cpp.o<br> [ 2%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/commandlineflags.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/primitive_attr.cpp.o<br> [ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/generated_message_table_driven_lite.cc.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/Device.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/verbose.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/eltwise.cpp.o<br> [ 3%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/sleep.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/memory_desc_wrapper.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/primitive_iterator.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/lrn.cpp.o<br> [ 3%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allreduce_local.cc.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/Stream.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/memory.cpp.o<br> [ 3%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/statistics.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/inner_product.cpp.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/OpSchema.cpp.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/KernelRegistration.cpp.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/DeviceId.cpp.o<br> [ 3%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/broadcast.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/stream.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/convolution_relu.cpp.o<br> [ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/generated_message_util.cc.o<br> [ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/io/coded_stream.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/rnn.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/reorder.cpp.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/DispatchKey.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/generated_message_util.cc.o<br> [ 3%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/context.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/convolution.cpp.o<br> [ 3%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/primitive_desc.cpp.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/Dispatcher.cpp.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/OpSchemaRegistration.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/deconvolution.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/common/utils.cpp.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_sse42_conv_kernel_f32.cpp.o<br> [ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/io/zero_copy_stream.cc.o<br> [ 3%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/gather.cc.o<br> [ 3%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_batch_normalization_utils.cpp.o<br> init.cu:52:1: warning: ‘ncclNet’ initialized and declared ‘extern’<br> ncclNet_t* ncclNet = NULL;<br> ^<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/DispatchTable.cpp.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/core/dispatch/LayoutId.cpp.o<br> [ 3%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/reduce.cc.o<br> [ 3%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o<br> [ 3%] Building CXX object c10/CMakeFiles/c10.dir/impl/DeviceGuardImplInterface.cpp.o<br> [ 4%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/message_lite.cc.o<br> [ 4%] Building CXX object c10/CMakeFiles/c10.dir/util/Type.cpp.o<br> [ 4%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/io/coded_stream.cc.o<br> [ 4%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/repeated_field.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 4%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_lrn.cpp.o<br> [ 4%] Building CXX object c10/CMakeFiles/c10.dir/util/Backtrace.cpp.o<br> [ 4%] Building CXX object c10/CMakeFiles/c10.dir/util/Optional.cpp.o<br> [ 4%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/scatter.cc.o<br> [ 4%] Building CXX object c10/CMakeFiles/c10.dir/util/C++17.cpp.o<br> Compiling ring.cu &gt; /home/feng/pytorch/build/nccl/obj/ring.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 5%] Building CXX object c10/CMakeFiles/c10.dir/util/SmallVector.cpp.o<br> [ 5%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/csv_reporter.cc.o<br> [ 5%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc.o<br> [ 5%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/atomicops_internals_x86_msvc.cc.o<br> [ 5%] Building CXX object c10/CMakeFiles/c10.dir/util/LeftRight.cpp.o<br> [ 5%] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_gflags.cpp.o<br> [ 5%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/io/zero_copy_stream.cc.o<br> [ 5%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_1x1_conv_kernel.cpp.o<br> [ 5%] Linking CXX static library ../../../lib/libgtest.a<br> [ 5%] Built target gtest<br> Scanning dependencies of target ATEN_CPU_FILES_GEN_TARGET<br> [ 5%] Generating ../aten/src/ATen/CPUByteType.cpp, ../aten/src/ATen/CPUByteType.h, ../aten/src/ATen/CPUCharType.cpp, ../aten/src/ATen/CPUCharType.h, ../aten/src/ATen/CPUCopy.cpp, ../aten/src/ATen/CPUDoubleType.cpp, ../aten/src/ATen/CPUDoubleType.h, ../aten/src/ATen/CPUFloatType.cpp, ../aten/src/ATen/CPUFloatType.h, ../aten/src/ATen/CPUGenerator.h, ../aten/src/ATen/CPUHalfType.cpp, ../aten/src/ATen/CPUHalfType.h, ../aten/src/ATen/CPUIntType.cpp, ../aten/src/ATen/CPUIntType.h, ../aten/src/ATen/CPULongType.cpp, ../aten/src/ATen/CPULongType.h, ../aten/src/ATen/CPUShortType.cpp, ../aten/src/ATen/CPUShortType.h, ../aten/src/ATen/Declarations.yaml, ../aten/src/ATen/Functions.h, ../aten/src/ATen/NativeFunctions.h, ../aten/src/ATen/RegisterCPU.cpp, ../aten/src/ATen/RegisterCPU.h, ../aten/src/ATen/SparseCPUByteType.cpp, ../aten/src/ATen/SparseCPUByteType.h, ../aten/src/ATen/SparseCPUCharType.cpp, ../aten/src/ATen/SparseCPUCharType.h, ../aten/src/ATen/SparseCPUDoubleType.cpp, ../aten/src/ATen/SparseCPUDoubleType.h, ../aten/src/ATen/SparseCPUFloatType.cpp, ../aten/src/ATen/SparseCPUFloatType.h, ../aten/src/ATen/SparseCPUIntType.cpp, ../aten/src/ATen/SparseCPUIntType.h, ../aten/src/ATen/SparseCPULongType.cpp, ../aten/src/ATen/SparseCPULongType.h, ../aten/src/ATen/SparseCPUShortType.cpp, ../aten/src/ATen/SparseCPUShortType.h, ../aten/src/ATen/TypeDefault.cpp, ../aten/src/ATen/TypeDefault.h, ../aten/src/ATen/TypeExtendedInterface.h, ../aten/src/ATen/CUDAByteType.cpp, ../aten/src/ATen/CUDAByteType.h, ../aten/src/ATen/CUDACharType.cpp, ../aten/src/ATen/CUDACharType.h, ../aten/src/ATen/CUDACopy.cpp, ../aten/src/ATen/CUDADoubleType.cpp, ../aten/src/ATen/CUDADoubleType.h, ../aten/src/ATen/CUDAFloatType.cpp, ../aten/src/ATen/CUDAFloatType.h, ../aten/src/ATen/CUDAGenerator.h, ../aten/src/ATen/CUDAHalfType.cpp, ../aten/src/ATen/CUDAHalfType.h, ../aten/src/ATen/CUDAIntType.cpp, ../aten/src/ATen/CUDAIntType.h, ../aten/src/ATen/CUDALongType.cpp, ../aten/src/ATen/CUDALongType.h, ../aten/src/ATen/CUDAShortType.cpp, ../aten/src/ATen/CUDAShortType.h, ../aten/src/ATen/RegisterCUDA.cpp, ../aten/src/ATen/RegisterCUDA.h, ../aten/src/ATen/SparseCUDAByteType.cpp, ../aten/src/ATen/SparseCUDAByteType.h, ../aten/src/ATen/SparseCUDACharType.cpp, ../aten/src/ATen/SparseCUDACharType.h, ../aten/src/ATen/SparseCUDADoubleType.cpp, ../aten/src/ATen/SparseCUDADoubleType.h, ../aten/src/ATen/SparseCUDAFloatType.cpp, ../aten/src/ATen/SparseCUDAFloatType.h, ../aten/src/ATen/SparseCUDAIntType.cpp, ../aten/src/ATen/SparseCUDAIntType.h, ../aten/src/ATen/SparseCUDALongType.cpp, ../aten/src/ATen/SparseCUDALongType.h, ../aten/src/ATen/SparseCUDAShortType.cpp, ../aten/src/ATen/SparseCUDAShortType.h<br> [ 6%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/types.cc.o<br> [ 6%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_deconvolution.cpp.o<br> [ 7%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_sse42_1x1_conv_kernel_f32.cpp.o<br> [ 7%] Built target python_copy_files<br> Scanning dependencies of target common<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/bytestream.cc.o<br> [ 7%] Building C object sleef/src/common/CMakeFiles/common.dir/common.c.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/common.cc.o<br> [ 7%] Built target common<br> Scanning dependencies of target mkrename<br> [ 7%] Building C object sleef/src/libm/CMakeFiles/mkrename.dir/mkrename.c.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/common/linux.cc.o<br> [ 7%] Linking C executable ../../bin/mkrename<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/reporter.cc.o<br> [ 7%] Built target mkrename<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/complexity.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/Array.cpp.o<br> [ 7%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_sum.cpp.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/Logging.cpp.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/int128.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/counter.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/message_lite.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/io_win32.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/once.cc.o<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/sysinfo.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/status.cc.o<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/colorprint.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/statusor.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/common/logging.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/mpi/context.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/Exception.cpp.o<br> Compiling bootstrap.cu &gt; /home/feng/pytorch/build/nccl/obj/bootstrap.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/repeated_field.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/stringpiece.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/stringprintf.cc.o<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/timers.cc.o<br> [ 7%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_convolution.cpp.o<br> [ 7%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_conv_winograd_kernel_f32.cpp.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/context.cc.o<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark_register.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/TypeList.cpp.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/stubs/structurally_valid.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/strutil.cc.o<br> [ 7%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/console_reporter.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/typeid.cpp.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/stubs/atomicops_internals_x86_msvc.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/file_store.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/hash_store.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/<strong>/src/google/protobuf/stubs/time.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/</strong>/src/google/protobuf/wire_format_lite.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/stubs/bytestream.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/TensorTypeId.cpp.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/prefix_store.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/Metaprogramming.cpp.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/TypeTraits.cpp.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/store.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/address.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/buffer.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/StringUtil.cpp.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/context.cc.o<br> [ 7%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/stubs/common.cc.o<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/TensorTypeIdRegistration.cpp.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/device.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/pair.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 7%] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_no_gflags.cpp.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/unbound_buffer.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/address.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/buffer.cc.o<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/context.cc.o<br> [ 7%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/gemm_inner_product.cpp.o<br> Compiling transport.cu &gt; /home/feng/pytorch/build/nccl/obj/transport.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 7%] Linking CXX static library ../../../lib/libprotobuf-lite.a<br> [ 7%] Built target libprotobuf-lite<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/device.cc.o<br> Scanning dependencies of target mkdisp<br> [ 7%] Building C object sleef/src/libm/CMakeFiles/mkdisp.dir/mkdisp.c.o<br> [ 7%] Linking C executable ../../bin/mkdisp<br> [ 7%] Built target mkdisp<br> Scanning dependencies of target renamedsp256.h_generated<br> [ 7%] Generating renamedsp256.h<br> [ 7%] Built target renamedsp256.h_generated<br> Scanning dependencies of target dispavx.c_generated<br> [ 7%] Generating dispavx.c<br> [ 7%] Built target dispavx.c_generated<br> Scanning dependencies of target renameSSE2.h_generated<br> [ 7%] Generating include/renamesse2.h<br> [ 7%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/pair.cc.o<br> Generating renamesse2.h: mkrename 2 4 sse2<br> [ 7%] Built target renameSSE2.h_generated<br> Scanning dependencies of target renameFMA4.h_generated<br> [ 7%] Generating include/renamefma4.h<br> Generating renamefma4.h: mkrename 4 8 fma4<br> [ 7%] Built target renameFMA4.h_generated<br> Scanning dependencies of target renameAVX2.h_generated<br> [ 7%] Generating include/renameavx2.h<br> Generating renameavx2.h: mkrename 4 8 avx2<br> [ 7%] Built target renameAVX2.h_generated<br> Scanning dependencies of target renameAVX2128.h_generated<br> [ 7%] Generating include/renameavx2128.h<br> Generating renameavx2128.h: mkrename 2 4 avx2128<br> [ 7%] Built target renameAVX2128.h_generated<br> Scanning dependencies of target renameSSE4.h_generated<br> [ 8%] Generating include/renamesse4.h<br> Generating renamesse4.h: mkrename 2 4 sse4<br> [ 8%] Built target renameSSE4.h_generated<br> Scanning dependencies of target ATEN_CUDA_FILES_GEN_TARGET<br> [ 8%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/stubs/int128.cc.o<br> [ 8%] Generating ../aten/src/ATen/CPUByteType.cpp, ../aten/src/ATen/CPUByteType.h, ../aten/src/ATen/CPUCharType.cpp, ../aten/src/ATen/CPUCharType.h, ../aten/src/ATen/CPUCopy.cpp, ../aten/src/ATen/CPUDoubleType.cpp, ../aten/src/ATen/CPUDoubleType.h, ../aten/src/ATen/CPUFloatType.cpp, ../aten/src/ATen/CPUFloatType.h, ../aten/src/ATen/CPUGenerator.h, ../aten/src/ATen/CPUHalfType.cpp, ../aten/src/ATen/CPUHalfType.h, ../aten/src/ATen/CPUIntType.cpp, ../aten/src/ATen/CPUIntType.h, ../aten/src/ATen/CPULongType.cpp, ../aten/src/ATen/CPULongType.h, ../aten/src/ATen/CPUShortType.cpp, ../aten/src/ATen/CPUShortType.h, ../aten/src/ATen/Declarations.yaml, ../aten/src/ATen/Functions.h, ../aten/src/ATen/NativeFunctions.h, ../aten/src/ATen/RegisterCPU.cpp, ../aten/src/ATen/RegisterCPU.h, ../aten/src/ATen/SparseCPUByteType.cpp, ../aten/src/ATen/SparseCPUByteType.h, ../aten/src/ATen/SparseCPUCharType.cpp, ../aten/src/ATen/SparseCPUCharType.h, ../aten/src/ATen/SparseCPUDoubleType.cpp, ../aten/src/ATen/SparseCPUDoubleType.h, ../aten/src/ATen/SparseCPUFloatType.cpp, ../aten/src/ATen/SparseCPUFloatType.h, ../aten/src/ATen/SparseCPUIntType.cpp, ../aten/src/ATen/SparseCPUIntType.h, ../aten/src/ATen/SparseCPULongType.cpp, ../aten/src/ATen/SparseCPULongType.h, ../aten/src/ATen/SparseCPUShortType.cpp, ../aten/src/ATen/SparseCPUShortType.h, ../aten/src/ATen/TypeDefault.cpp, ../aten/src/ATen/TypeDefault.h, ../aten/src/ATen/TypeExtendedInterface.h, ../aten/src/ATen/CUDAByteType.cpp, ../aten/src/ATen/CUDAByteType.h, ../aten/src/ATen/CUDACharType.cpp, ../aten/src/ATen/CUDACharType.h, ../aten/src/ATen/CUDACopy.cpp, ../aten/src/ATen/CUDADoubleType.cpp, ../aten/src/ATen/CUDADoubleType.h, ../aten/src/ATen/CUDAFloatType.cpp, ../aten/src/ATen/CUDAFloatType.h, ../aten/src/ATen/CUDAGenerator.h, ../aten/src/ATen/CUDAHalfType.cpp, ../aten/src/ATen/CUDAHalfType.h, ../aten/src/ATen/CUDAIntType.cpp, ../aten/src/ATen/CUDAIntType.h, ../aten/src/ATen/CUDALongType.cpp, ../aten/src/ATen/CUDALongType.h, ../aten/src/ATen/CUDAShortType.cpp, ../aten/src/ATen/CUDAShortType.h, ../aten/src/ATen/RegisterCUDA.cpp, ../aten/src/ATen/RegisterCUDA.h, ../aten/src/ATen/SparseCUDAByteType.cpp, ../aten/src/ATen/SparseCUDAByteType.h, ../aten/src/ATen/SparseCUDACharType.cpp, ../aten/src/ATen/SparseCUDACharType.h, ../aten/src/ATen/SparseCUDADoubleType.cpp, ../aten/src/ATen/SparseCUDADoubleType.h, ../aten/src/ATen/SparseCUDAFloatType.cpp, ../aten/src/ATen/SparseCUDAFloatType.h, ../aten/src/ATen/SparseCUDAIntType.cpp, ../aten/src/ATen/SparseCUDAIntType.h, ../aten/src/ATen/SparseCUDALongType.cpp, ../aten/src/ATen/SparseCUDALongType.h, ../aten/src/ATen/SparseCUDAShortType.cpp, ../aten/src/ATen/SparseCUDAShortType.h<br> [ 8%] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/unbound_buffer.cc.o<br> [ 8%] Linking CXX shared library ../lib/libc10.so<br> [ 8%] Built target c10<br> Scanning dependencies of target mkrename_gnuabi<br> [ 8%] Building C object sleef/src/libm/CMakeFiles/mkrename_gnuabi.dir/mkrename_gnuabi.c.o<br> [ 8%] Linking C executable ../../bin/mkrename_gnuabi<br> [ 8%] Built target mkrename_gnuabi<br> Scanning dependencies of target mkmasked_gnuabi<br> [ 8%] Building C object sleef/src/libm/CMakeFiles/mkmasked_gnuabi.dir/mkmasked_gnuabi.c.o<br> [ 8%] Linking C executable ../../bin/mkmasked_gnuabi<br> [ 8%] Built target mkmasked_gnuabi<br> Scanning dependencies of target mkalias<br> [ 8%] Building C object sleef/src/libm/CMakeFiles/mkalias.dir/mkalias.c.o<br> Scanning dependencies of target arraymap<br> [ 8%] Building C object sleef/src/common/CMakeFiles/arraymap.dir/arraymap.c.o<br> [ 8%] Linking C executable ../../bin/mkalias<br> [ 8%] Built target mkalias<br> [ 8%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/stubs/io_win32.cc.o<br> Scanning dependencies of target torch_shm_manager<br> [ 8%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/stubs/once.cc.o<br> [ 8%] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/torch_shm_manager.dir/manager.cpp.o<br> [ 8%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/stubs/status.cc.o<br> [ 8%] Built target arraymap<br> Scanning dependencies of target c10_utils_gpu<br> [ 9%] Building CXX object caffe2/utils/CMakeFiles/c10_utils_gpu.dir/dummy.cpp.o<br> [ 9%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_barrier.cpp.o<br> [ 9%] Built target c10_utils_gpu<br> Scanning dependencies of target c10_utils_hip<br> [ 9%] Building CXX object caffe2/utils/CMakeFiles/c10_utils_hip.dir/dummy.cpp.o<br> [ 9%] Built target c10_utils_hip<br> Scanning dependencies of target c10_utils_cpu<br> [ 9%] Building CXX object caffe2/utils/CMakeFiles/c10_utils_cpu.dir/dummy.cpp.o<br> [ 9%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/simple_sum.cpp.o<br> [ 9%] Built target c10_utils_cpu<br> Scanning dependencies of target cpuinfo<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o<br> [ 9%] Linking CXX static library ../../../lib/libbenchmark.a<br> [ 9%] Built target benchmark<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o<br> Scanning dependencies of target nnpack_reference_layers<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-output.c.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-input-gradient.c.o<br> [ 9%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ncsp_batch_normalization.cpp.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-kernel.c.o<br> [ 9%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/stubs/statusor.cc.o<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/fully-connected-output.c.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/max-pooling-output.c.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/softmax-output.c.o<br> [ 9%] Built target ATEN_CPU_FILES_GEN_TARGET<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-output.c.o<br> [ 9%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_inner_product.cpp.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o<br> [ 9%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-input-gradient.c.o<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o<br> [ 9%] Linking C static library ../../lib/libnnpack_reference_layers.a<br> [ 9%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o<br> [ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o<br> [ 10%] Built target nnpack_reference_layers<br> Scanning dependencies of target gtest_main<br> [ 10%] Building CXX object third_party/googletest/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o<br> [ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o<br> [ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o<br> [ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o<br> [ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/current.c.o<br> [ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o<br> [ 10%] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o<br> Scanning dependencies of target benchmark_main<br> [ 10%] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark_main.dir/benchmark_main.cc.o<br> [ 10%] Linking C static library ../../lib/libcpuinfo.a<br> [ 10%] Built target cpuinfo<br> Scanning dependencies of target onnxifi_wrapper<br> [ 10%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/stubs/stringpiece.cc.o<br> [ 10%] Building C object third_party/onnx/CMakeFiles/onnxifi_wrapper.dir/onnx/onnxifi_wrapper.c.o<br> [ 10%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/simple_concat.cpp.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 10%] Linking CXX executable ../../../../bin/torch_shm_manager<br> [ 10%] Linking C shared module ../../lib/libonnxifi.so<br> [ 10%] Built target onnxifi_wrapper<br> Scanning dependencies of target <strong>aten_op_header_gen<br> [ 10%] Generating contrib/aten/aten_op.h<br> [ 10%] Built target torch_shm_manager<br> Scanning dependencies of target renameAVX.h_generated<br> [ 10%] Generating include/renameavx.h<br> Generating renameavx.h: mkrename 4 8 avx<br> [ 10%] Built target renameAVX.h_generated<br> [ 11%] Linking CXX static library ../../../lib/libgloo.a<br> Scanning dependencies of target renamedsp128.h_generated<br> [ 11%] Generating renamedsp128.h<br> [ 11%] Built target renamedsp128.h_generated<br> Scanning dependencies of target headers<br> [ 12%] Generating ../../../include/sleef.h<br> [ 12%] Built target gloo<br> Scanning dependencies of target dispsse.c_generated<br> [ 12%] Generating dispsse.c<br> Generating sleef.h: mkrename 2 4 m128d m128 m128i m128i SSE2<br> Generating sleef.h: mkrename 2 4 m128d m128 m128i m128i SSE2 sse2<br> Generating sleef.h: mkrename 2 4 m128d m128 m128i m128i SSE2 sse4<br> Generating sleef.h: mkrename 4 8 m256d m256 m128i struct\ {\ m128i\ x,\ y;\ } AVX<br> Generating sleef.h: mkrename 4 8 m256d m256 m128i struct\ {\ m128i\ x,\ y;\ } AVX avx<br> Generating sleef.h: mkrename 4 8 m256d m256 m128i struct\ {\ m128i\ x,\ y;\ } AVX fma4<br> Generating sleef.h: mkrename 4 8 m256d m256 m128i m256i AVX avx2<br> Generating sleef.h: mkrename 2 4 m128d m128 m128i m128i SSE2 avx2128<br> Generating sleef.h: mkrename 8 16 m512d m512 m256i m512i AVX512F<br> Generating sleef.h: mkrename 8 16 m512d m512 m256i m512i AVX512F avx512f<br> [ 12%] Built target dispsse.c_generated<br> [ 12%] Built target headers<br> Scanning dependencies of target sleefsse2<br> Scanning dependencies of target sleeffma4<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefsse2.dir/sleefsimdsp.c.o<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleeffma4.dir/sleefsimdsp.c.o<br> Compiling misc/group.cu &gt; /home/feng/pytorch/build/nccl/obj/misc/group.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 12%] Linking CXX static library ../../../lib/libbenchmark_main.a<br> [ 12%] Linking CXX static library ../../../lib/libgtest_main.a<br> [ 12%] Built target benchmark_main<br> Scanning dependencies of target sleefavx2<br> [ 12%] Built target gtest_main<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefavx2.dir/sleefsimdsp.c.o<br> Scanning dependencies of target sleefavx2128<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefavx2128.dir/sleefsimdsp.c.o<br> [ 12%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/stringprintf.cc.o<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleeffma4.dir/sleefsimddp.c.o<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefavx2128.dir/sleefsimddp.c.o<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefavx2.dir/sleefsimddp.c.o<br> [ 12%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/structurally_valid.cc.o<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefsse2.dir/sleefsimddp.c.o<br> [ 12%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_u8s8s32x_conv_kernel.cpp.o<br> [ 12%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/gemm_convolution.cpp.o<br> [ 12%] Built target sleeffma4<br> Scanning dependencies of target sleefsse4<br> [ 12%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/strutil.cc.o<br> [ 12%] Built target sleefavx2128<br> Scanning dependencies of target c10_utils_gpu_test<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefsse4.dir/sleefsimdsp.c.o<br> [ 12%] Linking CXX executable ../../bin/c10_utils_gpu_test<br> [ 12%] Built target sleefavx2<br> Scanning dependencies of target c10_utils_hip_test<br> [ 12%] Building CXX object caffe2/utils/CMakeFiles/c10_utils_hip_test.dir/dummy.cpp.o<br> [ 12%] Linking CXX executable ../../bin/c10_utils_hip_test<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 12%] Built target c10_utils_gpu_test<br> Scanning dependencies of target c10_utils_cpu_test<br> [ 12%] Linking CXX executable ../../bin/c10_utils_cpu_test<br> [ 12%] Built target c10_utils_hip_test<br> Scanning dependencies of target qnnpack<br> [ 12%] Building C object sleef/src/libm/CMakeFiles/sleefsse4.dir/sleefsimddp.c.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/init.c.o<br> [ 12%] Built target c10_utils_cpu_test<br> [ 12%] Generating src/x86_64-fma/2d-fourier-8x8.py.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/convolution.c.o<br> [ 12%] Built target sleefsse2<br> Scanning dependencies of target c10_registry_test<br> [ 12%] Building CXX object c10/test/CMakeFiles/c10_registry_test.dir/registry_test.cpp.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/deconvolution.c.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/fully-connected.c.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/sgemm/6x8-psimd.c.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gemm/2x4c8-sse2.c.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gemm/4x4c2-sse2.c.o<br> [ 12%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_pool_kernel_f32.cpp.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8conv/4x4c2-sse2.c.o<br> [ 12%] Built target sleefsse4<br> Compiling misc/nvmlwrap.cu &gt; /home/feng/pytorch/build/nccl/obj/misc/nvmlwrap.o<br> Scanning dependencies of target c10_OpSchema_test<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 12%] Building CXX object c10/test/CMakeFiles/c10_OpSchema_test.dir/dispatch/OpSchema_test.cpp.o<br> [ 12%] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8dw/9c8-sse2.c.o<br> [ 12%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/time.cc.o<br> [ 12%] Linking C static library ../../lib/libqnnpack.a<br> [ 13%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/wire_format_lite.cc.o<br> [ 13%] Built target qnnpack<br> Scanning dependencies of target c10_InlineStreamGuard_test<br> [ 13%] Building CXX object c10/test/CMakeFiles/c10_InlineStreamGuard_test.dir/impl/InlineStreamGuard_test.cpp.o<br> [ 13%] Linking CXX executable ../../bin/c10_OpSchema_test<br> [ 13%] Built target c10_OpSchema_test<br> Scanning dependencies of target c10_StreamGuard_test<br> [ 13%] Building CXX object c10/test/CMakeFiles/c10_StreamGuard_test.dir/StreamGuard_test.cpp.o<br> [ 13%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/gemm_u8s8s32x_convolution.cpp.o<br> [ 13%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/any.cc.o<br> [ 13%] Linking CXX executable ../../bin/c10_registry_test<br> [ 13%] Built target c10_registry_test<br> Scanning dependencies of target c10_DeviceGuard_test<br> [ 13%] Linking CXX executable ../../bin/c10_StreamGuard_test<br> [ 13%] Building CXX object c10/test/CMakeFiles/c10_DeviceGuard_test.dir/DeviceGuard_test.cpp.o<br> [ 13%] Built target c10_StreamGuard_test<br> Scanning dependencies of target c10_TypeTraits_test<br> [ 13%] Building CXX object c10/test/CMakeFiles/c10_TypeTraits_test.dir/util/TypeTraits_test.cpp.o<br> [ 13%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/any.pb.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 13%] Generating src/x86_64-fma/2d-fourier-16x16.py.o<br> [ 13%] Built target ATEN_CUDA_FILES_GEN_TARGET<br> Scanning dependencies of target c10_Metaprogramming_test<br> [ 13%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/api.pb.cc.o<br> [ 13%] Building CXX object c10/test/CMakeFiles/c10_Metaprogramming_test.dir/util/Metaprogramming_test.cpp.o<br> [ 13%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_u8s8s32x_1x1_convolution.cpp.o<br> [ 13%] Linking CXX executable ../../bin/c10_TypeTraits_test<br> [ 13%] Built target c10_TypeTraits_test<br> Scanning dependencies of target c10_logging_test<br> [ 13%] Building CXX object c10/test/CMakeFiles/c10_logging_test.dir/logging_test.cpp.o<br> [ 13%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/compiler/importer.cc.o<br> [ 13%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx2_gemm_f32.cpp.o<br> [ 14%] Linking CXX executable ../../bin/c10_InlineStreamGuard_test<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 14%] Built target c10_InlineStreamGuard_test<br> Scanning dependencies of target c10_Array_test<br> [ 14%] Building CXX object c10/test/CMakeFiles/c10_Array_test.dir/util/Array_test.cpp.o<br> [ 14%] Linking CXX executable ../../bin/c10_DeviceGuard_test<br> Compiling misc/ibvwrap.cu &gt; /home/feng/pytorch/build/nccl/obj/misc/ibvwrap.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 14%] Built target c10_DeviceGuard_test<br> Scanning dependencies of target c10_InlineDeviceGuard_test<br> [ 14%] Building CXX object c10/test/CMakeFiles/c10_InlineDeviceGuard_test.dir/impl/InlineDeviceGuard_test.cpp.o<br> [ 14%] Linking CXX executable ../../bin/c10_Metaprogramming_test<br> [ 14%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/compiler/parser.cc.o<br> [ 14%] Built target c10_Metaprogramming_test<br> Scanning dependencies of target c10_typeid_test<br> [ 14%] Linking CXX executable ../../bin/c10_Array_test<br> [ 14%] Building CXX object c10/test/CMakeFiles/c10_typeid_test.dir/util/typeid_test.cpp.o<br> [ 14%] Built target c10_Array_test<br> Scanning dependencies of target c10_flags_test<br> [ 14%] Building CXX object c10/test/CMakeFiles/c10_flags_test.dir/flags_test.cpp.o<br> [ 14%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_pooling.cpp.o<br> [ 14%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/descriptor.cc.o<br> [ 14%] Linking CXX executable ../../bin/c10_logging_test<br> [ 14%] Built target c10_logging_test<br> Scanning dependencies of target c10_TypeList_test<br> Skipping _th_multinomial Because of Arg: Generator * (Generator*)<br> Skipping _th_normal Because of Arg: Generator * (Generator*)<br> Skipping _th_normal Because of Arg: Generator * (Generator*)<br> Skipping _th_normal Because of Arg: Generator * (Generator*)<br> Skipping _th_tensor Because of Arg: Storage (Storage)<br> Skipping _th_tensor Because of Arg: Storage (Storage)<br> Skipping rrelu_with_noise Because of Arg: Generator * (Generator*)<br> Skipping rrelu_with_noise_forward Because of Arg: Generator * (Generator*)<br> [ 14%] Building CXX object c10/test/CMakeFiles/c10_TypeList_test.dir/util/TypeList_test.cpp.o<br> Skipping thnn_conv_transpose2d_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping thnn_conv_transpose3d_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping thnn_conv2d_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping thnn_conv_depthwise2d_backward Because of Arg: std::array&lt;bool,2&gt; (std::array&lt;bool,2&gt;)<br> Skipping thnn_conv3d_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping thnn_conv_dilated2d_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping thnn_conv_dilated3d_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping _cudnn_rnn_backward Because of Arg: std::array&lt;bool,4&gt; (std::array&lt;bool,4&gt;)<br> Skipping _cudnn_init_dropout_state because it is a factory method<br> Skipping _fused_dropout Because of Arg: Generator * (Generator *)<br> Skipping arange because it is a factory method<br> Skipping bartlett_window because it is a factory method<br> Skipping bernoulli Because of Arg: Generator * (Generator *)<br> Skipping bernoulli Because of Arg: Generator * (Generator *)<br> Skipping blackman_window because it is a factory method<br> Skipping clamp Because of Arg: c10::optional (Scalar)<br> Skipping clamp Because of Arg: c10::optional (Scalar)<br> Skipping _convolution_double_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping cudnn_convolution_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping cudnn_convolution_transpose_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping cumsum Because of Arg: ScalarType (ScalarType)<br> Skipping cumprod Because of Arg: ScalarType (ScalarType)<br> Skipping einsum Because of Arg: std::string (std::string)<br> Skipping empty because it is a factory method<br> Skipping empty_like because it is a factory method<br> Skipping empty_strided because it is a factory method<br> Skipping eye because it is a factory method<br> Skipping full because it is a factory method<br> Skipping full_like because it is a factory method<br> Skipping hann_window because it is a factory method<br> Skipping hamming_window because it is a factory method<br> Skipping _cufft_set_plan_cache_max_size Because of Ret: void (void)<br> Skipping _cufft_clear_plan_cache Because of Ret: void (void)<br> Skipping linspace because it is a factory method<br> Skipping logspace because it is a factory method<br> Skipping log_softmax Because of Arg: ScalarType (ScalarType)<br> Skipping mean Because of Arg: ScalarType (ScalarType)<br> Skipping mean Because of Arg: ScalarType (ScalarType)<br> Skipping mean Because of Arg: ScalarType (ScalarType)<br> Skipping mkldnn_convolution_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping miopen_convolution_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping miopen_convolution_transpose_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping native_batch_norm_backward Because of Arg: std::array&lt;bool,3&gt; (std::array&lt;bool,3&gt;)<br> Skipping ones because it is a factory method<br> Skipping ones_like because it is a factory method<br> Skipping rand because it is a factory method<br> Skipping rand_like because it is a factory method<br> Skipping randint because it is a factory method<br> Skipping randint_like because it is a factory method<br> Skipping randn because it is a factory method<br> Skipping randn_like because it is a factory method<br> Skipping randperm because it is a factory method<br> Skipping range because it is a factory method<br> Skipping rrelu Because of Arg: Generator * (Generator *)<br> Skipping softmax Because of Arg: ScalarType (ScalarType)<br> Skipping sum Because of Arg: ScalarType (ScalarType)<br> Skipping sum Because of Arg: ScalarType (ScalarType)<br> Skipping sum Because of Arg: ScalarType (ScalarType)<br> Skipping prod Because of Arg: ScalarType (ScalarType)<br> Skipping prod Because of Arg: ScalarType (ScalarType)<br> Skipping prod Because of Arg: ScalarType (ScalarType)<br> Skipping zeros because it is a factory method<br> Skipping zeros_like because it is a factory method<br> Skipping _standard_gamma Because of Arg: Generator * (Generator <em>)<br> Skipping poisson Because of Arg: Generator * (Generator <em>)<br> Skipping sparse_coo_tensor because it is a factory method<br> Skipping _sparse_coo_tensor_unsafe because it is a factory method<br> Skipping _sparse_coo_tensor_with_dims because it is a factory method<br> Skipping _sparse_coo_tensor_with_dims_and_tensors because it is a factory method<br> Skipping sparse_mask Because of Arg: SparseTensorRef (SparseTensorRef)<br> Skipping to because it is a factory method<br> Skipping data_ptr Because of Ret: void</em> (void</em>)<br> Skipping multinomial Because of Arg: Generator * (Generator *)<br> Skipping normal Because of Arg: Generator * (Generator *)<br> Skipping normal Because of Arg: Generator * (Generator *)<br> Skipping normal Because of Arg: Generator * (Generator *)<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 14%] Built target aten_op_header_gen<br> Scanning dependencies of target sleefavx<br> [ 14%] Building C object sleef/src/libm/CMakeFiles/sleefavx.dir/sleefsimdsp.c.o<br> [ 14%] Linking CXX executable ../../bin/c10_InlineDeviceGuard_test<br> [ 14%] Linking CXX executable ../../bin/c10_flags_test<br> [ 14%] Built target c10_flags_test<br> [ 14%] Built target c10_InlineDeviceGuard_test<br> Scanning dependencies of target dispsse_obj<br> Scanning dependencies of target dispavx_obj<br> [ 14%] Building C object sleef/src/libm/CMakeFiles/dispsse_obj.dir/dispsse.c.o<br> [ 14%] Building C object sleef/src/libm/CMakeFiles/dispavx_obj.dir/dispavx.c.o<br> [ 14%] Linking CXX executable ../../bin/c10_TypeList_test<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 14%] Built target c10_TypeList_test<br> [ 15%] Building C object sleef/src/libm/CMakeFiles/sleefavx.dir/sleefsimddp.c.o<br> [ 15%] Linking CXX executable ../../bin/c10_typeid_test<br> [ 15%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_lrn_kernel_f32.cpp.o<br> [ 15%] Built target c10_typeid_test<br> Compiling misc/rings.cu &gt; /home/feng/pytorch/build/nccl/obj/misc/rings.o<br> [ 15%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_concat.cpp.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 15%] Built target dispsse_obj<br> [ 15%] Built target dispavx_obj<br> [ 15%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_u8s8s32x_convolution.cpp.o<br> [ 15%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/descriptor.pb.cc.o<br> [ 15%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/descriptor_database.cc.o<br> [ 15%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_i8i8_pooling.cpp.o<br> [ 15%] Built target sleefavx<br> Scanning dependencies of target sleef<br> [ 15%] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefdp.c.o<br> [ 15%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/nchw_pooling.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_reducer.cpp.o<br> [ 16%] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefsp.c.o<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_gemm_f32.cpp.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/duration.pb.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_dw_conv_kernel_f32.cpp.o<br> Compiling misc/utils.cu &gt; /home/feng/pytorch/build/nccl/obj/misc/utils.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_reorder.cpp.o<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_engine.cpp.o<br> [ 16%] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefld.c.o<br> [ 16%] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefqp.c.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/dynamic_message.cc.o<br> [ 16%] Linking C static library ../../lib/libsleef.a<br> [ 16%] Built target sleef<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/empty.pb.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_convolution_winograd.cpp.o<br> Compiling misc/enqueue.cu &gt; /home/feng/pytorch/build/nccl/obj/misc/enqueue.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/extension_set_heavy.cc.o<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_lrn.cpp.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/field_mask.pb.cc.o<br> [ 16%] Generating src/x86_64-fma/2d-winograd-8x8-3x3.py.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/generated_message_reflection.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/generated_message_table_driven.cc.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/io/gzip_stream.cc.o<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_sse42_convolution.cpp.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/io/printer.cc.o<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_convolution_winograd.cpp.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/io/strtod.cc.o<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx2_1x1_convolution.cpp.o<br> [ 16%] Generating src/x86_64-fma/blas/s8gemm.py.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/io/tokenizer.cc.o<br> Compiling transport/p2p.cu &gt; /home/feng/pytorch/build/nccl/obj/transport/p2p.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 16%] Generating src/x86_64-fma/blas/c8gemm.py.o<br> [ 16%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_eltwise.cpp.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/io/zero_copy_stream_impl.cc.o<br> [ 16%] Generating src/x86_64-fma/blas/s4c6gemm.py.o<br> [ 16%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/map_field.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/message.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/reflection_ops.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/service.cc.o<br> [ 17%] Generating src/x86_64-fma/blas/conv1x1.py.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_pooling.cpp.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx2_conv_kernel_f32.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 17%] Generating src/x86_64-fma/blas/sgemm.py.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/source_context.pb.cc.o<br> [ 17%] Generating src/x86_64-fma/max-pooling.py.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/struct.pb.cc.o<br> [ 17%] Generating src/x86_64-fma/relu.py.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_dw_convolution.cpp.o<br> [ 17%] Generating src/x86_64-fma/softmax.py.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/mathlimits.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/stubs/substitute.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/text_format.cc.o<br> Compiling transport/shm.cu &gt; /home/feng/pytorch/build/nccl/obj/transport/shm.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/timestamp.pb.cc.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_batch_normalization.cpp.o<br> [ 17%] Generating src/x86_64-fma/blas/sdotxf.py.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_inner_product.cpp.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/type.pb.cc.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_reorder_utils.cpp.o<br> [ 17%] Generating src/x86_64-fma/blas/shdotxf.py.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/unknown_field_set.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/util/delimited_message_util.cc.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_u8s8s32x_1x1_conv_kernel.cpp.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/util/field_comparator.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/util/field_mask_util.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir//src/google/protobuf/util/internal/datapiece.cc.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_batch_normalization.cpp.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/default_value_objectwriter.cc.o<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_sse42_1x1_convolution.cpp.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/error_listener.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/field_mask_utility.cc.o<br> Compiling transport/net.cu &gt; /home/feng/pytorch/build/nccl/obj/transport/net.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 17%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_u8s8s32x_wino_convolution.cpp.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/json_escaping.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/json_objectwriter.cc.o<br> [ 17%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/json_stream_parser.cc.o<br> [ 18%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/object_writer.cc.o<br> [ 19%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx2_convolution.cpp.o<br> [ 19%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_1x1_convolution.cpp.o<br> Scanning dependencies of target nnpack<br> [ 19%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/proto_writer.cc.o<br> [ 19%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/init.c.o<br> [ 19%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-inference.c.o<br> [ 19%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/protostream_objectsource.cc.o<br> [ 19%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-inference.c.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/pooling-output.c.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-output.c.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/protostream_objectwriter.cc.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/type_info.cc.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/softmax-output.c.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-output.c.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-input-gradient.c.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-input-gradient.c.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/internal/type_info_test_helper.cc.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-kernel-gradient.c.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-output.c.o<br> [ 20%] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/x86_64-fma/softmax.c.o<br> [ 20%] Linking C static library ../../lib/libnnpack.a<br> [ 20%] Built target nnpack<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/internal/utility.cc.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/cpu_reorder.cpp.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/json_util.cc.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/message_differencer.cc.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/util/time_util.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/util/type_resolver_util.cc.o<br> Compiling transport/net_socket.cu &gt; /home/feng/pytorch/build/nccl/obj/transport/net_socket.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/<strong>/src/google/protobuf/wire_format.cc.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/</strong>/src/google/protobuf/wrappers.pb.cc.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx2_1x1_conv_kernel_f32.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_common_conv_kernel.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/gemm_convolution_utils.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_uni_lrn.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_softmax.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_transpose_src_utils.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_rnn.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_eltwise.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/ref_convolution.cpp.o<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/nspc_batch_normalization.cpp.o<br> [ 20%] Linking CXX static library ../../../lib/libprotobuf.a<br> [ 20%] Built target libprotobuf<br> [ 20%] Generating ../../../../third_party/protobuf/src/google/protobuf/compiler/js/well_known_types_embed.cc<br> Scanning dependencies of target libprotoc<br> [ 20%] Building CXX object third_party/ideep/mkl-dnn/src/CMakeFiles/mkldnn.dir/cpu/jit_avx512_core_conv_winograd_kernel_f32.cpp.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/code_generator.cc.o<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/command_line_interface.cc.o<br> Compiling transport/net_ib.cu &gt; /home/feng/pytorch/build/nccl/obj/transport/net_ib.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 20%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_enum.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_enum_field.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_extension.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_field.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_file.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_generator.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_helpers.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_map_field.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_message.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_message_field.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_padding_optimizer.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/cpp/cpp_service.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/cpp/cpp_string_field.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc.o<br> Compiling collectives/all_reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/all_reduce.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_enum.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_enum_field.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_field_base.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_generator.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_helpers.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_map_field.cc.o<br> [ 21%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_message.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_message_field.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_context.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_doc_comment.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_enum.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_enum_field.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_enum_field_lite.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_enum_lite.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_extension.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_extension_lite.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_field.cc.o<br> Compiling collectives/all_gather.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/all_gather.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_file.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_generator.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_generator_factory.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_helpers.cc.o<br> [ 22%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_lazy_message_field.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_lazy_message_field_lite.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_map_field.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_map_field_lite.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_message.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_message_builder.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_message_builder_lite.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_message_field.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_message_field_lite.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_message_lite.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_name_resolver.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_primitive_field.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_primitive_field_lite.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_service.cc.o<br> Compiling collectives/broadcast.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/broadcast.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_shared_code_generator.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/java/java_string_field.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/java/java_string_field_lite.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_enum.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/javanano/javanano_enum_field.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_extension.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/javanano/javanano_field.cc.o<br> [ 23%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_file.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/javanano/javanano_generator.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_helpers.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/javanano/javanano_map_field.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_message.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/javanano/javanano_message_field.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/javanano/javanano_primitive_field.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/js/js_generator.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/js/well_known_types_embed.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_enum.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_extension.cc.o<br> Compiling collectives/reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/reduce.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_field.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_file.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_generator.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_map_field.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_message.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/objectivec/objectivec_oneof.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc.o<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/php/php_generator.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 24%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/plugin.cc.o<br> [ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/plugin.pb.cc.o<br> [ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/python/python_generator.cc.o<br> [ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/ruby/ruby_generator.cc.o<br> [ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/<strong>/src/google/protobuf/compiler/subprocess.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/</strong>/src/google/protobuf/compiler/zip_writer.cc.o<br> Compiling collectives/reduce_scatter.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/reduce_scatter.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 25%] Linking CXX shared library ../../../../lib/libmkldnn.so<br> [ 25%] Built target mkldnn<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 25%] Linking CXX static library ../../../lib/libprotoc.a<br> [ 25%] Built target libprotoc<br> Scanning dependencies of target protoc<br> [ 25%] Building CXX object third_party/protobuf/cmake/CMakeFiles/protoc.dir/<strong>/src/google/protobuf/compiler/main.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 25%] Linking CXX executable ../../../bin/protoc<br> [ 25%] Built target protoc<br> Scanning dependencies of target gen_onnx_proto<br> [ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/prof_dag.proto<br> [ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/predictor_consts.proto<br> [ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/torch.proto<br> [ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/caffe2.proto<br> [ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/hsm.proto<br> [ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/metanet.proto<br> [ 25%] Running C++/Python protocol buffer compiler on /home/feng/pytorch/caffe2/proto/caffe2_legacy.proto<br> [ 25%] Running gen_proto.py on onnx/onnx.in.proto<br> Processing /home/feng/pytorch/third_party/onnx/onnx/onnx.in.proto<br> Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch.proto<br> Compiling all_reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_reduce_sum.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch.proto3<br> Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx.pb.h<br> generating /home/feng/pytorch/build/third_party/onnx/onnx/onnx_pb.py<br> [ 25%] Running C++ protocol buffer compiler on /home/feng/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch.proto<br> Scanning dependencies of target Caffe2_PROTO<br> [ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2_legacy.pb.cc.o<br> [ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2.pb.cc.o<br> [ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/predictor_consts.pb.cc.o<br> [ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/prof_dag.pb.cc.o<br> [ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/hsm.pb.cc.o<br> [ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/metanet.pb.cc.o<br> [ 25%] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/torch.pb.cc.o<br> [ 25%] Built target gen_onnx_proto<br> [ 25%] Running gen_proto.py on onnx/onnx-operators.in.proto<br> Processing /home/feng/pytorch/third_party/onnx/onnx/onnx-operators.in.proto<br> Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch.proto<br> Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch.proto3<br> Writing /home/feng/pytorch/build/third_party/onnx/onnx/onnx-operators.pb.h<br> generating /home/feng/pytorch/build/third_party/onnx/onnx/onnx_operators_pb.py<br> [ 25%] Running C++ protocol buffer compiler on /home/feng/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch.proto<br> Scanning dependencies of target onnx_proto<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx_onnx_torch.pb.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-operators_onnx_torch.pb.cc.o<br> [ 26%] Linking CXX static library ../../lib/libonnx_proto.a<br> [ 26%] Built target onnx_proto<br> Scanning dependencies of target onnx<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/convert.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/function.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/data_type_utils.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/helper.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/</strong>/<strong>/caffe2/onnx/torch_ops/schema.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/</strong>/<strong>/caffe2/onnx/torch_ops/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/old.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/defs.cc.o<br> [ 26%] Built target Caffe2_PROTO<br> Scanning dependencies of target Caffe2_perfkernels_avx2<br> [ 26%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/embedding_lookup_avx2.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/old.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/old.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/old.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/schema.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/defs.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/old.cc.o<br> [ 26%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/defs.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/old.cc.o<br> [ 27%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/math_cpu_avx2.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/experiments/defs.cc.o<br> [ 27%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/common_avx2.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/experiments/experiments_functions.cc.o<br> [ 27%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/typed_axpy_avx2.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/onnxifi_utils.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/ir_pb_converter.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/status.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/assertions.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/model_helpers.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/interned_strings.cc.o<br> [ 27%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx2.dir/embedding_lookup_fused_8bit_rowwise_avx2.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/checker.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/shape_inference/implementation.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/optimizer/pass_registry.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/optimizer/optimize.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/optimizer/pass_manager.cc.o<br> [ 27%] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/optimizer/pass.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> Scanning dependencies of target caffe2_protos<br> [ 27%] Linking CXX static library ../lib/libcaffe2_protos.a<br> [ 27%] Built target caffe2_protos<br> Scanning dependencies of target Caffe2_perfkernels_avx<br> [ 27%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx.dir/adagrad_avx.cc.o<br> [ 28%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx.dir/typed_axpy_avx.cc.o<br> [ 28%] Building CXX object caffe2/perfkernels/CMakeFiles/Caffe2_perfkernels_avx.dir/common_avx.cc.o<br> [ 28%] Built target Caffe2_perfkernels_avx<br> [ 28%] Built target Caffe2_perfkernels_avx2<br> [ 28%] Linking CXX static library ../../lib/libonnx.a<br> [ 28%] Built target onnx<br> Scanning dependencies of target caffe2<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> Compiling broadcast.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/broadcast_sum.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> Compiling reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_sum.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/DLConvertor.cpp.o<br> [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/TensorUtils.cpp.o<br> [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUGenerator.cpp.o<br> [ 28%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/TensorGeometry.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/UndefinedType.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/Utils.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/Context.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/CPUGeneral.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUTypeDefault.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/SparseTensorImpl.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/ExpandUtils.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/detail/ComplexHooksInterface.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/detail/CPUGuardImpl.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/detail/CUDAHooksInterface.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/cpu/FlushDenormal.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/Storage.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/context_base.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/thread_pool.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/ATenCoreTest.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/StorageImpl.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/Formatting.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/LegacyTypeDispatch.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/register_symbols.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/VariableHooksInterface.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/Tensor.cpp.o<br> [ 29%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/interned_strings.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/TensorOptions.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/Range.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/ivalue.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/Allocator.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/ATenGeneral.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/UndefinedTensorImpl.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/Scalar.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/blob.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/intrusive_ptr.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/TensorImpl.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/UniqueVoidPtr.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/core/type.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/core/OptionsGuard.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Embedding.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/SoftMax.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/DispatchStub.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Dropout.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorCompare.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/LinearAlgebra.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/GridSampler.cpp.o<br> [ 30%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/ReduceOps.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/UnaryOps.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Linear.cpp.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Indexing.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/PixelShuffle.cpp.o<br> Compiling all_gather.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_gather_sum.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorIterator.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/LegacyBridge.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TypeProperties.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Copy.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Loss.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/EmbeddingBag.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Normalization.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/WeightNorm.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Resize.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Convolution.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/RoiPooling.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/PackedSequence.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/LegacyDefinitions.cpp.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Distance.cpp.o<br> Compiling reduce_scatter.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_scatter_sum.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorFactories.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/ConvolutionTBC.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/SummaryOps.cpp.o<br> [ 31%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/TensorTransformations.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Unique.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/TensorIteratorReduce.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Pooling.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Distributions.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/SpectralOps.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Memory.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorProperties.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/Scalar.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorShape.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/BinaryOps.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/Activation.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/LossCTC.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/RNN.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/ConstantPadNd.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/TensorConversions.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/BatchLinearAlgebra.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/sparse/SparseTensorMath.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/sparse/SparseTensor.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/mkl/LinearAlgebra.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/mkl/SpectralOps.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/mkldnn/Conv.cpp.o<br> [ 32%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUByteType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/CPUCharType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUCopy.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/CPUDoubleType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUFloatType.cpp.o<br> Compiling all_reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_reduce_prod.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/CPUHalfType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUIntType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/CPULongType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/CPUShortType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/RegisterCPU.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/SparseCPUByteType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/SparseCPUCharType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/SparseCPUDoubleType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/SparseCPUFloatType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/SparseCPUIntType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/SparseCPULongType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/SparseCPUShortType.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/TypeDefault.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THGeneral.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THAllocator.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THSize.cpp.o<br> [ 33%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THStorageFunctions.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THTensor.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THTensorCopy.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THTensorRandom.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THTensorMath.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THTensorMoreMath.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THTensorEvenMoreMath.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THTensorConv.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THTensorLapack.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THBlas.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THLapack.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THLogAdd.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THRandom.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THFile.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THDiskFile.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/THMemoryFile.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/THVector.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/TH/vector/AVX.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/TH/vector/AVX2.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/THNN/init.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.AVX2.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/Activation.cpp.AVX2.cpp.o<br> [ 34%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.AVX2.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.AVX2.cpp.o<br> Compiling broadcast.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/broadcast_prod.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.AVX2.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.AVX2.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> Compiling reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_prod.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.AVX2.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.AVX2.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.AVX.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/Activation.cpp.AVX.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.AVX.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.AVX.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.AVX.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.AVX.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.AVX.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.AVX.cpp.o<br> Compiling all_gather.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_gather_prod.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/Activation.cpp.DEFAULT.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.DEFAULT.cpp.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.DEFAULT.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.DEFAULT.cpp.o<br> Compiling reduce_scatter.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_scatter_prod.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.DEFAULT.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/<strong>/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.DEFAULT.cpp.o<br> [ 35%] Building CXX object caffe2/CMakeFiles/caffe2.dir/</strong>/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.DEFAULT.cpp.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/__/aten/src/ATen/mkldnn/Runtime.cpp.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/aten/aten_op.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/allgather_ops.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/allreduce_ops.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/barrier_ops.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/broadcast_ops.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/common.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/common_world_ops.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/context.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/reduce_scatter_ops.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/gloo/store_handler.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/script/lexer.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/contrib/script/compiler.cc.o<br> Compiling all_reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_reduce_min.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/init_intrinsics_check.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/module.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_dag_utils.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/event.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/graph.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/plan_executor.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/int8_serialization.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/tensor_int8.cc.o<br> [ 36%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/context.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/prof_dag_counters.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/blob_stats.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/qtensor.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_simple.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/memonger.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/transform.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/operator_c10wrapper.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/context_base.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/common.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/blob_serialization.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_async_tracing.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/workspace.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/tensor_impl.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/init_omp.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/operator.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/init.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/operator_schema.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/tensor.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_async_base.cc.o<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_simple_refcount.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 37%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/stats.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/types.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/allocator.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_dag.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/numa.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/net_async_scheduling.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/qtensor_serialization.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/db.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/proto_convert.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/proto_wrap.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/proto_utils.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/murmur_hash3.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/smart_tensor_printer.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/signal_handler.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/string_utils.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/threadpool/ThreadPool.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/cpuid.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/bench_utils.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/math_cpu.cc.o<br> Compiling broadcast.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/broadcast_min.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/math_utils.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/thread_name.cc.o<br> [ 38%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/threadpool/pthreadpool.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/utils/threadpool/pthreadpool_impl.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/predictor/predictor.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/predictor/predictor_utils.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/predictor/predictor_config.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/nomnigraph/tests/test_util.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/core/nomnigraph/Representations/NeuralNet.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/db/create_db_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/db/protodb.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/file_store_handler.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> Compiling reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_min.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/file_store_handler_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/store_handler.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/distributed/store_ops.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/utils/ideep_register.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/dropout_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/pool_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/momentum_sgd_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/local_response_normalization_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/relu_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/elementwise_sum_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/squeeze_op.cc.o<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/utility_ops.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 39%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/conv_fusion_op.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/operator_fallback_ideep.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/concat_split_op.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/spatial_batch_norm_op.cc.o<br> Compiling all_gather.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_gather_min.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/fully_connected_op.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/ideep/operators/conv_op.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/mpi/mpi_common.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> Compiling reduce_scatter.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_scatter_min.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/mpi/mpi_ops.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/observers/time_observer.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/observers/runcnt_observer.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/backend.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/onnx_exporter.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/backend_rep.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/helper.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/onnxifi_init.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/onnx/device.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lpnorm_op.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gru_unit_op.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sparse_normalize_op.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/while_op.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/unique_ops.cc.o<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/feed_blob_op.cc.o<br> Compiling all_reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_reduce_max.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 40%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/index_ops.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/clip_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_div_gradient_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/glu_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reservoir_sampling.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/dropout_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/resize_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_rotated_gradient_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tensor_protos_db_input.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sparse_to_dense_mask_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pool_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/relu_n_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/instance_norm_gradient_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reciprocal_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/leaky_relu_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/distance_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ensure_cpu_output_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/locally_connected_op_util.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/partition_ops.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/selu_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/do_op.cc.o<br> [ 41%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_reducer_fused_8bit_rowwise_ops.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/free_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_top_k_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_bucketize_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/heatmap_max_keypoint_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/filler_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softsign_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_op_shared.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/enforce_finite_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/local_response_normalization_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/moments_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sparse_to_dense_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/data_couple.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tt_linear_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/arg_ops.cc.o<br> Compiling broadcast.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/broadcast_max.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/assert_op.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> Compiling reduce.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_max.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/feature_maps_ops.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/if_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/acos_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/relu_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/accumulate_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/spatial_softmax_with_loss_op.cc.o<br> [ 42%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/listwise_l2r_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sigmoid_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cast_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/integral_image_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/flexible_top_k.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_sub_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sequence_ops.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/remove_data_blocks_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/h_softmax_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/expand_squeeze_dims_op.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/slice_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_front_back_max_ops.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_gradient_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stats_put_ops.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/bbox_transform_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/collect_and_distribute_fpn_rpn_proposals_op.cc.o<br> Compiling all_gather.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/all_gather_max.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reshape_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/prepend_dim_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_gradient_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sqrt_op.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/segment_reduction_op.cc.o<br> [ 43%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_div_op.cc.o<br> Compiling reduce_scatter.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/reduce_scatter_max.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/byte_weight_dequant_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_sum_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/upsample_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ensure_clipped_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cosh_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/margin_ranking_criterion_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_pool_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tanh_gradient_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lp_pool_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pow_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rowmul_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rsqrt_op.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_rotated_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/bisect_percentile_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/percentile_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/normalize_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sin_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_moments_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lstm_unit_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/jsd_op.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> Compiling functions.cu &gt; /home/feng/pytorch/build/nccl/obj/collectives/device/functions.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pad_op.cc.o<br> [ 44%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sigmoid_gradient_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/string_ops.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/create_scope_op.cc.o<br> ptxas warning : Too big maxrregcount value specified 96, will be ignored<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_reducer_rowwise_8bit_ops.cc.o<br> nvcc warning : The 'compute_20', 'sm_20', and 'sm_21' architectures are deprecated, and may be removed in a future release (Use -Wno-deprecated-gpu-targets to suppress warning).<br> nvlink fatal : Internal error: reference to deleted section<br> Makefile:83: recipe for target '/home/feng/pytorch/build/nccl/obj/collectives/device/devlink.o' failed<br> make[5]: *** [/home/feng/pytorch/build/nccl/obj/collectives/device/devlink.o] Error 1<br> Makefile:45: recipe for target 'devicelib' failed<br> make[4]: *** [devicelib] Error 2<br> Makefile:25: recipe for target 'src.build' failed<br> make[3]: *** [src.build] Error 2<br> CMakeFiles/nccl_external.dir/build.make:110: recipe for target 'nccl_external-prefix/src/nccl_external-stamp/nccl_external-build' failed<br> make[2]: *** [nccl_external-prefix/src/nccl_external-stamp/nccl_external-build] Error 2<br> CMakeFiles/Makefile2:67: recipe for target 'CMakeFiles/nccl_external.dir/all' failed<br> make[1]: *** [CMakeFiles/nccl_external.dir/all] Error 2<br> make[1]: *** Waiting for unfinished jobs....<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_reducer_ops.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/deform_conv_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gather_ranges_to_dense_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_transpose_op_mobile.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_matmul_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/crf_viterbi_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/thresholded_relu_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/replace_nan_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/mean_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stylizer_ops.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/is_empty_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/channel_stats_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sinusoid_position_encoding_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/apmeter_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_ops.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/key_split_ops.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/square_root_divide_op.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_ops.cc.o<br> [ 45%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softmax_shared.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_mul_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/roi_align_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/minmax_gradient_ops.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/deform_conv_gradient_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_front_back_sum_ops.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/transpose_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/text_file_reader_utils.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elu_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduce_front_back_mean_ops.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/workspace_ops.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/text_file_reader.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/given_tensor_fill_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/utility_ops.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/communicator_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/find_duplicate_elements_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/abs_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cbrt_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_box_cox_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sqr_op.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/last_n_window_collector.cc.o<br> [ 46%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tanh_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/length_split_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gather_fused_8bit_rowwise_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/onnxifi_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/logit_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/boolean_mask_ops.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stop_gradient.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/asin_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_sparse_to_dense_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/channel_shuffle_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/counter_ops.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/sinh_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_mul_gradient_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ngram_ops.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/accuracy_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reduction_ops.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/matmul_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rank_loss_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softplus_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conditional_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/loss_op.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/boolean_unmask_ops.cc.o<br> [ 47%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/weighted_multi_sampling_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fused_rowwise_random_quantization_ops.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reciprocal_gradient_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softmax_with_loss_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/numpy_tile_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/piecewise_linear_transform_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/space_batch_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/floor_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/log_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_logical_ops.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_add_gradient_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ceil_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/index_hash_ops.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/weighted_sample_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/atomic_ops.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/one_hot_ops.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_ops_schema.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/merge_id_lists_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/shape_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/perplexity_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/normalize_l1_op.cc.o<br> [ 48%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/map_ops.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/concat_split_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/load_save_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/find_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/top_k.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/group_norm_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/spatial_batch_norm_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tile_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/box_with_nms_limit_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/tan_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/channel_backprop_stats_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fully_connected_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/zero_gradient_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stump_func_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fused_rowwise_8bit_conversion_ops.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/negative_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/softmax_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/half_float_ops.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ctc_beam_search_decoder_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/given_tensor_byte_string_to_uint8_fill_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/onnx_while_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/negate_gradient_op.cc.o<br> [ 49%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pool_gradient_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/flatten_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_ops_utils.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/summarize_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/minmax_ops.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_tile_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/im2col_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/generate_proposals_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/stats_ops.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/order_switch_ops.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/reverse_packed_segs_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/norm_planar_yuv_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/exp_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cos_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/atan_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/ctc_greedy_decoder_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/scale_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_transpose_gradient_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/instance_norm_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/prelu_op.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/batch_gather_ops.cc.o<br> [ 50%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/expand_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cosine_embedding_criterion_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pack_segments.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_add_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/multi_class_accuracy_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/copy_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/mod_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/dataset_ops.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/affine_channel_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/lengths_pad_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/spatial_batch_norm_gradient_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cross_entropy_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/locally_connected_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rmac_regions_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/variable_length_sequence_padding.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/hard_sigmoid_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/pack_rnn_sequence_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/fc_inference.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_op_eigen.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/gather_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/swish_op.cc.o<br> [ 51%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_sub_gradient_op.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/conv_transpose_op.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quant_decode_op.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/elementwise_linear_op.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/layer_norm_op.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/cube_op.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/layer_norm.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/batch_matmul.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/flatten.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/averaged_loss.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/add.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/batch_gather.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/filler.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/enforce_finite.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/expand_dims.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/stop_gradient.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/cast.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/mul.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/sigmoid.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/relu.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/fc.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/sparse_lengths_sum.cc.o<br> [ 52%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/concat.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/schemas/sigmoid_cross_entropy_with_logits.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/expand_dims_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/add_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/fc_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/concat_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/relu_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/batch_matmul_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/flatten_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/sparse_lengths_sum_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/sigmoid_cross_entropy_with_logits_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/sigmoid_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/filler_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/averaged_loss_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/cast_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/stop_gradient_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/batch_gather_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/enforce_finite_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/experimental/c10/cpu/mul_cpu.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rnn/recurrent_network_op.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rnn/recurrent_network_executor.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/rnn/recurrent_network_blob_fetcher_op.cc.o<br> [ 53%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/init_qnnpack.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_add_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_average_pool_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_channel_shuffle_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_concat_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_conv_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_conv_transpose_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_dequantize_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_fc_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_flatten_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_given_tensor_fill_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_leaky_relu_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_max_pool_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_quantize_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_relu_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_reshape_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_resize_nearest_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_roi_align_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_slice_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_sigmoid_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/operators/quantized/int8_softmax_op.cc.o<br> [ 54%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/distributed.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/optimize_ideep.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/distributed_converter.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/dead_code_elim.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/mobile.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/optimizer.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/sink.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/onnxifi_transformer.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/passes.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/annotations.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/converter.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/backend_cutting.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/fusion.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/opt/device.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/typed_axpy.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/fused_8bit_rowwise_embedding_lookup.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/adagrad.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/embedding_lookup.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/perfkernels/math_cpu_base.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/queue_ops.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/rebatching_queue_ops.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/rebatching_queue.cc.o<br> [ 55%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/blobs_queue.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/queue/blobs_queue_db.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/momentum_sgd_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/adam_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/learning_rate_adaption_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/clip_tensor_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/yellowfin_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/wngrad_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/gftrl_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/iter_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/learning_rate_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/ftrl_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/adadelta_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/lars_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/adagrad_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/sgd/rmsprop_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/share/contrib/nnpack/conv_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/share/contrib/depthwise/depthwise3x3_conv_op.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/single_op_transform.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/conv_to_nnpack_transform.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/pattern_net_transform.cc.o<br> [ 56%] Building CXX object caffe2/CMakeFiles/caffe2.dir/transforms/common_subexpression_elimination.cc.o<br> [ 57%] Linking CXX shared library ../lib/libcaffe2.so<br> [ 57%] Built target caffe2<br> Makefile:138: recipe for target 'all' failed<br> make: *** [all] Error 2<br> Failed to run 'bash ../tools/build_pytorch_libs.sh --use-cuda --use-nnpack --use-mkldnn --use-qnnpack caffe2'</li> </ul> <h3 dir="auto">Please note that this issue tracker is not a help form and this issue will be closed.</h3> <p dir="auto">We have a set of <a href="https://pytorch.org/resources" rel="nofollow">listed resources available on the website</a>. Our primary means of support is our discussion forum:</p> <ul dir="auto"> <li><a href="https://discuss.pytorch.org/" rel="nofollow">Discussion Forum</a></li> </ul>
1
<h1 dir="auto">Environment</h1> <p dir="auto">Windows 1903<br> Fira Code with Font Ligatures enabled</p> <h1 dir="auto">Steps to reproduce</h1> <p dir="auto">Use a font with font ligatures and type <code class="notranslate">-</code> or <code class="notranslate">=</code> as your first character.</p> <h1 dir="auto">Expected behavior</h1> <p dir="auto">I would expect the prompt not to interact with the characters. In <code class="notranslate">c:\projects\&gt;</code> the <code class="notranslate">&gt;</code> symbol should not connect with any font ligatures.</p> <h1 dir="auto">Actual behavior</h1> <p dir="auto">The <code class="notranslate">&gt;</code> symbol combines to create font ligatures.</p> <p dir="auto">The behavior is shown in the below images:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/22513880/58168814-2a00a980-7c5d-11e9-9715-8450d8f7d3ba.png"><img src="https://user-images.githubusercontent.com/22513880/58168814-2a00a980-7c5d-11e9-9715-8450d8f7d3ba.png" alt="font-ligatures-error-1" style="max-width: 100%;"></a><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/22513880/58168822-2cfb9a00-7c5d-11e9-8d83-0d617506bb57.png"><img src="https://user-images.githubusercontent.com/22513880/58168822-2cfb9a00-7c5d-11e9-8d83-0d617506bb57.png" alt="font-ligatures-error-2" style="max-width: 100%;"></a></p>
<p dir="auto">When fonts with programming ligatures is used, a weird behavior is show if write some characters at first, for example with <a href="https://github.com/tonsky/FiraCode">FiraCode</a>.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/12452450/57310925-47a40f80-70b0-11e9-93a3-2cc251c618d6.png"><img src="https://user-images.githubusercontent.com/12452450/57310925-47a40f80-70b0-11e9-93a3-2cc251c618d6.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/12452450/57310942-512d7780-70b0-11e9-94d3-5a57d5832d0e.png"><img src="https://user-images.githubusercontent.com/12452450/57310942-512d7780-70b0-11e9-94d3-5a57d5832d0e.png" alt="image" style="max-width: 100%;"></a></p>
1
<p dir="auto">When trying to compile a react 15 project with Typescript and MaterialUI 1.0.0-beta, typescript found inconsistencies on typings defined.</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">Material-ui, react15 and typescript should be able to compile properly.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">Typescript is not able to compile due to several typing / descriptor inconsistencies.<br> First according to material-ui package descriptor, material-ui should be compatible with both react 15 and react 16.</p> <p dir="auto">Some of typings for example of Table component seems to rely on react 16 definitions, and in order to be compatible with react 15 this should not occur.</p> <p dir="auto">Example errors:</p> <p dir="auto"><code class="notranslate">.../material-ui/Tooltip/Tooltip.d.ts (4,18): error TS2430: Interface 'TooltipProps' incorrectly extends interface 'HTMLAttributes&lt;HTMLDivElement&gt;'. Types of property 'label' are incompatible. Type 'ReactNode' is not assignable to type 'string | undefined'. Type 'null' is not assignable to type 'string | undefined'. </code></p> <p dir="auto"><code class="notranslate">.../material-ui/Table/TableCell.d.ts (17,11): error TS2694: Namespace 'React' has no exported member 'ThHTMLAttributes'.</code></p> <p dir="auto"><code class="notranslate">.../material-ui/Table/Table.d.ts (5,17): error TS2694: Namespace 'React' has no exported member 'TableHTMLAttributes'.</code></p> <p dir="auto"><code class="notranslate">.../material-ui/Snackbar/SnackbarContent.d.ts (5,18): error TS2430: Interface 'SnackbarContentProps' incorrectly extends interface 'PaperProps'. Types of property 'action' are incompatible. Type 'ReactElement&lt;any&gt; | undefined' is not assignable to type 'string | undefined'. Type 'ReactElement&lt;any&gt;' is not assignable to type 'string | undefined'. Type 'ReactElement&lt;any&gt;' is not assignable to type 'string'.</code></p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <ol dir="auto"> <li>create-react-app my-app --scripts-version=react-scripts-ts</li> <li>add material-ui</li> <li>add a component and try to compile</li> </ol> <h2 dir="auto">Context</h2> <p dir="auto">Project do not build.</p> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td>1.0.0-beta10</td> </tr> <tr> <td>React</td> <td>15.3.0</td> </tr> <tr> <td>typescript</td> <td>2.3.4</td> </tr> </tbody> </table>
<p dir="auto">I tried the table demo on your site and found nothing about editing.</p> <p dir="auto">Thus I request a cell editing feature like they do it with angularjs:</p> <p dir="auto"><a href="http://codepen.io/anon/pen/YwGJVr?editors=101" rel="nofollow">http://codepen.io/anon/pen/YwGJVr?editors=101</a></p> <p dir="auto">You can edit the last comment column :-)</p>
0
<h2 dir="auto">Steps to Reproduce</h2> <ol dir="auto"> <li><code class="notranslate">flutter create foo</code></li> <li><code class="notranslate">cd foo</code></li> <li>Open Simulator iPhone X</li> <li><code class="notranslate">flutter run</code></li> <li>Open lib/main.dart</li> <li>Change</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" appBar: new AppBar( // Here we take the value from the MyHomePage object that was created by // the App.build method, and use it to set our appbar title. title: new Text(widget.title), ),"><pre class="notranslate"><code class="notranslate"> appBar: new AppBar( // Here we take the value from the MyHomePage object that was created by // the App.build method, and use it to set our appbar title. title: new Text(widget.title), ), </code></pre></div> <p dir="auto">to</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" appBar: new AppBar( // Here we take the value from the MyHomePage object that was created by // the App.build method, and use it to set our appbar title. title: widget.title, // &lt;---- CHANGE ),"><pre class="notranslate"><code class="notranslate"> appBar: new AppBar( // Here we take the value from the MyHomePage object that was created by // the App.build method, and use it to set our appbar title. title: widget.title, // &lt;---- CHANGE ), </code></pre></div> <ol start="7" dir="auto"> <li>Press [<strong>r</strong>](hot reload) in terminal where fultter is running</li> <li>Revert previous changes</li> <li>Press [<strong>r</strong>](hot reload) in terminal</li> <li>Press [<strong>R</strong>](hot restart) in terminal</li> </ol> <h2 dir="auto">Logs</h2> <p dir="auto"><code class="notranslate">flutter run --verbose</code></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ +35 ms] [/Users/maksimrv/www/dart/flutter/] git rev-parse --abbrev-ref --symbolic @{u} [ +35 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ ] origin/dev [ ] [/Users/maksimrv/www/dart/flutter/] git rev-parse --abbrev-ref HEAD [ +7 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ ] dev [ ] [/Users/maksimrv/www/dart/flutter/] git ls-remote --get-url origin [ +7 ms] Exit code 0 from: git ls-remote --get-url origin [ ] https://github.com/flutter/flutter.git [ ] [/Users/maksimrv/www/dart/flutter/] git log -n 1 --pretty=format:%H [ +7 ms] Exit code 0 from: git log -n 1 --pretty=format:%H [ ] 3019ad976d333cceb903b3f53885cd9ae678a622 [ ] [/Users/maksimrv/www/dart/flutter/] git log -n 1 --pretty=format:%ar [ +7 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar [ ] 5 days ago [ ] [/Users/maksimrv/www/dart/flutter/] git describe --match v*.*.* --first-parent --long --tags [ +10 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags [ ] v0.5.4-0-g3019ad976 [ +626 ms] /usr/local/opt/android-sdk/platform-tools/adb devices -l [ +7 ms] Exit code 0 from: /usr/local/opt/android-sdk/platform-tools/adb devices -l [ ] List of devices attached [ +4 ms] idevice_id -h [ +151 ms] /usr/bin/xcrun simctl list --json devices [ +890 ms] Launching lib/main.dart on iPhone X in debug mode... [ +2 ms] /usr/bin/defaults read /Users/maksimrv/www/dart/foo/ios/Runner/Info CFBundleIdentifier [ +68 ms] Exit code 0 from: /usr/bin/defaults read /Users/maksimrv/www/dart/foo/ios/Runner/Info CFBundleIdentifier [ ] $(PRODUCT_BUNDLE_IDENTIFIER) [ ] [ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/maksimrv/www/dart/foo/ios/Runner.xcodeproj -target Runner -showBuildSettings [ +923 ms] Exit code 0 from: /usr/bin/xcodebuild -project /Users/maksimrv/www/dart/foo/ios/Runner.xcodeproj -target Runner -showBuildSettings [ ] Build settings for action build and target Runner: ACTION = build AD_HOC_CODE_SIGNING_ALLOWED = NO ALTERNATE_GROUP = staff ALTERNATE_MODE = u+w,go-w,a+rX ALTERNATE_OWNER = maksimrv ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO ALWAYS_SEARCH_USER_PATHS = NO ALWAYS_USE_SEPARATE_HEADERMAPS = NO APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer APPLE_INTERNAL_DIR = /AppleInternal APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools APPLICATION_EXTENSION_API_ONLY = NO APPLY_RULES_IN_COPY_FILES = NO ARCHS = armv7 arm64 ARCHS_STANDARD = armv7 arm64 ARCHS_STANDARD_32_64_BIT = armv7 arm64 ARCHS_STANDARD_32_BIT = armv7 ARCHS_STANDARD_64_BIT = arm64 ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64 ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator BITCODE_GENERATION_MODE = marker BUILD_ACTIVE_RESOURCES_ONLY = NO BUILD_COMPONENTS = headers build BUILD_DIR = /Users/maksimrv/www/dart/foo/build/ios BUILD_ROOT = /Users/maksimrv/www/dart/foo/build/ios BUILD_STYLE = BUILD_VARIANTS = normal BUILT_PRODUCTS_DIR = /Users/maksimrv/www/dart/foo/build/ios/Release-iphoneos CACHE_ROOT = /var/folders/bj/7c8x11911jgg75k0ywfvb3sw0000gp/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode CCHROOT = /var/folders/bj/7c8x11911jgg75k0ywfvb3sw0000gp/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode CHMOD = /bin/chmod CHOWN = /usr/sbin/chown CLANG_ANALYZER_NONNULL = YES CLANG_CXX_LANGUAGE_STANDARD = gnu++0x CLANG_CXX_LIBRARY = libc++ CLANG_ENABLE_MODULES = YES CLANG_ENABLE_OBJC_ARC = YES CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES CLANG_WARN_BOOL_CONVERSION = YES CLANG_WARN_COMMA = YES CLANG_WARN_CONSTANT_CONVERSION = YES CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR CLANG_WARN_EMPTY_BODY = YES CLANG_WARN_ENUM_CONVERSION = YES CLANG_WARN_INFINITE_RECURSION = YES CLANG_WARN_INT_CONVERSION = YES CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES CLANG_WARN_OBJC_LITERAL_CONVERSION = YES CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR CLANG_WARN_RANGE_LOOP_ANALYSIS = YES CLANG_WARN_STRICT_PROTOTYPES = YES CLANG_WARN_SUSPICIOUS_MOVE = YES CLANG_WARN_UNREACHABLE_CODE = YES CLANG_WARN__DUPLICATE_METHOD_MATCH = YES CLASS_FILE_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses CLEAN_PRECOMPS = YES CLONE_HEADERS = NO CODESIGNING_FOLDER_PATH = /Users/maksimrv/www/dart/foo/build/ios/Release-iphoneos/Runner.app CODE_SIGNING_ALLOWED = YES CODE_SIGNING_REQUIRED = YES CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext CODE_SIGN_IDENTITY = iPhone Developer CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES COLOR_DIAGNOSTICS = NO COMBINE_HIDPI_IMAGES = NO COMPILER_INDEX_STORE_ENABLE = Default COMPOSITE_SDK_DIRS = /Users/maksimrv/www/dart/foo/build/ios/CompositeSDKs COMPRESS_PNG_FILES = YES CONFIGURATION = Release CONFIGURATION_BUILD_DIR = /Users/maksimrv/www/dart/foo/build/ios/Release-iphoneos CONFIGURATION_TEMP_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos CONTENTS_FOLDER_PATH = Runner.app COPYING_PRESERVES_HFS_DATA = NO COPY_HEADERS_RUN_UNIFDEF = NO COPY_PHASE_STRIP = NO COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator11.4 CP = /bin/cp CREATE_INFOPLIST_SECTION_IN_BINARY = NO CURRENT_ARCH = arm64 CURRENT_PROJECT_VERSION = 1 CURRENT_VARIANT = normal DEAD_CODE_STRIPPING = YES DEBUGGING_SYMBOLS = YES DEBUG_INFORMATION_FORMAT = dwarf-with-dsym DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0 DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions DEFINES_MODULE = NO DEPLOYMENT_LOCATION = NO DEPLOYMENT_POSTPROCESSING = NO DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min= DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 DERIVED_FILES_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources DERIVED_FILE_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources DERIVED_SOURCES_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr DEVELOPMENT_LANGUAGE = English DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation DO_HEADER_SCANNING_IN_JAM = NO DSTROOT = /tmp/Runner.dst DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain DWARF_DSYM_FILE_NAME = Runner.app.dSYM DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO DWARF_DSYM_FOLDER_PATH = /Users/maksimrv/www/dart/foo/build/ios/Release-iphoneos EFFECTIVE_PLATFORM_NAME = -iphoneos EMBEDDED_CONTENT_CONTAINS_SWIFT = NO EMBEDDED_PROFILE_NAME = embedded.mobileprovision EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO ENABLE_BITCODE = NO ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES ENABLE_HEADER_DEPENDENCIES = YES ENABLE_NS_ASSERTIONS = NO ENABLE_ON_DEMAND_RESOURCES = YES ENABLE_STRICT_OBJC_MSGSEND = YES ENABLE_TESTABILITY = NO ENTITLEMENTS_ALLOWED = YES ENTITLEMENTS_REQUIRED = YES EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj EXECUTABLES_FOLDER_PATH = Runner.app/Executables EXECUTABLE_FOLDER_PATH = Runner.app EXECUTABLE_NAME = Runner EXECUTABLE_PATH = Runner.app/Runner EXPANDED_CODE_SIGN_IDENTITY = EXPANDED_CODE_SIGN_IDENTITY_NAME = EXPANDED_PROVISIONING_PROFILE = FILE_LIST = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList FIXED_FILES_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles FLUTTER_APPLICATION_PATH = /Users/maksimrv/www/dart/foo FLUTTER_BUILD_DIR = build FLUTTER_BUILD_MODE = debug FLUTTER_BUILD_NAME = 1.0.0 FLUTTER_BUILD_NUMBER = 1 FLUTTER_FRAMEWORK_DIR = /Users/maksimrv/www/dart/flutter/bin/cache/artifacts/engine/ios FLUTTER_ROOT = /Users/maksimrv/www/dart/flutter FLUTTER_TARGET = /Users/maksimrv/www/dart/foo/lib/main.dart FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks FRAMEWORK_FLAG_PREFIX = -framework FRAMEWORK_SEARCH_PATHS = /Users/maksimrv/www/dart/foo/ios/Flutter FRAMEWORK_VERSION = A FULL_PRODUCT_NAME = Runner.app GCC3_VERSION = 3.3 GCC_C_LANGUAGE_STANDARD = gnu99 GCC_INLINES_ARE_PRIVATE_EXTERN = YES GCC_NO_COMMON_BLOCKS = YES GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++ GCC_SYMBOLS_PRIVATE_EXTERN = YES GCC_THUMB_SUPPORT = YES GCC_TREAT_WARNINGS_AS_ERRORS = NO GCC_VERSION = com.apple.compilers.llvm.clang.1_0 GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0 GCC_WARN_64_TO_32_BIT_CONVERSION = YES GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR GCC_WARN_UNDECLARED_SELECTOR = YES GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE GCC_WARN_UNUSED_FUNCTION = YES GCC_WARN_UNUSED_VARIABLE = YES GENERATE_MASTER_OBJECT_FILE = NO GENERATE_PKGINFO_FILE = YES GENERATE_PROFILING_CODE = NO GENERATE_TEXT_BASED_STUBS = NO GID = 20 GROUP = staff HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES HEADERMAP_INCLUDES_PROJECT_HEADERS = YES HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES HEADERMAP_USES_VFS = NO HIDE_BITCODE_SYMBOLS = YES HOME = /Users/maksimrv ICONV = /usr/bin/iconv INFOPLIST_EXPAND_BUILD_SETTINGS = YES INFOPLIST_FILE = Runner/Info.plist INFOPLIST_OUTPUT_FORMAT = binary INFOPLIST_PATH = Runner.app/Info.plist INFOPLIST_PREPROCESS = NO INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings INLINE_PRIVATE_FRAMEWORKS = NO INSTALLHDRS_COPY_PHASE = NO INSTALLHDRS_SCRIPT_PHASE = NO INSTALL_DIR = /tmp/Runner.dst/Applications INSTALL_GROUP = staff INSTALL_MODE_FLAG = u+w,go-w,a+rX INSTALL_OWNER = maksimrv INSTALL_PATH = /Applications INSTALL_ROOT = /tmp/Runner.dst IPHONEOS_DEPLOYMENT_TARGET = 8.0 JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8 JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub JAVA_ARCHIVE_CLASSES = YES JAVA_ARCHIVE_TYPE = JAR JAVA_COMPILER = /usr/bin/javac JAVA_FOLDER_PATH = Runner.app/Java JAVA_FRAMEWORK_RESOURCES_DIRS = Resources JAVA_JAR_FLAGS = cv JAVA_SOURCE_SUBDIR = . JAVA_USE_DEPENDENCIES = YES JAVA_ZIP_FLAGS = -urg JIKES_DEFAULT_FLAGS = +E +OLDCSO KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow KEEP_PRIVATE_EXTERNS = NO LD_DEPENDENCY_INFO_FILE = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat LD_GENERATE_MAP_FILE = NO LD_MAP_FILE_PATH = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt LD_NO_PIE = NO LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer LEX = lex LIBRARY_FLAG_NOSPACE = YES LIBRARY_FLAG_PREFIX = -l LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions LIBRARY_SEARCH_PATHS = /Users/maksimrv/www/dart/foo/ios/Flutter LINKER_DISPLAYS_MANGLED_NAMES = NO LINK_FILE_LIST_normal_arm64 = LINK_FILE_LIST_normal_armv7 = LINK_WITH_STANDARD_LIBRARIES = YES LOCALIZABLE_CONTENT_DIR = LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString LOCAL_ADMIN_APPS_DIR = /Applications/Utilities LOCAL_APPS_DIR = /Applications LOCAL_DEVELOPER_DIR = /Library/Developer LOCAL_LIBRARY_DIR = /Library LOCROOT = LOCSYMROOT = MACH_O_TYPE = mh_execute MAC_OS_X_PRODUCT_BUILD_VERSION = 17F77 MAC_OS_X_VERSION_ACTUAL = 101305 MAC_OS_X_VERSION_MAJOR = 101300 MAC_OS_X_VERSION_MINOR = 1305 METAL_LIBRARY_FILE_BASE = default METAL_LIBRARY_OUTPUT_DIR = /Users/maksimrv/www/dart/foo/build/ios/Release-iphoneos/Runner.app MODULE_CACHE_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex MTL_ENABLE_DEBUG_INFO = NO NATIVE_ARCH = armv7 NATIVE_ARCH_32_BIT = i386 NATIVE_ARCH_64_BIT = x86_64 NATIVE_ARCH_ACTUAL = x86_64 NO_COMMON = YES OBJECT_FILE_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects OBJECT_FILE_DIR_normal = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal OBJROOT = /Users/maksimrv/www/dart/foo/build/ios ONLY_ACTIVE_ARCH = NO OS = MACOS OSAC = /usr/bin/osacompile PACKAGE_TYPE = com.apple.package-type.wrapper.application PASCAL_STRINGS = YES PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist PFE_FILE_C_DIALECTS = objective-c PKGINFO_FILE_PATH = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo PKGINFO_PATH = Runner.app/PkgInfo PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform PLATFORM_DISPLAY_NAME = iOS PLATFORM_NAME = iphoneos PLATFORM_PREFERRED_ARCH = arm64 PLATFORM_PRODUCT_BUILD_VERSION = 15F79 PLIST_FILE_OUTPUT_FORMAT = binary PLUGINS_FOLDER_PATH = Runner.app/PlugIns PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES PRECOMP_DESTINATION_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders PRODUCT_BUNDLE_IDENTIFIER = com.example.foo PRODUCT_MODULE_NAME = Runner PRODUCT_NAME = Runner PRODUCT_SETTINGS_PATH = /Users/maksimrv/www/dart/foo/ios/Runner/Info.plist PRODUCT_TYPE = com.apple.product-type.application PROFILING_CODE = NO PROJECT = Runner PROJECT_DERIVED_FILE_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/DerivedSources PROJECT_DIR = /Users/maksimrv/www/dart/foo/ios PROJECT_FILE_PATH = /Users/maksimrv/www/dart/foo/ios/Runner.xcodeproj PROJECT_NAME = Runner PROJECT_TEMP_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build PROJECT_TEMP_ROOT = /Users/maksimrv/www/dart/foo/build/ios PROVISIONING_PROFILE_REQUIRED = YES PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES REMOVE_CVS_FROM_RESOURCES = YES REMOVE_GIT_FROM_RESOURCES = YES REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES REMOVE_HG_FROM_RESOURCES = YES REMOVE_SVN_FROM_RESOURCES = YES RESOURCE_RULES_REQUIRED = YES REZ_COLLECTOR_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources REZ_OBJECTS_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO SCRIPTS_FOLDER_PATH = Runner.app/Scripts SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk SDK_DIR_iphoneos11_4 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk SDK_NAME = iphoneos11.4 SDK_NAMES = iphoneos11.4 SDK_PRODUCT_BUILD_VERSION = 15F79 SDK_VERSION = 11.4 SDK_VERSION_ACTUAL = 110400 SDK_VERSION_MAJOR = 110000 SDK_VERSION_MINOR = 400 SED = /usr/bin/sed SEPARATE_STRIP = NO SEPARATE_SYMBOL_EDIT = NO SET_DIR_MODE_OWNER_GROUP = YES SET_FILE_MODE_OWNER_GROUP = NO SHALLOW_BUNDLE = YES SHARED_DERIVED_FILE_DIR = /Users/maksimrv/www/dart/foo/build/ios/Release-iphoneos/DerivedSources SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks SHARED_PRECOMPS_DIR = /Users/maksimrv/www/dart/foo/build/ios/SharedPrecompiledHeaders SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport SKIP_INSTALL = NO SOURCE_ROOT = /Users/maksimrv/www/dart/foo/ios SRCROOT = /Users/maksimrv/www/dart/foo/ios STRINGS_FILE_OUTPUT_ENCODING = binary STRIP_BITCODE_FROM_COPIED_FILES = YES STRIP_INSTALLED_PRODUCT = YES STRIP_STYLE = all STRIP_SWIFT_SYMBOLS = YES SUPPORTED_DEVICE_FAMILIES = 1,2 SUPPORTED_PLATFORMS = iphonesimulator iphoneos SUPPORTS_TEXT_BASED_API = NO SWIFT_PLATFORM_TARGET_PREFIX = ios SYMROOT = /Users/maksimrv/www/dart/foo/build/ios SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities SYSTEM_APPS_DIR = /Applications SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices SYSTEM_DEMOS_DIR = /Applications/Extras SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities SYSTEM_DOCUMENTATION_DIR = /Library/Documentation SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions SYSTEM_LIBRARY_DIR = /System/Library TAPI_VERIFY_MODE = ErrorsOnly TARGETED_DEVICE_FAMILY = 1,2 TARGETNAME = Runner TARGET_BUILD_DIR = /Users/maksimrv/www/dart/foo/build/ios/Release-iphoneos TARGET_NAME = Runner TARGET_TEMP_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_FILES_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_FILE_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_ROOT = /Users/maksimrv/www/dart/foo/build/ios TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO UID = 502 UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app UNSTRIPPED_PRODUCT = NO USER = maksimrv USER_APPS_DIR = /Users/maksimrv/Applications USER_LIBRARY_DIR = /Users/maksimrv/Library USE_DYNAMIC_NO_PIC = YES USE_HEADERMAP = YES USE_HEADER_SYMLINKS = NO VALIDATE_PRODUCT = YES VALID_ARCHS = arm64 armv7 armv7s VERBOSE_PBXCP = NO VERSIONING_SYSTEM = apple-generic VERSIONPLIST_PATH = Runner.app/version.plist VERSION_INFO_BUILDER = maksimrv VERSION_INFO_FILE = Runner_vers.c VERSION_INFO_STRING = &quot;@(#)PROGRAM:Runner PROJECT:Runner-1&quot; WRAPPER_EXTENSION = app WRAPPER_NAME = Runner.app WRAPPER_SUFFIX = .app WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode XCODE_PRODUCT_BUILD_VERSION = 9F2000 XCODE_VERSION_ACTUAL = 0941 XCODE_VERSION_MAJOR = 0900 XCODE_VERSION_MINOR = 0940 XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices YACC = yacc arch = arm64 variant = normal [ +16 ms] Building Runner.app for 539CC886-1F0F-477F-9C10-050010071AAE. [ +9 ms] script /dev/null /usr/bin/log stream --style syslog --predicate processImagePath CONTAINS &quot;539CC886-1F0F-477F-9C10-050010071AAE&quot; [ +36 ms] [DEVICE LOG] Filtering the log data using &quot;processImagePath CONTAINS &quot;539CC886-1F0F-477F-9C10-050010071AAE&quot;&quot; [ +5 ms] [DEVICE LOG] Timestamp (process)[PID] [ +153 ms] Skipping kernel compilation. Fingerprint match. [ +248 ms] Building bundle [ +4 ms] Writing asset files to build/flutter_assets [ +45 ms] Wrote build/flutter_assets [ +1 ms] /usr/bin/xcrun simctl get_app_container 539CC886-1F0F-477F-9C10-050010071AAE com.example.foo [ ] /usr/bin/killall Runner [ +149 ms] python -c import six [ +103 ms] [ios/] /usr/bin/xcodebuild -list [ +734 ms] Exit code 0 from: /usr/bin/xcodebuild -list [ ] Information about project &quot;Runner&quot;: Targets: Runner Build Configurations: Debug Release If no build configuration is specified and -scheme is not passed then &quot;Release&quot; is used. Schemes: Runner [ +2 ms] Trying to resolve native pub services. [ +1 ms] Looking for YAML at 'pubspec.yaml' [ ] No services specified in the manifest [ ] Found 0 service definition(s). [ +1 ms] Copying service frameworks to '/Users/maksimrv/www/dart/foo/ios/Frameworks'. [ ] Creating service definitions manifest at 'ios/ServiceDefinitions.json' [ +12 ms] Starting Xcode build... [ ] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/maksimrv/www/dart/foo/build/ios -sdk iphonesimulator -arch x86_64 [+4620 ms] Build settings from command line: ARCHS = x86_64 BUILD_DIR = /Users/maksimrv/www/dart/foo/build/ios SDKROOT = iphonesimulator11.4 VERBOSE_SCRIPT_LOGGING = YES === BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug === Check dependencies PhaseScriptExecution Run\ Script /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh cd /Users/maksimrv/www/dart/foo/ios export ACTION=build export AD_HOC_CODE_SIGNING_ALLOWED=YES export ALTERNATE_GROUP=staff export ALTERNATE_MODE=u+w,go-w,a+rX export ALTERNATE_OWNER=maksimrv export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO export ALWAYS_SEARCH_USER_PATHS=NO export ALWAYS_USE_SEPARATE_HEADERMAPS=NO export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer export APPLE_INTERNAL_DIR=/AppleInternal export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools export APPLICATION_EXTENSION_API_ONLY=NO export APPLY_RULES_IN_COPY_FILES=NO export ARCHS=x86_64 export ARCHS_STANDARD=&quot;i386 x86_64&quot; export ARCHS_STANDARD_32_64_BIT=&quot;i386 x86_64&quot; export ARCHS_STANDARD_32_BIT=i386 export ARCHS_STANDARD_64_BIT=x86_64 export ARCHS_STANDARD_INCLUDING_64_BIT=&quot;i386 x86_64&quot; export ARCHS_UNIVERSAL_IPHONE_OS=&quot;i386 x86_64&quot; export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon export AVAILABLE_PLATFORMS=&quot;appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator&quot; export BITCODE_GENERATION_MODE=marker export BUILD_ACTIVE_RESOURCES_ONLY=YES export BUILD_COMPONENTS=&quot;headers build&quot; export BUILD_DIR=/Users/maksimrv/www/dart/foo/build/ios export BUILD_ROOT=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Products export BUILD_STYLE= export BUILD_VARIANTS=normal export BUILT_PRODUCTS_DIR=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator export CACHE_ROOT=/var/folders/bj/7c8x11911jgg75k0ywfvb3sw0000gp/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode export CCHROOT=/var/folders/bj/7c8x11911jgg75k0ywfvb3sw0000gp/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode export CHMOD=/bin/chmod export CHOWN=/usr/sbin/chown export CLANG_ANALYZER_NONNULL=YES export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x export CLANG_CXX_LIBRARY=libc++ export CLANG_ENABLE_MODULES=YES export CLANG_ENABLE_OBJC_ARC=YES export CLANG_MODULES_BUILD_SESSION_FILE=/Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES export CLANG_WARN_BOOL_CONVERSION=YES export CLANG_WARN_COMMA=YES export CLANG_WARN_CONSTANT_CONVERSION=YES export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR export CLANG_WARN_EMPTY_BODY=YES export CLANG_WARN_ENUM_CONVERSION=YES export CLANG_WARN_INFINITE_RECURSION=YES export CLANG_WARN_INT_CONVERSION=YES export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES export CLANG_WARN_STRICT_PROTOTYPES=YES export CLANG_WARN_SUSPICIOUS_MOVE=YES export CLANG_WARN_UNREACHABLE_CODE=YES export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES export CLASS_FILE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses export CLEAN_PRECOMPS=YES export CLONE_HEADERS=NO export CODESIGNING_FOLDER_PATH=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app export CODE_SIGNING_ALLOWED=YES export CODE_SIGNING_REQUIRED=YES export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext export CODE_SIGN_IDENTITY=- export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES export COLOR_DIAGNOSTICS=NO export COMBINE_HIDPI_IMAGES=NO export COMMAND_MODE=legacy export COMPILER_INDEX_STORE_ENABLE=Default export COMPOSITE_SDK_DIRS=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/CompositeSDKs export COMPRESS_PNG_FILES=YES export CONFIGURATION=Debug export CONFIGURATION_BUILD_DIR=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator export CONFIGURATION_TEMP_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator export CONTENTS_FOLDER_PATH=Runner.app export COPYING_PRESERVES_HFS_DATA=NO export COPY_HEADERS_RUN_UNIFDEF=NO export COPY_PHASE_STRIP=NO export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk export CORRESPONDING_DEVICE_SDK_NAME=iphoneos11.4 export CP=/bin/cp export CREATE_INFOPLIST_SECTION_IN_BINARY=NO export CURRENT_ARCH=x86_64 export CURRENT_PROJECT_VERSION=1 export CURRENT_VARIANT=normal export DEAD_CODE_STRIPPING=YES export DEBUGGING_SYMBOLS=YES export DEBUG_INFORMATION_FORMAT=dwarf export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0 export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions export DEFINES_MODULE=NO export DEPLOYMENT_LOCATION=NO export DEPLOYMENT_POSTPROCESSING=NO export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min= export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_SUGGESTED_VALUES=&quot;8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4&quot; export DERIVED_FILES_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources export DERIVED_FILE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources export DERIVED_SOURCES_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr export DEVELOPMENT_LANGUAGE=English export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation export DO_HEADER_SCANNING_IN_JAM=NO export DSTROOT=/tmp/Runner.dst export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export DWARF_DSYM_FILE_NAME=Runner.app.dSYM export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO export DWARF_DSYM_FOLDER_PATH=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator export EFFECTIVE_PLATFORM_NAME=-iphonesimulator export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO export ENABLE_BITCODE=NO export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES export ENABLE_HEADER_DEPENDENCIES=YES export ENABLE_ON_DEMAND_RESOURCES=YES export ENABLE_STRICT_OBJC_MSGSEND=YES export ENABLE_TESTABILITY=YES export ENTITLEMENTS_REQUIRED=YES export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=&quot;.DS_Store .svn .git .hg CVS&quot; export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES=&quot;*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj&quot; export EXECUTABLES_FOLDER_PATH=Runner.app/Executables export EXECUTABLE_FOLDER_PATH=Runner.app export EXECUTABLE_NAME=Runner export EXECUTABLE_PATH=Runner.app/Runner export EXPANDED_CODE_SIGN_IDENTITY=- export EXPANDED_CODE_SIGN_IDENTITY_NAME=- export EXPANDED_PROVISIONING_PROFILE= export FILE_LIST=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList export FIXED_FILES_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles export FLUTTER_APPLICATION_PATH=/Users/maksimrv/www/dart/foo export FLUTTER_BUILD_DIR=build export FLUTTER_BUILD_MODE=debug export FLUTTER_BUILD_NAME=1.0.0 export FLUTTER_BUILD_NUMBER=1 export FLUTTER_FRAMEWORK_DIR=/Users/maksimrv/www/dart/flutter/bin/cache/artifacts/engine/ios export FLUTTER_ROOT=/Users/maksimrv/www/dart/flutter export FLUTTER_TARGET=/Users/maksimrv/www/dart/foo/lib/main.dart export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks export FRAMEWORK_FLAG_PREFIX=-framework export FRAMEWORK_SEARCH_PATHS=&quot;/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator /Users/maksimrv/www/dart/foo/ios/Flutter&quot; export FRAMEWORK_VERSION=A export FULL_PRODUCT_NAME=Runner.app export GCC3_VERSION=3.3 export GCC_C_LANGUAGE_STANDARD=gnu99 export GCC_DYNAMIC_NO_PIC=NO export GCC_INLINES_ARE_PRIVATE_EXTERN=YES export GCC_NO_COMMON_BLOCKS=YES export GCC_OBJC_LEGACY_DISPATCH=YES export GCC_OPTIMIZATION_LEVEL=0 export GCC_PFE_FILE_C_DIALECTS=&quot;c objective-c c++ objective-c++&quot; export GCC_PREPROCESSOR_DEFINITIONS=&quot;DEBUG=1 &quot; export GCC_SYMBOLS_PRIVATE_EXTERN=NO export GCC_TREAT_WARNINGS_AS_ERRORS=NO export GCC_VERSION=com.apple.compilers.llvm.clang.1_0 export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0 export GCC_WARN_64_TO_32_BIT_CONVERSION=YES export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR export GCC_WARN_UNDECLARED_SELECTOR=YES export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE export GCC_WARN_UNUSED_FUNCTION=YES export GCC_WARN_UNUSED_VARIABLE=YES export GENERATE_MASTER_OBJECT_FILE=NO export GENERATE_PKGINFO_FILE=YES export GENERATE_PROFILING_CODE=NO export GENERATE_TEXT_BASED_STUBS=NO export GID=20 export GROUP=staff export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES export HEADERMAP_USES_VFS=NO export HEADER_SEARCH_PATHS=&quot;/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/include &quot; export HIDE_BITCODE_SYMBOLS=YES export HOME=/Users/maksimrv export ICONV=/usr/bin/iconv export INFOPLIST_EXPAND_BUILD_SETTINGS=YES export INFOPLIST_FILE=Runner/Info.plist export INFOPLIST_OUTPUT_FORMAT=binary export INFOPLIST_PATH=Runner.app/Info.plist export INFOPLIST_PREPROCESS=NO export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings export INLINE_PRIVATE_FRAMEWORKS=NO export INSTALLHDRS_COPY_PHASE=NO export INSTALLHDRS_SCRIPT_PHASE=NO export INSTALL_DIR=/tmp/Runner.dst/Applications export INSTALL_GROUP=staff export INSTALL_MODE_FLAG=u+w,go-w,a+rX export INSTALL_OWNER=maksimrv export INSTALL_PATH=/Applications export INSTALL_ROOT=/tmp/Runner.dst export IPHONEOS_DEPLOYMENT_TARGET=8.0 export JAVAC_DEFAULT_FLAGS=&quot;-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8&quot; export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub export JAVA_ARCHIVE_CLASSES=YES export JAVA_ARCHIVE_TYPE=JAR export JAVA_COMPILER=/usr/bin/javac export JAVA_FOLDER_PATH=Runner.app/Java export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources export JAVA_JAR_FLAGS=cv export JAVA_SOURCE_SUBDIR=. export JAVA_USE_DEPENDENCIES=YES export JAVA_ZIP_FLAGS=-urg export JIKES_DEFAULT_FLAGS=&quot;+E +OLDCSO&quot; export KEEP_PRIVATE_EXTERNS=NO export LD_DEPENDENCY_INFO_FILE=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat export LD_GENERATE_MAP_FILE=NO export LD_MAP_FILE_PATH=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt export LD_NO_PIE=NO export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES export LD_RUNPATH_SEARCH_PATHS=&quot; @executable_path/Frameworks&quot; export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer export LEX=lex export LIBRARY_FLAG_NOSPACE=YES export LIBRARY_FLAG_PREFIX=-l export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions export LIBRARY_SEARCH_PATHS=&quot;/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator /Users/maksimrv/www/dart/foo/ios/Flutter&quot; export LINKER_DISPLAYS_MANGLED_NAMES=NO export LINK_FILE_LIST_normal_x86_64=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList export LINK_WITH_STANDARD_LIBRARIES=YES export LOCALIZABLE_CONTENT_DIR= export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj export LOCALIZED_STRING_MACRO_NAMES=&quot;NSLocalizedString CFLocalizedString&quot; export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities export LOCAL_APPS_DIR=/Applications export LOCAL_DEVELOPER_DIR=/Library/Developer export LOCAL_LIBRARY_DIR=/Library export LOCROOT= export LOCSYMROOT= export MACH_O_TYPE=mh_execute export MAC_OS_X_PRODUCT_BUILD_VERSION=17F77 export MAC_OS_X_VERSION_ACTUAL=101305 export MAC_OS_X_VERSION_MAJOR=101300 export MAC_OS_X_VERSION_MINOR=1305 export METAL_LIBRARY_FILE_BASE=default export METAL_LIBRARY_OUTPUT_DIR=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app export MODULE_CACHE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex export MTL_ENABLE_DEBUG_INFO=YES export NATIVE_ARCH=i386 export NATIVE_ARCH_32_BIT=i386 export NATIVE_ARCH_64_BIT=x86_64 export NATIVE_ARCH_ACTUAL=x86_64 export NO_COMMON=YES export OBJC_ABI_VERSION=2 export OBJECT_FILE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects export OBJECT_FILE_DIR_normal=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal export OBJROOT=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex export ONLY_ACTIVE_ARCH=YES export OS=MACOS export OSAC=/usr/bin/osacompile export PACKAGE_TYPE=com.apple.package-type.wrapper.application export PASCAL_STRINGS=YES export PATH=&quot;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin&quot; export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES=&quot;/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms&quot; export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist export PFE_FILE_C_DIALECTS=objective-c export PKGINFO_FILE_PATH=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo export PKGINFO_PATH=Runner.app/PkgInfo export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform export PLATFORM_DISPLAY_NAME=&quot;iOS Simulator&quot; export PLATFORM_NAME=iphonesimulator export PLATFORM_PREFERRED_ARCH=x86_64 export PLIST_FILE_OUTPUT_FORMAT=binary export PLUGINS_FOLDER_PATH=Runner.app/PlugIns export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES export PRECOMP_DESTINATION_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders export PRODUCT_BUNDLE_IDENTIFIER=com.example.foo export PRODUCT_MODULE_NAME=Runner export PRODUCT_NAME=Runner export PRODUCT_SETTINGS_PATH=/Users/maksimrv/www/dart/foo/ios/Runner/Info.plist export PRODUCT_TYPE=com.apple.product-type.application export PROFILING_CODE=NO export PROJECT=Runner export PROJECT_DERIVED_FILE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/DerivedSources export PROJECT_DIR=/Users/maksimrv/www/dart/foo/ios export PROJECT_FILE_PATH=/Users/maksimrv/www/dart/foo/ios/Runner.xcodeproj export PROJECT_NAME=Runner export PROJECT_TEMP_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build export PROJECT_TEMP_ROOT=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES export REMOVE_CVS_FROM_RESOURCES=YES export REMOVE_GIT_FROM_RESOURCES=YES export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES export REMOVE_HG_FROM_RESOURCES=YES export REMOVE_SVN_FROM_RESOURCES=YES export REZ_COLLECTOR_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources export REZ_OBJECTS_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects export REZ_SEARCH_PATHS=&quot;/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator &quot; export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO export SCRIPTS_FOLDER_PATH=Runner.app/Scripts export SCRIPT_INPUT_FILE_COUNT=0 export SCRIPT_OUTPUT_FILE_COUNT=0 export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk export SDK_DIR_iphonesimulator11_4=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk export SDK_NAME=iphonesimulator11.4 export SDK_NAMES=iphonesimulator11.4 export SDK_PRODUCT_BUILD_VERSION=15F79 export SDK_VERSION=11.4 export SDK_VERSION_ACTUAL=110400 export SDK_VERSION_MAJOR=110000 export SDK_VERSION_MINOR=400 export SED=/usr/bin/sed export SEPARATE_STRIP=NO export SEPARATE_SYMBOL_EDIT=NO export SET_DIR_MODE_OWNER_GROUP=YES export SET_FILE_MODE_OWNER_GROUP=NO export SHALLOW_BUNDLE=YES export SHARED_DERIVED_FILE_DIR=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/DerivedSources export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks export SHARED_PRECOMPS_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/PrecompiledHeaders export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport export SKIP_INSTALL=NO export SOURCE_ROOT=/Users/maksimrv/www/dart/foo/ios export SRCROOT=/Users/maksimrv/www/dart/foo/ios export STRINGS_FILE_OUTPUT_ENCODING=binary export STRIP_BITCODE_FROM_COPIED_FILES=NO export STRIP_INSTALLED_PRODUCT=YES export STRIP_STYLE=all export STRIP_SWIFT_SYMBOLS=YES export SUPPORTED_DEVICE_FAMILIES=1,2 export SUPPORTED_PLATFORMS=&quot;iphonesimulator iphoneos&quot; export SUPPORTS_TEXT_BASED_API=NO export SWIFT_PLATFORM_TARGET_PREFIX=ios export SYMROOT=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Products export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities export SYSTEM_APPS_DIR=/Applications export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices export SYSTEM_DEMOS_DIR=/Applications/Extras export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin export SYSTEM_DEVELOPER_DEMOS_DIR=&quot;/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples&quot; export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer export SYSTEM_DEVELOPER_DOC_DIR=&quot;/Applications/Xcode.app/Contents/Developer/ADC Reference Library&quot; export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR=&quot;/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools&quot; export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR=&quot;/Applications/Xcode.app/Contents/Developer/Applications/Java Tools&quot; export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR=&quot;/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools&quot; export SYSTEM_DEVELOPER_RELEASENOTES_DIR=&quot;/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes&quot; export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools export SYSTEM_DEVELOPER_TOOLS_DOC_DIR=&quot;/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools&quot; export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR=&quot;/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools&quot; export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions export SYSTEM_LIBRARY_DIR=/System/Library export TAPI_VERIFY_MODE=ErrorsOnly export TARGETED_DEVICE_FAMILY=1,2 export TARGETNAME=Runner export TARGET_BUILD_DIR=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator export TARGET_DEVICE_IDENTIFIER=&quot;dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder&quot; export TARGET_NAME=Runner export TARGET_TEMP_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_FILES_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_FILE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_ROOT=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO export UID=502 export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app export UNSTRIPPED_PRODUCT=NO export USER=maksimrv export USER_APPS_DIR=/Users/maksimrv/Applications export USER_LIBRARY_DIR=/Users/maksimrv/Library export USE_DYNAMIC_NO_PIC=YES export USE_HEADERMAP=YES export USE_HEADER_SYMLINKS=NO export VALIDATE_PRODUCT=NO export VALID_ARCHS=&quot;i386 x86_64&quot; export VERBOSE_PBXCP=NO export VERBOSE_SCRIPT_LOGGING=YES export VERSIONING_SYSTEM=apple-generic export VERSIONPLIST_PATH=Runner.app/version.plist export VERSION_INFO_BUILDER=maksimrv export VERSION_INFO_FILE=Runner_vers.c export VERSION_INFO_STRING=&quot;\&quot;@(#)PROGRAM:Runner PROJECT:Runner-1\&quot;&quot; export WRAPPER_EXTENSION=app export WRAPPER_NAME=Runner.app export WRAPPER_SUFFIX=.app export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode export XCODE_PRODUCT_BUILD_VERSION=9F2000 export XCODE_VERSION_ACTUAL=0941 export XCODE_VERSION_MAJOR=0900 export XCODE_VERSION_MINOR=0940 export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices export YACC=yacc export arch=x86_64 export variant=normal /bin/sh -c /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh ♦ mkdir -p -- /Users/maksimrv/www/dart/foo/ios/Flutter ♦ rm -rf -- /Users/maksimrv/www/dart/foo/ios/Flutter/Flutter.framework ♦ rm -rf -- /Users/maksimrv/www/dart/foo/ios/Flutter/App.framework ♦ cp -r -- /Users/maksimrv/www/dart/flutter/bin/cache/artifacts/engine/ios/Flutter.framework /Users/maksimrv/www/dart/foo/ios/Flutter ♦ find /Users/maksimrv/www/dart/foo/ios/Flutter/Flutter.framework -type f -exec chmod a-w {} ; ♦ mkdir -p -- /Users/maksimrv/www/dart/foo/ios/Flutter/App.framework ♦ eval ♦ cp -- /Users/maksimrv/www/dart/foo/ios/Flutter/AppFrameworkInfo.plist /Users/maksimrv/www/dart/foo/ios/Flutter/App.framework/Info.plist ♦ /Users/maksimrv/www/dart/flutter/bin/flutter --suppress-analytics --verbose build bundle --target=/Users/maksimrv/www/dart/foo/lib/main.dart --depfile=build/snapshot_blob.bin.d --asset-dir=/Users/maksimrv/www/dart/foo/ios/Flutter/flutter_assets [ +7 ms] [/Users/maksimrv/www/dart/flutter/] git rev-parse --abbrev-ref --symbolic @{u} [ +39 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ ] origin/dev [ ] [/Users/maksimrv/www/dart/flutter/] git rev-parse --abbrev-ref HEAD [ +8 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ ] dev [ ] [/Users/maksimrv/www/dart/flutter/] git ls-remote --get-url origin [ +7 ms] Exit code 0 from: git ls-remote --get-url origin [ ] https://github.com/flutter/flutter.git [ ] [/Users/maksimrv/www/dart/flutter/] git log -n 1 --pretty=format:%H [ +6 ms] Exit code 0 from: git log -n 1 --pretty=format:%H [ ] 3019ad976d333cceb903b3f53885cd9ae678a622 [ ] [/Users/maksimrv/www/dart/flutter/] git log -n 1 --pretty=format:%ar [ +6 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar [ ] 5 days ago [ ] [/Users/maksimrv/www/dart/flutter/] git describe --match v*.*.* --first-parent --long --tags [ +9 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags [ ] v0.5.4-0-g3019ad976 [ +507 ms] Skipping kernel compilation. Fingerprint match. [ +199 ms] Building bundle [ ] Writing asset files to /Users/maksimrv/www/dart/foo/ios/Flutter/flutter_assets [ +74 ms] Wrote /Users/maksimrv/www/dart/foo/ios/Flutter/flutter_assets [ +9 ms] &quot;flutter bundle&quot; took 654ms. Project /Users/maksimrv/www/dart/foo built and packaged successfully. CompileC /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o Runner/main.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/maksimrv/www/dart/foo/ios export LANG=en_US.US-ASCII export PATH=&quot;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin&quot; /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Index/DataStore -iquote /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/include -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator -F/Users/maksimrv/www/dart/foo/ios/Flutter -MMD -MT dependencies -MF /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.d --serialize-diagnostics /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.dia -c /Users/maksimrv/www/dart/foo/ios/Runner/main.m -o /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o CompileC /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o Runner/AppDelegate.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/maksimrv/www/dart/foo/ios export LANG=en_US.US-ASCII export PATH=&quot;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin&quot; /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Index/DataStore -iquote /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/include -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator -F/Users/maksimrv/www/dart/foo/ios/Flutter -MMD -MT dependencies -MF /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d --serialize-diagnostics /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.dia -c /Users/maksimrv/www/dart/foo/ios/Runner/AppDelegate.m -o /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o CompileC /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/maksimrv/www/dart/foo/ios export LANG=en_US.US-ASCII export PATH=&quot;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin&quot; /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Index/DataStore -iquote /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/include -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator -F/Users/maksimrv/www/dart/foo/ios/Flutter -MMD -MT dependencies -MF /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d --serialize-diagnostics /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia -c /Users/maksimrv/www/dart/foo/ios/Runner/GeneratedPluginRegistrant.m -o /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o Ld /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64 cd /Users/maksimrv/www/dart/foo/ios export IPHONEOS_DEPLOYMENT_TARGET=8.0 export PATH=&quot;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin&quot; /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -L/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator -L/Users/maksimrv/www/dart/foo/ios/Flutter -F/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator -F/Users/maksimrv/www/dart/foo/ios/Flutter -filelist /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=8.0 -dead_strip -Xlinker -object_path_lto -Xlinker /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent -framework Flutter -framework App -Xlinker -dependency_info -Xlinker /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat -o /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Runner CpResource Flutter/Generated.xcconfig /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Generated.xcconfig cd /Users/maksimrv/www/dart/foo/ios export PATH=&quot;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin&quot; builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/maksimrv/www/dart/foo/ios/Flutter/Generated.xcconfig /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app CpResource Flutter/flutter_assets /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/flutter_assets cd /Users/maksimrv/www/dart/foo/ios export PATH=&quot;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin&quot; builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/maksimrv/www/dart/foo/ios/Flutter/flutter_assets /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app PBXCp Flutter/App.framework /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework cd /Users/maksimrv/www/dart/foo/ios export PATH=&quot;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin&quot; builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/maksimrv/www/dart/foo/ios/Flutter/App.framework /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Frameworks PBXCp Flutter/Flutter.framework /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework cd /Users/maksimrv/www/dart/foo/ios export PATH=&quot;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin&quot; builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/maksimrv/www/dart/foo/ios/Flutter/Flutter.framework /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Frameworks CodeSign /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework cd /Users/maksimrv/www/dart/foo/ios export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate export PATH=&quot;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin&quot; Signing Identity: &quot;-&quot; /usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework CodeSign /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework cd /Users/maksimrv/www/dart/foo/ios export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate export PATH=&quot;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin&quot; Signing Identity: &quot;-&quot; /usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework PhaseScriptExecution Thin\ Binary /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh cd /Users/maksimrv/www/dart/foo/ios export ACTION=build export AD_HOC_CODE_SIGNING_ALLOWED=YES export ALTERNATE_GROUP=staff export ALTERNATE_MODE=u+w,go-w,a+rX export ALTERNATE_OWNER=maksimrv export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO export ALWAYS_SEARCH_USER_PATHS=NO export ALWAYS_USE_SEPARATE_HEADERMAPS=NO export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer export APPLE_INTERNAL_DIR=/AppleInternal export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools export APPLICATION_EXTENSION_API_ONLY=NO export APPLY_RULES_IN_COPY_FILES=NO export ARCHS=x86_64 export ARCHS_STANDARD=&quot;i386 x86_64&quot; export ARCHS_STANDARD_32_64_BIT=&quot;i386 x86_64&quot; export ARCHS_STANDARD_32_BIT=i386 export ARCHS_STANDARD_64_BIT=x86_64 export ARCHS_STANDARD_INCLUDING_64_BIT=&quot;i386 x86_64&quot; export ARCHS_UNIVERSAL_IPHONE_OS=&quot;i386 x86_64&quot; export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon export AVAILABLE_PLATFORMS=&quot;appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator&quot; export BITCODE_GENERATION_MODE=marker export BUILD_ACTIVE_RESOURCES_ONLY=YES export BUILD_COMPONENTS=&quot;headers build&quot; export BUILD_DIR=/Users/maksimrv/www/dart/foo/build/ios export BUILD_ROOT=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Products export BUILD_STYLE= export BUILD_VARIANTS=normal export BUILT_PRODUCTS_DIR=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator export CACHE_ROOT=/var/folders/bj/7c8x11911jgg75k0ywfvb3sw0000gp/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode export CCHROOT=/var/folders/bj/7c8x11911jgg75k0ywfvb3sw0000gp/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode export CHMOD=/bin/chmod export CHOWN=/usr/sbin/chown export CLANG_ANALYZER_NONNULL=YES export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x export CLANG_CXX_LIBRARY=libc++ export CLANG_ENABLE_MODULES=YES export CLANG_ENABLE_OBJC_ARC=YES export CLANG_MODULES_BUILD_SESSION_FILE=/Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES export CLANG_WARN_BOOL_CONVERSION=YES export CLANG_WARN_COMMA=YES export CLANG_WARN_CONSTANT_CONVERSION=YES export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR export CLANG_WARN_EMPTY_BODY=YES export CLANG_WARN_ENUM_CONVERSION=YES export CLANG_WARN_INFINITE_RECURSION=YES export CLANG_WARN_INT_CONVERSION=YES export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES export CLANG_WARN_STRICT_PROTOTYPES=YES export CLANG_WARN_SUSPICIOUS_MOVE=YES export CLANG_WARN_UNREACHABLE_CODE=YES export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES export CLASS_FILE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses export CLEAN_PRECOMPS=YES export CLONE_HEADERS=NO export CODESIGNING_FOLDER_PATH=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app export CODE_SIGNING_ALLOWED=YES export CODE_SIGNING_REQUIRED=YES export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext export CODE_SIGN_IDENTITY=- export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES export COLOR_DIAGNOSTICS=NO export COMBINE_HIDPI_IMAGES=NO export COMMAND_MODE=legacy export COMPILER_INDEX_STORE_ENABLE=Default export COMPOSITE_SDK_DIRS=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/CompositeSDKs export COMPRESS_PNG_FILES=YES export CONFIGURATION=Debug export CONFIGURATION_BUILD_DIR=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator export CONFIGURATION_TEMP_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator export CONTENTS_FOLDER_PATH=Runner.app export COPYING_PRESERVES_HFS_DATA=NO export COPY_HEADERS_RUN_UNIFDEF=NO export COPY_PHASE_STRIP=NO export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk export CORRESPONDING_DEVICE_SDK_NAME=iphoneos11.4 export CP=/bin/cp export CREATE_INFOPLIST_SECTION_IN_BINARY=NO export CURRENT_ARCH=x86_64 export CURRENT_PROJECT_VERSION=1 export CURRENT_VARIANT=normal export DEAD_CODE_STRIPPING=YES export DEBUGGING_SYMBOLS=YES export DEBUG_INFORMATION_FORMAT=dwarf export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0 export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions export DEFINES_MODULE=NO export DEPLOYMENT_LOCATION=NO export DEPLOYMENT_POSTPROCESSING=NO export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min= export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_SUGGESTED_VALUES=&quot;8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4&quot; export DERIVED_FILES_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources export DERIVED_FILE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources export DERIVED_SOURCES_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr export DEVELOPMENT_LANGUAGE=English export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation export DO_HEADER_SCANNING_IN_JAM=NO export DSTROOT=/tmp/Runner.dst export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export DWARF_DSYM_FILE_NAME=Runner.app.dSYM export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO export DWARF_DSYM_FOLDER_PATH=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator export EFFECTIVE_PLATFORM_NAME=-iphonesimulator export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO export ENABLE_BITCODE=NO export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES export ENABLE_HEADER_DEPENDENCIES=YES export ENABLE_ON_DEMAND_RESOURCES=YES export ENABLE_STRICT_OBJC_MSGSEND=YES export ENABLE_TESTABILITY=YES export ENTITLEMENTS_REQUIRED=YES export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=&quot;.DS_Store .svn .git .hg CVS&quot; export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES=&quot;*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj&quot; export EXECUTABLES_FOLDER_PATH=Runner.app/Executables export EXECUTABLE_FOLDER_PATH=Runner.app export EXECUTABLE_NAME=Runner export EXECUTABLE_PATH=Runner.app/Runner export EXPANDED_CODE_SIGN_IDENTITY=- export EXPANDED_CODE_SIGN_IDENTITY_NAME=- export EXPANDED_PROVISIONING_PROFILE= export FILE_LIST=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList export FIXED_FILES_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles export FLUTTER_APPLICATION_PATH=/Users/maksimrv/www/dart/foo export FLUTTER_BUILD_DIR=build export FLUTTER_BUILD_MODE=debug export FLUTTER_BUILD_NAME=1.0.0 export FLUTTER_BUILD_NUMBER=1 export FLUTTER_FRAMEWORK_DIR=/Users/maksimrv/www/dart/flutter/bin/cache/artifacts/engine/ios export FLUTTER_ROOT=/Users/maksimrv/www/dart/flutter export FLUTTER_TARGET=/Users/maksimrv/www/dart/foo/lib/main.dart export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks export FRAMEWORK_FLAG_PREFIX=-framework export FRAMEWORK_SEARCH_PATHS=&quot;/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator /Users/maksimrv/www/dart/foo/ios/Flutter&quot; export FRAMEWORK_VERSION=A export FULL_PRODUCT_NAME=Runner.app export GCC3_VERSION=3.3 export GCC_C_LANGUAGE_STANDARD=gnu99 export GCC_DYNAMIC_NO_PIC=NO export GCC_INLINES_ARE_PRIVATE_EXTERN=YES export GCC_NO_COMMON_BLOCKS=YES export GCC_OBJC_LEGACY_DISPATCH=YES export GCC_OPTIMIZATION_LEVEL=0 export GCC_PFE_FILE_C_DIALECTS=&quot;c objective-c c++ objective-c++&quot; export GCC_PREPROCESSOR_DEFINITIONS=&quot;DEBUG=1 &quot; export GCC_SYMBOLS_PRIVATE_EXTERN=NO export GCC_TREAT_WARNINGS_AS_ERRORS=NO export GCC_VERSION=com.apple.compilers.llvm.clang.1_0 export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0 export GCC_WARN_64_TO_32_BIT_CONVERSION=YES export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR export GCC_WARN_UNDECLARED_SELECTOR=YES export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE export GCC_WARN_UNUSED_FUNCTION=YES export GCC_WARN_UNUSED_VARIABLE=YES export GENERATE_MASTER_OBJECT_FILE=NO export GENERATE_PKGINFO_FILE=YES export GENERATE_PROFILING_CODE=NO export GENERATE_TEXT_BASED_STUBS=NO export GID=20 export GROUP=staff export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES export HEADERMAP_USES_VFS=NO export HEADER_SEARCH_PATHS=&quot;/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/include &quot; export HIDE_BITCODE_SYMBOLS=YES export HOME=/Users/maksimrv export ICONV=/usr/bin/iconv export INFOPLIST_EXPAND_BUILD_SETTINGS=YES export INFOPLIST_FILE=Runner/Info.plist export INFOPLIST_OUTPUT_FORMAT=binary export INFOPLIST_PATH=Runner.app/Info.plist export INFOPLIST_PREPROCESS=NO export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings export INLINE_PRIVATE_FRAMEWORKS=NO export INSTALLHDRS_COPY_PHASE=NO export INSTALLHDRS_SCRIPT_PHASE=NO export INSTALL_DIR=/tmp/Runner.dst/Applications export INSTALL_GROUP=staff export INSTALL_MODE_FLAG=u+w,go-w,a+rX export INSTALL_OWNER=maksimrv export INSTALL_PATH=/Applications export INSTALL_ROOT=/tmp/Runner.dst export IPHONEOS_DEPLOYMENT_TARGET=8.0 export JAVAC_DEFAULT_FLAGS=&quot;-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8&quot; export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub export JAVA_ARCHIVE_CLASSES=YES export JAVA_ARCHIVE_TYPE=JAR export JAVA_COMPILER=/usr/bin/javac export JAVA_FOLDER_PATH=Runner.app/Java export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources export JAVA_JAR_FLAGS=cv export JAVA_SOURCE_SUBDIR=. export JAVA_USE_DEPENDENCIES=YES export JAVA_ZIP_FLAGS=-urg export JIKES_DEFAULT_FLAGS=&quot;+E +OLDCSO&quot; export KEEP_PRIVATE_EXTERNS=NO export LD_DEPENDENCY_INFO_FILE=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat export LD_GENERATE_MAP_FILE=NO export LD_MAP_FILE_PATH=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt export LD_NO_PIE=NO export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES export LD_RUNPATH_SEARCH_PATHS=&quot; @executable_path/Frameworks&quot; export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer export LEX=lex export LIBRARY_FLAG_NOSPACE=YES export LIBRARY_FLAG_PREFIX=-l export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions export LIBRARY_SEARCH_PATHS=&quot;/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator /Users/maksimrv/www/dart/foo/ios/Flutter&quot; export LINKER_DISPLAYS_MANGLED_NAMES=NO export LINK_FILE_LIST_normal_x86_64=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList export LINK_WITH_STANDARD_LIBRARIES=YES export LOCALIZABLE_CONTENT_DIR= export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj export LOCALIZED_STRING_MACRO_NAMES=&quot;NSLocalizedString CFLocalizedString&quot; export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities export LOCAL_APPS_DIR=/Applications export LOCAL_DEVELOPER_DIR=/Library/Developer export LOCAL_LIBRARY_DIR=/Library export LOCROOT= export LOCSYMROOT= export MACH_O_TYPE=mh_execute export MAC_OS_X_PRODUCT_BUILD_VERSION=17F77 export MAC_OS_X_VERSION_ACTUAL=101305 export MAC_OS_X_VERSION_MAJOR=101300 export MAC_OS_X_VERSION_MINOR=1305 export METAL_LIBRARY_FILE_BASE=default export METAL_LIBRARY_OUTPUT_DIR=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app export MODULE_CACHE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex export MTL_ENABLE_DEBUG_INFO=YES export NATIVE_ARCH=i386 export NATIVE_ARCH_32_BIT=i386 export NATIVE_ARCH_64_BIT=x86_64 export NATIVE_ARCH_ACTUAL=x86_64 export NO_COMMON=YES export OBJC_ABI_VERSION=2 export OBJECT_FILE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects export OBJECT_FILE_DIR_normal=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal export OBJROOT=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex export ONLY_ACTIVE_ARCH=YES export OS=MACOS export OSAC=/usr/bin/osacompile export PACKAGE_TYPE=com.apple.package-type.wrapper.application export PASCAL_STRINGS=YES export PATH=&quot;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin&quot; export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES=&quot;/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms&quot; export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist export PFE_FILE_C_DIALECTS=objective-c export PKGINFO_FILE_PATH=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo export PKGINFO_PATH=Runner.app/PkgInfo export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform export PLATFORM_DISPLAY_NAME=&quot;iOS Simulator&quot; export PLATFORM_NAME=iphonesimulator export PLATFORM_PREFERRED_ARCH=x86_64 export PLIST_FILE_OUTPUT_FORMAT=binary export PLUGINS_FOLDER_PATH=Runner.app/PlugIns export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES export PRECOMP_DESTINATION_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders export PRODUCT_BUNDLE_IDENTIFIER=com.example.foo export PRODUCT_MODULE_NAME=Runner export PRODUCT_NAME=Runner export PRODUCT_SETTINGS_PATH=/Users/maksimrv/www/dart/foo/ios/Runner/Info.plist export PRODUCT_TYPE=com.apple.product-type.application export PROFILING_CODE=NO export PROJECT=Runner export PROJECT_DERIVED_FILE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/DerivedSources export PROJECT_DIR=/Users/maksimrv/www/dart/foo/ios export PROJECT_FILE_PATH=/Users/maksimrv/www/dart/foo/ios/Runner.xcodeproj export PROJECT_NAME=Runner export PROJECT_TEMP_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build export PROJECT_TEMP_ROOT=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES export REMOVE_CVS_FROM_RESOURCES=YES export REMOVE_GIT_FROM_RESOURCES=YES export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES export REMOVE_HG_FROM_RESOURCES=YES export REMOVE_SVN_FROM_RESOURCES=YES export REZ_COLLECTOR_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources export REZ_OBJECTS_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects export REZ_SEARCH_PATHS=&quot;/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator &quot; export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO export SCRIPTS_FOLDER_PATH=Runner.app/Scripts export SCRIPT_INPUT_FILE_COUNT=0 export SCRIPT_OUTPUT_FILE_COUNT=0 export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk export SDK_DIR_iphonesimulator11_4=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk export SDK_NAME=iphonesimulator11.4 export SDK_NAMES=iphonesimulator11.4 export SDK_PRODUCT_BUILD_VERSION=15F79 export SDK_VERSION=11.4 export SDK_VERSION_ACTUAL=110400 export SDK_VERSION_MAJOR=110000 export SDK_VERSION_MINOR=400 export SED=/usr/bin/sed export SEPARATE_STRIP=NO export SEPARATE_SYMBOL_EDIT=NO export SET_DIR_MODE_OWNER_GROUP=YES export SET_FILE_MODE_OWNER_GROUP=NO export SHALLOW_BUNDLE=YES export SHARED_DERIVED_FILE_DIR=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/DerivedSources export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks export SHARED_PRECOMPS_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/PrecompiledHeaders export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport export SKIP_INSTALL=NO export SOURCE_ROOT=/Users/maksimrv/www/dart/foo/ios export SRCROOT=/Users/maksimrv/www/dart/foo/ios export STRINGS_FILE_OUTPUT_ENCODING=binary export STRIP_BITCODE_FROM_COPIED_FILES=NO export STRIP_INSTALLED_PRODUCT=YES export STRIP_STYLE=all export STRIP_SWIFT_SYMBOLS=YES export SUPPORTED_DEVICE_FAMILIES=1,2 export SUPPORTED_PLATFORMS=&quot;iphonesimulator iphoneos&quot; export SUPPORTS_TEXT_BASED_API=NO export SWIFT_PLATFORM_TARGET_PREFIX=ios export SYMROOT=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Products export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities export SYSTEM_APPS_DIR=/Applications export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices export SYSTEM_DEMOS_DIR=/Applications/Extras export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin export SYSTEM_DEVELOPER_DEMOS_DIR=&quot;/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples&quot; export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer export SYSTEM_DEVELOPER_DOC_DIR=&quot;/Applications/Xcode.app/Contents/Developer/ADC Reference Library&quot; export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR=&quot;/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools&quot; export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR=&quot;/Applications/Xcode.app/Contents/Developer/Applications/Java Tools&quot; export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR=&quot;/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools&quot; export SYSTEM_DEVELOPER_RELEASENOTES_DIR=&quot;/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes&quot; export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools export SYSTEM_DEVELOPER_TOOLS_DOC_DIR=&quot;/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools&quot; export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR=&quot;/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools&quot; export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions export SYSTEM_LIBRARY_DIR=/System/Library export TAPI_VERIFY_MODE=ErrorsOnly export TARGETED_DEVICE_FAMILY=1,2 export TARGETNAME=Runner export TARGET_BUILD_DIR=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator export TARGET_DEVICE_IDENTIFIER=&quot;dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder&quot; export TARGET_NAME=Runner export TARGET_TEMP_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_FILES_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_FILE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_ROOT=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO export UID=502 export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app export UNSTRIPPED_PRODUCT=NO export USER=maksimrv export USER_APPS_DIR=/Users/maksimrv/Applications export USER_LIBRARY_DIR=/Users/maksimrv/Library export USE_DYNAMIC_NO_PIC=YES export USE_HEADERMAP=YES export USE_HEADER_SYMLINKS=NO export VALIDATE_PRODUCT=NO export VALID_ARCHS=&quot;i386 x86_64&quot; export VERBOSE_PBXCP=NO export VERBOSE_SCRIPT_LOGGING=YES export VERSIONING_SYSTEM=apple-generic export VERSIONPLIST_PATH=Runner.app/version.plist export VERSION_INFO_BUILDER=maksimrv export VERSION_INFO_FILE=Runner_vers.c export VERSION_INFO_STRING=&quot;\&quot;@(#)PROGRAM:Runner PROJECT:Runner-1\&quot;&quot; export WRAPPER_EXTENSION=app export WRAPPER_NAME=Runner.app export WRAPPER_SUFFIX=.app export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode export XCODE_PRODUCT_BUILD_VERSION=9F2000 export XCODE_VERSION_ACTUAL=0941 export XCODE_VERSION_MAJOR=0900 export XCODE_VERSION_MINOR=0940 export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices export YACC=yacc export arch=x86_64 export variant=normal /bin/sh -c /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh Touch /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app cd /Users/maksimrv/www/dart/foo/ios export PATH=&quot;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin&quot; /usr/bin/touch -c /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app CodeSign /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app cd /Users/maksimrv/www/dart/foo/ios export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate export PATH=&quot;/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin&quot; Signing Identity: &quot;-&quot; /usr/bin/codesign --force --sign - --entitlements /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent --timestamp=none /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app ** BUILD SUCCEEDED ** [ +10 ms] Xcode build done. [ ] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/maksimrv/www/dart/foo/build/ios -sdk iphonesimulator -arch x86_64 -showBuildSettings [ +837 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/maksimrv/www/dart/foo/build/ios -sdk iphonesimulator -arch x86_64 -showBuildSettings [ ] Build settings from command line: ARCHS = x86_64 BUILD_DIR = /Users/maksimrv/www/dart/foo/build/ios SDKROOT = iphonesimulator11.4 VERBOSE_SCRIPT_LOGGING = YES Build settings for action build and target Runner: ACTION = build AD_HOC_CODE_SIGNING_ALLOWED = YES ALTERNATE_GROUP = staff ALTERNATE_MODE = u+w,go-w,a+rX ALTERNATE_OWNER = maksimrv ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO ALWAYS_SEARCH_USER_PATHS = NO ALWAYS_USE_SEPARATE_HEADERMAPS = NO APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer APPLE_INTERNAL_DIR = /AppleInternal APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools APPLICATION_EXTENSION_API_ONLY = NO APPLY_RULES_IN_COPY_FILES = NO ARCHS = x86_64 ARCHS_STANDARD = i386 x86_64 ARCHS_STANDARD_32_64_BIT = i386 x86_64 ARCHS_STANDARD_32_BIT = i386 ARCHS_STANDARD_64_BIT = x86_64 ARCHS_STANDARD_INCLUDING_64_BIT = i386 x86_64 ARCHS_UNIVERSAL_IPHONE_OS = i386 x86_64 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator BITCODE_GENERATION_MODE = marker BUILD_ACTIVE_RESOURCES_ONLY = NO BUILD_COMPONENTS = headers build BUILD_DIR = /Users/maksimrv/www/dart/foo/build/ios BUILD_ROOT = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Products BUILD_STYLE = BUILD_VARIANTS = normal BUILT_PRODUCTS_DIR = /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator CACHE_ROOT = /var/folders/bj/7c8x11911jgg75k0ywfvb3sw0000gp/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode CCHROOT = /var/folders/bj/7c8x11911jgg75k0ywfvb3sw0000gp/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode CHMOD = /bin/chmod CHOWN = /usr/sbin/chown CLANG_ANALYZER_NONNULL = YES CLANG_CXX_LANGUAGE_STANDARD = gnu++0x CLANG_CXX_LIBRARY = libc++ CLANG_ENABLE_MODULES = YES CLANG_ENABLE_OBJC_ARC = YES CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES CLANG_WARN_BOOL_CONVERSION = YES CLANG_WARN_COMMA = YES CLANG_WARN_CONSTANT_CONVERSION = YES CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR CLANG_WARN_EMPTY_BODY = YES CLANG_WARN_ENUM_CONVERSION = YES CLANG_WARN_INFINITE_RECURSION = YES CLANG_WARN_INT_CONVERSION = YES CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES CLANG_WARN_OBJC_LITERAL_CONVERSION = YES CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR CLANG_WARN_RANGE_LOOP_ANALYSIS = YES CLANG_WARN_STRICT_PROTOTYPES = YES CLANG_WARN_SUSPICIOUS_MOVE = YES CLANG_WARN_UNREACHABLE_CODE = YES CLANG_WARN__DUPLICATE_METHOD_MATCH = YES CLASS_FILE_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses CLEAN_PRECOMPS = YES CLONE_HEADERS = NO CODESIGNING_FOLDER_PATH = /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app CODE_SIGNING_ALLOWED = YES CODE_SIGNING_REQUIRED = YES CODE_SIGN_CONTEXT_CLASS = XCiPhoneSimulatorCodeSignContext CODE_SIGN_IDENTITY = - CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES COLOR_DIAGNOSTICS = NO COMBINE_HIDPI_IMAGES = NO COMPILER_INDEX_STORE_ENABLE = Default COMPOSITE_SDK_DIRS = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/CompositeSDKs COMPRESS_PNG_FILES = YES CONFIGURATION = Debug CONFIGURATION_BUILD_DIR = /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator CONFIGURATION_TEMP_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator CONTENTS_FOLDER_PATH = Runner.app COPYING_PRESERVES_HFS_DATA = NO COPY_HEADERS_RUN_UNIFDEF = NO COPY_PHASE_STRIP = NO COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES CORRESPONDING_DEVICE_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos CORRESPONDING_DEVICE_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk CORRESPONDING_DEVICE_SDK_NAME = iphoneos11.4 CP = /bin/cp CREATE_INFOPLIST_SECTION_IN_BINARY = NO CURRENT_ARCH = x86_64 CURRENT_PROJECT_VERSION = 1 CURRENT_VARIANT = normal DEAD_CODE_STRIPPING = YES DEBUGGING_SYMBOLS = YES DEBUG_INFORMATION_FORMAT = dwarf DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0 DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions DEFINES_MODULE = NO DEPLOYMENT_LOCATION = NO DEPLOYMENT_POSTPROCESSING = NO DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_CLANG_FLAG_NAME = mios-simulator-version-min DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -mios-simulator-version-min= DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 DERIVED_FILES_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources DERIVED_FILE_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources DERIVED_SOURCES_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr DEVELOPMENT_LANGUAGE = English DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation DO_HEADER_SCANNING_IN_JAM = NO DSTROOT = /tmp/Runner.dst DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain DWARF_DSYM_FILE_NAME = Runner.app.dSYM DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO DWARF_DSYM_FOLDER_PATH = /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator EFFECTIVE_PLATFORM_NAME = -iphonesimulator EMBEDDED_CONTENT_CONTAINS_SWIFT = NO EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO ENABLE_BITCODE = NO ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES ENABLE_HEADER_DEPENDENCIES = YES ENABLE_ON_DEMAND_RESOURCES = YES ENABLE_STRICT_OBJC_MSGSEND = YES ENABLE_TESTABILITY = YES ENTITLEMENTS_REQUIRED = YES EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj EXECUTABLES_FOLDER_PATH = Runner.app/Executables EXECUTABLE_FOLDER_PATH = Runner.app EXECUTABLE_NAME = Runner EXECUTABLE_PATH = Runner.app/Runner EXPANDED_CODE_SIGN_IDENTITY = EXPANDED_CODE_SIGN_IDENTITY_NAME = EXPANDED_PROVISIONING_PROFILE = FILE_LIST = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList FIXED_FILES_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles FLUTTER_APPLICATION_PATH = /Users/maksimrv/www/dart/foo FLUTTER_BUILD_DIR = build FLUTTER_BUILD_MODE = debug FLUTTER_BUILD_NAME = 1.0.0 FLUTTER_BUILD_NUMBER = 1 FLUTTER_FRAMEWORK_DIR = /Users/maksimrv/www/dart/flutter/bin/cache/artifacts/engine/ios FLUTTER_ROOT = /Users/maksimrv/www/dart/flutter FLUTTER_TARGET = /Users/maksimrv/www/dart/foo/lib/main.dart FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks FRAMEWORK_FLAG_PREFIX = -framework FRAMEWORK_SEARCH_PATHS = /Users/maksimrv/www/dart/foo/ios/Flutter FRAMEWORK_VERSION = A FULL_PRODUCT_NAME = Runner.app GCC3_VERSION = 3.3 GCC_C_LANGUAGE_STANDARD = gnu99 GCC_DYNAMIC_NO_PIC = NO GCC_INLINES_ARE_PRIVATE_EXTERN = YES GCC_NO_COMMON_BLOCKS = YES GCC_OBJC_LEGACY_DISPATCH = YES GCC_OPTIMIZATION_LEVEL = 0 GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++ GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1 GCC_SYMBOLS_PRIVATE_EXTERN = NO GCC_TREAT_WARNINGS_AS_ERRORS = NO GCC_VERSION = com.apple.compilers.llvm.clang.1_0 GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0 GCC_WARN_64_TO_32_BIT_CONVERSION = YES GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR GCC_WARN_UNDECLARED_SELECTOR = YES GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE GCC_WARN_UNUSED_FUNCTION = YES GCC_WARN_UNUSED_VARIABLE = YES GENERATE_MASTER_OBJECT_FILE = NO GENERATE_PKGINFO_FILE = YES GENERATE_PROFILING_CODE = NO GENERATE_TEXT_BASED_STUBS = NO GID = 20 GROUP = staff HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES HEADERMAP_INCLUDES_PROJECT_HEADERS = YES HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES HEADERMAP_USES_VFS = NO HIDE_BITCODE_SYMBOLS = YES HOME = /Users/maksimrv ICONV = /usr/bin/iconv INFOPLIST_EXPAND_BUILD_SETTINGS = YES INFOPLIST_FILE = Runner/Info.plist INFOPLIST_OUTPUT_FORMAT = binary INFOPLIST_PATH = Runner.app/Info.plist INFOPLIST_PREPROCESS = NO INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings INLINE_PRIVATE_FRAMEWORKS = NO INSTALLHDRS_COPY_PHASE = NO INSTALLHDRS_SCRIPT_PHASE = NO INSTALL_DIR = /tmp/Runner.dst/Applications INSTALL_GROUP = staff INSTALL_MODE_FLAG = u+w,go-w,a+rX INSTALL_OWNER = maksimrv INSTALL_PATH = /Applications INSTALL_ROOT = /tmp/Runner.dst IPHONEOS_DEPLOYMENT_TARGET = 8.0 JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8 JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub JAVA_ARCHIVE_CLASSES = YES JAVA_ARCHIVE_TYPE = JAR JAVA_COMPILER = /usr/bin/javac JAVA_FOLDER_PATH = Runner.app/Java JAVA_FRAMEWORK_RESOURCES_DIRS = Resources JAVA_JAR_FLAGS = cv JAVA_SOURCE_SUBDIR = . JAVA_USE_DEPENDENCIES = YES JAVA_ZIP_FLAGS = -urg JIKES_DEFAULT_FLAGS = +E +OLDCSO KEEP_PRIVATE_EXTERNS = NO LD_DEPENDENCY_INFO_FILE = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat LD_GENERATE_MAP_FILE = NO LD_MAP_FILE_PATH = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt LD_NO_PIE = NO LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer LEX = lex LIBRARY_FLAG_NOSPACE = YES LIBRARY_FLAG_PREFIX = -l LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions LIBRARY_SEARCH_PATHS = /Users/maksimrv/www/dart/foo/ios/Flutter LINKER_DISPLAYS_MANGLED_NAMES = NO LINK_FILE_LIST_normal_x86_64 = LINK_WITH_STANDARD_LIBRARIES = YES LOCALIZABLE_CONTENT_DIR = LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString LOCAL_ADMIN_APPS_DIR = /Applications/Utilities LOCAL_APPS_DIR = /Applications LOCAL_DEVELOPER_DIR = /Library/Developer LOCAL_LIBRARY_DIR = /Library LOCROOT = LOCSYMROOT = MACH_O_TYPE = mh_execute MAC_OS_X_PRODUCT_BUILD_VERSION = 17F77 MAC_OS_X_VERSION_ACTUAL = 101305 MAC_OS_X_VERSION_MAJOR = 101300 MAC_OS_X_VERSION_MINOR = 1305 METAL_LIBRARY_FILE_BASE = default METAL_LIBRARY_OUTPUT_DIR = /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app MODULE_CACHE_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex MTL_ENABLE_DEBUG_INFO = YES NATIVE_ARCH = i386 NATIVE_ARCH_32_BIT = i386 NATIVE_ARCH_64_BIT = x86_64 NATIVE_ARCH_ACTUAL = x86_64 NO_COMMON = YES OBJC_ABI_VERSION = 2 OBJECT_FILE_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects OBJECT_FILE_DIR_normal = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal OBJROOT = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex ONLY_ACTIVE_ARCH = YES OS = MACOS OSAC = /usr/bin/osacompile PACKAGE_TYPE = com.apple.package-type.wrapper.application PASCAL_STRINGS = YES PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist PFE_FILE_C_DIALECTS = objective-c PKGINFO_FILE_PATH = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo PKGINFO_PATH = Runner.app/PkgInfo PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform PLATFORM_DISPLAY_NAME = iOS Simulator PLATFORM_NAME = iphonesimulator PLATFORM_PREFERRED_ARCH = x86_64 PLIST_FILE_OUTPUT_FORMAT = binary PLUGINS_FOLDER_PATH = Runner.app/PlugIns PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES PRECOMP_DESTINATION_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders PRODUCT_BUNDLE_IDENTIFIER = com.example.foo PRODUCT_MODULE_NAME = Runner PRODUCT_NAME = Runner PRODUCT_SETTINGS_PATH = /Users/maksimrv/www/dart/foo/ios/Runner/Info.plist PRODUCT_TYPE = com.apple.product-type.application PROFILING_CODE = NO PROJECT = Runner PROJECT_DERIVED_FILE_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/DerivedSources PROJECT_DIR = /Users/maksimrv/www/dart/foo/ios PROJECT_FILE_PATH = /Users/maksimrv/www/dart/foo/ios/Runner.xcodeproj PROJECT_NAME = Runner PROJECT_TEMP_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build PROJECT_TEMP_ROOT = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES REMOVE_CVS_FROM_RESOURCES = YES REMOVE_GIT_FROM_RESOURCES = YES REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES REMOVE_HG_FROM_RESOURCES = YES REMOVE_SVN_FROM_RESOURCES = YES REZ_COLLECTOR_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources REZ_OBJECTS_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO SCRIPTS_FOLDER_PATH = Runner.app/Scripts SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk SDK_DIR_iphonesimulator11_4 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk SDK_NAME = iphonesimulator11.4 SDK_NAMES = iphonesimulator11.4 SDK_PRODUCT_BUILD_VERSION = 15F79 SDK_VERSION = 11.4 SDK_VERSION_ACTUAL = 110400 SDK_VERSION_MAJOR = 110000 SDK_VERSION_MINOR = 400 SED = /usr/bin/sed SEPARATE_STRIP = NO SEPARATE_SYMBOL_EDIT = NO SET_DIR_MODE_OWNER_GROUP = YES SET_FILE_MODE_OWNER_GROUP = NO SHALLOW_BUNDLE = YES SHARED_DERIVED_FILE_DIR = /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/DerivedSources SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks SHARED_PRECOMPS_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/PrecompiledHeaders SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport SKIP_INSTALL = NO SOURCE_ROOT = /Users/maksimrv/www/dart/foo/ios SRCROOT = /Users/maksimrv/www/dart/foo/ios STRINGS_FILE_OUTPUT_ENCODING = binary STRIP_BITCODE_FROM_COPIED_FILES = NO STRIP_INSTALLED_PRODUCT = YES STRIP_STYLE = all STRIP_SWIFT_SYMBOLS = YES SUPPORTED_DEVICE_FAMILIES = 1,2 SUPPORTED_PLATFORMS = iphonesimulator iphoneos SUPPORTS_TEXT_BASED_API = NO SWIFT_PLATFORM_TARGET_PREFIX = ios SYMROOT = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Products SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities SYSTEM_APPS_DIR = /Applications SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices SYSTEM_DEMOS_DIR = /Applications/Extras SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities SYSTEM_DOCUMENTATION_DIR = /Library/Documentation SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions SYSTEM_LIBRARY_DIR = /System/Library TAPI_VERIFY_MODE = ErrorsOnly TARGETED_DEVICE_FAMILY = 1,2 TARGETNAME = Runner TARGET_BUILD_DIR = /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator TARGET_NAME = Runner TARGET_TEMP_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build TEMP_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build TEMP_FILES_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build TEMP_FILE_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build TEMP_ROOT = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO UID = 502 UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app UNSTRIPPED_PRODUCT = NO USER = maksimrv USER_APPS_DIR = /Users/maksimrv/Applications USER_LIBRARY_DIR = /Users/maksimrv/Library USE_DYNAMIC_NO_PIC = YES USE_HEADERMAP = YES USE_HEADER_SYMLINKS = NO VALIDATE_PRODUCT = NO VALID_ARCHS = i386 x86_64 VERBOSE_PBXCP = NO VERBOSE_SCRIPT_LOGGING = YES VERSIONING_SYSTEM = apple-generic VERSIONPLIST_PATH = Runner.app/version.plist VERSION_INFO_BUILDER = maksimrv VERSION_INFO_FILE = Runner_vers.c VERSION_INFO_STRING = &quot;@(#)PROGRAM:Runner PROJECT:Runner-1&quot; WRAPPER_EXTENSION = app WRAPPER_NAME = Runner.app WRAPPER_SUFFIX = .app WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode XCODE_PRODUCT_BUILD_VERSION = 9F2000 XCODE_VERSION_ACTUAL = 0941 XCODE_VERSION_MAJOR = 0900 XCODE_VERSION_MINOR = 0940 XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices YACC = yacc arch = x86_64 variant = normal [ +255 ms] /usr/bin/xcrun simctl install 539CC886-1F0F-477F-9C10-050010071AAE /Users/maksimrv/www/dart/foo/build/ios/iphonesimulator/Runner.app [ +689 ms] /usr/bin/xcrun simctl launch 539CC886-1F0F-477F-9C10-050010071AAE com.example.foo --enable-dart-profiling --enable-checked-mode --observatory-port=8100 [ +252 ms] com.example.foo: 61409 [ ] Waiting for observatory port to be available... [ +144 ms] [DEVICE LOG] 2018-06-17 01:39:14.001194+0300 localhost Runner[61409]: (Runner) Created Activity ID: 0x180f71, Description: Loading Preferences From System CFPrefsD For Search List [ +1 ms] [DEVICE LOG] 2018-06-17 01:39:14.001194+0300 localhost Runner[61409]: (Runner) Created Activity ID: 0x180f70, Description: Loading Preferences From System CFPrefsD For Search List [ +6 ms] [DEVICE LOG] 2018-06-17 01:39:14.010323+0300 localhost Runner[61409]: (Runner) Created Activity ID: 0x180f72, Description: Loading Preferences From System CFPrefsD For Search List [ +4 ms] [DEVICE LOG] 2018-06-17 01:39:14.015245+0300 localhost Runner[61409]: (libAccessibility.dylib) [com.apple.Accessibility:AccessibilitySupport] Retrieving resting unlock: 0 [ +225 ms] [DEVICE LOG] 2018-06-17 01:39:14.241074+0300 localhost Runner[61409]: (UIKit) You've implemented -[&lt;UIApplicationDelegate&gt; application:performFetchWithCompletionHandler:], but you still need to add &quot;fetch&quot; to the list of your supported UIBackgroundModes in your Info.plist. [ ] [DEVICE LOG] 2018-06-17 01:39:14.241292+0300 localhost Runner[61409]: (UIKit) You've implemented -[&lt;UIApplicationDelegate&gt; application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add &quot;remote-notification&quot; to the list of your supported UIBackgroundModes in your Info.plist. [ +36 ms] [DEVICE LOG] 2018-06-17 01:39:14.278134+0300 localhost Runner[61409]: (Flutter) flutter: Observatory listening on http://127.0.0.1:8100/ [ +4 ms] Observatory URL on device: http://127.0.0.1:8100/ [ +6 ms] Connecting to service protocol: http://127.0.0.1:8100/ [ +169 ms] Successfully connected to service protocol: http://127.0.0.1:8100/ [ +4 ms] getVM: {} [ +11 ms] getIsolate: {isolateId: isolates/885245854} [ +2 ms] _flutter.listViews: {isolateId: isolates/885245854} [ +36 ms] DevFS: Creating new filesystem on the device (null) [ ] _createDevFS: {fsName: foo} [ +31 ms] DevFS: Created new filesystem on the device (file:///Users/maksimrv/Library/Developer/CoreSimulator/Devices/539CC886-1F0F-477F-9C10-050010071AAE/data/Containers/Data/Application/1DF24AE9-9883-4234-8044-607B5D3EE5D9/tmp/fooXYDuRX/foo/) [ +1 ms] Updating assets [ +183 ms] Syncing files to device iPhone X... [ +10 ms] DevFS: Starting sync from LocalDirectory: '/Users/maksimrv/www/dart/foo' [ ] Scanning project files [ +4 ms] Scanning package files [ +113 ms] Scanning asset files [ ] Scanning for deleted files [ +13 ms] Compiling dart to kernel with 416 updated files [ +2 ms] /Users/maksimrv/www/dart/flutter/bin/cache/dart-sdk/bin/dart /Users/maksimrv/www/dart/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/maksimrv/www/dart/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --strong --target=flutter --output-dill build/app.dill --packages /Users/maksimrv/www/dart/foo/.packages --filesystem-scheme org-dartlang-root [+3466 ms] Updating files [ +589 ms] DevFS: Sync finished [ ] Synced 13.7MB. [ +5 ms] _flutter.listViews: {isolateId: isolates/885245854} [ +1 ms] Connected to _flutterView/0x7ffe4e405e48. [ ] 🔥 To hot reload changes while running, press &quot;r&quot;. To hot restart (and rebuild state), press &quot;R&quot;. [ ] An Observatory debugger and profiler on iPhone X is available at: http://127.0.0.1:8100/ [ ] For a more detailed help message, press &quot;h&quot;. To quit, press &quot;q&quot;. [+2479 ms] Initializing hot reload... [ +3 ms] Refreshing active FlutterViews before reloading. [ ] _flutter.listViews: {isolateId: isolates/885245854} [ +401 ms] Syncing files to device iPhone X... [ ] DevFS: Starting sync from LocalDirectory: '/Users/maksimrv/www/dart/foo' [ ] Scanning project files [ +1 ms] Scanning package files [ +62 ms] Scanning asset files [ ] Scanning for deleted files [ +4 ms] Compiling dart to kernel with 1 updated files [ +16 ms] compiler message: lib/main.dart:71:23: Error: A value of type 'dart.core::String' can't be assigned to a variable of type '#lib1::Widget'. [ ] compiler message: Try changing the type of the left hand side, or casting the right hand side to '#lib1::Widget'. [ ] compiler message: title: widget.title, [ ] compiler message: ^ [ +2 ms] Updating files [ +5 ms] DevFS: Sync finished [ ] Synced 0.0MB. [ +1 ms] _flutter.setAssetBundlePath: {isolateId: isolates/885245854, viewId: _flutterView/0x7ffe4e405e48, assetDirectory: /Users/maksimrv/Library/Developer/CoreSimulator/Devices/539CC886-1F0F-477F-9C10-050010071AAE/data/Containers/Data/Application/1DF24AE9-9883-4234-8044-607B5D3EE5D9/tmp/fooXYDuRX/foo/build/flutter_assets} [ +4 ms] _reloadSources: {pause: false, rootLibUri: /Users/maksimrv/Library/Developer/CoreSimulator/Devices/539CC886-1F0F-477F-9C10-050010071AAE/data/Containers/Data/Application/1DF24AE9-9883-4234-8044-607B5D3EE5D9/tmp/fooXYDuRX/foo/lib/main.dart.dill, packagesUri: /Users/maksimrv/Library/Developer/CoreSimulator/Devices/539CC886-1F0F-477F-9C10-050010071AAE/data/Containers/Data/Application/1DF24AE9-9883-4234-8044-607B5D3EE5D9/tmp/fooXYDuRX/foo/.packages, isolateId: isolates/885245854} [ +48 ms] reloaded 1 of 391 libraries [ ] Sending reload events to iPhone X [ ] Sending reload event to &quot;main.dart$main-885245854&quot; [ ] getIsolate: {isolateId: isolates/885245854} [ +11 ms] _flutter.listViews: {isolateId: isolates/885245854} [ +1 ms] Evicting dirty assets [ +1 ms] ext.flutter.evict: {value: AssetManifest.json, isolateId: isolates/885245854} [ +6 ms] ext.flutter.evict: {value: FontManifest.json, isolateId: isolates/885245854} [ +3 ms] ext.flutter.evict: {value: LICENSE, isolateId: isolates/885245854} [ +1 ms] Reassembling application [ ] ext.flutter.reassemble: {isolateId: isolates/885245854} [ +26 ms] [DEVICE LOG] 2018-06-17 01:39:22.027940+0300 localhost Runner[61409]: (Flutter) flutter: ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════════════════════════ [ +4 ms] flutter: ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════════════════════════ [ +1 ms] [DEVICE LOG] 2018-06-17 01:39:22.034240+0300 localhost Runner[61409]: (Flutter) flutter: The following _CompileTimeError was thrown building MyHomePage(dirty, state: [ ] flutter: The following _CompileTimeError was thrown building MyHomePage(dirty, state: [ ] [DEVICE LOG] 2018-06-17 01:39:22.034342+0300 localhost Runner[61409]: (Flutter) flutter: _MyHomePageState#50de5): [ ] flutter: _MyHomePageState#50de5): [ ] [DEVICE LOG] 2018-06-17 01:39:22.034426+0300 localhost Runner[61409]: (Flutter) flutter: 'file:///Users/maksimrv/www/dart/foo/lib/main.dart': error: line 71 pos 23: lib/main.dart:71:23: [ ] flutter: 'file:///Users/maksimrv/www/dart/foo/lib/main.dart': error: line 71 pos 23: lib/main.dart:71:23: [ ] [DEVICE LOG] 2018-06-17 01:39:22.034515+0300 localhost Runner[61409]: (Flutter) flutter: Error: A value of type 'dart.core::String' can't be assigned to a variable of type '#lib1::Widget'. [ ] flutter: Error: A value of type 'dart.core::String' can't be assigned to a variable of type '#lib1::Widget'. [ ] [DEVICE LOG] 2018-06-17 01:39:22.034608+0300 localhost Runner[61409]: (Flutter) flutter: Try changing the type of the left hand side, or casting the right hand side to '#lib1::Widget'. [ ] [DEVICE LOG] 2018-06-17 01:39:22.034695+0300 localhost Runner[61409]: (Flutter) flutter: title: widget.title, [ ] flutter: Try changing the type of the left hand side, or casting the right hand side to '#lib1::Widget'. [ ] flutter: title: widget.title, [ ] [DEVICE LOG] 2018-06-17 01:39:22.034778+0300 localhost Runner[61409]: (Flutter) flutter: ^ [ ] flutter: ^ [ ] [DEVICE LOG] 2018-06-17 01:39:22.034853+0300 localhost Runner[61409]: (Flutter) flutter: title: widget.title, [ ] [DEVICE LOG] 2018-06-17 01:39:22.034924+0300 localhost Runner[61409]: (Flutter) flutter: ^ [ ] flutter: title: widget.title, [ ] flutter: ^ [ ] [DEVICE LOG] 2018-06-17 01:39:22.036543+0300 localhost Runner[61409]: (Flutter) flutter: [ ] flutter: [ ] [DEVICE LOG] 2018-06-17 01:39:22.036795+0300 localhost Runner[61409]: (Flutter) flutter: When the exception was thrown, this was the stack: [ ] flutter: When the exception was thrown, this was the stack: [ +4 ms] [DEVICE LOG] 2018-06-17 01:39:22.041164+0300 localhost Runner[61409]: (Flutter) flutter: #0 StatefulElement.build (package:flutter/src/widgets/framework.dart:3730:27) [ ] flutter: #0 StatefulElement.build (package:flutter/src/widgets/framework.dart:3730:27) [ ] [DEVICE LOG] 2018-06-17 01:39:22.041297+0300 localhost Runner[61409]: (Flutter) flutter: #1 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3642:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.041412+0300 localhost Runner[61409]: (Flutter) flutter: #2 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #1 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3642:15) [ ] flutter: #2 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.041544+0300 localhost Runner[61409]: (Flutter) flutter: #3 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.041662+0300 localhost Runner[61409]: (Flutter) flutter: #4 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #3 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] flutter: #4 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.041788+0300 localhost Runner[61409]: (Flutter) flutter: #5 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] [DEVICE LOG] 2018-06-17 01:39:22.041909+0300 localhost Runner[61409]: (Flutter) flutter: #6 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #5 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] flutter: #6 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.042075+0300 localhost Runner[61409]: (Flutter) flutter: #7 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.042192+0300 localhost Runner[61409]: (Flutter) flutter: #8 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #7 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #8 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.042316+0300 localhost Runner[61409]: (Flutter) flutter: #9 StatelessElement.update (package:flutter/src/widgets/framework.dart:3702:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.042446+0300 localhost Runner[61409]: (Flutter) flutter: #10 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #9 StatelessElement.update (package:flutter/src/widgets/framework.dart:3702:5) [ ] flutter: #10 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.042574+0300 localhost Runner[61409]: (Flutter) flutter: #11 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] flutter: #11 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] [DEVICE LOG] 2018-06-17 01:39:22.042685+0300 localhost Runner[61409]: (Flutter) flutter: #12 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #12 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.042853+0300 localhost Runner[61409]: (Flutter) flutter: #13 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] flutter: #13 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] [DEVICE LOG] 2018-06-17 01:39:22.042980+0300 localhost Runner[61409]: (Flutter) flutter: #14 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #14 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.043111+0300 localhost Runner[61409]: (Flutter) flutter: #15 RenderObjectElement.updateChildren (package:flutter/src/widgets/framework.dart:4379:32) [ ] flutter: #15 RenderObjectElement.updateChildren (package:flutter/src/widgets/framework.dart:4379:32) [ ] [DEVICE LOG] 2018-06-17 01:39:22.043249+0300 localhost Runner[61409]: (Flutter) flutter: #16 MultiChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4769:17) [ ] flutter: #16 MultiChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4769:17) [ ] [DEVICE LOG] 2018-06-17 01:39:22.043387+0300 localhost Runner[61409]: (Flutter) flutter: #17 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #17 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.043507+0300 localhost Runner[61409]: (Flutter) flutter: #18 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #18 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.043680+0300 localhost Runner[61409]: (Flutter) flutter: #19 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #19 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.043822+0300 localhost Runner[61409]: (Flutter) flutter: #20 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.044028+0300 localhost Runner[61409]: (Flutter) flutter: #21 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #20 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] flutter: #21 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.044208+0300 localhost Runner[61409]: (Flutter) flutter: #22 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] [DEVICE LOG] 2018-06-17 01:39:22.044367+0300 localhost Runner[61409]: (Flutter) flutter: #23 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #22 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] flutter: #23 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.044665+0300 localhost Runner[61409]: (Flutter) flutter: #24 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.044849+0300 localhost Runner[61409]: (Flutter) flutter: #25 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #24 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #25 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.044988+0300 localhost Runner[61409]: (Flutter) flutter: #26 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.045203+0300 localhost Runner[61409]: (Flutter) flutter: #27 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #26 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] flutter: #27 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.045477+0300 localhost Runner[61409]: (Flutter) flutter: #28 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] [DEVICE LOG] 2018-06-17 01:39:22.045733+0300 localhost Runner[61409]: (Flutter) flutter: #29 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #28 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] flutter: #29 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.045875+0300 localhost Runner[61409]: (Flutter) flutter: #30 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.045998+0300 localhost Runner[61409]: (Flutter) flutter: #31 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #30 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #31 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.046230+0300 localhost Runner[61409]: (Flutter) flutter: #32 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] flutter: #32 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.046442+0300 localhost Runner[61409]: (Flutter) flutter: #33 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.046635+0300 localhost Runner[61409]: (Flutter) flutter: #34 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] flutter: #33 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #34 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] [DEVICE LOG] 2018-06-17 01:39:22.046935+0300 localhost Runner[61409]: (Flutter) flutter: #35 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #35 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.047068+0300 localhost Runner[61409]: (Flutter) flutter: #36 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #36 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.047320+0300 localhost Runner[61409]: (Flutter) flutter: #37 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #37 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.047499+0300 localhost Runner[61409]: (Flutter) flutter: #38 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] flutter: #38 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.047659+0300 localhost Runner[61409]: (Flutter) flutter: #39 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #39 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.047886+0300 localhost Runner[61409]: (Flutter) flutter: #40 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #40 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.048049+0300 localhost Runner[61409]: (Flutter) flutter: #41 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.048233+0300 localhost Runner[61409]: (Flutter) flutter: #42 StatelessElement.update (package:flutter/src/widgets/framework.dart:3702:5) [ ] flutter: #41 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #42 StatelessElement.update (package:flutter/src/widgets/framework.dart:3702:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.048385+0300 localhost Runner[61409]: (Flutter) flutter: #43 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.048566+0300 localhost Runner[61409]: (Flutter) flutter: #44 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #43 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #44 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.048815+0300 localhost Runner[61409]: (Flutter) flutter: #45 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #45 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.048986+0300 localhost Runner[61409]: (Flutter) flutter: #46 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] flutter: #46 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.049286+0300 localhost Runner[61409]: (Flutter) flutter: #47 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #47 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.049448+0300 localhost Runner[61409]: (Flutter) flutter: #48 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] flutter: #48 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] [DEVICE LOG] 2018-06-17 01:39:22.049644+0300 localhost Runner[61409]: (Flutter) flutter: #49 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.049830+0300 localhost Runner[61409]: (Flutter) flutter: #50 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #49 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #50 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.050017+0300 localhost Runner[61409]: (Flutter) flutter: #51 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.050237+0300 localhost Runner[61409]: (Flutter) flutter: #52 ProxyElement.update (package:flutter/src/widgets/framework.dart:3909:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.050442+0300 localhost Runner[61409]: (Flutter) flutter: #53 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #51 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #52 ProxyElement.update (package:flutter/src/widgets/framework.dart:3909:5) [ ] flutter: #53 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.050642+0300 localhost Runner[61409]: (Flutter) flutter: #54 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] flutter: #54 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] [DEVICE LOG] 2018-06-17 01:39:22.050885+0300 localhost Runner[61409]: (Flutter) flutter: #55 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.051011+0300 localhost Runner[61409]: (Flutter) flutter: #56 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #55 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #56 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.051282+0300 localhost Runner[61409]: (Flutter) flutter: #57 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #57 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.051425+0300 localhost Runner[61409]: (Flutter) flutter: #58 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] flutter: #58 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.051581+0300 localhost Runner[61409]: (Flutter) flutter: #59 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #59 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.051789+0300 localhost Runner[61409]: (Flutter) flutter: #60 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.051973+0300 localhost Runner[61409]: (Flutter) flutter: #61 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #60 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #61 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.052154+0300 localhost Runner[61409]: (Flutter) flutter: #62 StatelessElement.update (package:flutter/src/widgets/framework.dart:3702:5) [ ] flutter: #62 StatelessElement.update (package:flutter/src/widgets/framework.dart:3702:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.052322+0300 localhost Runner[61409]: (Flutter) flutter: #63 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #63 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.052516+0300 localhost Runner[61409]: (Flutter) flutter: #64 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] [DEVICE LOG] 2018-06-17 01:39:22.052673+0300 localhost Runner[61409]: (Flutter) flutter: #65 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #64 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] flutter: #65 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.052863+0300 localhost Runner[61409]: (Flutter) flutter: #66 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #66 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.053052+0300 localhost Runner[61409]: (Flutter) flutter: #67 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #67 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.053233+0300 localhost Runner[61409]: (Flutter) flutter: #68 ProxyElement.update (package:flutter/src/widgets/framework.dart:3909:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.053438+0300 localhost Runner[61409]: (Flutter) flutter: #69 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #68 ProxyElement.update (package:flutter/src/widgets/framework.dart:3909:5) [ ] flutter: #69 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.053778+0300 localhost Runner[61409]: (Flutter) flutter: #70 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.053955+0300 localhost Runner[61409]: (Flutter) flutter: #71 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.054150+0300 localhost Runner[61409]: (Flutter) flutter: #72 BuildOwner.buildScope (package:flutter/src/widgets/framework.dart:2242:33) [ ] flutter: #70 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #71 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #72 BuildOwner.buildScope (package:flutter/src/widgets/framework.dart:2242:33) [ ] [DEVICE LOG] 2018-06-17 01:39:22.054330+0300 localhost Runner[61409]: (Flutter) flutter: #73 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding&amp;PaintingBinding&amp;RendererBinding&amp;WidgetsBinding.drawFrame (package:flutter/src/widgets/binding.dart:626:20) [ ] flutter: #73 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding&amp;PaintingBinding&amp;RendererBinding&amp;WidgetsBinding.drawFrame (package:flutter/src/widgets/binding.dart:626:20) [ ] [DEVICE LOG] 2018-06-17 01:39:22.054457+0300 localhost Runner[61409]: (Flutter) flutter: #74 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding&amp;PaintingBinding&amp;RendererBinding._handlePersistentFrameCallback (package:flutter/src/rendering/binding.dart:208:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.054804+0300 localhost Runner[61409]: (Flutter) flutter: #75 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding._invokeFrameCallback (package:flutter/src/scheduler/binding.dart:990:15) [ ] flutter: #74 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding&amp;PaintingBinding&amp;RendererBinding._handlePersistentFrameCallback (package:flutter/src/rendering/binding.dart:208:5) [ ] flutter: #75 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding._invokeFrameCallback (package:flutter/src/scheduler/binding.dart:990:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.054979+0300 localhost Runner[61409]: (Flutter) flutter: #76 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding.handleDrawFrame (package:flutter/src/scheduler/binding.dart:930:9) [ ] [DEVICE LOG] 2018-06-17 01:39:22.056017+0300 localhost Runner[61409]: (Flutter) flutter: #77 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding.scheduleWarmUpFrame.&lt;anonymous closure&gt; (package:flutter/src/scheduler/binding.dart:751:7) [ ] [DEVICE LOG] 2018-06-17 01:39:22.056141+0300 localhost Runner[61409]: (Flutter) flutter: #79 _Timer._runTimers (dart:isolate/runtime/libtimer_impl.dart:382:19) [ ] [DEVICE LOG] 2018-06-17 01:39:22.056284+0300 localhost Runner[61409]: (Flutter) flutter: #80 _Timer._handleMessage (dart:isolate/runtime/libtimer_impl.dart:416:5) [ ] flutter: #76 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding.handleDrawFrame (package:flutter/src/scheduler/binding.dart:930:9) [ ] flutter: #77 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding.scheduleWarmUpFrame.&lt;anonymous closure&gt; (package:flutter/src/scheduler/binding.dart:751:7) [ ] flutter: #79 _Timer._runTimers (dart:isolate/runtime/libtimer_impl.dart:382:19) [ ] flutter: #80 _Timer._handleMessage (dart:isolate/runtime/libtimer_impl.dart:416:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.056423+0300 localhost Runner[61409]: (Flutter) flutter: #81 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:165:12) [ ] [DEVICE LOG] 2018-06-17 01:39:22.056561+0300 localhost Runner[61409]: (Flutter) flutter: (elided one frame from package dart:async) [ ] [DEVICE LOG] 2018-06-17 01:39:22.056811+0300 localhost Runner[61409]: (Flutter) flutter: ════════════════════════════════════════════════════════════════════════════════════════════════════ [ ] flutter: #81 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:165:12) [ ] flutter: (elided one frame from package dart:async) [ ] flutter: ════════════════════════════════════════════════════════════════════════════════════════════════════ [ +38 ms] ext.ui.window.scheduleFrame: {isolateId: isolates/885245854} [ +3 ms] Hot reload performed in 672ms. [ ] Reloaded 1 of 391 libraries in 679ms. [+12414 ms] Performing hot reload... [ ] Refreshing active FlutterViews before reloading. [ ] _flutter.listViews: {isolateId: isolates/885245854} [ +288 ms] Syncing files to device iPhone X... [ ] DevFS: Starting sync from LocalDirectory: '/Users/maksimrv/www/dart/foo' [ ] Scanning project files [ ] Scanning package files [ +52 ms] Scanning asset files [ ] Scanning for deleted files [ +4 ms] Compiling dart to kernel with 1 updated files [ +9 ms] Updating files [ +5 ms] DevFS: Sync finished [ ] Synced 0.0MB. [ ] _reloadSources: {pause: false, rootLibUri: /Users/maksimrv/Library/Developer/CoreSimulator/Devices/539CC886-1F0F-477F-9C10-050010071AAE/data/Containers/Data/Application/1DF24AE9-9883-4234-8044-607B5D3EE5D9/tmp/fooXYDuRX/foo/lib/main.dart.dill, packagesUri: /Users/maksimrv/Library/Developer/CoreSimulator/Devices/539CC886-1F0F-477F-9C10-050010071AAE/data/Containers/Data/Application/1DF24AE9-9883-4234-8044-607B5D3EE5D9/tmp/fooXYDuRX/foo/.packages, isolateId: isolates/885245854} [ +45 ms] reloaded 1 of 391 libraries [ ] Sending reload events to iPhone X [ ] Sending reload event to &quot;main.dart$main-885245854&quot; [ ] getIsolate: {isolateId: isolates/885245854} [ +11 ms] _flutter.listViews: {isolateId: isolates/885245854} [ +1 ms] Evicting dirty assets [ ] Reassembling application [ ] ext.flutter.reassemble: {isolateId: isolates/885245854} [ +42 ms] ext.ui.window.scheduleFrame: {isolateId: isolates/885245854} [ +1 ms] Hot reload performed in 462ms. [ ] Reloaded 1 of 391 libraries in 465ms. [+3319 ms] Performing hot restart... [ +2 ms] Refreshing active FlutterViews before restarting. [ ] _flutter.listViews: {isolateId: isolates/885245854} [ +284 ms] Syncing files to device iPhone X... [ ] DevFS: Starting sync from LocalDirectory: '/Users/maksimrv/www/dart/foo' [ ] Scanning project files [ ] Scanning package files [ +47 ms] Scanning asset files [ ] Scanning for deleted files [ +4 ms] Compiling dart to kernel with 0 updated files [ ] DevFS: Sync finished [ ] Synced 0.0MB. [ ] getIsolate: {isolateId: isolates/885245854} [ +16 ms] _flutter.runInView: {viewId: _flutterView/0x7ffe4e405e48, mainScript: /Users/maksimrv/Library/Developer/CoreSimulator/Devices/539CC886-1F0F-477F-9C10-050010071AAE/data/Containers/Data/Application/1DF24AE9-9883-4234-8044-607B5D3EE5D9/tmp/fooXYDuRX/foo/lib/main.dart.dill, packagesFile: /Users/maksimrv/Library/Developer/CoreSimulator/Devices/539CC886-1F0F-477F-9C10-050010071AAE/data/Containers/Data/Application/1DF24AE9-9883-4234-8044-607B5D3EE5D9/tmp/fooXYDuRX/foo/.packages, assetDirectory: /Users/maksimrv/Library/Developer/CoreSimulator/Devices/539CC886-1F0F-477F-9C10-050010071AAE/data/Containers/Data/Application/1DF24AE9-9883-4234-8044-607B5D3EE5D9/tmp/fooXYDuRX/foo/build/flutter_assets} [ +75 ms] {streamId: Isolate, event: {type: Event, kind: IsolateStart, isolate: {type: @Isolate, fixedId: true, id: isolates/222259029, name: main.dart:main(), number: 222259029}, timestamp: 1529188778709}} [ ] getIsolate: {isolateId: isolates/222259029} [ +2 ms] Service protocol connection closed. [ +1 ms] Lost connection to device. [ +3 ms] DevFS: Deleting filesystem on the device (file:///Users/maksimrv/Library/Developer/CoreSimulator/Devices/539CC886-1F0F-477F-9C10-050010071AAE/data/Containers/Data/Application/1DF24AE9-9883-4234-8044-607B5D3EE5D9/tmp/fooXYDuRX/foo/) [ ] _deleteDevFS: {fsName: foo} [ +254 ms] TimeoutException after 0:00:00.250000: Future not completed [ +2 ms] &quot;flutter run&quot; took 35,965ms. "><pre class="notranslate"><code class="notranslate">[ +35 ms] [/Users/maksimrv/www/dart/flutter/] git rev-parse --abbrev-ref --symbolic @{u} [ +35 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ ] origin/dev [ ] [/Users/maksimrv/www/dart/flutter/] git rev-parse --abbrev-ref HEAD [ +7 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ ] dev [ ] [/Users/maksimrv/www/dart/flutter/] git ls-remote --get-url origin [ +7 ms] Exit code 0 from: git ls-remote --get-url origin [ ] https://github.com/flutter/flutter.git [ ] [/Users/maksimrv/www/dart/flutter/] git log -n 1 --pretty=format:%H [ +7 ms] Exit code 0 from: git log -n 1 --pretty=format:%H [ ] 3019ad976d333cceb903b3f53885cd9ae678a622 [ ] [/Users/maksimrv/www/dart/flutter/] git log -n 1 --pretty=format:%ar [ +7 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar [ ] 5 days ago [ ] [/Users/maksimrv/www/dart/flutter/] git describe --match v*.*.* --first-parent --long --tags [ +10 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags [ ] v0.5.4-0-g3019ad976 [ +626 ms] /usr/local/opt/android-sdk/platform-tools/adb devices -l [ +7 ms] Exit code 0 from: /usr/local/opt/android-sdk/platform-tools/adb devices -l [ ] List of devices attached [ +4 ms] idevice_id -h [ +151 ms] /usr/bin/xcrun simctl list --json devices [ +890 ms] Launching lib/main.dart on iPhone X in debug mode... [ +2 ms] /usr/bin/defaults read /Users/maksimrv/www/dart/foo/ios/Runner/Info CFBundleIdentifier [ +68 ms] Exit code 0 from: /usr/bin/defaults read /Users/maksimrv/www/dart/foo/ios/Runner/Info CFBundleIdentifier [ ] $(PRODUCT_BUNDLE_IDENTIFIER) [ ] [ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/maksimrv/www/dart/foo/ios/Runner.xcodeproj -target Runner -showBuildSettings [ +923 ms] Exit code 0 from: /usr/bin/xcodebuild -project /Users/maksimrv/www/dart/foo/ios/Runner.xcodeproj -target Runner -showBuildSettings [ ] Build settings for action build and target Runner: ACTION = build AD_HOC_CODE_SIGNING_ALLOWED = NO ALTERNATE_GROUP = staff ALTERNATE_MODE = u+w,go-w,a+rX ALTERNATE_OWNER = maksimrv ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO ALWAYS_SEARCH_USER_PATHS = NO ALWAYS_USE_SEPARATE_HEADERMAPS = NO APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer APPLE_INTERNAL_DIR = /AppleInternal APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools APPLICATION_EXTENSION_API_ONLY = NO APPLY_RULES_IN_COPY_FILES = NO ARCHS = armv7 arm64 ARCHS_STANDARD = armv7 arm64 ARCHS_STANDARD_32_64_BIT = armv7 arm64 ARCHS_STANDARD_32_BIT = armv7 ARCHS_STANDARD_64_BIT = arm64 ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64 ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator BITCODE_GENERATION_MODE = marker BUILD_ACTIVE_RESOURCES_ONLY = NO BUILD_COMPONENTS = headers build BUILD_DIR = /Users/maksimrv/www/dart/foo/build/ios BUILD_ROOT = /Users/maksimrv/www/dart/foo/build/ios BUILD_STYLE = BUILD_VARIANTS = normal BUILT_PRODUCTS_DIR = /Users/maksimrv/www/dart/foo/build/ios/Release-iphoneos CACHE_ROOT = /var/folders/bj/7c8x11911jgg75k0ywfvb3sw0000gp/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode CCHROOT = /var/folders/bj/7c8x11911jgg75k0ywfvb3sw0000gp/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode CHMOD = /bin/chmod CHOWN = /usr/sbin/chown CLANG_ANALYZER_NONNULL = YES CLANG_CXX_LANGUAGE_STANDARD = gnu++0x CLANG_CXX_LIBRARY = libc++ CLANG_ENABLE_MODULES = YES CLANG_ENABLE_OBJC_ARC = YES CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES CLANG_WARN_BOOL_CONVERSION = YES CLANG_WARN_COMMA = YES CLANG_WARN_CONSTANT_CONVERSION = YES CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR CLANG_WARN_EMPTY_BODY = YES CLANG_WARN_ENUM_CONVERSION = YES CLANG_WARN_INFINITE_RECURSION = YES CLANG_WARN_INT_CONVERSION = YES CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES CLANG_WARN_OBJC_LITERAL_CONVERSION = YES CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR CLANG_WARN_RANGE_LOOP_ANALYSIS = YES CLANG_WARN_STRICT_PROTOTYPES = YES CLANG_WARN_SUSPICIOUS_MOVE = YES CLANG_WARN_UNREACHABLE_CODE = YES CLANG_WARN__DUPLICATE_METHOD_MATCH = YES CLASS_FILE_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses CLEAN_PRECOMPS = YES CLONE_HEADERS = NO CODESIGNING_FOLDER_PATH = /Users/maksimrv/www/dart/foo/build/ios/Release-iphoneos/Runner.app CODE_SIGNING_ALLOWED = YES CODE_SIGNING_REQUIRED = YES CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext CODE_SIGN_IDENTITY = iPhone Developer CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES COLOR_DIAGNOSTICS = NO COMBINE_HIDPI_IMAGES = NO COMPILER_INDEX_STORE_ENABLE = Default COMPOSITE_SDK_DIRS = /Users/maksimrv/www/dart/foo/build/ios/CompositeSDKs COMPRESS_PNG_FILES = YES CONFIGURATION = Release CONFIGURATION_BUILD_DIR = /Users/maksimrv/www/dart/foo/build/ios/Release-iphoneos CONFIGURATION_TEMP_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos CONTENTS_FOLDER_PATH = Runner.app COPYING_PRESERVES_HFS_DATA = NO COPY_HEADERS_RUN_UNIFDEF = NO COPY_PHASE_STRIP = NO COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator11.4 CP = /bin/cp CREATE_INFOPLIST_SECTION_IN_BINARY = NO CURRENT_ARCH = arm64 CURRENT_PROJECT_VERSION = 1 CURRENT_VARIANT = normal DEAD_CODE_STRIPPING = YES DEBUGGING_SYMBOLS = YES DEBUG_INFORMATION_FORMAT = dwarf-with-dsym DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0 DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions DEFINES_MODULE = NO DEPLOYMENT_LOCATION = NO DEPLOYMENT_POSTPROCESSING = NO DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min= DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 DERIVED_FILES_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources DERIVED_FILE_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources DERIVED_SOURCES_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr DEVELOPMENT_LANGUAGE = English DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation DO_HEADER_SCANNING_IN_JAM = NO DSTROOT = /tmp/Runner.dst DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain DWARF_DSYM_FILE_NAME = Runner.app.dSYM DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO DWARF_DSYM_FOLDER_PATH = /Users/maksimrv/www/dart/foo/build/ios/Release-iphoneos EFFECTIVE_PLATFORM_NAME = -iphoneos EMBEDDED_CONTENT_CONTAINS_SWIFT = NO EMBEDDED_PROFILE_NAME = embedded.mobileprovision EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO ENABLE_BITCODE = NO ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES ENABLE_HEADER_DEPENDENCIES = YES ENABLE_NS_ASSERTIONS = NO ENABLE_ON_DEMAND_RESOURCES = YES ENABLE_STRICT_OBJC_MSGSEND = YES ENABLE_TESTABILITY = NO ENTITLEMENTS_ALLOWED = YES ENTITLEMENTS_REQUIRED = YES EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj EXECUTABLES_FOLDER_PATH = Runner.app/Executables EXECUTABLE_FOLDER_PATH = Runner.app EXECUTABLE_NAME = Runner EXECUTABLE_PATH = Runner.app/Runner EXPANDED_CODE_SIGN_IDENTITY = EXPANDED_CODE_SIGN_IDENTITY_NAME = EXPANDED_PROVISIONING_PROFILE = FILE_LIST = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList FIXED_FILES_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles FLUTTER_APPLICATION_PATH = /Users/maksimrv/www/dart/foo FLUTTER_BUILD_DIR = build FLUTTER_BUILD_MODE = debug FLUTTER_BUILD_NAME = 1.0.0 FLUTTER_BUILD_NUMBER = 1 FLUTTER_FRAMEWORK_DIR = /Users/maksimrv/www/dart/flutter/bin/cache/artifacts/engine/ios FLUTTER_ROOT = /Users/maksimrv/www/dart/flutter FLUTTER_TARGET = /Users/maksimrv/www/dart/foo/lib/main.dart FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks FRAMEWORK_FLAG_PREFIX = -framework FRAMEWORK_SEARCH_PATHS = /Users/maksimrv/www/dart/foo/ios/Flutter FRAMEWORK_VERSION = A FULL_PRODUCT_NAME = Runner.app GCC3_VERSION = 3.3 GCC_C_LANGUAGE_STANDARD = gnu99 GCC_INLINES_ARE_PRIVATE_EXTERN = YES GCC_NO_COMMON_BLOCKS = YES GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++ GCC_SYMBOLS_PRIVATE_EXTERN = YES GCC_THUMB_SUPPORT = YES GCC_TREAT_WARNINGS_AS_ERRORS = NO GCC_VERSION = com.apple.compilers.llvm.clang.1_0 GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0 GCC_WARN_64_TO_32_BIT_CONVERSION = YES GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR GCC_WARN_UNDECLARED_SELECTOR = YES GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE GCC_WARN_UNUSED_FUNCTION = YES GCC_WARN_UNUSED_VARIABLE = YES GENERATE_MASTER_OBJECT_FILE = NO GENERATE_PKGINFO_FILE = YES GENERATE_PROFILING_CODE = NO GENERATE_TEXT_BASED_STUBS = NO GID = 20 GROUP = staff HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES HEADERMAP_INCLUDES_PROJECT_HEADERS = YES HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES HEADERMAP_USES_VFS = NO HIDE_BITCODE_SYMBOLS = YES HOME = /Users/maksimrv ICONV = /usr/bin/iconv INFOPLIST_EXPAND_BUILD_SETTINGS = YES INFOPLIST_FILE = Runner/Info.plist INFOPLIST_OUTPUT_FORMAT = binary INFOPLIST_PATH = Runner.app/Info.plist INFOPLIST_PREPROCESS = NO INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings INLINE_PRIVATE_FRAMEWORKS = NO INSTALLHDRS_COPY_PHASE = NO INSTALLHDRS_SCRIPT_PHASE = NO INSTALL_DIR = /tmp/Runner.dst/Applications INSTALL_GROUP = staff INSTALL_MODE_FLAG = u+w,go-w,a+rX INSTALL_OWNER = maksimrv INSTALL_PATH = /Applications INSTALL_ROOT = /tmp/Runner.dst IPHONEOS_DEPLOYMENT_TARGET = 8.0 JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8 JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub JAVA_ARCHIVE_CLASSES = YES JAVA_ARCHIVE_TYPE = JAR JAVA_COMPILER = /usr/bin/javac JAVA_FOLDER_PATH = Runner.app/Java JAVA_FRAMEWORK_RESOURCES_DIRS = Resources JAVA_JAR_FLAGS = cv JAVA_SOURCE_SUBDIR = . JAVA_USE_DEPENDENCIES = YES JAVA_ZIP_FLAGS = -urg JIKES_DEFAULT_FLAGS = +E +OLDCSO KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow KEEP_PRIVATE_EXTERNS = NO LD_DEPENDENCY_INFO_FILE = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat LD_GENERATE_MAP_FILE = NO LD_MAP_FILE_PATH = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt LD_NO_PIE = NO LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer LEX = lex LIBRARY_FLAG_NOSPACE = YES LIBRARY_FLAG_PREFIX = -l LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions LIBRARY_SEARCH_PATHS = /Users/maksimrv/www/dart/foo/ios/Flutter LINKER_DISPLAYS_MANGLED_NAMES = NO LINK_FILE_LIST_normal_arm64 = LINK_FILE_LIST_normal_armv7 = LINK_WITH_STANDARD_LIBRARIES = YES LOCALIZABLE_CONTENT_DIR = LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString LOCAL_ADMIN_APPS_DIR = /Applications/Utilities LOCAL_APPS_DIR = /Applications LOCAL_DEVELOPER_DIR = /Library/Developer LOCAL_LIBRARY_DIR = /Library LOCROOT = LOCSYMROOT = MACH_O_TYPE = mh_execute MAC_OS_X_PRODUCT_BUILD_VERSION = 17F77 MAC_OS_X_VERSION_ACTUAL = 101305 MAC_OS_X_VERSION_MAJOR = 101300 MAC_OS_X_VERSION_MINOR = 1305 METAL_LIBRARY_FILE_BASE = default METAL_LIBRARY_OUTPUT_DIR = /Users/maksimrv/www/dart/foo/build/ios/Release-iphoneos/Runner.app MODULE_CACHE_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex MTL_ENABLE_DEBUG_INFO = NO NATIVE_ARCH = armv7 NATIVE_ARCH_32_BIT = i386 NATIVE_ARCH_64_BIT = x86_64 NATIVE_ARCH_ACTUAL = x86_64 NO_COMMON = YES OBJECT_FILE_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects OBJECT_FILE_DIR_normal = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal OBJROOT = /Users/maksimrv/www/dart/foo/build/ios ONLY_ACTIVE_ARCH = NO OS = MACOS OSAC = /usr/bin/osacompile PACKAGE_TYPE = com.apple.package-type.wrapper.application PASCAL_STRINGS = YES PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist PFE_FILE_C_DIALECTS = objective-c PKGINFO_FILE_PATH = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo PKGINFO_PATH = Runner.app/PkgInfo PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform PLATFORM_DISPLAY_NAME = iOS PLATFORM_NAME = iphoneos PLATFORM_PREFERRED_ARCH = arm64 PLATFORM_PRODUCT_BUILD_VERSION = 15F79 PLIST_FILE_OUTPUT_FORMAT = binary PLUGINS_FOLDER_PATH = Runner.app/PlugIns PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES PRECOMP_DESTINATION_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders PRODUCT_BUNDLE_IDENTIFIER = com.example.foo PRODUCT_MODULE_NAME = Runner PRODUCT_NAME = Runner PRODUCT_SETTINGS_PATH = /Users/maksimrv/www/dart/foo/ios/Runner/Info.plist PRODUCT_TYPE = com.apple.product-type.application PROFILING_CODE = NO PROJECT = Runner PROJECT_DERIVED_FILE_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/DerivedSources PROJECT_DIR = /Users/maksimrv/www/dart/foo/ios PROJECT_FILE_PATH = /Users/maksimrv/www/dart/foo/ios/Runner.xcodeproj PROJECT_NAME = Runner PROJECT_TEMP_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build PROJECT_TEMP_ROOT = /Users/maksimrv/www/dart/foo/build/ios PROVISIONING_PROFILE_REQUIRED = YES PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES REMOVE_CVS_FROM_RESOURCES = YES REMOVE_GIT_FROM_RESOURCES = YES REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES REMOVE_HG_FROM_RESOURCES = YES REMOVE_SVN_FROM_RESOURCES = YES RESOURCE_RULES_REQUIRED = YES REZ_COLLECTOR_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources REZ_OBJECTS_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO SCRIPTS_FOLDER_PATH = Runner.app/Scripts SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk SDK_DIR_iphoneos11_4 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk SDK_NAME = iphoneos11.4 SDK_NAMES = iphoneos11.4 SDK_PRODUCT_BUILD_VERSION = 15F79 SDK_VERSION = 11.4 SDK_VERSION_ACTUAL = 110400 SDK_VERSION_MAJOR = 110000 SDK_VERSION_MINOR = 400 SED = /usr/bin/sed SEPARATE_STRIP = NO SEPARATE_SYMBOL_EDIT = NO SET_DIR_MODE_OWNER_GROUP = YES SET_FILE_MODE_OWNER_GROUP = NO SHALLOW_BUNDLE = YES SHARED_DERIVED_FILE_DIR = /Users/maksimrv/www/dart/foo/build/ios/Release-iphoneos/DerivedSources SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks SHARED_PRECOMPS_DIR = /Users/maksimrv/www/dart/foo/build/ios/SharedPrecompiledHeaders SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport SKIP_INSTALL = NO SOURCE_ROOT = /Users/maksimrv/www/dart/foo/ios SRCROOT = /Users/maksimrv/www/dart/foo/ios STRINGS_FILE_OUTPUT_ENCODING = binary STRIP_BITCODE_FROM_COPIED_FILES = YES STRIP_INSTALLED_PRODUCT = YES STRIP_STYLE = all STRIP_SWIFT_SYMBOLS = YES SUPPORTED_DEVICE_FAMILIES = 1,2 SUPPORTED_PLATFORMS = iphonesimulator iphoneos SUPPORTS_TEXT_BASED_API = NO SWIFT_PLATFORM_TARGET_PREFIX = ios SYMROOT = /Users/maksimrv/www/dart/foo/build/ios SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities SYSTEM_APPS_DIR = /Applications SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices SYSTEM_DEMOS_DIR = /Applications/Extras SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities SYSTEM_DOCUMENTATION_DIR = /Library/Documentation SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions SYSTEM_LIBRARY_DIR = /System/Library TAPI_VERIFY_MODE = ErrorsOnly TARGETED_DEVICE_FAMILY = 1,2 TARGETNAME = Runner TARGET_BUILD_DIR = /Users/maksimrv/www/dart/foo/build/ios/Release-iphoneos TARGET_NAME = Runner TARGET_TEMP_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_FILES_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_FILE_DIR = /Users/maksimrv/www/dart/foo/build/ios/Runner.build/Release-iphoneos/Runner.build TEMP_ROOT = /Users/maksimrv/www/dart/foo/build/ios TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO UID = 502 UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app UNSTRIPPED_PRODUCT = NO USER = maksimrv USER_APPS_DIR = /Users/maksimrv/Applications USER_LIBRARY_DIR = /Users/maksimrv/Library USE_DYNAMIC_NO_PIC = YES USE_HEADERMAP = YES USE_HEADER_SYMLINKS = NO VALIDATE_PRODUCT = YES VALID_ARCHS = arm64 armv7 armv7s VERBOSE_PBXCP = NO VERSIONING_SYSTEM = apple-generic VERSIONPLIST_PATH = Runner.app/version.plist VERSION_INFO_BUILDER = maksimrv VERSION_INFO_FILE = Runner_vers.c VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1" WRAPPER_EXTENSION = app WRAPPER_NAME = Runner.app WRAPPER_SUFFIX = .app WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode XCODE_PRODUCT_BUILD_VERSION = 9F2000 XCODE_VERSION_ACTUAL = 0941 XCODE_VERSION_MAJOR = 0900 XCODE_VERSION_MINOR = 0940 XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices YACC = yacc arch = arm64 variant = normal [ +16 ms] Building Runner.app for 539CC886-1F0F-477F-9C10-050010071AAE. [ +9 ms] script /dev/null /usr/bin/log stream --style syslog --predicate processImagePath CONTAINS "539CC886-1F0F-477F-9C10-050010071AAE" [ +36 ms] [DEVICE LOG] Filtering the log data using "processImagePath CONTAINS "539CC886-1F0F-477F-9C10-050010071AAE"" [ +5 ms] [DEVICE LOG] Timestamp (process)[PID] [ +153 ms] Skipping kernel compilation. Fingerprint match. [ +248 ms] Building bundle [ +4 ms] Writing asset files to build/flutter_assets [ +45 ms] Wrote build/flutter_assets [ +1 ms] /usr/bin/xcrun simctl get_app_container 539CC886-1F0F-477F-9C10-050010071AAE com.example.foo [ ] /usr/bin/killall Runner [ +149 ms] python -c import six [ +103 ms] [ios/] /usr/bin/xcodebuild -list [ +734 ms] Exit code 0 from: /usr/bin/xcodebuild -list [ ] Information about project "Runner": Targets: Runner Build Configurations: Debug Release If no build configuration is specified and -scheme is not passed then "Release" is used. Schemes: Runner [ +2 ms] Trying to resolve native pub services. [ +1 ms] Looking for YAML at 'pubspec.yaml' [ ] No services specified in the manifest [ ] Found 0 service definition(s). [ +1 ms] Copying service frameworks to '/Users/maksimrv/www/dart/foo/ios/Frameworks'. [ ] Creating service definitions manifest at 'ios/ServiceDefinitions.json' [ +12 ms] Starting Xcode build... [ ] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/maksimrv/www/dart/foo/build/ios -sdk iphonesimulator -arch x86_64 [+4620 ms] Build settings from command line: ARCHS = x86_64 BUILD_DIR = /Users/maksimrv/www/dart/foo/build/ios SDKROOT = iphonesimulator11.4 VERBOSE_SCRIPT_LOGGING = YES === BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug === Check dependencies PhaseScriptExecution Run\ Script /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh cd /Users/maksimrv/www/dart/foo/ios export ACTION=build export AD_HOC_CODE_SIGNING_ALLOWED=YES export ALTERNATE_GROUP=staff export ALTERNATE_MODE=u+w,go-w,a+rX export ALTERNATE_OWNER=maksimrv export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO export ALWAYS_SEARCH_USER_PATHS=NO export ALWAYS_USE_SEPARATE_HEADERMAPS=NO export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer export APPLE_INTERNAL_DIR=/AppleInternal export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools export APPLICATION_EXTENSION_API_ONLY=NO export APPLY_RULES_IN_COPY_FILES=NO export ARCHS=x86_64 export ARCHS_STANDARD="i386 x86_64" export ARCHS_STANDARD_32_64_BIT="i386 x86_64" export ARCHS_STANDARD_32_BIT=i386 export ARCHS_STANDARD_64_BIT=x86_64 export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64" export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64" export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator" export BITCODE_GENERATION_MODE=marker export BUILD_ACTIVE_RESOURCES_ONLY=YES export BUILD_COMPONENTS="headers build" export BUILD_DIR=/Users/maksimrv/www/dart/foo/build/ios export BUILD_ROOT=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Products export BUILD_STYLE= export BUILD_VARIANTS=normal export BUILT_PRODUCTS_DIR=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator export CACHE_ROOT=/var/folders/bj/7c8x11911jgg75k0ywfvb3sw0000gp/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode export CCHROOT=/var/folders/bj/7c8x11911jgg75k0ywfvb3sw0000gp/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode export CHMOD=/bin/chmod export CHOWN=/usr/sbin/chown export CLANG_ANALYZER_NONNULL=YES export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x export CLANG_CXX_LIBRARY=libc++ export CLANG_ENABLE_MODULES=YES export CLANG_ENABLE_OBJC_ARC=YES export CLANG_MODULES_BUILD_SESSION_FILE=/Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES export CLANG_WARN_BOOL_CONVERSION=YES export CLANG_WARN_COMMA=YES export CLANG_WARN_CONSTANT_CONVERSION=YES export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR export CLANG_WARN_EMPTY_BODY=YES export CLANG_WARN_ENUM_CONVERSION=YES export CLANG_WARN_INFINITE_RECURSION=YES export CLANG_WARN_INT_CONVERSION=YES export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES export CLANG_WARN_STRICT_PROTOTYPES=YES export CLANG_WARN_SUSPICIOUS_MOVE=YES export CLANG_WARN_UNREACHABLE_CODE=YES export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES export CLASS_FILE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses export CLEAN_PRECOMPS=YES export CLONE_HEADERS=NO export CODESIGNING_FOLDER_PATH=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app export CODE_SIGNING_ALLOWED=YES export CODE_SIGNING_REQUIRED=YES export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext export CODE_SIGN_IDENTITY=- export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES export COLOR_DIAGNOSTICS=NO export COMBINE_HIDPI_IMAGES=NO export COMMAND_MODE=legacy export COMPILER_INDEX_STORE_ENABLE=Default export COMPOSITE_SDK_DIRS=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/CompositeSDKs export COMPRESS_PNG_FILES=YES export CONFIGURATION=Debug export CONFIGURATION_BUILD_DIR=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator export CONFIGURATION_TEMP_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator export CONTENTS_FOLDER_PATH=Runner.app export COPYING_PRESERVES_HFS_DATA=NO export COPY_HEADERS_RUN_UNIFDEF=NO export COPY_PHASE_STRIP=NO export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk export CORRESPONDING_DEVICE_SDK_NAME=iphoneos11.4 export CP=/bin/cp export CREATE_INFOPLIST_SECTION_IN_BINARY=NO export CURRENT_ARCH=x86_64 export CURRENT_PROJECT_VERSION=1 export CURRENT_VARIANT=normal export DEAD_CODE_STRIPPING=YES export DEBUGGING_SYMBOLS=YES export DEBUG_INFORMATION_FORMAT=dwarf export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0 export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions export DEFINES_MODULE=NO export DEPLOYMENT_LOCATION=NO export DEPLOYMENT_POSTPROCESSING=NO export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min= export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4" export DERIVED_FILES_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources export DERIVED_FILE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources export DERIVED_SOURCES_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr export DEVELOPMENT_LANGUAGE=English export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation export DO_HEADER_SCANNING_IN_JAM=NO export DSTROOT=/tmp/Runner.dst export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export DWARF_DSYM_FILE_NAME=Runner.app.dSYM export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO export DWARF_DSYM_FOLDER_PATH=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator export EFFECTIVE_PLATFORM_NAME=-iphonesimulator export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO export ENABLE_BITCODE=NO export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES export ENABLE_HEADER_DEPENDENCIES=YES export ENABLE_ON_DEMAND_RESOURCES=YES export ENABLE_STRICT_OBJC_MSGSEND=YES export ENABLE_TESTABILITY=YES export ENTITLEMENTS_REQUIRED=YES export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS" export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj" export EXECUTABLES_FOLDER_PATH=Runner.app/Executables export EXECUTABLE_FOLDER_PATH=Runner.app export EXECUTABLE_NAME=Runner export EXECUTABLE_PATH=Runner.app/Runner export EXPANDED_CODE_SIGN_IDENTITY=- export EXPANDED_CODE_SIGN_IDENTITY_NAME=- export EXPANDED_PROVISIONING_PROFILE= export FILE_LIST=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList export FIXED_FILES_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles export FLUTTER_APPLICATION_PATH=/Users/maksimrv/www/dart/foo export FLUTTER_BUILD_DIR=build export FLUTTER_BUILD_MODE=debug export FLUTTER_BUILD_NAME=1.0.0 export FLUTTER_BUILD_NUMBER=1 export FLUTTER_FRAMEWORK_DIR=/Users/maksimrv/www/dart/flutter/bin/cache/artifacts/engine/ios export FLUTTER_ROOT=/Users/maksimrv/www/dart/flutter export FLUTTER_TARGET=/Users/maksimrv/www/dart/foo/lib/main.dart export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks export FRAMEWORK_FLAG_PREFIX=-framework export FRAMEWORK_SEARCH_PATHS="/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator /Users/maksimrv/www/dart/foo/ios/Flutter" export FRAMEWORK_VERSION=A export FULL_PRODUCT_NAME=Runner.app export GCC3_VERSION=3.3 export GCC_C_LANGUAGE_STANDARD=gnu99 export GCC_DYNAMIC_NO_PIC=NO export GCC_INLINES_ARE_PRIVATE_EXTERN=YES export GCC_NO_COMMON_BLOCKS=YES export GCC_OBJC_LEGACY_DISPATCH=YES export GCC_OPTIMIZATION_LEVEL=0 export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++" export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 " export GCC_SYMBOLS_PRIVATE_EXTERN=NO export GCC_TREAT_WARNINGS_AS_ERRORS=NO export GCC_VERSION=com.apple.compilers.llvm.clang.1_0 export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0 export GCC_WARN_64_TO_32_BIT_CONVERSION=YES export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR export GCC_WARN_UNDECLARED_SELECTOR=YES export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE export GCC_WARN_UNUSED_FUNCTION=YES export GCC_WARN_UNUSED_VARIABLE=YES export GENERATE_MASTER_OBJECT_FILE=NO export GENERATE_PKGINFO_FILE=YES export GENERATE_PROFILING_CODE=NO export GENERATE_TEXT_BASED_STUBS=NO export GID=20 export GROUP=staff export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES export HEADERMAP_USES_VFS=NO export HEADER_SEARCH_PATHS="/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/include " export HIDE_BITCODE_SYMBOLS=YES export HOME=/Users/maksimrv export ICONV=/usr/bin/iconv export INFOPLIST_EXPAND_BUILD_SETTINGS=YES export INFOPLIST_FILE=Runner/Info.plist export INFOPLIST_OUTPUT_FORMAT=binary export INFOPLIST_PATH=Runner.app/Info.plist export INFOPLIST_PREPROCESS=NO export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings export INLINE_PRIVATE_FRAMEWORKS=NO export INSTALLHDRS_COPY_PHASE=NO export INSTALLHDRS_SCRIPT_PHASE=NO export INSTALL_DIR=/tmp/Runner.dst/Applications export INSTALL_GROUP=staff export INSTALL_MODE_FLAG=u+w,go-w,a+rX export INSTALL_OWNER=maksimrv export INSTALL_PATH=/Applications export INSTALL_ROOT=/tmp/Runner.dst export IPHONEOS_DEPLOYMENT_TARGET=8.0 export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8" export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub export JAVA_ARCHIVE_CLASSES=YES export JAVA_ARCHIVE_TYPE=JAR export JAVA_COMPILER=/usr/bin/javac export JAVA_FOLDER_PATH=Runner.app/Java export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources export JAVA_JAR_FLAGS=cv export JAVA_SOURCE_SUBDIR=. export JAVA_USE_DEPENDENCIES=YES export JAVA_ZIP_FLAGS=-urg export JIKES_DEFAULT_FLAGS="+E +OLDCSO" export KEEP_PRIVATE_EXTERNS=NO export LD_DEPENDENCY_INFO_FILE=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat export LD_GENERATE_MAP_FILE=NO export LD_MAP_FILE_PATH=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt export LD_NO_PIE=NO export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES export LD_RUNPATH_SEARCH_PATHS=" @executable_path/Frameworks" export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer export LEX=lex export LIBRARY_FLAG_NOSPACE=YES export LIBRARY_FLAG_PREFIX=-l export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions export LIBRARY_SEARCH_PATHS="/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator /Users/maksimrv/www/dart/foo/ios/Flutter" export LINKER_DISPLAYS_MANGLED_NAMES=NO export LINK_FILE_LIST_normal_x86_64=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList export LINK_WITH_STANDARD_LIBRARIES=YES export LOCALIZABLE_CONTENT_DIR= export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString" export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities export LOCAL_APPS_DIR=/Applications export LOCAL_DEVELOPER_DIR=/Library/Developer export LOCAL_LIBRARY_DIR=/Library export LOCROOT= export LOCSYMROOT= export MACH_O_TYPE=mh_execute export MAC_OS_X_PRODUCT_BUILD_VERSION=17F77 export MAC_OS_X_VERSION_ACTUAL=101305 export MAC_OS_X_VERSION_MAJOR=101300 export MAC_OS_X_VERSION_MINOR=1305 export METAL_LIBRARY_FILE_BASE=default export METAL_LIBRARY_OUTPUT_DIR=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app export MODULE_CACHE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex export MTL_ENABLE_DEBUG_INFO=YES export NATIVE_ARCH=i386 export NATIVE_ARCH_32_BIT=i386 export NATIVE_ARCH_64_BIT=x86_64 export NATIVE_ARCH_ACTUAL=x86_64 export NO_COMMON=YES export OBJC_ABI_VERSION=2 export OBJECT_FILE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects export OBJECT_FILE_DIR_normal=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal export OBJROOT=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex export ONLY_ACTIVE_ARCH=YES export OS=MACOS export OSAC=/usr/bin/osacompile export PACKAGE_TYPE=com.apple.package-type.wrapper.application export PASCAL_STRINGS=YES export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin" export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms" export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist export PFE_FILE_C_DIALECTS=objective-c export PKGINFO_FILE_PATH=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo export PKGINFO_PATH=Runner.app/PkgInfo export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform export PLATFORM_DISPLAY_NAME="iOS Simulator" export PLATFORM_NAME=iphonesimulator export PLATFORM_PREFERRED_ARCH=x86_64 export PLIST_FILE_OUTPUT_FORMAT=binary export PLUGINS_FOLDER_PATH=Runner.app/PlugIns export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES export PRECOMP_DESTINATION_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders export PRODUCT_BUNDLE_IDENTIFIER=com.example.foo export PRODUCT_MODULE_NAME=Runner export PRODUCT_NAME=Runner export PRODUCT_SETTINGS_PATH=/Users/maksimrv/www/dart/foo/ios/Runner/Info.plist export PRODUCT_TYPE=com.apple.product-type.application export PROFILING_CODE=NO export PROJECT=Runner export PROJECT_DERIVED_FILE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/DerivedSources export PROJECT_DIR=/Users/maksimrv/www/dart/foo/ios export PROJECT_FILE_PATH=/Users/maksimrv/www/dart/foo/ios/Runner.xcodeproj export PROJECT_NAME=Runner export PROJECT_TEMP_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build export PROJECT_TEMP_ROOT=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES export REMOVE_CVS_FROM_RESOURCES=YES export REMOVE_GIT_FROM_RESOURCES=YES export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES export REMOVE_HG_FROM_RESOURCES=YES export REMOVE_SVN_FROM_RESOURCES=YES export REZ_COLLECTOR_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources export REZ_OBJECTS_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects export REZ_SEARCH_PATHS="/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator " export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO export SCRIPTS_FOLDER_PATH=Runner.app/Scripts export SCRIPT_INPUT_FILE_COUNT=0 export SCRIPT_OUTPUT_FILE_COUNT=0 export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk export SDK_DIR_iphonesimulator11_4=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk export SDK_NAME=iphonesimulator11.4 export SDK_NAMES=iphonesimulator11.4 export SDK_PRODUCT_BUILD_VERSION=15F79 export SDK_VERSION=11.4 export SDK_VERSION_ACTUAL=110400 export SDK_VERSION_MAJOR=110000 export SDK_VERSION_MINOR=400 export SED=/usr/bin/sed export SEPARATE_STRIP=NO export SEPARATE_SYMBOL_EDIT=NO export SET_DIR_MODE_OWNER_GROUP=YES export SET_FILE_MODE_OWNER_GROUP=NO export SHALLOW_BUNDLE=YES export SHARED_DERIVED_FILE_DIR=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/DerivedSources export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks export SHARED_PRECOMPS_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/PrecompiledHeaders export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport export SKIP_INSTALL=NO export SOURCE_ROOT=/Users/maksimrv/www/dart/foo/ios export SRCROOT=/Users/maksimrv/www/dart/foo/ios export STRINGS_FILE_OUTPUT_ENCODING=binary export STRIP_BITCODE_FROM_COPIED_FILES=NO export STRIP_INSTALLED_PRODUCT=YES export STRIP_STYLE=all export STRIP_SWIFT_SYMBOLS=YES export SUPPORTED_DEVICE_FAMILIES=1,2 export SUPPORTED_PLATFORMS="iphonesimulator iphoneos" export SUPPORTS_TEXT_BASED_API=NO export SWIFT_PLATFORM_TARGET_PREFIX=ios export SYMROOT=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Products export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities export SYSTEM_APPS_DIR=/Applications export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices export SYSTEM_DEMOS_DIR=/Applications/Extras export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples" export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library" export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools" export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools" export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools" export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes" export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools" export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools" export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions export SYSTEM_LIBRARY_DIR=/System/Library export TAPI_VERIFY_MODE=ErrorsOnly export TARGETED_DEVICE_FAMILY=1,2 export TARGETNAME=Runner export TARGET_BUILD_DIR=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder" export TARGET_NAME=Runner export TARGET_TEMP_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_FILES_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_FILE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_ROOT=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO export UID=502 export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app export UNSTRIPPED_PRODUCT=NO export USER=maksimrv export USER_APPS_DIR=/Users/maksimrv/Applications export USER_LIBRARY_DIR=/Users/maksimrv/Library export USE_DYNAMIC_NO_PIC=YES export USE_HEADERMAP=YES export USE_HEADER_SYMLINKS=NO export VALIDATE_PRODUCT=NO export VALID_ARCHS="i386 x86_64" export VERBOSE_PBXCP=NO export VERBOSE_SCRIPT_LOGGING=YES export VERSIONING_SYSTEM=apple-generic export VERSIONPLIST_PATH=Runner.app/version.plist export VERSION_INFO_BUILDER=maksimrv export VERSION_INFO_FILE=Runner_vers.c export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner PROJECT:Runner-1\"" export WRAPPER_EXTENSION=app export WRAPPER_NAME=Runner.app export WRAPPER_SUFFIX=.app export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode export XCODE_PRODUCT_BUILD_VERSION=9F2000 export XCODE_VERSION_ACTUAL=0941 export XCODE_VERSION_MAJOR=0900 export XCODE_VERSION_MINOR=0940 export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices export YACC=yacc export arch=x86_64 export variant=normal /bin/sh -c /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh ♦ mkdir -p -- /Users/maksimrv/www/dart/foo/ios/Flutter ♦ rm -rf -- /Users/maksimrv/www/dart/foo/ios/Flutter/Flutter.framework ♦ rm -rf -- /Users/maksimrv/www/dart/foo/ios/Flutter/App.framework ♦ cp -r -- /Users/maksimrv/www/dart/flutter/bin/cache/artifacts/engine/ios/Flutter.framework /Users/maksimrv/www/dart/foo/ios/Flutter ♦ find /Users/maksimrv/www/dart/foo/ios/Flutter/Flutter.framework -type f -exec chmod a-w {} ; ♦ mkdir -p -- /Users/maksimrv/www/dart/foo/ios/Flutter/App.framework ♦ eval ♦ cp -- /Users/maksimrv/www/dart/foo/ios/Flutter/AppFrameworkInfo.plist /Users/maksimrv/www/dart/foo/ios/Flutter/App.framework/Info.plist ♦ /Users/maksimrv/www/dart/flutter/bin/flutter --suppress-analytics --verbose build bundle --target=/Users/maksimrv/www/dart/foo/lib/main.dart --depfile=build/snapshot_blob.bin.d --asset-dir=/Users/maksimrv/www/dart/foo/ios/Flutter/flutter_assets [ +7 ms] [/Users/maksimrv/www/dart/flutter/] git rev-parse --abbrev-ref --symbolic @{u} [ +39 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ ] origin/dev [ ] [/Users/maksimrv/www/dart/flutter/] git rev-parse --abbrev-ref HEAD [ +8 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ ] dev [ ] [/Users/maksimrv/www/dart/flutter/] git ls-remote --get-url origin [ +7 ms] Exit code 0 from: git ls-remote --get-url origin [ ] https://github.com/flutter/flutter.git [ ] [/Users/maksimrv/www/dart/flutter/] git log -n 1 --pretty=format:%H [ +6 ms] Exit code 0 from: git log -n 1 --pretty=format:%H [ ] 3019ad976d333cceb903b3f53885cd9ae678a622 [ ] [/Users/maksimrv/www/dart/flutter/] git log -n 1 --pretty=format:%ar [ +6 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar [ ] 5 days ago [ ] [/Users/maksimrv/www/dart/flutter/] git describe --match v*.*.* --first-parent --long --tags [ +9 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags [ ] v0.5.4-0-g3019ad976 [ +507 ms] Skipping kernel compilation. Fingerprint match. [ +199 ms] Building bundle [ ] Writing asset files to /Users/maksimrv/www/dart/foo/ios/Flutter/flutter_assets [ +74 ms] Wrote /Users/maksimrv/www/dart/foo/ios/Flutter/flutter_assets [ +9 ms] "flutter bundle" took 654ms. Project /Users/maksimrv/www/dart/foo built and packaged successfully. CompileC /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o Runner/main.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/maksimrv/www/dart/foo/ios export LANG=en_US.US-ASCII export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Index/DataStore -iquote /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/include -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator -F/Users/maksimrv/www/dart/foo/ios/Flutter -MMD -MT dependencies -MF /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.d --serialize-diagnostics /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.dia -c /Users/maksimrv/www/dart/foo/ios/Runner/main.m -o /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o CompileC /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o Runner/AppDelegate.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/maksimrv/www/dart/foo/ios export LANG=en_US.US-ASCII export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Index/DataStore -iquote /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/include -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator -F/Users/maksimrv/www/dart/foo/ios/Flutter -MMD -MT dependencies -MF /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d --serialize-diagnostics /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.dia -c /Users/maksimrv/www/dart/foo/ios/Runner/AppDelegate.m -o /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o CompileC /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/maksimrv/www/dart/foo/ios export LANG=en_US.US-ASCII export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Index/DataStore -iquote /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/include -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator -F/Users/maksimrv/www/dart/foo/ios/Flutter -MMD -MT dependencies -MF /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d --serialize-diagnostics /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia -c /Users/maksimrv/www/dart/foo/ios/Runner/GeneratedPluginRegistrant.m -o /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o Ld /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64 cd /Users/maksimrv/www/dart/foo/ios export IPHONEOS_DEPLOYMENT_TARGET=8.0 export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -L/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator -L/Users/maksimrv/www/dart/foo/ios/Flutter -F/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator -F/Users/maksimrv/www/dart/foo/ios/Flutter -filelist /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=8.0 -dead_strip -Xlinker -object_path_lto -Xlinker /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent -framework Flutter -framework App -Xlinker -dependency_info -Xlinker /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat -o /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Runner CpResource Flutter/Generated.xcconfig /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Generated.xcconfig cd /Users/maksimrv/www/dart/foo/ios export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin" builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/maksimrv/www/dart/foo/ios/Flutter/Generated.xcconfig /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app CpResource Flutter/flutter_assets /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/flutter_assets cd /Users/maksimrv/www/dart/foo/ios export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin" builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/maksimrv/www/dart/foo/ios/Flutter/flutter_assets /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app PBXCp Flutter/App.framework /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework cd /Users/maksimrv/www/dart/foo/ios export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin" builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/maksimrv/www/dart/foo/ios/Flutter/App.framework /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Frameworks PBXCp Flutter/Flutter.framework /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework cd /Users/maksimrv/www/dart/foo/ios export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin" builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/maksimrv/www/dart/foo/ios/Flutter/Flutter.framework /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Frameworks CodeSign /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework cd /Users/maksimrv/www/dart/foo/ios export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin" Signing Identity: "-" /usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework CodeSign /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework cd /Users/maksimrv/www/dart/foo/ios export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin" Signing Identity: "-" /usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework PhaseScriptExecution Thin\ Binary /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh cd /Users/maksimrv/www/dart/foo/ios export ACTION=build export AD_HOC_CODE_SIGNING_ALLOWED=YES export ALTERNATE_GROUP=staff export ALTERNATE_MODE=u+w,go-w,a+rX export ALTERNATE_OWNER=maksimrv export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO export ALWAYS_SEARCH_USER_PATHS=NO export ALWAYS_USE_SEPARATE_HEADERMAPS=NO export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer export APPLE_INTERNAL_DIR=/AppleInternal export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools export APPLICATION_EXTENSION_API_ONLY=NO export APPLY_RULES_IN_COPY_FILES=NO export ARCHS=x86_64 export ARCHS_STANDARD="i386 x86_64" export ARCHS_STANDARD_32_64_BIT="i386 x86_64" export ARCHS_STANDARD_32_BIT=i386 export ARCHS_STANDARD_64_BIT=x86_64 export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64" export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64" export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator" export BITCODE_GENERATION_MODE=marker export BUILD_ACTIVE_RESOURCES_ONLY=YES export BUILD_COMPONENTS="headers build" export BUILD_DIR=/Users/maksimrv/www/dart/foo/build/ios export BUILD_ROOT=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Products export BUILD_STYLE= export BUILD_VARIANTS=normal export BUILT_PRODUCTS_DIR=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator export CACHE_ROOT=/var/folders/bj/7c8x11911jgg75k0ywfvb3sw0000gp/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode export CCHROOT=/var/folders/bj/7c8x11911jgg75k0ywfvb3sw0000gp/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode export CHMOD=/bin/chmod export CHOWN=/usr/sbin/chown export CLANG_ANALYZER_NONNULL=YES export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x export CLANG_CXX_LIBRARY=libc++ export CLANG_ENABLE_MODULES=YES export CLANG_ENABLE_OBJC_ARC=YES export CLANG_MODULES_BUILD_SESSION_FILE=/Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES export CLANG_WARN_BOOL_CONVERSION=YES export CLANG_WARN_COMMA=YES export CLANG_WARN_CONSTANT_CONVERSION=YES export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR export CLANG_WARN_EMPTY_BODY=YES export CLANG_WARN_ENUM_CONVERSION=YES export CLANG_WARN_INFINITE_RECURSION=YES export CLANG_WARN_INT_CONVERSION=YES export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES export CLANG_WARN_STRICT_PROTOTYPES=YES export CLANG_WARN_SUSPICIOUS_MOVE=YES export CLANG_WARN_UNREACHABLE_CODE=YES export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES export CLASS_FILE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses export CLEAN_PRECOMPS=YES export CLONE_HEADERS=NO export CODESIGNING_FOLDER_PATH=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app export CODE_SIGNING_ALLOWED=YES export CODE_SIGNING_REQUIRED=YES export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext export CODE_SIGN_IDENTITY=- export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES export COLOR_DIAGNOSTICS=NO export COMBINE_HIDPI_IMAGES=NO export COMMAND_MODE=legacy export COMPILER_INDEX_STORE_ENABLE=Default export COMPOSITE_SDK_DIRS=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/CompositeSDKs export COMPRESS_PNG_FILES=YES export CONFIGURATION=Debug export CONFIGURATION_BUILD_DIR=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator export CONFIGURATION_TEMP_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator export CONTENTS_FOLDER_PATH=Runner.app export COPYING_PRESERVES_HFS_DATA=NO export COPY_HEADERS_RUN_UNIFDEF=NO export COPY_PHASE_STRIP=NO export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk export CORRESPONDING_DEVICE_SDK_NAME=iphoneos11.4 export CP=/bin/cp export CREATE_INFOPLIST_SECTION_IN_BINARY=NO export CURRENT_ARCH=x86_64 export CURRENT_PROJECT_VERSION=1 export CURRENT_VARIANT=normal export DEAD_CODE_STRIPPING=YES export DEBUGGING_SYMBOLS=YES export DEBUG_INFORMATION_FORMAT=dwarf export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0 export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions export DEFINES_MODULE=NO export DEPLOYMENT_LOCATION=NO export DEPLOYMENT_POSTPROCESSING=NO export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min= export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4" export DERIVED_FILES_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources export DERIVED_FILE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources export DERIVED_SOURCES_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr export DEVELOPMENT_LANGUAGE=English export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation export DO_HEADER_SCANNING_IN_JAM=NO export DSTROOT=/tmp/Runner.dst export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export DWARF_DSYM_FILE_NAME=Runner.app.dSYM export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO export DWARF_DSYM_FOLDER_PATH=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator export EFFECTIVE_PLATFORM_NAME=-iphonesimulator export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO export ENABLE_BITCODE=NO export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES export ENABLE_HEADER_DEPENDENCIES=YES export ENABLE_ON_DEMAND_RESOURCES=YES export ENABLE_STRICT_OBJC_MSGSEND=YES export ENABLE_TESTABILITY=YES export ENTITLEMENTS_REQUIRED=YES export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS" export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj" export EXECUTABLES_FOLDER_PATH=Runner.app/Executables export EXECUTABLE_FOLDER_PATH=Runner.app export EXECUTABLE_NAME=Runner export EXECUTABLE_PATH=Runner.app/Runner export EXPANDED_CODE_SIGN_IDENTITY=- export EXPANDED_CODE_SIGN_IDENTITY_NAME=- export EXPANDED_PROVISIONING_PROFILE= export FILE_LIST=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList export FIXED_FILES_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles export FLUTTER_APPLICATION_PATH=/Users/maksimrv/www/dart/foo export FLUTTER_BUILD_DIR=build export FLUTTER_BUILD_MODE=debug export FLUTTER_BUILD_NAME=1.0.0 export FLUTTER_BUILD_NUMBER=1 export FLUTTER_FRAMEWORK_DIR=/Users/maksimrv/www/dart/flutter/bin/cache/artifacts/engine/ios export FLUTTER_ROOT=/Users/maksimrv/www/dart/flutter export FLUTTER_TARGET=/Users/maksimrv/www/dart/foo/lib/main.dart export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks export FRAMEWORK_FLAG_PREFIX=-framework export FRAMEWORK_SEARCH_PATHS="/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator /Users/maksimrv/www/dart/foo/ios/Flutter" export FRAMEWORK_VERSION=A export FULL_PRODUCT_NAME=Runner.app export GCC3_VERSION=3.3 export GCC_C_LANGUAGE_STANDARD=gnu99 export GCC_DYNAMIC_NO_PIC=NO export GCC_INLINES_ARE_PRIVATE_EXTERN=YES export GCC_NO_COMMON_BLOCKS=YES export GCC_OBJC_LEGACY_DISPATCH=YES export GCC_OPTIMIZATION_LEVEL=0 export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++" export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 " export GCC_SYMBOLS_PRIVATE_EXTERN=NO export GCC_TREAT_WARNINGS_AS_ERRORS=NO export GCC_VERSION=com.apple.compilers.llvm.clang.1_0 export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0 export GCC_WARN_64_TO_32_BIT_CONVERSION=YES export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR export GCC_WARN_UNDECLARED_SELECTOR=YES export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE export GCC_WARN_UNUSED_FUNCTION=YES export GCC_WARN_UNUSED_VARIABLE=YES export GENERATE_MASTER_OBJECT_FILE=NO export GENERATE_PKGINFO_FILE=YES export GENERATE_PROFILING_CODE=NO export GENERATE_TEXT_BASED_STUBS=NO export GID=20 export GROUP=staff export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES export HEADERMAP_USES_VFS=NO export HEADER_SEARCH_PATHS="/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/include " export HIDE_BITCODE_SYMBOLS=YES export HOME=/Users/maksimrv export ICONV=/usr/bin/iconv export INFOPLIST_EXPAND_BUILD_SETTINGS=YES export INFOPLIST_FILE=Runner/Info.plist export INFOPLIST_OUTPUT_FORMAT=binary export INFOPLIST_PATH=Runner.app/Info.plist export INFOPLIST_PREPROCESS=NO export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings export INLINE_PRIVATE_FRAMEWORKS=NO export INSTALLHDRS_COPY_PHASE=NO export INSTALLHDRS_SCRIPT_PHASE=NO export INSTALL_DIR=/tmp/Runner.dst/Applications export INSTALL_GROUP=staff export INSTALL_MODE_FLAG=u+w,go-w,a+rX export INSTALL_OWNER=maksimrv export INSTALL_PATH=/Applications export INSTALL_ROOT=/tmp/Runner.dst export IPHONEOS_DEPLOYMENT_TARGET=8.0 export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8" export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub export JAVA_ARCHIVE_CLASSES=YES export JAVA_ARCHIVE_TYPE=JAR export JAVA_COMPILER=/usr/bin/javac export JAVA_FOLDER_PATH=Runner.app/Java export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources export JAVA_JAR_FLAGS=cv export JAVA_SOURCE_SUBDIR=. export JAVA_USE_DEPENDENCIES=YES export JAVA_ZIP_FLAGS=-urg export JIKES_DEFAULT_FLAGS="+E +OLDCSO" export KEEP_PRIVATE_EXTERNS=NO export LD_DEPENDENCY_INFO_FILE=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat export LD_GENERATE_MAP_FILE=NO export LD_MAP_FILE_PATH=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt export LD_NO_PIE=NO export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES export LD_RUNPATH_SEARCH_PATHS=" @executable_path/Frameworks" export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer export LEX=lex export LIBRARY_FLAG_NOSPACE=YES export LIBRARY_FLAG_PREFIX=-l export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions export LIBRARY_SEARCH_PATHS="/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator /Users/maksimrv/www/dart/foo/ios/Flutter" export LINKER_DISPLAYS_MANGLED_NAMES=NO export LINK_FILE_LIST_normal_x86_64=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList export LINK_WITH_STANDARD_LIBRARIES=YES export LOCALIZABLE_CONTENT_DIR= export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString" export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities export LOCAL_APPS_DIR=/Applications export LOCAL_DEVELOPER_DIR=/Library/Developer export LOCAL_LIBRARY_DIR=/Library export LOCROOT= export LOCSYMROOT= export MACH_O_TYPE=mh_execute export MAC_OS_X_PRODUCT_BUILD_VERSION=17F77 export MAC_OS_X_VERSION_ACTUAL=101305 export MAC_OS_X_VERSION_MAJOR=101300 export MAC_OS_X_VERSION_MINOR=1305 export METAL_LIBRARY_FILE_BASE=default export METAL_LIBRARY_OUTPUT_DIR=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app export MODULE_CACHE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex export MTL_ENABLE_DEBUG_INFO=YES export NATIVE_ARCH=i386 export NATIVE_ARCH_32_BIT=i386 export NATIVE_ARCH_64_BIT=x86_64 export NATIVE_ARCH_ACTUAL=x86_64 export NO_COMMON=YES export OBJC_ABI_VERSION=2 export OBJECT_FILE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects export OBJECT_FILE_DIR_normal=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal export OBJROOT=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex export ONLY_ACTIVE_ARCH=YES export OS=MACOS export OSAC=/usr/bin/osacompile export PACKAGE_TYPE=com.apple.package-type.wrapper.application export PASCAL_STRINGS=YES export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin" export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms" export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist export PFE_FILE_C_DIALECTS=objective-c export PKGINFO_FILE_PATH=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo export PKGINFO_PATH=Runner.app/PkgInfo export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform export PLATFORM_DISPLAY_NAME="iOS Simulator" export PLATFORM_NAME=iphonesimulator export PLATFORM_PREFERRED_ARCH=x86_64 export PLIST_FILE_OUTPUT_FORMAT=binary export PLUGINS_FOLDER_PATH=Runner.app/PlugIns export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES export PRECOMP_DESTINATION_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders export PRODUCT_BUNDLE_IDENTIFIER=com.example.foo export PRODUCT_MODULE_NAME=Runner export PRODUCT_NAME=Runner export PRODUCT_SETTINGS_PATH=/Users/maksimrv/www/dart/foo/ios/Runner/Info.plist export PRODUCT_TYPE=com.apple.product-type.application export PROFILING_CODE=NO export PROJECT=Runner export PROJECT_DERIVED_FILE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/DerivedSources export PROJECT_DIR=/Users/maksimrv/www/dart/foo/ios export PROJECT_FILE_PATH=/Users/maksimrv/www/dart/foo/ios/Runner.xcodeproj export PROJECT_NAME=Runner export PROJECT_TEMP_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build export PROJECT_TEMP_ROOT=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES export REMOVE_CVS_FROM_RESOURCES=YES export REMOVE_GIT_FROM_RESOURCES=YES export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES export REMOVE_HG_FROM_RESOURCES=YES export REMOVE_SVN_FROM_RESOURCES=YES export REZ_COLLECTOR_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources export REZ_OBJECTS_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects export REZ_SEARCH_PATHS="/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator " export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO export SCRIPTS_FOLDER_PATH=Runner.app/Scripts export SCRIPT_INPUT_FILE_COUNT=0 export SCRIPT_OUTPUT_FILE_COUNT=0 export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk export SDK_DIR_iphonesimulator11_4=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk export SDK_NAME=iphonesimulator11.4 export SDK_NAMES=iphonesimulator11.4 export SDK_PRODUCT_BUILD_VERSION=15F79 export SDK_VERSION=11.4 export SDK_VERSION_ACTUAL=110400 export SDK_VERSION_MAJOR=110000 export SDK_VERSION_MINOR=400 export SED=/usr/bin/sed export SEPARATE_STRIP=NO export SEPARATE_SYMBOL_EDIT=NO export SET_DIR_MODE_OWNER_GROUP=YES export SET_FILE_MODE_OWNER_GROUP=NO export SHALLOW_BUNDLE=YES export SHARED_DERIVED_FILE_DIR=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/DerivedSources export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks export SHARED_PRECOMPS_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/PrecompiledHeaders export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport export SKIP_INSTALL=NO export SOURCE_ROOT=/Users/maksimrv/www/dart/foo/ios export SRCROOT=/Users/maksimrv/www/dart/foo/ios export STRINGS_FILE_OUTPUT_ENCODING=binary export STRIP_BITCODE_FROM_COPIED_FILES=NO export STRIP_INSTALLED_PRODUCT=YES export STRIP_STYLE=all export STRIP_SWIFT_SYMBOLS=YES export SUPPORTED_DEVICE_FAMILIES=1,2 export SUPPORTED_PLATFORMS="iphonesimulator iphoneos" export SUPPORTS_TEXT_BASED_API=NO export SWIFT_PLATFORM_TARGET_PREFIX=ios export SYMROOT=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Products export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities export SYSTEM_APPS_DIR=/Applications export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices export SYSTEM_DEMOS_DIR=/Applications/Extras export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples" export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library" export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools" export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools" export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools" export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes" export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools" export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools" export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions export SYSTEM_LIBRARY_DIR=/System/Library export TAPI_VERIFY_MODE=ErrorsOnly export TARGETED_DEVICE_FAMILY=1,2 export TARGETNAME=Runner export TARGET_BUILD_DIR=/Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder" export TARGET_NAME=Runner export TARGET_TEMP_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_FILES_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_FILE_DIR=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_ROOT=/Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO export UID=502 export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app export UNSTRIPPED_PRODUCT=NO export USER=maksimrv export USER_APPS_DIR=/Users/maksimrv/Applications export USER_LIBRARY_DIR=/Users/maksimrv/Library export USE_DYNAMIC_NO_PIC=YES export USE_HEADERMAP=YES export USE_HEADER_SYMLINKS=NO export VALIDATE_PRODUCT=NO export VALID_ARCHS="i386 x86_64" export VERBOSE_PBXCP=NO export VERBOSE_SCRIPT_LOGGING=YES export VERSIONING_SYSTEM=apple-generic export VERSIONPLIST_PATH=Runner.app/version.plist export VERSION_INFO_BUILDER=maksimrv export VERSION_INFO_FILE=Runner_vers.c export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner PROJECT:Runner-1\"" export WRAPPER_EXTENSION=app export WRAPPER_NAME=Runner.app export WRAPPER_SUFFIX=.app export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode export XCODE_PRODUCT_BUILD_VERSION=9F2000 export XCODE_VERSION_ACTUAL=0941 export XCODE_VERSION_MAJOR=0900 export XCODE_VERSION_MINOR=0940 export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices export YACC=yacc export arch=x86_64 export variant=normal /bin/sh -c /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh Touch /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app cd /Users/maksimrv/www/dart/foo/ios export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin" /usr/bin/touch -c /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app CodeSign /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app cd /Users/maksimrv/www/dart/foo/ios export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin" Signing Identity: "-" /usr/bin/codesign --force --sign - --entitlements /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent --timestamp=none /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app ** BUILD SUCCEEDED ** [ +10 ms] Xcode build done. [ ] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/maksimrv/www/dart/foo/build/ios -sdk iphonesimulator -arch x86_64 -showBuildSettings [ +837 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/maksimrv/www/dart/foo/build/ios -sdk iphonesimulator -arch x86_64 -showBuildSettings [ ] Build settings from command line: ARCHS = x86_64 BUILD_DIR = /Users/maksimrv/www/dart/foo/build/ios SDKROOT = iphonesimulator11.4 VERBOSE_SCRIPT_LOGGING = YES Build settings for action build and target Runner: ACTION = build AD_HOC_CODE_SIGNING_ALLOWED = YES ALTERNATE_GROUP = staff ALTERNATE_MODE = u+w,go-w,a+rX ALTERNATE_OWNER = maksimrv ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO ALWAYS_SEARCH_USER_PATHS = NO ALWAYS_USE_SEPARATE_HEADERMAPS = NO APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer APPLE_INTERNAL_DIR = /AppleInternal APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools APPLICATION_EXTENSION_API_ONLY = NO APPLY_RULES_IN_COPY_FILES = NO ARCHS = x86_64 ARCHS_STANDARD = i386 x86_64 ARCHS_STANDARD_32_64_BIT = i386 x86_64 ARCHS_STANDARD_32_BIT = i386 ARCHS_STANDARD_64_BIT = x86_64 ARCHS_STANDARD_INCLUDING_64_BIT = i386 x86_64 ARCHS_UNIVERSAL_IPHONE_OS = i386 x86_64 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator BITCODE_GENERATION_MODE = marker BUILD_ACTIVE_RESOURCES_ONLY = NO BUILD_COMPONENTS = headers build BUILD_DIR = /Users/maksimrv/www/dart/foo/build/ios BUILD_ROOT = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Products BUILD_STYLE = BUILD_VARIANTS = normal BUILT_PRODUCTS_DIR = /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator CACHE_ROOT = /var/folders/bj/7c8x11911jgg75k0ywfvb3sw0000gp/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode CCHROOT = /var/folders/bj/7c8x11911jgg75k0ywfvb3sw0000gp/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode CHMOD = /bin/chmod CHOWN = /usr/sbin/chown CLANG_ANALYZER_NONNULL = YES CLANG_CXX_LANGUAGE_STANDARD = gnu++0x CLANG_CXX_LIBRARY = libc++ CLANG_ENABLE_MODULES = YES CLANG_ENABLE_OBJC_ARC = YES CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES CLANG_WARN_BOOL_CONVERSION = YES CLANG_WARN_COMMA = YES CLANG_WARN_CONSTANT_CONVERSION = YES CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR CLANG_WARN_EMPTY_BODY = YES CLANG_WARN_ENUM_CONVERSION = YES CLANG_WARN_INFINITE_RECURSION = YES CLANG_WARN_INT_CONVERSION = YES CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES CLANG_WARN_OBJC_LITERAL_CONVERSION = YES CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR CLANG_WARN_RANGE_LOOP_ANALYSIS = YES CLANG_WARN_STRICT_PROTOTYPES = YES CLANG_WARN_SUSPICIOUS_MOVE = YES CLANG_WARN_UNREACHABLE_CODE = YES CLANG_WARN__DUPLICATE_METHOD_MATCH = YES CLASS_FILE_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses CLEAN_PRECOMPS = YES CLONE_HEADERS = NO CODESIGNING_FOLDER_PATH = /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app CODE_SIGNING_ALLOWED = YES CODE_SIGNING_REQUIRED = YES CODE_SIGN_CONTEXT_CLASS = XCiPhoneSimulatorCodeSignContext CODE_SIGN_IDENTITY = - CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES COLOR_DIAGNOSTICS = NO COMBINE_HIDPI_IMAGES = NO COMPILER_INDEX_STORE_ENABLE = Default COMPOSITE_SDK_DIRS = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/CompositeSDKs COMPRESS_PNG_FILES = YES CONFIGURATION = Debug CONFIGURATION_BUILD_DIR = /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator CONFIGURATION_TEMP_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator CONTENTS_FOLDER_PATH = Runner.app COPYING_PRESERVES_HFS_DATA = NO COPY_HEADERS_RUN_UNIFDEF = NO COPY_PHASE_STRIP = NO COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES CORRESPONDING_DEVICE_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos CORRESPONDING_DEVICE_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk CORRESPONDING_DEVICE_SDK_NAME = iphoneos11.4 CP = /bin/cp CREATE_INFOPLIST_SECTION_IN_BINARY = NO CURRENT_ARCH = x86_64 CURRENT_PROJECT_VERSION = 1 CURRENT_VARIANT = normal DEAD_CODE_STRIPPING = YES DEBUGGING_SYMBOLS = YES DEBUG_INFORMATION_FORMAT = dwarf DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0 DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions DEFINES_MODULE = NO DEPLOYMENT_LOCATION = NO DEPLOYMENT_POSTPROCESSING = NO DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_CLANG_FLAG_NAME = mios-simulator-version-min DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -mios-simulator-version-min= DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 DERIVED_FILES_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources DERIVED_FILE_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources DERIVED_SOURCES_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr DEVELOPMENT_LANGUAGE = English DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation DO_HEADER_SCANNING_IN_JAM = NO DSTROOT = /tmp/Runner.dst DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain DWARF_DSYM_FILE_NAME = Runner.app.dSYM DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO DWARF_DSYM_FOLDER_PATH = /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator EFFECTIVE_PLATFORM_NAME = -iphonesimulator EMBEDDED_CONTENT_CONTAINS_SWIFT = NO EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO ENABLE_BITCODE = NO ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES ENABLE_HEADER_DEPENDENCIES = YES ENABLE_ON_DEMAND_RESOURCES = YES ENABLE_STRICT_OBJC_MSGSEND = YES ENABLE_TESTABILITY = YES ENTITLEMENTS_REQUIRED = YES EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj EXECUTABLES_FOLDER_PATH = Runner.app/Executables EXECUTABLE_FOLDER_PATH = Runner.app EXECUTABLE_NAME = Runner EXECUTABLE_PATH = Runner.app/Runner EXPANDED_CODE_SIGN_IDENTITY = EXPANDED_CODE_SIGN_IDENTITY_NAME = EXPANDED_PROVISIONING_PROFILE = FILE_LIST = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList FIXED_FILES_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles FLUTTER_APPLICATION_PATH = /Users/maksimrv/www/dart/foo FLUTTER_BUILD_DIR = build FLUTTER_BUILD_MODE = debug FLUTTER_BUILD_NAME = 1.0.0 FLUTTER_BUILD_NUMBER = 1 FLUTTER_FRAMEWORK_DIR = /Users/maksimrv/www/dart/flutter/bin/cache/artifacts/engine/ios FLUTTER_ROOT = /Users/maksimrv/www/dart/flutter FLUTTER_TARGET = /Users/maksimrv/www/dart/foo/lib/main.dart FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks FRAMEWORK_FLAG_PREFIX = -framework FRAMEWORK_SEARCH_PATHS = /Users/maksimrv/www/dart/foo/ios/Flutter FRAMEWORK_VERSION = A FULL_PRODUCT_NAME = Runner.app GCC3_VERSION = 3.3 GCC_C_LANGUAGE_STANDARD = gnu99 GCC_DYNAMIC_NO_PIC = NO GCC_INLINES_ARE_PRIVATE_EXTERN = YES GCC_NO_COMMON_BLOCKS = YES GCC_OBJC_LEGACY_DISPATCH = YES GCC_OPTIMIZATION_LEVEL = 0 GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++ GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1 GCC_SYMBOLS_PRIVATE_EXTERN = NO GCC_TREAT_WARNINGS_AS_ERRORS = NO GCC_VERSION = com.apple.compilers.llvm.clang.1_0 GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0 GCC_WARN_64_TO_32_BIT_CONVERSION = YES GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR GCC_WARN_UNDECLARED_SELECTOR = YES GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE GCC_WARN_UNUSED_FUNCTION = YES GCC_WARN_UNUSED_VARIABLE = YES GENERATE_MASTER_OBJECT_FILE = NO GENERATE_PKGINFO_FILE = YES GENERATE_PROFILING_CODE = NO GENERATE_TEXT_BASED_STUBS = NO GID = 20 GROUP = staff HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES HEADERMAP_INCLUDES_PROJECT_HEADERS = YES HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES HEADERMAP_USES_VFS = NO HIDE_BITCODE_SYMBOLS = YES HOME = /Users/maksimrv ICONV = /usr/bin/iconv INFOPLIST_EXPAND_BUILD_SETTINGS = YES INFOPLIST_FILE = Runner/Info.plist INFOPLIST_OUTPUT_FORMAT = binary INFOPLIST_PATH = Runner.app/Info.plist INFOPLIST_PREPROCESS = NO INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings INLINE_PRIVATE_FRAMEWORKS = NO INSTALLHDRS_COPY_PHASE = NO INSTALLHDRS_SCRIPT_PHASE = NO INSTALL_DIR = /tmp/Runner.dst/Applications INSTALL_GROUP = staff INSTALL_MODE_FLAG = u+w,go-w,a+rX INSTALL_OWNER = maksimrv INSTALL_PATH = /Applications INSTALL_ROOT = /tmp/Runner.dst IPHONEOS_DEPLOYMENT_TARGET = 8.0 JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8 JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub JAVA_ARCHIVE_CLASSES = YES JAVA_ARCHIVE_TYPE = JAR JAVA_COMPILER = /usr/bin/javac JAVA_FOLDER_PATH = Runner.app/Java JAVA_FRAMEWORK_RESOURCES_DIRS = Resources JAVA_JAR_FLAGS = cv JAVA_SOURCE_SUBDIR = . JAVA_USE_DEPENDENCIES = YES JAVA_ZIP_FLAGS = -urg JIKES_DEFAULT_FLAGS = +E +OLDCSO KEEP_PRIVATE_EXTERNS = NO LD_DEPENDENCY_INFO_FILE = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat LD_GENERATE_MAP_FILE = NO LD_MAP_FILE_PATH = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt LD_NO_PIE = NO LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer LEX = lex LIBRARY_FLAG_NOSPACE = YES LIBRARY_FLAG_PREFIX = -l LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions LIBRARY_SEARCH_PATHS = /Users/maksimrv/www/dart/foo/ios/Flutter LINKER_DISPLAYS_MANGLED_NAMES = NO LINK_FILE_LIST_normal_x86_64 = LINK_WITH_STANDARD_LIBRARIES = YES LOCALIZABLE_CONTENT_DIR = LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString LOCAL_ADMIN_APPS_DIR = /Applications/Utilities LOCAL_APPS_DIR = /Applications LOCAL_DEVELOPER_DIR = /Library/Developer LOCAL_LIBRARY_DIR = /Library LOCROOT = LOCSYMROOT = MACH_O_TYPE = mh_execute MAC_OS_X_PRODUCT_BUILD_VERSION = 17F77 MAC_OS_X_VERSION_ACTUAL = 101305 MAC_OS_X_VERSION_MAJOR = 101300 MAC_OS_X_VERSION_MINOR = 1305 METAL_LIBRARY_FILE_BASE = default METAL_LIBRARY_OUTPUT_DIR = /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/Runner.app MODULE_CACHE_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/ModuleCache.noindex MTL_ENABLE_DEBUG_INFO = YES NATIVE_ARCH = i386 NATIVE_ARCH_32_BIT = i386 NATIVE_ARCH_64_BIT = x86_64 NATIVE_ARCH_ACTUAL = x86_64 NO_COMMON = YES OBJC_ABI_VERSION = 2 OBJECT_FILE_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects OBJECT_FILE_DIR_normal = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal OBJROOT = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex ONLY_ACTIVE_ARCH = YES OS = MACOS OSAC = /usr/bin/osacompile PACKAGE_TYPE = com.apple.package-type.wrapper.application PASCAL_STRINGS = YES PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Users/maksimrv/.sdkman/candidates/kotlin/current/bin:/Users/maksimrv/.dvm/darts/2.0.0-dev.54.0/bin:/Users/maksimrv/www/dart/flutter/bin:/Users/maksimrv/Library/Haskell/bin:/Users/maksimrv/tmp/chrome/depot_tools:/usr/local/var/pyenv/shims:/Users/maksimrv/.dotfiles/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/Users/maksimrv/.nvm/versions/node/v7.6.0/bin:/Users/maksimrv/.dotfiles/bin:/Users/maksimrv/.go/bin:/Users/maksimrv/.gem/ruby/2.2.0/bin:/Users/maksimrv/local/bin:/Users/maksimrv/bin:/Users/maksimrv/.dotfiles/export/_fzf.symlink/bin:/Users/maksimrv/.pub-cache/bin PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist PFE_FILE_C_DIALECTS = objective-c PKGINFO_FILE_PATH = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo PKGINFO_PATH = Runner.app/PkgInfo PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform PLATFORM_DISPLAY_NAME = iOS Simulator PLATFORM_NAME = iphonesimulator PLATFORM_PREFERRED_ARCH = x86_64 PLIST_FILE_OUTPUT_FORMAT = binary PLUGINS_FOLDER_PATH = Runner.app/PlugIns PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES PRECOMP_DESTINATION_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders PRODUCT_BUNDLE_IDENTIFIER = com.example.foo PRODUCT_MODULE_NAME = Runner PRODUCT_NAME = Runner PRODUCT_SETTINGS_PATH = /Users/maksimrv/www/dart/foo/ios/Runner/Info.plist PRODUCT_TYPE = com.apple.product-type.application PROFILING_CODE = NO PROJECT = Runner PROJECT_DERIVED_FILE_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/DerivedSources PROJECT_DIR = /Users/maksimrv/www/dart/foo/ios PROJECT_FILE_PATH = /Users/maksimrv/www/dart/foo/ios/Runner.xcodeproj PROJECT_NAME = Runner PROJECT_TEMP_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build PROJECT_TEMP_ROOT = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES REMOVE_CVS_FROM_RESOURCES = YES REMOVE_GIT_FROM_RESOURCES = YES REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES REMOVE_HG_FROM_RESOURCES = YES REMOVE_SVN_FROM_RESOURCES = YES REZ_COLLECTOR_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources REZ_OBJECTS_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO SCRIPTS_FOLDER_PATH = Runner.app/Scripts SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk SDK_DIR_iphonesimulator11_4 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk SDK_NAME = iphonesimulator11.4 SDK_NAMES = iphonesimulator11.4 SDK_PRODUCT_BUILD_VERSION = 15F79 SDK_VERSION = 11.4 SDK_VERSION_ACTUAL = 110400 SDK_VERSION_MAJOR = 110000 SDK_VERSION_MINOR = 400 SED = /usr/bin/sed SEPARATE_STRIP = NO SEPARATE_SYMBOL_EDIT = NO SET_DIR_MODE_OWNER_GROUP = YES SET_FILE_MODE_OWNER_GROUP = NO SHALLOW_BUNDLE = YES SHARED_DERIVED_FILE_DIR = /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator/DerivedSources SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks SHARED_PRECOMPS_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/PrecompiledHeaders SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport SKIP_INSTALL = NO SOURCE_ROOT = /Users/maksimrv/www/dart/foo/ios SRCROOT = /Users/maksimrv/www/dart/foo/ios STRINGS_FILE_OUTPUT_ENCODING = binary STRIP_BITCODE_FROM_COPIED_FILES = NO STRIP_INSTALLED_PRODUCT = YES STRIP_STYLE = all STRIP_SWIFT_SYMBOLS = YES SUPPORTED_DEVICE_FAMILIES = 1,2 SUPPORTED_PLATFORMS = iphonesimulator iphoneos SUPPORTS_TEXT_BASED_API = NO SWIFT_PLATFORM_TARGET_PREFIX = ios SYMROOT = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Products SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities SYSTEM_APPS_DIR = /Applications SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices SYSTEM_DEMOS_DIR = /Applications/Extras SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities SYSTEM_DOCUMENTATION_DIR = /Library/Documentation SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions SYSTEM_LIBRARY_DIR = /System/Library TAPI_VERIFY_MODE = ErrorsOnly TARGETED_DEVICE_FAMILY = 1,2 TARGETNAME = Runner TARGET_BUILD_DIR = /Users/maksimrv/www/dart/foo/build/ios/Debug-iphonesimulator TARGET_NAME = Runner TARGET_TEMP_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build TEMP_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build TEMP_FILES_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build TEMP_FILE_DIR = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build TEMP_ROOT = /Users/maksimrv/Library/Developer/Xcode/DerivedData/Runner-hhagcmlsekhlveerpboevfibclrs/Build/Intermediates.noindex TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO UID = 502 UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app UNSTRIPPED_PRODUCT = NO USER = maksimrv USER_APPS_DIR = /Users/maksimrv/Applications USER_LIBRARY_DIR = /Users/maksimrv/Library USE_DYNAMIC_NO_PIC = YES USE_HEADERMAP = YES USE_HEADER_SYMLINKS = NO VALIDATE_PRODUCT = NO VALID_ARCHS = i386 x86_64 VERBOSE_PBXCP = NO VERBOSE_SCRIPT_LOGGING = YES VERSIONING_SYSTEM = apple-generic VERSIONPLIST_PATH = Runner.app/version.plist VERSION_INFO_BUILDER = maksimrv VERSION_INFO_FILE = Runner_vers.c VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1" WRAPPER_EXTENSION = app WRAPPER_NAME = Runner.app WRAPPER_SUFFIX = .app WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode XCODE_PRODUCT_BUILD_VERSION = 9F2000 XCODE_VERSION_ACTUAL = 0941 XCODE_VERSION_MAJOR = 0900 XCODE_VERSION_MINOR = 0940 XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices YACC = yacc arch = x86_64 variant = normal [ +255 ms] /usr/bin/xcrun simctl install 539CC886-1F0F-477F-9C10-050010071AAE /Users/maksimrv/www/dart/foo/build/ios/iphonesimulator/Runner.app [ +689 ms] /usr/bin/xcrun simctl launch 539CC886-1F0F-477F-9C10-050010071AAE com.example.foo --enable-dart-profiling --enable-checked-mode --observatory-port=8100 [ +252 ms] com.example.foo: 61409 [ ] Waiting for observatory port to be available... [ +144 ms] [DEVICE LOG] 2018-06-17 01:39:14.001194+0300 localhost Runner[61409]: (Runner) Created Activity ID: 0x180f71, Description: Loading Preferences From System CFPrefsD For Search List [ +1 ms] [DEVICE LOG] 2018-06-17 01:39:14.001194+0300 localhost Runner[61409]: (Runner) Created Activity ID: 0x180f70, Description: Loading Preferences From System CFPrefsD For Search List [ +6 ms] [DEVICE LOG] 2018-06-17 01:39:14.010323+0300 localhost Runner[61409]: (Runner) Created Activity ID: 0x180f72, Description: Loading Preferences From System CFPrefsD For Search List [ +4 ms] [DEVICE LOG] 2018-06-17 01:39:14.015245+0300 localhost Runner[61409]: (libAccessibility.dylib) [com.apple.Accessibility:AccessibilitySupport] Retrieving resting unlock: 0 [ +225 ms] [DEVICE LOG] 2018-06-17 01:39:14.241074+0300 localhost Runner[61409]: (UIKit) You've implemented -[&lt;UIApplicationDelegate&gt; application:performFetchWithCompletionHandler:], but you still need to add "fetch" to the list of your supported UIBackgroundModes in your Info.plist. [ ] [DEVICE LOG] 2018-06-17 01:39:14.241292+0300 localhost Runner[61409]: (UIKit) You've implemented -[&lt;UIApplicationDelegate&gt; application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of your supported UIBackgroundModes in your Info.plist. [ +36 ms] [DEVICE LOG] 2018-06-17 01:39:14.278134+0300 localhost Runner[61409]: (Flutter) flutter: Observatory listening on http://127.0.0.1:8100/ [ +4 ms] Observatory URL on device: http://127.0.0.1:8100/ [ +6 ms] Connecting to service protocol: http://127.0.0.1:8100/ [ +169 ms] Successfully connected to service protocol: http://127.0.0.1:8100/ [ +4 ms] getVM: {} [ +11 ms] getIsolate: {isolateId: isolates/885245854} [ +2 ms] _flutter.listViews: {isolateId: isolates/885245854} [ +36 ms] DevFS: Creating new filesystem on the device (null) [ ] _createDevFS: {fsName: foo} [ +31 ms] DevFS: Created new filesystem on the device (file:///Users/maksimrv/Library/Developer/CoreSimulator/Devices/539CC886-1F0F-477F-9C10-050010071AAE/data/Containers/Data/Application/1DF24AE9-9883-4234-8044-607B5D3EE5D9/tmp/fooXYDuRX/foo/) [ +1 ms] Updating assets [ +183 ms] Syncing files to device iPhone X... [ +10 ms] DevFS: Starting sync from LocalDirectory: '/Users/maksimrv/www/dart/foo' [ ] Scanning project files [ +4 ms] Scanning package files [ +113 ms] Scanning asset files [ ] Scanning for deleted files [ +13 ms] Compiling dart to kernel with 416 updated files [ +2 ms] /Users/maksimrv/www/dart/flutter/bin/cache/dart-sdk/bin/dart /Users/maksimrv/www/dart/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/maksimrv/www/dart/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --strong --target=flutter --output-dill build/app.dill --packages /Users/maksimrv/www/dart/foo/.packages --filesystem-scheme org-dartlang-root [+3466 ms] Updating files [ +589 ms] DevFS: Sync finished [ ] Synced 13.7MB. [ +5 ms] _flutter.listViews: {isolateId: isolates/885245854} [ +1 ms] Connected to _flutterView/0x7ffe4e405e48. [ ] 🔥 To hot reload changes while running, press "r". To hot restart (and rebuild state), press "R". [ ] An Observatory debugger and profiler on iPhone X is available at: http://127.0.0.1:8100/ [ ] For a more detailed help message, press "h". To quit, press "q". [+2479 ms] Initializing hot reload... [ +3 ms] Refreshing active FlutterViews before reloading. [ ] _flutter.listViews: {isolateId: isolates/885245854} [ +401 ms] Syncing files to device iPhone X... [ ] DevFS: Starting sync from LocalDirectory: '/Users/maksimrv/www/dart/foo' [ ] Scanning project files [ +1 ms] Scanning package files [ +62 ms] Scanning asset files [ ] Scanning for deleted files [ +4 ms] Compiling dart to kernel with 1 updated files [ +16 ms] compiler message: lib/main.dart:71:23: Error: A value of type 'dart.core::String' can't be assigned to a variable of type '#lib1::Widget'. [ ] compiler message: Try changing the type of the left hand side, or casting the right hand side to '#lib1::Widget'. [ ] compiler message: title: widget.title, [ ] compiler message: ^ [ +2 ms] Updating files [ +5 ms] DevFS: Sync finished [ ] Synced 0.0MB. [ +1 ms] _flutter.setAssetBundlePath: {isolateId: isolates/885245854, viewId: _flutterView/0x7ffe4e405e48, assetDirectory: /Users/maksimrv/Library/Developer/CoreSimulator/Devices/539CC886-1F0F-477F-9C10-050010071AAE/data/Containers/Data/Application/1DF24AE9-9883-4234-8044-607B5D3EE5D9/tmp/fooXYDuRX/foo/build/flutter_assets} [ +4 ms] _reloadSources: {pause: false, rootLibUri: /Users/maksimrv/Library/Developer/CoreSimulator/Devices/539CC886-1F0F-477F-9C10-050010071AAE/data/Containers/Data/Application/1DF24AE9-9883-4234-8044-607B5D3EE5D9/tmp/fooXYDuRX/foo/lib/main.dart.dill, packagesUri: /Users/maksimrv/Library/Developer/CoreSimulator/Devices/539CC886-1F0F-477F-9C10-050010071AAE/data/Containers/Data/Application/1DF24AE9-9883-4234-8044-607B5D3EE5D9/tmp/fooXYDuRX/foo/.packages, isolateId: isolates/885245854} [ +48 ms] reloaded 1 of 391 libraries [ ] Sending reload events to iPhone X [ ] Sending reload event to "main.dart$main-885245854" [ ] getIsolate: {isolateId: isolates/885245854} [ +11 ms] _flutter.listViews: {isolateId: isolates/885245854} [ +1 ms] Evicting dirty assets [ +1 ms] ext.flutter.evict: {value: AssetManifest.json, isolateId: isolates/885245854} [ +6 ms] ext.flutter.evict: {value: FontManifest.json, isolateId: isolates/885245854} [ +3 ms] ext.flutter.evict: {value: LICENSE, isolateId: isolates/885245854} [ +1 ms] Reassembling application [ ] ext.flutter.reassemble: {isolateId: isolates/885245854} [ +26 ms] [DEVICE LOG] 2018-06-17 01:39:22.027940+0300 localhost Runner[61409]: (Flutter) flutter: ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════════════════════════ [ +4 ms] flutter: ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════════════════════════ [ +1 ms] [DEVICE LOG] 2018-06-17 01:39:22.034240+0300 localhost Runner[61409]: (Flutter) flutter: The following _CompileTimeError was thrown building MyHomePage(dirty, state: [ ] flutter: The following _CompileTimeError was thrown building MyHomePage(dirty, state: [ ] [DEVICE LOG] 2018-06-17 01:39:22.034342+0300 localhost Runner[61409]: (Flutter) flutter: _MyHomePageState#50de5): [ ] flutter: _MyHomePageState#50de5): [ ] [DEVICE LOG] 2018-06-17 01:39:22.034426+0300 localhost Runner[61409]: (Flutter) flutter: 'file:///Users/maksimrv/www/dart/foo/lib/main.dart': error: line 71 pos 23: lib/main.dart:71:23: [ ] flutter: 'file:///Users/maksimrv/www/dart/foo/lib/main.dart': error: line 71 pos 23: lib/main.dart:71:23: [ ] [DEVICE LOG] 2018-06-17 01:39:22.034515+0300 localhost Runner[61409]: (Flutter) flutter: Error: A value of type 'dart.core::String' can't be assigned to a variable of type '#lib1::Widget'. [ ] flutter: Error: A value of type 'dart.core::String' can't be assigned to a variable of type '#lib1::Widget'. [ ] [DEVICE LOG] 2018-06-17 01:39:22.034608+0300 localhost Runner[61409]: (Flutter) flutter: Try changing the type of the left hand side, or casting the right hand side to '#lib1::Widget'. [ ] [DEVICE LOG] 2018-06-17 01:39:22.034695+0300 localhost Runner[61409]: (Flutter) flutter: title: widget.title, [ ] flutter: Try changing the type of the left hand side, or casting the right hand side to '#lib1::Widget'. [ ] flutter: title: widget.title, [ ] [DEVICE LOG] 2018-06-17 01:39:22.034778+0300 localhost Runner[61409]: (Flutter) flutter: ^ [ ] flutter: ^ [ ] [DEVICE LOG] 2018-06-17 01:39:22.034853+0300 localhost Runner[61409]: (Flutter) flutter: title: widget.title, [ ] [DEVICE LOG] 2018-06-17 01:39:22.034924+0300 localhost Runner[61409]: (Flutter) flutter: ^ [ ] flutter: title: widget.title, [ ] flutter: ^ [ ] [DEVICE LOG] 2018-06-17 01:39:22.036543+0300 localhost Runner[61409]: (Flutter) flutter: [ ] flutter: [ ] [DEVICE LOG] 2018-06-17 01:39:22.036795+0300 localhost Runner[61409]: (Flutter) flutter: When the exception was thrown, this was the stack: [ ] flutter: When the exception was thrown, this was the stack: [ +4 ms] [DEVICE LOG] 2018-06-17 01:39:22.041164+0300 localhost Runner[61409]: (Flutter) flutter: #0 StatefulElement.build (package:flutter/src/widgets/framework.dart:3730:27) [ ] flutter: #0 StatefulElement.build (package:flutter/src/widgets/framework.dart:3730:27) [ ] [DEVICE LOG] 2018-06-17 01:39:22.041297+0300 localhost Runner[61409]: (Flutter) flutter: #1 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3642:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.041412+0300 localhost Runner[61409]: (Flutter) flutter: #2 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #1 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3642:15) [ ] flutter: #2 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.041544+0300 localhost Runner[61409]: (Flutter) flutter: #3 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.041662+0300 localhost Runner[61409]: (Flutter) flutter: #4 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #3 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] flutter: #4 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.041788+0300 localhost Runner[61409]: (Flutter) flutter: #5 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] [DEVICE LOG] 2018-06-17 01:39:22.041909+0300 localhost Runner[61409]: (Flutter) flutter: #6 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #5 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] flutter: #6 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.042075+0300 localhost Runner[61409]: (Flutter) flutter: #7 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.042192+0300 localhost Runner[61409]: (Flutter) flutter: #8 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #7 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #8 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.042316+0300 localhost Runner[61409]: (Flutter) flutter: #9 StatelessElement.update (package:flutter/src/widgets/framework.dart:3702:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.042446+0300 localhost Runner[61409]: (Flutter) flutter: #10 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #9 StatelessElement.update (package:flutter/src/widgets/framework.dart:3702:5) [ ] flutter: #10 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.042574+0300 localhost Runner[61409]: (Flutter) flutter: #11 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] flutter: #11 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] [DEVICE LOG] 2018-06-17 01:39:22.042685+0300 localhost Runner[61409]: (Flutter) flutter: #12 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #12 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.042853+0300 localhost Runner[61409]: (Flutter) flutter: #13 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] flutter: #13 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] [DEVICE LOG] 2018-06-17 01:39:22.042980+0300 localhost Runner[61409]: (Flutter) flutter: #14 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #14 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.043111+0300 localhost Runner[61409]: (Flutter) flutter: #15 RenderObjectElement.updateChildren (package:flutter/src/widgets/framework.dart:4379:32) [ ] flutter: #15 RenderObjectElement.updateChildren (package:flutter/src/widgets/framework.dart:4379:32) [ ] [DEVICE LOG] 2018-06-17 01:39:22.043249+0300 localhost Runner[61409]: (Flutter) flutter: #16 MultiChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4769:17) [ ] flutter: #16 MultiChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4769:17) [ ] [DEVICE LOG] 2018-06-17 01:39:22.043387+0300 localhost Runner[61409]: (Flutter) flutter: #17 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #17 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.043507+0300 localhost Runner[61409]: (Flutter) flutter: #18 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #18 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.043680+0300 localhost Runner[61409]: (Flutter) flutter: #19 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #19 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.043822+0300 localhost Runner[61409]: (Flutter) flutter: #20 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.044028+0300 localhost Runner[61409]: (Flutter) flutter: #21 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #20 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] flutter: #21 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.044208+0300 localhost Runner[61409]: (Flutter) flutter: #22 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] [DEVICE LOG] 2018-06-17 01:39:22.044367+0300 localhost Runner[61409]: (Flutter) flutter: #23 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #22 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] flutter: #23 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.044665+0300 localhost Runner[61409]: (Flutter) flutter: #24 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.044849+0300 localhost Runner[61409]: (Flutter) flutter: #25 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #24 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #25 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.044988+0300 localhost Runner[61409]: (Flutter) flutter: #26 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.045203+0300 localhost Runner[61409]: (Flutter) flutter: #27 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #26 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] flutter: #27 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.045477+0300 localhost Runner[61409]: (Flutter) flutter: #28 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] [DEVICE LOG] 2018-06-17 01:39:22.045733+0300 localhost Runner[61409]: (Flutter) flutter: #29 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #28 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] flutter: #29 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.045875+0300 localhost Runner[61409]: (Flutter) flutter: #30 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.045998+0300 localhost Runner[61409]: (Flutter) flutter: #31 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #30 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #31 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.046230+0300 localhost Runner[61409]: (Flutter) flutter: #32 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] flutter: #32 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.046442+0300 localhost Runner[61409]: (Flutter) flutter: #33 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.046635+0300 localhost Runner[61409]: (Flutter) flutter: #34 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] flutter: #33 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #34 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] [DEVICE LOG] 2018-06-17 01:39:22.046935+0300 localhost Runner[61409]: (Flutter) flutter: #35 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #35 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.047068+0300 localhost Runner[61409]: (Flutter) flutter: #36 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #36 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.047320+0300 localhost Runner[61409]: (Flutter) flutter: #37 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #37 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.047499+0300 localhost Runner[61409]: (Flutter) flutter: #38 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] flutter: #38 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.047659+0300 localhost Runner[61409]: (Flutter) flutter: #39 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #39 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.047886+0300 localhost Runner[61409]: (Flutter) flutter: #40 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #40 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.048049+0300 localhost Runner[61409]: (Flutter) flutter: #41 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.048233+0300 localhost Runner[61409]: (Flutter) flutter: #42 StatelessElement.update (package:flutter/src/widgets/framework.dart:3702:5) [ ] flutter: #41 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #42 StatelessElement.update (package:flutter/src/widgets/framework.dart:3702:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.048385+0300 localhost Runner[61409]: (Flutter) flutter: #43 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.048566+0300 localhost Runner[61409]: (Flutter) flutter: #44 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #43 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #44 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.048815+0300 localhost Runner[61409]: (Flutter) flutter: #45 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #45 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.048986+0300 localhost Runner[61409]: (Flutter) flutter: #46 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] flutter: #46 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.049286+0300 localhost Runner[61409]: (Flutter) flutter: #47 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #47 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.049448+0300 localhost Runner[61409]: (Flutter) flutter: #48 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] flutter: #48 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] [DEVICE LOG] 2018-06-17 01:39:22.049644+0300 localhost Runner[61409]: (Flutter) flutter: #49 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.049830+0300 localhost Runner[61409]: (Flutter) flutter: #50 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #49 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #50 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.050017+0300 localhost Runner[61409]: (Flutter) flutter: #51 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.050237+0300 localhost Runner[61409]: (Flutter) flutter: #52 ProxyElement.update (package:flutter/src/widgets/framework.dart:3909:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.050442+0300 localhost Runner[61409]: (Flutter) flutter: #53 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #51 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #52 ProxyElement.update (package:flutter/src/widgets/framework.dart:3909:5) [ ] flutter: #53 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.050642+0300 localhost Runner[61409]: (Flutter) flutter: #54 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] flutter: #54 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] [DEVICE LOG] 2018-06-17 01:39:22.050885+0300 localhost Runner[61409]: (Flutter) flutter: #55 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.051011+0300 localhost Runner[61409]: (Flutter) flutter: #56 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #55 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #56 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.051282+0300 localhost Runner[61409]: (Flutter) flutter: #57 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #57 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.051425+0300 localhost Runner[61409]: (Flutter) flutter: #58 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] flutter: #58 StatefulElement.update (package:flutter/src/widgets/framework.dart:3799:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.051581+0300 localhost Runner[61409]: (Flutter) flutter: #59 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #59 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.051789+0300 localhost Runner[61409]: (Flutter) flutter: #60 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.051973+0300 localhost Runner[61409]: (Flutter) flutter: #61 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #60 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #61 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.052154+0300 localhost Runner[61409]: (Flutter) flutter: #62 StatelessElement.update (package:flutter/src/widgets/framework.dart:3702:5) [ ] flutter: #62 StatelessElement.update (package:flutter/src/widgets/framework.dart:3702:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.052322+0300 localhost Runner[61409]: (Flutter) flutter: #63 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #63 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.052516+0300 localhost Runner[61409]: (Flutter) flutter: #64 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] [DEVICE LOG] 2018-06-17 01:39:22.052673+0300 localhost Runner[61409]: (Flutter) flutter: #65 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #64 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4661:14) [ ] flutter: #65 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.052863+0300 localhost Runner[61409]: (Flutter) flutter: #66 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #66 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.053052+0300 localhost Runner[61409]: (Flutter) flutter: #67 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #67 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.053233+0300 localhost Runner[61409]: (Flutter) flutter: #68 ProxyElement.update (package:flutter/src/widgets/framework.dart:3909:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.053438+0300 localhost Runner[61409]: (Flutter) flutter: #69 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] flutter: #68 ProxyElement.update (package:flutter/src/widgets/framework.dart:3909:5) [ ] flutter: #69 Element.updateChild (package:flutter/src/widgets/framework.dart:2699:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.053778+0300 localhost Runner[61409]: (Flutter) flutter: #70 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] [DEVICE LOG] 2018-06-17 01:39:22.053955+0300 localhost Runner[61409]: (Flutter) flutter: #71 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.054150+0300 localhost Runner[61409]: (Flutter) flutter: #72 BuildOwner.buildScope (package:flutter/src/widgets/framework.dart:2242:33) [ ] flutter: #70 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3653:16) [ ] flutter: #71 Element.rebuild (package:flutter/src/widgets/framework.dart:3495:5) [ ] flutter: #72 BuildOwner.buildScope (package:flutter/src/widgets/framework.dart:2242:33) [ ] [DEVICE LOG] 2018-06-17 01:39:22.054330+0300 localhost Runner[61409]: (Flutter) flutter: #73 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding&amp;PaintingBinding&amp;RendererBinding&amp;WidgetsBinding.drawFrame (package:flutter/src/widgets/binding.dart:626:20) [ ] flutter: #73 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding&amp;PaintingBinding&amp;RendererBinding&amp;WidgetsBinding.drawFrame (package:flutter/src/widgets/binding.dart:626:20) [ ] [DEVICE LOG] 2018-06-17 01:39:22.054457+0300 localhost Runner[61409]: (Flutter) flutter: #74 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding&amp;PaintingBinding&amp;RendererBinding._handlePersistentFrameCallback (package:flutter/src/rendering/binding.dart:208:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.054804+0300 localhost Runner[61409]: (Flutter) flutter: #75 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding._invokeFrameCallback (package:flutter/src/scheduler/binding.dart:990:15) [ ] flutter: #74 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding&amp;PaintingBinding&amp;RendererBinding._handlePersistentFrameCallback (package:flutter/src/rendering/binding.dart:208:5) [ ] flutter: #75 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding._invokeFrameCallback (package:flutter/src/scheduler/binding.dart:990:15) [ ] [DEVICE LOG] 2018-06-17 01:39:22.054979+0300 localhost Runner[61409]: (Flutter) flutter: #76 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding.handleDrawFrame (package:flutter/src/scheduler/binding.dart:930:9) [ ] [DEVICE LOG] 2018-06-17 01:39:22.056017+0300 localhost Runner[61409]: (Flutter) flutter: #77 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding.scheduleWarmUpFrame.&lt;anonymous closure&gt; (package:flutter/src/scheduler/binding.dart:751:7) [ ] [DEVICE LOG] 2018-06-17 01:39:22.056141+0300 localhost Runner[61409]: (Flutter) flutter: #79 _Timer._runTimers (dart:isolate/runtime/libtimer_impl.dart:382:19) [ ] [DEVICE LOG] 2018-06-17 01:39:22.056284+0300 localhost Runner[61409]: (Flutter) flutter: #80 _Timer._handleMessage (dart:isolate/runtime/libtimer_impl.dart:416:5) [ ] flutter: #76 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding.handleDrawFrame (package:flutter/src/scheduler/binding.dart:930:9) [ ] flutter: #77 _WidgetsFlutterBinding&amp;BindingBase&amp;GestureBinding&amp;ServicesBinding&amp;SchedulerBinding.scheduleWarmUpFrame.&lt;anonymous closure&gt; (package:flutter/src/scheduler/binding.dart:751:7) [ ] flutter: #79 _Timer._runTimers (dart:isolate/runtime/libtimer_impl.dart:382:19) [ ] flutter: #80 _Timer._handleMessage (dart:isolate/runtime/libtimer_impl.dart:416:5) [ ] [DEVICE LOG] 2018-06-17 01:39:22.056423+0300 localhost Runner[61409]: (Flutter) flutter: #81 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:165:12) [ ] [DEVICE LOG] 2018-06-17 01:39:22.056561+0300 localhost Runner[61409]: (Flutter) flutter: (elided one frame from package dart:async) [ ] [DEVICE LOG] 2018-06-17 01:39:22.056811+0300 localhost Runner[61409]: (Flutter) flutter: ════════════════════════════════════════════════════════════════════════════════════════════════════ [ ] flutter: #81 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:165:12) [ ] flutter: (elided one frame from package dart:async) [ ] flutter: ════════════════════════════════════════════════════════════════════════════════════════════════════ [ +38 ms] ext.ui.window.scheduleFrame: {isolateId: isolates/885245854} [ +3 ms] Hot reload performed in 672ms. [ ] Reloaded 1 of 391 libraries in 679ms. [+12414 ms] Performing hot reload... [ ] Refreshing active FlutterViews before reloading. [ ] _flutter.listViews: {isolateId: isolates/885245854} [ +288 ms] Syncing files to device iPhone X... [ ] DevFS: Starting sync from LocalDirectory: '/Users/maksimrv/www/dart/foo' [ ] Scanning project files [ ] Scanning package files [ +52 ms] Scanning asset files [ ] Scanning for deleted files [ +4 ms] Compiling dart to kernel with 1 updated files [ +9 ms] Updating files [ +5 ms] DevFS: Sync finished [ ] Synced 0.0MB. [ ] _reloadSources: {pause: false, rootLibUri: /Users/maksimrv/Library/Developer/CoreSimulator/Devices/539CC886-1F0F-477F-9C10-050010071AAE/data/Containers/Data/Application/1DF24AE9-9883-4234-8044-607B5D3EE5D9/tmp/fooXYDuRX/foo/lib/main.dart.dill, packagesUri: /Users/maksimrv/Library/Developer/CoreSimulator/Devices/539CC886-1F0F-477F-9C10-050010071AAE/data/Containers/Data/Application/1DF24AE9-9883-4234-8044-607B5D3EE5D9/tmp/fooXYDuRX/foo/.packages, isolateId: isolates/885245854} [ +45 ms] reloaded 1 of 391 libraries [ ] Sending reload events to iPhone X [ ] Sending reload event to "main.dart$main-885245854" [ ] getIsolate: {isolateId: isolates/885245854} [ +11 ms] _flutter.listViews: {isolateId: isolates/885245854} [ +1 ms] Evicting dirty assets [ ] Reassembling application [ ] ext.flutter.reassemble: {isolateId: isolates/885245854} [ +42 ms] ext.ui.window.scheduleFrame: {isolateId: isolates/885245854} [ +1 ms] Hot reload performed in 462ms. [ ] Reloaded 1 of 391 libraries in 465ms. [+3319 ms] Performing hot restart... [ +2 ms] Refreshing active FlutterViews before restarting. [ ] _flutter.listViews: {isolateId: isolates/885245854} [ +284 ms] Syncing files to device iPhone X... [ ] DevFS: Starting sync from LocalDirectory: '/Users/maksimrv/www/dart/foo' [ ] Scanning project files [ ] Scanning package files [ +47 ms] Scanning asset files [ ] Scanning for deleted files [ +4 ms] Compiling dart to kernel with 0 updated files [ ] DevFS: Sync finished [ ] Synced 0.0MB. [ ] getIsolate: {isolateId: isolates/885245854} [ +16 ms] _flutter.runInView: {viewId: _flutterView/0x7ffe4e405e48, mainScript: /Users/maksimrv/Library/Developer/CoreSimulator/Devices/539CC886-1F0F-477F-9C10-050010071AAE/data/Containers/Data/Application/1DF24AE9-9883-4234-8044-607B5D3EE5D9/tmp/fooXYDuRX/foo/lib/main.dart.dill, packagesFile: /Users/maksimrv/Library/Developer/CoreSimulator/Devices/539CC886-1F0F-477F-9C10-050010071AAE/data/Containers/Data/Application/1DF24AE9-9883-4234-8044-607B5D3EE5D9/tmp/fooXYDuRX/foo/.packages, assetDirectory: /Users/maksimrv/Library/Developer/CoreSimulator/Devices/539CC886-1F0F-477F-9C10-050010071AAE/data/Containers/Data/Application/1DF24AE9-9883-4234-8044-607B5D3EE5D9/tmp/fooXYDuRX/foo/build/flutter_assets} [ +75 ms] {streamId: Isolate, event: {type: Event, kind: IsolateStart, isolate: {type: @Isolate, fixedId: true, id: isolates/222259029, name: main.dart:main(), number: 222259029}, timestamp: 1529188778709}} [ ] getIsolate: {isolateId: isolates/222259029} [ +2 ms] Service protocol connection closed. [ +1 ms] Lost connection to device. [ +3 ms] DevFS: Deleting filesystem on the device (file:///Users/maksimrv/Library/Developer/CoreSimulator/Devices/539CC886-1F0F-477F-9C10-050010071AAE/data/Containers/Data/Application/1DF24AE9-9883-4234-8044-607B5D3EE5D9/tmp/fooXYDuRX/foo/) [ ] _deleteDevFS: {fsName: foo} [ +254 ms] TimeoutException after 0:00:00.250000: Future not completed [ +2 ms] "flutter run" took 35,965ms. </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Analyzing foo... No issues found! (ran in 2.0s) "><pre class="notranslate"><code class="notranslate">Analyzing foo... No issues found! (ran in 2.0s) </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="flutter doctor -v [✓] Flutter (Channel dev, v0.5.4, on Mac OS X 10.13.5 17F77, locale en-RU) • Flutter version 0.5.4 at /Users/maksimrv/www/dart/flutter • Framework revision 3019ad976d (5 days ago), 2018-06-11 11:31:25 -0700 • Engine revision d33bbff470 • Dart version 2.0.0-dev.60.0.flutter-a5e41681e5 [✓] Android toolchain - develop for Android devices (Android SDK 26.0.2) • Android SDK at /usr/local/opt/android-sdk • Android NDK location not configured (optional; useful for native profiling support) • Platform android-27, build-tools 26.0.2 • ANDROID_HOME = /usr/local/opt/android-sdk • Java binary at: /Library/Java/JavaVirtualMachines/jdk1.8.0_72.jdk/Contents/Home/bin/java • Java version Java(TM) SE Runtime Environment (build 1.8.0_72-b15) • All Android licenses accepted. [✓] iOS toolchain - develop for iOS devices (Xcode 9.4.1) • Xcode at /Applications/Xcode.app/Contents/Developer • Xcode 9.4.1, Build version 9F2000 • ios-deploy 1.9.2 • CocoaPods version 1.5.3 [✗] Android Studio (not installed) • Android Studio not found; download from https://developer.android.com/studio/index.html (or visit https://flutter.io/setup/#android-setup for detailed instructions). [!] IntelliJ IDEA Ultimate Edition (version 2018.2 EAP) • IntelliJ at /Users/maksimrv/Applications/JetBrains Toolbox/IntelliJ IDEA Ultimate.app ✗ Flutter plugin not installed; this adds Flutter specific functionality. ✗ Dart plugin not installed; this adds Dart specific functionality. • For information about installing plugins, see https://flutter.io/intellij-setup/#installing-the-plugins [✓] VS Code (version 1.23.1) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 2.12.0 [✓] Connected devices (1 available) • iPhone X • 539CC886-1F0F-477F-9C10-050010071AAE • ios • iOS 11.4 (simulator) ! Doctor found issues in 2 categories. "><pre class="notranslate"><code class="notranslate">flutter doctor -v [✓] Flutter (Channel dev, v0.5.4, on Mac OS X 10.13.5 17F77, locale en-RU) • Flutter version 0.5.4 at /Users/maksimrv/www/dart/flutter • Framework revision 3019ad976d (5 days ago), 2018-06-11 11:31:25 -0700 • Engine revision d33bbff470 • Dart version 2.0.0-dev.60.0.flutter-a5e41681e5 [✓] Android toolchain - develop for Android devices (Android SDK 26.0.2) • Android SDK at /usr/local/opt/android-sdk • Android NDK location not configured (optional; useful for native profiling support) • Platform android-27, build-tools 26.0.2 • ANDROID_HOME = /usr/local/opt/android-sdk • Java binary at: /Library/Java/JavaVirtualMachines/jdk1.8.0_72.jdk/Contents/Home/bin/java • Java version Java(TM) SE Runtime Environment (build 1.8.0_72-b15) • All Android licenses accepted. [✓] iOS toolchain - develop for iOS devices (Xcode 9.4.1) • Xcode at /Applications/Xcode.app/Contents/Developer • Xcode 9.4.1, Build version 9F2000 • ios-deploy 1.9.2 • CocoaPods version 1.5.3 [✗] Android Studio (not installed) • Android Studio not found; download from https://developer.android.com/studio/index.html (or visit https://flutter.io/setup/#android-setup for detailed instructions). [!] IntelliJ IDEA Ultimate Edition (version 2018.2 EAP) • IntelliJ at /Users/maksimrv/Applications/JetBrains Toolbox/IntelliJ IDEA Ultimate.app ✗ Flutter plugin not installed; this adds Flutter specific functionality. ✗ Dart plugin not installed; this adds Dart specific functionality. • For information about installing plugins, see https://flutter.io/intellij-setup/#installing-the-plugins [✓] VS Code (version 1.23.1) • VS Code at /Applications/Visual Studio Code.app/Contents • Flutter extension version 2.12.0 [✓] Connected devices (1 available) • iPhone X • 539CC886-1F0F-477F-9C10-050010071AAE • ios • iOS 11.4 (simulator) ! Doctor found issues in 2 categories. </code></pre></div>
<p dir="auto">Pull the cable from your phone a few seconds after the "Installing build/app.apk" message appears:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ flutter run Installing build/app.apk... protocol failure - waiting for device - Exception from flutter run: Exit code 1 from: /usr/local/google/home/ianh/dev/engine/src/third_party/android_tools/sdk/platform-tools/adb -s ZX1G22KJ3C install -r build/app.apk package:flutter_tools/src/base/process.dart 234 _runWithLoggingSync package:flutter_tools/src/base/process.dart 157 runCheckedSync package:flutter_tools/src/android/android_device.dart 243 AndroidDevice.installApp package:flutter_tools/src/commands/install.dart 54 installApp package:flutter_tools/src/hot.dart 235 HotRunner._run.&lt;async&gt; ===== asynchronous gap =========================== dart:async _Completer.completeError package:flutter_tools/src/hot.dart 338 HotRunner._run.&lt;async&gt; ===== asynchronous gap =========================== dart:async _asyncThenWrapperHelper package:flutter_tools/src/hot.dart HotRunner._run package:flutter_tools/src/hot.dart 148 HotRunner.run.&lt;fn&gt; package:stack_trace Chain.capture package:flutter_tools/src/hot.dart 147 HotRunner.run package:flutter_tools/src/commands/run.dart 236 RunCommand.runCommand.&lt;async&gt;"><pre class="notranslate"><code class="notranslate">$ flutter run Installing build/app.apk... protocol failure - waiting for device - Exception from flutter run: Exit code 1 from: /usr/local/google/home/ianh/dev/engine/src/third_party/android_tools/sdk/platform-tools/adb -s ZX1G22KJ3C install -r build/app.apk package:flutter_tools/src/base/process.dart 234 _runWithLoggingSync package:flutter_tools/src/base/process.dart 157 runCheckedSync package:flutter_tools/src/android/android_device.dart 243 AndroidDevice.installApp package:flutter_tools/src/commands/install.dart 54 installApp package:flutter_tools/src/hot.dart 235 HotRunner._run.&lt;async&gt; ===== asynchronous gap =========================== dart:async _Completer.completeError package:flutter_tools/src/hot.dart 338 HotRunner._run.&lt;async&gt; ===== asynchronous gap =========================== dart:async _asyncThenWrapperHelper package:flutter_tools/src/hot.dart HotRunner._run package:flutter_tools/src/hot.dart 148 HotRunner.run.&lt;fn&gt; package:stack_trace Chain.capture package:flutter_tools/src/hot.dart 147 HotRunner.run package:flutter_tools/src/commands/run.dart 236 RunCommand.runCommand.&lt;async&gt; </code></pre></div>
0
<p dir="auto">There are several issues with non-core (angular2.js) bundles we publish to npm:</p> <ul dir="auto"> <li>we are not using any bundle arithmetic which means that we bundle parts of the core with those optional bundles. This is mostly visible in http where the bundle is pulling most of ng2 (if not all!) and is in fact bigger than ng2 itself (!)</li> <li>non-core bundle import non-public APIs (ex.: <code class="notranslate">angular2/src/core/facade/lang</code> in router). This makes it pretty hard impossible (?) to move to CJS bundles that wouldn't have to bundle core again.</li> </ul> <p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jeffbcross/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jeffbcross">@jeffbcross</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/rkirov/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/rkirov">@rkirov</a></p>
<p dir="auto">To start with the current SFX bundle (<code class="notranslate">angular2.sfx.dev</code>):</p> <ul dir="auto"> <li>contains the following barrels: zone, reflect-metadata, common, core, instrumentation, platform/browser, upgrade, http, router: <ul dir="auto"> <li>common, core, instrumentation, platform/browser are exported on the <code class="notranslate">ng</code> namespace</li> <li>http is exported on the <code class="notranslate">ngHttp</code> namespace</li> <li>router is exported on the <code class="notranslate">ngRouter</code> namespace</li> </ul> </li> <li>is using <code class="notranslate">dev</code> output</li> <li>isn't minified</li> <li>doesn't have source maps</li> <li>provides support for <a href="https://github.com/angular/angular/blob/c6d6b756910b793a58c27bd219a54cf34eea090a/modules/angular2/angular2_sfx.ts#L19-L22">noConflict mode</a> -&gt; although it is broken now since it doesn't restore <code class="notranslate">ngHttp</code> and <code class="notranslate">ngRouter</code> namespaces</li> </ul> <p dir="auto">As part of our bundling discussion(s) we've been several times touching upon role, content and setup of the SFX bundle. More specifically the open questions were / are:</p> <ul dir="auto"> <li>who is the main consumer of the SFX bundle (ES5, ngUpgrade?). AFAIK <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/rkirov/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/rkirov">@rkirov</a> is aware of another use-case</li> <li>shell we use the same bundle for ES5 and ngUpgrade scenarios?</li> <li>what should be the content? Some barrels are non-controversial (common, core, instrumentation, platform/browser) other are disputable</li> <li>what exact namespaces shell be used to export different barrels?</li> <li>should we keep the non-conflict mode?</li> </ul> <p dir="auto">From the list above we can see that there are number of small decisions that we need to take.</p>
1
<p dir="auto">TypeScript version: 1.5.3+</p> <p dir="auto">I'm using the aurelia libraries and when I put the following decorators on properties the emitted javascript is not in the right format.</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import {autoinject, bindable} from &quot;aurelia-framework&quot;; import {Configuration} from &quot;../../../../config/config-loader&quot;; @autoinject export class FreedrawCustomElement { @bindable allowCreate: boolean = true; @bindable allowEdit: boolean = false; @bindable onSimulate: () =&gt; void; @bindable onEdit: Function; constructor(private config: Configuration) { } simulateArea() { if (this.onSimulate &amp;&amp; this.allowCreate) { this.onSimulate(); } } editArea() { if (this.onEdit &amp;&amp; this.allowEdit) { this.onEdit(); } } }"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-s1">autoinject</span><span class="pl-kos">,</span> <span class="pl-s1">bindable</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"aurelia-framework"</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">Configuration</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"../../../../config/config-loader"</span><span class="pl-kos">;</span> @<span class="pl-s1">autoinject</span> <span class="pl-k">export</span> <span class="pl-k">class</span> <span class="pl-smi">FreedrawCustomElement</span> <span class="pl-kos">{</span> @<span class="pl-s1">bindable</span> <span class="pl-c1">allowCreate</span>: <span class="pl-smi">boolean</span> <span class="pl-c1">=</span> <span class="pl-c1">true</span><span class="pl-kos">;</span> @<span class="pl-s1">bindable</span> <span class="pl-c1">allowEdit</span>: <span class="pl-smi">boolean</span> <span class="pl-c1">=</span> <span class="pl-c1">false</span><span class="pl-kos">;</span> @<span class="pl-s1">bindable</span> <span class="pl-c1">onSimulate</span>: <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-smi"><span class="pl-k">void</span></span><span class="pl-kos">;</span> @<span class="pl-s1">bindable</span> <span class="pl-c1">onEdit</span>: <span class="pl-smi">Function</span><span class="pl-kos">;</span> <span class="pl-en">constructor</span><span class="pl-kos">(</span><span class="pl-k">private</span> <span class="pl-s1">config</span>: <span class="pl-smi">Configuration</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-kos">}</span> <span class="pl-en">simulateArea</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-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">onSimulate</span> <span class="pl-c1">&amp;&amp;</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">allowCreate</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">onSimulate</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span> <span class="pl-en">editArea</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-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">onEdit</span> <span class="pl-c1">&amp;&amp;</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">allowEdit</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">onEdit</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">The emitted JS is</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var __decorate = (this &amp;&amp; this.__decorate) || function (decorators, target, key, desc) { if (typeof Reflect === &quot;object&quot; &amp;&amp; typeof Reflect.decorate === &quot;function&quot;) return Reflect.decorate(decorators, target, key, desc); switch (arguments.length) { case 2: return decorators.reduceRight(function(o, d) { return (d &amp;&amp; d(o)) || o; }, target); case 3: return decorators.reduceRight(function(o, d) { return (d &amp;&amp; d(target, key)), void 0; }, void 0); case 4: return decorators.reduceRight(function(o, d) { return (d &amp;&amp; d(target, key, o)) || o; }, desc); } }; var __metadata = (this &amp;&amp; this.__metadata) || function (k, v) { if (typeof Reflect === &quot;object&quot; &amp;&amp; typeof Reflect.metadata === &quot;function&quot;) return Reflect.metadata(k, v); }; var aurelia_framework_1 = require(&quot;aurelia-framework&quot;); var config_loader_1 = require(&quot;../../../../config/config-loader&quot;); var FreedrawCustomElement = (function () { function FreedrawCustomElement(config) { this.config = config; this.allowCreate = true; this.allowEdit = false; } FreedrawCustomElement.prototype.simulateArea = function () { if (this.onSimulate &amp;&amp; this.allowCreate) { this.onSimulate(); } }; FreedrawCustomElement.prototype.editArea = function () { if (this.onEdit &amp;&amp; this.allowEdit) { this.onEdit(); } }; __decorate([ aurelia_framework_1.bindable, __metadata('design:type', Boolean) ], FreedrawCustomElement.prototype, &quot;allowCreate&quot;); __decorate([ aurelia_framework_1.bindable, __metadata('design:type', Boolean) ], FreedrawCustomElement.prototype, &quot;allowEdit&quot;); __decorate([ aurelia_framework_1.bindable, __metadata('design:type', Function) ], FreedrawCustomElement.prototype, &quot;onSimulate&quot;); __decorate([ aurelia_framework_1.bindable, __metadata('design:type', ) ], FreedrawCustomElement.prototype, &quot;onEdit&quot;); FreedrawCustomElement = __decorate([ aurelia_framework_1.autoinject, __metadata('design:paramtypes', [config_loader_1.Configuration]) ], FreedrawCustomElement); return FreedrawCustomElement; })(); exports.FreedrawCustomElement = FreedrawCustomElement; //# sourceMappingURL=freedraw.js.map"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">__decorate</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-smi">this</span> <span class="pl-c1">&amp;&amp;</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">__decorate</span><span class="pl-kos">)</span> <span class="pl-c1">||</span> <span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">decorators</span><span class="pl-kos">,</span> <span class="pl-s1">target</span><span class="pl-kos">,</span> <span class="pl-s1">key</span><span class="pl-kos">,</span> <span class="pl-s1">desc</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-k">typeof</span> <span class="pl-v">Reflect</span> <span class="pl-c1">===</span> <span class="pl-s">"object"</span> <span class="pl-c1">&amp;&amp;</span> <span class="pl-k">typeof</span> <span class="pl-v">Reflect</span><span class="pl-kos">.</span><span class="pl-c1">decorate</span> <span class="pl-c1">===</span> <span class="pl-s">"function"</span><span class="pl-kos">)</span> <span class="pl-k">return</span> <span class="pl-v">Reflect</span><span class="pl-kos">.</span><span class="pl-en">decorate</span><span class="pl-kos">(</span><span class="pl-s1">decorators</span><span class="pl-kos">,</span> <span class="pl-s1">target</span><span class="pl-kos">,</span> <span class="pl-s1">key</span><span class="pl-kos">,</span> <span class="pl-s1">desc</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">switch</span> <span class="pl-kos">(</span><span class="pl-smi">arguments</span><span class="pl-kos">.</span><span class="pl-c1">length</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">case</span> <span class="pl-c1">2</span>: <span class="pl-k">return</span> <span class="pl-s1">decorators</span><span class="pl-kos">.</span><span class="pl-en">reduceRight</span><span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">o</span><span class="pl-kos">,</span> <span class="pl-s1">d</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-s1">d</span> <span class="pl-c1">&amp;&amp;</span> <span class="pl-s1">d</span><span class="pl-kos">(</span><span class="pl-s1">o</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-c1">||</span> <span class="pl-s1">o</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-s1">target</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">case</span> <span class="pl-c1">3</span>: <span class="pl-k">return</span> <span class="pl-s1">decorators</span><span class="pl-kos">.</span><span class="pl-en">reduceRight</span><span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">o</span><span class="pl-kos">,</span> <span class="pl-s1">d</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-s1">d</span> <span class="pl-c1">&amp;&amp;</span> <span class="pl-s1">d</span><span class="pl-kos">(</span><span class="pl-s1">target</span><span class="pl-kos">,</span> <span class="pl-s1">key</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-k">void</span> <span class="pl-c1">0</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-k">void</span> <span class="pl-c1">0</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">case</span> <span class="pl-c1">4</span>: <span class="pl-k">return</span> <span class="pl-s1">decorators</span><span class="pl-kos">.</span><span class="pl-en">reduceRight</span><span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">o</span><span class="pl-kos">,</span> <span class="pl-s1">d</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-s1">d</span> <span class="pl-c1">&amp;&amp;</span> <span class="pl-s1">d</span><span class="pl-kos">(</span><span class="pl-s1">target</span><span class="pl-kos">,</span> <span class="pl-s1">key</span><span class="pl-kos">,</span> <span class="pl-s1">o</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-c1">||</span> <span class="pl-s1">o</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-s1">desc</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-k">var</span> <span class="pl-s1">__metadata</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-smi">this</span> <span class="pl-c1">&amp;&amp;</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">__metadata</span><span class="pl-kos">)</span> <span class="pl-c1">||</span> <span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">k</span><span class="pl-kos">,</span> <span class="pl-s1">v</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-k">typeof</span> <span class="pl-v">Reflect</span> <span class="pl-c1">===</span> <span class="pl-s">"object"</span> <span class="pl-c1">&amp;&amp;</span> <span class="pl-k">typeof</span> <span class="pl-v">Reflect</span><span class="pl-kos">.</span><span class="pl-c1">metadata</span> <span class="pl-c1">===</span> <span class="pl-s">"function"</span><span class="pl-kos">)</span> <span class="pl-k">return</span> <span class="pl-v">Reflect</span><span class="pl-kos">.</span><span class="pl-en">metadata</span><span class="pl-kos">(</span><span class="pl-s1">k</span><span class="pl-kos">,</span> <span class="pl-s1">v</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-k">var</span> <span class="pl-s1">aurelia_framework_1</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"aurelia-framework"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">var</span> <span class="pl-s1">config_loader_1</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"../../../../config/config-loader"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">var</span> <span class="pl-v">FreedrawCustomElement</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">function</span> <span class="pl-v">FreedrawCustomElement</span><span class="pl-kos">(</span><span class="pl-s1">config</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">config</span> <span class="pl-c1">=</span> <span class="pl-s1">config</span><span class="pl-kos">;</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">allowCreate</span> <span class="pl-c1">=</span> <span class="pl-c1">true</span><span class="pl-kos">;</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">allowEdit</span> <span class="pl-c1">=</span> <span class="pl-c1">false</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-v">FreedrawCustomElement</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">.</span><span class="pl-en">simulateArea</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">if</span> <span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">onSimulate</span> <span class="pl-c1">&amp;&amp;</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">allowCreate</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">onSimulate</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-v">FreedrawCustomElement</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">.</span><span class="pl-en">editArea</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">if</span> <span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">onEdit</span> <span class="pl-c1">&amp;&amp;</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">allowEdit</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">onEdit</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">__decorate</span><span class="pl-kos">(</span><span class="pl-kos">[</span> <span class="pl-s1">aurelia_framework_1</span><span class="pl-kos">.</span><span class="pl-c1">bindable</span><span class="pl-kos">,</span> <span class="pl-s1">__metadata</span><span class="pl-kos">(</span><span class="pl-s">'design:type'</span><span class="pl-kos">,</span> <span class="pl-v">Boolean</span><span class="pl-kos">)</span> <span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-v">FreedrawCustomElement</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">,</span> <span class="pl-s">"allowCreate"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">__decorate</span><span class="pl-kos">(</span><span class="pl-kos">[</span> <span class="pl-s1">aurelia_framework_1</span><span class="pl-kos">.</span><span class="pl-c1">bindable</span><span class="pl-kos">,</span> <span class="pl-s1">__metadata</span><span class="pl-kos">(</span><span class="pl-s">'design:type'</span><span class="pl-kos">,</span> <span class="pl-v">Boolean</span><span class="pl-kos">)</span> <span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-v">FreedrawCustomElement</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">,</span> <span class="pl-s">"allowEdit"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">__decorate</span><span class="pl-kos">(</span><span class="pl-kos">[</span> <span class="pl-s1">aurelia_framework_1</span><span class="pl-kos">.</span><span class="pl-c1">bindable</span><span class="pl-kos">,</span> <span class="pl-s1">__metadata</span><span class="pl-kos">(</span><span class="pl-s">'design:type'</span><span class="pl-kos">,</span> <span class="pl-v">Function</span><span class="pl-kos">)</span> <span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-v">FreedrawCustomElement</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">,</span> <span class="pl-s">"onSimulate"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">__decorate</span><span class="pl-kos">(</span><span class="pl-kos">[</span> <span class="pl-s1">aurelia_framework_1</span><span class="pl-kos">.</span><span class="pl-c1">bindable</span><span class="pl-kos">,</span> <span class="pl-s1">__metadata</span><span class="pl-kos">(</span><span class="pl-s">'design:type'</span><span class="pl-kos">,</span> <span class="pl-kos">)</span> <span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-v">FreedrawCustomElement</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">,</span> <span class="pl-s">"onEdit"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-v">FreedrawCustomElement</span> <span class="pl-c1">=</span> <span class="pl-s1">__decorate</span><span class="pl-kos">(</span><span class="pl-kos">[</span> <span class="pl-s1">aurelia_framework_1</span><span class="pl-kos">.</span><span class="pl-c1">autoinject</span><span class="pl-kos">,</span> <span class="pl-s1">__metadata</span><span class="pl-kos">(</span><span class="pl-s">'design:paramtypes'</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s1">config_loader_1</span><span class="pl-kos">.</span><span class="pl-c1">Configuration</span><span class="pl-kos">]</span><span class="pl-kos">)</span> <span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-v">FreedrawCustomElement</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">return</span> <span class="pl-v">FreedrawCustomElement</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">exports</span><span class="pl-kos">.</span><span class="pl-c1">FreedrawCustomElement</span> <span class="pl-c1">=</span> <span class="pl-v">FreedrawCustomElement</span><span class="pl-kos">;</span> <span class="pl-c">//# sourceMappingURL=freedraw.js.map</span></pre></div> <p dir="auto">If you check in the the decorator emitted for the onEdit property it haven't the value defined for the second parameter: <code class="notranslate">__metadata('design:type', )</code>. The previous decorator, on the <code class="notranslate">onSimulate</code> was emitted because it was defined as a closure type, but not the second, which was defined as a Function type.</p> <p dir="auto">The same error occurs with <code class="notranslate">HTML*</code>, e.g. <code class="notranslate">HTMLElement</code>, types, but works with just the <code class="notranslate">Element</code> type.</p>
<p dir="auto">When I compile this code:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class A { constructor() { console.log('new A'); } } type AType = A; function decorator(target: Object, propertyKey: string) { } export class B { @decorator x: AType = new A(); }"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-smi">A</span> <span class="pl-kos">{</span> <span class="pl-en">constructor</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'new A'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span> <span class="pl-k">type</span> <span class="pl-smi">AType</span> <span class="pl-c1">=</span> <span class="pl-smi">A</span><span class="pl-kos">;</span> <span class="pl-k">function</span> <span class="pl-en">decorator</span><span class="pl-kos">(</span><span class="pl-s1">target</span>: <span class="pl-smi">Object</span><span class="pl-kos">,</span> <span class="pl-s1">propertyKey</span>: <span class="pl-smi">string</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-kos">}</span> <span class="pl-k">export</span> <span class="pl-k">class</span> <span class="pl-smi">B</span> <span class="pl-kos">{</span> @<span class="pl-s1">decorator</span> <span class="pl-c1">x</span>: <span class="pl-smi">AType</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-smi">A</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">The emitter produces the following code:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var A = (function () { function A() { console.log('new A'); } return A; })(); function decorator(target, propertyKey) { } var B = (function () { function B() { this.x = new A(); } __decorate([ decorator, __metadata('design:type', Object) ], B.prototype, &quot;x&quot;); return B; })(); exports.B = B;"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-v">A</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">function</span> <span class="pl-v">A</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'new A'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">return</span> <span class="pl-v">A</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">function</span> <span class="pl-en">decorator</span><span class="pl-kos">(</span><span class="pl-s1">target</span><span class="pl-kos">,</span> <span class="pl-s1">propertyKey</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-v">B</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">function</span> <span class="pl-v">B</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">x</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-v">A</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-en">__decorate</span><span class="pl-kos">(</span><span class="pl-kos">[</span> <span class="pl-s1">decorator</span><span class="pl-kos">,</span> <span class="pl-en">__metadata</span><span class="pl-kos">(</span><span class="pl-s">'design:type'</span><span class="pl-kos">,</span> <span class="pl-v">Object</span><span class="pl-kos">)</span> <span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-v">B</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">,</span> <span class="pl-s">"x"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">return</span> <span class="pl-v">B</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">exports</span><span class="pl-kos">.</span><span class="pl-c1">B</span> <span class="pl-c1">=</span> <span class="pl-v">B</span><span class="pl-kos">;</span></pre></div> <p dir="auto">But the expected output for metadata should be <code class="notranslate">__metadata('design:type', A)</code>. Furthermore, if I change the param declaration to <code class="notranslate">x: A = new A();</code>, the emitter will output <code class="notranslate">__metadata('design:type', )</code> (type not specified at all).</p>
1
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/mui-org/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">Components with withStyles should work with recursively.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">Cannot find classes of jss.</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <ol dir="auto"> <li> <p dir="auto">I m trying to build a nested menu recursively. Every menu element is a component with withStyles.</p> </li> <li> <p dir="auto">Component ul in the component ul can't get the classes of the Jss.</p> </li> <li> <p dir="auto">This is an example menu data,</p> </li> </ol> <pre class="notranslate">[ { "type": "ul", "title": "ul - Level 1", "children": [ { "type": "ul", "title": "ul - level 2", "children": [ { "type": "li", "title": "li - Level 3" } ] }, { "type": "li", "title": "li - Level 2" } ] }, { "type": "li", "title": "li - Level 1" } ] </pre> <ol start="4" dir="auto"> <li>Checkout the demonstration of the issue; there is also working version without withStyles.<br> <a href="https://codesandbox.io/s/lr537rkl89" rel="nofollow">https://codesandbox.io/s/lr537rkl89</a></li> </ol> <p dir="auto">thanks in advance.</p> <h2 dir="auto">Context</h2> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td>1.0.0-beta.28</td> </tr> <tr> <td>React</td> <td>16.2.0</td> </tr> <tr> <td>browser</td> <td>Chrome 63.0.32</td> </tr> <tr> <td>etc</td> <td></td> </tr> </tbody> </table>
<p dir="auto">When trying to set the index of tab programmatically from componentDidMount the Tab indicator doesn't change.</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">When changing the index in state the Tabs component should update the indicator.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">The indicator doesn't change even when the render is called again with the correct index from state.</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <p dir="auto">Here is a codesandbox.io:</p> <p dir="auto"><a href="https://codesandbox.io/s/ykn36kzyj" rel="nofollow">https://codesandbox.io/s/ykn36kzyj</a></p> <p dir="auto">The indicator should be set for index 1 but the indicator is set to index 0.</p> <p dir="auto">This worked earlier, I noticed this issue when I updated material-ui to beta-17</p> <h2 dir="auto">Context</h2> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td>1.0.0.Beta17</td> </tr> <tr> <td>React</td> <td>16.0.0</td> </tr> <tr> <td>browser</td> <td>Chrome</td> </tr> </tbody> </table>
0
<p dir="auto"><em>Glide</em>: 3.7.0<br> <em>Integration libraries</em>: no<br> <em>Devices</em>: currently running on emulator only, hardware GPU rendering<br> <em>Issue</em>: animated GIFs generally work well, except that the final frame's delay is being ignored. The product design involves having a long delay on the last frame so that the final rendering can be reviewed again. Instead the last frame flashes quickly and then it returns to the beginning.<br> A secondary issue: not only should it be waiting to cycle back to the beginning for the amount stated in the duration, but the particular GIFs being tested are set to only 1 iteration (meaning in theory they should not ever recycle).<br> To reproduce, generate a GIF with a long delay on the last frame. Then display the GIF. It appears to flicker right back to the beginning. Viewing the same GIF in a web browser or posting to e.g. FB messenger, the delay is properly observed.</p> <p dir="auto"><em>Layout Design</em>: FrameLayout with a single ImageView inside. (added) These are inside a RecyclerView. I am testing with ~ 20 items at one time.<br> <em>Code Design</em>: using a RecyclerViewAdapter; Glide code is in onBindViewHolder</p> <p dir="auto"><em>Error Messages</em>: I am getting the following, from reading up it doesn't sound like this is related but curious of others' opinions:<br> W/Bitmap: Called reconfigure on a bitmap that is in use! ...</p>
<p dir="auto"><strong>Glide Version:</strong> 3.6.1<br> <strong>Issue details:</strong><br> While loading GIF's there is significant delay before showing <strong>only</strong> the second frame, and this happens only for the first loop, all the later loops goes with expected delay.</p> <p dir="auto">So after doing some research, I thought it may be because Glide is resizing the frames, so I override resize operation using <code class="notranslate">override()</code>.</p> <p dir="auto"><strong>Below is the Glide load line:</strong><br> <code class="notranslate">Glide.with(this).load(trainingItem.getUrl()).asGif().override(Target.SIZE_ORIGINAL, Target.SIZE_ORIGINAL).diskCacheStrategy(DiskCacheStrategy.SOURCE).into(draweeView);</code></p> <p dir="auto">But still there is significant delay before showing the next frame for the very first loop.<br> Any suggestions/pointers?</p>
1
<h1 dir="auto">Bug report</h1> <p dir="auto"><strong>What is the current behavior?</strong></p> <p dir="auto">When compiling typescript using ts-loader with webpack, the <code class="notranslate">library</code> variable is not hoisted to the global level, thereby not exposing it at all.</p> <p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong></p> <p dir="auto">MWE at <a href="https://github.com/retorquere/webpack-mwe">https://github.com/retorquere/webpack-mwe</a></p> <p dir="auto">With webpack 5.21.2, <code class="notranslate">var MyModule =</code> is declared at the top of the webpacked output; with 5.24.4, it is declared inside the IIFE and thus not available at the global level.</p> <p dir="auto"><strong>What is the expected behavior?</strong></p> <p dir="auto">that the variable in <code class="notranslate">output.library</code> is declared in a way that it is available at the global level</p> <p dir="auto"><strong>Other relevant information:</strong><br> webpack version: 5.21.2 vs 5.24.4<br> Node.js version: v15.5.0<br> Operating System: MacOS big sur<br> Additional tools: none</p>
<h1 dir="auto">Bug report</h1> <p dir="auto"><strong>What is the current behavior?</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Module build failed (from /home/circleci/project/node_modules/mini-css-extract-plugin/dist/loader.js): TypeError: Cannot read property 'identifier' of null at text.map.line (/home/circleci/project/node_modules/mini-css-extract-plugin/dist/loader.js:160:32) at Array.map (&lt;anonymous&gt;) at childCompiler.runAsChild (/home/circleci/project/node_modules/mini-css-extract-plugin/dist/loader.js:157:21) at compile (/home/circleci/project/node_modules/webpack/lib/Compiler.js:306:11) at hooks.afterCompile.callAsync.err (/home/circleci/project/node_modules/webpack/lib/Compiler.js:631:15) at AsyncSeriesHook.eval [as callAsync] (eval at create (/home/circleci/project/node_modules/tapable/lib/HookCodeFactory.js:32:10), &lt;anonymous&gt;:24:1) at AsyncSeriesHook.lazyCompileHook (/home/circleci/project/node_modules/tapable/lib/Hook.js:154:20) at compilation.seal.err (/home/circleci/project/node_modules/webpack/lib/Compiler.js:628:31) at AsyncSeriesHook.eval [as callAsync] (eval at create (/home/circleci/project/node_modules/tapable/lib/HookCodeFactory.js:32:10), &lt;anonymous&gt;:6:1) at AsyncSeriesHook.lazyCompileHook (/home/circleci/project/node_modules/tapable/lib/Hook.js:154:20) at hooks.optimizeAssets.callAsync.err (/home/circleci/project/node_modules/webpack/lib/Compilation.js:1329:35) at AsyncSeriesHook.eval [as callAsync] (eval at create (/home/circleci/project/node_modules/tapable/lib/HookCodeFactory.js:32:10), &lt;anonymous&gt;:6:1) at AsyncSeriesHook.lazyCompileHook (/home/circleci/project/node_modules/tapable/lib/Hook.js:154:20) at hooks.optimizeChunkAssets.callAsync.err (/home/circleci/project/node_modules/webpack/lib/Compilation.js:1320:32) at _promise1.then._result1 (eval at create (/home/circleci/project/node_modules/tapable/lib/HookCodeFactory.js:32:10), &lt;anonymous&gt;:18:1) at &lt;anonymous&gt; @ ./style/index.ts 1:0-29 @ multi ./common/errorTracker ./common/polyfills ./style ./frames/about"><pre class="notranslate"><code class="notranslate">Module build failed (from /home/circleci/project/node_modules/mini-css-extract-plugin/dist/loader.js): TypeError: Cannot read property 'identifier' of null at text.map.line (/home/circleci/project/node_modules/mini-css-extract-plugin/dist/loader.js:160:32) at Array.map (&lt;anonymous&gt;) at childCompiler.runAsChild (/home/circleci/project/node_modules/mini-css-extract-plugin/dist/loader.js:157:21) at compile (/home/circleci/project/node_modules/webpack/lib/Compiler.js:306:11) at hooks.afterCompile.callAsync.err (/home/circleci/project/node_modules/webpack/lib/Compiler.js:631:15) at AsyncSeriesHook.eval [as callAsync] (eval at create (/home/circleci/project/node_modules/tapable/lib/HookCodeFactory.js:32:10), &lt;anonymous&gt;:24:1) at AsyncSeriesHook.lazyCompileHook (/home/circleci/project/node_modules/tapable/lib/Hook.js:154:20) at compilation.seal.err (/home/circleci/project/node_modules/webpack/lib/Compiler.js:628:31) at AsyncSeriesHook.eval [as callAsync] (eval at create (/home/circleci/project/node_modules/tapable/lib/HookCodeFactory.js:32:10), &lt;anonymous&gt;:6:1) at AsyncSeriesHook.lazyCompileHook (/home/circleci/project/node_modules/tapable/lib/Hook.js:154:20) at hooks.optimizeAssets.callAsync.err (/home/circleci/project/node_modules/webpack/lib/Compilation.js:1329:35) at AsyncSeriesHook.eval [as callAsync] (eval at create (/home/circleci/project/node_modules/tapable/lib/HookCodeFactory.js:32:10), &lt;anonymous&gt;:6:1) at AsyncSeriesHook.lazyCompileHook (/home/circleci/project/node_modules/tapable/lib/Hook.js:154:20) at hooks.optimizeChunkAssets.callAsync.err (/home/circleci/project/node_modules/webpack/lib/Compilation.js:1320:32) at _promise1.then._result1 (eval at create (/home/circleci/project/node_modules/tapable/lib/HookCodeFactory.js:32:10), &lt;anonymous&gt;:18:1) at &lt;anonymous&gt; @ ./style/index.ts 1:0-29 @ multi ./common/errorTracker ./common/polyfills ./style ./frames/about </code></pre></div> <p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong></p> <p dir="auto">My configuration is huge. I'd be happy to try and narrow down a minimal repro if necessary, but I hope that the error would be obvious given that this is a regression in a minor release. If it's not, just let me know.</p> <p dir="auto"><strong>What is the expected behavior?</strong></p> <p dir="auto">There should be no error during build.</p> <p dir="auto"><strong>Other relevant information:</strong><br> webpack version: 4.32.0<br> Node.js version: 8.9.0<br> Operating System: macOS 10.14.5<br> Additional tools: mini-css-extract-plugin 0.4.4</p>
0
<p dir="auto">1.827.904 downloads in the last month can't be wrong right?</p>
<blockquote> <p dir="auto">Semver<br> Until axios reaches a 1.0 release, breaking changes will be released with a new minor version. For example 0.5.1, and 0.5.4 will have the same API, but 0.6.0 will have breaking changes.</p> </blockquote> <p dir="auto">Considering the popularity of Axios and the amount of people using it in production, would it not be prudent to release a major version? The above (taken from the README) is under the heading of <code class="notranslate">Semver</code> but it goes against the basis of semantic versioning and is a super risky. If a developer does not read that line and they install axios as <code class="notranslate">^0.18.1</code>, they could deploy a breaking change without even realising it.</p> <p dir="auto">I work for a company that is considering transitioning to using <code class="notranslate">axios</code> and this issue is potentially going to prevent us doing so.</p> <p dir="auto">Thanks</p>
1
<p dir="auto"><strong>Migrated issue, originally created by Anonymous</strong></p> <p dir="auto">We are doing some stuff with history and have a little problem.</p> <p dir="auto">After commit, history has been reseted to empty state: there no value in <code class="notranslate">unchanged</code> and after attribute is changed there is no value in <code class="notranslate">deleted</code>.</p> <p dir="auto">Probably, it is a bug. If it is correct behaviour, how is it expained?</p> <p dir="auto">Both on 0.8.2 and dev versions. Here is a test case.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="class HistoryTest(_fixtures.FixtureTest): run_inserts = None def test_commit_history(self): from sqlalchemy.orm.attributes import get_history, History User, users = self.classes.User, self.tables.users m2 = sa.MetaData() users_unbound = users.tometadata(m2) mapper(User, users_unbound) sess = Session(binds={User: self.metadata.bind}) u = User(id=1, name='daniel') sess.add(u) print get_history(u, 'name') assert get_history(u, 'name') ==\ History(['daniel']('daniel'), (), ()) sess.commit() print get_history(u, 'name') assert get_history(u, 'name') == \ History((), ['daniel']('daniel'), ()) # fails: History((), (), ()) u.name = 'peter' print get_history(u, 'name') assert get_history(u, 'name') == \ History(['peter']('peter'), (), ['daniel']('daniel')) # fails: History(['peter']('peter'), (), ())"><pre class="notranslate"><code class="notranslate">class HistoryTest(_fixtures.FixtureTest): run_inserts = None def test_commit_history(self): from sqlalchemy.orm.attributes import get_history, History User, users = self.classes.User, self.tables.users m2 = sa.MetaData() users_unbound = users.tometadata(m2) mapper(User, users_unbound) sess = Session(binds={User: self.metadata.bind}) u = User(id=1, name='daniel') sess.add(u) print get_history(u, 'name') assert get_history(u, 'name') ==\ History(['daniel']('daniel'), (), ()) sess.commit() print get_history(u, 'name') assert get_history(u, 'name') == \ History((), ['daniel']('daniel'), ()) # fails: History((), (), ()) u.name = 'peter' print get_history(u, 'name') assert get_history(u, 'name') == \ History(['peter']('peter'), (), ['daniel']('daniel')) # fails: History(['peter']('peter'), (), ()) </code></pre></div> <hr> <p dir="auto">Attachments: <a href="../wiki/imported_issue_attachments/2787/2787.patch">2787.patch</a></p>
<p dir="auto">Unittest an API, where test code fixture is trying to create a resource and then get the response to verify the previous step, and then again to try to create the same resource again, SqlAlchemy is randomizing the exception between Integrity and Flush Error.</p> <p dir="auto">Libs:<br> Flask==1.0.2<br> Flask-Cors==3.0.6<br> Flask-SQLAlchemy==2.3.2<br> SQLAlchemy==1.2.7<br> Werkzeug==0.14.1</p> <p dir="auto">I have been working on that project for the last 10 month, all the time I have seen only Integrity error, not flush error.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" new_item.before_created(request_data) db.session.add(new_item) new_item.after_created(request_data) db.session.commit() headers = {'Location': new_item.get_url()} if new_item.get_url() else None return (jsonify({}), 201, headers) if headers else (jsonify({}), 201) except KeyError as e: raise ValidationError( ErrorCode.MISSING_MANDATORY_DATA, error_msg=f&quot;the {e.args[0]} field is required.&quot;, ) except ValueError as e: raise ValidationError(ErrorCode.INVALID_REQUEST_DATA, error_msg=e.args[0]) except BadRequest: raise ValidationError(ErrorCode.INVALID_REQUEST_FORMAT) except IntegrityError: raise ValidationError(ErrorCode.INTEGRITY_ERROR, status_code=409) except Conflict as e: raise ValidationError(e.description, status_code=409) finally: db.session.rollback()"><pre class="notranslate"><code class="notranslate"> new_item.before_created(request_data) db.session.add(new_item) new_item.after_created(request_data) db.session.commit() headers = {'Location': new_item.get_url()} if new_item.get_url() else None return (jsonify({}), 201, headers) if headers else (jsonify({}), 201) except KeyError as e: raise ValidationError( ErrorCode.MISSING_MANDATORY_DATA, error_msg=f"the {e.args[0]} field is required.", ) except ValueError as e: raise ValidationError(ErrorCode.INVALID_REQUEST_DATA, error_msg=e.args[0]) except BadRequest: raise ValidationError(ErrorCode.INVALID_REQUEST_FORMAT) except IntegrityError: raise ValidationError(ErrorCode.INTEGRITY_ERROR, status_code=409) except Conflict as e: raise ValidationError(e.description, status_code=409) finally: db.session.rollback() </code></pre></div> <p dir="auto">TEST CODE:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" def test_create_new_product(self): Product.delete(self.product_no, True) # create a asset with the request data. response = self.client.post( &quot;/assets/&quot;, content_type=&quot;application/json&quot;, data=json.dumps(self.default_req_data), ) res_data = json.loads(response.data.decode()) self.assertEqual({}, res_data) self.assertEqual(response.status_code, 201) # check the asset that we already created. response = self.client.get( &quot;/assets/{0}&quot;.format(self.product_no), content_type=&quot;application/json&quot; ) res_data = json.loads(response.data.decode()) self.assertEqual(response.status_code, 200) for key in self.default_req_data.keys(): self.assertEqual(self.default_req_data[key], res_data[key]) # try create duplicated asset response = self.client.post( &quot;/assets/&quot;, content_type=&quot;application/json&quot;, data=json.dumps(self.default_req_data), ) res_data = json.loads(response.data.decode()) self.assertEqual(response.status_code, 409)"><pre class="notranslate"><code class="notranslate"> def test_create_new_product(self): Product.delete(self.product_no, True) # create a asset with the request data. response = self.client.post( "/assets/", content_type="application/json", data=json.dumps(self.default_req_data), ) res_data = json.loads(response.data.decode()) self.assertEqual({}, res_data) self.assertEqual(response.status_code, 201) # check the asset that we already created. response = self.client.get( "/assets/{0}".format(self.product_no), content_type="application/json" ) res_data = json.loads(response.data.decode()) self.assertEqual(response.status_code, 200) for key in self.default_req_data.keys(): self.assertEqual(self.default_req_data[key], res_data[key]) # try create duplicated asset response = self.client.post( "/assets/", content_type="application/json", data=json.dumps(self.default_req_data), ) res_data = json.loads(response.data.decode()) self.assertEqual(response.status_code, 409) </code></pre></div> <p dir="auto">This fixture is called by several other fixtures but all them get Integrity error except one of them is getting flushError.</p> <p dir="auto">If I run all the test together I am facing this issue, alone it works fine.</p>
0
<p dir="auto">Suddenly today Atom doesn't seem capable of displaying unicode in most fonts. I've tried a bunch of font families (droid, consolata, inconsolata, monospace, courier, sans-serif, arial, impact, ubuntu, ubuntu mono, etc) and the apparently only one who works is sans:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/4805640/7128040/2224beaa-e223-11e4-83da-1606213d9126.png"><img src="https://cloud.githubusercontent.com/assets/4805640/7128040/2224beaa-e223-11e4-83da-1606213d9126.png" alt="sans" style="max-width: 100%;"></a></p> <p dir="auto">But in monospace:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/4805640/7128041/2bfc89e4-e223-11e4-878f-9c19b718c347.png"><img src="https://cloud.githubusercontent.com/assets/4805640/7128041/2bfc89e4-e223-11e4-878f-9c19b718c347.png" alt="monospace" style="max-width: 100%;"></a></p> <p dir="auto">And I don't have any problem of seeing unicode in other applications, just Atom.</p> <p dir="auto">Might help:</p> <blockquote> <p dir="auto">lucas ~&gt; apm -v<br> apm 0.157.0<br> npm 2.5.1<br> node 0.10.35<br> python 2.7.6<br> git 1.9.1<br> lucas ~&gt; uname -a<br> Linux magno-Z97-D3H 3.13.0-45-generic <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="7720261" data-permission-text="Title is private" data-url="https://github.com/atom/atom/issues/74" data-hovercard-type="issue" data-hovercard-url="/atom/atom/issues/74/hovercard" href="https://github.com/atom/atom/issues/74">#74</a>-Ubuntu SMP Tue Jan 13 19:36:28 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux</p> </blockquote>
<p dir="auto">Text:</p> <blockquote> <p dir="auto">这上面的夜的天空,奇怪而高,我生平没有见过这样奇怪而高的天空。他仿佛要离开人间而去,使人们仰面不再看见。然而现在却非常之蓝,闪闪地睒着几十个星星的眼,冷眼。他的口角上现出微笑,似乎自以为大有深意,而将繁霜洒在我的园里的野花草上。</p> </blockquote> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/49931/6959354/a30f8266-d94a-11e4-9167-35ea308a5ad2.png"><img src="https://cloud.githubusercontent.com/assets/49931/6959354/a30f8266-d94a-11e4-9167-35ea308a5ad2.png" alt="3" style="max-width: 100%;"></a></p> <p dir="auto">It happen after update to 0.189.0, and it's normal in 0.188.0 .</p> <p dir="auto">I try disabled all community packages or star with <code class="notranslate">--safe</code> mode, still happen.</p> <p dir="auto">Update: Ubuntu 14.04</p>
1
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="enum Foo { } var fooMap: { [foo: Foo]: string } // =&gt; error TS1023: An index signature parameter type must be 'string' or 'number'."><pre class="notranslate"><span class="pl-k">enum</span> <span class="pl-smi">Foo</span> <span class="pl-kos">{</span> <span class="pl-kos">}</span> <span class="pl-k">var</span> <span class="pl-s1">fooMap</span>: <span class="pl-kos">{</span> <span class="pl-kos">[</span><span class="pl-s1">foo</span>: <span class="pl-smi">Foo</span><span class="pl-kos">]</span>: <span class="pl-smi">string</span> <span class="pl-kos">}</span> <span class="pl-c">// =&gt; error TS1023: An index signature parameter type must be 'string' or 'number'.</span></pre></div> <p dir="auto"><a href="http://www.typescriptlang.org/Playground#src=enum%20Foo%20%7B%20%7D%0D%0A%0D%0Avar%20fooMap%3A%20%7B%20%5Bfoo%3A%20Foo%5D%3A%20string%20%7D" rel="nofollow">play</a></p> <hr> <p dir="auto">Enums are internally numbers, so this should be able to compile fine.</p>
<p dir="auto">Typescript requires that enums have number value types (hopefully soon, this will also include string value types).</p> <p dir="auto">Attempting to use an enum as a key type for a hash results in this error: "Index signature parameter type much be 'string' or 'number' ".-- An enum is actually a number type.-- This shouldn't be an error.</p> <p dir="auto">Enums are a convenient way of defining the domain of number and string value types, in cases such as</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="export interface UserInterfaceColors { [index: UserInterfaceElement]: ColorInfo; } export interface ColorInfo { r: number; g: number; b: number; a: number; } export enum UserInterfaceElement { ActiveTitleBar = 0, InactiveTitleBar = 1, }"><pre class="notranslate"><code class="notranslate">export interface UserInterfaceColors { [index: UserInterfaceElement]: ColorInfo; } export interface ColorInfo { r: number; g: number; b: number; a: number; } export enum UserInterfaceElement { ActiveTitleBar = 0, InactiveTitleBar = 1, } </code></pre></div>
1
<p dir="auto">Is it possible to augment the type definition for <code class="notranslate">ComponentOptions</code>?</p> <p dir="auto">I am using the <a href="https://github.com/jpex-js/vue-inject">vue-inject</a> plugin which allows specifying the <code class="notranslate">dependencies</code> section in a component definition. Unfortunately, I can't get it to work the right way.</p> <p dir="auto">My <code class="notranslate">vue-augmented.d.ts</code> looks like this:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import Vue from &quot;vue&quot;; declare module &quot;vue&quot; { export type ComponentOptions&lt;T&gt; = { dependencies?: string | string[] | { [key: string]: string }; } }"><pre class="notranslate"><code class="notranslate">import Vue from "vue"; declare module "vue" { export type ComponentOptions&lt;T&gt; = { dependencies?: string | string[] | { [key: string]: string }; } } </code></pre></div> <p dir="auto">Typescript throws an error:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ts] Duplicate identifier 'ComponentOptions'."><pre class="notranslate"><code class="notranslate">[ts] Duplicate identifier 'ComponentOptions'. </code></pre></div> <p dir="auto">P.S. It does work as expected if you hack the original <code class="notranslate">options.d.ts</code> file provided by Vue, but this solution is unacceptable :(</p>
<p dir="auto">Vue 1.0.26<br> Firefox 47.0</p> <h3 dir="auto">Reproduction Link</h3> <p dir="auto"><a href="http://jsfiddle.net/5sH6A/523/" rel="nofollow">http://jsfiddle.net/5sH6A/523/</a></p> <h3 dir="auto">Info</h3> <ul dir="auto"> <li>Click the button to toggle the visibility of the <code class="notranslate">&lt;test&gt;</code> component.</li> <li>The entrance transition works, but the leave transition doesn't, causing the element to remain in the DOM indefinitely.</li> <li>Clicking the button multiple times results in multiple <code class="notranslate">&lt;test&gt;</code> components in the DOM.</li> </ul> <p dir="auto">The following things must be present for the bug to occur:</p> <ul dir="auto"> <li>It must be a component instance with visibility toggled via <code class="notranslate">v-if</code>.</li> <li>It must be a flexbox child.</li> <li>It must be positioned absolutely.</li> <li>It must have a transition.</li> <li><code class="notranslate">Vue.config.debug</code> must be false.</li> </ul>
0
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=littleli" rel="nofollow">Aleš Najmann</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-6482?redirect=false" rel="nofollow">SPR-6482</a></strong> and commented</p> <p dir="auto">At the moment in my code exist method with such signature:</p> <div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@RequestMapping(value = &quot;/projects/{filter}/{order}-{direction}&quot;, method = RequestMethod.GET) public String filteredProjectListing(@PathVariable(&quot;filter&quot;) String filter, @PathVariable(&quot;order&quot;) String order, @PathVariable(&quot;direction&quot;) String direction, ModelMap model) { ... }"><pre class="notranslate"><span class="pl-c1">@</span><span class="pl-c1">RequestMapping</span>(<span class="pl-s1">value</span> = <span class="pl-s">"/projects/{filter}/{order}-{direction}"</span>, <span class="pl-s1">method</span> = <span class="pl-smi">RequestMethod</span>.<span class="pl-c1">GET</span>) <span class="pl-k">public</span> <span class="pl-smi">String</span> <span class="pl-s1">filteredProjectListing</span>(<span class="pl-c1">@</span><span class="pl-c1">PathVariable</span>(<span class="pl-s">"filter"</span>) <span class="pl-smi">String</span> <span class="pl-s1">filter</span>, <span class="pl-c1">@</span><span class="pl-c1">PathVariable</span>(<span class="pl-s">"order"</span>) <span class="pl-smi">String</span> <span class="pl-s1">order</span>, <span class="pl-c1">@</span><span class="pl-c1">PathVariable</span>(<span class="pl-s">"direction"</span>) <span class="pl-smi">String</span> <span class="pl-s1">direction</span>, <span class="pl-smi">ModelMap</span> <span class="pl-s1">model</span>) { ... }</pre></div> <p dir="auto">order is String variable containing ognl-like expresssion ie. "raging.result" (which I later use for BeanComparator) but this mapping is in version RC3 is not found, which is different behaviour from RC2 where there is no such problem.</p> <p dir="auto">Log message with example of given fault result is:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2009-12-01 16:38:02,459 WARN [org.springframework.web.servlet.PageNotFound] - &lt;No mapping found for HTTP request with URI [/Example/projects/all/rate.result-asc.html] in DispatcherServlet with name 'Example'&gt;"><pre class="notranslate"><code class="notranslate">2009-12-01 16:38:02,459 WARN [org.springframework.web.servlet.PageNotFound] - &lt;No mapping found for HTTP request with URI [/Example/projects/all/rate.result-asc.html] in DispatcherServlet with name 'Example'&gt; </code></pre></div> <p dir="auto">There is no problem with handling path which doesn't contain more '.' (dot) characters, so this can probably help you with analysis of the problem.</p> <hr> <p dir="auto"><strong>Affects:</strong> 3.0 RC3</p> <p dir="auto"><strong>Attachments:</strong></p> <ul dir="auto"> <li><a href="https://jira.spring.io/secure/attachment/15985/UriTemplateServletAnnotationControllerTests.java.diff" rel="nofollow">UriTemplateServletAnnotationControllerTests.java.diff</a> (<em>1.41 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="398100875" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/11226" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/11226/hovercard" href="https://github.com/spring-projects/spring-framework/issues/11226">#11226</a> Requests URIs containing . cannot be mapped correctly using <code class="notranslate">@RequestMapping</code> in RC3 (<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="398100349" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/11165" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/11165/hovercard" href="https://github.com/spring-projects/spring-framework/issues/11165">#11165</a> <code class="notranslate">@MVC</code> URI Template Variable Regression - Matching values containing . (dot) (<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="398098734" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/10947" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/10947/hovercard" href="https://github.com/spring-projects/spring-framework/issues/10947">#10947</a> PathVariable resolution does not work properly</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/976f920db2773864e657ff5e5f6c0cf71f27665a/hovercard" href="https://github.com/spring-projects/spring-framework/commit/976f920db2773864e657ff5e5f6c0cf71f27665a"><tt>976f920</tt></a></p> <p dir="auto">1 votes, 3 watchers</p>
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=edspace" rel="nofollow">Eduard Papa</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-7474?redirect=false" rel="nofollow">SPR-7474</a></strong> and commented</p> <p dir="auto">According to the javadoc for XMLStreamReader, when a null namespaceURI is passed to getAttributeValue(String, String), the method should return the attribute value without matching the namespace URI.</p> <p dir="auto">Javadoc:<br> <a href="http://download-llnw.oracle.com/javase/6/docs/api/javax/xml/stream/XMLStreamReader.html#getAttributeValue%28java.lang.String,%20java.lang.String%29" rel="nofollow">http://download-llnw.oracle.com/javase/6/docs/api/javax/xml/stream/XMLStreamReader.html#getAttributeValue%28java.lang.String,%20java.lang.String%29</a></p> <p dir="auto">AbstractXmlStreamReader is not handling that condition correctly and tries to match the attribute's namespace with null:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="if (name.getNamespaceURI().equals(namespaceURI) &amp;&amp; name.getLocalPart().equals(localName)) { return getAttributeValue( i ) ; } return null;"><pre class="notranslate"><code class="notranslate">if (name.getNamespaceURI().equals(namespaceURI) &amp;&amp; name.getLocalPart().equals(localName)) { return getAttributeValue( i ) ; } return null; </code></pre></div> <p dir="auto">This results in getAttributeValue returning null whenever the namespaceURI parameter is null.</p> <p dir="auto">The fix would be to change the code above as follows:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="if (*(namespaceURI == null || name.getNamespaceURI().equals(namespaceURI))* &amp;&amp; name.getLocalPart().equals(localName)) { return getAttributeValue( i ) ; } return null;"><pre class="notranslate"><code class="notranslate">if (*(namespaceURI == null || name.getNamespaceURI().equals(namespaceURI))* &amp;&amp; name.getLocalPart().equals(localName)) { return getAttributeValue( i ) ; } return null; </code></pre></div> <p dir="auto">Please note that this problem exists in two classes:<br> org.springframework.util.xml.AbstractXmlStreamReader in Spring-Core 3.0.3<br> org.springframework.xml.stream.AbstractXmlStreamReader in Spring-Xml 1.5.9</p> <hr> <p dir="auto"><strong>Affects:</strong> 3.0.3</p> <p dir="auto"><strong>Attachments:</strong></p> <ul dir="auto"> <li><a href="https://jira.spring.io/secure/attachment/17012/XStreamMarshaller7474.java" rel="nofollow">XStreamMarshaller7474.java</a> (<em>1.75 kB</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/061b2c91a0bc979e722aeb6ed02060e9c8744f44/hovercard" href="https://github.com/spring-projects/spring-framework/commit/061b2c91a0bc979e722aeb6ed02060e9c8744f44"><tt>061b2c9</tt></a></p>
0
<p dir="auto">[Enter steps to reproduce below:]</p> <ol dir="auto"> <li>Delete a file</li> <li>Re-open atom project</li> </ol> <p dir="auto"><strong>Atom Version</strong>: 0.198.0<br> <strong>System</strong>: Mac OS X 10.10.3<br> <strong>Thrown From</strong>: Atom Core</p> <h3 dir="auto">Stack Trace</h3> <p dir="auto">Uncaught Error: ENOENT: no such file or directory, open '/Users/admin/Documents/workspace/coachcommune/components/web-site-app/WebSiteAppController.js'</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At events.js:141 Error: ENOENT: no such file or directory, open '/Users/admin/Documents/workspace/coachcommune/components/web-site-app/WebSiteAppController.js' at Error (native)"><pre class="notranslate"><code class="notranslate">At events.js:141 Error: ENOENT: no such file or directory, open '/Users/admin/Documents/workspace/coachcommune/components/web-site-app/WebSiteAppController.js' at Error (native) </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="{ &quot;core&quot;: { &quot;themes&quot;: [ &quot;atom-light-ui&quot;, &quot;atom-dark-syntax&quot; ], &quot;disabledPackages&quot;: [ &quot;sublime-tabs&quot;, &quot;atomatigit&quot;, &quot;autocomplete-paths&quot;, &quot;autocomplete-html&quot;, &quot;language-java&quot;, &quot;language-make&quot;, &quot;language-objective-c&quot;, &quot;language-perl&quot;, &quot;language-php&quot;, &quot;language-python&quot;, &quot;language-ruby&quot;, &quot;language-ruby-on-rails&quot;, &quot;language-sass&quot;, &quot;language-sql&quot;, &quot;language-xml&quot;, &quot;dev-live-reload&quot;, &quot;language-coffee-script&quot;, &quot;language-csharp&quot;, &quot;language-go&quot;, &quot;language-toml&quot;, &quot;project-manager&quot;, &quot;color-picker&quot;, &quot;jumpy&quot;, &quot;linter&quot;, &quot;linter-tslint&quot;, &quot;angularjs&quot;, &quot;language-c&quot;, &quot;language-clojure&quot; ] }, &quot;editor&quot;: { &quot;invisibles&quot;: {}, &quot;showIndentGuide&quot;: true, &quot;softWrapAtPreferredLineLength&quot;: true } }"><pre class="notranslate">{ <span class="pl-ent">"core"</span>: { <span class="pl-ent">"themes"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>atom-light-ui<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>atom-dark-syntax<span class="pl-pds">"</span></span> ], <span class="pl-ent">"disabledPackages"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>sublime-tabs<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>atomatigit<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>autocomplete-paths<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>autocomplete-html<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-java<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-make<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-objective-c<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-perl<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-php<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-python<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-ruby<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-ruby-on-rails<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-sass<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-sql<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-xml<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>dev-live-reload<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-coffee-script<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-csharp<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-go<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-toml<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>project-manager<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>color-picker<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>jumpy<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>linter<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>linter-tslint<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>angularjs<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-c<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-clojure<span class="pl-pds">"</span></span> ] }, <span class="pl-ent">"editor"</span>: { <span class="pl-ent">"invisibles"</span>: {}, <span class="pl-ent">"showIndentGuide"</span>: <span class="pl-c1">true</span>, <span class="pl-ent">"softWrapAtPreferredLineLength"</span>: <span class="pl-c1">true</span> } }</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 .bin, vundefined angularjs-styleguide-snippets, v0.7.0 atom-typescript, v4.2.2 autocomplete-plus, v2.13.1 editorconfig, v1.0.0 emmet, v2.3.9 linter, v0.12.2 tag, v0.2.3 # Dev No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span> .<span class="pl-smi">bin</span>, vundefined angularjs<span class="pl-k">-</span>styleguide<span class="pl-k">-</span>snippets, v0.<span class="pl-ii">7</span>.<span class="pl-ii">0</span> atom<span class="pl-k">-</span>typescript, v4.<span class="pl-ii">2</span>.<span class="pl-ii">2</span> autocomplete<span class="pl-k">-</span>plus, v2.<span class="pl-ii">13</span>.<span class="pl-ii">1</span> editorconfig, v1.<span class="pl-ii">0</span>.<span class="pl-ii">0</span> emmet, v2.<span class="pl-ii">3</span>.<span class="pl-ii">9</span> linter, v0.<span class="pl-ii">12</span>.<span class="pl-ii">2</span> tag, v0.<span class="pl-ii">2</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">Some repro steps that I gathered from the existing issues:</p> <ol dir="auto"> <li>Have a file open in branch <code class="notranslate">something</code> that doesn't exist in branch <code class="notranslate">atom</code></li> <li><code class="notranslate">git checkout atom</code></li> <li>ENOENT <g-emoji class="g-emoji" alias="boom" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4a5.png">💥</g-emoji><br> OR</li> <li>Have a file open in Atom that will be affected by <code class="notranslate">git rebase</code></li> <li><code class="notranslate">git rebase</code></li> <li>ENOENT <g-emoji class="g-emoji" alias="-1" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f44e.png">👎</g-emoji><br> OR<br> Just simply rename a file outside of Atom that's currently open inside of Atom.</li> </ol>
1
<p dir="auto">Numpy - 1.12.1<br> Python - 2.7.13 | Anaconda 4.4.0<br> OS - CentOS, MacOS</p> <p dir="auto">I am run the following code to produce an array using numpy</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import numpy as np print np.arange(0.002, 0.021, 0.001)"><pre class="notranslate"><code class="notranslate">import numpy as np print np.arange(0.002, 0.021, 0.001) </code></pre></div> <p dir="auto">And get the following result</p> <p dir="auto"><code class="notranslate">[ 0.002 0.003 0.004 0.005 0.006 0.007 0.008 0.009 0.01 0.011 0.012 0.013 0.014 0.015 0.016 0.017 0.018 0.019 0.02 0.021] </code></p> <p dir="auto">The last entry should not be there. This is specific to values I have mentioned here. I do not encounter this while using other values in arange.</p> <p dir="auto">I was able to reproduce this in the following online ipython editor website, so I don't think this is specific to my installation.<br> <a href="https://www.pythonanywhere.com/try-ipython/" rel="nofollow">https://www.pythonanywhere.com/try-ipython/</a></p>
<p dir="auto">Operating system: Windows 10<br> python version: 3.5.3<br> numpy version: 1.12.1</p> <p dir="auto">Issue information:<br> when I input numpy.arange(0,5), the output was normal for an array excluding the terminal number 5, but if I input numpy.arange(0.442,0.524,0.001), the outcome turned out to be abnormal including the terminal number 0.524.</p>
1
<p dir="auto">In</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="versioninfo() Julia Version 0.5.0-dev+2913 Commit 7199602* (2016-02-28 08:14 UTC) Platform Info: System: Linux (x86_64-suse-linux) CPU: Intel(R) Core(TM) i5-4460 CPU @ 3.20GHz WORD_SIZE: 64 BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY Haswell) LAPACK: libopenblas64_ LIBM: libopenlibm LLVM: libLLVM-3.7.1"><pre class="notranslate"><code class="notranslate">versioninfo() Julia Version 0.5.0-dev+2913 Commit 7199602* (2016-02-28 08:14 UTC) Platform Info: System: Linux (x86_64-suse-linux) CPU: Intel(R) Core(TM) i5-4460 CPU @ 3.20GHz WORD_SIZE: 64 BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY Haswell) LAPACK: libopenblas64_ LIBM: libopenlibm LLVM: libLLVM-3.7.1 </code></pre></div> <p dir="auto">make testall fails with unusual output from subarray (long printing of contents of an array A) and finally:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" From worker 4: * parallel in 48.01 seconds, maxrss 773.58 MB From worker 5: * examples in 17.36 seconds, maxrss 867.44 MB Exception running test subarray : On worker 3: LoadError: Mismatch in test_cartesian at /home/colin/Downloads/julia/test/subarray.jl:104 in runtests at /home/colin/Downloads/julia/test/subarray.jl:228 in runviews at /home/colin/Downloads/julia/test/subarray.jl:249 [inlined code] from /home/colin/Downloads/julia/test/subarray.jl:326 in anonymous at ./no file:4294967295 [inlined code] from ./essentials.jl:78 in include_string at ./loading.jl:371 in include_from_node1 at ./loading.jl:420 [inlined code] from ./util.jl:179 in runtests at /home/colin/Downloads/julia/test/testdefs.jl:7 in #16 at /home/colin/Downloads/julia/test/runtests.jl:36 in run_work_thunk at ./multi.jl:714 [inlined code] from ./multi.jl:1010 in #253 at ./task.jl:59 while loading /home/colin/Downloads/julia/test/subarray.jl, in expression starting on line 308 ERROR: LoadError: Some tests exited with errors. in (::##11#19)() at /home/colin/Downloads/julia/test/runtests.jl:64 in cd(::##11#19, ::ASCIIString) at ./file.jl:48 in include(::ASCIIString) at ./boot.jl:264 in include_from_node1(::UTF8String) at ./loading.jl:417 in process_options(::Base.JLOptions) at ./client.jl:262 in _start() at ./client.jl:318 while loading /home/colin/Downloads/julia/test/runtests.jl, in expression starting on line 13 Makefile:12: recipe for target 'all' failed make[1]: *** [all] Error 1 Makefile:573: recipe for target 'testall' failed make: *** [testall] Error 2"><pre class="notranslate"><code class="notranslate"> From worker 4: * parallel in 48.01 seconds, maxrss 773.58 MB From worker 5: * examples in 17.36 seconds, maxrss 867.44 MB Exception running test subarray : On worker 3: LoadError: Mismatch in test_cartesian at /home/colin/Downloads/julia/test/subarray.jl:104 in runtests at /home/colin/Downloads/julia/test/subarray.jl:228 in runviews at /home/colin/Downloads/julia/test/subarray.jl:249 [inlined code] from /home/colin/Downloads/julia/test/subarray.jl:326 in anonymous at ./no file:4294967295 [inlined code] from ./essentials.jl:78 in include_string at ./loading.jl:371 in include_from_node1 at ./loading.jl:420 [inlined code] from ./util.jl:179 in runtests at /home/colin/Downloads/julia/test/testdefs.jl:7 in #16 at /home/colin/Downloads/julia/test/runtests.jl:36 in run_work_thunk at ./multi.jl:714 [inlined code] from ./multi.jl:1010 in #253 at ./task.jl:59 while loading /home/colin/Downloads/julia/test/subarray.jl, in expression starting on line 308 ERROR: LoadError: Some tests exited with errors. in (::##11#19)() at /home/colin/Downloads/julia/test/runtests.jl:64 in cd(::##11#19, ::ASCIIString) at ./file.jl:48 in include(::ASCIIString) at ./boot.jl:264 in include_from_node1(::UTF8String) at ./loading.jl:417 in process_options(::Base.JLOptions) at ./client.jl:262 in _start() at ./client.jl:318 while loading /home/colin/Downloads/julia/test/runtests.jl, in expression starting on line 13 Makefile:12: recipe for target 'all' failed make[1]: *** [all] Error 1 Makefile:573: recipe for target 'testall' failed make: *** [testall] Error 2 </code></pre></div>
<p dir="auto">This failure happens when building the RPM nightlies (LLVM 3.7.1 with Julia patches), both on 32- and 64-bit. It appeared for the first time on on February 5th. It doesn't seem to be present in nightlies from the 4th.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" From worker 2: * subarray A = [1 14 27 40 53 66 79 92 105 118 131 144 157] From worker 2: From worker 2: [170 183 196 209 222 235 248 261 274 287 300 313 326] From worker 2: From worker 2: [339 352 365 378 391 404 417 430 443 456 469 482 495] From worker 2: From worker 2: [508 521 534 547 560 573 586 599 612 625 638 651 664] From worker 2: From worker 2: [677 690 703 716 729 742 755 768 781 794 807 820 833] From worker 2: From worker 2: [846 859 872 885 898 911 924 937 950 963 976 989 1002] From worker 2: From worker 2: [1015 1028 1041 1054 1067 1080 1093 1106 1119 1132 1145 1158 1171] From worker 2: From worker 2: [1184 1197 1210 1223 1236 1249 1262 1275 1288 1301 1314 1327 1340] From worker 2: From worker 2: [1353 1366 1379 1392 1405 1418 1431 1444 1457 1470 1483 1496 1509] From worker 2: From worker 2: [1522 1535 1548 1561 1574 1587 1600 1613 1626 1639 1652 1665 1678] From worker 2: From worker 2: [1691 1704 1717 1730 1743 1756 1769 1782 1795 1808 1821 1834 1847] From worker 2: From worker 2: [1860 1873 1886 1899 1912 1925 1938 1951 1964 1977 1990 2003 2016] From worker 2: From worker 2: [2029 2042 2055 2068 2081 2094 2107 2120 2133 2146 2159 2172 2185] From worker 2: B = [1 14 27 40 53 66 79 92 105 118 131 144 157] From worker 2: From worker 2: [170 183 196 209 222 235 248 261 274 287 300 313 326] From worker 2: From worker 2: [339 352 365 378 391 404 417 430 443 456 469 482 495] From worker 2: From worker 2: [508 521 534 547 560 573 586 599 612 625 638 651 664] From worker 2: From worker 2: [677 690 703 716 729 742 755 768 781 794 807 820 833] From worker 2: From worker 2: [846 859 872 885 898 911 924 937 950 963 976 989 1002] From worker 2: From worker 2: [1015 1028 1041 1054 1067 1080 1093 1106 1119 1132 1145 1158 1171] From worker 2: From worker 2: [1184 1197 1210 1223 1236 1249 1262 1275 1288 1301 1314 1327 1340] From worker 2: From worker 2: [1353 1366 1379 1392 1405 1418 1431 1444 1457 1470 1483 1496 1509] From worker 2: From worker 2: [1522 1535 1548 1561 1574 1587 1600 1613 1626 1639 1652 1665 1678] From worker 2: From worker 2: [1691 1704 1717 1730 1743 1756 1769 1782 1795 1808 1821 1834 1847] From worker 2: From worker 2: [1860 1873 1886 1899 1912 1925 1938 1951 1964 1977 1990 2003 2016] From worker 2: From worker 2: [2029 2042 2055 2068 2081 2094 2107 2120 2133 2146 2159 2172 2185] Worker 2 terminated. ERROR (unhandled task failure): UndefVarError: #test_cartesian not defined Exception running test subarray : ProcessExitedException() ERROR: LoadError: Some tests exited with errors. in (::##11#19)() at /builddir/build/BUILD/julia/test/runtests.jl:64 in cd(::##11#19, ::ASCIIString) at ./file.jl:47 in include(::ASCIIString) at ./boot.jl:264 in include_from_node1(::UTF8String) at ./loading.jl:417 in process_options(::Base.JLOptions) at ./client.jl:244 in _start() at ./client.jl:300 while loading /builddir/build/BUILD/julia/test/runtests.jl, in expression starting on line 13"><pre class="notranslate"><code class="notranslate"> From worker 2: * subarray A = [1 14 27 40 53 66 79 92 105 118 131 144 157] From worker 2: From worker 2: [170 183 196 209 222 235 248 261 274 287 300 313 326] From worker 2: From worker 2: [339 352 365 378 391 404 417 430 443 456 469 482 495] From worker 2: From worker 2: [508 521 534 547 560 573 586 599 612 625 638 651 664] From worker 2: From worker 2: [677 690 703 716 729 742 755 768 781 794 807 820 833] From worker 2: From worker 2: [846 859 872 885 898 911 924 937 950 963 976 989 1002] From worker 2: From worker 2: [1015 1028 1041 1054 1067 1080 1093 1106 1119 1132 1145 1158 1171] From worker 2: From worker 2: [1184 1197 1210 1223 1236 1249 1262 1275 1288 1301 1314 1327 1340] From worker 2: From worker 2: [1353 1366 1379 1392 1405 1418 1431 1444 1457 1470 1483 1496 1509] From worker 2: From worker 2: [1522 1535 1548 1561 1574 1587 1600 1613 1626 1639 1652 1665 1678] From worker 2: From worker 2: [1691 1704 1717 1730 1743 1756 1769 1782 1795 1808 1821 1834 1847] From worker 2: From worker 2: [1860 1873 1886 1899 1912 1925 1938 1951 1964 1977 1990 2003 2016] From worker 2: From worker 2: [2029 2042 2055 2068 2081 2094 2107 2120 2133 2146 2159 2172 2185] From worker 2: B = [1 14 27 40 53 66 79 92 105 118 131 144 157] From worker 2: From worker 2: [170 183 196 209 222 235 248 261 274 287 300 313 326] From worker 2: From worker 2: [339 352 365 378 391 404 417 430 443 456 469 482 495] From worker 2: From worker 2: [508 521 534 547 560 573 586 599 612 625 638 651 664] From worker 2: From worker 2: [677 690 703 716 729 742 755 768 781 794 807 820 833] From worker 2: From worker 2: [846 859 872 885 898 911 924 937 950 963 976 989 1002] From worker 2: From worker 2: [1015 1028 1041 1054 1067 1080 1093 1106 1119 1132 1145 1158 1171] From worker 2: From worker 2: [1184 1197 1210 1223 1236 1249 1262 1275 1288 1301 1314 1327 1340] From worker 2: From worker 2: [1353 1366 1379 1392 1405 1418 1431 1444 1457 1470 1483 1496 1509] From worker 2: From worker 2: [1522 1535 1548 1561 1574 1587 1600 1613 1626 1639 1652 1665 1678] From worker 2: From worker 2: [1691 1704 1717 1730 1743 1756 1769 1782 1795 1808 1821 1834 1847] From worker 2: From worker 2: [1860 1873 1886 1899 1912 1925 1938 1951 1964 1977 1990 2003 2016] From worker 2: From worker 2: [2029 2042 2055 2068 2081 2094 2107 2120 2133 2146 2159 2172 2185] Worker 2 terminated. ERROR (unhandled task failure): UndefVarError: #test_cartesian not defined Exception running test subarray : ProcessExitedException() ERROR: LoadError: Some tests exited with errors. in (::##11#19)() at /builddir/build/BUILD/julia/test/runtests.jl:64 in cd(::##11#19, ::ASCIIString) at ./file.jl:47 in include(::ASCIIString) at ./boot.jl:264 in include_from_node1(::UTF8String) at ./loading.jl:417 in process_options(::Base.JLOptions) at ./client.jl:244 in _start() at ./client.jl:300 while loading /builddir/build/BUILD/julia/test/runtests.jl, in expression starting on line 13 </code></pre></div> <p dir="auto"><a href="https://copr-be.cloud.fedoraproject.org/results/nalimilan/julia-nightlies/fedora-23-i386/00158644-julia/build.log.gz" rel="nofollow">https://copr-be.cloud.fedoraproject.org/results/nalimilan/julia-nightlies/fedora-23-i386/00158644-julia/build.log.gz</a></p>
1
<p dir="auto">Hi,</p> <p dir="auto">We have had a setup using Playwright that accesses Business central for more than 2 years running smoothly. 4 different processes running several time a day and each proces runs +45 times.</p> <p dir="auto">Since update to version 22.X of Business central the process stalls just after business central has logged in (can see login in the AD).<br> Business central is stalled at 'Getting Ready...' seems to go into loop. We await next step and have tried to expand the wait significantly but Business central never continues.</p> <p dir="auto">Have tried Microsoft business central support but without luck - they say that this is not supported by them. Tech guy helping me has been really helpful but think he was 'closed down' as the Business Central Group does not see it as being their issue.....no changes til Business Central will happen to mitigate around this.</p> <p dir="auto">We have tried many things - and we have different documentation and can also create further documentation if it can help.</p> <p dir="auto">We have a Business Central version 21 running and the process runs successfully as they have done for over 2 years - related to this we have Playwright trace files and HAR files</p> <p dir="auto">We have a Business Central version 22.X running and the process stalls every time and we have tried hundreds of times - related to this we have Playwright trace files and HAR files also</p> <p dir="auto">Have tried both of the above with a dedicated VPN also - no difference.</p> <p dir="auto">Is there anybody out there who could help us in any way??<br> Does anybody know how to interpretate the files?<br> This has been down since 4. June now so if anybody knows anything that they believe could help we would really appreciate!</p> <h3 dir="auto">System info</h3> <ul dir="auto"> <li>Playwright Version: [v1.XX] - latest</li> <li>Operating System: [All, Windows 11, Ubuntu 20, macOS 13.2, etc.]</li> <li>Browser: [All, <strong>Chromium</strong>, Firefox, WebKit]</li> <li>Other info: Executing using PlayWright</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"> I provided exact source code that allows reproducing the issue locally.</li> </ul> <p dir="auto"><strong>Link to the GitHub repository with the repro</strong></p> <p dir="auto">[https://github.com/your_profile/playwright_issue_title]</p> <p dir="auto">or</p> <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"><strong>Test file (self-contained)</strong></p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="it('should check the box using setChecked', async ({ page }) =&gt; { await page.setContent(`&lt;input id='checkbox' type='checkbox'&gt;&lt;/input&gt;`); await page.getByRole('checkbox').check(); await expect(page.getByRole('checkbox')).toBeChecked(); });"><pre class="notranslate"><span class="pl-en">it</span><span class="pl-kos">(</span><span class="pl-s">'should check the box using setChecked'</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">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">setContent</span><span class="pl-kos">(</span><span class="pl-s">`&lt;input id='checkbox' type='checkbox'&gt;&lt;/input&gt;`</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">getByRole</span><span class="pl-kos">(</span><span class="pl-s">'checkbox'</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">check</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-en">expect</span><span class="pl-kos">(</span><span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">getByRole</span><span class="pl-kos">(</span><span class="pl-s">'checkbox'</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toBeChecked</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto"><strong>Steps</strong></p> <ul dir="auto"> <li>[Run the test]</li> <li>[...]</li> </ul> <p dir="auto"><strong>Expected</strong></p> <p dir="auto">[Describe expected behavior]</p> <p dir="auto"><strong>Actual</strong></p> <p dir="auto">[Describe actual behavior]</p>
<h3 dir="auto">System info</h3> <ul dir="auto"> <li>Playwright Version: v1.32.2</li> <li>Operating System: Windows</li> <li>Browser: Chromium</li> <li>Other info:</li> </ul> <h3 dir="auto">Source code</h3> <ul dir="auto"> <li>[x ] I provided exact source code that allows reproducing the issue locally.</li> </ul> <p dir="auto"><strong>Link to the GitHub repository with the repro</strong></p> <p dir="auto"><a href="https://github.com/AlexKomanov/playwright-speed-issue">Repository</a></p> <p dir="auto">or</p> <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 {PlaywrightTestConfig} from &quot;@playwright/test&quot;; const config: PlaywrightTestConfig = { timeout: 240000, globalTimeout: 18000000, testDir: &quot;./tests&quot;, reporter: [ [&quot;list&quot;], [&quot;junit&quot;, {outputFile: &quot;reports/test-results.xml&quot;}], [&quot;json&quot;, {outputFile: &quot;reports/test-results.json&quot;}], [&quot;html&quot;, {open: &quot;never&quot;}], ], use: { browserName: &quot;chromium&quot;, actionTimeout: 30000, trace: &quot;off&quot;, screenshot: &quot;on&quot;, viewport: {width: 1400, height: 900}, video: { mode: &quot;retain-on-failure&quot;, size: { //Like in our project width: 1400, height: 900, }, }, contextOptions: { ignoreHTTPSErrors: true, }, // Browser options launchOptions: { channel: &quot;chrome&quot;, slowMo: 200, args: [ &quot;--no-sandbox&quot;, &quot;--ignore-certificate-errors&quot;, &quot;--ignore-certificate-errors-skip-list&quot;, ], }, }, }; export default config;"><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-v">PlaywrightTestConfig</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">const</span> <span class="pl-s1">config</span>: <span class="pl-v">PlaywrightTestConfig</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span> <span class="pl-c1">timeout</span>: <span class="pl-c1">240000</span><span class="pl-kos">,</span> <span class="pl-c1">globalTimeout</span>: <span class="pl-c1">18000000</span><span class="pl-kos">,</span> <span class="pl-c1">testDir</span>: <span class="pl-s">"./tests"</span><span class="pl-kos">,</span> <span class="pl-c1">reporter</span>: <span class="pl-kos">[</span> <span class="pl-kos">[</span><span class="pl-s">"list"</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s">"junit"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span><span class="pl-c1">outputFile</span>: <span class="pl-s">"reports/test-results.xml"</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">"json"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span><span class="pl-c1">outputFile</span>: <span class="pl-s">"reports/test-results.json"</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">"html"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span><span class="pl-c1">open</span>: <span class="pl-s">"never"</span><span class="pl-kos">}</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-c1">use</span>: <span class="pl-kos">{</span> <span class="pl-c1">browserName</span>: <span class="pl-s">"chromium"</span><span class="pl-kos">,</span> <span class="pl-c1">actionTimeout</span>: <span class="pl-c1">30000</span><span class="pl-kos">,</span> <span class="pl-c1">trace</span>: <span class="pl-s">"off"</span><span class="pl-kos">,</span> <span class="pl-c1">screenshot</span>: <span class="pl-s">"on"</span><span class="pl-kos">,</span> <span class="pl-c1">viewport</span>: <span class="pl-kos">{</span><span class="pl-c1">width</span>: <span class="pl-c1">1400</span><span class="pl-kos">,</span> <span class="pl-c1">height</span>: <span class="pl-c1">900</span><span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-c1">video</span>: <span class="pl-kos">{</span> <span class="pl-c1">mode</span>: <span class="pl-s">"retain-on-failure"</span><span class="pl-kos">,</span> <span class="pl-c1">size</span>: <span class="pl-kos">{</span> <span class="pl-c">//Like in our project</span> <span class="pl-c1">width</span>: <span class="pl-c1">1400</span><span class="pl-kos">,</span> <span class="pl-c1">height</span>: <span class="pl-c1">900</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-c1">contextOptions</span>: <span class="pl-kos">{</span> <span class="pl-c1">ignoreHTTPSErrors</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-c">// Browser options</span> <span class="pl-c1">launchOptions</span>: <span class="pl-kos">{</span> <span class="pl-c1">channel</span>: <span class="pl-s">"chrome"</span><span class="pl-kos">,</span> <span class="pl-c1">slowMo</span>: <span class="pl-c1">200</span><span class="pl-kos">,</span> <span class="pl-c1">args</span>: <span class="pl-kos">[</span> <span class="pl-s">"--no-sandbox"</span><span class="pl-kos">,</span> <span class="pl-s">"--ignore-certificate-errors"</span><span class="pl-kos">,</span> <span class="pl-s">"--ignore-certificate-errors-skip-list"</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-k">export</span> <span class="pl-k">default</span> <span class="pl-s1">config</span><span class="pl-kos">;</span></pre></div> <p dir="auto"><strong>Test file (self-contained)</strong></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(&quot;Describe&quot;, () =&gt; { test.beforeEach(async ({page}) =&gt; { await page.setViewportSize({width: 1400, height: 900}); }) test('test 1', async ({ page }) =&gt; { await page.goto('https://playwright.dev/'); // Expect a title &quot;to contain&quot; a substring. await expect(page).toHaveTitle(/Playwright/); // create a locator const getStarted = page.getByText('Get Started'); // Expect an attribute &quot;to be strictly equal&quot; to the value. await expect(getStarted).toHaveAttribute('href', '/docs/intro'); //page.waitForFunction await page.waitForFunction(() =&gt; document.querySelectorAll('[class=&quot;navbar__logo&quot;]').length == 1, {timeout: 60000}); // locator.toHaveCount() await expect(page.locator('[class=&quot;navbar__logo&quot;]')).toHaveCount(1); // Click the get started link. await getStarted.click(); // Expects the URL to contain intro. await expect(page).toHaveURL(/.*intro/); }); test('test 2', async ({ page }) =&gt; { await page.goto('https://playwright.dev/'); // Expect a title &quot;to contain&quot; a substring. await expect(page).toHaveTitle(/Playwright/); // create a locator const getStarted = page.getByText('Get Started'); // Expect an attribute &quot;to be strictly equal&quot; to the value. await expect(getStarted).toHaveAttribute('href', '/docs/intro'); //page.waitForFunction await page.waitForFunction(() =&gt; document.querySelectorAll('[class=&quot;navbar__logo&quot;]').length == 1, {timeout: 60000}); // locator.toHaveCount() await expect(page.locator('[class=&quot;navbar__logo&quot;]')).toHaveCount(1); // Click the get started link. await getStarted.click(); // Expects the URL to contain intro. await expect(page).toHaveURL(/.*intro/); }); test('test 3', async ({ page }) =&gt; { await page.goto('https://playwright.dev/'); // Expect a title &quot;to contain&quot; a substring. await expect(page).toHaveTitle(/Playwright/); // create a locator const getStarted = page.getByText('Get Started'); // Expect an attribute &quot;to be strictly equal&quot; to the value. await expect(getStarted).toHaveAttribute('href', '/docs/intro'); //page.waitForFunction await page.waitForFunction(() =&gt; document.querySelectorAll('[class=&quot;navbar__logo&quot;]').length == 1, {timeout: 60000}); // locator.toHaveCount() await expect(page.locator('[class=&quot;navbar__logo&quot;]')).toHaveCount(1); // Click the get started link. await getStarted.click(); // Expects the URL to contain intro. await expect(page).toHaveURL(/.*intro/); }); test('test 4', async ({ page }) =&gt; { await page.goto('https://playwright.dev/'); // Expect a title &quot;to contain&quot; a substring. await expect(page).toHaveTitle(/Playwright/); // create a locator const getStarted = page.getByText('Get Started'); // Expect an attribute &quot;to be strictly equal&quot; to the value. await expect(getStarted).toHaveAttribute('href', '/docs/intro'); //page.waitForFunction await page.waitForFunction(() =&gt; document.querySelectorAll('[class=&quot;navbar__logo&quot;]').length == 1, {timeout: 60000}); // locator.toHaveCount() await expect(page.locator('[class=&quot;navbar__logo&quot;]')).toHaveCount(1); // Click the get started link. await getStarted.click(); // Expects the URL to contain intro. await expect(page).toHaveURL(/.*intro/); }); test('test 5', async ({ page }) =&gt; { await page.goto('https://playwright.dev/'); // Expect a title &quot;to contain&quot; a substring. await expect(page).toHaveTitle(/Playwright/); // create a locator const getStarted = page.getByText('Get Started'); // Expect an attribute &quot;to be strictly equal&quot; to the value. await expect(getStarted).toHaveAttribute('href', '/docs/intro'); //page.waitForFunction await page.waitForFunction(() =&gt; document.querySelectorAll('[class=&quot;navbar__logo&quot;]').length == 1, {timeout: 60000}); // locator.toHaveCount() await expect(page.locator('[class=&quot;navbar__logo&quot;]')).toHaveCount(1); // Click the get started link. await getStarted.click(); // Expects the URL to contain intro. await expect(page).toHaveURL(/.*intro/); }); }) "><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">"Describe"</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-s1">test</span><span class="pl-kos">.</span><span class="pl-en">beforeEach</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">=&gt;</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">setViewportSize</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-c1">width</span>: <span class="pl-c1">1400</span><span class="pl-kos">,</span> <span class="pl-c1">height</span>: <span class="pl-c1">900</span><span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-s">'test 1'</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">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">goto</span><span class="pl-kos">(</span><span class="pl-s">'https://playwright.dev/'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Expect a title "to contain" a substring.</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-kos">.</span><span class="pl-en">toHaveTitle</span><span class="pl-kos">(</span><span class="pl-pds"><span class="pl-c1">/</span>Playwright<span class="pl-c1">/</span></span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// create a locator</span> <span class="pl-k">const</span> <span class="pl-s1">getStarted</span> <span class="pl-c1">=</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">'Get Started'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Expect an attribute "to be strictly equal" to the value.</span> <span class="pl-k">await</span> <span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-s1">getStarted</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toHaveAttribute</span><span class="pl-kos">(</span><span class="pl-s">'href'</span><span class="pl-kos">,</span> <span class="pl-s">'/docs/intro'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">//page.waitForFunction</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">waitForFunction</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-en">querySelectorAll</span><span class="pl-kos">(</span><span class="pl-s">'[class="navbar__logo"]'</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">length</span> <span class="pl-c1">==</span> <span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-kos">{</span><span class="pl-c1">timeout</span>: <span class="pl-c1">60000</span><span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// locator.toHaveCount()</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">locator</span><span class="pl-kos">(</span><span class="pl-s">'[class="navbar__logo"]'</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toHaveCount</span><span class="pl-kos">(</span><span class="pl-c1">1</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Click the get started link.</span> <span class="pl-k">await</span> <span class="pl-s1">getStarted</span><span class="pl-kos">.</span><span class="pl-en">click</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Expects the URL to contain intro.</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-kos">.</span><span class="pl-en">toHaveURL</span><span class="pl-kos">(</span><span class="pl-pds"><span class="pl-c1">/</span>.<span class="pl-c1">*</span>intro<span class="pl-c1">/</span></span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-s">'test 2'</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">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">goto</span><span class="pl-kos">(</span><span class="pl-s">'https://playwright.dev/'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Expect a title "to contain" a substring.</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-kos">.</span><span class="pl-en">toHaveTitle</span><span class="pl-kos">(</span><span class="pl-pds"><span class="pl-c1">/</span>Playwright<span class="pl-c1">/</span></span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// create a locator</span> <span class="pl-k">const</span> <span class="pl-s1">getStarted</span> <span class="pl-c1">=</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">'Get Started'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Expect an attribute "to be strictly equal" to the value.</span> <span class="pl-k">await</span> <span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-s1">getStarted</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toHaveAttribute</span><span class="pl-kos">(</span><span class="pl-s">'href'</span><span class="pl-kos">,</span> <span class="pl-s">'/docs/intro'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">//page.waitForFunction</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">waitForFunction</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-en">querySelectorAll</span><span class="pl-kos">(</span><span class="pl-s">'[class="navbar__logo"]'</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">length</span> <span class="pl-c1">==</span> <span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-kos">{</span><span class="pl-c1">timeout</span>: <span class="pl-c1">60000</span><span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// locator.toHaveCount()</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">locator</span><span class="pl-kos">(</span><span class="pl-s">'[class="navbar__logo"]'</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toHaveCount</span><span class="pl-kos">(</span><span class="pl-c1">1</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Click the get started link.</span> <span class="pl-k">await</span> <span class="pl-s1">getStarted</span><span class="pl-kos">.</span><span class="pl-en">click</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Expects the URL to contain intro.</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-kos">.</span><span class="pl-en">toHaveURL</span><span class="pl-kos">(</span><span class="pl-pds"><span class="pl-c1">/</span>.<span class="pl-c1">*</span>intro<span class="pl-c1">/</span></span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-s">'test 3'</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">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">goto</span><span class="pl-kos">(</span><span class="pl-s">'https://playwright.dev/'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Expect a title "to contain" a substring.</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-kos">.</span><span class="pl-en">toHaveTitle</span><span class="pl-kos">(</span><span class="pl-pds"><span class="pl-c1">/</span>Playwright<span class="pl-c1">/</span></span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// create a locator</span> <span class="pl-k">const</span> <span class="pl-s1">getStarted</span> <span class="pl-c1">=</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">'Get Started'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Expect an attribute "to be strictly equal" to the value.</span> <span class="pl-k">await</span> <span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-s1">getStarted</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toHaveAttribute</span><span class="pl-kos">(</span><span class="pl-s">'href'</span><span class="pl-kos">,</span> <span class="pl-s">'/docs/intro'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">//page.waitForFunction</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">waitForFunction</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-en">querySelectorAll</span><span class="pl-kos">(</span><span class="pl-s">'[class="navbar__logo"]'</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">length</span> <span class="pl-c1">==</span> <span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-kos">{</span><span class="pl-c1">timeout</span>: <span class="pl-c1">60000</span><span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// locator.toHaveCount()</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">locator</span><span class="pl-kos">(</span><span class="pl-s">'[class="navbar__logo"]'</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toHaveCount</span><span class="pl-kos">(</span><span class="pl-c1">1</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Click the get started link.</span> <span class="pl-k">await</span> <span class="pl-s1">getStarted</span><span class="pl-kos">.</span><span class="pl-en">click</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Expects the URL to contain intro.</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-kos">.</span><span class="pl-en">toHaveURL</span><span class="pl-kos">(</span><span class="pl-pds"><span class="pl-c1">/</span>.<span class="pl-c1">*</span>intro<span class="pl-c1">/</span></span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-s">'test 4'</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">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">goto</span><span class="pl-kos">(</span><span class="pl-s">'https://playwright.dev/'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Expect a title "to contain" a substring.</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-kos">.</span><span class="pl-en">toHaveTitle</span><span class="pl-kos">(</span><span class="pl-pds"><span class="pl-c1">/</span>Playwright<span class="pl-c1">/</span></span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// create a locator</span> <span class="pl-k">const</span> <span class="pl-s1">getStarted</span> <span class="pl-c1">=</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">'Get Started'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Expect an attribute "to be strictly equal" to the value.</span> <span class="pl-k">await</span> <span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-s1">getStarted</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toHaveAttribute</span><span class="pl-kos">(</span><span class="pl-s">'href'</span><span class="pl-kos">,</span> <span class="pl-s">'/docs/intro'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">//page.waitForFunction</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">waitForFunction</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-en">querySelectorAll</span><span class="pl-kos">(</span><span class="pl-s">'[class="navbar__logo"]'</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">length</span> <span class="pl-c1">==</span> <span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-kos">{</span><span class="pl-c1">timeout</span>: <span class="pl-c1">60000</span><span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// locator.toHaveCount()</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">locator</span><span class="pl-kos">(</span><span class="pl-s">'[class="navbar__logo"]'</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toHaveCount</span><span class="pl-kos">(</span><span class="pl-c1">1</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Click the get started link.</span> <span class="pl-k">await</span> <span class="pl-s1">getStarted</span><span class="pl-kos">.</span><span class="pl-en">click</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Expects the URL to contain intro.</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-kos">.</span><span class="pl-en">toHaveURL</span><span class="pl-kos">(</span><span class="pl-pds"><span class="pl-c1">/</span>.<span class="pl-c1">*</span>intro<span class="pl-c1">/</span></span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-s">'test 5'</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">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">goto</span><span class="pl-kos">(</span><span class="pl-s">'https://playwright.dev/'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Expect a title "to contain" a substring.</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-kos">.</span><span class="pl-en">toHaveTitle</span><span class="pl-kos">(</span><span class="pl-pds"><span class="pl-c1">/</span>Playwright<span class="pl-c1">/</span></span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// create a locator</span> <span class="pl-k">const</span> <span class="pl-s1">getStarted</span> <span class="pl-c1">=</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">'Get Started'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Expect an attribute "to be strictly equal" to the value.</span> <span class="pl-k">await</span> <span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-s1">getStarted</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toHaveAttribute</span><span class="pl-kos">(</span><span class="pl-s">'href'</span><span class="pl-kos">,</span> <span class="pl-s">'/docs/intro'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">//page.waitForFunction</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">waitForFunction</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-en">querySelectorAll</span><span class="pl-kos">(</span><span class="pl-s">'[class="navbar__logo"]'</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">length</span> <span class="pl-c1">==</span> <span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-kos">{</span><span class="pl-c1">timeout</span>: <span class="pl-c1">60000</span><span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// locator.toHaveCount()</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">locator</span><span class="pl-kos">(</span><span class="pl-s">'[class="navbar__logo"]'</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toHaveCount</span><span class="pl-kos">(</span><span class="pl-c1">1</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Click the get started link.</span> <span class="pl-k">await</span> <span class="pl-s1">getStarted</span><span class="pl-kos">.</span><span class="pl-en">click</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Expects the URL to contain intro.</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-kos">.</span><span class="pl-en">toHaveURL</span><span class="pl-kos">(</span><span class="pl-pds"><span class="pl-c1">/</span>.<span class="pl-c1">*</span>intro<span class="pl-c1">/</span></span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span></pre></div> <p dir="auto"><strong>Steps</strong></p> <ul dir="auto"> <li>Run the test</li> <li>Open the HTML report</li> </ul> <p dir="auto"><strong>Expected</strong></p> <p dir="auto">The assertions should take the same time in the different versions and even should be with a better performance.</p> <p dir="auto"><strong>Actual</strong></p> <p dir="auto">As can be seen - each assertion and page.waitForFunction() takes at least 200ms more:</p> <p dir="auto"><strong>version 1.27.1</strong></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/52656401/230666506-30fa111f-a488-4019-8df6-6230b4185271.png"><img src="https://user-images.githubusercontent.com/52656401/230666506-30fa111f-a488-4019-8df6-6230b4185271.png" alt="Results 1 27 1" style="max-width: 100%;"></a></p> <p dir="auto"><strong>version 1.32.2</strong><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/52656401/230666571-24a2fc15-72e2-45bf-a9cb-609b4001a5ff.png"><img src="https://user-images.githubusercontent.com/52656401/230666571-24a2fc15-72e2-45bf-a9cb-609b4001a5ff.png" alt="Results 1 32 2" style="max-width: 100%;"></a></p> <p dir="auto">You have a link for a repo that contains two branches (with different versions) and GitHub Actions executions.</p> <p dir="auto"><strong>Note:</strong> We use <code class="notranslate">sloMo: 200</code> in our config file, it is required to us because of the Playwright speed. Our tested platform works slowly. But it is the same parameter in two branches and versions.</p> <p dir="auto">Maybe the parameter of the <code class="notranslate">sloMo</code> didn't affect the assertions with version 1.27.1 and started to affect the newest version?</p>
0
<h3 dir="auto">Preflight Checklist</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://www.github.com/electron/electron/issues">issue tracker</a> for a feature request that matches the one I want to file, without success.</li> </ul> <h3 dir="auto">Electron Version</h3> <p dir="auto">13.1.2</p> <h3 dir="auto">What operating system are you using?</h3> <p dir="auto">Windows</p> <h3 dir="auto">Operating System Version</h3> <p dir="auto">Windows 10 20H2</p> <h3 dir="auto">What arch are you using?</h3> <p dir="auto">x64</p> <h3 dir="auto">Last Known Working Electron version</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">I want to create a voice chat with the electron framework. For testing pureposes I created the Simple-peer /webrtc voice-chat as a website. The connection between the Browser instances works.</p> <h3 dir="auto">Actual Behavior</h3> <p dir="auto">As soon as I start accessing the exact same website in Electron ( with <code class="notranslate">mainWindow.loadURL</code> or copy and pasting the code and adjusting some urls) It throws there errors:</p> <blockquote> <p dir="auto">[4712:0611/224806.608:ERROR:audio_rtp_receiver.cc(95)] AudioRtpReceiver::OnSetVolume: No audio channel exists.</p> </blockquote> <blockquote> <p dir="auto">[4712:0611/224846.392:ERROR:stun_port.cc(96)] Binding request timed out from 192.168.2.x:52325 ({653D86EF-2890-4553-8A92-A3CB302B2D3A})</p> </blockquote> <p dir="auto">Amazingly, the connection works when the Electron App gets the calls but now when Electron tries to call other peers.</p> <h3 dir="auto">Testcase Gist URL</h3> <p dir="auto"><a href="https://gist.github.com/PxlLoewe/7a2ff3a3577be27533cd12a6d87e8dde">https://gist.github.com/PxlLoewe/7a2ff3a3577be27533cd12a6d87e8dde</a></p> <h3 dir="auto">Additional Information</h3> <p dir="auto"><em>No response</em></p>
<ul dir="auto"> <li>Electron version: 1.4.15, 1.6.2, 1.6.7</li> <li>Operating system: Win, Mac</li> </ul> <h3 dir="auto">Expected behavior</h3> <p dir="auto">User should join WebRTC session without errors</p> <h3 dir="auto">Actual behavior</h3> <p dir="auto">Can't join WebRTC session. Following error occurred:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[30112:0628/135434.057507:ERROR:stunport.cc(89)] Binding request timed out from 10.6.228.x:63096 (en0) [30112:0628/135434.057557:ERROR:stunport.cc(89)] Binding request timed out from 10.6.228.x:56245 (en0) [30112:0628/135434.057587:ERROR:stunport.cc(89)] Binding request timed out from 10.6.228.x:52191 (en0) [30112:0628/135434.059149:ERROR:stunport.cc(89)] Binding request timed out from 10.6.228.x:55994 (en0) [30112:0628/135434.060118:ERROR:stunport.cc(89)] Binding request timed out from 10.6.228.x:64240 (en0)"><pre class="notranslate"><code class="notranslate">[30112:0628/135434.057507:ERROR:stunport.cc(89)] Binding request timed out from 10.6.228.x:63096 (en0) [30112:0628/135434.057557:ERROR:stunport.cc(89)] Binding request timed out from 10.6.228.x:56245 (en0) [30112:0628/135434.057587:ERROR:stunport.cc(89)] Binding request timed out from 10.6.228.x:52191 (en0) [30112:0628/135434.059149:ERROR:stunport.cc(89)] Binding request timed out from 10.6.228.x:55994 (en0) [30112:0628/135434.060118:ERROR:stunport.cc(89)] Binding request timed out from 10.6.228.x:64240 (en0) </code></pre></div> <p dir="auto"><strong>NOTE:</strong><br> Error seems to be sporadic: 2-3/10 times notices. 7-8 sessions started successfully.</p> <p dir="auto">Beside it there are a couple of others error related to the WebRTC session:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[30112:0628/135422.618236:ERROR:rtpreceiver.cc(61)] AudioRtpReceiver::OnSetVolume: No audio channel exists. [30112:0628/135424.551040:ERROR:audio_send_stream.cc(90)] Failed to set up send codec state."><pre class="notranslate"><code class="notranslate">[30112:0628/135422.618236:ERROR:rtpreceiver.cc(61)] AudioRtpReceiver::OnSetVolume: No audio channel exists. [30112:0628/135424.551040:ERROR:audio_send_stream.cc(90)] Failed to set up send codec state. </code></pre></div>
1
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: Win32NT 10.0.18362.0 Windows Terminal version (if applicable): 0.5.2762.0"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: Win32NT 10.0.18362.0 Windows Terminal version (if applicable): 0.5.2762.0 </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="echo -ne '\e]10;foo\e'; sleep 1; echo -ne '\\'; sleep 5; echo; sleep 1; echo; sleep 10"><pre class="notranslate"><code class="notranslate">echo -ne '\e]10;foo\e'; sleep 1; echo -ne '\\'; sleep 5; echo; sleep 1; echo; sleep 10 </code></pre></div> <h1 dir="auto">Expected behavior</h1> <p dir="auto">Two linefeeds eventually, nothing more.</p> <p dir="auto">OSC 10 sets the default foreground, it's not yet supported by WT. You can replace it with any other number that's not yet supported.</p> <p dir="auto">The terminating sequence of <code class="notranslate">OSC</code> should be <code class="notranslate">ST</code> accoding to the standard (<code class="notranslate">BEL</code> is a commonly used but nonstandard choice instead). <code class="notranslate">ST</code> in the <code class="notranslate">C0</code> set is <code class="notranslate">ESC</code> followed by <code class="notranslate">\</code>.</p> <p dir="auto">Now we insert a bit of delay in the middle of <code class="notranslate">ST</code>. Such difference in timing should never make a difference in the final outcome, not even when the sequence is unsupported.</p> <h1 dir="auto">Actual behavior</h1> <p dir="auto">The following weirdnesses occur:</p> <ul dir="auto"> <li> <p dir="auto">A literal <code class="notranslate">\</code> gets printed. It shouldn't.</p> </li> <li> <p dir="auto">That <code class="notranslate">\</code> gets printed 6 seconds after starting the command line, rather than 1 second after. That is, not immediately when received, but when the next character (whether that's a newline or not) is received.</p> </li> <li> <p dir="auto">Subsequent newlines don't move the cursor to the beginning of the line as expected, but walk downwards in the second column.</p> </li> </ul> <p dir="auto">So it seems the parser might be stuck in some weird mode??</p> <p dir="auto">The bug does not occur if the delay is eliminated and the unsupported escape sequence is printed in a single step. It is completely ignored then, as expected.</p> <p dir="auto">The bug does not occur with supported escape sequences either, such as setting the title with OSC 0. It's immune to injected delays, as expected.</p>
<ul dir="auto"> <li> <p dir="auto">Your Windows build number: (Type <code class="notranslate">ver</code> at a Windows Command Prompt)<br> 10.0.18362.113</p> </li> <li> <p dir="auto">What you're doing and what's happening: (Copy &amp; paste specific commands and their output, or include screenshots)<br> I am using the Czech keyboard. We write some characters like <code class="notranslate">|</code> by pressing <code class="notranslate">RightAlt-W</code>. There are more characters like that, all are accessible using Right Alt.</p> </li> <li> <p dir="auto">What's wrong / what should be happening instead:<br> When I press the shortcut, no character is written in the output.</p> </li> </ul>
0
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">Let users dynamically import higher order components in the same manner as regular components to increase composability.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">Using <code class="notranslate">dynamic(import('./file.js'))</code> returns a DynamicComponent and can't be used to load HoCs, which makes sense because HoCs are functions and not components.</p> <h2 dir="auto">Context</h2> <p dir="auto">When using next to render the same modular frontend for different clients, we use <code class="notranslate">getInitialProps</code> to fetch the client data and then wanted to apply HoCs (derived from the client settings) for customization.</p> <p dir="auto">Example:<br> hoc_1.js</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="export default Content =&gt; { return props =&gt; ( &lt;section className=&quot;Module&quot; alt={props.alt}&gt; &lt;h2&gt;{props.title}&lt;/h2&gt; &lt;Content {...props} /&gt; &lt;/section&gt; ); };"><pre class="notranslate"><code class="notranslate">export default Content =&gt; { return props =&gt; ( &lt;section className="Module" alt={props.alt}&gt; &lt;h2&gt;{props.title}&lt;/h2&gt; &lt;Content {...props} /&gt; &lt;/section&gt; ); }; </code></pre></div> <p dir="auto">hoc_2.js</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="export default Content =&gt; { return class Module extends React.Component{ componentDidMount(){ //do some module specific stuff } render(){ return ( &lt;section className=&quot;Module&quot; alt={props.alt}&gt; &lt;div className=&quot;SubModule&quot;&gt; &lt;Content {...props} /&gt; &lt;/div&gt; &lt;div&gt;Some other Stuff&lt;/div&gt; &lt;/section&gt; ) } } };"><pre class="notranslate"><code class="notranslate">export default Content =&gt; { return class Module extends React.Component{ componentDidMount(){ //do some module specific stuff } render(){ return ( &lt;section className="Module" alt={props.alt}&gt; &lt;div className="SubModule"&gt; &lt;Content {...props} /&gt; &lt;/div&gt; &lt;div&gt;Some other Stuff&lt;/div&gt; &lt;/section&gt; ) } } }; </code></pre></div> <p dir="auto">index.js</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import Modules from &quot;../components/Modules.js&quot;; // all modules dynamically imported and exported as Object import HOCs from &quot;../components/HOCs.js&quot;; // all HOCs dynamically imported and exported as Object export default class Index extends Component { static async getInitialProps({ req }) { const res = await fetch(`/client_settings_api/`); const json = await res.json(); return { modules: json.modules, contentHoC: json.contentHoC }; } render() { return ( &lt;div&gt; {this.props.modules.map(module =&gt; { const Module = Modules[module.type]; const contentHoC = HOCs[this.props.contentHoC]; const EnhancedComponent = contentHoC(Module); return &lt;EnhancedComponent /&gt;; })} &lt;/div&gt; ); } }"><pre class="notranslate"><code class="notranslate">import Modules from "../components/Modules.js"; // all modules dynamically imported and exported as Object import HOCs from "../components/HOCs.js"; // all HOCs dynamically imported and exported as Object export default class Index extends Component { static async getInitialProps({ req }) { const res = await fetch(`/client_settings_api/`); const json = await res.json(); return { modules: json.modules, contentHoC: json.contentHoC }; } render() { return ( &lt;div&gt; {this.props.modules.map(module =&gt; { const Module = Modules[module.type]; const contentHoC = HOCs[this.props.contentHoC]; const EnhancedComponent = contentHoC(Module); return &lt;EnhancedComponent /&gt;; })} &lt;/div&gt; ); } } </code></pre></div> <p dir="auto">In this particular case you could simply render <code class="notranslate">this.props.children</code>in the HoC, use it as a dynamic component and render <code class="notranslate">&lt;Hoc {...props} /&gt;&lt;Module {...props} /&gt;&lt;/Hoc&gt;</code> but this raises the question how to use HoCs dynamically in general? Instead of exporting components already wrapped in HoCs maybe it's possible to use HoCs dynamically to compose them where and how you like?</p> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>next</td> <td>4.2.1</td> </tr> <tr> <td>node</td> <td>8.4.0</td> </tr> </tbody> </table>
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <p dir="auto">After transiting from one page to another page via next <code class="notranslate">&lt;Link /&gt;</code>, if user clicks the back button and the previous page has <code class="notranslate">getInitialProps</code> method that takes some time to finish, the scroll position of the previous will be restored before the previous pages gets rendered.</p> <h2 dir="auto">Demo</h2> <p dir="auto">source code can be found <a href="https://github.com/liweinan0423/nextjs-scroll-restoration-issue">here</a><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/646159/32951715-ed75a7e6-cbe5-11e7-9d08-a9747a48329d.gif"><img src="https://user-images.githubusercontent.com/646159/32951715-ed75a7e6-cbe5-11e7-9d08-a9747a48329d.gif" alt="out" data-animated-image="" style="max-width: 100%;"></a></p> <p dir="auto">After clicking back button, the "go back" text should still be visible (not scroll down to previous position) until the previous page gets rendered</p>
0
<p dir="auto">I'm using babel to compile src/ to lib/. I have <code class="notranslate">src/cli/somecli.js</code> which is <code class="notranslate">chmod u+x</code> but babel doesn't preserve that permission which means I can't do <code class="notranslate">./lib/cli/somecli.js</code> in bash. Would be nice if there was an option to tell babel to preserve that permission.</p>
<p dir="auto">When I do:</p> <div class="highlight highlight-text-shell-session notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="babel -w -d dist src"><pre class="notranslate"><span class="pl-c1">babel -w -d dist src</span></pre></div> <p dir="auto">I expect dist/bin.js to have the same permissions as src/bin.js (specifically, executable bit)</p> <p dir="auto">In actuality, the permissions are not preserved.</p>
1
<h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt; 4.1.1</li> <li>Operating System / Platform =&gt; Windows 64 Bit</li> <li>Compiler =&gt; Visual Studio 2017</li> <li>Inference engine 2019.2.275</li> </ul> <h5 dir="auto">Detailed description</h5> <p dir="auto">I used the version of script currently available in the master branch. My model was generated with TF 1.14 and is a ssd mobilenet v2 network. The first image is the result of the inference using the intel inference engine with the optimized version of the net. It is correct (icons should be detected) and similar to what is detected using TF. On the right, the detection using the pbtxt file with OpenCV backend (same result with IE), which is clearly wrong.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5644940/65950815-1f41f680-e43f-11e9-8443-1d20cac35d6a.png"><img src="https://user-images.githubusercontent.com/5644940/65950815-1f41f680-e43f-11e9-8443-1d20cac35d6a.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5644940/65950677-d4c07a00-e43e-11e9-88cc-16d5298da4b7.png"><img src="https://user-images.githubusercontent.com/5644940/65950677-d4c07a00-e43e-11e9-88cc-16d5298da4b7.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">Files:<br> <a href="https://github.com/opencv/opencv/files/3675467/inference.zip">inference.zip</a></p> <h5 dir="auto">Steps to reproduce</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="python ~/opencv/samples/dnn/tf_text_graph_ssd.py --input frozen_inference_graph.pb --config pipeline.config --output graph.pbtxt"><pre class="notranslate"><code class="notranslate">python ~/opencv/samples/dnn/tf_text_graph_ssd.py --input frozen_inference_graph.pb --config pipeline.config --output graph.pbtxt </code></pre></div> <p dir="auto">Output:<br> Scale: [0.050000-0.500000]<br> Aspect ratios: [1.0, 3.0, 10.0]<br> Reduce boxes in the lowest layer: True<br> Number of classes: 6<br> Number of layers: 6<br> box predictor: convolutional<br> Input image size: 800x800</p> <p dir="auto">Steps for getting optimized model:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="python ~/openvino_2019.2.275/deployment_tools/model_optimizer/mo_tf.py --input_model frozen_inference_graph.pb --tensorflow_use_custom_operations_config ~/openvino_2019.2.275/deployment_tools/model_optimizer/extensions/front/tf/ssd_support_api_v1.14.json --tensorflow_object_detection_api_pipeline_config pipeline.config --input_shape [1,800,800,3]"><pre class="notranslate"><code class="notranslate">python ~/openvino_2019.2.275/deployment_tools/model_optimizer/mo_tf.py --input_model frozen_inference_graph.pb --tensorflow_use_custom_operations_config ~/openvino_2019.2.275/deployment_tools/model_optimizer/extensions/front/tf/ssd_support_api_v1.14.json --tensorflow_object_detection_api_pipeline_config pipeline.config --input_shape [1,800,800,3] </code></pre></div>
<h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt; 3.2.0 and 4.1.2</li> <li>Operating System / Platform =&gt; raspbian Linux raspberrypi 4.19.75-v7l+ <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="18047504" data-permission-text="Title is private" data-url="https://github.com/opencv/opencv/issues/1270" data-hovercard-type="pull_request" data-hovercard-url="/opencv/opencv/pull/1270/hovercard" href="https://github.com/opencv/opencv/pull/1270">#1270</a> SMP Tue Sep 24 18:51:41 BST 2019 armv7l GNU /Linux</li> <li>Compiler =&gt; gcc (Raspbian 8.3.0-6+rpi1) 8.3.0</li> <li>Python 2.7.16 (default, Oct 10 2019, 22:02:15)</li> <li>Python 3.7.3 (default, Apr 3 2019, 05:39:12)</li> <li>cameras are IMX290</li> </ul> <h5 dir="auto">Detailed description</h5> <p dir="auto">I have four USB cameras connected to the raspberry pi via USB.<br> When I run this code on python2 it succeeds but when I run it on python3 it fails.</p> <p dir="auto">Not sure what else to include, I'll be happy to provide more info.</p> <p dir="auto">Thanks</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import cv2 cap1 = cv2.VideoCapture(&quot;/dev/video0&quot;) cap2 = cv2.VideoCapture(&quot;/dev/video2&quot;) cap3 = cv2.VideoCapture(&quot;/dev/video4&quot;) cap4 = cv2.VideoCapture(&quot;/dev/video6&quot;) print(&quot;cap1&quot;, cap1.read()[1][0]) print(&quot;cap2&quot;, cap2.read()[1][0]) print(&quot;cap3&quot;, cap3.read()[1][0]) print(&quot;cap4&quot;, cap4.read()[1][0]) cap1.release() cap2.release() cap3.release() cap4.release()"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">cv2</span> <span class="pl-s1">cap1</span> <span class="pl-c1">=</span> <span class="pl-s1">cv2</span>.<span class="pl-v">VideoCapture</span>(<span class="pl-s">"/dev/video0"</span>) <span class="pl-s1">cap2</span> <span class="pl-c1">=</span> <span class="pl-s1">cv2</span>.<span class="pl-v">VideoCapture</span>(<span class="pl-s">"/dev/video2"</span>) <span class="pl-s1">cap3</span> <span class="pl-c1">=</span> <span class="pl-s1">cv2</span>.<span class="pl-v">VideoCapture</span>(<span class="pl-s">"/dev/video4"</span>) <span class="pl-s1">cap4</span> <span class="pl-c1">=</span> <span class="pl-s1">cv2</span>.<span class="pl-v">VideoCapture</span>(<span class="pl-s">"/dev/video6"</span>) <span class="pl-en">print</span>(<span class="pl-s">"cap1"</span>, <span class="pl-s1">cap1</span>.<span class="pl-en">read</span>()[<span class="pl-c1">1</span>][<span class="pl-c1">0</span>]) <span class="pl-en">print</span>(<span class="pl-s">"cap2"</span>, <span class="pl-s1">cap2</span>.<span class="pl-en">read</span>()[<span class="pl-c1">1</span>][<span class="pl-c1">0</span>]) <span class="pl-en">print</span>(<span class="pl-s">"cap3"</span>, <span class="pl-s1">cap3</span>.<span class="pl-en">read</span>()[<span class="pl-c1">1</span>][<span class="pl-c1">0</span>]) <span class="pl-en">print</span>(<span class="pl-s">"cap4"</span>, <span class="pl-s1">cap4</span>.<span class="pl-en">read</span>()[<span class="pl-c1">1</span>][<span class="pl-c1">0</span>]) <span class="pl-s1">cap1</span>.<span class="pl-en">release</span>() <span class="pl-s1">cap2</span>.<span class="pl-en">release</span>() <span class="pl-s1">cap3</span>.<span class="pl-en">release</span>() <span class="pl-s1">cap4</span>.<span class="pl-en">release</span>()</pre></div> <p dir="auto">The error message:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="select timeout VIDIOC_DQBUF: Resource temporarily unavailable Traceback (most recent call last): File &quot;multiplecameratest.py&quot;, line 11, in &lt;module&gt; print(&quot;cap4&quot;, cap4.read()[1][0]) TypeError: 'NoneType' object is not subscriptable"><pre class="notranslate"><code class="notranslate">select timeout VIDIOC_DQBUF: Resource temporarily unavailable Traceback (most recent call last): File "multiplecameratest.py", line 11, in &lt;module&gt; print("cap4", cap4.read()[1][0]) TypeError: 'NoneType' object is not subscriptable </code></pre></div> <h5 dir="auto">more info</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="pi@raspberrypi:~ $ python Python 2.7.16 (default, Oct 10 2019, 22:02:15) [GCC 8.3.0] on linux2 Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information. &gt;&gt;&gt; import cv2 &gt;&gt;&gt; cv2.__version__ '3.2.0' &gt;&gt;&gt; pi@raspberrypi:~ $ python3 Python 3.7.3 (default, Apr 3 2019, 05:39:12) [GCC 8.2.0] on linux Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information. &gt;&gt;&gt; import cv2 &gt;&gt;&gt; cv2.__version__ '4.1.2' &gt;&gt;&gt;"><pre class="notranslate"><code class="notranslate">pi@raspberrypi:~ $ python Python 2.7.16 (default, Oct 10 2019, 22:02:15) [GCC 8.3.0] on linux2 Type "help", "copyright", "credits" or "license" for more information. &gt;&gt;&gt; import cv2 &gt;&gt;&gt; cv2.__version__ '3.2.0' &gt;&gt;&gt; pi@raspberrypi:~ $ python3 Python 3.7.3 (default, Apr 3 2019, 05:39:12) [GCC 8.2.0] on linux Type "help", "copyright", "credits" or "license" for more information. &gt;&gt;&gt; import cv2 &gt;&gt;&gt; cv2.__version__ '4.1.2' &gt;&gt;&gt; </code></pre></div> <h4 dir="auto">console output from fresh reboot</h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="login as: pi pi@'s password: Linux raspberrypi 4.19.75-v7l+ #1270 SMP Tue Sep 24 18:51:41 BST 2019 armv7l The programs included with the Debian GNU/Linux system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law. Last login: Tue Dec 17 14:14:40 2019 from 192.168.1.99 pi@raspberrypi:~ $ python3 multiplecameratest.py cap1 [[10 0 8] [10 0 8] [10 0 11] ... [ 6 0 11] [ 2 0 11] [ 2 0 11]] cap2 [[ 5 0 19] [ 3 0 18] [ 4 0 18] ... [ 0 0 8] [ 2 0 8] [ 2 0 8]] cap3 [[104 135 178] [104 135 178] [100 134 181] ... [145 192 241] [147 196 240] [148 197 242]] select timeout VIDIOC_DQBUF: Resource temporarily unavailable Traceback (most recent call last): File &quot;multiplecameratest.py&quot;, line 11, in &lt;module&gt; print(&quot;cap4&quot;, cap4.read()[1][0]) TypeError: 'NoneType' object is not subscriptable pi@raspberrypi:~ $ python multiplecameratest.py ('cap1', array([[106, 113, 130], [ 99, 103, 122], [ 97, 97, 121], ..., [129, 78, 140], [134, 78, 143], [140, 79, 147]], dtype=uint8)) ('cap2', array([[190, 221, 212], [190, 219, 210], [189, 217, 211], ..., [117, 98, 85], [101, 91, 74], [ 92, 85, 66]], dtype=uint8)) ('cap3', array([[141, 142, 133], [141, 142, 133], [141, 142, 133], ..., [191, 191, 175], [191, 191, 175], [192, 192, 176]], dtype=uint8)) ('cap4', array([[175, 164, 156], [176, 165, 157], [176, 165, 157], ..., [131, 125, 120], [130, 124, 119], [130, 124, 119]], dtype=uint8)) pi@raspberrypi:~ $ python3 multiplecameratest.py cap1 [[ 94 89 131] [ 93 88 130] [ 94 77 121] ... [ 83 67 81] [ 91 64 96] [104 77 109]] cap2 [[234 244 242] [231 240 239] [252 244 246] ... [133 106 126] [145 123 127] [123 101 105]] cap3 [[154 150 141] [154 150 141] [152 146 142] ... [205 210 195] [205 210 195] [205 210 195]] select timeout VIDIOC_DQBUF: Resource temporarily unavailable Traceback (most recent call last): File &quot;multiplecameratest.py&quot;, line 11, in &lt;module&gt; print(&quot;cap4&quot;, cap4.read()[1][0]) TypeError: 'NoneType' object is not subscriptable pi@raspberrypi:~ $ python multiplecameratest.py ('cap1', array([[ 82, 94, 128], [ 75, 85, 119], [ 70, 81, 111], ..., [119, 95, 119], [110, 84, 108], [ 98, 69, 95]], dtype=uint8)) ('cap2', array([[197, 226, 223], [197, 225, 225], [199, 225, 225], ..., [143, 129, 133], [127, 114, 112], [112, 100, 96]], dtype=uint8)) ('cap3', array([[142, 145, 136], [142, 145, 136], [142, 145, 136], ..., [190, 194, 183], [190, 194, 183], [190, 194, 183]], dtype=uint8)) ('cap4', array([[184, 182, 172], [184, 182, 172], [184, 182, 172], ..., [150, 150, 144], [150, 150, 144], [150, 150, 144]], dtype=uint8))"><pre class="notranslate"><code class="notranslate">login as: pi pi@'s password: Linux raspberrypi 4.19.75-v7l+ #1270 SMP Tue Sep 24 18:51:41 BST 2019 armv7l The programs included with the Debian GNU/Linux system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law. Last login: Tue Dec 17 14:14:40 2019 from 192.168.1.99 pi@raspberrypi:~ $ python3 multiplecameratest.py cap1 [[10 0 8] [10 0 8] [10 0 11] ... [ 6 0 11] [ 2 0 11] [ 2 0 11]] cap2 [[ 5 0 19] [ 3 0 18] [ 4 0 18] ... [ 0 0 8] [ 2 0 8] [ 2 0 8]] cap3 [[104 135 178] [104 135 178] [100 134 181] ... [145 192 241] [147 196 240] [148 197 242]] select timeout VIDIOC_DQBUF: Resource temporarily unavailable Traceback (most recent call last): File "multiplecameratest.py", line 11, in &lt;module&gt; print("cap4", cap4.read()[1][0]) TypeError: 'NoneType' object is not subscriptable pi@raspberrypi:~ $ python multiplecameratest.py ('cap1', array([[106, 113, 130], [ 99, 103, 122], [ 97, 97, 121], ..., [129, 78, 140], [134, 78, 143], [140, 79, 147]], dtype=uint8)) ('cap2', array([[190, 221, 212], [190, 219, 210], [189, 217, 211], ..., [117, 98, 85], [101, 91, 74], [ 92, 85, 66]], dtype=uint8)) ('cap3', array([[141, 142, 133], [141, 142, 133], [141, 142, 133], ..., [191, 191, 175], [191, 191, 175], [192, 192, 176]], dtype=uint8)) ('cap4', array([[175, 164, 156], [176, 165, 157], [176, 165, 157], ..., [131, 125, 120], [130, 124, 119], [130, 124, 119]], dtype=uint8)) pi@raspberrypi:~ $ python3 multiplecameratest.py cap1 [[ 94 89 131] [ 93 88 130] [ 94 77 121] ... [ 83 67 81] [ 91 64 96] [104 77 109]] cap2 [[234 244 242] [231 240 239] [252 244 246] ... [133 106 126] [145 123 127] [123 101 105]] cap3 [[154 150 141] [154 150 141] [152 146 142] ... [205 210 195] [205 210 195] [205 210 195]] select timeout VIDIOC_DQBUF: Resource temporarily unavailable Traceback (most recent call last): File "multiplecameratest.py", line 11, in &lt;module&gt; print("cap4", cap4.read()[1][0]) TypeError: 'NoneType' object is not subscriptable pi@raspberrypi:~ $ python multiplecameratest.py ('cap1', array([[ 82, 94, 128], [ 75, 85, 119], [ 70, 81, 111], ..., [119, 95, 119], [110, 84, 108], [ 98, 69, 95]], dtype=uint8)) ('cap2', array([[197, 226, 223], [197, 225, 225], [199, 225, 225], ..., [143, 129, 133], [127, 114, 112], [112, 100, 96]], dtype=uint8)) ('cap3', array([[142, 145, 136], [142, 145, 136], [142, 145, 136], ..., [190, 194, 183], [190, 194, 183], [190, 194, 183]], dtype=uint8)) ('cap4', array([[184, 182, 172], [184, 182, 172], [184, 182, 172], ..., [150, 150, 144], [150, 150, 144], [150, 150, 144]], dtype=uint8)) </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="pi@raspberrypi:~ $ ls /dev/v4l/by-path/ platform-bcm2835-codec-video-index0 platform-fd500000.pcie-pci-0000:01:00.0-usb-0:1:1.0-video-index0 platform-fd500000.pcie-pci-0000:01:00.0-usb-0:1:1.0-video-index1 platform-fd500000.pcie-pci-0000:01:00.0-usb-0:1.3:1.0-video-index0 platform-fd500000.pcie-pci-0000:01:00.0-usb-0:1.3:1.0-video-index1 platform-fd500000.pcie-pci-0000:01:00.0-usb-0:1.4:1.0-video-index0 platform-fd500000.pcie-pci-0000:01:00.0-usb-0:1.4:1.0-video-index1 platform-fd500000.pcie-pci-0000:01:00.0-usb-0:2:1.0-video-index0 platform-fd500000.pcie-pci-0000:01:00.0-usb-0:2:1.0-video-index1"><pre class="notranslate"><code class="notranslate">pi@raspberrypi:~ $ ls /dev/v4l/by-path/ platform-bcm2835-codec-video-index0 platform-fd500000.pcie-pci-0000:01:00.0-usb-0:1:1.0-video-index0 platform-fd500000.pcie-pci-0000:01:00.0-usb-0:1:1.0-video-index1 platform-fd500000.pcie-pci-0000:01:00.0-usb-0:1.3:1.0-video-index0 platform-fd500000.pcie-pci-0000:01:00.0-usb-0:1.3:1.0-video-index1 platform-fd500000.pcie-pci-0000:01:00.0-usb-0:1.4:1.0-video-index0 platform-fd500000.pcie-pci-0000:01:00.0-usb-0:1.4:1.0-video-index1 platform-fd500000.pcie-pci-0000:01:00.0-usb-0:2:1.0-video-index0 platform-fd500000.pcie-pci-0000:01:00.0-usb-0:2:1.0-video-index1 </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="pi@raspberrypi:~ $ v4l2-ctl --all Driver Info: Driver name : uvcvideo Card type : KS2A418-3.0: KS2A418-3.0 Bus info : usb-0000:01:00.0-1 Driver version : 4.19.75 Capabilities : 0x84a00001 Video Capture Metadata Capture Streaming Extended Pix Format Device Capabilities Device Caps : 0x04200001 Video Capture Streaming Extended Pix Format Media Driver Info: Driver name : uvcvideo Model : KS2A418-3.0: KS2A418-3.0 Serial : Bus info : 1 Media version : 4.19.75 Hardware revision: 0x00006003 (24579) Driver version : 4.19.75 Interface Info: ID : 0x03000002 Type : V4L Video Entity Info: ID : 0x00000001 (1) Name : KS2A418-3.0: KS2A418-3.0 Function : V4L2 I/O Flags : default Pad 0x01000007 : 0: Sink Link 0x02000013: from remote pad 0x100000a of entity 'Extension 4': Data, Enabled, Immutable Priority: 2 Video input : 0 (Camera 1: ok) Format Video Capture: Width/Height : 640/480 Pixel Format : 'MJPG' (Motion-JPEG) Field : None Bytes per Line : 0 Size Image : 614400 Colorspace : sRGB Transfer Function : Default (maps to sRGB) YCbCr/HSV Encoding: Default (maps to ITU-R 601) Quantization : Default (maps to Full Range) Flags : Crop Capability Video Capture: Bounds : Left 0, Top 0, Width 640, Height 480 Default : Left 0, Top 0, Width 640, Height 480 Pixel Aspect: 1/1 Selection: crop_default, Left 0, Top 0, Width 640, Height 480, Flags: Selection: crop_bounds, Left 0, Top 0, Width 640, Height 480, Flags: Streaming Parameters Video Capture: Capabilities : timeperframe Frames per second: 30.000 (30/1) Read buffers : 0 brightness 0x00980900 (int) : min=-64 max=64 step=1 default=4 value=80 contrast 0x00980901 (int) : min=0 max=95 step=1 default=44 value=44 saturation 0x00980902 (int) : min=0 max=100 step=1 default=58 value=58 hue 0x00980903 (int) : min=-2000 max=2000 step=1 default=0 value=0 white_balance_temperature_auto 0x0098090c (bool) : default=1 value=1 gamma 0x00980910 (int) : min=100 max=300 step=1 default=150 value=150 power_line_frequency 0x00980918 (menu) : min=0 max=2 default=1 value=1 white_balance_temperature 0x0098091a (int) : min=2800 max=6500 step=1 default=4600 value=4600 flags=inactive sharpness 0x0098091b (int) : min=1 max=100 step=1 default=16 value=16 backlight_compensation 0x0098091c (int) : min=0 max=1 step=1 default=1 value=1 exposure_auto 0x009a0901 (menu) : min=0 max=3 default=3 value=3 exposure_absolute 0x009a0902 (int) : min=78 max=5000 step=1 default=312 value=78 flags=inactive"><pre class="notranslate"><code class="notranslate">pi@raspberrypi:~ $ v4l2-ctl --all Driver Info: Driver name : uvcvideo Card type : KS2A418-3.0: KS2A418-3.0 Bus info : usb-0000:01:00.0-1 Driver version : 4.19.75 Capabilities : 0x84a00001 Video Capture Metadata Capture Streaming Extended Pix Format Device Capabilities Device Caps : 0x04200001 Video Capture Streaming Extended Pix Format Media Driver Info: Driver name : uvcvideo Model : KS2A418-3.0: KS2A418-3.0 Serial : Bus info : 1 Media version : 4.19.75 Hardware revision: 0x00006003 (24579) Driver version : 4.19.75 Interface Info: ID : 0x03000002 Type : V4L Video Entity Info: ID : 0x00000001 (1) Name : KS2A418-3.0: KS2A418-3.0 Function : V4L2 I/O Flags : default Pad 0x01000007 : 0: Sink Link 0x02000013: from remote pad 0x100000a of entity 'Extension 4': Data, Enabled, Immutable Priority: 2 Video input : 0 (Camera 1: ok) Format Video Capture: Width/Height : 640/480 Pixel Format : 'MJPG' (Motion-JPEG) Field : None Bytes per Line : 0 Size Image : 614400 Colorspace : sRGB Transfer Function : Default (maps to sRGB) YCbCr/HSV Encoding: Default (maps to ITU-R 601) Quantization : Default (maps to Full Range) Flags : Crop Capability Video Capture: Bounds : Left 0, Top 0, Width 640, Height 480 Default : Left 0, Top 0, Width 640, Height 480 Pixel Aspect: 1/1 Selection: crop_default, Left 0, Top 0, Width 640, Height 480, Flags: Selection: crop_bounds, Left 0, Top 0, Width 640, Height 480, Flags: Streaming Parameters Video Capture: Capabilities : timeperframe Frames per second: 30.000 (30/1) Read buffers : 0 brightness 0x00980900 (int) : min=-64 max=64 step=1 default=4 value=80 contrast 0x00980901 (int) : min=0 max=95 step=1 default=44 value=44 saturation 0x00980902 (int) : min=0 max=100 step=1 default=58 value=58 hue 0x00980903 (int) : min=-2000 max=2000 step=1 default=0 value=0 white_balance_temperature_auto 0x0098090c (bool) : default=1 value=1 gamma 0x00980910 (int) : min=100 max=300 step=1 default=150 value=150 power_line_frequency 0x00980918 (menu) : min=0 max=2 default=1 value=1 white_balance_temperature 0x0098091a (int) : min=2800 max=6500 step=1 default=4600 value=4600 flags=inactive sharpness 0x0098091b (int) : min=1 max=100 step=1 default=16 value=16 backlight_compensation 0x0098091c (int) : min=0 max=1 step=1 default=1 value=1 exposure_auto 0x009a0901 (menu) : min=0 max=3 default=3 value=3 exposure_absolute 0x009a0902 (int) : min=78 max=5000 step=1 default=312 value=78 flags=inactive </code></pre></div>
0
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=casey.hadden" rel="nofollow">Casey Hadden</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-7204?redirect=false" rel="nofollow">SPR-7204</a></strong> and commented</p> <p dir="auto">AbstractApplicationEventMulticaster has two getApplicationListeners methods. The no parameter method will return duplicate listeners in its list while the one subsetting by event type does not.</p> <p dir="auto">It appears that when the default ListenerRetriever class is iterating over the listenerBeanNames the add call should be protected by a !allListeners.contains(listener) check like the event subset method is.</p> <p dir="auto">Attached is a zip file which shows the two listeners printed from the no parameter method while only one is printed from the event type method.</p> <hr> <p dir="auto"><strong>Affects:</strong> 3.0 GA, 3.0.1, 3.0.2</p> <p dir="auto"><strong>Attachments:</strong></p> <ul dir="auto"> <li><a href="https://jira.spring.io/secure/attachment/16556/AbstractApplicationEventMulticaster.zip" rel="nofollow">AbstractApplicationEventMulticaster.zip</a> (<em>1.41 kB</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/738d84f75c21873bcf6e80bcb64cd92f5da28d8e/hovercard" href="https://github.com/spring-projects/spring-framework/commit/738d84f75c21873bcf6e80bcb64cd92f5da28d8e"><tt>738d84f</tt></a></p>
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=voidmain" rel="nofollow">Brian Pontarelli</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-2651?redirect=false" rel="nofollow">SPR-2651</a></strong> and commented</p> <p dir="auto">I previously had a configuration that was working fine through all 2.0 releases until I recently upgrade from M4 to RC4. This no longer works. Here is the stack trace:</p> <p dir="auto">org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'messageSource' defined in file [/home/brian/dev/java/naymz/web/WEB-INF/classes/applicationContext.xml]: Cannot resolve reference to bean 'messageDAO' while setting bean property 'messageDAO'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'messageDAO' defined in file [/home/brian/dev/java/naymz/web/WEB-INF/classes/applicationContext-dao.xml]: Invocation of init method failed; nested exception is java.lang.IllegalArgumentException: sessionFactory or hibernateTemplate is required<br> Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'messageDAO' defined in file [/home/brian/dev/java/naymz/web/WEB-INF/classes/applicationContext-dao.xml]: Invocation of init method failed; nested exception is java.lang.IllegalArgumentException: sessionFactory or hibernateTemplate is required<br> Caused by: java.lang.IllegalArgumentException: sessionFactory or hibernateTemplate is required<br> at org.springframework.orm.hibernate3.support.HibernateDaoSupport.checkDaoConfig(HibernateDaoSupport.java:112)<br> at org.springframework.dao.support.DaoSupport.afterPropertiesSet(DaoSupport.java:44)<br> at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:957)<br> at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:924)<br> at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:415)<br> at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:245)<br> at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:141)<br> at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:242)<br> at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:156)<br> at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:246)<br> at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveValueIfNecessary(BeanDefinitionValueResolver.java:128)<br> at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:850)<br> at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:624)<br> at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:411)<br> at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:245)<br> at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:141)<br> at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:242)<br> at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:160)<br> at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:646)<br> at org.springframework.context.support.AbstractApplicationContext.initMessageSource(AbstractApplicationContext.java:455)<br> at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:336)<br> at org.springframework.context.support.ClassPathXmlApplicationContext.&lt;init&gt;(ClassPathXmlApplicationContext.java:92)<br> at org.springframework.context.support.ClassPathXmlApplicationContext.&lt;init&gt;(ClassPathXmlApplicationContext.java:77)<br> at org.springframework.test.AbstractSingleSpringContextTests.loadContextLocations(AbstractSingleSpringContextTests.java:138)<br> at org.springframework.test.AbstractSingleSpringContextTests.loadContext(AbstractSingleSpringContextTests.java:125)<br> at org.springframework.test.AbstractSpringContextTests.getContext(AbstractSpringContextTests.java:104)<br> at org.springframework.test.AbstractSingleSpringContextTests.setUp(AbstractSingleSpringContextTests.java:75)<br> at org.springframework.test.ConditionalTestCase.runBare(ConditionalTestCase.java:69)<br> at com.intellij.rt.execution.junit2.JUnitStarter.main(JUnitStarter.java:32)</p> <p dir="auto">This configuration for the SessionFactory (which is a FactoryBean) and the DAO are:</p> <p dir="auto">&lt;bean id="sessionFactory" parent="abstractSessionFactory"&gt;<br> &lt;property name="hibernateProperties"&gt;<br> &lt;props&gt;<br> &lt;prop key="hibernate.dialect"&gt;org.hibernate.dialect.MySQLInnoDBDialect&lt;/prop&gt;<br> &lt;prop key="hibernate.cache.provider_class"&gt;org.hibernate.cache.EhCacheProvider&lt;/prop&gt;<br> &lt;prop key="hibernate.cache.use_second_level_cache"&gt;true&lt;/prop&gt;<br> &lt;prop key="hibernate.cache.use_query_cache"&gt;true&lt;/prop&gt;<br> &lt;prop key="hibernate.show_sql"&gt;false&lt;/prop&gt;<br> &lt;prop key="hibernate.current_session_context_class"&gt;thread&lt;/prop&gt;<br> &lt;prop key="hibernate.cglib.use_reflection_optimizer"&gt;true&lt;/prop&gt;<br> &lt;/props&gt;<br> &lt;/property&gt;<br> &lt;/bean&gt;<br> &lt;bean id="abstractSessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean" abstract="true"&gt;<br> &lt;property name="dataSource" ref="dataSource"/&gt;<br> &lt;property name="entityInterceptor"&gt;<br> &lt;bean class="com.naymz.dao.UpsertInterceptor"/&gt;<br> &lt;/property&gt;<br> &lt;property name="annotatedClasses"&gt;<br> &lt;list&gt;<br> (snip)<br> &lt;/list&gt;<br> &lt;/property&gt;<br> &lt;/bean&gt;<br> &lt;bean id="messageDAO" class="com.naymz.dao.cms.MessageDAOImpl" autowire="autodetect"/&gt;</p> <p dir="auto">The configuration for the messageSource bean is:</p> <p dir="auto">&lt;bean id="messageSource" class="com.naymz.cms.NaymzMessageSource"&gt;<br> &lt;property name="useCodeAsDefaultMessage" value="false"/&gt;<br> &lt;property name="alwaysUseMessageFormat" value="false"/&gt;<br> &lt;property name="messageDAO" ref="messageDAO"/&gt;<br> &lt;property name="siteDAO" ref="siteDAO"/&gt;<br> &lt;/bean&gt;<br> The issue appears to be that since there is an abstract FactoryBean, the messageDAO is not being injected based on type. My DAO has no dependencies. The superclass of my DAO with a dependency is org.springframework.orm.hibernate3.support.HibernateDaoSupport, which has a setter for a org.hibernate.SessionFactory. I have tried changing the autowire to byType with no luck. byName works but forces huge amounts of changes all over my configuration so that everything is byName and lines up correctly. For whatever reason, the container can no longer determine that I only have a single bean defined of type org.hibernate.SessionFactory and inject that. So, it seems that autowire autodetect and byType are now broken, probably due to the abstract FactoryBean stuff.</p> <hr> <p dir="auto"><strong>Affects:</strong> 2.0 RC4</p>
0
<p dir="auto">Help doc of <code class="notranslate">LDA.transform</code> says:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Returns ------- X_new : array, shape = [n_samples, n_components]"><pre class="notranslate"><code class="notranslate">Returns ------- X_new : array, shape = [n_samples, n_components] </code></pre></div> <p dir="auto">However:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="X = np.array([[-1, -1, -1], [-2, -1, -1], [-3, -2, -2], [1, 1, 3], [2, 1, 4], [3, 2, 1]]) y = np.array([1, 1, 1, 2, 2, 2]) lda = LDA(n_components=3).fit(X, y) lda.transform(X).shape"><pre class="notranslate"><code class="notranslate">X = np.array([[-1, -1, -1], [-2, -1, -1], [-3, -2, -2], [1, 1, 3], [2, 1, 4], [3, 2, 1]]) y = np.array([1, 1, 1, 2, 2, 2]) lda = LDA(n_components=3).fit(X, y) lda.transform(X).shape </code></pre></div> <p dir="auto">produces<br> <code class="notranslate">(6, 2)</code> while I expect it to be <code class="notranslate">(6, 3)</code> as <code class="notranslate">n_components == 3</code></p> <p dir="auto">Looking at the code of transform:<br> <code class="notranslate">return np.dot(X, self.coef_[:n_comp].T)</code></p> <p dir="auto">Where <code class="notranslate">self.coef_</code> is computed as in <code class="notranslate">.fit()</code>:<br> <code class="notranslate">self.coef_ = np.dot(self.means_ - self.xbar_, self.scalings_)</code></p> <p dir="auto">which produces a 2x1 matrix (or whatever the number of means is).</p> <p dir="auto">Not sure what the correct thing would be but it seems that <code class="notranslate">LDA.coef_</code> should have length <code class="notranslate">n_compoments</code>, no?</p>
<p dir="auto">Currently rfc only support array like input , thus it can not apply to huge dataset. If the sparse matrix could be supported in the near future, would Be Greatly Appreciated!</p>
0
<p dir="auto"><a href="https://github.com/yangdan8/module-federation-bug">https://github.com/yangdan8/module-federation-bug</a></p> <p dir="auto">step:<br> pnpm i<br> pnpm dev</p> <p dir="auto">result:<br> There is "node_modules_pnpm_vue_2_7_14_node_modules_vue_dist_vue_runtime_esm_js" in "consumer/dist" directory,<br> but it is in "libs/dist" directory too!!!</p> <p dir="auto">windows 11<br> node 16<br> webpack 5.75.0<br> tool vscode</p>
<p dir="auto">When requiring shim for using process in browser, chunk hash variants on different machines.<br> In the module "lib/NodeSourcePlugin", "getPathToModule" method will return an absolute path of node shim. This will cause different results depending on the path where your project exits on different machines. And when webpack injects variable dependencies such as 'require(/path/to/node_modules/process/browser.js)', the expression used to initialize DependenciesBlockVariable is changed, Which makes the hash of chunk changed too !<br> Is this a bug ? Or feature ? It is so disturbing that same code but gets different hash.</p>
0
<h1 dir="auto">Examples bug report</h1> <h2 dir="auto">Example name</h2> <p dir="auto">blog-starter</p> <h2 dir="auto">Describe the bug</h2> <p dir="auto">Client-side route changes are broken. When you click around on the client after the initial load, content is appended to a container instead of replacing it. Seems like there might be an issue with a Suspense component?</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/4060187/65816670-c9661800-e1cc-11e9-87c2-38beb54bdc6c.gif"><img src="https://user-images.githubusercontent.com/4060187/65816670-c9661800-e1cc-11e9-87c2-38beb54bdc6c.gif" alt="Kapture 2019-09-28 at 8 46 47" data-animated-image="" style="max-width: 100%;"></a></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/4060187/65816681-06320f00-e1cd-11e9-9ac5-f6e211db7e62.png"><img width="842" alt="Screenshot 2019-09-28 08 50 18" src="https://user-images.githubusercontent.com/4060187/65816681-06320f00-e1cd-11e9-9ac5-f6e211db7e62.png" style="max-width: 100%;"></a></p> <h2 dir="auto">To Reproduce</h2> <p dir="auto">Steps to reproduce the behavior, please provide code snippets or a repository:</p> <ol dir="auto"> <li><code class="notranslate">npx create-next-app --examples blog-starter my-blog</code></li> <li><code class="notranslate">now dev</code></li> <li>Click around</li> <li>See error</li> </ol> <h2 dir="auto">Expected behavior</h2> <p dir="auto">Links/content match routes</p> <h2 dir="auto">System information</h2> <ul dir="auto"> <li>OS: macOS</li> <li>Browser: Chrome</li> <li>Version of Next.js: 9.0.6</li> </ul>
<h1 dir="auto">Bug report</h1> <h2 dir="auto">Describe the bug</h2> <p dir="auto">At least two of the NextJS examples do not work when run "out of the box".</p> <h2 dir="auto">To Reproduce</h2> <ol dir="auto"> <li>Follow the steps in either of these two READMEs: <ul dir="auto"> <li><a href="https://github.com/mui-org/material-ui/blob/master/examples/nextjs-with-typescript/README.md">nextjs-with-typescript</a></li> <li><a href="https://github.com/zeit/next.js/blob/canary/examples/hello-world/README.md">hello-world</a></li> </ul> </li> <li>Run <code class="notranslate">npm install &amp;&amp; npm run dev</code>. <ul dir="auto"> <li>React will report "Unexpected fiber popped" and "Unexpected pop" in the console.</li> <li>In the Material UI example, buttons will not demonstrate the ripple effect when clicked. In my application, the effects are more severe, leading to loss of interactivity.</li> </ul> </li> <li>Deploy using <code class="notranslate">npx now</code>. Resulting application will report errors. <ul dir="auto"> <li><a href="https://nextjs-with-typescript.ryaninvents.now.sh/" rel="nofollow">nextjs-with-typescript</a> deployment</li> <li><a href="https://hello-world.ryaninvents.now.sh/" rel="nofollow">hello-world</a> deployment</li> </ul> </li> </ol> <h2 dir="auto">Expected behavior</h2> <p dir="auto">Given examples work when deployed and run.</p> <h2 dir="auto">Screenshots</h2> <p dir="auto">If applicable, add screenshots to help explain your problem.</p> <h2 dir="auto">System information</h2> <ul dir="auto"> <li>OS <ul dir="auto"> <li>Development: Ubuntu 18.04 LTS</li> <li>Deployment: Zeit Now platform</li> </ul> </li> <li>Browser: Reproducible in Chrome and Firefox</li> <li>Version of Next.js: 9.0.6 (current <code class="notranslate">latest</code>)</li> </ul>
1
<p dir="auto">Editing node.js (JavaScript) files (after opening a folder), where a file requires another module (same folder), if you want to see the definition of a symbol (F12 or right-lick "Go to Definition") stopped working with latest update Version 0.10.10 (0.10.10)</p> <p dir="auto">I use this feature frequently. It used to work fine.</p>
<p dir="auto"><em>From <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/justin-romano/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/justin-romano">@justin-romano</a> on February 3, 2016 21:56</em></p> <p dir="auto">It just does nothing unless its a local variable.<br> I would have suspected this would present a list of all possible matching items in the source.<br> Its almost as if its not even indexing the code. I am working in a source base of millions of lines of JS so it would be nice.<br> Products like resharper and visual assist do this better.</p> <p dir="auto"><em>Copied from original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="131166863" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/2683" data-hovercard-type="issue" data-hovercard-url="/microsoft/vscode/issues/2683/hovercard" href="https://github.com/microsoft/vscode/issues/2683">microsoft/vscode#2683</a></em></p>
1
<h3 dir="auto">System info</h3> <ul dir="auto"> <li>Playwright Version: [v1.31.2]</li> <li>Operating System: [macOS 13.2.1]</li> <li>Browser: [Chromium]</li> <li>Other info: [Node 16.16.0]</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>Test file (self-contained)</strong></p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const { chromium } = require('playwright'); (async () =&gt; { const browser = await chromium.launch({ devtools: true }); const context = await browser.newContext(); const page = await context.newPage(); await page.goto('https://example.com'); page.on('dialog', async dialog =&gt; { console.log(`Found dialog. Type: ${dialog.type()}, message: ${dialog.message()}`); // get dialog type and message // await dialog.dismiss(); // Does not close the dialog and does not navigate await dialog.accept(); // Does not close the dialog but allows the navigation }) await page.addScriptTag({ content: 'window.onbeforeunload = (evt) =&gt; { evt.preventDefault(); evt.returnValue = &quot;&quot;}' }) await page.locator('body').click(); // chromium requires a user gesture to enable beforeunload await page.evaluate('window.location=&quot;https://www.iana.org/domains/reserved&quot;') await page.waitForTimeout(3000) // wait to check if the dialog disappears await context.close(); await browser.close(); })();"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-kos">{</span> chromium <span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'playwright'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">(</span><span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">const</span> <span class="pl-s1">browser</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">chromium</span><span class="pl-kos">.</span><span class="pl-en">launch</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">devtools</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-k">const</span> <span class="pl-s1">context</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">browser</span><span class="pl-kos">.</span><span class="pl-en">newContext</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">page</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">context</span><span class="pl-kos">.</span><span class="pl-en">newPage</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">goto</span><span class="pl-kos">(</span><span class="pl-s">'https://example.com'</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">'dialog'</span><span class="pl-kos">,</span> <span class="pl-k">async</span> <span class="pl-s1">dialog</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">`Found dialog. Type: <span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">dialog</span><span class="pl-kos">.</span><span class="pl-en">type</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">}</span></span>, message: <span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">dialog</span><span class="pl-kos">.</span><span class="pl-en">message</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">}</span></span>`</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// get dialog type and message</span> <span class="pl-c">// await dialog.dismiss(); // Does not close the dialog and does not navigate</span> <span class="pl-k">await</span> <span class="pl-s1">dialog</span><span class="pl-kos">.</span><span class="pl-en">accept</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Does not close the dialog but allows the navigation</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">addScriptTag</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">content</span>: <span class="pl-s">'window.onbeforeunload = (evt) =&gt; { evt.preventDefault(); evt.returnValue = ""}'</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">locator</span><span class="pl-kos">(</span><span class="pl-s">'body'</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">click</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// chromium requires a user gesture to enable beforeunload</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">evaluate</span><span class="pl-kos">(</span><span class="pl-s">'window.location="https://www.iana.org/domains/reserved"'</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">waitForTimeout</span><span class="pl-kos">(</span><span class="pl-c1">3000</span><span class="pl-kos">)</span> <span class="pl-c">// wait to check if the dialog disappears</span> <span class="pl-k">await</span> <span class="pl-s1">context</span><span class="pl-kos">.</span><span class="pl-en">close</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">await</span> <span class="pl-s1">browser</span><span class="pl-kos">.</span><span class="pl-en">close</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto"><strong>Steps</strong></p> <ul dir="auto"> <li>[Run the script]</li> </ul> <p dir="auto"><strong>Expected</strong></p> <p dir="auto">If the dialog is dismissed, the dialog should close and the navigation should fail and the browser closes<br> If the dialog is accepted, the dialog should close and the navigation should occur and the browser closes</p> <p dir="auto"><strong>Actual</strong></p> <p dir="auto">If the dialog is dismissed, the dialog does NOT close. The navigation does not occur and the browser does NOT close<br> If the dialog is accepted, the dialog does NOT close, although the navigation does occur and the browser does close</p>
<p dir="auto"><strong>Context:</strong></p> <ul dir="auto"> <li>Playwright Version: 1.25.0</li> <li>Operating System: Windows 10 x64</li> <li>.NET version: .NET 6</li> <li>Browser: MS Edge</li> <li>Extra: Visual Studio Enterprise 17.3.2</li> </ul> <p dir="auto"><strong>Code Snippet</strong></p> <div class="highlight highlight-source-cs notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="[TestMethod] public async Task LoadPlaywrightPage() { var playwright = await Playwright.CreateAsync(); var browser = await playwright.Chromium.LaunchAsync(new BrowserTypeLaunchOptions { Headless = false, Channel = &quot;msedge&quot; }); var context = await browser.NewContextAsync(); var page = await context.NewPageAsync(); await page.GotoAsync(&quot;https://playwright.dev/dotnet/&quot;); Assert.IsTrue((await page.TitleAsync()).Contains(&quot;Playwright .NET&quot;)); }"><pre class="notranslate"><span class="pl-kos">[</span><span class="pl-c1">TestMethod</span><span class="pl-kos">]</span> <span class="pl-k">public</span> <span class="pl-k">async</span> Task <span class="pl-en">LoadPlaywrightPage</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-smi">var</span> <span class="pl-s1">playwright</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> Playwright<span class="pl-kos">.</span><span class="pl-en">CreateAsync</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-smi">var</span> <span class="pl-s1">browser</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> playwright<span class="pl-kos">.</span>Chromium<span class="pl-kos">.</span><span class="pl-en">LaunchAsync</span><span class="pl-kos">(</span><span class="pl-k">new</span> BrowserTypeLaunchOptions <span class="pl-kos">{</span> <span class="pl-s1">Headless</span> <span class="pl-c1">=</span> <span class="pl-c1">false</span><span class="pl-kos">,</span> <span class="pl-s1">Channel</span> <span class="pl-c1">=</span> <span class="pl-s"><span class="pl-s">"</span>msedge<span class="pl-s">"</span></span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-smi">var</span> <span class="pl-s1">context</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> browser<span class="pl-kos">.</span><span class="pl-en">NewContextAsync</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-smi">var</span> <span class="pl-s1">page</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> context<span class="pl-kos">.</span><span class="pl-en">NewPageAsync</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">await</span> page<span class="pl-kos">.</span><span class="pl-en">GotoAsync</span><span class="pl-kos">(</span><span class="pl-s"><span class="pl-s">"</span>https://playwright.dev/dotnet/<span class="pl-s">"</span></span><span class="pl-kos">)</span><span class="pl-kos">;</span> Assert<span class="pl-kos">.</span><span class="pl-en">IsTrue</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-k">await</span> page<span class="pl-kos">.</span><span class="pl-en">TitleAsync</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">Contains</span><span class="pl-kos">(</span><span class="pl-s"><span class="pl-s">"</span>Playwright .NET<span class="pl-s">"</span></span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto"><strong>Describe the bug</strong></p> <p dir="auto">Running Visual Studio Enterprise in non-admin, the above code throws this exception:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Test method PlaywrightTests.PlaywrightTests.LoadPlaywrightPage threw exception: Microsoft.Playwright.PlaywrightException: Browser closed. ==================== Browser output: ==================== C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe --disable-field-trial-config --disable-background-networking --enable-features=NetworkService,NetworkServiceInProcess --disable-background-timer-throttling --disable-backgrounding-occluded-windows --disable-back-forward-cache --disable-breakpad --disable-client-side-phishing-detection --disable-component-extensions-with-background-pages --disable-default-apps --disable-dev-shm-usage --disable-extensions --disable-features=ImprovedCookieControls,LazyFrameLoading,GlobalMediaControls,DestroyProfileOnBrowserClose, MediaRouter,DialMediaRouteProvider,AcceptCHFrame,AutoExpandDetailsElement, CertificateTransparencyComponentUpdater,AvoidUnnecessaryBeforeUnloadCheckSync,Translate --allow-pre-commit-input --disable-hang-monitor --disable-ipc-flooding-protection --disable-popup-blocking --disable-prompt-on-repost --disable-renderer-backgrounding --disable-sync --force-color-profile=srgb --metrics-recording-only --no-first-run --enable-automation --password-store=basic --use-mock-keychain --no-service-autorun --export-tagged-pdf --no-sandbox --user-data-dir=C:\Users\MyUserId\AppData\Local\Temp\1\playwright_chromiumdev_profile-XJmwuh --remote-debugging-pipe --no-startup-window pid=35316 [pid=35316][out] Opening in existing browser session. =========================== logs =========================== C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe --disable-field-trial-config --disable-background-networking --enable-features=NetworkService,NetworkServiceInProcess --disable-background-timer-throttling --disable-backgrounding-occluded-windows --disable-back-forward-cache --disable-breakpad --disable-client-side-phishing-detection --disable-component-extensions-with-background-pages --disable-default-apps --disable-dev-shm-usage --disable-extensions --disable-features=ImprovedCookieControls,LazyFrameLoading,GlobalMediaControls,DestroyProfileOnBrowserClose, MediaRouter,DialMediaRouteProvider,AcceptCHFrame,AutoExpandDetailsElement, CertificateTransparencyComponentUpdater,AvoidUnnecessaryBeforeUnloadCheckSync,Translate --allow-pre-commit-input --disable-hang-monitor --disable-ipc-flooding-protection --disable-popup-blocking --disable-prompt-on-repost --disable-renderer-backgrounding --disable-sync --force-color-profile=srgb --metrics-recording-only --no-first-run --enable-automation --password-store=basic --use-mock-keychain --no-service-autorun --export-tagged-pdf --no-sandbox --user-data-dir=C:\Users\MyUserId\AppData\Local\Temp\1\playwright_chromiumdev_profile-XJmwuh --remote-debugging-pipe --no-startup-window pid=35316 [pid=35316][out] Opening in existing browser session. ============================================================ at Microsoft.Playwright.Transport.Connection.InnerSendMessageToServerAsync[T](String guid, String method, Object args) in //src/Playwright/Transport/Connection.cs:line 167 at Microsoft.Playwright.Transport.Connection.WrapApiCallAsync[T](Func`1 action, Boolean isInternal) at Microsoft.Playwright.Core.BrowserType.LaunchAsync(BrowserTypeLaunchOptions options) in //src/Playwright/Core/BrowserType.cs:line 61 at PlaywrightTests.PlaywrightTests.LoadPlaywrightPage() in C:\MyProjects\PlaywrightPlayground\PlaywrightTests\PlaywrightTests.cs:line 115 at Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.ThreadOperations.ExecuteWithAbortSafety(Action action) "><pre class="notranslate"><code class="notranslate">Test method PlaywrightTests.PlaywrightTests.LoadPlaywrightPage threw exception: Microsoft.Playwright.PlaywrightException: Browser closed. ==================== Browser output: ==================== C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe --disable-field-trial-config --disable-background-networking --enable-features=NetworkService,NetworkServiceInProcess --disable-background-timer-throttling --disable-backgrounding-occluded-windows --disable-back-forward-cache --disable-breakpad --disable-client-side-phishing-detection --disable-component-extensions-with-background-pages --disable-default-apps --disable-dev-shm-usage --disable-extensions --disable-features=ImprovedCookieControls,LazyFrameLoading,GlobalMediaControls,DestroyProfileOnBrowserClose, MediaRouter,DialMediaRouteProvider,AcceptCHFrame,AutoExpandDetailsElement, CertificateTransparencyComponentUpdater,AvoidUnnecessaryBeforeUnloadCheckSync,Translate --allow-pre-commit-input --disable-hang-monitor --disable-ipc-flooding-protection --disable-popup-blocking --disable-prompt-on-repost --disable-renderer-backgrounding --disable-sync --force-color-profile=srgb --metrics-recording-only --no-first-run --enable-automation --password-store=basic --use-mock-keychain --no-service-autorun --export-tagged-pdf --no-sandbox --user-data-dir=C:\Users\MyUserId\AppData\Local\Temp\1\playwright_chromiumdev_profile-XJmwuh --remote-debugging-pipe --no-startup-window pid=35316 [pid=35316][out] Opening in existing browser session. =========================== logs =========================== C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe --disable-field-trial-config --disable-background-networking --enable-features=NetworkService,NetworkServiceInProcess --disable-background-timer-throttling --disable-backgrounding-occluded-windows --disable-back-forward-cache --disable-breakpad --disable-client-side-phishing-detection --disable-component-extensions-with-background-pages --disable-default-apps --disable-dev-shm-usage --disable-extensions --disable-features=ImprovedCookieControls,LazyFrameLoading,GlobalMediaControls,DestroyProfileOnBrowserClose, MediaRouter,DialMediaRouteProvider,AcceptCHFrame,AutoExpandDetailsElement, CertificateTransparencyComponentUpdater,AvoidUnnecessaryBeforeUnloadCheckSync,Translate --allow-pre-commit-input --disable-hang-monitor --disable-ipc-flooding-protection --disable-popup-blocking --disable-prompt-on-repost --disable-renderer-backgrounding --disable-sync --force-color-profile=srgb --metrics-recording-only --no-first-run --enable-automation --password-store=basic --use-mock-keychain --no-service-autorun --export-tagged-pdf --no-sandbox --user-data-dir=C:\Users\MyUserId\AppData\Local\Temp\1\playwright_chromiumdev_profile-XJmwuh --remote-debugging-pipe --no-startup-window pid=35316 [pid=35316][out] Opening in existing browser session. ============================================================ at Microsoft.Playwright.Transport.Connection.InnerSendMessageToServerAsync[T](String guid, String method, Object args) in //src/Playwright/Transport/Connection.cs:line 167 at Microsoft.Playwright.Transport.Connection.WrapApiCallAsync[T](Func`1 action, Boolean isInternal) at Microsoft.Playwright.Core.BrowserType.LaunchAsync(BrowserTypeLaunchOptions options) in //src/Playwright/Core/BrowserType.cs:line 61 at PlaywrightTests.PlaywrightTests.LoadPlaywrightPage() in C:\MyProjects\PlaywrightPlayground\PlaywrightTests\PlaywrightTests.cs:line 115 at Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.ThreadOperations.ExecuteWithAbortSafety(Action action) </code></pre></div> <p dir="auto">If I open Visual Studio with "Run as administrator", the test runs fine and MS Edge opens successfully. I have a Stack Overflow post about this here: <a href="https://stackoverflow.com/questions/73651755/playwright-throws-exception-browser-closed-when-testing-against-ms-edge/" rel="nofollow">https://stackoverflow.com/questions/73651755/playwright-throws-exception-browser-closed-when-testing-against-ms-edge/</a></p> <p dir="auto">Thank you.</p>
0
<p dir="auto">When using a <code class="notranslate">date</code> field, say</p> <div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="-&gt;add('endAt', 'date', array( 'format' =&gt; \IntlDateFormatter::LONG, 'years' =&gt; range(date('Y'), date('Y') + 10), ))"><pre class="notranslate">-&gt;add(<span class="pl-s">'endAt'</span>, <span class="pl-s">'date'</span>, <span class="pl-en">array</span>( <span class="pl-s">'format'</span> =&gt; \<span class="pl-v">IntlDateFormatter</span>::<span class="pl-c1">LONG</span>, <span class="pl-s">'years'</span> =&gt; range(date(<span class="pl-s">'Y'</span>), date(<span class="pl-s">'Y'</span>) + <span class="pl-c1">10</span>), ))</pre></div> <p dir="auto">all options are translated:</p> <table role="table"> <thead> <tr> <th>State</th> <th>Locale</th> <th>Domain</th> <th>Id</th> <th>Message Preview</th> </tr> </thead> <tbody> <tr> <td>missing</td> <td>fr</td> <td>forms</td> <td>2015</td> <td>2015</td> </tr> <tr> <td>missing</td> <td>fr</td> <td>forms</td> <td>2016</td> <td>2016</td> </tr> <tr> <td>missing</td> <td>fr</td> <td>forms</td> <td>2017</td> <td>2017</td> </tr> <tr> <td></td> <td></td> <td></td> <td></td> <td></td> </tr> <tr> <td>missing</td> <td>fr</td> <td>forms</td> <td>janvier</td> <td>janvier</td> </tr> <tr> <td></td> <td></td> <td></td> <td></td> <td></td> </tr> <tr> <td>missing</td> <td>fr</td> <td>forms</td> <td>1</td> <td>1</td> </tr> <tr> <td>missing</td> <td>fr</td> <td>forms</td> <td>2</td> <td>2</td> </tr> <tr> <td>missing</td> <td>fr</td> <td>forms</td> <td>3</td> <td>3</td> </tr> <tr> <td></td> <td></td> <td></td> <td></td> <td></td> </tr> </tbody> </table> <p dir="auto">I don't know if it's really an issue but I don't like seeing red in the web profiler!</p>
<p dir="auto">I use <code class="notranslate">BirthdayType</code> (for which parent <code class="notranslate">DateType</code> so the problem is the same).</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="-&gt;add('birthday', 'birthday', [ 'label' =&gt; 'my_custom.translation_message', 'required' =&gt; true, 'format' =&gt; 'dd MMMM yyyy', // 'translation_domain' =&gt; false, // 'choice_translation_domain' =&gt; false, ])"><pre class="notranslate"><code class="notranslate">-&gt;add('birthday', 'birthday', [ 'label' =&gt; 'my_custom.translation_message', 'required' =&gt; true, 'format' =&gt; 'dd MMMM yyyy', // 'translation_domain' =&gt; false, // 'choice_translation_domain' =&gt; false, ]) </code></pre></div> <p dir="auto">On Symfony 2.7.3 I get gazillion (more than 100) <code class="notranslate">missing message</code> warnings.</p> <p dir="auto">If I uncomment <code class="notranslate">choice_translation_domain</code> – the option is not recognized.</p> <p dir="auto">If I uncomment <code class="notranslate">translation_domain</code> – the warnings disappear, but my label does not get translated.</p> <p dir="auto">I believe, <code class="notranslate">DateType</code> and <code class="notranslate">BirthdayType</code> should have <code class="notranslate">choice_translation_domain</code> so that label does get translated while there would not be warnings for each year in the widget (<code class="notranslate">ChoiceType</code>).</p>
1
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=asenft" rel="nofollow">Andreas Senft</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-759?redirect=false" rel="nofollow">SPR-759</a></strong> and commented</p> <p dir="auto">I just had a look at the implementation of AopUtils#getAllInterfacesForClassAsList.</p> <p dir="auto">I remember that I usually implemented similar methods using a Set. If multiple classes in a hierarchy implement the same interfaces the resulting list would yield duplicate entries.</p> <p dir="auto">Beside the cosmetic effect it could also affect performance when operations on the returned interfaces will be performed multiple times.</p> <p dir="auto">Maybe it's not a too common case, but I see it from time to time. So I would suggest to use a Set here.</p> <p dir="auto">Regards,<br> Andreas</p> <hr> <p dir="auto"><strong>Affects:</strong> 1.1.5</p>
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=gjbaxter" rel="nofollow">George Baxter</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-8737?redirect=false" rel="nofollow">SPR-8737</a></strong> and commented</p> <p dir="auto">Java has a concurrency issue when examining annotations on a method or method parameters (synchronized around a jam-wide weak hash map). In high concurrency environments, this becomes a bottleneck. The only current solution is to cache the annotations.</p> <p dir="auto">Currently, the MethodParameter class could cache the annotations based on the declaring class, the method and the parameter index. We might have been able to extend MethodParameter class to provide this caching, but unfortunately, the object is instantiated directly within the HandlerMethodInvoker.resolveHandlerArguments(..) (private method).</p> <p dir="auto">Currently a critical issue for us.</p> <hr> <p dir="auto"><strong>Affects:</strong> 3.0.5, 3.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="398118478" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13936" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13936/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13936">#13936</a> monitor contention at org.springframework.core.MethodParameter.getParameterAnnotations() (<em><strong>"duplicates"</strong></em>)</li> </ul>
0
<p dir="auto">Since upgrading to 2.3, I am now receiving occasional errors where a session record insert is failing because of a duplicate primary key. I have narrowed down the stack trace to the PDOSessionHandler's read() function.</p> <p dir="auto">It seems that the session ID doesn't exist at the initial SELECT statement, but does exist by the time the INSERT is attempted. This isn't happening with all users -- only a select few. Could this be because of simultaneous requests being submitted?</p> <p dir="auto">I can't seem to figure out any explanation for how this could happen. It seems that the record is being created between the SELECT and INSERT statements. Perhaps this issue always existed, but the addition of the PDO exceptions is now exposing it.</p> <p dir="auto">Any suggestions or information is appreciated. Thank you!</p>
<p dir="auto">Recently I've had the need to override Profiler (in order to export the hash used), and EnvParametersResource (in order to do a clever dotenv integration).</p> <p dir="auto">I'm finding that overriding these classes requires me to copy quite a few private variables.</p> <p dir="auto">e.g.</p> <div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class EnvParametersResource implements SelfCheckingResourceInterface, \Serializable { /** * @var string */ private $prefix; /** * @var string */ private $variables;"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-v">EnvParametersResource</span> <span class="pl-k">implements</span> <span class="pl-v">SelfCheckingResourceInterface</span>, \<span class="pl-v">Serializable</span> { <span class="pl-c">/**</span> <span class="pl-c"> * @var string</span> <span class="pl-c"> */</span> <span class="pl-k">private</span> <span class="pl-c1"><span class="pl-c1">$</span>prefix</span>; <span class="pl-c">/**</span> <span class="pl-c"> * @var string</span> <span class="pl-c"> */</span> <span class="pl-k">private</span> <span class="pl-c1"><span class="pl-c1">$</span>variables</span>;</pre></div> <p dir="auto">Could I request that these private member variables be made protected to allow people to easily extend these classes without a lot of copy/paste or code duplication?</p>
0
<h3 dir="auto">Version</h3> <p dir="auto">2.6.13</p> <h3 dir="auto">Reproduction link</h3> <p dir="auto"><a href="https://codesandbox.io/s/quizzical-wildflower-mp7tm" rel="nofollow">https://codesandbox.io/s/quizzical-wildflower-mp7tm</a></p> <h3 dir="auto">Steps to reproduce</h3> <ol dir="auto"> <li>create a component with scoped slot</li> <li>put at least 2 children inside this scoped slot</li> <li>make the first child conditionally rendered with V-IF directive</li> </ol> <p dir="auto">The V-IF directive in the first child will control the rendering of all the other siblings inside the scoped slot. This only happens if the first child inside the scoped slot uses V-IF - or if it is an HTML comment.</p> <h3 dir="auto">What is expected?</h3> <p dir="auto">The V-IF should only affect the tag/component it is applied to - but not the siblings.</p> <h3 dir="auto">What is actually happening?</h3> <p dir="auto">If the first child in any scoped slot is an HTML comment (and V-IF with a falsy argument actually renders HTML comment) - all the rest children in the scoped slot are not rendered.</p> <hr> <p dir="auto">The function "normalizeScopedSlot" in vue.runtime.esm.js for v2.6.13 is slightly different (and buggy) than v2.6.12.<br> In 2.6.12 the rendering is skipped if there is only 1 child in the scoped slot and this child is a comment.<br> However, in 2.6.13 there is no check for the number of children and the rendering of all children is skipped if the first child is both (a) comment and (b) not an async factory.</p>
<h3 dir="auto">Version</h3> <p dir="auto">2.6.13</p> <h3 dir="auto">Reproduction link</h3> <p dir="auto"><a href="https://codesandbox.io/s/recursing-dream-0zdf5?file=/src/App.vue" rel="nofollow">https://codesandbox.io/s/recursing-dream-0zdf5?file=/src/App.vue</a></p> <h3 dir="auto">Steps to reproduce</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;template&gt; &lt;ComponentWithSlot&gt; &lt;template #slot-name&gt; &lt;span v-if=&quot;false&quot;&gt;...&lt;/span&gt; &lt;span&gt;This is shown in 2.6.12, but not in 2.6.13.&lt;/span&gt; &lt;/template&gt; &lt;/ComponentWithSlot&gt; &lt;/template&gt;"><pre class="notranslate"><code class="notranslate">&lt;template&gt; &lt;ComponentWithSlot&gt; &lt;template #slot-name&gt; &lt;span v-if="false"&gt;...&lt;/span&gt; &lt;span&gt;This is shown in 2.6.12, but not in 2.6.13.&lt;/span&gt; &lt;/template&gt; &lt;/ComponentWithSlot&gt; &lt;/template&gt; </code></pre></div> <h3 dir="auto">What is expected?</h3> <p dir="auto">The text after the <code class="notranslate">v-if</code> node should be shown.</p> <h3 dir="auto">What is actually happening?</h3> <p dir="auto">It was shown in 2.6.12, but isn't shown in 2.6.13 anymore.</p>
1
<p dir="auto">the syntax checker and mobile viewer have had compounding issues for me as a work through this tutorial in firefox.<br> this is how this challenge loaded without my changing any of the text. The mobile view shows duplicated content which doesn't match the code<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/10518995/7820217/fe83589a-03b4-11e5-912b-799752684b5a.PNG"><img src="https://cloud.githubusercontent.com/assets/10518995/7820217/fe83589a-03b4-11e5-912b-799752684b5a.PNG" alt="capture" style="max-width: 100%;"></a></p>
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-create-a-bootstrap-headline" rel="nofollow">http://www.freecodecamp.com/challenges/waypoint-create-a-bootstrap-headline</a> has an issue. Please describe how to reproduce it, and include links to screenshots if possible.</p> <p dir="auto">The sidebar (for clarity, I am referring to the area shown in the attached screenshot) seems to scroll with a mind of its own. I have noticed this on several of the Bootstrap challenges (I did not see this on any HTML challenges). This is usually just a minor nuisance, but can be quite annoying when you are trying to hit a button to go to the next challenge (or submit a bug!).</p> <p dir="auto">In addition, the cursor seems to be off in the text editor portion. Typing and selecting text can be off by one line.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/7483609/9395155/c307f084-475a-11e5-82cf-49d3f772a8f4.png"><img src="https://cloud.githubusercontent.com/assets/7483609/9395155/c307f084-475a-11e5-82cf-49d3f772a8f4.png" alt="screen shot 2015-08-20 at 4 44 33 pm" style="max-width: 100%;"></a></p>
0
<p dir="auto">Today I've started JS chunk and I can see every assert for every step. Asserts still have "grayed-out" class, but are visible.<br> For example here: <a href="http://freecodecamp.com/challenges/waypoint-declare-string-variables" rel="nofollow">http://freecodecamp.com/challenges/waypoint-declare-string-variables</a><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/9102888/9355725/064e4d0a-4695-11e5-8971-10962c9f56a1.png"><img src="https://cloud.githubusercontent.com/assets/9102888/9355725/064e4d0a-4695-11e5-8971-10962c9f56a1.png" alt="testest" style="max-width: 100%;"></a></p>
<p dir="auto">Challenge <a href="https://www.freecodecamp.com/challenges/confirm-the-ending#?solution=function%20confirmEnding%28str%2C%20target%29%20%7B%0A%20%20%2F%2F%20%22Never%20give%20up%20and%20good%20luck%20will%20find%20you.%22%0A%20%20%2F%2F%20--%20Falcor%0A%20%20%0A%20%20%2F%2Freturn%20str.endsWith%28target%29%3B%20-%20more%20elegant%20way%0A%20%20%2F*%0A%20%20if%28str.endsWith%28target%29%29%7B%0A%20%20%20%20return%20true%3B%20%0A%20%20%7D%0A%20%20else%7B%0A%20%20%20%20return%20false%3B%0A%20%20%7D%20*%2F%0A%20%20%0A%20%20var%20str2%20%3D%20str.substr%28str.length%20-%20target.length%29%3B%0A%20%20%0A%20%20if%28str2%20%3D%3D%3D%20target%29%7B%0A%20%20%20%20return%20true%3B%0A%20%20%7D%0A%20%20else%7B%0A%20%20%20%20return%20false%3B%0A%20%20%7D%0A%7D%20%0A%20%20%0A%20%20%0A%0AconfirmEnding%28%22Bastian%22%2C%20%22n%22%29%3B%0A" rel="nofollow">Confirm the Ending</a> has an issue.<br> User Agent is: <code class="notranslate">Mozilla/5.0 (Windows NT 6.1; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0</code>.<br> Please describe how to reproduce this issue, and include links to screenshots if possible.</p> <p dir="auto">My code:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function confirmEnding(str, target) { // &quot;Never give up and good luck will find you.&quot; // -- Falcor //return str.endsWith(target); - more elegant way /* if(str.endsWith(target)){ return true; } else{ return false; } */ var str2 = str.substr(str.length - target.length); if(str2 === target){ return true; } else{ return false; } } confirmEnding(&quot;Bastian&quot;, &quot;n&quot;); "><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">confirmEnding</span><span class="pl-kos">(</span><span class="pl-s1">str</span><span class="pl-kos">,</span> <span class="pl-s1">target</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-c">// "Never give up and good luck will find you."</span> <span class="pl-c">// -- Falcor</span> <span class="pl-c">//return str.endsWith(target); - more elegant way</span> <span class="pl-c">/*</span> <span class="pl-c"> if(str.endsWith(target)){</span> <span class="pl-c"> return true; </span> <span class="pl-c"> }</span> <span class="pl-c"> else{</span> <span class="pl-c"> return false;</span> <span class="pl-c"> } */</span> <span class="pl-k">var</span> <span class="pl-s1">str2</span> <span class="pl-c1">=</span> <span class="pl-s1">str</span><span class="pl-kos">.</span><span class="pl-en">substr</span><span class="pl-kos">(</span><span class="pl-s1">str</span><span class="pl-kos">.</span><span class="pl-c1">length</span> <span class="pl-c1">-</span> <span class="pl-s1">target</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-k">if</span><span class="pl-kos">(</span><span class="pl-s1">str2</span> <span class="pl-c1">===</span> <span class="pl-s1">target</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">else</span><span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-c1">false</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span> <span class="pl-en">confirmEnding</span><span class="pl-kos">(</span><span class="pl-s">"Bastian"</span><span class="pl-kos">,</span> <span class="pl-s">"n"</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">Hello FCC,</p> <p dir="auto">I noticed that this challenge have some very simple solution which uses endsWith(<a href="http://www.w3schools.com/jsref/jsref_endswith.asp" rel="nofollow">http://www.w3schools.com/jsref/jsref_endswith.asp</a>) JavaScript method to resolve this problem, so I would like to point that this challenge dosen't make sense when you can do it in one line of code. I'm sorry if I posted this on wrong place or bothering someone too much.</p> <p dir="auto">Kind regards,<br> Nemanja</p>
0
<p dir="auto">I used<br> @-ms-viewport{<br> width : auto<br> }</p> <p dir="auto">It seems to fix the issue, tested on Lumia 920 GDR3</p>
<p dir="auto">I am using a navbar on windows phone 8 (lumia 920) and it doesn't seem to collapse at all (in landscape or portrait).</p> <p dir="auto">I tried removing the following from bootstrap.css (as per a suggestion on a previous bug report):</p> <p dir="auto">@-ms-viewport {<br> width: device-width;<br> }</p> <p dir="auto">which fixed the navbar, but obviously I don't know what knock-on effects that might have.</p> <p dir="auto">Slicc</p>
1
<p dir="auto">Attempting to load any ts file into a worker where an import map is used fails within the worker. It results in a relative import path error.</p> <p dir="auto">We extensively use import maps in our project to keep it clean and prevent having a lot of relative paths "../../../" in our imports.</p>
<h2 dir="auto">Steps to reproduce</h2> <ol dir="auto"> <li>Create the following files under the same directory:</li> </ol> <p dir="auto"><strong>import_map.json</strong></p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ &quot;imports&quot;: { &quot;fmt/&quot;: &quot;https://deno.land/std@0.55.0/fmt/&quot; } }"><pre class="notranslate"><span class="pl-kos">{</span> <span class="pl-s">"imports"</span>: <span class="pl-kos">{</span> <span class="pl-s">"fmt/"</span>: <span class="pl-s">"https://deno.land/std@0.55.0/fmt/"</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span></pre></div> <p dir="auto"><strong>color.ts</strong></p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { red } from &quot;fmt/colors.ts&quot;; console.log(red(&quot;hello world&quot;));"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">red</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"fmt/colors.ts"</span><span class="pl-kos">;</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-en">red</span><span class="pl-kos">(</span><span class="pl-s">"hello world"</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto"><strong>main.ts</strong></p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="new Worker(new URL('./color.ts', import.meta.url).href, {type: 'module'})"><pre class="notranslate"><span class="pl-k">new</span> <span class="pl-smi">Worker</span><span class="pl-kos">(</span><span class="pl-k">new</span> <span class="pl-smi">URL</span><span class="pl-kos">(</span><span class="pl-s">'./color.ts'</span><span class="pl-kos">,</span> <span class="pl-k">import</span><span class="pl-kos">.</span><span class="pl-c1">meta</span><span class="pl-kos">.</span><span class="pl-c1">url</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">href</span><span class="pl-kos">,</span> <span class="pl-kos">{</span><span class="pl-c1">type</span>: <span class="pl-s">'module'</span><span class="pl-kos">}</span><span class="pl-kos">)</span></pre></div> <ol start="2" dir="auto"> <li>Run this command:</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="deno run --allow-read --importmap=import_map.json --unstable main.ts"><pre class="notranslate"><code class="notranslate">deno run --allow-read --importmap=import_map.json --unstable main.ts </code></pre></div> <h2 dir="auto">Expected output</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="hello world"><pre class="notranslate"><code class="notranslate">hello world </code></pre></div> <h2 dir="auto">Actual output</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error: Uncaught Error: relative import path &quot;fmt/colors.ts&quot; not prefixed with / or ./ or ../ Imported from &quot;file:///color.ts&quot;"><pre class="notranslate"><code class="notranslate">error: Uncaught Error: relative import path "fmt/colors.ts" not prefixed with / or ./ or ../ Imported from "file:///color.ts" </code></pre></div> <h2 dir="auto">Environment</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="deno 1.1.3"><pre class="notranslate"><code class="notranslate">deno 1.1.3 </code></pre></div>
1
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/180903/4627348/4a2ad43e-538a-11e4-8937-21401117baa0.png"><img src="https://cloud.githubusercontent.com/assets/180903/4627348/4a2ad43e-538a-11e4-8937-21401117baa0.png" alt="screen shot 2014-10-14 at 13 08 24" style="max-width: 100%;"></a></p> <p dir="auto">There are 82 files in the information at the top but certainly not 82 files in the result. I cannot find the plugin that provides this functionality so have posted here.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/64050/3927598/37fd1176-23fd-11e4-99e2-d9a69afc72fd.gif"><img src="https://cloud.githubusercontent.com/assets/64050/3927598/37fd1176-23fd-11e4-99e2-d9a69afc72fd.gif" alt="find" data-animated-image="" style="max-width: 100%;"></a></p> <p dir="auto">I'm looking for a word in a project. I know the first result doesn't have what I want. I hide the first result, but there are no more results. I need to scroll to trigger the rest of the results to be fetched, and then I can hide the first listing.</p> <p dir="auto">/cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/benogle/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/benogle">@benogle</a></p>
1
<h1 dir="auto">Bug report</h1> <h2 dir="auto">Describe the bug</h2> <p dir="auto">The with-ant-design-less example is lack off hot reloading and client-side rendering for css</p> <h2 dir="auto">To Reproduce</h2> <p dir="auto">Steps to reproduce the behavior, please provide code snippets or a repository:</p> <p dir="auto">Hot reloading problem:</p> <ol dir="auto"> <li>Go to 'asserts/antd-custom.less'</li> <li>Change the primary color</li> <li>Save</li> <li>The new primary color is not applied via hot reloading</li> </ol> <p dir="auto">Client-side rendering for css:</p> <ol dir="auto"> <li>Create a new page called "test.js" and less file called "test.less" then define simple css in it (e.g p {color: red})</li> <li>Import style "test.less" file into "test.js" and define a paragrah tag for testing</li> <li>Create a Link component inside index page to navigate to test page</li> <li>When navigating from index.js to test.js, although the test.less is merged into style.css file in /_next/static/style.css, the paragraph tag was not applied red color . If I refresh the test page, everything works fine</li> </ol> <h2 dir="auto">Expected behavior</h2> <p dir="auto">I really appreciate if anyone can tell me the appropriate way to use Ant design in Next.js with custom less style with hot reloading, client-side rendering by answering the questions below:</p> <ol dir="auto"> <li>What should I use to create an Ant Design Layout for all pages (the new implementation _app.js or _document.js?). I've tried to use this <a href="https://github.com/aoc/with-ant-design-custom-theme">example</a> (using _document.js and add ant design style into <code class="notranslate">style</code> tag), but the ant design icon part not working.</li> <li>I want to import .less style for each page, e.g pageA has pageA.less ,page B has pageB.less, how can I do that ?</li> </ol> <h2 dir="auto">System information</h2> <ul dir="auto"> <li>OS: [e.g. Ubuntu]</li> <li>Browser (if applies) [e.g. chrome]</li> <li>Version of Next.js: [e.g. 6.0.3]</li> </ul>
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <h2 dir="auto">Current Behavior</h2> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <ol dir="auto"> <li></li> <li></li> <li></li> <li></li> </ol> <h2 dir="auto">Context</h2> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>next</td> <td></td> </tr> <tr> <td>node</td> <td></td> </tr> <tr> <td>OS</td> <td></td> </tr> <tr> <td>browser</td> <td></td> </tr> <tr> <td>etc</td> <td></td> </tr> </tbody> </table>
0
<p dir="auto">Julia-0.3.0-prerelease-d2d9bd93ed for OSX 10.6 64-bit crashes instantly at launch on an iMac model iMac10,1 with Mac OS X 10.6.8 processor Intel Core 2 Duo 3.06 GHz</p> <p dir="auto">I don't have any debug tools on this machine but I think it is an illegal instruction.</p> <p dir="auto">Julia 0.2 for OSX 10.6 64-bit works.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia&gt; 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&gt; 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&gt; a=[1:5] 5-element Array{Int32,1}: 1 2 3 4 5"><pre class="notranslate"><code class="notranslate">julia&gt; 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.&gt;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">Numpy amax method raises warning when input is an array that contains NaN. I do not recall that numpy did this in previous versions. Also, from the documentation, it says that amax shall propagate NaN, so I would expect it to return NaN without raising a warning.</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 b = np.arange(5, dtype=float) b[2] = np.NaN np.amax(b)"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span> <span class="pl-s1">b</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-c1">5</span>, <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">float</span>) <span class="pl-s1">b</span>[<span class="pl-c1">2</span>] <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-v">NaN</span> <span class="pl-s1">np</span>.<span class="pl-en">amax</span>(<span class="pl-s1">b</span>)</pre></div> <p dir="auto">NaN is returned, as expected, but a RuntimeWarning is issued, which I did not expect.</p> <h3 dir="auto">Error message:</h3> <p dir="auto">C:\Python\WinPython\WPy-3710\python-3.7.1.amd64\lib\site-packages\numpy\core_methods.py:26: RuntimeWarning: invalid value encountered in reduce return umr_maximum(a, axis, None, out, keepdims)</p> <h3 dir="auto">Numpy/Python version information:</h3> <p dir="auto">1.14.6 3.7.1 (v3.7.1:260ec2c36a, Oct 20 2018, 14:57:15) [MSC v.1915 64 bit (AMD64)]</p>
<p dir="auto"><code class="notranslate">numpy.maximum</code> now raises a RuntimeWarning when encountering a NaN, but the documentation says it propagates NaNs and even goes to the trouble of saying exactly how they are propagated, which makes it seem like it shouldn't give a warning.</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="In [1]: import numpy as np In [2]: x = np.array([1, 2, np.nan], dtype=float) In [3]: np.maximum(x, x) /home/tudor/anaconda3/bin/ipython:1: RuntimeWarning: invalid value encountered in maximum #!/home/tudor/anaconda3/bin/python Out[3]: array([ 1., 2., nan]) "><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">1</span>]: <span class="pl-s1">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span> <span class="pl-v">In</span> [<span class="pl-c1">2</span>]: <span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">array</span>([<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-s1">np</span>.<span class="pl-s1">nan</span>], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">float</span>) <span class="pl-v">In</span> [<span class="pl-c1">3</span>]: <span class="pl-s1">np</span>.<span class="pl-en">maximum</span>(<span class="pl-s1">x</span>, <span class="pl-s1">x</span>) <span class="pl-c1">/</span><span class="pl-s1">home</span><span class="pl-c1">/</span><span class="pl-s1">tudor</span><span class="pl-c1">/</span><span class="pl-s1">anaconda3</span><span class="pl-c1">/</span><span class="pl-s1">bin</span><span class="pl-c1">/</span><span class="pl-s1">ipython</span>:<span class="pl-c1">1</span>: <span class="pl-v">RuntimeWarning</span>: <span class="pl-s1">invalid</span> <span class="pl-s1">value</span> <span class="pl-s1">encountered</span> <span class="pl-c1">in</span> <span class="pl-s1">maximum</span> <span class="pl-c">#!/home/tudor/anaconda3/bin/python</span> <span class="pl-v">Out</span>[<span class="pl-c1">3</span>]: <span class="pl-en">array</span>([ <span class="pl-c1">1.</span>, <span class="pl-c1">2.</span>, <span class="pl-s1">nan</span>])</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="In [6]: import sys, numpy; print(numpy.__version__, sys.version) 1.15.1 3.6.6 |Anaconda custom (64-bit)| (default, Jun 28 2018, 17:14:51) [GCC 7.2.0]"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">6</span>]: <span class="pl-s1">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.15</span>.<span class="pl-c1">1</span> <span class="pl-c1">3.6</span>.<span class="pl-c1">6</span> <span class="pl-c1">|</span><span class="pl-v">Anaconda</span> <span class="pl-s1">custom</span> (<span class="pl-c1">64</span><span class="pl-c1">-</span><span class="pl-s1">bit</span>)<span class="pl-c1">|</span> (<span class="pl-s1">default</span>, <span class="pl-v">Jun</span> <span class="pl-c1">28</span> <span class="pl-c1">2018</span>, <span class="pl-c1">17</span>:<span class="pl-c1">14</span>:<span class="pl-c1">51</span>) [<span class="pl-v">GCC</span> <span class="pl-c1">7.2</span><span class="pl-c1">.0</span>]</pre></div>
1
<p dir="auto"><code class="notranslate">Pkg.clone</code> supports cloning a package via a registered package name. If you supply a package name that is not registered the following occurs in Julia v0.4</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia&gt; Pkg.clone(&quot;Foo&quot;) INFO: Cloning Foo from Foo fatal: repository 'Foo' does not exist ERROR: unlink: no such file or directory (ENOENT) in unlink at fs.jl:102 in rm at file.jl:59 in clone at pkg/entry.jl:162 in clone at pkg/entry.jl:186 in anonymous at pkg/dir.jl:31 in cd at file.jl:22 in cd at pkg/dir.jl:31 in clone at pkg.jl:34"><pre class="notranslate">julia<span class="pl-k">&gt;</span> Pkg<span class="pl-k">.</span><span class="pl-c1">clone</span>(<span class="pl-s"><span class="pl-pds">"</span>Foo<span class="pl-pds">"</span></span>) INFO<span class="pl-k">:</span> Cloning Foo from Foo fatal<span class="pl-k">:</span> repository <span class="pl-s"><span class="pl-pds">'</span>Foo<span class="pl-pds">'</span></span> does not exist ERROR<span class="pl-k">:</span> unlink<span class="pl-k">:</span> no such file or directory (ENOENT) <span class="pl-k">in</span> unlink at fs<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">102</span> <span class="pl-k">in</span> rm at file<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">59</span> <span class="pl-k">in</span> clone at pkg<span class="pl-k">/</span>entry<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">162</span> <span class="pl-k">in</span> clone at pkg<span class="pl-k">/</span>entry<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">186</span> <span class="pl-k">in</span> anonymous at pkg<span class="pl-k">/</span>dir<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">31</span> <span class="pl-k">in</span> cd at file<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">22</span> <span class="pl-k">in</span> cd at pkg<span class="pl-k">/</span>dir<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">31</span> <span class="pl-k">in</span> clone at pkg<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">34</span></pre></div> <p dir="auto">In Julia v0.5.0-rc3 this succeeds with no warning or error:</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia&gt; Pkg.clone(&quot;Foo&quot;) INFO: Cloning Foo from Foo INFO: Computing changes..."><pre class="notranslate">julia<span class="pl-k">&gt;</span> Pkg<span class="pl-k">.</span><span class="pl-c1">clone</span>(<span class="pl-s"><span class="pl-pds">"</span>Foo<span class="pl-pds">"</span></span>) INFO<span class="pl-k">:</span> Cloning Foo from Foo INFO<span class="pl-k">:</span> Computing changes<span class="pl-k">...</span></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=".julia/v0.5 » julia _ _ _ _(_)_ | A fresh approach to technical computing (_) | (_) (_) | Documentation: http://docs.julialang.org _ _ _| |_ __ _ | Type &quot;?help&quot; for help. | | | | | | |/ _` | | | | |_| | | | (_| | | Version 0.4.1 (2015-11-08 10:33 UTC) _/ |\__'_|_|_|\__'_| | |__/ | x86_64-apple-darwin15.0.0 julia&gt; Pkg.clone(&quot;WTF&quot;) INFO: Cloning WTF from WTF fatal: repository 'WTF' does not exist ERROR: unlink: no such file or directory (ENOENT) in unlink at fs.jl:102 in rm at file.jl:59 in clone at pkg/entry.jl:162 in clone at pkg/entry.jl:186 in anonymous at pkg/dir.jl:31 in cd at file.jl:22 in cd at pkg/dir.jl:31 in clone at pkg.jl:34"><pre class="notranslate"><code class="notranslate">.julia/v0.5 » julia _ _ _ _(_)_ | A fresh approach to technical computing (_) | (_) (_) | Documentation: http://docs.julialang.org _ _ _| |_ __ _ | Type "?help" for help. | | | | | | |/ _` | | | | |_| | | | (_| | | Version 0.4.1 (2015-11-08 10:33 UTC) _/ |\__'_|_|_|\__'_| | |__/ | x86_64-apple-darwin15.0.0 julia&gt; Pkg.clone("WTF") INFO: Cloning WTF from WTF fatal: repository 'WTF' does not exist ERROR: unlink: no such file or directory (ENOENT) in unlink at fs.jl:102 in rm at file.jl:59 in clone at pkg/entry.jl:162 in clone at pkg/entry.jl:186 in anonymous at pkg/dir.jl:31 in cd at file.jl:22 in cd at pkg/dir.jl:31 in clone at pkg.jl:34 </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" _ _ _ _(_)_ | A fresh approach to technical computing (_) | (_) (_) | Documentation: http://docs.julialang.org _ _ _| |_ __ _ | Type &quot;?help&quot; for help. | | | | | | |/ _` | | | | |_| | | | (_| | | Version 0.5.0-dev+1351 (2015-11-18 15:34 UTC) _/ |\__'_|_|_|\__'_| | jcb/findlib/2277b09* (fork: 1 commits, 0 days) |__/ | x86_64-apple-darwin15.0.0 julia&gt; Pkg.clone(&quot;WTF&quot;) INFO: Cloning WTF from WTF INFO: Computing changes... julia&gt; using WTF ERROR: ArgumentError: WTF not found in path. Run Pkg.add(&quot;WTF&quot;) to install the WTF package in require at ./loading.jl:321 in eval at ./boot.jl:263"><pre class="notranslate"><code class="notranslate"> _ _ _ _(_)_ | A fresh approach to technical computing (_) | (_) (_) | Documentation: http://docs.julialang.org _ _ _| |_ __ _ | Type "?help" for help. | | | | | | |/ _` | | | | |_| | | | (_| | | Version 0.5.0-dev+1351 (2015-11-18 15:34 UTC) _/ |\__'_|_|_|\__'_| | jcb/findlib/2277b09* (fork: 1 commits, 0 days) |__/ | x86_64-apple-darwin15.0.0 julia&gt; Pkg.clone("WTF") INFO: Cloning WTF from WTF INFO: Computing changes... julia&gt; using WTF ERROR: ArgumentError: WTF not found in path. Run Pkg.add("WTF") to install the WTF package in require at ./loading.jl:321 in eval at ./boot.jl:263 </code></pre></div>
1
<h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt; :4.0.1 Android pack</li> </ul> <h5 dir="auto">Detailed description</h5> <p dir="auto">When using Opencv Javacamera2View , I get a green color on the camera preview. When i switch to JavaCameraView, the camera diplays well.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/20979107/50424414-00348980-085b-11e9-94d5-88414dc48d72.png"><img src="https://user-images.githubusercontent.com/20979107/50424414-00348980-085b-11e9-94d5-88414dc48d72.png" alt="screenshot_20181225-162646" style="max-width: 100%;"></a></p>
<h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt; 3.2.0</li> <li>Operating System / Platform =&gt; RHEL 7</li> <li>Compiler =&gt; GCC 6.2.1 20161010 (for GNAT Pro 17.1 20170104)</li> </ul> <h5 dir="auto">Detailed description</h5> <p dir="auto">When doing a matrix operation, if the output matrix is of an incompatible type the results will neither be converted to the correct type, nor will any warning/error be thrown.</p> <p dir="auto">One of these things should happen because the current behavior leads to some very dangerous and difficult to find bugs.</p> <h5 dir="auto">Steps to reproduce</h5> <div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="cv::Mat testmat1(3,3, CV_16S, cv::Scalar(0)); cv::Mat testmat2(3,3, CV_32F, cv::Scalar(0)); testmat1.at&lt;int16_t&gt;(1,1) = 50; cv::blur(testmat1, testmat2, cv::Size(3,3)); std::cout &lt;&lt; testmat2.at&lt;float&gt;(1,1) &lt;&lt; std::endl;"><pre class="notranslate">cv::Mat <span class="pl-en">testmat1</span>(<span class="pl-c1">3</span>,<span class="pl-c1">3</span>, CV_16S, cv::Scalar(<span class="pl-c1">0</span>)); cv::Mat <span class="pl-en">testmat2</span>(<span class="pl-c1">3</span>,<span class="pl-c1">3</span>, CV_32F, cv::Scalar(<span class="pl-c1">0</span>)); testmat1.at&lt;<span class="pl-c1">int16_t</span>&gt;(<span class="pl-c1">1</span>,<span class="pl-c1">1</span>) = <span class="pl-c1">50</span>; <span class="pl-en">cv::blur</span>(testmat1, testmat2, cv::<span class="pl-c1">Size</span>(<span class="pl-c1">3</span>,<span class="pl-c1">3</span>)); std::cout &lt;&lt; testmat2.at&lt;<span class="pl-k">float</span>&gt;(<span class="pl-c1">1</span>,<span class="pl-c1">1</span>) &lt;&lt; std::endl;</pre></div> <p dir="auto">This doesn't give the expected output of 5.55555556.</p>
0
<p dir="auto">Currently the scheduler through the <code class="notranslate">Threads.@spawn</code> macro will assign to random thread #'s, including the primary thread. There may be times where there is a "traffic cop" activity on Thread 1 that can be impacted if a heavy-computational (in essence, blocking) task is put onto that thread. It would be nice if there was a way to cordon off Thread 1 from spawning in those cases.</p>
<p dir="auto">If I run the following code in a REPL (v0.4.5), I find that the REPL becomes very unresponsive. It will take many seconds to respond to just typing a few letters. In contrast, if I run the same code in an iJulia notebook, the iJulia notebook remains responsive to typing, even if it takes longer to evaluate things. It would be nice if the REPL remained responsive as well.</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function dowork(n) t = 0.0 for i=1:n t+= @elapsed sort(rand(10^5)) yield() end t end for i=1:100 @schedule dowork(1000) end"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">dowork</span>(n) t <span class="pl-k">=</span> <span class="pl-c1">0.0</span> <span class="pl-k">for</span> i<span class="pl-k">=</span><span class="pl-c1">1</span><span class="pl-k">:</span>n t<span class="pl-k">+=</span> <span class="pl-c1">@elapsed</span> <span class="pl-c1">sort</span>(<span class="pl-c1">rand</span>(<span class="pl-c1">10</span><span class="pl-k">^</span><span class="pl-c1">5</span>)) <span class="pl-c1">yield</span>() <span class="pl-k">end</span> t <span class="pl-k">end</span> <span class="pl-k">for</span> i<span class="pl-k">=</span><span class="pl-c1">1</span><span class="pl-k">:</span><span class="pl-c1">100</span> <span class="pl-c1">@schedule</span> <span class="pl-c1">dowork</span>(<span class="pl-c1">1000</span>) <span class="pl-k">end</span></pre></div>
1
<p dir="auto">Using ng-content inside ngFor produce a single content.<br> For example:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@Component({ selector: 'some-component', template: ` &lt;div *ngFor=&quot;#x of arr&quot;&gt; &lt;ng-content&gt;&lt;/ng-content&gt; &lt;/div&gt; ` }); class SomeComponent { arr = [1,2,3]; } @Component({ selector: 'app' template: ` &lt;some-component&gt; data &lt;/some-component&gt; `, directives: [SomeComponent] }) class App {}"><pre class="notranslate">@<span class="pl-smi">Component</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">selector</span>: <span class="pl-s">'some-component'</span><span class="pl-kos">,</span> <span class="pl-c1">template</span>: <span class="pl-s">`</span> <span class="pl-s"> &lt;div *ngFor="#x of arr"&gt;</span> <span class="pl-s"> &lt;ng-content&gt;&lt;/ng-content&gt;</span> <span class="pl-s"> &lt;/div&gt;</span> <span class="pl-s"> `</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">class</span> <span class="pl-smi">SomeComponent</span> <span class="pl-kos">{</span> <span class="pl-c1">arr</span> <span class="pl-c1">=</span> <span class="pl-kos">[</span><span class="pl-c1">1</span><span class="pl-kos">,</span><span class="pl-c1">2</span><span class="pl-kos">,</span><span class="pl-c1">3</span><span class="pl-kos">]</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> @<span class="pl-smi">Component</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">selector</span>: <span class="pl-s">'app'</span> <span class="pl-s1">template</span>: <span class="pl-s">`</span> <span class="pl-s"> &lt;some-component&gt; data &lt;/some-component&gt;</span> <span class="pl-s"> `</span><span class="pl-kos">,</span> <span class="pl-c1">directives</span>: <span class="pl-kos">[</span><span class="pl-smi">SomeComponent</span><span class="pl-kos">]</span> <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-k">class</span> <span class="pl-smi">App</span> <span class="pl-kos">{</span><span class="pl-kos">}</span></pre></div> <p dir="auto">produces the word "data" a single time instead of three times. (plunker: <a href="https://plnkr.co/edit/p6YA4dAsuiybTjtnSBnz" rel="nofollow">https://plnkr.co/edit/p6YA4dAsuiybTjtnSBnz</a>)</p>
<p dir="auto">When a component has a <code class="notranslate">ng-content</code> within a <code class="notranslate">ng-for</code> only one <code class="notranslate">ng-content</code> is rendered.</p> <h2 dir="auto">Component with the for and content ( list.ts )</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;li *ng-for=&quot;#item of listRows&quot;&gt; &lt;ng-content&gt;&lt;/ng-content&gt; &lt;/li&gt; "><pre class="notranslate"><code class="notranslate">&lt;li *ng-for="#item of listRows"&gt; &lt;ng-content&gt;&lt;/ng-content&gt; &lt;/li&gt; </code></pre></div> <h2 dir="auto">Component using the List component ( app.ts )</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;list [list-rows]=&quot;myRows&quot; &gt; &lt;listRow &gt;&lt;/listRow&gt; &lt;/list&gt; "><pre class="notranslate"><code class="notranslate">&lt;list [list-rows]="myRows" &gt; &lt;listRow &gt;&lt;/listRow&gt; &lt;/list&gt; </code></pre></div> <p dir="auto">Can see the code with the problem here <a href="http://plnkr.co/edit/RbvRWV0O1jiWoCcs6dAF?p=preview" rel="nofollow">http://plnkr.co/edit/RbvRWV0O1jiWoCcs6dAF?p=preview</a></p> <p dir="auto">Maybe <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tbosch/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tbosch">@tbosch</a> can see the problem here</p>
1
<p dir="auto">Even as a developer with quite some experience with web development, I found the HTMK5 and CSS3 waypoints interesting. However, this changed in the last 15 waypoints which covered just two topics: hex code and rgb values: with a lot of repetition(e.g. three waypoints for how to change colour to red, blue and green).</p> <p dir="auto">I think reducing the number of waypoints will be more productive to the user.</p>
<p dir="auto">Challenge <a href="http://freecodecamp.com/challenges/waypoint-use-rgb-to-color-elements-green" rel="nofollow">http://freecodecamp.com/challenges/waypoint-use-rgb-to-color-elements-green</a> has an issue. Please describe how to reproduce it, and include links to screenshots if possible.</p> <p dir="auto">I don't need to repeat the same task six times with slightly different colours, simpler option is far better. Once for each colour type and mention the cheat sheet for colour values. <a href="http://www.pagetutor.com/common/bgcolors1536.html" rel="nofollow">http://www.pagetutor.com/common/bgcolors1536.html</a> <a href="http://www.zoology.ubc.ca/~alathea/howto_html/colorchart.png" rel="nofollow">http://www.zoology.ubc.ca/~alathea/howto_html/colorchart.png</a><br> <a href="http://www.visibone.com/color/hexagon_800.gif" rel="nofollow">http://www.visibone.com/color/hexagon_800.gif</a></p> <p dir="auto">and mention that there are tiny utilities which do colour picking.</p>
1
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 1903, build 18362 Windows Terminal version (if applicable): Windows Terminal (Preview) Version: 0.5.2681.0 Any other software? Terminal Font: Fira Code"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: 1903, build 18362 Windows Terminal version (if applicable): Windows Terminal (Preview) Version: 0.5.2681.0 Any other software? Terminal Font: Fira Code </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <p dir="auto">In CMD: <code class="notranslate">mode con</code></p> <h1 dir="auto">Expected behavior</h1> <p dir="auto"><code class="notranslate">Lines</code> value equals <code class="notranslate">initialRows</code> value defined in profile config.</p> <h1 dir="auto">Actual behavior</h1> <p dir="auto">Terminal size is smaller than defined:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/25099832/65713723-12697f80-e09a-11e9-801a-67d03f74a805.png"><img src="https://user-images.githubusercontent.com/25099832/65713723-12697f80-e09a-11e9-801a-67d03f74a805.png" alt="Case 1" style="max-width: 100%;"></a></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/25099832/65714339-31b4dc80-e09b-11e9-9661-85e4e323dc0d.png"><img src="https://user-images.githubusercontent.com/25099832/65714339-31b4dc80-e09b-11e9-9661-85e4e323dc0d.png" alt="Case 2" style="max-width: 100%;"></a></p>
<h1 dir="auto">Description of the new feature/enhancement</h1> <p dir="auto">Currently, there are 4 pixels of distance between each of the top of the tabs and the top of the maximized window:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/121676/68541168-7f13b180-039c-11ea-82eb-c72a98231061.png"><img src="https://user-images.githubusercontent.com/121676/68541168-7f13b180-039c-11ea-82eb-c72a98231061.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">According to the Fitts' Law, the time to interact with a component is a function of the distance from the mouse pointer to the component, and the area of the component. As a special case, because the computer screen is bounded, the four screen borders (and the four corners) have infinite area, making them extremely easy and fast to use.</p> <p dir="auto">However, the Windows Terminal (version 0.6.2951.0) places the tabs just 4 pixels away from the screen border, making it very frustrating to click (even more so because users are already used to tabs in Chrome and Firefox).</p> <p dir="auto">Further reading:</p> <ul dir="auto"> <li><a href="https://blogs.msdn.microsoft.com/jensenh/2006/08/22/giving-you-fitts/" rel="nofollow">https://blogs.msdn.microsoft.com/jensenh/2006/08/22/giving-you-fitts/</a></li> <li><a href="http://particletree.com/features/visualizing-fittss-law/" rel="nofollow">http://particletree.com/features/visualizing-fittss-law/</a></li> <li><a href="https://blog.codinghorror.com/fitts-law-and-infinite-width/" rel="nofollow">https://blog.codinghorror.com/fitts-law-and-infinite-width/</a></li> <li><a href="https://en.wikipedia.org/wiki/Fitts%27s_law" rel="nofollow">https://en.wikipedia.org/wiki/Fitts%27s_law</a></li> </ul> <h1 dir="auto">Proposed technical implementation details (optional)</h1> <p dir="auto">The tabs should touch the screen border when the terminal is maximized. Just like how Chrome and Firefox also behave.</p> <hr> <p dir="auto">Footnote: I tried searching if this issue had been reported before, but I found nothing. This issue here should be included into <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="460696043" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1625" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/1625/hovercard" href="https://github.com/microsoft/terminal/issues/1625">#1625</a>.</p>
0
<p dir="auto">Here is an example:</p> <p dir="auto">julia&gt; x = 2<br> 2</p> <p dir="auto">julia&gt; x.2<br> 0.4</p>
<p dir="auto">I'm very new to Julia--I just downloaded it today--so I'm not sure if this the "bug" I'm reporting is desired behavior, and I'm also not sure if the vocabulary I'm using to describe it is correct for Julia:</p> <p dir="auto">As I was playing around with Julia, I was surprised to find that attempting to access attributes of a variable using an integer is interpreted as multiplying the variable by a constant:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="~/repos/julia$ ./julia _ _ _ _(_)_ | A fresh approach to technical computing (_) | (_) (_) | Documentation: http://docs.julialang.org _ _ _| |_ __ _ | Type &quot;help()&quot; to list help topics | | | | | | |/ _` | | | | |_| | | | (_| | | Version 0.3.0-prerelease+2917 (2014-05-06 14:30 UTC) _/ |\__'_|_|_|\__'_| | Commit 32b5cce (0 days old master) |__/ | x86_64-linux-gnu julia&gt; x = 4 4 julia&gt; x.3 1.2 julia&gt; "><pre class="notranslate"><code class="notranslate">~/repos/julia$ ./julia _ _ _ _(_)_ | A fresh approach to technical computing (_) | (_) (_) | Documentation: http://docs.julialang.org _ _ _| |_ __ _ | Type "help()" to list help topics | | | | | | |/ _` | | | | |_| | | | (_| | | Version 0.3.0-prerelease+2917 (2014-05-06 14:30 UTC) _/ |\__'_|_|_|\__'_| | Commit 32b5cce (0 days old master) |__/ | x86_64-linux-gnu julia&gt; x = 4 4 julia&gt; x.3 1.2 julia&gt; </code></pre></div> <p dir="auto">I think I understand what's going on here--<code class="notranslate">x.3</code> is the same thing as <code class="notranslate">.3x</code>. Now, I think it's very cool that Julia permits syntax like <code class="notranslate">.3x</code>, but it just seems to me like you'd want <code class="notranslate">x.3</code> to raise a syntax error instead.</p>
1
<h2 dir="auto"></h2> <p dir="auto">Run an insert sql with more than one encrypt column, and some of columns are null, encrypt-jdbc rewrite a wrong sql which plain columns are out of order.But if I set the null columns to "". it rewrite an correct sql.</p> <p dir="auto">sharding-sphere version 4.0.0-RC2</p> <h2 dir="auto"></h2> <p dir="auto">And then i update my sharding-sphere version to 4.0.0-RC3-SNAPSHOT, run the same sql as before, another bug occur.<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/33616750/68462165-f33c4100-0246-11ea-8061-af648d48e6be.png"><img src="https://user-images.githubusercontent.com/33616750/68462165-f33c4100-0246-11ea-8061-af648d48e6be.png" alt="image" style="max-width: 100%;"></a></p>
<h2 dir="auto">Bug Report</h2> <p dir="auto"><strong>For English only</strong>, other languages will not accept.</p> <p dir="auto">Before report a bug, make sure you have:</p> <ul dir="auto"> <li>Searched open and closed <a href="https://github.com/apache/shardingsphere/issues">GitHub issues</a>.</li> <li>Read documentation: <a href="https://shardingsphere.apache.org/document/current/en/overview" rel="nofollow">ShardingSphere Doc</a>.</li> </ul> <p dir="auto">Please pay attention on issues you submitted, because we maybe need more details.<br> If no response anymore and we cannot reproduce it on current information, we will <strong>close it</strong>.</p> <p dir="auto">Please answer these questions before submitting your issue. Thanks!</p> <h3 dir="auto">Which version of ShardingSphere did you use?</h3> <p dir="auto">使用 sharding-jdbc-spring-boot-starter v4.1.1</p> <h3 dir="auto">Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy?</h3> <p dir="auto">使用 ShardingSphere-JDBC</p> <h3 dir="auto">Expected behavior</h3> <h3 dir="auto">Actual behavior</h3> <h3 dir="auto">Reason analyze (If you can)</h3> <p dir="auto">原因是表的字段名为 key<br> 如果将字段名改为 test_key 将正常运行</p> <h3 dir="auto">Steps to reproduce the behavior, such as: SQL to execute, sharding rule configuration, when exception occur etc.</h3> <ul dir="auto"> <li>创建表</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="CREATE TABLE `t_config` ( `id` bigint(20) NOT NULL, `key` varchar(255) DEFAULT NULL, `value` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;"><pre class="notranslate"><code class="notranslate">CREATE TABLE `t_config` ( `id` bigint(20) NOT NULL, `key` varchar(255) DEFAULT NULL, `value` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; </code></pre></div> <ul dir="auto"> <li>配置规则</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" sharding: tables: t_config: actual-data-nodes: ds.t_config broadcast-tables: t_config"><pre class="notranslate"><code class="notranslate"> sharding: tables: t_config: actual-data-nodes: ds.t_config broadcast-tables: t_config </code></pre></div> <ul dir="auto"> <li>查询操作</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="dao层使用mybatis, 根据id或者查询全部 t_config表数据,报如下异常"><pre class="notranslate"><code class="notranslate">dao层使用mybatis, 根据id或者查询全部 t_config表数据,报如下异常 </code></pre></div> <ul dir="auto"> <li>异常信息</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@513e39da] was not registered for synchronization because synchronization is not active JDBC Connection [org.apache.shardingsphere.shardingjdbc.jdbc.core.connection.ShardingConnection@7cae023a] will not be managed by Spring ==&gt; Preparing: SELECT id,key,value FROM t_config ==&gt; Parameters: line 1:11 no viable alternative at input 'key' line 1:11 mismatched input 'key' expecting {'!', '~', '+', '-', '.', '(', '{', '?', '@', TRUNCATE, POSITION, VIEW, VALUES, CASE, CAST, TRIM, SUBSTRING, LEFT, RIGHT, IF, NOT, NULL, TRUE, FALSE, EXISTS, ANY, OFFSET, BEGIN, COMMIT, ROLLBACK, SAVEPOINT, BOOLEAN, CHAR, INTERVAL, DATE, TIME, TIMESTAMP, LOCALTIME, LOCALTIMESTAMP, YEAR, QUARTER, MONTH, WEEK, DAY, HOUR, MINUTE, SECOND, MICROSECOND, MAX, MIN, SUM, COUNT, AVG, CURRENT, ENABLE, DISABLE, INSTANCE, DO, DEFINER, CASCADED, LOCAL, CLOSE, OPEN, NEXT, NAME, TYPE, DATABASE, TABLES, TABLESPACE, COLUMNS, FIELDS, INDEXES, STATUS, REPLACE, MODIFY, VALUE, DUPLICATE, FIRST, LAST, AFTER, OJ, MOD, ACCOUNT, USER, ROLE, START, TRANSACTION, ROW, WITHOUT, BINARY, ESCAPE, SUBPARTITION, STORAGE, SUPER, SUBSTR, TEMPORARY, THAN, UNBOUNDED, SIGNED, UPGRADE, VALIDATION, ROLLUP, SOUNDS, UNKNOWN, OFF, ALWAYS, COMMITTED, LEVEL, NO, PASSWORD, PRIVILEGES, ACTION, ALGORITHM, AUTOCOMMIT, BTREE, CHAIN, CHARSET, CHECKSUM, CIPHER, CLIENT, COALESCE, COMMENT, COMPACT, COMPRESSED, COMPRESSION, CONNECTION, CONSISTENT, CONVERT, DATA, DISCARD, DISK, ENCRYPTION, END, ENGINE, EVENT, EXCHANGE, EXECUTE, EXTRACT, FILE, FIXED, FOLLOWING, GLOBAL, HASH, IMPORT_, LESS, MATCH, MEMORY, NONE, NOW, PARSER, PARTIAL, PARTITIONING, PERSIST, PRECEDING, PROCESS, PROXY, QUICK, REBUILD, REDUNDANT, RELOAD, REMOVE, REORGANIZE, REPAIR, REVERSE, SESSION, SHUTDOWN, SIMPLE, SLAVE, VISIBLE, INVISIBLE, ENFORCED, AGAINST, LANGUAGE, MODE, QUERY, EXTENDED, EXPANSION, VARIANCE, MAX_ROWS, MIN_ROWS, SQL_BIG_RESULT, SQL_BUFFER_RESULT, SQL_CACHE, SQL_NO_CACHE, STATS_AUTO_RECALC, STATS_PERSISTENT, STATS_SAMPLE_PAGES, ROW_FORMAT, WEIGHT_STRING, COLUMN_FORMAT, INSERT_METHOD, KEY_BLOCK_SIZE, PACK_KEYS, PERSIST_ONLY, BIT_AND, BIT_OR, BIT_XOR, GROUP_CONCAT, JSON_ARRAYAGG, JSON_OBJECTAGG, STD, STDDEV, STDDEV_POP, STDDEV_SAMP, VAR_POP, VAR_SAMP, AUTO_INCREMENT, AVG_ROW_LENGTH, DELAY_KEY_WRITE, CURRENT_TIMESTAMP, ROTATE, MASTER, BINLOG, ERROR, SCHEDULE, COMPLETION, EVERY, HOST, SOCKET, PORT, SERVER, WRAPPER, OPTIONS, OWNER, RETURNS, CONTAINS, SECURITY, INVOKER, TEMPTABLE, MERGE, UNDEFINED, DATAFILE, FILE_BLOCK_SIZE, EXTENT_SIZE, INITIAL_SIZE, AUTOEXTEND_SIZE, MAX_SIZE, NODEGROUP, WAIT, LOGFILE, UNDOFILE, UNDO_BUFFER_SIZE, REDO_BUFFER_SIZE, HANDLER, PREV, ORGANIZATION, DEFINITION, DESCRIPTION, REFERENCE, FOLLOWS, PRECEDES, IMPORT, CONCURRENT, XML, DUMPFILE, SHARE, CODE, CONTEXT, SOURCE, CHANNEL, CLONE, AGGREGATE, INSTALL, COMPONENT, UNINSTALL, RESOURCE, EXPIRE, NEVER, HISTORY, OPTIONAL, REUSE, MAX_QUERIES_PER_HOUR, MAX_UPDATES_PER_HOUR, MAX_CONNECTIONS_PER_HOUR, MAX_USER_CONNECTIONS, RETAIN, RANDOM, OLD, ISSUER, SUBJECT, CACHE, GENERAL, SLOW, USER_RESOURCES, EXPORT, RELAY, HOSTS, FLUSH, RESET, RESTART, UNIX_TIMESTAMP, LOWER, UPPER, ADDDATE, ADDTIME, DATE_ADD, DATE_SUB, DATEDIFF, DATE_FORMAT, DAYNAME, DAYOFMONTH, DAYOFWEEK, DAYOFYEAR, STR_TO_DATE, TIMEDIFF, TIMESTAMPADD, TIMESTAMPDIFF, TIME_FORMAT, TIME_TO_SEC, AES_DECRYPT, AES_ENCRYPT, FROM_BASE64, TO_BASE64, GEOMCOLLECTION, GEOMETRYCOLLECTION, LINESTRING, MULTILINESTRING, MULTIPOINT, MULTIPOLYGON, POINT, POLYGON, ST_AREA, ST_ASBINARY, ST_ASGEOJSON, ST_ASTEXT, ST_ASWKB, ST_ASWKT, ST_BUFFER, ST_BUFFER_STRATEGY, ST_CENTROID, ST_CONTAINS, ST_CONVEXHULL, ST_CROSSES, ST_DIFFERENCE, ST_DIMENSION, ST_DISJOINT, ST_DISTANCE, ST_DISTANCE_SPHERE, ST_ENDPOINT, ST_ENVELOPE, ST_EQUALS, ST_EXTERIORRING, ST_GEOHASH, ST_GEOMCOLLFROMTEXT, ST_GEOMCOLLFROMTXT, ST_GEOMCOLLFROMWKB, ST_GEOMETRYCOLLECTIONFROMTEXT, ST_GEOMETRYCOLLECTIONFROMWKB, ST_GEOMETRYFROMTEXT, ST_GEOMETRYFROMWKB, ST_GEOMETRYN, ST_GEOMETRYTYPE, ST_GEOMFROMGEOJSON, ST_GEOMFROMTEXT, ST_GEOMFROMWKB, ST_INTERIORRINGN, ST_INTERSECTION, ST_INTERSECTS, ST_ISCLOSED, ST_ISEMPTY, ST_ISSIMPLE, ST_ISVALID, ST_LATFROMGEOHASH, ST_LATITUDE, ST_LENGTH, ST_LINEFROMTEXT, ST_LINEFROMWKB, ST_LINESTRINGFROMTEXT, ST_LINESTRINGFROMWKB, ST_LONGFROMGEOHASH, ST_LONGITUDE, ST_MAKEENVELOPE, ST_MLINEFROMTEXT, ST_MLINEFROMWKB, ST_MULTILINESTRINGFROMTEXT, ST_MULTILINESTRINGFROMWKB, ST_MPOINTFROMTEXT, ST_MPOINTFROMWKB, ST_MULTIPOINTFROMTEXT, ST_MULTIPOINTFROMWKB, ST_MPOLYFROMTEXT, ST_MPOLYFROMWKB, ST_MULTIPOLYGONFROMTEXT, ST_MULTIPOLYGONFROMWKB, ST_NUMGEOMETRIES, ST_NUMINTERIORRING, ST_NUMINTERIORRINGS, ST_NUMPOINTS, ST_OVERLAPS, ST_POINTFROMGEOHASH, ST_POINTFROMTEXT, ST_POINTFROMWKB, ST_POINTN, ST_POLYFROMTEXT, ST_POLYFROMWKB, ST_POLYGONFROMTEXT, ST_POLYGONFROMWKB, ST_SIMPLIFY, ST_SRID, ST_STARTPOINT, ST_SWAPXY, ST_SYMDIFFERENCE, ST_TOUCHES, ST_TRANSFORM, ST_UNION, ST_VALIDATE, ST_WITHIN, ST_X, ST_Y, IO_THREAD, SQL_THREAD, SQL_BEFORE_GTIDS, SQL_AFTER_GTIDS, MASTER_LOG_FILE, MASTER_LOG_POS, RELAY_LOG_FILE, RELAY_LOG_POS, SQL_AFTER_MTS_GAPS, UNTIL, DEFAULT_AUTH, PLUGIN_DIR, STOP, IDENTIFIER_, STRING_, NUMBER_, HEX_DIGIT_, BIT_NUM_} Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@513e39da] 2020-08-28 17:17:52.020 WARN 34358 --- [l-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=1m20s94ms). 2020-08-28 17:17:52.220 ERROR 34358 --- [nio-8080-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: java.lang.NullPointerException ### The error may exist in com/javawency/shardingjdbc/dao/ConfigMapper.java (best guess) ### The error may involve defaultParameterMap ### The error occurred while setting parameters ### SQL: SELECT id,key,value FROM t_config ### Cause: java.lang.NullPointerException] with root cause java.lang.NullPointerException: null at org.antlr.v4.runtime.tree.AbstractParseTreeVisitor.visit(AbstractParseTreeVisitor.java:18) ~[antlr4-runtime-4.7.2.jar:4.7.2] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.createProjection(MySQLDMLVisitor.java:446) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.visitProjection(MySQLDMLVisitor.java:434) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.visitProjection(MySQLDMLVisitor.java:127) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.autogen.MySQLStatementParser$ProjectionContext.accept(MySQLStatementParser.java:5370) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.antlr.v4.runtime.tree.AbstractParseTreeVisitor.visit(AbstractParseTreeVisitor.java:18) ~[antlr4-runtime-4.7.2.jar:4.7.2] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.visitProjections(MySQLDMLVisitor.java:410) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.visitProjections(MySQLDMLVisitor.java:127) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.autogen.MySQLStatementParser$ProjectionsContext.accept(MySQLStatementParser.java:4865) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.antlr.v4.runtime.tree.AbstractParseTreeVisitor.visit(AbstractParseTreeVisitor.java:18) ~[antlr4-runtime-4.7.2.jar:4.7.2] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.visitSelectClause(MySQLDMLVisitor.java:329) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.visitSelectClause(MySQLDMLVisitor.java:127) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.autogen.MySQLStatementParser$SelectClauseContext.accept(MySQLStatementParser.java:4551) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.antlr.v4.runtime.tree.AbstractParseTreeVisitor.visit(AbstractParseTreeVisitor.java:18) ~[antlr4-runtime-4.7.2.jar:4.7.2] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.visitUnionClause(MySQLDMLVisitor.java:322) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.visitUnionClause(MySQLDMLVisitor.java:127) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.autogen.MySQLStatementParser$UnionClauseContext.accept(MySQLStatementParser.java:4446) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.antlr.v4.runtime.tree.AbstractParseTreeVisitor.visit(AbstractParseTreeVisitor.java:18) ~[antlr4-runtime-4.7.2.jar:4.7.2] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.visitSelect(MySQLDMLVisitor.java:314) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.visitSelect(MySQLDMLVisitor.java:127) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.autogen.MySQLStatementParser$SelectContext.accept(MySQLStatementParser.java:3098) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.antlr.v4.runtime.tree.AbstractParseTreeVisitor.visit(AbstractParseTreeVisitor.java:18) ~[antlr4-runtime-4.7.2.jar:4.7.2] at org.apache.shardingsphere.sql.parser.SQLParserEngine.parse0(SQLParserEngine.java:80) ~[shardingsphere-sql-parser-engine-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.SQLParserEngine.parse(SQLParserEngine.java:61) ~[shardingsphere-sql-parser-engine-4.1.1.jar:4.1.1] at org.apache.shardingsphere.underlying.route.DataNodeRouter.createRouteContext(DataNodeRouter.java:97) ~[shardingsphere-route-4.1.1.jar:4.1.1] at org.apache.shardingsphere.underlying.route.DataNodeRouter.executeRoute(DataNodeRouter.java:89) ~[shardingsphere-route-4.1.1.jar:4.1.1] at org.apache.shardingsphere.underlying.route.DataNodeRouter.route(DataNodeRouter.java:76) ~[shardingsphere-route-4.1.1.jar:4.1.1] at org.apache.shardingsphere.underlying.pluggble.prepare.PreparedQueryPrepareEngine.route(PreparedQueryPrepareEngine.java:54) ~[shardingsphere-pluggable-4.1.1.jar:4.1.1] at org.apache.shardingsphere.underlying.pluggble.prepare.BasePrepareEngine.executeRoute(BasePrepareEngine.java:96) ~[shardingsphere-pluggable-4.1.1.jar:4.1.1] at org.apache.shardingsphere.underlying.pluggble.prepare.BasePrepareEngine.prepare(BasePrepareEngine.java:83) ~[shardingsphere-pluggable-4.1.1.jar:4.1.1] at org.apache.shardingsphere.shardingjdbc.jdbc.core.statement.ShardingPreparedStatement.prepare(ShardingPreparedStatement.java:183) ~[sharding-jdbc-core-4.1.1.jar:4.1.1] at org.apache.shardingsphere.shardingjdbc.jdbc.core.statement.ShardingPreparedStatement.execute(ShardingPreparedStatement.java:143) ~[sharding-jdbc-core-4.1.1.jar:4.1.1] at sun.reflect.GeneratedMethodAccessor106.invoke(Unknown Source) ~[na:na] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:45005) ~[na:1.8.0_201] at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_201] at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) ~[mybatis-3.5.4.jar:3.5.4] at com.sun.proxy.$Proxy95.execute(Unknown Source) ~[na:na] at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) ~[mybatis-3.5.4.jar:3.5.4] at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) ~[mybatis-3.5.4.jar:3.5.4] at sun.reflect.GeneratedMethodAccessor105.invoke(Unknown Source) ~[na:na] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:45005) ~[na:1.8.0_201] at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_201] at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:63) ~[mybatis-3.5.4.jar:3.5.4] at com.sun.proxy.$Proxy94.query(Unknown Source) ~[na:na] at com.baomidou.mybatisplus.core.executor.MybatisSimpleExecutor.doQuery(MybatisSimpleExecutor.java:67) ~[mybatis-plus-core-3.3.2.jar:3.3.2] at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324) ~[mybatis-3.5.4.jar:3.5.4] at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) ~[mybatis-3.5.4.jar:3.5.4] at com.baomidou.mybatisplus.core.executor.MybatisCachingExecutor.query(MybatisCachingExecutor.java:163) ~[mybatis-plus-core-3.3.2.jar:3.3.2] at com.baomidou.mybatisplus.core.executor.MybatisCachingExecutor.query(MybatisCachingExecutor.java:90) ~[mybatis-plus-core-3.3.2.jar:3.3.2] at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147) ~[mybatis-3.5.4.jar:3.5.4] at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) ~[mybatis-3.5.4.jar:3.5.4] at sun.reflect.GeneratedMethodAccessor92.invoke(Unknown Source) ~[na:na] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:45005) ~[na:1.8.0_201] at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_201] at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:426) ~[mybatis-spring-2.0.4.jar:2.0.4] at com.sun.proxy.$Proxy67.selectList(Unknown Source) ~[na:na] at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:223) ~[mybatis-spring-2.0.4.jar:2.0.4] at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:177) ~[mybatis-plus-core-3.3.2.jar:3.3.2] at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:78) ~[mybatis-plus-core-3.3.2.jar:3.3.2] at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:96) ~[mybatis-plus-core-3.3.2.jar:3.3.2] at com.sun.proxy.$Proxy77.selectList(Unknown Source) ~[na:na] at com.javawency.shardingjdbc.controller.OrderController.cartesianProduct(OrderController.java:100) ~[classes/:na] at com.javawency.shardingjdbc.controller.OrderController$$FastClassByCGLIB$$9f5d0600.invoke(&lt;generated&gt;) ~[classes/:na] at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) ~[spring-core-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:684) ~[spring-aop-5.1.5.RELEASE.jar:5.1.5.RELEASE] at com.javawency.shardingjdbc.controller.OrderController$$EnhancerBySpringCGLIB$$150e7572.cartesianProduct(&lt;generated&gt;) ~[classes/:na] at sun.reflect.GeneratedMethodAccessor86.invoke(Unknown Source) ~[na:na] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:45005) ~[na:1.8.0_201] at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_201] at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:189) ~[spring-web-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) ~[spring-web-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:102) ~[spring-webmvc-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:800) ~[spring-webmvc-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1038) ~[spring-webmvc-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) ~[spring-webmvc-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) ~[spring-webmvc-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:908) ~[spring-webmvc-5.1.5.RELEASE.jar:5.1.5.RELEASE] at javax.servlet.http.HttpServlet.service(HttpServlet.java:660) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) ~[spring-webmvc-5.1.5.RELEASE.jar:5.1.5.RELEASE] at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.16.jar:9.0.16] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) ~[spring-web-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) ~[spring-web-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) ~[spring-web-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) ~[spring-web-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.StandardContextValve.__invoke(StandardContextValve.java:96) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:41002) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:834) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1415) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) [tomcat-embed-core-9.0.16.jar:9.0.16] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) [na:1.8.0_201] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) [na:1.8.0_201] at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) [tomcat-embed-core-9.0.16.jar:9.0.16] at java.lang.Thread.run(Thread.java:748) [na:1.8.0_201] "><pre class="notranslate"><code class="notranslate">SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@513e39da] was not registered for synchronization because synchronization is not active JDBC Connection [org.apache.shardingsphere.shardingjdbc.jdbc.core.connection.ShardingConnection@7cae023a] will not be managed by Spring ==&gt; Preparing: SELECT id,key,value FROM t_config ==&gt; Parameters: line 1:11 no viable alternative at input 'key' line 1:11 mismatched input 'key' expecting {'!', '~', '+', '-', '.', '(', '{', '?', '@', TRUNCATE, POSITION, VIEW, VALUES, CASE, CAST, TRIM, SUBSTRING, LEFT, RIGHT, IF, NOT, NULL, TRUE, FALSE, EXISTS, ANY, OFFSET, BEGIN, COMMIT, ROLLBACK, SAVEPOINT, BOOLEAN, CHAR, INTERVAL, DATE, TIME, TIMESTAMP, LOCALTIME, LOCALTIMESTAMP, YEAR, QUARTER, MONTH, WEEK, DAY, HOUR, MINUTE, SECOND, MICROSECOND, MAX, MIN, SUM, COUNT, AVG, CURRENT, ENABLE, DISABLE, INSTANCE, DO, DEFINER, CASCADED, LOCAL, CLOSE, OPEN, NEXT, NAME, TYPE, DATABASE, TABLES, TABLESPACE, COLUMNS, FIELDS, INDEXES, STATUS, REPLACE, MODIFY, VALUE, DUPLICATE, FIRST, LAST, AFTER, OJ, MOD, ACCOUNT, USER, ROLE, START, TRANSACTION, ROW, WITHOUT, BINARY, ESCAPE, SUBPARTITION, STORAGE, SUPER, SUBSTR, TEMPORARY, THAN, UNBOUNDED, SIGNED, UPGRADE, VALIDATION, ROLLUP, SOUNDS, UNKNOWN, OFF, ALWAYS, COMMITTED, LEVEL, NO, PASSWORD, PRIVILEGES, ACTION, ALGORITHM, AUTOCOMMIT, BTREE, CHAIN, CHARSET, CHECKSUM, CIPHER, CLIENT, COALESCE, COMMENT, COMPACT, COMPRESSED, COMPRESSION, CONNECTION, CONSISTENT, CONVERT, DATA, DISCARD, DISK, ENCRYPTION, END, ENGINE, EVENT, EXCHANGE, EXECUTE, EXTRACT, FILE, FIXED, FOLLOWING, GLOBAL, HASH, IMPORT_, LESS, MATCH, MEMORY, NONE, NOW, PARSER, PARTIAL, PARTITIONING, PERSIST, PRECEDING, PROCESS, PROXY, QUICK, REBUILD, REDUNDANT, RELOAD, REMOVE, REORGANIZE, REPAIR, REVERSE, SESSION, SHUTDOWN, SIMPLE, SLAVE, VISIBLE, INVISIBLE, ENFORCED, AGAINST, LANGUAGE, MODE, QUERY, EXTENDED, EXPANSION, VARIANCE, MAX_ROWS, MIN_ROWS, SQL_BIG_RESULT, SQL_BUFFER_RESULT, SQL_CACHE, SQL_NO_CACHE, STATS_AUTO_RECALC, STATS_PERSISTENT, STATS_SAMPLE_PAGES, ROW_FORMAT, WEIGHT_STRING, COLUMN_FORMAT, INSERT_METHOD, KEY_BLOCK_SIZE, PACK_KEYS, PERSIST_ONLY, BIT_AND, BIT_OR, BIT_XOR, GROUP_CONCAT, JSON_ARRAYAGG, JSON_OBJECTAGG, STD, STDDEV, STDDEV_POP, STDDEV_SAMP, VAR_POP, VAR_SAMP, AUTO_INCREMENT, AVG_ROW_LENGTH, DELAY_KEY_WRITE, CURRENT_TIMESTAMP, ROTATE, MASTER, BINLOG, ERROR, SCHEDULE, COMPLETION, EVERY, HOST, SOCKET, PORT, SERVER, WRAPPER, OPTIONS, OWNER, RETURNS, CONTAINS, SECURITY, INVOKER, TEMPTABLE, MERGE, UNDEFINED, DATAFILE, FILE_BLOCK_SIZE, EXTENT_SIZE, INITIAL_SIZE, AUTOEXTEND_SIZE, MAX_SIZE, NODEGROUP, WAIT, LOGFILE, UNDOFILE, UNDO_BUFFER_SIZE, REDO_BUFFER_SIZE, HANDLER, PREV, ORGANIZATION, DEFINITION, DESCRIPTION, REFERENCE, FOLLOWS, PRECEDES, IMPORT, CONCURRENT, XML, DUMPFILE, SHARE, CODE, CONTEXT, SOURCE, CHANNEL, CLONE, AGGREGATE, INSTALL, COMPONENT, UNINSTALL, RESOURCE, EXPIRE, NEVER, HISTORY, OPTIONAL, REUSE, MAX_QUERIES_PER_HOUR, MAX_UPDATES_PER_HOUR, MAX_CONNECTIONS_PER_HOUR, MAX_USER_CONNECTIONS, RETAIN, RANDOM, OLD, ISSUER, SUBJECT, CACHE, GENERAL, SLOW, USER_RESOURCES, EXPORT, RELAY, HOSTS, FLUSH, RESET, RESTART, UNIX_TIMESTAMP, LOWER, UPPER, ADDDATE, ADDTIME, DATE_ADD, DATE_SUB, DATEDIFF, DATE_FORMAT, DAYNAME, DAYOFMONTH, DAYOFWEEK, DAYOFYEAR, STR_TO_DATE, TIMEDIFF, TIMESTAMPADD, TIMESTAMPDIFF, TIME_FORMAT, TIME_TO_SEC, AES_DECRYPT, AES_ENCRYPT, FROM_BASE64, TO_BASE64, GEOMCOLLECTION, GEOMETRYCOLLECTION, LINESTRING, MULTILINESTRING, MULTIPOINT, MULTIPOLYGON, POINT, POLYGON, ST_AREA, ST_ASBINARY, ST_ASGEOJSON, ST_ASTEXT, ST_ASWKB, ST_ASWKT, ST_BUFFER, ST_BUFFER_STRATEGY, ST_CENTROID, ST_CONTAINS, ST_CONVEXHULL, ST_CROSSES, ST_DIFFERENCE, ST_DIMENSION, ST_DISJOINT, ST_DISTANCE, ST_DISTANCE_SPHERE, ST_ENDPOINT, ST_ENVELOPE, ST_EQUALS, ST_EXTERIORRING, ST_GEOHASH, ST_GEOMCOLLFROMTEXT, ST_GEOMCOLLFROMTXT, ST_GEOMCOLLFROMWKB, ST_GEOMETRYCOLLECTIONFROMTEXT, ST_GEOMETRYCOLLECTIONFROMWKB, ST_GEOMETRYFROMTEXT, ST_GEOMETRYFROMWKB, ST_GEOMETRYN, ST_GEOMETRYTYPE, ST_GEOMFROMGEOJSON, ST_GEOMFROMTEXT, ST_GEOMFROMWKB, ST_INTERIORRINGN, ST_INTERSECTION, ST_INTERSECTS, ST_ISCLOSED, ST_ISEMPTY, ST_ISSIMPLE, ST_ISVALID, ST_LATFROMGEOHASH, ST_LATITUDE, ST_LENGTH, ST_LINEFROMTEXT, ST_LINEFROMWKB, ST_LINESTRINGFROMTEXT, ST_LINESTRINGFROMWKB, ST_LONGFROMGEOHASH, ST_LONGITUDE, ST_MAKEENVELOPE, ST_MLINEFROMTEXT, ST_MLINEFROMWKB, ST_MULTILINESTRINGFROMTEXT, ST_MULTILINESTRINGFROMWKB, ST_MPOINTFROMTEXT, ST_MPOINTFROMWKB, ST_MULTIPOINTFROMTEXT, ST_MULTIPOINTFROMWKB, ST_MPOLYFROMTEXT, ST_MPOLYFROMWKB, ST_MULTIPOLYGONFROMTEXT, ST_MULTIPOLYGONFROMWKB, ST_NUMGEOMETRIES, ST_NUMINTERIORRING, ST_NUMINTERIORRINGS, ST_NUMPOINTS, ST_OVERLAPS, ST_POINTFROMGEOHASH, ST_POINTFROMTEXT, ST_POINTFROMWKB, ST_POINTN, ST_POLYFROMTEXT, ST_POLYFROMWKB, ST_POLYGONFROMTEXT, ST_POLYGONFROMWKB, ST_SIMPLIFY, ST_SRID, ST_STARTPOINT, ST_SWAPXY, ST_SYMDIFFERENCE, ST_TOUCHES, ST_TRANSFORM, ST_UNION, ST_VALIDATE, ST_WITHIN, ST_X, ST_Y, IO_THREAD, SQL_THREAD, SQL_BEFORE_GTIDS, SQL_AFTER_GTIDS, MASTER_LOG_FILE, MASTER_LOG_POS, RELAY_LOG_FILE, RELAY_LOG_POS, SQL_AFTER_MTS_GAPS, UNTIL, DEFAULT_AUTH, PLUGIN_DIR, STOP, IDENTIFIER_, STRING_, NUMBER_, HEX_DIGIT_, BIT_NUM_} Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@513e39da] 2020-08-28 17:17:52.020 WARN 34358 --- [l-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=1m20s94ms). 2020-08-28 17:17:52.220 ERROR 34358 --- [nio-8080-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: java.lang.NullPointerException ### The error may exist in com/javawency/shardingjdbc/dao/ConfigMapper.java (best guess) ### The error may involve defaultParameterMap ### The error occurred while setting parameters ### SQL: SELECT id,key,value FROM t_config ### Cause: java.lang.NullPointerException] with root cause java.lang.NullPointerException: null at org.antlr.v4.runtime.tree.AbstractParseTreeVisitor.visit(AbstractParseTreeVisitor.java:18) ~[antlr4-runtime-4.7.2.jar:4.7.2] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.createProjection(MySQLDMLVisitor.java:446) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.visitProjection(MySQLDMLVisitor.java:434) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.visitProjection(MySQLDMLVisitor.java:127) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.autogen.MySQLStatementParser$ProjectionContext.accept(MySQLStatementParser.java:5370) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.antlr.v4.runtime.tree.AbstractParseTreeVisitor.visit(AbstractParseTreeVisitor.java:18) ~[antlr4-runtime-4.7.2.jar:4.7.2] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.visitProjections(MySQLDMLVisitor.java:410) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.visitProjections(MySQLDMLVisitor.java:127) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.autogen.MySQLStatementParser$ProjectionsContext.accept(MySQLStatementParser.java:4865) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.antlr.v4.runtime.tree.AbstractParseTreeVisitor.visit(AbstractParseTreeVisitor.java:18) ~[antlr4-runtime-4.7.2.jar:4.7.2] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.visitSelectClause(MySQLDMLVisitor.java:329) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.visitSelectClause(MySQLDMLVisitor.java:127) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.autogen.MySQLStatementParser$SelectClauseContext.accept(MySQLStatementParser.java:4551) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.antlr.v4.runtime.tree.AbstractParseTreeVisitor.visit(AbstractParseTreeVisitor.java:18) ~[antlr4-runtime-4.7.2.jar:4.7.2] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.visitUnionClause(MySQLDMLVisitor.java:322) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.visitUnionClause(MySQLDMLVisitor.java:127) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.autogen.MySQLStatementParser$UnionClauseContext.accept(MySQLStatementParser.java:4446) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.antlr.v4.runtime.tree.AbstractParseTreeVisitor.visit(AbstractParseTreeVisitor.java:18) ~[antlr4-runtime-4.7.2.jar:4.7.2] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.visitSelect(MySQLDMLVisitor.java:314) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.mysql.visitor.impl.MySQLDMLVisitor.visitSelect(MySQLDMLVisitor.java:127) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.autogen.MySQLStatementParser$SelectContext.accept(MySQLStatementParser.java:3098) ~[shardingsphere-sql-parser-mysql-4.1.1.jar:4.1.1] at org.antlr.v4.runtime.tree.AbstractParseTreeVisitor.visit(AbstractParseTreeVisitor.java:18) ~[antlr4-runtime-4.7.2.jar:4.7.2] at org.apache.shardingsphere.sql.parser.SQLParserEngine.parse0(SQLParserEngine.java:80) ~[shardingsphere-sql-parser-engine-4.1.1.jar:4.1.1] at org.apache.shardingsphere.sql.parser.SQLParserEngine.parse(SQLParserEngine.java:61) ~[shardingsphere-sql-parser-engine-4.1.1.jar:4.1.1] at org.apache.shardingsphere.underlying.route.DataNodeRouter.createRouteContext(DataNodeRouter.java:97) ~[shardingsphere-route-4.1.1.jar:4.1.1] at org.apache.shardingsphere.underlying.route.DataNodeRouter.executeRoute(DataNodeRouter.java:89) ~[shardingsphere-route-4.1.1.jar:4.1.1] at org.apache.shardingsphere.underlying.route.DataNodeRouter.route(DataNodeRouter.java:76) ~[shardingsphere-route-4.1.1.jar:4.1.1] at org.apache.shardingsphere.underlying.pluggble.prepare.PreparedQueryPrepareEngine.route(PreparedQueryPrepareEngine.java:54) ~[shardingsphere-pluggable-4.1.1.jar:4.1.1] at org.apache.shardingsphere.underlying.pluggble.prepare.BasePrepareEngine.executeRoute(BasePrepareEngine.java:96) ~[shardingsphere-pluggable-4.1.1.jar:4.1.1] at org.apache.shardingsphere.underlying.pluggble.prepare.BasePrepareEngine.prepare(BasePrepareEngine.java:83) ~[shardingsphere-pluggable-4.1.1.jar:4.1.1] at org.apache.shardingsphere.shardingjdbc.jdbc.core.statement.ShardingPreparedStatement.prepare(ShardingPreparedStatement.java:183) ~[sharding-jdbc-core-4.1.1.jar:4.1.1] at org.apache.shardingsphere.shardingjdbc.jdbc.core.statement.ShardingPreparedStatement.execute(ShardingPreparedStatement.java:143) ~[sharding-jdbc-core-4.1.1.jar:4.1.1] at sun.reflect.GeneratedMethodAccessor106.invoke(Unknown Source) ~[na:na] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:45005) ~[na:1.8.0_201] at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_201] at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59) ~[mybatis-3.5.4.jar:3.5.4] at com.sun.proxy.$Proxy95.execute(Unknown Source) ~[na:na] at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:64) ~[mybatis-3.5.4.jar:3.5.4] at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79) ~[mybatis-3.5.4.jar:3.5.4] at sun.reflect.GeneratedMethodAccessor105.invoke(Unknown Source) ~[na:na] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:45005) ~[na:1.8.0_201] at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_201] at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:63) ~[mybatis-3.5.4.jar:3.5.4] at com.sun.proxy.$Proxy94.query(Unknown Source) ~[na:na] at com.baomidou.mybatisplus.core.executor.MybatisSimpleExecutor.doQuery(MybatisSimpleExecutor.java:67) ~[mybatis-plus-core-3.3.2.jar:3.3.2] at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324) ~[mybatis-3.5.4.jar:3.5.4] at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156) ~[mybatis-3.5.4.jar:3.5.4] at com.baomidou.mybatisplus.core.executor.MybatisCachingExecutor.query(MybatisCachingExecutor.java:163) ~[mybatis-plus-core-3.3.2.jar:3.3.2] at com.baomidou.mybatisplus.core.executor.MybatisCachingExecutor.query(MybatisCachingExecutor.java:90) ~[mybatis-plus-core-3.3.2.jar:3.3.2] at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147) ~[mybatis-3.5.4.jar:3.5.4] at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140) ~[mybatis-3.5.4.jar:3.5.4] at sun.reflect.GeneratedMethodAccessor92.invoke(Unknown Source) ~[na:na] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:45005) ~[na:1.8.0_201] at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_201] at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:426) ~[mybatis-spring-2.0.4.jar:2.0.4] at com.sun.proxy.$Proxy67.selectList(Unknown Source) ~[na:na] at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:223) ~[mybatis-spring-2.0.4.jar:2.0.4] at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:177) ~[mybatis-plus-core-3.3.2.jar:3.3.2] at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:78) ~[mybatis-plus-core-3.3.2.jar:3.3.2] at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:96) ~[mybatis-plus-core-3.3.2.jar:3.3.2] at com.sun.proxy.$Proxy77.selectList(Unknown Source) ~[na:na] at com.javawency.shardingjdbc.controller.OrderController.cartesianProduct(OrderController.java:100) ~[classes/:na] at com.javawency.shardingjdbc.controller.OrderController$$FastClassByCGLIB$$9f5d0600.invoke(&lt;generated&gt;) ~[classes/:na] at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) ~[spring-core-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:684) ~[spring-aop-5.1.5.RELEASE.jar:5.1.5.RELEASE] at com.javawency.shardingjdbc.controller.OrderController$$EnhancerBySpringCGLIB$$150e7572.cartesianProduct(&lt;generated&gt;) ~[classes/:na] at sun.reflect.GeneratedMethodAccessor86.invoke(Unknown Source) ~[na:na] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:45005) ~[na:1.8.0_201] at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_201] at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:189) ~[spring-web-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) ~[spring-web-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:102) ~[spring-webmvc-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:800) ~[spring-webmvc-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1038) ~[spring-webmvc-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) ~[spring-webmvc-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) ~[spring-webmvc-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:908) ~[spring-webmvc-5.1.5.RELEASE.jar:5.1.5.RELEASE] at javax.servlet.http.HttpServlet.service(HttpServlet.java:660) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) ~[spring-webmvc-5.1.5.RELEASE.jar:5.1.5.RELEASE] at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.16.jar:9.0.16] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) ~[spring-web-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) ~[spring-web-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) ~[spring-web-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) ~[spring-web-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-5.1.5.RELEASE.jar:5.1.5.RELEASE] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) ~[tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.StandardContextValve.__invoke(StandardContextValve.java:96) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:41002) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:834) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1415) [tomcat-embed-core-9.0.16.jar:9.0.16] at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) [tomcat-embed-core-9.0.16.jar:9.0.16] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) [na:1.8.0_201] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) [na:1.8.0_201] at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) [tomcat-embed-core-9.0.16.jar:9.0.16] at java.lang.Thread.run(Thread.java:748) [na:1.8.0_201] </code></pre></div> <h3 dir="auto">Example codes for reproduce this issue (such as a github link).</h3> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/21151964/91543071-f11bae00-e950-11ea-9f0f-5af0fbb5edd6.png"><img src="https://user-images.githubusercontent.com/21151964/91543071-f11bae00-e950-11ea-9f0f-5af0fbb5edd6.png" alt="image" style="max-width: 100%;"></a></p>
0
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=colin.sampaleanu" rel="nofollow">Colin Sampaleanu</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-2285?redirect=false" rel="nofollow">SPR-2285</a></strong> and commented</p> <p dir="auto">The bean factory and application context contract clearly states (as per our docs) that within one definition xml file a bean id must be unique.</p> <p dir="auto">This is enforced by the XML parser when using the "id" attribute exclusively because this is flagged as an XML IDREF attribute. However, by combining the use of the id attribute and the name attribute, or just using the name attribute exclusively, it is possible to have 2 or more bean definitions in the same xml file with the same id. This is silently accepted with the last bean definition winning out.</p> <p dir="auto">The bean definition reader must basically track ids, however they are supplied, and enforce the same semantics from usage of the "name" attribute as from usage of the "id" attribute.</p> <p dir="auto">A related question is what should happen in the case of &lt;import&gt;? An argument could be made either way here.</p> <hr> <p dir="auto"><strong>Affects:</strong> 2.0 RC2</p> <p dir="auto"><strong>Attachments:</strong></p> <ul dir="auto"> <li><a href="https://jira.spring.io/secure/attachment/11870/spring2285_testcase_and_patch.zip" rel="nofollow">spring2285_testcase_and_patch.zip</a> (<em>2.67 kB</em>)</li> </ul>
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=cbeams" rel="nofollow">Chris Beams</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-7888?redirect=false" rel="nofollow">SPR-7888</a></strong> and commented</p> <p dir="auto">Equivalent to context:spring-configured/</p> <p dir="auto">Because <code class="notranslate">@Configuration</code> classes don't produce bean definitions in quite the same way that XML configuration files do, an annotation-based <code class="notranslate">@SpringConfigured</code> annotation must work differently than context:spring-configured/. Consider the following approach:</p> <p dir="auto"><code class="notranslate">@Configurationpublic</code> class SpringConfiguredBeans {</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="@SpringConfigured public void someEntity(MyEntity entity) { entity.setRepository(myRepository()); } @Bean public MyRepository myRepository() { return new MyRepository(dataSource()); } // ...}"><pre class="notranslate"><code class="notranslate">@SpringConfigured public void someEntity(MyEntity entity) { entity.setRepository(myRepository()); } @Bean public MyRepository myRepository() { return new MyRepository(dataSource()); } // ...} </code></pre></div> <hr> <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="398111214" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12790" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12790/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12790">#12790</a> SpringConfiguredBeanDefinitionParser (aop:spring-configured) (<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="398111223" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12792" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12792/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12792">#12792</a> SpringConfiguredBeanDefinitionParser (context:spring-configured) (<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="398106528" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12078" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12078/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12078">#12078</a> Support Java-Based Application Configuration</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/22e37aac444812eab6982a9f658d70656dd6a729/hovercard" href="https://github.com/spring-projects/spring-framework/commit/22e37aac444812eab6982a9f658d70656dd6a729"><tt>22e37aa</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/d35620511e8304421929e89ed4d13d82d5f40219/hovercard" href="https://github.com/spring-projects/spring-framework/commit/d35620511e8304421929e89ed4d13d82d5f40219"><tt>d356205</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/4318ccd9d519525a674a61ddf80b11f8bec29426/hovercard" href="https://github.com/spring-projects/spring-framework/commit/4318ccd9d519525a674a61ddf80b11f8bec29426"><tt>4318ccd</tt></a></p> <p dir="auto">1 votes, 2 watchers</p>
0
<p dir="auto">Currently <code class="notranslate">ControllerResolver</code> is responsible for determining the parameters to pass to controller actions. It does so via <code class="notranslate">Reflection</code> matching request attribute names to action parameter names. For parameters using the <code class="notranslate">Request</code> type hint it however knows to inject the <code class="notranslate">Request</code> instance.</p> <p dir="auto">Now in FOSRestBundle we have a need to inject parameters by type hint. Which leads to having to do the same work again. See for example:<br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="31482560" data-permission-text="Title is private" data-url="https://github.com/FriendsOfSymfony/FOSRestBundle/issues/745" data-hovercard-type="pull_request" data-hovercard-url="/FriendsOfSymfony/FOSRestBundle/pull/745/hovercard" href="https://github.com/FriendsOfSymfony/FOSRestBundle/pull/745">FriendsOfSymfony/FOSRestBundle#745</a></p> <p dir="auto">So it might make sense to provide some way to tell the <code class="notranslate">ControllerResolver</code> for whatever other type hints to look for and what attributes to map them to.</p>
<p dir="auto">In the <a href="https://github.com/symfony/workflow">https://github.com/symfony/workflow</a> repository, the link to the documentation is not working.<br> The current link is <a href="https://symfony.com/doc/current/components/workflow/introduction.html" rel="nofollow">https://symfony.com/doc/current/components/workflow/introduction.html</a> which returns a 404.</p>
0
<h3 dir="auto">System info</h3> <ul dir="auto"> <li>Playwright Version: [v1.34.3]</li> <li>Operating System: [Ubuntu 20]</li> <li>Browser: [Firefox]</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"> I provided exact source code that allows reproducing the issue locally.</li> </ul> <p dir="auto"><strong>Link to the GitHub repository with the repro</strong></p> <p dir="auto">or</p> <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'; /** * Read environment variables from file. * https://github.com/motdotla/dotenv */ // require('dotenv').config(); /** * See https://playwright.dev/docs/test-configuration. */ export default defineConfig({ testDir: './tests', /* Maximum time one test can run for. */ timeout: 30 * 1000, expect: { /** * Maximum time expect() should wait for the condition to be met. * For example in `await expect(locator).toHaveText();` */ timeout: 15000 }, /* Run tests in files in parallel */ fullyParallel: true, /* Fail the build on CI if you accidentally left test.only in the source code. */ forbidOnly: !!process.env.CI, /* Retry on CI only */ retries: process.env.CI ? 2 : 0, /* Opt out of parallel tests on CI. */ //workers: process.env.CI ? 1 : undefined, workers: 8, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ reporter: 'html', /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ use: { /* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */ actionTimeout: 0, // video: 'on', // launchOptions:{ // slowMo: 1500 // }, /* Base URL to use in actions like `await page.goto('/')`. */ baseURL: process.env.BASE_URL, //viewport: null, /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ trace: 'on-first-retry', headless:true, screenshot:'on' }, /* Configure projects for major browsers */ projects: [ // { // name: 'chromium', // use: { ...devices['Desktop Chrome'], // viewport:{width:1920,height:1080} // //viewport:{width:1368,height:768} // }, // }, { name: 'firefox', use: { ...devices['Desktop Firefox'], viewport:{width:1920,height:1080} }, }, // { // name: 'webkit', // use: { ...devices['Desktop Safari'], // viewport:{width:1920,height:1080} // }, // }, /* Test against mobile viewports. */ //{ // name: 'Mobile Chrome', // use: { ...devices['Pixel 5'] }, //}, //{ // name: 'Mobile Safari', // use: { ...devices['iPhone 12'] }, //}, /* Test against branded browsers. */ // { // name: 'Microsoft Edge', // use: { channel: 'msedge' }, // }, // { // name: 'Google Chrome', // use: { channel: 'chrome' }, // }, ], /* Folder for test artifacts such as screenshots, videos, traces, etc. */ // outputDir: 'test-results/', /* Run your local dev server before starting the tests */ // webServer: { // command: 'npm run start', // port: 3000, // }, }); "><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-c">/**</span> <span class="pl-c"> * Read environment variables from file.</span> <span class="pl-c"> * https://github.com/motdotla/dotenv</span> <span class="pl-c"> */</span> <span class="pl-c">// require('dotenv').config();</span> <span class="pl-c">/**</span> <span class="pl-c"> * See https://playwright.dev/docs/test-configuration.</span> <span class="pl-c"> */</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">testDir</span>: <span class="pl-s">'./tests'</span><span class="pl-kos">,</span> <span class="pl-c">/* Maximum time one test can run for. */</span> <span class="pl-c1">timeout</span>: <span class="pl-c1">30</span> <span class="pl-c1">*</span> <span class="pl-c1">1000</span><span class="pl-kos">,</span> <span class="pl-c1">expect</span>: <span class="pl-kos">{</span> <span class="pl-c">/**</span> <span class="pl-c"> * Maximum time expect() should wait for the condition to be met.</span> <span class="pl-c"> * For example in `await expect(locator).toHaveText();`</span> <span class="pl-c"> */</span> <span class="pl-c1">timeout</span>: <span class="pl-c1">15000</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-c">/* Run tests in files in parallel */</span> <span class="pl-c1">fullyParallel</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span> <span class="pl-c">/* Fail the build on CI if you accidentally left test.only in the source code. */</span> <span class="pl-c1">forbidOnly</span>: <span class="pl-c1">!</span><span class="pl-c1">!</span><span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span><span class="pl-kos">,</span> <span class="pl-c">/* Retry on CI only */</span> <span class="pl-c1">retries</span>: <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span> ? <span class="pl-c1">2</span> : <span class="pl-c1">0</span><span class="pl-kos">,</span> <span class="pl-c">/* Opt out of parallel tests on CI. */</span> <span class="pl-c">//workers: process.env.CI ? 1 : undefined,</span> <span class="pl-c1">workers</span>: <span class="pl-c1">8</span><span class="pl-kos">,</span> <span class="pl-c">/* Reporter to use. See https://playwright.dev/docs/test-reporters */</span> <span class="pl-c1">reporter</span>: <span class="pl-s">'html'</span><span class="pl-kos">,</span> <span class="pl-c">/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */</span> <span class="pl-c1">use</span>: <span class="pl-kos">{</span> <span class="pl-c">/* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */</span> <span class="pl-c1">actionTimeout</span>: <span class="pl-c1">0</span><span class="pl-kos">,</span> <span class="pl-c">// video: 'on',</span> <span class="pl-c">// launchOptions:{</span> <span class="pl-c">// slowMo: 1500</span> <span class="pl-c">// },</span> <span class="pl-c">/* Base URL to use in actions like `await page.goto('/')`. */</span> <span class="pl-c1">baseURL</span>: <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">BASE_URL</span><span class="pl-kos">,</span> <span class="pl-c">//viewport: null,</span> <span class="pl-c">/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */</span> <span class="pl-c1">trace</span>: <span class="pl-s">'on-first-retry'</span><span class="pl-kos">,</span> <span class="pl-c1">headless</span>:<span class="pl-c1">true</span><span class="pl-kos">,</span> <span class="pl-c1">screenshot</span>:<span class="pl-s">'on'</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-c">/* Configure projects for major browsers */</span> <span class="pl-c1">projects</span>: <span class="pl-kos">[</span> <span class="pl-c">// {</span> <span class="pl-c">// name: 'chromium',</span> <span class="pl-c">// use: { ...devices['Desktop Chrome'],</span> <span class="pl-c">// viewport:{width:1920,height:1080}</span> <span class="pl-c">// //viewport:{width:1368,height:768}</span> <span class="pl-c">// },</span> <span class="pl-c">// },</span> <span class="pl-kos">{</span> <span class="pl-c1">name</span>: <span class="pl-s">'firefox'</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 Firefox'</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-c1">viewport</span>:<span class="pl-kos">{</span><span class="pl-c1">width</span>:<span class="pl-c1">1920</span><span class="pl-kos">,</span><span class="pl-c1">height</span>:<span class="pl-c1">1080</span><span class="pl-kos">}</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-c">// {</span> <span class="pl-c">// name: 'webkit',</span> <span class="pl-c">// use: { ...devices['Desktop Safari'],</span> <span class="pl-c">// viewport:{width:1920,height:1080} </span> <span class="pl-c">// },</span> <span class="pl-c">// },</span> <span class="pl-c">/* Test against mobile viewports. */</span> <span class="pl-c">//{</span> <span class="pl-c">// name: 'Mobile Chrome',</span> <span class="pl-c">// use: { ...devices['Pixel 5'] },</span> <span class="pl-c">//},</span> <span class="pl-c">//{</span> <span class="pl-c">// name: 'Mobile Safari',</span> <span class="pl-c">// use: { ...devices['iPhone 12'] },</span> <span class="pl-c">//},</span> <span class="pl-c">/* Test against branded browsers. */</span> <span class="pl-c">// {</span> <span class="pl-c">// name: 'Microsoft Edge',</span> <span class="pl-c">// use: { channel: 'msedge' },</span> <span class="pl-c">// },</span> <span class="pl-c">// {</span> <span class="pl-c">// name: 'Google Chrome',</span> <span class="pl-c">// use: { channel: 'chrome' },</span> <span class="pl-c">// },</span> <span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-c">/* Folder for test artifacts such as screenshots, videos, traces, etc. */</span> <span class="pl-c">// outputDir: 'test-results/',</span> <span class="pl-c">/* Run your local dev server before starting the tests */</span> <span class="pl-c">// webServer: {</span> <span class="pl-c">// command: 'npm run start',</span> <span class="pl-c">// port: 3000,</span> <span class="pl-c">// },</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto"><strong>Test file (self-contained)</strong></p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="test.describe('Monitoring', () =&gt; { test('CT050 - Scenario: [MONITORING] View workflow with event activity', async () =&gt; { //Given I am Administrator on HomePage await loginPage.Login(ADMIN_PORTAL, PASSWORD); //And access the Monitoring screen await indexPage.MenuMonitoring(); }) })"><pre class="notranslate"><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">'Monitoring'</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-s">'CT050 - Scenario: [MONITORING] View workflow with event activity'</span><span class="pl-kos">,</span> <span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-c">//Given I am Administrator on HomePage</span> <span class="pl-k">await</span> <span class="pl-s1">loginPage</span><span class="pl-kos">.</span><span class="pl-en">Login</span><span class="pl-kos">(</span><span class="pl-c1">ADMIN_PORTAL</span><span class="pl-kos">,</span> <span class="pl-c1">PASSWORD</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">//And access the Monitoring screen</span> <span class="pl-k">await</span> <span class="pl-s1">indexPage</span><span class="pl-kos">.</span><span class="pl-en">MenuMonitoring</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-kos">}</span><span class="pl-kos">)</span></pre></div> <p dir="auto"><strong>Steps</strong><br> async Login(login, password) {<br> await this.page.goto('')<br> await expect(this.headFullfillmentone).toBeVisible();<br> await expect(this.headSuiteNossis).toBeVisible();<br> await this.inputUsername.fill(login)<br> await this.inputPassword.fill(password)<br> await this.btLogin.click();<br> await expect(this.page).toHaveTitle('Fulfillment One')<br> }<br> async MenuMonitoring() {<br> await expect(this.menuMonitoring).toBeVisible();<br> await this.menuMonitoring.click();<br> await expect(this.btEnterMonitoring).toBeVisible();<br> await this.btEnterMonitoring.click();<br> await expect(this.breadcrumbMonitoring).toBeVisible();<br> }</p> <p dir="auto"><strong>Expected</strong></p> <p dir="auto">the step should be working</p> <p dir="auto"><strong>Actual</strong><br> The Firefox crashed in the "toBeVisible".</p> <p dir="auto">Video of the test bellow:<br> -- slowmotion 2000<br> <a href="https://github.com/microsoft/playwright/assets/126868596/76d60844-6d62-487c-a983-484802a2c7e7">15c0b18e70982a985fda43b63c46a82d0a04dc4a.webm</a></p> <p dir="auto">And then, I executed in slowmotion 1000, and failed<br> <a href="https://github.com/microsoft/playwright/assets/126868596/66e975f3-b092-4184-b2d2-6d29e7e62ce5">76fa1cac650d66220f0546e5bf69623f3bc147dc.webm</a></p> <p dir="auto">Its hard to get the error<br> But sometimes i could get<br> And this is the error:<br> <a target="_blank" rel="noopener noreferrer" href="https://user-images.githubusercontent.com/126868596/242319092-55cbcc23-e002-4f37-aa6d-1fddf638e9f2.png"><img src="https://user-images.githubusercontent.com/126868596/242319092-55cbcc23-e002-4f37-aa6d-1fddf638e9f2.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">I try in other sites, and it works, I dont know why, just in my work site, this is not work. My work application was made in Javascript and Angular.</p>
<h3 dir="auto">System info</h3> <ul dir="auto"> <li>Playwright Version: v1.34.3</li> <li>Operating System: macOS 13.4</li> <li>Browser: Chromium</li> <li>Other info: Vue component testing</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/experimental-ct-vue'; import path from 'path'; /** * See https://playwright.dev/docs/test-configuration. */ export default defineConfig({ testDir: './', testMatch: /.*(pw)\.(js|ts|mjs)/, /* The base directory, relative to the config file, for snapshot files created with toMatchSnapshot and toHaveScreenshot. */ snapshotDir: './__snapshots__', /* Maximum time one test can run for. */ timeout: 10 * 1000, /* Run tests in files in parallel */ fullyParallel: true, /* Fail the build on CI if you accidentally left test.only in the source code. */ forbidOnly: !!process.env.CI, /* Retry on CI only */ retries: process.env.CI ? 2 : 0, /* Opt out of parallel tests on CI. */ workers: process.env.CI ? 1 : undefined, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ reporter: 'html', /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ use: { /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ trace: 'on-first-retry', /* Port to use for Playwright component endpoint. */ ctPort: 3100, ctViteConfig: { resolve: { alias: { '@': path.join(__dirname, './src'), }, }, }, }, /* Configure projects for major browsers */ projects: [ { name: 'chromium', use: { ...devices['Desktop Chrome'] }, }, // { // name: 'firefox', // use: { ...devices['Desktop Firefox'] }, // }, // { // name: 'webkit', // use: { ...devices['Desktop Safari'] }, // }, ], }); "><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/experimental-ct-vue'</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-s1">path</span> <span class="pl-k">from</span> <span class="pl-s">'path'</span><span class="pl-kos">;</span> <span class="pl-c">/**</span> <span class="pl-c"> * See https://playwright.dev/docs/test-configuration.</span> <span class="pl-c"> */</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">testDir</span>: <span class="pl-s">'./'</span><span class="pl-kos">,</span> <span class="pl-c1">testMatch</span>: <span class="pl-pds"><span class="pl-c1">/</span>.<span class="pl-c1">*</span><span class="pl-kos">(</span>pw<span class="pl-kos">)</span><span class="pl-cce">\.</span><span class="pl-kos">(</span>js<span class="pl-c1">|</span>ts<span class="pl-c1">|</span>mjs<span class="pl-kos">)</span><span class="pl-c1">/</span></span><span class="pl-kos">,</span> <span class="pl-c">/* The base directory, relative to the config file, for snapshot files created with toMatchSnapshot and toHaveScreenshot. */</span> <span class="pl-c1">snapshotDir</span>: <span class="pl-s">'./__snapshots__'</span><span class="pl-kos">,</span> <span class="pl-c">/* Maximum time one test can run for. */</span> <span class="pl-c1">timeout</span>: <span class="pl-c1">10</span> <span class="pl-c1">*</span> <span class="pl-c1">1000</span><span class="pl-kos">,</span> <span class="pl-c">/* Run tests in files in parallel */</span> <span class="pl-c1">fullyParallel</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span> <span class="pl-c">/* Fail the build on CI if you accidentally left test.only in the source code. */</span> <span class="pl-c1">forbidOnly</span>: <span class="pl-c1">!</span><span class="pl-c1">!</span><span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span><span class="pl-kos">,</span> <span class="pl-c">/* Retry on CI only */</span> <span class="pl-c1">retries</span>: <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span> ? <span class="pl-c1">2</span> : <span class="pl-c1">0</span><span class="pl-kos">,</span> <span class="pl-c">/* Opt out of parallel tests on CI. */</span> <span class="pl-c1">workers</span>: <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span> ? <span class="pl-c1">1</span> : <span class="pl-c1">undefined</span><span class="pl-kos">,</span> <span class="pl-c">/* Reporter to use. See https://playwright.dev/docs/test-reporters */</span> <span class="pl-c1">reporter</span>: <span class="pl-s">'html'</span><span class="pl-kos">,</span> <span class="pl-c">/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */</span> <span class="pl-c1">use</span>: <span class="pl-kos">{</span> <span class="pl-c">/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */</span> <span class="pl-c1">trace</span>: <span class="pl-s">'on-first-retry'</span><span class="pl-kos">,</span> <span class="pl-c">/* Port to use for Playwright component endpoint. */</span> <span class="pl-c1">ctPort</span>: <span class="pl-c1">3100</span><span class="pl-kos">,</span> <span class="pl-c1">ctViteConfig</span>: <span class="pl-kos">{</span> <span class="pl-c1">resolve</span>: <span class="pl-kos">{</span> <span class="pl-c1">alias</span>: <span class="pl-kos">{</span> <span class="pl-s">'@'</span>: <span class="pl-s1">path</span><span class="pl-kos">.</span><span class="pl-en">join</span><span class="pl-kos">(</span><span class="pl-s1">__dirname</span><span class="pl-kos">,</span> <span class="pl-s">'./src'</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-c">/* Configure projects for major browsers */</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-c">// {</span> <span class="pl-c">// name: 'firefox',</span> <span class="pl-c">// use: { ...devices['Desktop Firefox'] },</span> <span class="pl-c">// },</span> <span class="pl-c">// {</span> <span class="pl-c">// name: 'webkit',</span> <span class="pl-c">// use: { ...devices['Desktop Safari'] },</span> <span class="pl-c">// },</span> <span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto"><strong>Test file (self-contained)</strong></p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { expect, test } from '@playwright/experimental-ct-vue'; import Sample from '../Sample.vue'; test('sample', async ({ page, mount }) =&gt; { const foo = () =&gt; 123; const bar = page.evaluateHandle(() =&gt; { return () =&gt; 123; }); const component = await mount(Sample, { props: { foo, bar, }, }); });"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">expect</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/experimental-ct-vue'</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-smi">Sample</span> <span class="pl-k">from</span> <span class="pl-s">'../Sample.vue'</span><span class="pl-kos">;</span> <span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-s">'sample'</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> mount <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">const</span> <span class="pl-en">foo</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-c1">123</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">bar</span> <span class="pl-c1">=</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">evaluateHandle</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-c1">123</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">component</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-en">mount</span><span class="pl-kos">(</span><span class="pl-smi">Sample</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">props</span>: <span class="pl-kos">{</span> foo<span class="pl-kos">,</span> bar<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"><strong>Steps</strong></p> <ul dir="auto"> <li>Run the test</li> </ul> <p dir="auto"><strong>Expected</strong></p> <p dir="auto">I can pass a callback, an object containing callbacks or a <code class="notranslate">JSHandle</code> (So I can worry about the node vs browser differences myself via <code class="notranslate">evaluateHandle</code> as props.</p> <p dir="auto"><strong>Actual</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Error: The mount function props are not JSON serializable."><pre class="notranslate"><code class="notranslate">Error: The mount function props are not JSON serializable. </code></pre></div>
0
<p dir="auto">I have an issue with SelectField having many menu items with "checked" prop when first menu item have buttons as children. The list scrolls to first item immediately when i click on last item or on items near last item.</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">The list should not scroll to first item when i check last or near last item. It must stay at the same place where i clicked.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">The list scrolls to first item immediately when i click on last item or on items near last item.</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <p dir="auto">Here is the live example <a href="https://codesandbox.io/s/30z4y4772m" rel="nofollow">https://codesandbox.io/s/30z4y4772m</a></p> <ol dir="auto"> <li>Click on the SelectField</li> <li>Scroll to the bottom</li> <li>Click on any item</li> <li>List scrolled to top</li> </ol> <h2 dir="auto">Context</h2> <p dir="auto">This issue making use of my dropdown component uncomfortable for user as it forces user to verify if he really checked the item in the list. The buttons is also needed.</p> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td>0.19.4</td> </tr> <tr> <td>React</td> <td>16.0.0</td> </tr> <tr> <td>browser</td> <td>Google Chrome</td> </tr> <tr> <td>OS</td> <td>Windows 10</td> </tr> </tbody> </table>
<p dir="auto">I'm trying to use the React Material tables.</p> <p dir="auto">But when I add paging to them I get the following error:</p> <p dir="auto"><code class="notranslate">Error: Material-UI: the value property is required when using the Select component with native=false.</code></p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/mui-org/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">Get paid for the records in the table</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">Can not render table much less than page</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <ol dir="auto"> <li>Create Table</li> <li>Add Table Pagination</li> <li></li> <li></li> </ol> <h2 dir="auto">Context</h2> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td><a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/next/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/next">@next</a></td> </tr> <tr> <td>React</td> <td>16.2.0</td> </tr> <tr> <td>browser</td> <td>Chrome</td> </tr> <tr> <td>etc</td> <td></td> </tr> </tbody> </table>
0
<p dir="auto"><a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gke-serial/1612/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gke-serial/1612/</a></p> <p dir="auto">Failed: [k8s.io] [HPA] Horizontal pod autoscaling (scale resource: CPU) [k8s.io] [Serial] [Slow] ReplicaSet Should scale from 5 pods to 3 pods and from 3 to 1 {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/horizontal_pod_autoscaling.go:62 Expected error: &lt;*errors.StatusError | 0xc820fb3000&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (get replicationControllers rs)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;rs&quot;, Group: &quot;&quot;, Kind: &quot;replicationControllers&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/namespaces/e2e-tests-horizontal-pod-autoscaling-z5j90/replicationcontrollers/rs\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get replicationControllers rs) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/horizontal_pod_autoscaling.go:62 Expected error: &lt;*errors.StatusError | 0xc820fb3000&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (get replicationControllers rs)", Reason: "Forbidden", Details: { Name: "rs", Group: "", Kind: "replicationControllers", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/namespaces/e2e-tests-horizontal-pod-autoscaling-z5j90/replicationcontrollers/rs\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get replicationControllers rs) not to have occurred </code></pre></div> <p dir="auto">Previous issues for this test: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="160282299" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/27394" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/27394/hovercard" href="https://github.com/kubernetes/kubernetes/issues/27394">#27394</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="161010739" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/27660" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/27660/hovercard" href="https://github.com/kubernetes/kubernetes/issues/27660">#27660</a></p>
<p dir="auto"><a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gke/9674/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gke/9674/</a></p> <p dir="auto">Multiple broken tests:</p> <p dir="auto">Failed: [k8s.io] V1Job should scale a job down {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/batch_v1_jobs.go:166 Expected error: &lt;*errors.StatusError | 0xc82086cf00&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (post jobs.batch)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;batch&quot;, Kind: &quot;jobs&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/apis/batch/v1/namespaces/e2e-tests-v1job-rk7xo/jobs\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (post jobs.batch) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/batch_v1_jobs.go:166 Expected error: &lt;*errors.StatusError | 0xc82086cf00&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (post jobs.batch)", Reason: "Forbidden", Details: { Name: "", Group: "batch", Kind: "jobs", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/apis/batch/v1/namespaces/e2e-tests-v1job-rk7xo/jobs\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (post jobs.batch) not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] Pods should get a host IP [Conformance] {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820d04080&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (get serviceAccounts)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;&quot;, Kind: &quot;serviceAccounts&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/watch/namespaces/e2e-tests-pods-yito2/serviceaccounts?fieldSelector=metadata.name%3Ddefault\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820d04080&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (get serviceAccounts)", Reason: "Forbidden", Details: { Name: "", Group: "", Kind: "serviceAccounts", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/watch/namespaces/e2e-tests-pods-yito2/serviceaccounts?fieldSelector=metadata.name%3Ddefault\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] Generated release_1_3 clientset should create pods, delete pods, watch pods {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/generated_clientset.go:244 Jun 21 22:02:59.790: Failed to set up watch: the server does not allow access to the requested resource (get pods)"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/generated_clientset.go:244 Jun 21 22:02:59.790: Failed to set up watch: the server does not allow access to the requested resource (get pods) </code></pre></div> <p dir="auto">Failed: [k8s.io] Kubectl client [k8s.io] Kubectl run deployment should create a deployment from an image [Conformance] {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:973 Expected error: &lt;*errors.StatusError | 0xc820d1a100&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (get pods)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;&quot;, Kind: &quot;pods&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/namespaces/e2e-tests-kubectl-8rvuv/pods?labelSelector=run%3De2e-test-nginx-deployment\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get pods) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:973 Expected error: &lt;*errors.StatusError | 0xc820d1a100&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (get pods)", Reason: "Forbidden", Details: { Name: "", Group: "", Kind: "pods", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/namespaces/e2e-tests-kubectl-8rvuv/pods?labelSelector=run%3De2e-test-nginx-deployment\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get pods) not to have occurred </code></pre></div> <p dir="auto">Issues about this test specifically: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="160615315" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/27532" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/27532/hovercard" href="https://github.com/kubernetes/kubernetes/issues/27532">#27532</a></p> <p dir="auto">Failed: [k8s.io] Pods should be restarted with a /healthz http liveness probe [Conformance] {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:133 Jun 21 22:02:27.505: Couldn't delete ns &quot;e2e-tests-pods-ljdz2&quot;: the server does not allow access to the requested resource (delete namespaces e2e-tests-pods-ljdz2)"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:133 Jun 21 22:02:27.505: Couldn't delete ns "e2e-tests-pods-ljdz2": the server does not allow access to the requested resource (delete namespaces e2e-tests-pods-ljdz2) </code></pre></div> <p dir="auto">Failed: [k8s.io] Kubectl client [k8s.io] Simple pod should support exec through an HTTP proxy {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820fac080&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (get serviceAccounts)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;&quot;, Kind: &quot;serviceAccounts&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/watch/namespaces/e2e-tests-kubectl-4jiei/serviceaccounts?fieldSelector=metadata.name%3Ddefault\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820fac080&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (get serviceAccounts)", Reason: "Forbidden", Details: { Name: "", Group: "", Kind: "serviceAccounts", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/watch/namespaces/e2e-tests-kubectl-4jiei/serviceaccounts?fieldSelector=metadata.name%3Ddefault\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred </code></pre></div> <p dir="auto">Issues about this test specifically: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="159529335" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/27156" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/27156/hovercard" href="https://github.com/kubernetes/kubernetes/issues/27156">#27156</a></p> <p dir="auto">Failed: [k8s.io] ResourceQuota should verify ResourceQuota with terminating scopes. {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc8208b0800&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (get serviceAccounts)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;&quot;, Kind: &quot;serviceAccounts&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/watch/namespaces/e2e-tests-resourcequota-p9vrv/serviceaccounts?fieldSelector=metadata.name%3Ddefault\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc8208b0800&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (get serviceAccounts)", Reason: "Forbidden", Details: { Name: "", Group: "", Kind: "serviceAccounts", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/watch/namespaces/e2e-tests-resourcequota-p9vrv/serviceaccounts?fieldSelector=metadata.name%3Ddefault\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] V1Job should run a job to completion when tasks sometimes fail and are locally restarted {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820d59500&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (get serviceAccounts)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;&quot;, Kind: &quot;serviceAccounts&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/watch/namespaces/e2e-tests-v1job-yzicu/serviceaccounts?fieldSelector=metadata.name%3Ddefault\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820d59500&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (get serviceAccounts)", Reason: "Forbidden", Details: { Name: "", Group: "", Kind: "serviceAccounts", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/watch/namespaces/e2e-tests-v1job-yzicu/serviceaccounts?fieldSelector=metadata.name%3Ddefault\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] Probing container with readiness probe should not be ready before initial delay and never restart [Conformance] {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/container_probe.go:86 Expected error: &lt;*errors.StatusError | 0xc82026c180&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (post pods)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;&quot;, Kind: &quot;pods&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/namespaces/e2e-tests-container-probe-r6od1/pods\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (post pods) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/container_probe.go:86 Expected error: &lt;*errors.StatusError | 0xc82026c180&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (post pods)", Reason: "Forbidden", Details: { Name: "", Group: "", Kind: "pods", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/namespaces/e2e-tests-container-probe-r6od1/pods\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (post pods) not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] Variable Expansion should allow substituting values in a container's command [Conformance] {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/expansion.go:100 Jun 21 22:05:17.590: Failed to create pod: the server does not allow access to the requested resource (post pods)"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/expansion.go:100 Jun 21 22:05:17.590: Failed to create pod: the server does not allow access to the requested resource (post pods) </code></pre></div> <p dir="auto">Failed: [k8s.io] Job should scale a job up {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/job.go:137 Expected error: &lt;*errors.StatusError | 0xc820be6800&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server has asked for the client to provide credentials (get pods)&quot;, Reason: &quot;Unauthorized&quot;, Details: { Name: &quot;&quot;, Group: &quot;&quot;, Kind: &quot;pods&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Unauthorized&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 401, }, } the server has asked for the client to provide credentials (get pods) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/job.go:137 Expected error: &lt;*errors.StatusError | 0xc820be6800&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server has asked for the client to provide credentials (get pods)", Reason: "Unauthorized", Details: { Name: "", Group: "", Kind: "pods", Causes: [ { Type: "UnexpectedServerResponse", Message: "Unauthorized", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 401, }, } the server has asked for the client to provide credentials (get pods) not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] V1Job should fail a job {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/batch_v1_jobs.go:202 Expected error: &lt;*errors.StatusError | 0xc820b5b900&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server has asked for the client to provide credentials (get jobs.batch foo)&quot;, Reason: &quot;Unauthorized&quot;, Details: { Name: &quot;foo&quot;, Group: &quot;batch&quot;, Kind: &quot;jobs&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Unauthorized&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 401, }, } the server has asked for the client to provide credentials (get jobs.batch foo) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/batch_v1_jobs.go:202 Expected error: &lt;*errors.StatusError | 0xc820b5b900&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server has asked for the client to provide credentials (get jobs.batch foo)", Reason: "Unauthorized", Details: { Name: "foo", Group: "batch", Kind: "jobs", Causes: [ { Type: "UnexpectedServerResponse", Message: "Unauthorized", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 401, }, } the server has asked for the client to provide credentials (get jobs.batch foo) not to have occurred </code></pre></div> <p dir="auto">Issues about this test specifically: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="161129574" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/27704" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/27704/hovercard" href="https://github.com/kubernetes/kubernetes/issues/27704">#27704</a></p> <p dir="auto">Failed: [k8s.io] ReplicaSet should serve a basic image on each replica with a private image {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/replica_set.go:47 Expected error: &lt;*errors.StatusError | 0xc8207c8f00&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (post replicasets.extensions)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;extensions&quot;, Kind: &quot;replicasets&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/apis/extensions/v1beta1/namespaces/e2e-tests-replicaset-y7i22/replicasets\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (post replicasets.extensions) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/replica_set.go:47 Expected error: &lt;*errors.StatusError | 0xc8207c8f00&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (post replicasets.extensions)", Reason: "Forbidden", Details: { Name: "", Group: "extensions", Kind: "replicasets", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/apis/extensions/v1beta1/namespaces/e2e-tests-replicaset-y7i22/replicasets\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (post replicasets.extensions) not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] Deployment paused deployment should be ignored by the controller {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/deployment.go:73 Expected error: &lt;*errors.StatusError | 0xc820d70500&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (post deployments.extensions)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;extensions&quot;, Kind: &quot;deployments&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/apis/extensions/v1beta1/namespaces/e2e-tests-deployment-h5sro/deployments\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (post deployments.extensions) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/deployment.go:73 Expected error: &lt;*errors.StatusError | 0xc820d70500&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (post deployments.extensions)", Reason: "Forbidden", Details: { Name: "", Group: "extensions", Kind: "deployments", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/apis/extensions/v1beta1/namespaces/e2e-tests-deployment-h5sro/deployments\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (post deployments.extensions) not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] DNS should provide DNS for services [Conformance] {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:133 Jun 21 22:04:14.752: Couldn't delete ns &quot;e2e-tests-dns-kn3s7&quot;: the server does not allow access to the requested resource (delete namespaces e2e-tests-dns-kn3s7)"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:133 Jun 21 22:04:14.752: Couldn't delete ns "e2e-tests-dns-kn3s7": the server does not allow access to the requested resource (delete namespaces e2e-tests-dns-kn3s7) </code></pre></div> <p dir="auto">Issues about this test specifically: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="156519287" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/26168" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/26168/hovercard" href="https://github.com/kubernetes/kubernetes/issues/26168">#26168</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="160484739" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/27450" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/27450/hovercard" href="https://github.com/kubernetes/kubernetes/issues/27450">#27450</a></p> <p dir="auto">Failed: [k8s.io] MetricsGrabber should grab all metrics from a ControllerManager. {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820d93380&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (get serviceAccounts)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;&quot;, Kind: &quot;serviceAccounts&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/watch/namespaces/e2e-tests-metrics-grabber-bkgig/serviceaccounts?fieldSelector=metadata.name%3Ddefault\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820d93380&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (get serviceAccounts)", Reason: "Forbidden", Details: { Name: "", Group: "", Kind: "serviceAccounts", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/watch/namespaces/e2e-tests-metrics-grabber-bkgig/serviceaccounts?fieldSelector=metadata.name%3Ddefault\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] Downward API volume should provide container's cpu request {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:133 Jun 21 22:05:37.592: All nodes should be ready after test, the server does not allow access to the requested resource (get nodes)"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:133 Jun 21 22:05:37.592: All nodes should be ready after test, the server does not allow access to the requested resource (get nodes) </code></pre></div> <p dir="auto">Failed: [k8s.io] Downward API should provide pod IP as an env var {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820c06200&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (get serviceAccounts)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;&quot;, Kind: &quot;serviceAccounts&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/watch/namespaces/e2e-tests-downward-api-0s97k/serviceaccounts?fieldSelector=metadata.name%3Ddefault\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820c06200&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (get serviceAccounts)", Reason: "Forbidden", Details: { Name: "", Group: "", Kind: "serviceAccounts", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/watch/namespaces/e2e-tests-downward-api-0s97k/serviceaccounts?fieldSelector=metadata.name%3Ddefault\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] Downward API should provide default limits.cpu/memory from node capacity {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/downward_api.go:174 &quot;CPU_LIMIT=[1-9]&quot; in container output Expected &lt;string&gt;: to match regular expression &lt;string&gt;: CPU_LIMIT=[1-9]"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/downward_api.go:174 "CPU_LIMIT=[1-9]" in container output Expected &lt;string&gt;: to match regular expression &lt;string&gt;: CPU_LIMIT=[1-9] </code></pre></div> <p dir="auto">Failed: [k8s.io] ResourceQuota should create a ResourceQuota and capture the life of a pod. {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:133 Jun 21 22:04:26.642: Couldn't delete ns &quot;e2e-tests-resourcequota-lh0fh&quot;: the server does not allow access to the requested resource (delete namespaces e2e-tests-resourcequota-lh0fh)"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:133 Jun 21 22:04:26.642: Couldn't delete ns "e2e-tests-resourcequota-lh0fh": the server does not allow access to the requested resource (delete namespaces e2e-tests-resourcequota-lh0fh) </code></pre></div> <p dir="auto">Failed: [k8s.io] Services should be able to create a functioning NodePort service {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/service.go:403 Jun 21 22:08:53.639: Failed to create TCP Service &quot;nodeport-test&quot;: the server does not allow access to the requested resource (post services)"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/service.go:403 Jun 21 22:08:53.639: Failed to create TCP Service "nodeport-test": the server does not allow access to the requested resource (post services) </code></pre></div> <p dir="auto">Failed: ThirdParty resources Simple Third Party creating/deleting thirdparty objects works [Conformance] {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/third-party.go:176 Jun 21 22:08:47.269: failed to decode: &amp;json.SyntaxError{msg:&quot;invalid character 'F' looking for beginning of value&quot;, Offset:1}"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/third-party.go:176 Jun 21 22:08:47.269: failed to decode: &amp;json.SyntaxError{msg:"invalid character 'F' looking for beginning of value", Offset:1} </code></pre></div> <p dir="auto">Failed: [k8s.io] EmptyDir volumes should support (root,0777,default) [Conformance] {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/empty_dir.go:105 Jun 21 22:05:43.331: Failed to create pod: the server does not allow access to the requested resource (post pods)"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/empty_dir.go:105 Jun 21 22:05:43.331: Failed to create pod: the server does not allow access to the requested resource (post pods) </code></pre></div> <p dir="auto">Issues about this test specifically: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="158375100" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/26780" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/26780/hovercard" href="https://github.com/kubernetes/kubernetes/issues/26780">#26780</a></p> <p dir="auto">Failed: [k8s.io] Deployment deployment should create new pods {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/deployment.go:55 Expected error: &lt;errors.aggregate | len:1, cap:1&gt;: [ { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (get replicasets.extensions test-new-deployment-2791939565)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;test-new-deployment-2791939565&quot;, Group: &quot;extensions&quot;, Kind: &quot;replicasets&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/apis/extensions/v1beta1/namespaces/e2e-tests-deployment-9p1wp/replicasets/test-new-deployment-2791939565\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, }, ] the server does not allow access to the requested resource (get replicasets.extensions test-new-deployment-2791939565) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/deployment.go:55 Expected error: &lt;errors.aggregate | len:1, cap:1&gt;: [ { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (get replicasets.extensions test-new-deployment-2791939565)", Reason: "Forbidden", Details: { Name: "test-new-deployment-2791939565", Group: "extensions", Kind: "replicasets", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/apis/extensions/v1beta1/namespaces/e2e-tests-deployment-9p1wp/replicasets/test-new-deployment-2791939565\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, }, ] the server does not allow access to the requested resource (get replicasets.extensions test-new-deployment-2791939565) not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] EmptyDir volumes should support (non-root,0666,tmpfs) [Conformance] {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/empty_dir.go:85 Jun 21 22:04:57.497: Failed to create pod: the server does not allow access to the requested resource (post pods)"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/empty_dir.go:85 Jun 21 22:04:57.497: Failed to create pod: the server does not allow access to the requested resource (post pods) </code></pre></div> <p dir="auto">Failed: [k8s.io] PreStop should call prestop when killing a pod [Conformance] {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/pre_stop.go:167 validating pre-stop. Expected error: &lt;*errors.errorString | 0xc8200b9060&gt;: { s: &quot;timed out waiting for the condition&quot;, } timed out waiting for the condition not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/pre_stop.go:167 validating pre-stop. Expected error: &lt;*errors.errorString | 0xc8200b9060&gt;: { s: "timed out waiting for the condition", } timed out waiting for the condition not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] Kubectl client [k8s.io] Kubectl version should check is all data is printed [Conformance] {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820d56a80&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (get serviceAccounts)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;&quot;, Kind: &quot;serviceAccounts&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/watch/namespaces/e2e-tests-kubectl-ros1z/serviceaccounts?fieldSelector=metadata.name%3Ddefault\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820d56a80&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (get serviceAccounts)", Reason: "Forbidden", Details: { Name: "", Group: "", Kind: "serviceAccounts", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/watch/namespaces/e2e-tests-kubectl-ros1z/serviceaccounts?fieldSelector=metadata.name%3Ddefault\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] DNS should provide DNS for pods for Hostname and Subdomain Annotation {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/dns.go:389 Jun 21 22:02:25.408: Failed to get pod : the server does not allow access to the requested resource (get pods dns-test-380142b9-3836-11e6-b923-0242ac110004)"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/dns.go:389 Jun 21 22:02:25.408: Failed to get pod : the server does not allow access to the requested resource (get pods dns-test-380142b9-3836-11e6-b923-0242ac110004) </code></pre></div> <p dir="auto">Failed: [k8s.io] Kubectl client [k8s.io] Update Demo should create and stop a replication controller [Conformance] {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:209 Expected error: &lt;*errors.errorString | 0xc820a7ce00&gt;: { s: &quot;Error running &amp;{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.198.217.152 --kubeconfig=/workspace/.kube/config get pods update-demo-nautilus-o932c -o template --template={{if (exists . \&quot;status\&quot; \&quot;containerStatuses\&quot;)}}{{range .status.containerStatuses}}{{if (and (eq .name \&quot;update-demo\&quot;) (exists . \&quot;state\&quot; \&quot;running\&quot;))}}true{{end}}{{end}}{{end}} --namespace=e2e-tests-kubectl-oiiee] [] &lt;nil&gt; Error from server: the server does not allow access to the requested resource (get pods update-demo-nautilus-o932c)\n [] &lt;nil&gt; 0xc82013d900 exit status 1 &lt;nil&gt; true [0xc8204ae6e8 0xc8204ae720 0xc8204ae748] [0xc8204ae6e8 0xc8204ae720 0xc8204ae748] [0xc8204ae6f8 0xc8204ae740] [0xa88200 0xa88200] 0xc820749d40}:\nCommand stdout:\n\nstderr:\nError from server: the server does not allow access to the requested resource (get pods update-demo-nautilus-o932c)\n\nerror:\nexit status 1\n&quot;, } Error running &amp;{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.198.217.152 --kubeconfig=/workspace/.kube/config get pods update-demo-nautilus-o932c -o template --template={{if (exists . &quot;status&quot; &quot;containerStatuses&quot;)}}{{range .status.containerStatuses}}{{if (and (eq .name &quot;update-demo&quot;) (exists . &quot;state&quot; &quot;running&quot;))}}true{{end}}{{end}}{{end}} --namespace=e2e-tests-kubectl-oiiee] [] &lt;nil&gt; Error from server: the server does not allow access to the requested resource (get pods update-demo-nautilus-o932c) [] &lt;nil&gt; 0xc82013d900 exit status 1 &lt;nil&gt; true [0xc8204ae6e8 0xc8204ae720 0xc8204ae748] [0xc8204ae6e8 0xc8204ae720 0xc8204ae748] [0xc8204ae6f8 0xc8204ae740] [0xa88200 0xa88200] 0xc820749d40}: Command stdout: stderr: Error from server: the server does not allow access to the requested resource (get pods update-demo-nautilus-o932c) error: exit status 1 not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:209 Expected error: &lt;*errors.errorString | 0xc820a7ce00&gt;: { s: "Error running &amp;{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.198.217.152 --kubeconfig=/workspace/.kube/config get pods update-demo-nautilus-o932c -o template --template={{if (exists . \"status\" \"containerStatuses\")}}{{range .status.containerStatuses}}{{if (and (eq .name \"update-demo\") (exists . \"state\" \"running\"))}}true{{end}}{{end}}{{end}} --namespace=e2e-tests-kubectl-oiiee] [] &lt;nil&gt; Error from server: the server does not allow access to the requested resource (get pods update-demo-nautilus-o932c)\n [] &lt;nil&gt; 0xc82013d900 exit status 1 &lt;nil&gt; true [0xc8204ae6e8 0xc8204ae720 0xc8204ae748] [0xc8204ae6e8 0xc8204ae720 0xc8204ae748] [0xc8204ae6f8 0xc8204ae740] [0xa88200 0xa88200] 0xc820749d40}:\nCommand stdout:\n\nstderr:\nError from server: the server does not allow access to the requested resource (get pods update-demo-nautilus-o932c)\n\nerror:\nexit status 1\n", } Error running &amp;{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.198.217.152 --kubeconfig=/workspace/.kube/config get pods update-demo-nautilus-o932c -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}} --namespace=e2e-tests-kubectl-oiiee] [] &lt;nil&gt; Error from server: the server does not allow access to the requested resource (get pods update-demo-nautilus-o932c) [] &lt;nil&gt; 0xc82013d900 exit status 1 &lt;nil&gt; true [0xc8204ae6e8 0xc8204ae720 0xc8204ae748] [0xc8204ae6e8 0xc8204ae720 0xc8204ae748] [0xc8204ae6f8 0xc8204ae740] [0xa88200 0xa88200] 0xc820749d40}: Command stdout: stderr: Error from server: the server does not allow access to the requested resource (get pods update-demo-nautilus-o932c) error: exit status 1 not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] Job should run a job to completion when tasks succeed {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820cc8d80&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (get serviceAccounts)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;&quot;, Kind: &quot;serviceAccounts&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/watch/namespaces/e2e-tests-job-48veg/serviceaccounts?fieldSelector=metadata.name%3Ddefault\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820cc8d80&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (get serviceAccounts)", Reason: "Forbidden", Details: { Name: "", Group: "", Kind: "serviceAccounts", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/watch/namespaces/e2e-tests-job-48veg/serviceaccounts?fieldSelector=metadata.name%3Ddefault\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] Downward API should provide pod name and namespace as env vars [Conformance] {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc82118e200&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (get serviceAccounts)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;&quot;, Kind: &quot;serviceAccounts&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/watch/namespaces/e2e-tests-downward-api-yx66y/serviceaccounts?fieldSelector=metadata.name%3Ddefault\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc82118e200&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (get serviceAccounts)", Reason: "Forbidden", Details: { Name: "", Group: "", Kind: "serviceAccounts", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/watch/namespaces/e2e-tests-downward-api-yx66y/serviceaccounts?fieldSelector=metadata.name%3Ddefault\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] Downward API volume should update annotations on modification [Conformance] {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc821225080&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (get serviceAccounts)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;&quot;, Kind: &quot;serviceAccounts&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/watch/namespaces/e2e-tests-downward-api-5pq1a/serviceaccounts?fieldSelector=metadata.name%3Ddefault\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc821225080&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (get serviceAccounts)", Reason: "Forbidden", Details: { Name: "", Group: "", Kind: "serviceAccounts", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/watch/namespaces/e2e-tests-downward-api-5pq1a/serviceaccounts?fieldSelector=metadata.name%3Ddefault\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] SSH should SSH to all nodes and run commands {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820e17800&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (get serviceAccounts)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;&quot;, Kind: &quot;serviceAccounts&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/watch/namespaces/e2e-tests-ssh-1ual0/serviceaccounts?fieldSelector=metadata.name%3Ddefault\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820e17800&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (get serviceAccounts)", Reason: "Forbidden", Details: { Name: "", Group: "", Kind: "serviceAccounts", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/watch/namespaces/e2e-tests-ssh-1ual0/serviceaccounts?fieldSelector=metadata.name%3Ddefault\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred </code></pre></div> <p dir="auto">Issues about this test specifically: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="156406649" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/26129" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/26129/hovercard" href="https://github.com/kubernetes/kubernetes/issues/26129">#26129</a></p> <p dir="auto">Failed: [k8s.io] Services should check NodePort out-of-range {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/service.go:839 Expected error: &lt;*errors.StatusError | 0xc821225e00&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (post services)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;&quot;, Kind: &quot;services&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/namespaces/e2e-tests-services-khvde/services\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (post services) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/service.go:839 Expected error: &lt;*errors.StatusError | 0xc821225e00&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (post services)", Reason: "Forbidden", Details: { Name: "", Group: "", Kind: "services", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/namespaces/e2e-tests-services-khvde/services\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (post services) not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] ResourceQuota should create a ResourceQuota and capture the life of a persistent volume claim. {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/resource_quota.go:303 Expected error: &lt;*errors.StatusError | 0xc820299d00&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (post resourceQuotas)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;&quot;, Kind: &quot;resourceQuotas&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/namespaces/e2e-tests-resourcequota-ysfgm/resourcequotas\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (post resourceQuotas) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/resource_quota.go:303 Expected error: &lt;*errors.StatusError | 0xc820299d00&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (post resourceQuotas)", Reason: "Forbidden", Details: { Name: "", Group: "", Kind: "resourceQuotas", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/namespaces/e2e-tests-resourcequota-ysfgm/resourcequotas\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (post resourceQuotas) not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] Job should delete a job {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820e1b780&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (get serviceAccounts)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;&quot;, Kind: &quot;serviceAccounts&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/watch/namespaces/e2e-tests-job-49ep0/serviceaccounts?fieldSelector=metadata.name%3Ddefault\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820e1b780&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (get serviceAccounts)", Reason: "Forbidden", Details: { Name: "", Group: "", Kind: "serviceAccounts", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/watch/namespaces/e2e-tests-job-49ep0/serviceaccounts?fieldSelector=metadata.name%3Ddefault\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] Job should run a job to completion when tasks sometimes fail and are not locally restarted {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820d7a080&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (get serviceAccounts)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;&quot;, Kind: &quot;serviceAccounts&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/watch/namespaces/e2e-tests-job-06dh3/serviceaccounts?fieldSelector=metadata.name%3Ddefault\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820d7a080&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (get serviceAccounts)", Reason: "Forbidden", Details: { Name: "", Group: "", Kind: "serviceAccounts", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/watch/namespaces/e2e-tests-job-06dh3/serviceaccounts?fieldSelector=metadata.name%3Ddefault\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] Services should be able to up and down services {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/service.go:276 Expected error: &lt;*errors.StatusError | 0xc820e5e180&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (delete pods execpod-e7bje)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;execpod-e7bje&quot;, Group: &quot;&quot;, Kind: &quot;pods&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/namespaces/e2e-tests-services-zpcct/pods/execpod-e7bje\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (delete pods execpod-e7bje) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/service.go:276 Expected error: &lt;*errors.StatusError | 0xc820e5e180&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (delete pods execpod-e7bje)", Reason: "Forbidden", Details: { Name: "execpod-e7bje", Group: "", Kind: "pods", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/namespaces/e2e-tests-services-zpcct/pods/execpod-e7bje\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (delete pods execpod-e7bje) not to have occurred </code></pre></div> <p dir="auto">Issues about this test specifically: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="156404688" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/26128" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/26128/hovercard" href="https://github.com/kubernetes/kubernetes/issues/26128">#26128</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="158070247" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/26685" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/26685/hovercard" href="https://github.com/kubernetes/kubernetes/issues/26685">#26685</a></p> <p dir="auto">Failed: [k8s.io] Pods should contain environment variables for services [Conformance] {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820e5d680&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (get serviceAccounts)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;&quot;, Kind: &quot;serviceAccounts&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/watch/namespaces/e2e-tests-pods-317ii/serviceaccounts?fieldSelector=metadata.name%3Ddefault\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820e5d680&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (get serviceAccounts)", Reason: "Forbidden", Details: { Name: "", Group: "", Kind: "serviceAccounts", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/watch/namespaces/e2e-tests-pods-317ii/serviceaccounts?fieldSelector=metadata.name%3Ddefault\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] Kubectl client [k8s.io] Kubectl run rc should create an rc from an image [Conformance] {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820cd2200&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (get serviceAccounts)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;&quot;, Kind: &quot;serviceAccounts&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/watch/namespaces/e2e-tests-kubectl-iljxu/serviceaccounts?fieldSelector=metadata.name%3Ddefault\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820cd2200&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (get serviceAccounts)", Reason: "Forbidden", Details: { Name: "", Group: "", Kind: "serviceAccounts", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/watch/namespaces/e2e-tests-kubectl-iljxu/serviceaccounts?fieldSelector=metadata.name%3Ddefault\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred </code></pre></div> <p dir="auto">Failed: [k8s.io] Probing container with readiness probe that fails should never be ready and never restart [Conformance] {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/container_probe.go:111 Jun 21 22:08:08.009: expecting wait timeout error but got: the server has asked for the client to provide credentials (get pods test-webserver-09c1dff4-3837-11e6-84b5-0242ac110004)"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/container_probe.go:111 Jun 21 22:08:08.009: expecting wait timeout error but got: the server has asked for the client to provide credentials (get pods test-webserver-09c1dff4-3837-11e6-84b5-0242ac110004) </code></pre></div> <p dir="auto">Failed: [k8s.io] Kubectl client [k8s.io] Kubectl api-versions should check if v1 is in available api versions [Conformance] {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:133 Jun 21 22:02:29.320: Couldn't delete ns &quot;e2e-tests-kubectl-2fmnd&quot;: the server does not allow access to the requested resource (delete namespaces e2e-tests-kubectl-2fmnd)"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:133 Jun 21 22:02:29.320: Couldn't delete ns "e2e-tests-kubectl-2fmnd": the server does not allow access to the requested resource (delete namespaces e2e-tests-kubectl-2fmnd) </code></pre></div> <p dir="auto">Failed: [k8s.io] ReplicationController should serve a basic image on each replica with a private image {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820828880&gt;: { ErrStatus: { TypeMeta: {Kind: &quot;&quot;, APIVersion: &quot;&quot;}, ListMeta: {SelfLink: &quot;&quot;, ResourceVersion: &quot;&quot;}, Status: &quot;Failure&quot;, Message: &quot;the server does not allow access to the requested resource (get serviceAccounts)&quot;, Reason: &quot;Forbidden&quot;, Details: { Name: &quot;&quot;, Group: &quot;&quot;, Kind: &quot;serviceAccounts&quot;, Causes: [ { Type: &quot;UnexpectedServerResponse&quot;, Message: &quot;Forbidden: \&quot;/api/v1/watch/namespaces/e2e-tests-replication-controller-2527u/serviceaccounts?fieldSelector=metadata.name%3Ddefault\&quot;&quot;, Field: &quot;&quot;, }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:132 Expected error: &lt;*errors.StatusError | 0xc820828880&gt;: { ErrStatus: { TypeMeta: {Kind: "", APIVersion: ""}, ListMeta: {SelfLink: "", ResourceVersion: ""}, Status: "Failure", Message: "the server does not allow access to the requested resource (get serviceAccounts)", Reason: "Forbidden", Details: { Name: "", Group: "", Kind: "serviceAccounts", Causes: [ { Type: "UnexpectedServerResponse", Message: "Forbidden: \"/api/v1/watch/namespaces/e2e-tests-replication-controller-2527u/serviceaccounts?fieldSelector=metadata.name%3Ddefault\"", Field: "", }, ], RetryAfterSeconds: 0, }, Code: 403, }, } the server does not allow access to the requested resource (get serviceAccounts) not to have occurred </code></pre></div> <p dir="auto">Previous issues for this suite: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="158247453" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/26742" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/26742/hovercard" href="https://github.com/kubernetes/kubernetes/issues/26742">#26742</a></p>
1
<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.188.0<br> <strong>System</strong>: Unknown Windows Version<br> <strong>Thrown From</strong>: <a href="https://github.com/emmetio/emmet-atom">emmet-atom</a> package, v2.3.4</p> <h3 dir="auto">Stack Trace</h3> <p dir="auto">Failed to load the emmet-atom package</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At Cannot find module 'emmet' Error: Cannot find module 'emmet' at Module._resolveFilename (module.js:351:15) at Function.Module._resolveFilename (C:\Users\Portatil 1050\AppData\Local\atom\app-0.188.0\resources\app\src\module-cache.js:383:52) at Function.Module._load (module.js:293:25) at Module.require (module.js:380:17) at require (module.js:399:17) at Object.&lt;anonymous&gt; (/C:/Users/Portatil%201050/.atom/packages/emmet-atom/lib/emmet.coffee:10:11) at Object.&lt;anonymous&gt; (/C:/Users/Portatil%201050/.atom/packages/emmet-atom/lib/emmet.coffee:189:4) at Module._compile (module.js:475:26) at Object.requireCoffeeScript (C:\Users\Portatil 1050\AppData\Local\atom\app-0.188.0\resources\app\node_modules\coffee-cash\lib\coffee-cash.js:85:19) at Module.load (module.js:370:32)"><pre class="notranslate"><code class="notranslate">At Cannot find module 'emmet' Error: Cannot find module 'emmet' at Module._resolveFilename (module.js:351:15) at Function.Module._resolveFilename (C:\Users\Portatil 1050\AppData\Local\atom\app-0.188.0\resources\app\src\module-cache.js:383:52) at Function.Module._load (module.js:293:25) at Module.require (module.js:380:17) at require (module.js:399:17) at Object.&lt;anonymous&gt; (/C:/Users/Portatil%201050/.atom/packages/emmet-atom/lib/emmet.coffee:10:11) at Object.&lt;anonymous&gt; (/C:/Users/Portatil%201050/.atom/packages/emmet-atom/lib/emmet.coffee:189:4) at Module._compile (module.js:475:26) at Object.requireCoffeeScript (C:\Users\Portatil 1050\AppData\Local\atom\app-0.188.0\resources\app\node_modules\coffee-cash\lib\coffee-cash.js:85:19) at Module.load (module.js:370:32) </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="{ &quot;core&quot;: { &quot;themes&quot;: [ &quot;atom-dark-ui&quot;, &quot;atom-dark-syntax&quot; ] } }"><pre class="notranslate">{ <span class="pl-ent">"core"</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>atom-dark-syntax<span class="pl-pds">"</span></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 emmet-atom, v2.3.4 # Dev No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span> emmet<span class="pl-k">-</span>atom, v2.<span class="pl-ii">3</span>.<span class="pl-ii">4</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">[Enter steps to reproduce below:]</p> <ol dir="auto"> <li>...</li> <li>...</li> </ol> <p dir="auto"><strong>Atom Version</strong>: 0.187.0<br> <strong>System</strong>: Mac OS X 10.10.2<br> <strong>Thrown From</strong>: <a href="https://github.com/emmetio/emmet-atom">emmet</a> package, v2.3.4</p> <h3 dir="auto">Stack Trace</h3> <p dir="auto">Failed to load the emmet-atom package</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At Cannot find module 'emmet' Error: Cannot find module 'emmet' at Module._resolveFilename (module.js:351:15) at Function.Module._resolveFilename (/Applications/Atom.app/Contents/Resources/app/src/module-cache.js:383:52) at Function.Module._load (module.js:293:25) at Module.require (module.js:380:17) at require (module.js:399:17) at Object.&lt;anonymous&gt; (/Users/Kayla/.atom/packages/emmet/lib/emmet.coffee:8:11) at Object.&lt;anonymous&gt; (/Users/Kayla/.atom/packages/emmet/lib/emmet.coffee:188:4) at Module._compile (module.js:475:26) at Object.requireCoffeeScript (/Applications/Atom.app/Contents/Resources/app/node_modules/coffee-cash/lib/coffee-cash.js:85:19) at Module.load (module.js:370:32)"><pre class="notranslate"><code class="notranslate">At Cannot find module 'emmet' Error: Cannot find module 'emmet' at Module._resolveFilename (module.js:351:15) at Function.Module._resolveFilename (/Applications/Atom.app/Contents/Resources/app/src/module-cache.js:383:52) at Function.Module._load (module.js:293:25) at Module.require (module.js:380:17) at require (module.js:399:17) at Object.&lt;anonymous&gt; (/Users/Kayla/.atom/packages/emmet/lib/emmet.coffee:8:11) at Object.&lt;anonymous&gt; (/Users/Kayla/.atom/packages/emmet/lib/emmet.coffee:188:4) at Module._compile (module.js:475:26) at Object.requireCoffeeScript (/Applications/Atom.app/Contents/Resources/app/node_modules/coffee-cash/lib/coffee-cash.js:85:19) at Module.load (module.js:370:32) </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="{ &quot;core&quot;: { &quot;themes&quot;: [ &quot;atom-dark-ui&quot;, &quot;monokai&quot; ] }, &quot;emmet&quot;: {} }"><pre class="notranslate">{ <span class="pl-ent">"core"</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>monokai<span class="pl-pds">"</span></span> ] }, <span class="pl-ent">"emmet"</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 emmet, v2.3.4 emmet-atom, v2.3.0 file-icons, v1.4.5 linter, v0.10.1 linter-ruby, v0.1.4 monokai, v0.12.0 # Dev No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span> emmet, v2.<span class="pl-ii">3</span>.<span class="pl-ii">4</span> emmet<span class="pl-k">-</span>atom, v2.<span class="pl-ii">3</span>.<span class="pl-ii">0</span> file<span class="pl-k">-</span>icons, v1.<span class="pl-ii">4</span>.<span class="pl-ii">5</span> linter, v0.<span class="pl-ii">10</span>.<span class="pl-ii">1</span> linter<span class="pl-k">-</span>ruby, v0.<span class="pl-ii">1</span>.<span class="pl-ii">4</span> monokai, v0.<span class="pl-ii">12</span>.<span class="pl-ii">0</span> <span class="pl-c"><span class="pl-c">#</span> Dev</span> <span class="pl-en">No</span> <span class="pl-en">dev</span> packages</pre></div>
1
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=ferba" rel="nofollow">David Ferbas</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-4100?redirect=false" rel="nofollow">SPR-4100</a></strong> and commented</p> <p dir="auto">The spring-2.5-rc2.pom file contains the wrong version information<br> &lt;version&gt;2.5-rc1&lt;/version&gt; needs to be &lt;version&gt;2.5-rc2&lt;/version&gt;</p> <hr> <p dir="auto"><strong>Affects:</strong> 2.5 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="398082659" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/8787" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/8787/hovercard" href="https://github.com/spring-projects/spring-framework/issues/8787">#8787</a> All POM file in folder /dist/maven (spring-framework-2.5-rc2-with-dependencies.zip) refers to version 2.5-rc1 instead of 2.5-rc2 (<em><strong>"is duplicated by"</strong></em>)</li> </ul>
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=manifoldronin" rel="nofollow">Jing Xue</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-2660?redirect=false" rel="nofollow">SPR-2660</a></strong> and commented</p> <p dir="auto">Currently if items evaluates to a Map, OptionWriter always uses the key for the option value and the value for the option label. However if the value from the Map is a bean and only a property on that bean is meant for the label, the options have to be manually rendered with a forEach loop and option tags.</p> <p dir="auto">On the other hand, itemValue and itemLabel attributes are simply ignored in this case, so it would be more convenient and perhaps more consistent if OptionWriter could use itemValue for the property name to retrieve the option value from the map key object, and itemLabel to retrieve the option label from the map value object.</p> <hr> <p dir="auto"><strong>Affects:</strong> 2.0 RC4</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="398075930" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/7905" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/7905/hovercard" href="https://github.com/spring-projects/spring-framework/issues/7905">#7905</a> [form:options] itemLabel and itemValue attributes ignored when rendering Map (<em><strong>"is duplicated by"</strong></em>)</li> </ul>
0
<p dir="auto">Version: 1.0.0<br> OS Version: Microsoft Windows NT 10.0.18363.0<br> IntPtr Length: 8<br> x64: True<br> Date: 08/10/2020 10:27:58<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)<br> <a href="https://github.com/microsoft/PowerToys/files/5049954/2020-08-10.txt">2020-08-10.txt</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
<p dir="auto">I got two snippets code as follows.</p> <blockquote> <blockquote> <p dir="auto">numpy.std([766897346, 766897346, 766897346, 766897346, 766897346, 766897346, 766897346, 766897346, 766897346, 766897346])</p> <p dir="auto">0</p> <p dir="auto">pd.Series([766897346, 766897346, 766897346, 766897346, 766897346, 766897346, 766897346, 766897346, 766897346, 766897346]).std(ddof=0)</p> <p dir="auto">10.119288512538814</p> </blockquote> </blockquote> <p dir="auto">The two lists are identical but the result are quite different. I think the pandas' result must be wrong. I work on the latest version 0.16.2 with Python 3.4.</p> <p dir="auto">May I ask why? Is it a bug?</p>
<p dir="auto">The var method acts inconsistently when used on the Series vs the numpy array returned from values:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="dat = pd.DataFrame({'x': [1,2,3,4,0,0,0]}) print(dat['x'].values.var()) print(dat['x'].var())"><pre class="notranslate"><span class="pl-s1">dat</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>({<span class="pl-s">'x'</span>: [<span class="pl-c1">1</span>,<span class="pl-c1">2</span>,<span class="pl-c1">3</span>,<span class="pl-c1">4</span>,<span class="pl-c1">0</span>,<span class="pl-c1">0</span>,<span class="pl-c1">0</span>]}) <span class="pl-en">print</span>(<span class="pl-s1">dat</span>[<span class="pl-s">'x'</span>].<span class="pl-s1">values</span>.<span class="pl-en">var</span>()) <span class="pl-en">print</span>(<span class="pl-s1">dat</span>[<span class="pl-s">'x'</span>].<span class="pl-en">var</span>())</pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Prints: 2.24489795918 2.61904761905"><pre class="notranslate"><code class="notranslate">Prints: 2.24489795918 2.61904761905 </code></pre></div> <p dir="auto">This is due to numpy using ddof=0 as its default (calculates the biased variance), whereas pandas calculates the unbiased variance by default. These two should be consistent, so either pandas should adapt or numpy should (maybe it should be numpy since we should calculate unbiased by default?).</p> <p dir="auto">The other problem is that pandas does not calculate the variance of this DataFrame properly.<br> Inconsistent definition aside, the variance should clearly not be zero when calculated from pandas.</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="dat = pd.DataFrame({'x': [9.0692124699,9.0692124692,9.0692124702,9.0692124686, 9.0692124687,9.0692124707,9.0692124679,9.0692124685, 9.0692124698,9.0692124719,9.0692124698,9.0692124692, 9.0692124689,9.0692124673,9.0692124707,9.0692124714, 9.0692124714,9.0692124734,9.0692124719,9.0692124710, 9.0692124694,9.0692124705,9.0692124713,9.0692124717 ]}) print(dat['x'].values.var()) print(dat['x'].var())"><pre class="notranslate"><span class="pl-s1">dat</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>({<span class="pl-s">'x'</span>: [<span class="pl-c1">9.0692124699</span>,<span class="pl-c1">9.0692124692</span>,<span class="pl-c1">9.0692124702</span>,<span class="pl-c1">9.0692124686</span>, <span class="pl-c1">9.0692124687</span>,<span class="pl-c1">9.0692124707</span>,<span class="pl-c1">9.0692124679</span>,<span class="pl-c1">9.0692124685</span>, <span class="pl-c1">9.0692124698</span>,<span class="pl-c1">9.0692124719</span>,<span class="pl-c1">9.0692124698</span>,<span class="pl-c1">9.0692124692</span>, <span class="pl-c1">9.0692124689</span>,<span class="pl-c1">9.0692124673</span>,<span class="pl-c1">9.0692124707</span>,<span class="pl-c1">9.0692124714</span>, <span class="pl-c1">9.0692124714</span>,<span class="pl-c1">9.0692124734</span>,<span class="pl-c1">9.0692124719</span>,<span class="pl-c1">9.0692124710</span>, <span class="pl-c1">9.0692124694</span>,<span class="pl-c1">9.0692124705</span>,<span class="pl-c1">9.0692124713</span>,<span class="pl-c1">9.0692124717</span> ]}) <span class="pl-en">print</span>(<span class="pl-s1">dat</span>[<span class="pl-s">'x'</span>].<span class="pl-s1">values</span>.<span class="pl-en">var</span>()) <span class="pl-en">print</span>(<span class="pl-s1">dat</span>[<span class="pl-s">'x'</span>].<span class="pl-en">var</span>())</pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Prints: 2.06817742558e-18 0.0"><pre class="notranslate"><code class="notranslate">Prints: 2.06817742558e-18 0.0 </code></pre></div> <p dir="auto">Here is the system information:<br> INSTALLED VERSIONS:<br> commit: None<br> python: 3.4.0.final.0<br> python-bits: 64<br> OS: Linux<br> OS-release: 3.13.0-52-generic<br> machine: x86_64<br> processor: x86_64<br> byteorder: little<br> LC_ALL: None<br> LANG: en_CA.UTF-8</p> <p dir="auto">pandas: 0.16.1<br> numpy: 1.9.2</p>
1
<h3 dir="auto">Model description</h3> <p dir="auto">FELIX is an encoder-only text editing model, which allows for faster editing and summarization than sequence-to-sequence models, because the summarization can be computed in parallel instead of autoregressively.</p> <ul dir="auto"> <li><a href="https://ai.googleblog.com/2021/05/introducing-felix-flexible-text-editing.html?hl=hr&amp;m=1" rel="nofollow">Blog</a></li> <li><a href="https://aclanthology.org/2020.findings-emnlp.111/" rel="nofollow">Paper</a></li> </ul> <h3 dir="auto">Open source status</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> The model implementation is available</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> The model weights are available</li> </ul> <h3 dir="auto">Provide useful links for the implementation</h3> <p dir="auto"><a href="https://github.com/google-research/google-research/tree/master/felix">https://github.com/google-research/google-research/tree/master/felix</a></p> <p dir="auto">No weights are available, but code to train it is available. A component of FELIX is BERT, so training FELIX is a matter of fine-tuning a pre-trained BERT model.</p> <p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Jmallins/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Jmallins">@Jmallins</a></p>
<h1 dir="auto"><g-emoji class="g-emoji" alias="star2" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f31f.png">🌟</g-emoji> New model addition</h1> <h2 dir="auto">Model description</h2> <p dir="auto">New model released by <a href="https://github.com/google-research/google-research/tree/master/felix">google</a></p> <h2 dir="auto">Open source status</h2> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> the model implementation is available: <a href="https://github.com/google-research/google-research/tree/master/felix">https://github.com/google-research/google-research/tree/master/felix</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> the model weights are available: <a href="https://github.com/google-research/google-research/tree/master/felix">https://github.com/google-research/google-research/tree/master/felix</a> (pretrained <code class="notranslate">bert-base-cased</code> can be used)</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> who are the authors: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Jmallins/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Jmallins">@Jmallins</a></li> </ul>
1
<p dir="auto">Hi,</p> <p dir="auto">After I've upgraded ansible to ansible 1.9.0.1, i've got a problem with ask_sudo_password.<br> (server asks for sudo password)</p> <p dir="auto">(ansible runs on arch linux, the target system is CentOS6)<br> With earlier versions of ansible (1.8.2, 1.8.4) runs fine</p> <p dir="auto">My settings:<br> sudo_user = root<br> sudo = True</p> <h1 dir="auto">ask_sudo_pass = True</h1> <p dir="auto">become=False</p> <h1 dir="auto">become_method='sudo'</h1> <p dir="auto">become_user=''</p> <h1 dir="auto">become_ask_pass=False</h1> <p dir="auto">(to fix problem in issue <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="64550171" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible/issues/10547" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible/issues/10547/hovercard" href="https://github.com/ansible/ansible/issues/10547">#10547</a>)</p> <p dir="auto">In playbook:<br> ...<br> sudo: True<br> ...</p> <p dir="auto">and the command:<br> ansible -m setup -K<br> SUDO password:<br> xxxxxx server xxxxxx | FAILED =&gt; ssh connection closed waiting for a privilege escalation password prompt</p>
<p dir="auto">Issue Type:</p> <p dir="auto">Bug</p> <p dir="auto">Ansible Version: 1.9.0.1 from ppa stable.</p> <p dir="auto">Environment:</p> <p dir="auto">Linux Ubuntu 12.04 host to Linux Debian wheezy target.</p> <p dir="auto">Summary:</p> <p dir="auto">playbook roles are not executed as sudo anymore.</p> <p dir="auto">Steps To Reproduce:</p> <p dir="auto">consider the following playbook working with 1.7.2 but no more working with the 1.9.0.1:</p> <p dir="auto">test.yml</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- hosts: test roles: - role: addgroups sudo: yes"><pre class="notranslate"><code class="notranslate">- hosts: test roles: - role: addgroups sudo: yes </code></pre></div> <p dir="auto">roles/addgroups/tasks/main.yml</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" --- - name: add toto group group: name=toto state=present"><pre class="notranslate"><code class="notranslate"> --- - name: add toto group group: name=toto state=present </code></pre></div> <p dir="auto">Expected Results:</p> <p dir="auto">add the test group without any failure.</p> <p dir="auto">Actual Results:</p> <p dir="auto">failed: [zoo] =&gt; {"failed": true, "name": "test"}<br> msg: groupadd: Permission denied.<br> groupadd: cannot lock /etc/group; try again later</p> <p dir="auto">digging into the verbose mode we can observe that the addgroups role is still called with sudo with older version i.e. 1.7.2 and not any more called with sudo with 1.9.0.1</p> <p dir="auto">1.7.2</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="u'/bin/sh -c \'sudo -k &amp;&amp; sudo -H -S -p &quot;[sudo via ansible, key=hgpjwxwhvkcrvjywzmwiwhxnnamxrfln] password: &quot; -u root /bin/sh -c \'&quot;\'&quot;\'echo SUDO-SUCCESS-hgpjwxwhvkcrvjywzmwiwhxnnamxrfln; LANG=C LC_CTYPE=C /usr/bin/python /home/test/.ansible/tmp/ansible-tmp-1427390484.81-80330223816703/group\'&quot;"><pre class="notranslate"><code class="notranslate">u'/bin/sh -c \'sudo -k &amp;&amp; sudo -H -S -p "[sudo via ansible, key=hgpjwxwhvkcrvjywzmwiwhxnnamxrfln] password: " -u root /bin/sh -c \'"\'"\'echo SUDO-SUCCESS-hgpjwxwhvkcrvjywzmwiwhxnnamxrfln; LANG=C LC_CTYPE=C /usr/bin/python /home/test/.ansible/tmp/ansible-tmp-1427390484.81-80330223816703/group\'" </code></pre></div> <p dir="auto">1.9.0.1</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/bin/sh -c 'LANG=C LC_CTYPE=C /usr/bin/python /home/test/.ansible/tmp/ansible-tmp-1427392790.43-74683051810820/group"><pre class="notranslate"><code class="notranslate">/bin/sh -c 'LANG=C LC_CTYPE=C /usr/bin/python /home/test/.ansible/tmp/ansible-tmp-1427392790.43-74683051810820/group </code></pre></div> <p dir="auto">Cheers</p>
1
<p dir="auto">If I have a function prototype something like this:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="doit(a::Array{Tuple{Int, MyType}, 1}, b::Int, c::MyType)"><pre class="notranslate"><code class="notranslate">doit(a::Array{Tuple{Int, MyType}, 1}, b::Int, c::MyType) </code></pre></div> <p dir="auto">where MyType is an ordinary Julia GC/heap allocated type, then the following line of code within the function seems to lead to a heap allocation of a tuple (the same is the case for any immutable type).</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="a[1] = b, c"><pre class="notranslate"><code class="notranslate">a[1] = b, c </code></pre></div> <p dir="auto">There seem to be two issues here:</p> <ol dir="auto"> <li> <p dir="auto">There seems to be no efficient way to write an immutable value directly into an array in Julia. The above shouldn't require any allocation of any kind, stack or heap.</p> </li> <li> <p dir="auto">Apparently, Julia GC/heap-allocates immutables if they contain heap references. I don't understand why, since surely the GC scans the stack conservatively for pointers.</p> </li> </ol> <p dir="auto">Anyway, I have been unable to find a ticket or PR which deals with the above serious performance issue (which we hit in practice), directly.</p> <p dir="auto">(Obliquely) relevant tickets/PRs/tickets seem to include [1]. [2], [3] and [4] and of course the tupocalypse itself. There are also some relevant sounding things on Jeff's compiler optimisation tracker [5], though I am not clear if any are directly relevant.</p> <p dir="auto">[1] <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="41144467" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/8134" data-hovercard-type="pull_request" data-hovercard-url="/JuliaLang/julia/pull/8134/hovercard" href="https://github.com/JuliaLang/julia/pull/8134">#8134</a><br> [2] <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="95850049" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/12205" data-hovercard-type="pull_request" data-hovercard-url="/JuliaLang/julia/pull/12205/hovercard" href="https://github.com/JuliaLang/julia/pull/12205">#12205</a><br> [3] <a href="https://groups.google.com/forum/#!topic/julia-users/F_ncyfP2vxg" rel="nofollow">https://groups.google.com/forum/#!topic/julia-users/F_ncyfP2vxg</a><br> [4] <a href="https://groups.google.com/forum/#!topic/julia-users/LthfABeDN50" rel="nofollow">https://groups.google.com/forum/#!topic/julia-users/LthfABeDN50</a><br> [5] <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="15674221" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/3440" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/3440/hovercard" href="https://github.com/JuliaLang/julia/issues/3440">#3440</a></p>
<p dir="auto">Using <code class="notranslate">enumerate</code> to iterate through array of mutable objects allocates, but using a simple for loop does not:</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="type MyMutable a::Int end immutable MyImmutable a::Int end function sumit(arr) val = 0 for i=1:length(arr) val += arr[i].a end return val end function sumit2(arr) val = 0 for (i, obj) in enumerate(arr) val += obj.a end return val end nel = 5000 arr = Array(MyMutable, nel) arr2 = Array(MyImmutable, nel) for i=1:nel arr[i] = MyMutable(i) arr2[i] = MyImmutable(i) end # warmup @time sumit(arr) @time sumit(arr2) @time sumit2(arr) @time sumit2(arr2) println(&quot;\nfinal times:&quot;) @time sumit(arr) println(&quot; mutable explicit for loop @time printed above\n&quot;) @time sumit(arr2) println(&quot; immutable explicit for loop @time printed above\n&quot;) @time sumit2(arr) println(&quot; mutable enumerate @time printed above\n&quot;) @time sumit2(arr2) println(&quot; immutable enumerate @time printed above\n&quot;)"><pre class="notranslate">type MyMutable a<span class="pl-k">::</span><span class="pl-c1">Int</span> <span class="pl-k">end</span> immutable MyImmutable a<span class="pl-k">::</span><span class="pl-c1">Int</span> <span class="pl-k">end</span> <span class="pl-k">function</span> <span class="pl-en">sumit</span>(arr) val <span class="pl-k">=</span> <span class="pl-c1">0</span> <span class="pl-k">for</span> i<span class="pl-k">=</span><span class="pl-c1">1</span><span class="pl-k">:</span><span class="pl-c1">length</span>(arr) val <span class="pl-k">+=</span> arr[i]<span class="pl-k">.</span>a <span class="pl-k">end</span> <span class="pl-k">return</span> val <span class="pl-k">end</span> <span class="pl-k">function</span> <span class="pl-en">sumit2</span>(arr) val <span class="pl-k">=</span> <span class="pl-c1">0</span> <span class="pl-k">for</span> (i, obj) <span class="pl-k">in</span> <span class="pl-c1">enumerate</span>(arr) val <span class="pl-k">+=</span> obj<span class="pl-k">.</span>a <span class="pl-k">end</span> <span class="pl-k">return</span> val <span class="pl-k">end</span> nel <span class="pl-k">=</span> <span class="pl-c1">5000</span> arr <span class="pl-k">=</span> <span class="pl-c1">Array</span>(MyMutable, nel) arr2 <span class="pl-k">=</span> <span class="pl-c1">Array</span>(MyImmutable, nel) <span class="pl-k">for</span> i<span class="pl-k">=</span><span class="pl-c1">1</span><span class="pl-k">:</span>nel arr[i] <span class="pl-k">=</span> <span class="pl-c1">MyMutable</span>(i) arr2[i] <span class="pl-k">=</span> <span class="pl-c1">MyImmutable</span>(i) <span class="pl-k">end</span> <span class="pl-c"><span class="pl-c">#</span> warmup</span> <span class="pl-c1">@time</span> <span class="pl-c1">sumit</span>(arr) <span class="pl-c1">@time</span> <span class="pl-c1">sumit</span>(arr2) <span class="pl-c1">@time</span> <span class="pl-c1">sumit2</span>(arr) <span class="pl-c1">@time</span> <span class="pl-c1">sumit2</span>(arr2) <span class="pl-c1">println</span>(<span class="pl-s"><span class="pl-pds">"</span><span class="pl-cce">\n</span>final times:<span class="pl-pds">"</span></span>) <span class="pl-c1">@time</span> <span class="pl-c1">sumit</span>(arr) <span class="pl-c1">println</span>(<span class="pl-s"><span class="pl-pds">"</span> mutable explicit for loop @time printed above<span class="pl-cce">\n</span><span class="pl-pds">"</span></span>) <span class="pl-c1">@time</span> <span class="pl-c1">sumit</span>(arr2) <span class="pl-c1">println</span>(<span class="pl-s"><span class="pl-pds">"</span> immutable explicit for loop @time printed above<span class="pl-cce">\n</span><span class="pl-pds">"</span></span>) <span class="pl-c1">@time</span> <span class="pl-c1">sumit2</span>(arr) <span class="pl-c1">println</span>(<span class="pl-s"><span class="pl-pds">"</span> mutable enumerate @time printed above<span class="pl-cce">\n</span><span class="pl-pds">"</span></span>) <span class="pl-c1">@time</span> <span class="pl-c1">sumit2</span>(arr2) <span class="pl-c1">println</span>(<span class="pl-s"><span class="pl-pds">"</span> immutable enumerate @time printed above<span class="pl-cce">\n</span><span class="pl-pds">"</span></span>)</pre></div> <p dir="auto">results:</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="final times: 0.000043 seconds (5 allocations: 176 bytes) mutable explicit for loop @time printed above 0.000009 seconds (5 allocations: 176 bytes) immutable explicit for loop @time printed above 0.000123 seconds (10.01 k allocations: 312.688 KB) mutable enumerate @time printed above 0.000008 seconds (6 allocations: 192 bytes) immutable enumerate @time printed above"><pre class="notranslate">final times<span class="pl-k">:</span> <span class="pl-c1">0.000043</span> seconds (<span class="pl-c1">5</span> allocations<span class="pl-k">:</span> <span class="pl-c1">176</span> bytes) mutable explicit <span class="pl-k">for</span> loop <span class="pl-c1">@time</span> printed above <span class="pl-c1">0.000009</span> seconds (<span class="pl-c1">5</span> allocations<span class="pl-k">:</span> <span class="pl-c1">176</span> bytes) immutable explicit <span class="pl-k">for</span> loop <span class="pl-c1">@time</span> printed above <span class="pl-c1">0.000123</span> seconds (<span class="pl-c1">10.01</span> k allocations<span class="pl-k">:</span> <span class="pl-c1">312.688</span> KB) mutable enumerate <span class="pl-c1">@time</span> printed above <span class="pl-c1">0.000008</span> seconds (<span class="pl-c1">6</span> allocations<span class="pl-k">:</span> <span class="pl-c1">192</span> bytes) immutable enumerate <span class="pl-c1">@time</span> printed above</pre></div> <p dir="auto">also, using <code class="notranslate">for obj in arr</code> rather than <code class="notranslate">enumerate</code> does not allocate.</p>
1
<p dir="auto">Are there any plans to supports automatic imports for typescript? I don't think this currently works even if typings files are included.</p> <p dir="auto">Thanks.</p>
<p dir="auto">Initial loading of VS Code can take between 10 and 20 seconds.<br> The <code class="notranslate">Reload Window</code> command takes about 10 seconds to complete.</p> <p dir="auto">I've tried it from the installer and also building from source with similar problems.</p> <p dir="auto">CPU profiling shows <code class="notranslate">ChildProcess.spawn</code> is the biggest problem, which calls all the way down to <code class="notranslate">node.js _tickCallback</code>. I'd be happy to email someone the profile if it would help.</p> <p dir="auto">I suppose this issue could be with node itself? I'm at a loss, since VS Code works perfectly on my home computers which have no proxy.</p> <p dir="auto"><strong>System Properties</strong></p> <ul dir="auto"> <li>Windows 7 Enterprise SP1</li> <li>Intel i5-4590, 8GB RAM, Samsung 950Pro SSD</li> </ul> <p dir="auto"><strong>Corporate Environment</strong></p> <ul dir="auto"> <li>Behind a NTLM proxy. Have CNTLM installed with environment variables <code class="notranslate">http_proxy</code> and <code class="notranslate">https_proxy</code> pointing to it. npm works fine with this setup.</li> <li>Symantec Endpoint is installed also.</li> </ul>
0
<p dir="auto">In Matlab there's the <code class="notranslate">format</code> command, which provides output format modification for e.g. the displayed precision and other things like engineering format. As an engineer, the latter is of particular interest to me, since only showing exponents which are multiples of 3, makes it a lot easier to work with calculated values. This should affect both display() and show(). Could this be implemented?</p>
<p dir="auto">I want change output format for numbers (stand alone floats, float matrix, <code class="notranslate">BigFloat</code>s). I can do it in IPython by using <code class="notranslate">%precision</code> magic function. I didn't find any equivalent in Julia.</p> <p dir="auto">I know that I can use <code class="notranslate">round</code> but it actually returns different number. It's also cumbersome to convert arrays with combination <code class="notranslate">map</code> + <code class="notranslate">round</code>. One another problem: I didn't get how to change real or output precision of <code class="notranslate">BigFloat</code>: <code class="notranslate">set_bigfloat_precision</code> changes precision for all new <code class="notranslate">BigFloat</code>s, <code class="notranslate">copy</code> and <code class="notranslate">deepcopy</code> don't help (they copy value irrespective of new default <code class="notranslate">BigFloat</code> precision), naive precision change via <code class="notranslate">BigFloat.prec</code> corrupts it.</p> <p dir="auto">I know, that I handle lot's of different topics in this question and I as a programmer understand that lot's of difficulties lays in output formats. But my friend, mathematician asked me: "Why can I just type %precision in my IPython notebook but not in Julia? Isn't output format change essential feature?".</p>
1
<h4 dir="auto">Describe the bug</h4> <p dir="auto"><a href="https://scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.CategoricalNB.html#sklearn.naive_bayes.CategoricalNB" rel="nofollow">https://scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.CategoricalNB.html#sklearn.naive_bayes.CategoricalNB</a></p> <p dir="auto">NB can not treat new values in test data<br> it is bug since real data has new values</p>
<h4 dir="auto">Description</h4> <p dir="auto">Calling predict() / predict_proba() / predict_log_proba() on CategoricalNB model throws IndexError.</p> <h4 dir="auto">Steps/Code to Reproduce</h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import numpy as np from sklearn.datasets import make_classification from sklearn.naive_bayes import CategoricalNB from sklearn.model_selection import train_test_split X, y = make_classification(n_features=10, n_classes=3, n_samples=1000, random_state=42, n_redundant=0, n_informative=6) X = np.abs(X.astype(np.int)) X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.5, random_state=42) model = CategoricalNB().fit(X_train, y_train) model.predict(X_test)"><pre class="notranslate"><code class="notranslate">import numpy as np from sklearn.datasets import make_classification from sklearn.naive_bayes import CategoricalNB from sklearn.model_selection import train_test_split X, y = make_classification(n_features=10, n_classes=3, n_samples=1000, random_state=42, n_redundant=0, n_informative=6) X = np.abs(X.astype(np.int)) X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.5, random_state=42) model = CategoricalNB().fit(X_train, y_train) model.predict(X_test) </code></pre></div> <h4 dir="auto">Expected Results</h4> <p dir="auto">Predictions for X_test(integer labels).</p> <h4 dir="auto">Actual Results</h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="--------------------------------------------------------------------------- IndexError Traceback (most recent call last) &lt;ipython-input-3-551bb8080923&gt; in &lt;module&gt; 10 model = CategoricalNB().fit(X_train, y_train) 11 ---&gt; 12 model.predict(X_test) ~/Documents/MachineLearning/onnx_projects/skl_env/lib/python3.6/site-packages/sklearn/naive_bayes.py in predict(self, X) 75 check_is_fitted(self) 76 X = self._check_X(X) ---&gt; 77 jll = self._joint_log_likelihood(X) 78 return self.classes_[np.argmax(jll, axis=1)] 79 ~/Documents/MachineLearning/onnx_projects/skl_env/lib/python3.6/site-packages/sklearn/naive_bayes.py in _joint_log_likelihood(self, X) 1217 for i in range(self.n_features_): 1218 indices = X[:, i] -&gt; 1219 jll += self.feature_log_prob_[i][:, indices].T 1220 total_ll = jll + self.class_log_prior_ 1221 return total_ll IndexError: index 5 is out of bounds for axis 1 with size 5"><pre class="notranslate"><code class="notranslate">--------------------------------------------------------------------------- IndexError Traceback (most recent call last) &lt;ipython-input-3-551bb8080923&gt; in &lt;module&gt; 10 model = CategoricalNB().fit(X_train, y_train) 11 ---&gt; 12 model.predict(X_test) ~/Documents/MachineLearning/onnx_projects/skl_env/lib/python3.6/site-packages/sklearn/naive_bayes.py in predict(self, X) 75 check_is_fitted(self) 76 X = self._check_X(X) ---&gt; 77 jll = self._joint_log_likelihood(X) 78 return self.classes_[np.argmax(jll, axis=1)] 79 ~/Documents/MachineLearning/onnx_projects/skl_env/lib/python3.6/site-packages/sklearn/naive_bayes.py in _joint_log_likelihood(self, X) 1217 for i in range(self.n_features_): 1218 indices = X[:, i] -&gt; 1219 jll += self.feature_log_prob_[i][:, indices].T 1220 total_ll = jll + self.class_log_prior_ 1221 return total_ll IndexError: index 5 is out of bounds for axis 1 with size 5 </code></pre></div> <h4 dir="auto">Versions</h4> <p dir="auto">System:<br> python: 3.6.8 (v3.6.8:3c6b436a57, Dec 24 2018, 02:04:31) [GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.57)]<br> executable: /Users/prroy/Documents/MachineLearning/onnx_projects/skl_env/bin/python3<br> machine: Darwin-19.2.0-x86_64-i386-64bit</p> <p dir="auto">Python dependencies:<br> pip: 18.1<br> setuptools: 40.6.2<br> sklearn: 0.22.1<br> numpy: 1.18.0<br> scipy: 1.4.1<br> Cython: 0.29.14<br> pandas: 0.25.3<br> matplotlib: None<br> joblib: 0.14.1</p> <p dir="auto">Built with OpenMP: True</p>
1
<p dir="auto">Is there a way to enable CSS scope like jQueryUI's ? <a href="http://jqueryui.com/download/" rel="nofollow">http://jqueryui.com/download/</a> (scroll to bottom)</p>
<p dir="auto">When i add the bootstrap stylesheet into my application, the bootstrap overrides all other tags i had defined in other stylesheets. it would be nice for the bootstrap to have a name prefix to all defined tags that way naming collisions dont occur.</p>
1
<p dir="auto">Do you want to request a feature or report a bug?</p> <p dir="auto">A bug?</p> <p dir="auto">What is the current behavior?</p> <p dir="auto">Cannot set property 'memoizedState' of null</p> <p dir="auto">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:</p> <p dir="auto">const processLink = html =&gt; {<br> return renderToStaticMarkup()<br> };</p> <p dir="auto">const RichText = ({ html }) =&gt; {<br> const htmlProcessed = useMemo(() =&gt; processLink(html), [html]);<br> }<br> See </p> <p dir="auto">What is the expected behavior?</p> <p dir="auto">Which versions of React, and which browser / OS are affected by this issue? Did this work in previous versions of ### React?</p> <h2 dir="auto">The current behavior</h2> <h2 dir="auto">The expected behavior</h2>
<p dir="auto">In terms of performance, is there any difference between using arrow functions and bind manually when using es6 classes? Using arrow functions the methods are not on the class prototype, it will be on the class instance only. Using bind will attach the methods to class prototype. It sounds like bind manually will have better performance, does that mean we should consider using bind instead of arrow functions for class methods?</p> <p dir="auto">Any suggestions or comments are really appreciated!</p> <p dir="auto">So in terms of performance, would you recommend using</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class MyComponent extends React.Component { constructor(props) { super(props) } methodA = () =&gt; { ... } }"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-v">MyComponent</span> <span class="pl-k">extends</span> <span class="pl-v">React</span><span class="pl-kos">.</span><span class="pl-c1">Component</span> <span class="pl-kos">{</span> <span class="pl-en">constructor</span><span class="pl-kos">(</span><span class="pl-s1">props</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-smi">super</span><span class="pl-kos">(</span><span class="pl-s1">props</span><span class="pl-kos">)</span> <span class="pl-kos">}</span> <span class="pl-c1">methodA</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> ... <span class="pl-kos">}</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">or</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class MyComponent extends React.Component { constructor(props) { super(props) this.methodA = this.methodA.bind(this) } methodA() { ... } }"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-v">MyComponent</span> <span class="pl-k">extends</span> <span class="pl-v">React</span><span class="pl-kos">.</span><span class="pl-c1">Component</span> <span class="pl-kos">{</span> <span class="pl-en">constructor</span><span class="pl-kos">(</span><span class="pl-s1">props</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-smi">super</span><span class="pl-kos">(</span><span class="pl-s1">props</span><span class="pl-kos">)</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">methodA</span> <span class="pl-c1">=</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">methodA</span><span class="pl-kos">.</span><span class="pl-en">bind</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">)</span> <span class="pl-kos">}</span> <span class="pl-en">methodA</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>
0
<p dir="auto">Lets say you have the following:</p> <div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="library example; import 'dart:html'; import &quot;package:angular2/angular2.dart&quot;; import &quot;package:angular2/src/reflection/reflection.dart&quot; show reflector; import &quot;package:angular2/src/reflection/reflection_capabilities.dart&quot; show ReflectionCapabilities; main() { reflector.reflectionCapabilities = new ReflectionCapabilities(); bootstrap(MyApp); } @Component(selector: &quot;my-app&quot;, host: const {'foo': 'bar'}) @View(template: '&lt;div&gt;hello&lt;/div&gt;') class MyApp { }"><pre class="notranslate"><span class="pl-k">library</span> example; <span class="pl-k">import</span> <span class="pl-s">'dart:html'</span>; <span class="pl-k">import</span> <span class="pl-s">"package:angular2/angular2.dart"</span>; <span class="pl-k">import</span> <span class="pl-s">"package:angular2/src/reflection/reflection.dart"</span> <span class="pl-k">show</span> reflector; <span class="pl-k">import</span> <span class="pl-s">"package:angular2/src/reflection/reflection_capabilities.dart"</span> <span class="pl-k">show</span> ReflectionCapabilities; <span class="pl-en">main</span>() { reflector.reflectionCapabilities <span class="pl-k">=</span> <span class="pl-k">new</span> <span class="pl-c1">ReflectionCapabilities</span>(); <span class="pl-en">bootstrap</span>(<span class="pl-c1">MyApp</span>); } <span class="pl-k">@Component</span>(selector<span class="pl-k">:</span> <span class="pl-s">"my-app"</span>, host<span class="pl-k">:</span> <span class="pl-k">const</span> {<span class="pl-s">'foo'</span><span class="pl-k">:</span> <span class="pl-s">'bar'</span>}) <span class="pl-k">@View</span>(template<span class="pl-k">:</span> <span class="pl-s">'&lt;div&gt;hello&lt;/div&gt;'</span>) <span class="pl-k">class</span> <span class="pl-c1">MyApp</span> { }</pre></div> <p dir="auto">It will not set the attribute <code class="notranslate">foo</code> onto the <code class="notranslate">my-app</code> element that lives in your html. It does actually set the attribute on a <code class="notranslate">my-app</code> element, just not the one in the dom. It appears there is some sort of temporary element being created and the attribute is being set on that one.</p>
<p dir="auto">Repro: <a href="https://gist.github.com/jakemac53/795c4f1af486ccfb0014">https://gist.github.com/jakemac53/795c4f1af486ccfb0014</a></p> <p dir="auto">This seems to be caused by the fact that we are creating a second temporary host element for the root component and calling <code class="notranslate">setAttribute</code> <em>before</em> we attach content to the target host element.</p> <p dir="auto">/cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jakemac53/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jakemac53">@jakemac53</a></p>
1
<p dir="auto">When we call <code class="notranslate">jax.random.shuffle(key, array, axis=0)</code> on an ndarray of shape (n,m) I'm expecting (based on the docs) that we'll end up with an new array where every <em>row</em> has the same order internally but the order of the rows is shuffled. I'm not super clear that this is guaranteed by the <a href="https://jax.readthedocs.io/en/latest/jax.random.html#jax.random.shuffle" rel="nofollow">docs</a>, which say:</p> <blockquote> <p dir="auto">Shuffle the elements of an array uniformly at random along an axis.</p> </blockquote> <p dir="auto">But the numpy docs for <a href="https://docs.scipy.org/doc/numpy-1.15.0/reference/generated/numpy.random.shuffle.html" rel="nofollow"><code class="notranslate">numpy.random.shuffle</code></a> do make this super clear, saying that</p> <blockquote> <p dir="auto">This function only shuffles the array along the first axis of a multi-dimensional array. The order of sub-arrays is changed but their contents remains the same.</p> </blockquote> <p dir="auto">So I'm not super sure the <em>intent</em> is for the Jax behavior to mimic the numpy behavior here, but that is what I was expecting. To demonstrate / reproduce this difference in behavior, see this <a href="https://gist.github.com/zmjjmz/099afcefe9ea3cf3e8015dc8c2e7a340">gist</a></p>
<p dir="auto">Possibly related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1427923296" data-permission-text="Title is private" data-url="https://github.com/google/jax/issues/13038" data-hovercard-type="issue" data-hovercard-url="/google/jax/issues/13038/hovercard" href="https://github.com/google/jax/issues/13038">#13038</a>.<br> Possible duplicate of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1533775969" data-permission-text="Title is private" data-url="https://github.com/google/jax/issues/14022" data-hovercard-type="issue" data-hovercard-url="/google/jax/issues/14022/hovercard" href="https://github.com/google/jax/issues/14022">#14022</a>.</p> <h3 dir="auto">Description</h3> <p dir="auto">Neither the <code class="notranslate">jax.default_matmul_precision</code> context manager nor the <code class="notranslate">precision=</code> argument to <code class="notranslate">jax.numpy.matmul</code> could change the precision for matrix multiplication on A100, and the result cannot reach a similar precision to that of numpy using float32.</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np import jax import jaxlib import jax.numpy as jnp from jax.lax import Precision"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span> <span class="pl-k">import</span> <span class="pl-s1">jax</span> <span class="pl-k">import</span> <span class="pl-s1">jaxlib</span> <span class="pl-k">import</span> <span class="pl-s1">jax</span>.<span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">jnp</span> <span class="pl-k">from</span> <span class="pl-s1">jax</span>.<span class="pl-s1">lax</span> <span class="pl-k">import</span> <span class="pl-v">Precision</span></pre></div> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="A = np.array([[1.1111111, 2.2222222], [3.3333333, 4.4444444]], dtype=np.float32) Aj = jnp.array(A)"><pre class="notranslate"><span class="pl-v">A</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">array</span>([[<span class="pl-c1">1.1111111</span>, <span class="pl-c1">2.2222222</span>], [<span class="pl-c1">3.3333333</span>, <span class="pl-c1">4.4444444</span>]], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">np</span>.<span class="pl-s1">float32</span>) <span class="pl-v">Aj</span> <span class="pl-c1">=</span> <span class="pl-s1">jnp</span>.<span class="pl-en">array</span>(<span class="pl-v">A</span>)</pre></div> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# fp32 reference A @ A.T &gt;array([[ 6.1728387, 13.580245 ], &gt; [13.580245 , 30.864195 ]], dtype=float32)"><pre class="notranslate"><span class="pl-c"># fp32 reference</span> <span class="pl-v">A</span> @ <span class="pl-v">A</span>.<span class="pl-v">T</span> <span class="pl-c1">&gt;</span><span class="pl-en">array</span>([[ <span class="pl-c1">6.1728387</span>, <span class="pl-c1">13.580245</span> ], <span class="pl-c1">&gt;</span> [<span class="pl-c1">13.580245</span> , <span class="pl-c1">30.864195</span> ]], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">float32</span>)</pre></div> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Aj @ Aj.T &gt; Array([[ 6.175251, 13.585552], &gt; [13.585552, 30.876255]], dtype=float32)"><pre class="notranslate"><span class="pl-v">Aj</span> @ <span class="pl-v">Aj</span>.<span class="pl-v">T</span> <span class="pl-c1">&gt;</span> <span class="pl-v">Array</span>([[ <span class="pl-c1">6.175251</span>, <span class="pl-c1">13.585552</span>], <span class="pl-c1">&gt;</span> [<span class="pl-c1">13.585552</span>, <span class="pl-c1">30.876255</span>]], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">float32</span>)</pre></div> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="with jax.default_matmul_precision(&quot;float32&quot;): print(Aj @ Aj.T) &gt; [[ 6.175251 13.585552] &gt; [13.585552 30.876255]]"><pre class="notranslate"><span class="pl-k">with</span> <span class="pl-s1">jax</span>.<span class="pl-en">default_matmul_precision</span>(<span class="pl-s">"float32"</span>): <span class="pl-en">print</span>(<span class="pl-v">Aj</span> @ <span class="pl-v">Aj</span>.<span class="pl-v">T</span>) <span class="pl-c1">&gt;</span> [[ <span class="pl-c1">6.175251</span> <span class="pl-c1">13.585552</span>] <span class="pl-c1">&gt;</span> [<span class="pl-c1">13.585552</span> <span class="pl-c1">30.876255</span>]]</pre></div> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="jnp.matmul(Aj, Aj.T, precision=Precision.DEFAULT) &gt; Array([[ 6.175251, 13.585552], &gt; [13.585552, 30.876255]], dtype=float32)"><pre class="notranslate"><span class="pl-s1">jnp</span>.<span class="pl-en">matmul</span>(<span class="pl-v">Aj</span>, <span class="pl-v">Aj</span>.<span class="pl-v">T</span>, <span class="pl-s1">precision</span><span class="pl-c1">=</span><span class="pl-v">Precision</span>.<span class="pl-v">DEFAULT</span>) <span class="pl-c1">&gt;</span> <span class="pl-v">Array</span>([[ <span class="pl-c1">6.175251</span>, <span class="pl-c1">13.585552</span>], <span class="pl-c1">&gt;</span> [<span class="pl-c1">13.585552</span>, <span class="pl-c1">30.876255</span>]], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">float32</span>)</pre></div> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="jnp.matmul(Aj, Aj.T, precision=Precision.HIGH) &gt; Array([[ 6.175251, 13.585552], &gt; [13.585552, 30.876255]], dtype=float32)"><pre class="notranslate"><span class="pl-s1">jnp</span>.<span class="pl-en">matmul</span>(<span class="pl-v">Aj</span>, <span class="pl-v">Aj</span>.<span class="pl-v">T</span>, <span class="pl-s1">precision</span><span class="pl-c1">=</span><span class="pl-v">Precision</span>.<span class="pl-v">HIGH</span>) <span class="pl-c1">&gt;</span> <span class="pl-v">Array</span>([[ <span class="pl-c1">6.175251</span>, <span class="pl-c1">13.585552</span>], <span class="pl-c1">&gt;</span> [<span class="pl-c1">13.585552</span>, <span class="pl-c1">30.876255</span>]], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">float32</span>)</pre></div> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="jnp.matmul(Aj, Aj.T, precision=Precision.HIGHEST) &gt; Array([[ 6.175251, 13.585552], &gt; [13.585552, 30.876255]], dtype=float32)"><pre class="notranslate"><span class="pl-s1">jnp</span>.<span class="pl-en">matmul</span>(<span class="pl-v">Aj</span>, <span class="pl-v">Aj</span>.<span class="pl-v">T</span>, <span class="pl-s1">precision</span><span class="pl-c1">=</span><span class="pl-v">Precision</span>.<span class="pl-v">HIGHEST</span>) <span class="pl-c1">&gt;</span> <span class="pl-v">Array</span>([[ <span class="pl-c1">6.175251</span>, <span class="pl-c1">13.585552</span>], <span class="pl-c1">&gt;</span> [<span class="pl-c1">13.585552</span>, <span class="pl-c1">30.876255</span>]], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">float32</span>)</pre></div> <h3 dir="auto">What jax/jaxlib version are you using?</h3> <p dir="auto">Development branch</p> <h3 dir="auto">Which accelerator(s) are you using?</h3> <p dir="auto">GPU</p> <h3 dir="auto">Additional system info</h3> <p dir="auto">Python 3.11.1, Ubuntu 20.04</p> <h3 dir="auto">NVIDIA GPU info</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" Wed Jan 25 19:41:52 2023 +-----------------------------------------------------------------------------+ | NVIDIA-SMI 470.141.10 Driver Version: 470.141.10 CUDA Version: 11.8 | |-------------------------------+----------------------+----------------------+ | GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC | | Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. | | | | MIG M. | |===============================+======================+======================| | 0 NVIDIA A100-SXM... On | 00000000:07:00.0 Off | 0 | | N/A 31C P0 84W / 400W | 0MiB / 81251MiB | 0% Default | | | | Disabled | +-------------------------------+----------------------+----------------------+ | 1 NVIDIA A100-SXM... On | 00000000:0F:00.0 Off | 0 | | N/A 28C P0 63W / 400W | 0MiB / 81251MiB | 0% Default | | | | Disabled | +-------------------------------+----------------------+----------------------+ | 2 NVIDIA A100-SXM... On | 00000000:47:00.0 Off | 0 | | N/A 27C P0 60W / 400W | 0MiB / 81251MiB | 0% Default | | | | Disabled | +-------------------------------+----------------------+----------------------+ | 3 NVIDIA A100-SXM... On | 00000000:4E:00.0 Off | 0 | | N/A 26C P0 62W / 400W | 0MiB / 81251MiB | 0% Default | | | | Disabled | +-------------------------------+----------------------+----------------------+ | 4 NVIDIA A100-SXM... On | 00000000:87:00.0 Off | 0 | | N/A 35C P0 63W / 400W | 0MiB / 81251MiB | 0% Default | | | | Disabled | +-------------------------------+----------------------+----------------------+ | 5 NVIDIA A100-SXM... On | 00000000:90:00.0 Off | 0 | | N/A 32C P0 61W / 400W | 0MiB / 81251MiB | 0% Default | | | | Disabled | +-------------------------------+----------------------+----------------------+ | 6 NVIDIA A100-SXM... On | 00000000:B7:00.0 Off | 0 | | N/A 32C P0 61W / 400W | 0MiB / 81251MiB | 0% Default | | | | Disabled | +-------------------------------+----------------------+----------------------+ | 7 NVIDIA A100-SXM... On | 00000000:BD:00.0 Off | 0 | | N/A 31C P0 61W / 400W | 0MiB / 81251MiB | 0% Default | | | | Disabled | +-------------------------------+----------------------+----------------------+ +-----------------------------------------------------------------------------+ | Processes: | | GPU GI CI PID Type Process name GPU Memory | | ID ID Usage | |=============================================================================| | No running processes found | +-----------------------------------------------------------------------------+ "><pre class="notranslate"><code class="notranslate"> Wed Jan 25 19:41:52 2023 +-----------------------------------------------------------------------------+ | NVIDIA-SMI 470.141.10 Driver Version: 470.141.10 CUDA Version: 11.8 | |-------------------------------+----------------------+----------------------+ | GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC | | Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. | | | | MIG M. | |===============================+======================+======================| | 0 NVIDIA A100-SXM... On | 00000000:07:00.0 Off | 0 | | N/A 31C P0 84W / 400W | 0MiB / 81251MiB | 0% Default | | | | Disabled | +-------------------------------+----------------------+----------------------+ | 1 NVIDIA A100-SXM... On | 00000000:0F:00.0 Off | 0 | | N/A 28C P0 63W / 400W | 0MiB / 81251MiB | 0% Default | | | | Disabled | +-------------------------------+----------------------+----------------------+ | 2 NVIDIA A100-SXM... On | 00000000:47:00.0 Off | 0 | | N/A 27C P0 60W / 400W | 0MiB / 81251MiB | 0% Default | | | | Disabled | +-------------------------------+----------------------+----------------------+ | 3 NVIDIA A100-SXM... On | 00000000:4E:00.0 Off | 0 | | N/A 26C P0 62W / 400W | 0MiB / 81251MiB | 0% Default | | | | Disabled | +-------------------------------+----------------------+----------------------+ | 4 NVIDIA A100-SXM... On | 00000000:87:00.0 Off | 0 | | N/A 35C P0 63W / 400W | 0MiB / 81251MiB | 0% Default | | | | Disabled | +-------------------------------+----------------------+----------------------+ | 5 NVIDIA A100-SXM... On | 00000000:90:00.0 Off | 0 | | N/A 32C P0 61W / 400W | 0MiB / 81251MiB | 0% Default | | | | Disabled | +-------------------------------+----------------------+----------------------+ | 6 NVIDIA A100-SXM... On | 00000000:B7:00.0 Off | 0 | | N/A 32C P0 61W / 400W | 0MiB / 81251MiB | 0% Default | | | | Disabled | +-------------------------------+----------------------+----------------------+ | 7 NVIDIA A100-SXM... On | 00000000:BD:00.0 Off | 0 | | N/A 31C P0 61W / 400W | 0MiB / 81251MiB | 0% Default | | | | Disabled | +-------------------------------+----------------------+----------------------+ +-----------------------------------------------------------------------------+ | Processes: | | GPU GI CI PID Type Process name GPU Memory | | ID ID Usage | |=============================================================================| | No running processes found | +-----------------------------------------------------------------------------+ </code></pre></div>
0
<p dir="auto">Can i have fix please</p> <p dir="auto"><strong>Originally posted by @F0o0De in <a href="https://github.com/F0o0De/coinigyV2/issues/1">https://github.com/F0o0De/coinigyV2/issues/1</a></strong></p>
<p dir="auto">Remove all my api’s and reset all my accounts and balance to zero. Since, I was bugged and hacked.</p> <p dir="auto">Thank you I really appreciate all the hard work and effort.</p>
1
<p dir="auto">Uncaught Error: spawn mono ENOENT</p> <p dir="auto"><strong>Atom Version</strong>: 0.158.0<br> <strong>System</strong>: Mac OS X 10.10.1<br> <strong>Thrown From</strong>: Atom Core</p> <h3 dir="auto">Steps To Reproduce</h3> <ol dir="auto"> <li>... Create a new empty file in Atom</li> <li>... Toggle the Omnisharp plugin</li> <li>... Uncaught Error!</li> </ol> <h3 dir="auto">Stack Trace</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At events.js:85 Error: spawn mono ENOENT at exports._errnoException (util.js:742:11) at Process.ChildProcess._handle.onexit (child_process.js:1051:32) at child_process.js:1142:20 at process._tickCallback (node.js:378:11) "><pre class="notranslate"><code class="notranslate">At events.js:85 Error: spawn mono ENOENT at exports._errnoException (util.js:742:11) at Process.ChildProcess._handle.onexit (child_process.js:1051:32) at child_process.js:1142:20 at process._tickCallback (node.js:378:11) </code></pre></div>
<p dir="auto">I've installed all the pieces successfully, yet when I open up a .cs file and start omnisharp, I get this error:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/55049/5336031/4f23c51c-7e83-11e4-831e-6e880852426d.png"><img src="https://cloud.githubusercontent.com/assets/55049/5336031/4f23c51c-7e83-11e4-831e-6e880852426d.png" alt="screen shot 2014-12-08 at 2 38 16 am" style="max-width: 100%;"></a></p> <p dir="auto">Running KRE 1.0.0-beta1</p>
1
<p dir="auto">Just tried to sort an array with .localCompare(), which failed with an error, then tried <code class="notranslate">new Intl.Collator()</code>, which also failed. E.g. I assume those browser features are missing in Deno or am I doing something wrong?</p>
<p dir="auto">As seen in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="422116599" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/1952" data-hovercard-type="issue" data-hovercard-url="/denoland/deno/issues/1952/hovercard" href="https://github.com/denoland/deno/issues/1952">#1952</a> / <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="405562913" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/1636" data-hovercard-type="issue" data-hovercard-url="/denoland/deno/issues/1636/hovercard" href="https://github.com/denoland/deno/issues/1636">#1636</a> ICU needs to be added in Deno build.</p> <p dir="auto">Switching this flag to true maybe: <a href="https://github.com/denoland/deno/blob/master/.gn#L50">https://github.com/denoland/deno/blob/master/.gn#L50</a> ?</p> <p dir="auto">ref: <a href="https://v8.dev/docs/i18n" rel="nofollow">https://v8.dev/docs/i18n</a></p>
1
<p dir="auto"><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 (I think)"><pre class="notranslate"><code class="notranslate">[x] bug report (I think) </code></pre></div> <p dir="auto"><strong>Current behavior</strong><br> The AoT compiler is processing and creating <code class="notranslate">.ngfactory.ts</code> files in <code class="notranslate">@angular/material</code> when I use <code class="notranslate">platformBrowser().bootstrapModuleFactory</code>. I have to include this directory in <code class="notranslate">rootDirs</code> for compilation to succeed.</p> <p dir="auto"><strong>Expected behavior</strong><br> I may be wrong here, but I expected only my own project components, styles and templates to be processed.</p> <p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong><br> In fact, the AoT compiler will fail if it doesn't have access to <code class="notranslate">Material</code> files. For instance, if I edit <code class="notranslate">tsconfig.json</code> and change:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&quot;rootDirs&quot;:[&quot;./dev&quot;,&quot;./node_modules/@angular/material&quot;]"><pre class="notranslate"><code class="notranslate">"rootDirs":["./dev","./node_modules/@angular/material"] </code></pre></div> <p dir="auto">to:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&quot;rootDirs&quot;:[&quot;./dev&quot;],"><pre class="notranslate"><code class="notranslate">"rootDirs":["./dev"], </code></pre></div> <p dir="auto">I get 20 or 30 errors of this kind during compilation:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Error File 'C:/.../node_modules/@angular/material/button-toggle/button-toggle.ngfactory.ts' is not under 'rootDir' "><pre class="notranslate"><code class="notranslate">Error File 'C:/.../node_modules/@angular/material/button-toggle/button-toggle.ngfactory.ts' is not under 'rootDir' </code></pre></div> <p dir="auto">If I include <code class="notranslate">Material</code> dir in <code class="notranslate">rootDirs</code>, after compilation, the resulting directory structure (in output folder) is badly structured. <a href="http://stackoverflow.com/questions/39837618/why-does-angular-2-compiler-change-file-structure-when-i-switch-to-ahead-of-time" rel="nofollow">See details here along with tsconfig</a>.</p> <p dir="auto">Even if I include the <code class="notranslate">@angular/material</code> dir in <code class="notranslate">rootDirs</code> and allow the compilation to run (it completes without error), the app fails in the browser with <code class="notranslate">404 not found</code> when trying to load files such as:</p> <blockquote> <p dir="auto">/@angular/core/bundles/core.umd.js/src/linker/ng_module_factory.js<br> /@angular/common/bundles/common.umd.js/src/common_module.js<br> ...</p> </blockquote> <p dir="auto">Here are some suspicious-looking imports in <code class="notranslate">app.module.ngfactory.ts</code></p> <blockquote> <p dir="auto">import * as import87 from '../../node_modules/@angular/material/dialog/dialog-container.ngfactory';<br> import * as import90 from '../../node_modules/@angular/material/tooltip/tooltip.ngfactory';</p> </blockquote> <p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br> To get AoT to work</p> <p dir="auto"><strong>Please tell us about your environment:</strong><br> Windows 7, PhpStorm.</p> <ul dir="auto"> <li><strong>Angular version:</strong> 2.0.1</li> <li><strong>Language:</strong> TypeScript 2.0.1</li> <li><strong>Node (for AoT issues):</strong> <code class="notranslate">node --version</code> = 4.5.0</li> </ul>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/naomiblack/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/naomiblack">@naomiblack</a></p> <p dir="auto">TODO:</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Fix broken links in <code class="notranslate">annotations.ts</code>: PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="87209148" data-permission-text="Title is private" data-url="https://github.com/angular/angular/issues/2475" data-hovercard-type="pull_request" data-hovercard-url="/angular/angular/pull/2475/hovercard" href="https://github.com/angular/angular/pull/2475">#2475</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Fix checkAnchorLinks service in Dgeni to url decode normalized urls when checking dangling links: <del><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="87207362" data-permission-text="Title is private" data-url="https://github.com/angular/dgeni-packages/issues/119" data-hovercard-type="pull_request" data-hovercard-url="/angular/dgeni-packages/pull/119/hovercard" href="https://github.com/angular/dgeni-packages/pull/119">angular/dgeni-packages#119</a></del></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Update dgeni-packages dependency PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="87449042" data-permission-text="Title is private" data-url="https://github.com/angular/angular/issues/2489" data-hovercard-type="pull_request" data-hovercard-url="/angular/angular/pull/2489/hovercard" href="https://github.com/angular/angular/pull/2489">#2489</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Fix document names/ids to not include full heritage of classes: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="87048057" data-permission-text="Title is private" data-url="https://github.com/angular/angular/issues/2462" data-hovercard-type="pull_request" data-hovercard-url="/angular/angular/pull/2462/hovercard" href="https://github.com/angular/angular/pull/2462">#2462</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Merge <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="87561564" data-permission-text="Title is private" data-url="https://github.com/angular/angular/issues/2499" data-hovercard-type="pull_request" data-hovercard-url="/angular/angular/pull/2499/hovercard" href="https://github.com/angular/angular/pull/2499">#2499</a> to get rid of Ambiguous Link warnings caused by <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="87436302" data-permission-text="Title is private" data-url="https://github.com/angular/angular/issues/2486" data-hovercard-type="pull_request" data-hovercard-url="/angular/angular/pull/2486/hovercard" href="https://github.com/angular/angular/pull/2486">#2486</a></li> </ul> <p dir="auto">Opening an issue to track work to fix errors when running the <code class="notranslate">gulp public_docs</code> task. <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/petebacondarwin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/petebacondarwin">@petebacondarwin</a> tells me time is better spent addressing these issues than the ones generated by the <code class="notranslate">gulp docs</code> task. Based on current master (<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/angular/angular/commit/ddd5a235c39477970b8db8c37a1a63a82a389357/hovercard" href="https://github.com/angular/angular/commit/ddd5a235c39477970b8db8c37a1a63a82a389357"><tt>ddd5a23</tt></a>), here are the warnings logged when running <code class="notranslate">gulp public_docs</code>:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="warn: Invalid link (does not match any doc): &quot;QueryList&quot; - doc &quot;DirectiveAnnotation extends Injectable&quot; (class) - from file &quot;angular2/src/core/annotations_impl/annotations.ts&quot; warn: Invalid link (does not match any doc): &quot;QueryList&quot; - doc &quot;DirectiveAnnotation extends Injectable&quot; (class) - from file &quot;angular2/src/core/annotations_impl/annotations.ts&quot; warn: Invalid link (does not match any doc): &quot;DynamicChangeDetection&quot; - doc &quot;ChangeDetection&quot; (class) - from file &quot;angular2/src/change_detection/interfaces.ts&quot; warn: Invalid link (does not match any doc): &quot;JitChangeDetection&quot; - doc &quot;ChangeDetection&quot; (class) - from file &quot;angular2/src/change_detection/interfaces.ts&quot; warn: Invalid link (does not match any doc): &quot;DynamicChangeDetection&quot; - doc &quot;ChangeDetection&quot; (class) - from file &quot;angular2/src/change_detection/interfaces.ts&quot; warn: Invalid link (does not match any doc): &quot;JitChangeDetection&quot; - doc &quot;ChangeDetection&quot; (class) - from file &quot;angular2/src/change_detection/interfaces.ts&quot; warn: Invalid link (does not match any doc): &quot;JitChangeDetection&quot; - doc &quot;DynamicChangeDetection extends ChangeDetection&quot; (class) - from file &quot;angular2/src/change_detection/change_detection.ts&quot; warn: Invalid link (does not match any doc): &quot;DynamicChangeDetection&quot; - doc &quot;JitChangeDetection extends ChangeDetection&quot; (class) - from file &quot;angular2/src/change_detection/change_detection.ts&quot; warn: Invalid link (does not match any doc): &quot;QueryList&quot; - doc &quot;QueryAnnotation extends DependencyAnnotation&quot; (class) - from file &quot;angular2/src/core/annotations_impl/di.ts&quot; warn: Invalid link (does not match any doc): &quot;QueryList&quot; - doc &quot;QueryAnnotation extends DependencyAnnotation&quot; (class) - from file &quot;angular2/src/core/annotations_impl/di.ts&quot; warn: Invalid link (does not match any doc): &quot;ControlGroup&quot; - doc &quot;angular2/forms&quot; (module) - from file &quot;angular2/forms.ts&quot; warn: Invalid link (does not match any doc): &quot;Control&quot; - doc &quot;angular2/forms&quot; (module) - from file &quot;angular2/forms.ts&quot; warn: Invalid link (does not match any doc): &quot;Control&quot; - doc &quot;angular2/forms&quot; (module) - from file &quot;angular2/forms.ts&quot; warn: Invalid link (does not match any doc): &quot;ControlGroup&quot; - doc &quot;Control extends AbstractControl&quot; (class) - from file &quot;angular2/src/forms/model.ts&quot; warn: Invalid link (does not match any doc): &quot;ControlArray&quot; - doc &quot;Control extends AbstractControl&quot; (class) - from file &quot;angular2/src/forms/model.ts&quot; warn: Invalid link (does not match any doc): &quot;Control&quot; - doc &quot;ControlGroup extends AbstractControl&quot; (class) - from file &quot;angular2/src/forms/model.ts&quot; warn: Invalid link (does not match any doc): &quot;Control&quot; - doc &quot;ControlGroup extends AbstractControl&quot; (class) - from file &quot;angular2/src/forms/model.ts&quot; warn: Invalid link (does not match any doc): &quot;ControlArray&quot; - doc &quot;ControlGroup extends AbstractControl&quot; (class) - from file &quot;angular2/src/forms/model.ts&quot; warn: Invalid link (does not match any doc): &quot;ControlArray&quot; - doc &quot;ControlGroup extends AbstractControl&quot; (class) - from file &quot;angular2/src/forms/model.ts&quot; warn: Invalid link (does not match any doc): &quot;Control&quot; - doc &quot;ControlArray extends AbstractControl&quot; (class) - from file &quot;angular2/src/forms/model.ts&quot; warn: Invalid link (does not match any doc): &quot;Control&quot; - doc &quot;ControlArray extends AbstractControl&quot; (class) - from file &quot;angular2/src/forms/model.ts&quot; warn: Invalid link (does not match any doc): &quot;ControlGroup&quot; - doc &quot;ControlArray extends AbstractControl&quot; (class) - from file &quot;angular2/src/forms/model.ts&quot; warn: Invalid link (does not match any doc): &quot;ControlGroup&quot; - doc &quot;ControlArray extends AbstractControl&quot; (class) - from file &quot;angular2/src/forms/model.ts&quot; warn: Invalid link (does not match any doc): &quot;Control&quot; - doc &quot;DefaultValueAccessor implements ControlValueAccessor&quot; (class) - from file &quot;angular2/src/forms/directives/default_value_accessor.ts&quot; warn: Invalid link (does not match any doc): &quot;Control&quot; - doc &quot;SelectControlValueAccessor implements ControlValueAccessor&quot; (class) - from file &quot;angular2/src/forms/directives/select_control_value_acces sor.ts&quot; warn: Invalid link (does not match any doc): &quot;ControlGroup&quot; - doc &quot;FormBuilder&quot; (class) - from file &quot;angular2/src/forms/form_builder.ts&quot; warn: Invalid link (does not match any doc): &quot;Control&quot; - doc &quot;FormBuilder&quot; (class) - from file &quot;angular2/src/forms/form_builder.ts&quot; warn: Invalid link (does not match any doc): &quot;ControlGroup&quot; - doc &quot;FormBuilder&quot; (class) - from file &quot;angular2/src/forms/form_builder.ts&quot; warn: Invalid link (does not match any doc): &quot;Control&quot; - doc &quot;FormBuilder&quot; (class) - from file &quot;angular2/src/forms/form_builder.ts&quot; warn: Dangling Links Found in &quot;partials/modules/angular2/annotations/index.html&quot;: - /angular2/annotations/ComponentAnnotation extends Directive, - /angular2/annotations/DirectiveAnnotation extends Injectable warn: Dangling Links Found in &quot;partials/modules//angular2/annotations/DirectiveAnnotation extends Injectable/index.html&quot;: - QueryList, - QueryList, - annotations/onChange, - annotations/onDestroy, - annotations/onAllChangesDone, - pipes/keyValDiff warn: Dangling Links Found in &quot;partials/modules/angular2/change_detection/index.html&quot;: - /angular2/change_detection/ASTWithSource extends AST, - /angular2/change_detection/AccessMember extends AST, - /angular2/change_detection/LiteralArray extends AST, - /angular2/change_detection/ImplicitReceiver extends AST, - /angular2/change_detection/DehydratedException extends BaseException, - /angular2/change_detection/ExpressionChangedAfterItHasBeenChecked extends BaseException, - /angular2/change_detection/ChangeDetectionError extends BaseException, - /angular2/change_detection/DynamicProtoChangeDetector extends ProtoChangeDetector, - /angular2/change_detection/JitProtoChangeDetector extends ProtoChangeDetector, - /angular2/change_detection/DynamicChangeDetector extends AbstractChangeDetector, - /angular2/change_detection/NullPipe extends Pipe, - /angular2/change_detection/NullPipeFactory extends PipeFactory, - /angular2/change_detection/DynamicChangeDetection extends ChangeDetection, - /angular2/change_detection/JitChangeDetection extends ChangeDetection, - /angular2/change_detection/PreGeneratedChangeDetection extends ChangeDetection warn: Dangling Links Found in &quot;partials/modules//angular2/change_detection/ChangeDetection/index.html&quot;: - DynamicChangeDetection, - JitChangeDetection, - DynamicChangeDetection, - JitChangeDetection warn: Dangling Links Found in &quot;partials/modules//angular2/change_detection/DynamicChangeDetection extends ChangeDetection/index.html&quot;: - JitChangeDetection warn: Dangling Links Found in &quot;partials/modules//angular2/change_detection/JitChangeDetection extends ChangeDetection/index.html&quot;: - DynamicChangeDetection warn: Dangling Links Found in &quot;partials/modules/angular2/core/index.html&quot;: - /angular2/core/SelfAnnotation extends Visibility, - /angular2/core/AncestorAnnotation extends Visibility, - /angular2/core/ParentAnnotation extends Visibility, - /angular2/core/UnboundedAnnotation extends Visibility, - /angular2/core/QueryAnnotation extends DependencyAnnotation, - /angular2/core/AttributeAnnotation extends DependencyAnnotation, - /angular2/core/QueryList&lt;T&gt; extends BaseQueryList&lt;T&gt; warn: Dangling Links Found in &quot;partials/modules//angular2/core/QueryAnnotation extends DependencyAnnotation/index.html&quot;: - QueryList, - QueryList warn: Dangling Links Found in &quot;partials/modules/angular2/di/index.html&quot;: - /angular2/di/NoBindingError extends AbstractBindingError, - /angular2/di/AbstractBindingError extends BaseException, - /angular2/di/AsyncBindingError extends AbstractBindingError, - /angular2/di/CyclicDependencyError extends AbstractBindingError, - /angular2/di/InstantiationError extends AbstractBindingError, - /angular2/di/InvalidBindingError extends BaseException, - /angular2/di/NoAnnotationError extends BaseException warn: Dangling Links Found in &quot;partials/modules/angular2/forms/index.html&quot;: - ControlGroup, - Control, - Control, - /angular2/forms/Control extends AbstractControl, - /angular2/forms/ControlGroup extends AbstractControl, - /angular2/forms/ControlArray extends AbstractControl, - /angular2/forms/ControlNameDirective extends ControlDirective, - /angular2/forms/FormControlDirective extends ControlDirective, - /angular2/forms/NgModelDirective extends ControlDirective, - /angular2/forms/ControlGroupDirective extends ControlContainerDirective, - /angular2/forms/FormModelDirective extends ControlContainerDirective implements FormDirective, - /angular2/forms/TemplateDrivenFormDirective extends ControlContainerDirective implements FormDirective, - /angular2/forms/DefaultValueAccessor implements ControlValueAccessor, - /angular2/forms/CheckboxControlValueAccessor implements ControlValueAccessor, - /angular2/forms/SelectControlValueAccessor implements ControlValueAccessor warn: Dangling Links Found in &quot;partials/modules//angular2/forms/Control extends AbstractControl/index.html&quot;: - ControlGroup, - ControlArray warn: Dangling Links Found in &quot;partials/modules//angular2/forms/ControlGroup extends AbstractControl/index.html&quot;: - Control, - Control, - ControlArray, - ControlArray warn: Dangling Links Found in &quot;partials/modules//angular2/forms/ControlArray extends AbstractControl/index.html&quot;: - Control, - Control, - ControlGroup, - ControlGroup warn: Dangling Links Found in &quot;partials/modules//angular2/forms/DefaultValueAccessor implements ControlValueAccessor/index.html&quot;: - Control warn: Dangling Links Found in &quot;partials/modules//angular2/forms/SelectControlValueAccessor implements ControlValueAccessor/index.html&quot;: - Control warn: Dangling Links Found in &quot;partials/modules//angular2/forms/FormBuilder/index.html&quot;: - ControlGroup, - Control, - ControlGroup, - Control warn: Dangling Links Found in &quot;partials/modules/angular2/pipes/index.html&quot;: - /angular2/pipes/PromisePipe extends Pipe, - /angular2/pipes/UpperCasePipe extends Pipe, - /angular2/pipes/LowerCasePipe extends Pipe, - /angular2/pipes/ObservablePipe extends Pipe, - /angular2/pipes/JsonPipe extends Pipe, - /angular2/pipes/IterableChanges extends Pipe, - /angular2/pipes/KeyValueChanges extends Pipe warn: 83 'unmatched links'"><pre lang="log" class="notranslate"><code class="notranslate">warn: Invalid link (does not match any doc): "QueryList" - doc "DirectiveAnnotation extends Injectable" (class) - from file "angular2/src/core/annotations_impl/annotations.ts" warn: Invalid link (does not match any doc): "QueryList" - doc "DirectiveAnnotation extends Injectable" (class) - from file "angular2/src/core/annotations_impl/annotations.ts" warn: Invalid link (does not match any doc): "DynamicChangeDetection" - doc "ChangeDetection" (class) - from file "angular2/src/change_detection/interfaces.ts" warn: Invalid link (does not match any doc): "JitChangeDetection" - doc "ChangeDetection" (class) - from file "angular2/src/change_detection/interfaces.ts" warn: Invalid link (does not match any doc): "DynamicChangeDetection" - doc "ChangeDetection" (class) - from file "angular2/src/change_detection/interfaces.ts" warn: Invalid link (does not match any doc): "JitChangeDetection" - doc "ChangeDetection" (class) - from file "angular2/src/change_detection/interfaces.ts" warn: Invalid link (does not match any doc): "JitChangeDetection" - doc "DynamicChangeDetection extends ChangeDetection" (class) - from file "angular2/src/change_detection/change_detection.ts" warn: Invalid link (does not match any doc): "DynamicChangeDetection" - doc "JitChangeDetection extends ChangeDetection" (class) - from file "angular2/src/change_detection/change_detection.ts" warn: Invalid link (does not match any doc): "QueryList" - doc "QueryAnnotation extends DependencyAnnotation" (class) - from file "angular2/src/core/annotations_impl/di.ts" warn: Invalid link (does not match any doc): "QueryList" - doc "QueryAnnotation extends DependencyAnnotation" (class) - from file "angular2/src/core/annotations_impl/di.ts" warn: Invalid link (does not match any doc): "ControlGroup" - doc "angular2/forms" (module) - from file "angular2/forms.ts" warn: Invalid link (does not match any doc): "Control" - doc "angular2/forms" (module) - from file "angular2/forms.ts" warn: Invalid link (does not match any doc): "Control" - doc "angular2/forms" (module) - from file "angular2/forms.ts" warn: Invalid link (does not match any doc): "ControlGroup" - doc "Control extends AbstractControl" (class) - from file "angular2/src/forms/model.ts" warn: Invalid link (does not match any doc): "ControlArray" - doc "Control extends AbstractControl" (class) - from file "angular2/src/forms/model.ts" warn: Invalid link (does not match any doc): "Control" - doc "ControlGroup extends AbstractControl" (class) - from file "angular2/src/forms/model.ts" warn: Invalid link (does not match any doc): "Control" - doc "ControlGroup extends AbstractControl" (class) - from file "angular2/src/forms/model.ts" warn: Invalid link (does not match any doc): "ControlArray" - doc "ControlGroup extends AbstractControl" (class) - from file "angular2/src/forms/model.ts" warn: Invalid link (does not match any doc): "ControlArray" - doc "ControlGroup extends AbstractControl" (class) - from file "angular2/src/forms/model.ts" warn: Invalid link (does not match any doc): "Control" - doc "ControlArray extends AbstractControl" (class) - from file "angular2/src/forms/model.ts" warn: Invalid link (does not match any doc): "Control" - doc "ControlArray extends AbstractControl" (class) - from file "angular2/src/forms/model.ts" warn: Invalid link (does not match any doc): "ControlGroup" - doc "ControlArray extends AbstractControl" (class) - from file "angular2/src/forms/model.ts" warn: Invalid link (does not match any doc): "ControlGroup" - doc "ControlArray extends AbstractControl" (class) - from file "angular2/src/forms/model.ts" warn: Invalid link (does not match any doc): "Control" - doc "DefaultValueAccessor implements ControlValueAccessor" (class) - from file "angular2/src/forms/directives/default_value_accessor.ts" warn: Invalid link (does not match any doc): "Control" - doc "SelectControlValueAccessor implements ControlValueAccessor" (class) - from file "angular2/src/forms/directives/select_control_value_acces sor.ts" warn: Invalid link (does not match any doc): "ControlGroup" - doc "FormBuilder" (class) - from file "angular2/src/forms/form_builder.ts" warn: Invalid link (does not match any doc): "Control" - doc "FormBuilder" (class) - from file "angular2/src/forms/form_builder.ts" warn: Invalid link (does not match any doc): "ControlGroup" - doc "FormBuilder" (class) - from file "angular2/src/forms/form_builder.ts" warn: Invalid link (does not match any doc): "Control" - doc "FormBuilder" (class) - from file "angular2/src/forms/form_builder.ts" warn: Dangling Links Found in "partials/modules/angular2/annotations/index.html": - /angular2/annotations/ComponentAnnotation extends Directive, - /angular2/annotations/DirectiveAnnotation extends Injectable warn: Dangling Links Found in "partials/modules//angular2/annotations/DirectiveAnnotation extends Injectable/index.html": - QueryList, - QueryList, - annotations/onChange, - annotations/onDestroy, - annotations/onAllChangesDone, - pipes/keyValDiff warn: Dangling Links Found in "partials/modules/angular2/change_detection/index.html": - /angular2/change_detection/ASTWithSource extends AST, - /angular2/change_detection/AccessMember extends AST, - /angular2/change_detection/LiteralArray extends AST, - /angular2/change_detection/ImplicitReceiver extends AST, - /angular2/change_detection/DehydratedException extends BaseException, - /angular2/change_detection/ExpressionChangedAfterItHasBeenChecked extends BaseException, - /angular2/change_detection/ChangeDetectionError extends BaseException, - /angular2/change_detection/DynamicProtoChangeDetector extends ProtoChangeDetector, - /angular2/change_detection/JitProtoChangeDetector extends ProtoChangeDetector, - /angular2/change_detection/DynamicChangeDetector extends AbstractChangeDetector, - /angular2/change_detection/NullPipe extends Pipe, - /angular2/change_detection/NullPipeFactory extends PipeFactory, - /angular2/change_detection/DynamicChangeDetection extends ChangeDetection, - /angular2/change_detection/JitChangeDetection extends ChangeDetection, - /angular2/change_detection/PreGeneratedChangeDetection extends ChangeDetection warn: Dangling Links Found in "partials/modules//angular2/change_detection/ChangeDetection/index.html": - DynamicChangeDetection, - JitChangeDetection, - DynamicChangeDetection, - JitChangeDetection warn: Dangling Links Found in "partials/modules//angular2/change_detection/DynamicChangeDetection extends ChangeDetection/index.html": - JitChangeDetection warn: Dangling Links Found in "partials/modules//angular2/change_detection/JitChangeDetection extends ChangeDetection/index.html": - DynamicChangeDetection warn: Dangling Links Found in "partials/modules/angular2/core/index.html": - /angular2/core/SelfAnnotation extends Visibility, - /angular2/core/AncestorAnnotation extends Visibility, - /angular2/core/ParentAnnotation extends Visibility, - /angular2/core/UnboundedAnnotation extends Visibility, - /angular2/core/QueryAnnotation extends DependencyAnnotation, - /angular2/core/AttributeAnnotation extends DependencyAnnotation, - /angular2/core/QueryList&lt;T&gt; extends BaseQueryList&lt;T&gt; warn: Dangling Links Found in "partials/modules//angular2/core/QueryAnnotation extends DependencyAnnotation/index.html": - QueryList, - QueryList warn: Dangling Links Found in "partials/modules/angular2/di/index.html": - /angular2/di/NoBindingError extends AbstractBindingError, - /angular2/di/AbstractBindingError extends BaseException, - /angular2/di/AsyncBindingError extends AbstractBindingError, - /angular2/di/CyclicDependencyError extends AbstractBindingError, - /angular2/di/InstantiationError extends AbstractBindingError, - /angular2/di/InvalidBindingError extends BaseException, - /angular2/di/NoAnnotationError extends BaseException warn: Dangling Links Found in "partials/modules/angular2/forms/index.html": - ControlGroup, - Control, - Control, - /angular2/forms/Control extends AbstractControl, - /angular2/forms/ControlGroup extends AbstractControl, - /angular2/forms/ControlArray extends AbstractControl, - /angular2/forms/ControlNameDirective extends ControlDirective, - /angular2/forms/FormControlDirective extends ControlDirective, - /angular2/forms/NgModelDirective extends ControlDirective, - /angular2/forms/ControlGroupDirective extends ControlContainerDirective, - /angular2/forms/FormModelDirective extends ControlContainerDirective implements FormDirective, - /angular2/forms/TemplateDrivenFormDirective extends ControlContainerDirective implements FormDirective, - /angular2/forms/DefaultValueAccessor implements ControlValueAccessor, - /angular2/forms/CheckboxControlValueAccessor implements ControlValueAccessor, - /angular2/forms/SelectControlValueAccessor implements ControlValueAccessor warn: Dangling Links Found in "partials/modules//angular2/forms/Control extends AbstractControl/index.html": - ControlGroup, - ControlArray warn: Dangling Links Found in "partials/modules//angular2/forms/ControlGroup extends AbstractControl/index.html": - Control, - Control, - ControlArray, - ControlArray warn: Dangling Links Found in "partials/modules//angular2/forms/ControlArray extends AbstractControl/index.html": - Control, - Control, - ControlGroup, - ControlGroup warn: Dangling Links Found in "partials/modules//angular2/forms/DefaultValueAccessor implements ControlValueAccessor/index.html": - Control warn: Dangling Links Found in "partials/modules//angular2/forms/SelectControlValueAccessor implements ControlValueAccessor/index.html": - Control warn: Dangling Links Found in "partials/modules//angular2/forms/FormBuilder/index.html": - ControlGroup, - Control, - ControlGroup, - Control warn: Dangling Links Found in "partials/modules/angular2/pipes/index.html": - /angular2/pipes/PromisePipe extends Pipe, - /angular2/pipes/UpperCasePipe extends Pipe, - /angular2/pipes/LowerCasePipe extends Pipe, - /angular2/pipes/ObservablePipe extends Pipe, - /angular2/pipes/JsonPipe extends Pipe, - /angular2/pipes/IterableChanges extends Pipe, - /angular2/pipes/KeyValueChanges extends Pipe warn: 83 'unmatched links' </code></pre></div>
0
<p dir="auto">I can't explain the difference between the two arrays built via the comprehension syntax.</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia&gt; [a for a in ntuple(3, i -&gt; i)] 3-element Array{Any,1}: 1 2 3 julia&gt; xdump(ntuple(3, i -&gt; i)) (Int64,Int64,Int64) (1,2,3) julia&gt; ntuple(3, i -&gt; i) === (1, 2, 3) julia&gt; [a for a in (1, 2, 3)] 3-element Array{Int64,1}: 1 2 3"><pre class="notranslate">julia<span class="pl-k">&gt;</span> [a <span class="pl-k">for</span> a <span class="pl-k">in</span> <span class="pl-c1">ntuple</span>(<span class="pl-c1">3</span>, i <span class="pl-k">-&gt;</span> i)] <span class="pl-c1">3</span><span class="pl-k">-</span>element Array{Any,<span class="pl-c1">1</span>}<span class="pl-k">:</span> <span class="pl-c1">1</span> <span class="pl-c1">2</span> <span class="pl-c1">3</span> julia<span class="pl-k">&gt;</span> <span class="pl-c1">xdump</span>(<span class="pl-c1">ntuple</span>(<span class="pl-c1">3</span>, i <span class="pl-k">-&gt;</span> i)) (Int64,Int64,Int64) (<span class="pl-c1">1</span>,<span class="pl-c1">2</span>,<span class="pl-c1">3</span>) julia<span class="pl-k">&gt;</span> <span class="pl-c1">ntuple</span>(<span class="pl-c1">3</span>, i <span class="pl-k">-&gt;</span> i) <span class="pl-k">===</span> (<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">3</span>) julia<span class="pl-k">&gt;</span> [a <span class="pl-k">for</span> a <span class="pl-k">in</span> (<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">3</span>)] <span class="pl-c1">3</span><span class="pl-k">-</span>element Array{Int64,<span class="pl-c1">1</span>}<span class="pl-k">:</span> <span class="pl-c1">1</span> <span class="pl-c1">2</span> <span class="pl-c1">3</span></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" _ _ _(_)_ | (_) | (_) (_) | A fresh approach to technical computing _ _ _| |_ __ _ | | | | | | | |/ _` | | Version 0.0.0-prerelease | | |_| | | | (_| | | Commit 335d1ef401 (2012-03-04 23:47:29) _/ |\__'_|_|_|\__'_| | |__/ | julia&gt; x = 5 5 julia&gt; typeof(x) Int64 julia&gt; typeof([i | i = 1:5]) Array{Int64,1}"><pre class="notranslate"><code class="notranslate"> _ _ _(_)_ | (_) | (_) (_) | A fresh approach to technical computing _ _ _| |_ __ _ | | | | | | | |/ _` | | Version 0.0.0-prerelease | | |_| | | | (_| | | Commit 335d1ef401 (2012-03-04 23:47:29) _/ |\__'_|_|_|\__'_| | |__/ | julia&gt; x = 5 5 julia&gt; typeof(x) Int64 julia&gt; typeof([i | i = 1:5]) Array{Int64,1} </code></pre></div> <p dir="auto">So far, so good.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia&gt; typeof([i | i = 1:x]) Array{Any,1}"><pre class="notranslate"><code class="notranslate">julia&gt; typeof([i | i = 1:x]) Array{Any,1} </code></pre></div> <p dir="auto">Wat.<br> (with apologies to <a href="https://www.destroyallsoftware.com/talks/wat" rel="nofollow">https://www.destroyallsoftware.com/talks/wat</a>)</p>
1
<p dir="auto"><strong>Description</strong></p> <p dir="auto">Hook for AWS SecretsManager</p> <p dir="auto"><strong>Use case / motivation</strong></p> <p dir="auto">Simplify interaction with AWS's SecretsManager service</p>
<h3 dir="auto">Apache Airflow version</h3> <p dir="auto">2.2.3 (latest released)</p> <h3 dir="auto">What happened</h3> <p dir="auto">In case within the DAG definition we use both <code class="notranslate">params</code> and <code class="notranslate">on_success_callback</code> then after triggering the DAG from the UI (option "Trigger DAG") and the finish of the successful DAG run I got the <em>DAG Import Errors</em> error displayed in the UI.</p> <p dir="auto">Issue is related with the <code class="notranslate">_serialize_params_dict</code> method of <code class="notranslate">BaseSerialization</code> class.<br> Part of the error message:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="if f'{v.__module__}.{v.__class__.__name__}' == 'airflow.models.param.Param': AttributeError: 'str' object has no attribute '__module__'"><pre class="notranslate"><code class="notranslate">if f'{v.__module__}.{v.__class__.__name__}' == 'airflow.models.param.Param': AttributeError: 'str' object has no attribute '__module__' </code></pre></div> <p dir="auto">In consequence there is also no update in the <code class="notranslate">serialized_dag</code> table of backend db.</p> <p dir="auto">Additionally:</p> <ul dir="auto"> <li>using the script provided in this ticket <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1047636958" data-permission-text="Title is private" data-url="https://github.com/apache/airflow/issues/19471" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/19471/hovercard" href="https://github.com/apache/airflow/pull/19471">#19471</a> results in the successful serialization</li> <li>making any change to the code results in the successful serialization</li> </ul> <p dir="auto">So error occurs only after the successful DAG run from UI (I did not check the output of the run from CLI or just scheduled run)</p> <p dir="auto">In case we remove the <code class="notranslate">params</code> or <code class="notranslate">on_success_callback</code> attribute then there is no serialization error.</p> <p dir="auto">To confirm this issue I set up completely new Airflow instance in separate virtualenv and still had the same issue.</p> <h3 dir="auto">What you expected to happen</h3> <p dir="auto">Successful serialization after the successful DAG run</p> <h3 dir="auto">How to reproduce</h3> <p dir="auto">To reproduce this error I prepared very simple DAG presented below.</p> <p dir="auto">Additional information about the setup:</p> <ul dir="auto"> <li>executor = LocalExecutor</li> <li>sql_alchemy_conn = Postgres db</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from airflow import DAG from airflow.utils import timezone from airflow.operators.dummy import DummyOperator from airflow.models.param import Param def func_on_success(context): pass with DAG( dag_id=&quot;test&quot;, start_date=timezone.datetime(2022, 1, 1), schedule_interval='@once', params={&quot;param_test&quot;: Param(&quot;param_value_test&quot;)}, on_success_callback=func_on_success ) as dag: DummyOperator(task_id='task_1')"><pre class="notranslate"><code class="notranslate">from airflow import DAG from airflow.utils import timezone from airflow.operators.dummy import DummyOperator from airflow.models.param import Param def func_on_success(context): pass with DAG( dag_id="test", start_date=timezone.datetime(2022, 1, 1), schedule_interval='@once', params={"param_test": Param("param_value_test")}, on_success_callback=func_on_success ) as dag: DummyOperator(task_id='task_1') </code></pre></div> <p dir="auto">After successful execution of this DAG through "Trigger DAG" option in the UI the error should be displayed (of course after refresh of the webpage).</p> <h3 dir="auto">Operating System</h3> <p dir="auto">MacOS 12.1</p> <h3 dir="auto">Versions of Apache Airflow Providers</h3> <p dir="auto">n/a</p> <h3 dir="auto">Deployment</h3> <p dir="auto">Virtualenv installation</p> <h3 dir="auto">Deployment details</h3> <ul dir="auto"> <li>executor = LocalExecutor</li> <li>sql_alchemy_conn = Postgres db</li> </ul> <h3 dir="auto">Anything else</h3> <p dir="auto">There is one scenario in which there will be no error:</p> <ul dir="auto"> <li>make some changes to the DAG code</li> <li>in consequence DAG is serialized automatically</li> <li>trigger DAG and finish it successfully within the <code class="notranslate">min_serialized_dag_update_interval</code> second</li> </ul> <p dir="auto">then there will be no error because serialization process will not start after the DAG run (at least this is my explanation).</p> <h3 dir="auto">Are you willing to submit PR?</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Yes I am willing to submit a PR!</li> </ul> <h3 dir="auto">Code of Conduct</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li> </ul>
0
<p dir="auto"><a href="https://ibb.co/eEdyfK" rel="nofollow">https://ibb.co/eEdyfK</a></p> <p dir="auto">There's no search bar</p>
<h2 dir="auto">Steps to Reproduce</h2> <p dir="auto">I cloned your repository and opened (ex.) flutter_gallery example project in Android Studio.<br> When I go to pubspec.yaml flutter packages get fails with following message:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Running &quot;flutter packages get&quot; in flutter_gallery... Package collection has no versions that match 1.14.5 derived from: - async 2.0.6 depends on version ^1.5.0 - flutter 0.0.0 depends on version 1.14.5 - flutter_gallery depends on version 1.14.6 pub get failed (1)"><pre class="notranslate"><code class="notranslate">Running "flutter packages get" in flutter_gallery... Package collection has no versions that match 1.14.5 derived from: - async 2.0.6 depends on version ^1.5.0 - flutter 0.0.0 depends on version 1.14.5 - flutter_gallery depends on version 1.14.6 pub get failed (1) </code></pre></div> <p dir="auto">I tried flutter packages upgrade - same error.<br> Flutter upgrade - Already up to date.<br> If I click on 'Get Dependencies' I get:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Resolving dependencies... Package connectivity has no versions that match 0.3.0 derived from: - flutter_gallery depends on version 0.3.0"><pre class="notranslate"><code class="notranslate">Resolving dependencies... Package connectivity has no versions that match 0.3.0 derived from: - flutter_gallery depends on version 0.3.0 </code></pre></div> <p dir="auto">Flutter doctor -</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[√] Flutter (Channel beta, v0.1.5, on Microsoft Windows [Version 10.0.16299.248], locale en-US) [√] Android toolchain - develop for Android devices (Android SDK 27.0.3) [√] Android Studio (version 3.0) [√] IntelliJ IDEA Ultimate Edition (version 2017.3) [√] Connected devices (1 available)"><pre class="notranslate"><code class="notranslate">[√] Flutter (Channel beta, v0.1.5, on Microsoft Windows [Version 10.0.16299.248], locale en-US) [√] Android toolchain - develop for Android devices (Android SDK 27.0.3) [√] Android Studio (version 3.0) [√] IntelliJ IDEA Ultimate Edition (version 2017.3) [√] Connected devices (1 available) </code></pre></div> <p dir="auto">Any idea how to fix this?</p>
0
<p dir="auto">I am trying to create a group that consists of THREE.Line and THREE.Mesh:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="var line = new THREE.Line(text3d, lineMaterial); var mesh = new THREE.Mesh(text3d, faceMaterial); var group = new THREE.Object3D(); group.add(line); group.add(mesh);"><pre class="notranslate"><code class="notranslate">var line = new THREE.Line(text3d, lineMaterial); var mesh = new THREE.Mesh(text3d, faceMaterial); var group = new THREE.Object3D(); group.add(line); group.add(mesh); </code></pre></div> <p dir="auto">Unfortunately, only the "line" is rendered to the scene. If I change the order of adding to the group, that is that if I add "mesh" to the group before "line", then only "mesh" is rendered.</p> <p dir="auto">Of course, I want both elements to be rendered.</p> <p dir="auto">Any help?</p> <p dir="auto">PS. Great work on three.js, keep it up!</p>
<p dir="auto">In SpritePlugin.js line 190</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="if ( material.map &amp;&amp; material.map.image &amp;&amp; material.map.image.width ) { //RENDER"><pre class="notranslate"><code class="notranslate">if ( material.map &amp;&amp; material.map.image &amp;&amp; material.map.image.width ) { //RENDER </code></pre></div> <p dir="auto">My Code</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="//Used as the sprites map this.miniMapTexture = new THREE.WebGLRenderTarget( 512, 512, { minFilter: THREE.LinearFilter, magFilter: THREE.NearestFilter, format: THREE.RGBFormat } ); //Code below causes miniMapTexture to render properly this.miniMapTexture.image = {}; this.miniMapTexture.image.width = &lt;any number&gt;;"><pre class="notranslate"><code class="notranslate">//Used as the sprites map this.miniMapTexture = new THREE.WebGLRenderTarget( 512, 512, { minFilter: THREE.LinearFilter, magFilter: THREE.NearestFilter, format: THREE.RGBFormat } ); //Code below causes miniMapTexture to render properly this.miniMapTexture.image = {}; this.miniMapTexture.image.width = &lt;any number&gt;; </code></pre></div> <p dir="auto">The sprite with a RTT as a map never gets rendered because this.miniMapTexture.image is not set. I set the map.image to [] and map.image.width to 512 and it rendered properly.</p> <p dir="auto">Removing the restrictions on material.map.image or adding values to the RTT should fix this.</p>
0
<p dir="auto">I'm trying to use fastlane and I'm doing <code class="notranslate">fastlane test</code> and this is the result</p> <h2 dir="auto">command</h2> <p dir="auto"><code class="notranslate">flutter build bundle --suppress-analytics --target lib/main.dart --depfile C:\Users\John\AndroidStudioProjects\projectX\build\app\intermediates\flutter\dynamicRelease/snapshot_blob.bin.d --asset-dir C:\Users\John\AndroidStudioProjects\projectX\build\app\intermediates\flutter\dynamicRelease/flutter_assets --release --dynamic</code></p> <h2 dir="auto">exception</h2> <p dir="auto"><code class="notranslate">FileSystemException: FileSystemException: Cannot open file, path = 'C:\flutter\bin\cache\artifacts\engine\windows-x64\product_vm_isolate_snapshot.bin' (OS Error: The system cannot find the file specified. , errno = 2)</code></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#0 _File.open.&lt;anonymous closure&gt; (dart:io/file_impl.dart:368:9) #1 _rootRunUnary (dart:async/zone.dart:1132:38) #2 _CustomZone.runUnary (dart:async/zone.dart:1029:19) #3 _FutureListener.handleValue (dart:async/future_impl.dart:129:18) #4 Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:642:45) #5 Future._propagateToListeners (dart:async/future_impl.dart:671:32) #6 Future._completeWithValue (dart:async/future_impl.dart:486:5) #7 Future._asyncComplete.&lt;anonymous closure&gt; (dart:async/future_impl.dart:516:7) #8 _rootRun (dart:async/zone.dart:1124:13) #9 _CustomZone.run (dart:async/zone.dart:1021:19) #10 _CustomZone.bindCallback.&lt;anonymous closure&gt; (dart:async/zone.dart:947:23) #11 _microtaskLoop (dart:async/schedule_microtask.dart:41:21) #12 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5) #13 _runPendingImmediateCallback (dart:isolate/runtime/libisolate_patch.dart:115:13) #14 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:172:5)"><pre class="notranslate"><code class="notranslate">#0 _File.open.&lt;anonymous closure&gt; (dart:io/file_impl.dart:368:9) #1 _rootRunUnary (dart:async/zone.dart:1132:38) #2 _CustomZone.runUnary (dart:async/zone.dart:1029:19) #3 _FutureListener.handleValue (dart:async/future_impl.dart:129:18) #4 Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:642:45) #5 Future._propagateToListeners (dart:async/future_impl.dart:671:32) #6 Future._completeWithValue (dart:async/future_impl.dart:486:5) #7 Future._asyncComplete.&lt;anonymous closure&gt; (dart:async/future_impl.dart:516:7) #8 _rootRun (dart:async/zone.dart:1124:13) #9 _CustomZone.run (dart:async/zone.dart:1021:19) #10 _CustomZone.bindCallback.&lt;anonymous closure&gt; (dart:async/zone.dart:947:23) #11 _microtaskLoop (dart:async/schedule_microtask.dart:41:21) #12 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5) #13 _runPendingImmediateCallback (dart:isolate/runtime/libisolate_patch.dart:115:13) #14 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:172:5) </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 (Channel unknown, v0.9.5, on Microsoft Windows [Version 10.0.17758.4], locale en-CA) • Flutter version 0.9.5 at C:\flutter • Framework revision 020fd590b0 (6 days ago), 2018-09-26 14:28:26 -0700 • Engine revision 38a646e14c • Dart version 2.1.0-dev.5.0.flutter-4cf2d3990b [✓] Android toolchain - develop for Android devices (Android SDK 28.0.0) • Android SDK at C:\Users\John\AppData\Local\Android\sdk • Android NDK location not configured (optional; useful for native profiling support) • Platform android-28, build-tools 28.0.0 • Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06) • All Android licenses accepted. [✓] Android Studio (version 3.2) • Android Studio at C:\Program Files\Android\Android Studio • Flutter plugin version 28.0.2 • Dart plugin version 181.5616 • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06) [✓] IntelliJ IDEA Ultimate Edition (version 2018.2) • IntelliJ at C:\Users\John\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\182.4505.22 • Flutter plugin version 29.0.4 • Dart plugin version 182.4323.44 [✓] Connected device (1 available) • SGH M919V • d5514710 • android-arm • Android 5.0.1 (API 21) • No issues found! ```****"><pre class="notranslate"><code class="notranslate">[✓] Flutter (Channel unknown, v0.9.5, on Microsoft Windows [Version 10.0.17758.4], locale en-CA) • Flutter version 0.9.5 at C:\flutter • Framework revision 020fd590b0 (6 days ago), 2018-09-26 14:28:26 -0700 • Engine revision 38a646e14c • Dart version 2.1.0-dev.5.0.flutter-4cf2d3990b [✓] Android toolchain - develop for Android devices (Android SDK 28.0.0) • Android SDK at C:\Users\John\AppData\Local\Android\sdk • Android NDK location not configured (optional; useful for native profiling support) • Platform android-28, build-tools 28.0.0 • Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06) • All Android licenses accepted. [✓] Android Studio (version 3.2) • Android Studio at C:\Program Files\Android\Android Studio • Flutter plugin version 28.0.2 • Dart plugin version 181.5616 • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06) [✓] IntelliJ IDEA Ultimate Edition (version 2018.2) • IntelliJ at C:\Users\John\AppData\Local\JetBrains\Toolbox\apps\IDEA-U\ch-0\182.4505.22 • Flutter plugin version 29.0.4 • Dart plugin version 182.4323.44 [✓] Connected device (1 available) • SGH M919V • d5514710 • android-arm • Android 5.0.1 (API 21) • No issues found! ```**** </code></pre></div>
<p dir="auto">Hi, I'm adding flutter to an existing app, it works well basically, I can successfully run the hybrid app and <code class="notranslate">assembleDebug/assembleRelease</code> to generate apk files. However when I use <code class="notranslate">./gradlew build</code> command to build the application, it fails with an exception.</p> <blockquote> <p dir="auto">Task :flutter:flutterBuildDynamicRelease<br> Crash report written to /Users/some_path/some_application/flutter_07.log;<br> please let us know at <a href="https://github.com/flutter/flutter/issues">https://github.com/flutter/flutter/issues</a>.<br> Task :flutter:flutterBuildDynamicRelease FAILED</p> </blockquote> <p dir="auto">The following is what the <code class="notranslate">flutter_07.log</code>says, it's implying me that <code class="notranslate">product_vm_isolate_snapshot.bin</code> cannot be found, I browsed the folder and the file wasn't there.. I downloaded the latest <a href="https://flutter.io/setup-macos/#get-sdk" rel="nofollow">flutter_macos_v0.9.4-beta.zip</a> and still cannot find <code class="notranslate">product_vm_isolate_snapshot.bin</code>.</p> <p dir="auto">What should I do?</p> <p dir="auto">thank you</p> <hr> <p dir="auto">flutter_07.log:</p> <h2 dir="auto">command</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="flutter build bundle --suppress-analytics --target lib/main.dart --depfile /Users/liuchang/Documents/workspace/android/translator_android/translator_flutter/.android/Flutter/build/intermediates/flutter/dynamicRelease/snapshot_blob.bin.d --asset-dir /Users/liuchang/Documents/workspace/android/translator_android/translator_flutter/.android/Flutter/build/intermediates/flutter/dynamicRelease/flutter_assets --release --dynamic"><pre class="notranslate"><code class="notranslate">flutter build bundle --suppress-analytics --target lib/main.dart --depfile /Users/liuchang/Documents/workspace/android/translator_android/translator_flutter/.android/Flutter/build/intermediates/flutter/dynamicRelease/snapshot_blob.bin.d --asset-dir /Users/liuchang/Documents/workspace/android/translator_android/translator_flutter/.android/Flutter/build/intermediates/flutter/dynamicRelease/flutter_assets --release --dynamic </code></pre></div> <h2 dir="auto">exception</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="FileSystemException: FileSystemException: Cannot open file, path = '/Users/some_path/flutter/bin/cache/artifacts/engine/darwin-x64/**product_vm_isolate_snapshot.bin**' (OS Error: No such file or directory, errno = 2)"><pre class="notranslate"><code class="notranslate">FileSystemException: FileSystemException: Cannot open file, path = '/Users/some_path/flutter/bin/cache/artifacts/engine/darwin-x64/**product_vm_isolate_snapshot.bin**' (OS Error: No such file or directory, errno = 2) </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#0 _File.open.&lt;anonymous closure&gt; (dart:io/file_impl.dart:368:9) #1 _rootRunUnary (dart:async/zone.dart:1132:38) #2 _CustomZone.runUnary (dart:async/zone.dart:1029:19) #3 _FutureListener.handleValue (dart:async/future_impl.dart:129:18) #4 Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:642:45) #5 Future._propagateToListeners (dart:async/future_impl.dart:671:32) #6 Future._completeWithValue (dart:async/future_impl.dart:486:5) #7 Future._asyncComplete.&lt;anonymous closure&gt; (dart:async/future_impl.dart:516:7) #8 _rootRun (dart:async/zone.dart:1124:13) #9 _CustomZone.run (dart:async/zone.dart:1021:19) #10 _CustomZone.bindCallback.&lt;anonymous closure&gt; (dart:async/zone.dart:947:23) #11 _microtaskLoop (dart:async/schedule_microtask.dart:41:21) #12 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5) #13 _runPendingImmediateCallback (dart:isolate/runtime/libisolate_patch.dart:115:13) #14 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:172:5)"><pre class="notranslate"><code class="notranslate">#0 _File.open.&lt;anonymous closure&gt; (dart:io/file_impl.dart:368:9) #1 _rootRunUnary (dart:async/zone.dart:1132:38) #2 _CustomZone.runUnary (dart:async/zone.dart:1029:19) #3 _FutureListener.handleValue (dart:async/future_impl.dart:129:18) #4 Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:642:45) #5 Future._propagateToListeners (dart:async/future_impl.dart:671:32) #6 Future._completeWithValue (dart:async/future_impl.dart:486:5) #7 Future._asyncComplete.&lt;anonymous closure&gt; (dart:async/future_impl.dart:516:7) #8 _rootRun (dart:async/zone.dart:1124:13) #9 _CustomZone.run (dart:async/zone.dart:1021:19) #10 _CustomZone.bindCallback.&lt;anonymous closure&gt; (dart:async/zone.dart:947:23) #11 _microtaskLoop (dart:async/schedule_microtask.dart:41:21) #12 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5) #13 _runPendingImmediateCallback (dart:isolate/runtime/libisolate_patch.dart:115:13) #14 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:172:5) </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 (Channel beta, v0.9.4, on Mac OS X 10.13.4 17E199, locale en-CN) • Flutter version 0.9.4 at /Users/liuchang/Documents/workspace/flutter/flutter_macos_v0.7.3-beta • Framework revision f37c235c32 (3 weeks ago), 2018-09-25 17:45:40 -0400 • Engine revision 74625aed32 • Dart version 2.1.0-dev.5.0.flutter-a2eb050044 [!] Android toolchain - develop for Android devices (Android SDK 28.0.3) • Android SDK at /Users/liuchang/Library/Android/sdk • Android NDK location not configured (optional; useful for native profiling support) • Platform android-28, build-tools 28.0.3 • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06) ✗ Android license status unknown. [!] iOS toolchain - develop for iOS devices (Xcode 9.4.1) • Xcode at /Applications/Xcode.app/Contents/Developer • Xcode 9.4.1, Build version 9F2000 ✗ libimobiledevice and ideviceinstaller are not installed. To install, run: brew install --HEAD libimobiledevice brew install ideviceinstaller ✗ ios-deploy not installed. To install: brew install ios-deploy ✗ CocoaPods not installed. CocoaPods is used to retrieve the iOS platform side's plugin code that responds to your plugin usage on the Dart side. Without resolving iOS dependencies with CocoaPods, plugins will not work on iOS. For more info, see https://flutter.io/platform-plugins To install: brew install cocoapods pod setup [✓] Android Studio (version 3.2) • Android Studio at /Applications/Android Studio.app/Contents • Flutter plugin version 29.1.1 • Dart plugin version 181.5656 • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06) [✓] Connected devices (1 available) • SM G9500 • 988b5c394548305955 • android-arm64 • Android 8.0.0 (API 26) ! Doctor found issues in 2 categories."><pre class="notranslate"><code class="notranslate">[✓] Flutter (Channel beta, v0.9.4, on Mac OS X 10.13.4 17E199, locale en-CN) • Flutter version 0.9.4 at /Users/liuchang/Documents/workspace/flutter/flutter_macos_v0.7.3-beta • Framework revision f37c235c32 (3 weeks ago), 2018-09-25 17:45:40 -0400 • Engine revision 74625aed32 • Dart version 2.1.0-dev.5.0.flutter-a2eb050044 [!] Android toolchain - develop for Android devices (Android SDK 28.0.3) • Android SDK at /Users/liuchang/Library/Android/sdk • Android NDK location not configured (optional; useful for native profiling support) • Platform android-28, build-tools 28.0.3 • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06) ✗ Android license status unknown. [!] iOS toolchain - develop for iOS devices (Xcode 9.4.1) • Xcode at /Applications/Xcode.app/Contents/Developer • Xcode 9.4.1, Build version 9F2000 ✗ libimobiledevice and ideviceinstaller are not installed. To install, run: brew install --HEAD libimobiledevice brew install ideviceinstaller ✗ ios-deploy not installed. To install: brew install ios-deploy ✗ CocoaPods not installed. CocoaPods is used to retrieve the iOS platform side's plugin code that responds to your plugin usage on the Dart side. Without resolving iOS dependencies with CocoaPods, plugins will not work on iOS. For more info, see https://flutter.io/platform-plugins To install: brew install cocoapods pod setup [✓] Android Studio (version 3.2) • Android Studio at /Applications/Android Studio.app/Contents • Flutter plugin version 29.1.1 • Dart plugin version 181.5656 • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06) [✓] Connected devices (1 available) • SM G9500 • 988b5c394548305955 • android-arm64 • Android 8.0.0 (API 26) ! Doctor found issues in 2 categories. </code></pre></div>
1
1
<h4 dir="auto">Challenge Name</h4> <p dir="auto"><a href="https://www.freecodecamp.com/challenges/build-a-tribute-page" rel="nofollow">Build a Tribute Page</a></p> <h4 dir="auto">Issue Description</h4> <p dir="auto">Please update <a href="https://www.freecodecamp.com/challenges/get-set-for-our-front-end-development-projects" rel="nofollow">this step</a> in the instructions for setting up CodePen? <a href="https://youtu.be/qqrnzmqCGDw?t=3m53s" rel="nofollow">Also in the video</a>.</p> <p dir="auto">Adding Bootstrap to CodePen now defaults to the alpha of V4 of Bootstrap, so the Bootstrap V3 code that I learned on FCC (like my columns) wasn't working originally. Maybe let others know and encourage them to add Bootstrap to CodePen with this link?: <a href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="nofollow">https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css</a> Might save them some time. Thank you!</p> <h4 dir="auto">Browser Information</h4> <ul dir="auto"> <li>Browser Name, Version: Chrome Version 57.0.2987.98 (64-bit)</li> <li>Operating System: Mac OS 10.12.3 (16D32)</li> <li>Mobile, Desktop, or Tablet: Desktop</li> </ul> <h4 dir="auto">Your Code</h4> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" "><pre class="notranslate"></pre></div> <h4 dir="auto">Screenshot</h4>
<h4 dir="auto">Challenge Name</h4> <p dir="auto"><a href="https://www.freecodecamp.com/challenges/get-set-for-our-front-end-development-projects" rel="nofollow">https://www.freecodecamp.com/challenges/get-set-for-our-front-end-development-projects</a></p> <h4 dir="auto">Issue Description</h4> <p dir="auto">As of today Codpen default quick-add is Bootstrap.4 which has some differences from the 3.3.7 version that gets taught during the lessons.</p> <p dir="auto">I have noticed and increased number of Camper asking for help in chat asking why their code was not behaving as expected all due to them using version 4.</p> <p dir="auto">I propose to amend the description and provide the link to the version 3.3.7 and let the camper insert that.</p> <p dir="auto">It's also worth mentioning that in case we proceed with this change we have to change the <code class="notranslate">.gif</code> accordingly.</p> <hr> <p dir="auto">[edit]<br> The text I'm referring to is at step 6/7:</p> <blockquote> <p dir="auto">Click the gear in the upper left hand corner of the CSS box, then scroll down to "Quick add" and choose Bootstrap.</p> </blockquote> <p dir="auto">By doing so the camper will inevitably add the version 4.<br> We could change it with:</p> <blockquote> <p dir="auto">Click the gear in the upper left hand corner of the CSS box, then in the text field add this link<br> <code class="notranslate">https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css</code>.</p> </blockquote> <p dir="auto">And perhaps leaving a note that using the dropdown will load the Alpha version, advising that may encounter some differences in syntax with the lessons's examples.</p>
1
<p dir="auto">Hi, I'm getting the following error:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import matplotlib --------------------------------------------------------------------------- ValueError Traceback (most recent call last) &lt;ipython-input-1-82be63b7783c&gt; in &lt;module&gt;() ----&gt; 1 import matplotlib /Users/Gustaf/anaconda/lib/python3.5/site-packages/matplotlib/__init__.py in &lt;module&gt;() 1129 1130 # this is the instance used by the matplotlib classes -&gt; 1131 rcParams = rc_params() 1132 1133 if rcParams['examples.directory']: /Users/Gustaf/anaconda/lib/python3.5/site-packages/matplotlib/__init__.py in rc_params(fail_on_error) 973 return ret 974 --&gt; 975 return rc_params_from_file(fname, fail_on_error) 976 977 /Users/Gustaf/anaconda/lib/python3.5/site-packages/matplotlib/__init__.py in rc_params_from_file(fname, fail_on_error, use_default_template) 1098 parameters specified in the file. (Useful for updating dicts.) 1099 &quot;&quot;&quot; -&gt; 1100 config_from_file = _rc_params_in_file(fname, fail_on_error) 1101 1102 if not use_default_template: /Users/Gustaf/anaconda/lib/python3.5/site-packages/matplotlib/__init__.py in _rc_params_in_file(fname, fail_on_error) 1016 cnt = 0 1017 rc_temp = {} -&gt; 1018 with _open_file_or_url(fname) as fd: 1019 try: 1020 for line in fd: /Users/Gustaf/anaconda/lib/python3.5/contextlib.py in __enter__(self) 57 def __enter__(self): 58 try: ---&gt; 59 return next(self.gen) 60 except StopIteration: 61 raise RuntimeError(&quot;generator didn't yield&quot;) from None /Users/Gustaf/anaconda/lib/python3.5/site-packages/matplotlib/__init__.py in _open_file_or_url(fname) 998 else: 999 fname = os.path.expanduser(fname) -&gt; 1000 encoding = locale.getdefaultlocale()[1] 1001 if encoding is None: 1002 encoding = &quot;utf-8&quot; /Users/Gustaf/anaconda/lib/python3.5/locale.py in getdefaultlocale(envvars) 557 else: 558 localename = 'C' --&gt; 559 return _parse_localename(localename) 560 561 /Users/Gustaf/anaconda/lib/python3.5/locale.py in _parse_localename(localename) 485 elif code == 'C': 486 return None, None --&gt; 487 raise ValueError('unknown locale: %s' % localename) 488 489 def _build_localename(localetuple): ValueError: unknown locale: UTF-8"><pre class="notranslate"><code class="notranslate">import matplotlib --------------------------------------------------------------------------- ValueError Traceback (most recent call last) &lt;ipython-input-1-82be63b7783c&gt; in &lt;module&gt;() ----&gt; 1 import matplotlib /Users/Gustaf/anaconda/lib/python3.5/site-packages/matplotlib/__init__.py in &lt;module&gt;() 1129 1130 # this is the instance used by the matplotlib classes -&gt; 1131 rcParams = rc_params() 1132 1133 if rcParams['examples.directory']: /Users/Gustaf/anaconda/lib/python3.5/site-packages/matplotlib/__init__.py in rc_params(fail_on_error) 973 return ret 974 --&gt; 975 return rc_params_from_file(fname, fail_on_error) 976 977 /Users/Gustaf/anaconda/lib/python3.5/site-packages/matplotlib/__init__.py in rc_params_from_file(fname, fail_on_error, use_default_template) 1098 parameters specified in the file. (Useful for updating dicts.) 1099 """ -&gt; 1100 config_from_file = _rc_params_in_file(fname, fail_on_error) 1101 1102 if not use_default_template: /Users/Gustaf/anaconda/lib/python3.5/site-packages/matplotlib/__init__.py in _rc_params_in_file(fname, fail_on_error) 1016 cnt = 0 1017 rc_temp = {} -&gt; 1018 with _open_file_or_url(fname) as fd: 1019 try: 1020 for line in fd: /Users/Gustaf/anaconda/lib/python3.5/contextlib.py in __enter__(self) 57 def __enter__(self): 58 try: ---&gt; 59 return next(self.gen) 60 except StopIteration: 61 raise RuntimeError("generator didn't yield") from None /Users/Gustaf/anaconda/lib/python3.5/site-packages/matplotlib/__init__.py in _open_file_or_url(fname) 998 else: 999 fname = os.path.expanduser(fname) -&gt; 1000 encoding = locale.getdefaultlocale()[1] 1001 if encoding is None: 1002 encoding = "utf-8" /Users/Gustaf/anaconda/lib/python3.5/locale.py in getdefaultlocale(envvars) 557 else: 558 localename = 'C' --&gt; 559 return _parse_localename(localename) 560 561 /Users/Gustaf/anaconda/lib/python3.5/locale.py in _parse_localename(localename) 485 elif code == 'C': 486 return None, None --&gt; 487 raise ValueError('unknown locale: %s' % localename) 488 489 def _build_localename(localetuple): ValueError: unknown locale: UTF-8 </code></pre></div> <p dir="auto">Any ideas how to fix this? Thanks!</p>
<p dir="auto">Hi guys!<br> I am new to python and matplotlib.<br> I installed everything with macports and when I run the matplotlib test</p> <p dir="auto">python2.7 -c 'import matplotlib; print matplotlib.<strong>version</strong>, matplotlib.<strong>file</strong>'</p> <p dir="auto">I get the following</p> <p dir="auto">Traceback (most recent call last):<br> File "", line 1, in <br> File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/matplotlib/<strong>init</strong>.py", line 1131, in <br> rcParams = rc_params()<br> File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/matplotlib/<strong>init</strong>.py", line 975, in rc_params<br> return rc_params_from_file(fname, fail_on_error)<br> File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/matplotlib/<strong>init</strong>.py", line 1100, in rc_params_from_file<br> config_from_file = _rc_params_in_file(fname, fail_on_error)<br> File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/matplotlib/<strong>init</strong>.py", line 1018, in _rc_params_in_file<br> with _open_file_or_url(fname) as fd:<br> File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/contextlib.py", line 17, in <strong>enter</strong><br> return self.gen.next()<br> File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/matplotlib/<strong>init</strong>.py", line 1000, in _open_file_or_url<br> encoding = locale.getdefaultlocale()[1]<br> File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/locale.py", line 543, in getdefaultlocale<br> return _parse_localename(localename)<br> File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/locale.py", line 475, in _parse_localename<br> raise ValueError, 'unknown locale: %s' % localename<br> ValueError: unknown locale: UTF-8</p> <p dir="auto">Do you guys have any idea what is happening....I have not done enything weards just follow simple steps to install it.</p> <p dir="auto">I want to use QUTIP and the matplotlib is essential for it...please if someone know it would be really nice</p> <p dir="auto">thanks!<br> regards,</p>
1