text1
stringlengths 0
536k
| text2
stringlengths 0
536k
| label
int64 0
1
|
---|---|---|
<h3 dir="auto">Version</h3>
<p dir="auto">2.5.3</p>
<h3 dir="auto">Reproduction link</h3>
<p dir="auto"><a href="https://vuejs.org/v2/guide/render-function.html#Template-Compilation" rel="nofollow">https://vuejs.org/v2/guide/render-function.html#Template-Compilation</a></p>
<p dir="auto">(Alternative reproduction on jsfiddle: <a href="https://jsfiddle.net/Linusborg/pqbppg7a/" rel="nofollow">https://jsfiddle.net/Linusborg/pqbppg7a/</a>)</p>
<h3 dir="auto">Steps to reproduce</h3>
<ol dir="auto">
<li>Paste the following piece of HTML into the textarea of the linked documentation chapter above.</li>
</ol>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<input type="text" v-bind:value="message" v-model="message">"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">input</span> <span class="pl-c1">type</span>="<span class="pl-s">text</span>" <span class="pl-c1">v-bind:value</span>="<span class="pl-s">message</span>" <span class="pl-c1">v-model</span>="<span class="pl-s">message</span>"<span class="pl-kos">></span></pre></div>
<ol start="2" dir="auto">
<li>Inspect the code of the created render function, especially the <code class="notranslate">domProps</code> options:</li>
</ol>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="domProps: {
"value": message,
"value": (message)
},"><pre class="notranslate"><span class="pl-s1">domProps</span>: <span class="pl-kos">{</span>
<span class="pl-s">"value"</span>: <span class="pl-s1">message</span><span class="pl-kos">,</span>
<span class="pl-s">"value"</span>: <span class="pl-kos">(</span><span class="pl-s1">message</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span></pre></div>
<h3 dir="auto">What is expected?</h3>
<p dir="auto">The code should run in all browsers, or throw an error or warning.</p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto">IE11 throws an error: "duplicate properties not allowed in strict mode".</p>
<hr>
<p dir="auto">I realize that using both v-bind:value and v-model on an input is not recommended or even sensible, but it doesn't throw an error or warning when done in modern browsers, and doesn't create any problems if the expression is the same for both, so it can easily be overlooked when added accidentally.</p>
<p dir="auto">Uglify also doesn't help - it doesn't remove the first occurrence that would otherwise be "overwritten" by the second in modern browsers.</p>
<p dir="auto">So what would be a sensible solution? I'm not sure.</p>
<ul dir="auto">
<li>We could adjust the <a href="https://github.com/vuejs/vue/blob/dev/src/compiler/codegen/index.js#L488-L495">codegen of domProps</a> to check for a double occurence of the <code class="notranslate">value</code> prop on elements of type "input" and drop all but the last occurrence. Possible Problem: performance?</li>
<li>We could log a warning to console (how to deal with that in vue-loader?)</li>
<li>We could throw an error, forcing the user to choose between the two (breaking change)</li>
<li>we could improve awareness by adding a warning to docs and a rule to eslint-plugin-vue?</li>
</ul> | <h3 dir="auto">Version</h3>
<p dir="auto">2.6.10</p>
<h3 dir="auto">Reproduction link</h3>
<p dir="auto"><a href="https://codesandbox.io/s/quizzical-hooks-flxdp" rel="nofollow">https://codesandbox.io/s/quizzical-hooks-flxdp</a></p>
<h3 dir="auto">Steps to reproduce</h3>
<p dir="auto">No steps. Just check out the reproduction.</p>
<h3 dir="auto">What is expected?</h3>
<p dir="auto">The class styles in App.vue to be applied on the functional SFC.</p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto">Parent class is added to the classlist of child, but the css is not generated for the class.</p>
<hr>
<p dir="auto">If you remove the 'scoped' keyword from functional component, then all the styles are applied. But the need is to use this with scoped styles, as with normal components is done.</p> | 0 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=auke" rel="nofollow">Auke van Leeuwen</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-8805?redirect=false" rel="nofollow">SPR-8805</a></strong> and commented</p>
<p dir="auto">There is a small typo in the one of the code samples in the Cache Abstraction documentation: <a href="http://static.springsource.org/spring/docs/3.1.0.M1/spring-framework-reference/html/cache.html" rel="nofollow">http://static.springsource.org/spring/docs/3.1.0.M1/spring-framework-reference/html/cache.html</a>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<bean id="cacheManager" class="org.springframework.cache.ehcache.EhcacheCacheManager" p:cache-manager="ehcache"/>
<!-- Ehcache library setup -->
<bean id="ehcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean" p:config-location="ehcache.xml"/>"><pre class="notranslate"><code class="notranslate"><bean id="cacheManager" class="org.springframework.cache.ehcache.EhcacheCacheManager" p:cache-manager="ehcache"/>
<!-- Ehcache library setup -->
<bean id="ehcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean" p:config-location="ehcache.xml"/>
</code></pre></div>
<p dir="auto">Instead of <code class="notranslate">org.springframework.cache.ehcache.EhcacheCacheManager</code> it's actually: <code class="notranslate">org.springframework.cache.ehcache.Eh{*}C{*}acheCacheManager</code>. Just a small typo but it will of course not start your spring-context if you copy-paste it.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.1 RC1</p>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398114177" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13277" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13277/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13277">#13277</a> Use lowercase 'c' in 'Ehcache' consistently (<em><strong>"duplicates"</strong></em>)</li>
</ul> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=ylazzari" rel="nofollow">Yannick Lazzari</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-9100?redirect=false" rel="nofollow">SPR-9100</a></strong> and commented</p>
<p dir="auto">There seems to be a difference in the way configuration classes, i.e. classes annotated with <code class="notranslate">@Configuration</code>, are handled by the ClassPathBeanDefinitionScanner vs the AnnotatedBeanDefinitionReader. The javadoc says that the AnnotatedBeanDefinitionReader is, "...an alternative to ClassPathBeanDefinitionScanner, applying the same resolution of annotations but for explicitly registered classes only.". If you read the Spring forum thread attached to this issue report, you will find an example that shows that the way <code class="notranslate">@ComponentScan</code> excludeFilters are processed is not the same; actually, they seemed to be totally ignored when the ClassPathBeanDefinitionScanner scans a class annotated in the following manner:</p>
<p dir="auto"><code class="notranslate">@Configuration</code><br>
<code class="notranslate">@ComponentScan</code>(basePackages={"com.foo", "com.bar"}, excludeFilters={<code class="notranslate">@ComponentScan</code>.Filter(type = FilterType.ASSIGNABLE_TYPE, value = com.foo.ComponentA.class)})<br>
public class TestConfig {<br>
}</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.1 GA</p>
<p dir="auto"><strong>Reference URL:</strong> <a href="http://forum.springsource.org/showthread.php?122907-Spring-3-1-AnnotationConfigWebApplicationContext-scan-vs-register-method&p=400832" rel="nofollow">http://forum.springsource.org/showthread.php?122907-Spring-3-1-AnnotationConfigWebApplicationContext-scan-vs-register-method&p=400832</a></p>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398116710" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13670" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13670/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13670">#13670</a> <code class="notranslate">@ComponentScan</code> with includeFilters on <code class="notranslate">@Import-ed</code> context does not work (<em><strong>"duplicates"</strong></em>)</li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398110272" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12634" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12634/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12634">#12634</a> <code class="notranslate">@ComponentScan</code> does not work when referenced from XML config</li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398114714" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13361" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13361/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13361">#13361</a> <code class="notranslate">@ComponentScan</code>(includeFilters=<code class="notranslate">@Filter</code>(...)) fails when <code class="notranslate">@Import</code>'ed</li>
</ul> | 0 |
<h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => <g-emoji class="g-emoji" alias="grey_question" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2754.png">❔</g-emoji> 3.4.3 native sdk</li>
<li>Operating System / Platform => ❔ Mac OS</li>
<li>Compiler => <g-emoji class="g-emoji" alias="grey_question" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2754.png">❔</g-emoji> native c++ android studio</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">undefined reference to `cv::dnn::experimental_dnn_34_v7::Net::forward(cv::_OutputArray const&, std::__ndk1::vector<cv::String, std::__ndk1::allocatorcv::String > const&)'<br>
clang++: error: linker command failed with exit code 1 (use -v to see invocation)<br>
ninja: build stopped: subcommand failed.</p>
<h5 dir="auto">Steps to reproduce</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" #include <jni.h>
#include <string>
#include <opencv2/imgproc.hpp>
#include <opencv2/highgui.hpp>
#include <opencv2/dnn.hpp>
using namespace std;
using namespace cv;
using namespace cv::dnn;
extern "C" JNIEXPORT jstring JNICALL
Java_com_example_mats86_myapplication_MainActivity_stringFromJNI(
JNIEnv *env,
jobject /* this */) {
std::string hello = "Hello from C++";
float confThreshold = 0.5;
float nmsThreshold = 0.4;
int newW = 320;
int newH = 320;
String model = "/storage/emulated/0/DCIM/ImageProcessing/tessdata/frozen_east_text_detection.pb";
string imPath = "/storage/emulated/0/DCIM/ImageProcessing/test.jpg";
Mat im = imread(imPath, IMREAD_COLOR);
Mat orig;
im.copyTo(im);
int origH = im.rows;
int origW = im.cols;
int rW = (int) (origW / float(newW));
int rH = (int) (origH / float(newH));
resize(im, im, Size(newW, newH));
int H = im.rows;
int W = im.cols;
vector<Mat> outs;
vector<String> layerNames(2);
layerNames[0] = "feature_fusion/Conv_7/Sigmoid";
layerNames[1] = "feature_fusion/concat_3";
Net net = readNet(model);
// construct a blob from the image and then perform a forward pass of
// the model to obtain the two output layer sets
Mat frame, blob;
blobFromImage(frame, blob, 1.0, Size(newW, newH), Scalar(123.68, 116.78, 103.94), true, false);
net.setInput(blob);
net.forward(outs, layerNames); // undefined reference to `cv::dnn::experimental_dnn_34_v7
return env->NewStringUTF(hello.c_str());"><pre class="notranslate"><code class="notranslate"> #include <jni.h>
#include <string>
#include <opencv2/imgproc.hpp>
#include <opencv2/highgui.hpp>
#include <opencv2/dnn.hpp>
using namespace std;
using namespace cv;
using namespace cv::dnn;
extern "C" JNIEXPORT jstring JNICALL
Java_com_example_mats86_myapplication_MainActivity_stringFromJNI(
JNIEnv *env,
jobject /* this */) {
std::string hello = "Hello from C++";
float confThreshold = 0.5;
float nmsThreshold = 0.4;
int newW = 320;
int newH = 320;
String model = "/storage/emulated/0/DCIM/ImageProcessing/tessdata/frozen_east_text_detection.pb";
string imPath = "/storage/emulated/0/DCIM/ImageProcessing/test.jpg";
Mat im = imread(imPath, IMREAD_COLOR);
Mat orig;
im.copyTo(im);
int origH = im.rows;
int origW = im.cols;
int rW = (int) (origW / float(newW));
int rH = (int) (origH / float(newH));
resize(im, im, Size(newW, newH));
int H = im.rows;
int W = im.cols;
vector<Mat> outs;
vector<String> layerNames(2);
layerNames[0] = "feature_fusion/Conv_7/Sigmoid";
layerNames[1] = "feature_fusion/concat_3";
Net net = readNet(model);
// construct a blob from the image and then perform a forward pass of
// the model to obtain the two output layer sets
Mat frame, blob;
blobFromImage(frame, blob, 1.0, Size(newW, newH), Scalar(123.68, 116.78, 103.94), true, false);
net.setInput(blob);
net.forward(outs, layerNames); // undefined reference to `cv::dnn::experimental_dnn_34_v7
return env->NewStringUTF(hello.c_str());
</code></pre></div>
<p dir="auto">}</p> | <h5 dir="auto">System information (version)</h5>
<h5 dir="auto">Detailed description</h5>
<h5 dir="auto">Steps to reproduce</h5>
<p dir="auto">I use the cvGetSize to get the cvsize, but it break, as:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/40679769/70016424-43df5980-15bb-11ea-8884-dc29525f3ff3.png"><img src="https://user-images.githubusercontent.com/40679769/70016424-43df5980-15bb-11ea-8884-dc29525f3ff3.png" alt="图片" style="max-width: 100%;"></a></p> | 0 |
<p dir="auto">It appears that only some of the image ops (e.g. <code class="notranslate">tf.image.random_saturation()</code>) only accept single images (rank-3 tensors), while others allow batches of images (rank-4 tensors). Should this be made more consistent so that all image ops allow for higher-rank tensors? There doesn't seem to be much about this in the API documentation (some ops just say that the last dimension needs to be 3).</p>
<h3 dir="auto">System Information</h3>
<ul dir="auto">
<li><em>Have I written custom code?</em>: Yes</li>
<li><em>OS Platform and Distribution</em>: Ubuntu 16</li>
<li><em>TensorFlow installed from (source or binary)?</em>: binary</li>
<li><em>TensorFlow version</em>: 1.0.1</li>
<li><em>Bazel version (if compiling from source)</em>: N/A</li>
<li><em>CUDA/cuDNN version</em>: N/A</li>
<li><em>GPU Model and Memory</em>: N/A</li>
<li><em>Exact command to reproduce</em>:</li>
</ul>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import tensorflow as tf
images = tf.placeholder(tf.float32, shape=(None, None, None, 3), name='images')
# This is OK
x = tf.image.random_contrast(images, lower=0.5, upper=1.0)
# Throws an exception because `images` is rank-4
x = tf.image.random_saturation(images, lower=0.5, upper=1.0)"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">tensorflow</span> <span class="pl-k">as</span> <span class="pl-s1">tf</span>
<span class="pl-s1">images</span> <span class="pl-c1">=</span> <span class="pl-s1">tf</span>.<span class="pl-en">placeholder</span>(<span class="pl-s1">tf</span>.<span class="pl-s1">float32</span>, <span class="pl-s1">shape</span><span class="pl-c1">=</span>(<span class="pl-c1">None</span>, <span class="pl-c1">None</span>, <span class="pl-c1">None</span>, <span class="pl-c1">3</span>), <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'images'</span>)
<span class="pl-c"># This is OK</span>
<span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">tf</span>.<span class="pl-s1">image</span>.<span class="pl-en">random_contrast</span>(<span class="pl-s1">images</span>, <span class="pl-s1">lower</span><span class="pl-c1">=</span><span class="pl-c1">0.5</span>, <span class="pl-s1">upper</span><span class="pl-c1">=</span><span class="pl-c1">1.0</span>)
<span class="pl-c"># Throws an exception because `images` is rank-4</span>
<span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">tf</span>.<span class="pl-s1">image</span>.<span class="pl-en">random_saturation</span>(<span class="pl-s1">images</span>, <span class="pl-s1">lower</span><span class="pl-c1">=</span><span class="pl-c1">0.5</span>, <span class="pl-s1">upper</span><span class="pl-c1">=</span><span class="pl-c1">1.0</span>)</pre></div> | <h3 dir="auto">System information</h3>
<ul dir="auto">
<li><strong>Have I written custom code (as opposed to using a stock example script provided in TensorFlow)</strong>:</li>
<li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04)</strong>: Windows 10</li>
<li><strong>TensorFlow installed from (source or binary)</strong>: pip</li>
<li><strong>TensorFlow version (use command below)</strong>: 1.9</li>
<li><strong>Python version</strong>: 3.5.1-32 bit</li>
<li><strong>Bazel version (if compiling from source)</strong>: 0.15.0</li>
<li><strong>GCC/Compiler version (if compiling from source)</strong>:</li>
<li><strong>CUDA/cuDNN version</strong>: nothing since i have AMD radeon</li>
<li><strong>GPU model and memory</strong>:</li>
<li><strong>Exact command to reproduce</strong>:</li>
</ul>
<p dir="auto">bazel run -c opt tensorflow/contrib/lite/toco:toco -- --savedmodel_directory=C:\Users\LENOVO-PC\DIZIZIT\saved_model -- output_file=C:\Users\LENOVO-PC\DIZIZIT\saved_model\maonani.tflite</p>
<h3 dir="auto">Describe the problem</h3>
<p dir="auto">Im trying to convert my saved_model.pb from object detection api file to tensorflow lite but it gives me error such as</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ERROR: C:/users/lenovo-pc/tensorflow/tensorflow/contrib/lite/kernels/BUILD:63:1: C++ compilation of rule '//tensorflow/contrib/lite/kernels:gemm_support' failed (Exit 2)
.\tensorflow/contrib/lite/context.h(183): error C2144: syntax error: 'float' should be preceded by ';'
.\tensorflow/contrib/lite/context.h(183): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
Target //tensorflow/contrib/lite/toco:toco failed to build
"><pre class="notranslate"><code class="notranslate">ERROR: C:/users/lenovo-pc/tensorflow/tensorflow/contrib/lite/kernels/BUILD:63:1: C++ compilation of rule '//tensorflow/contrib/lite/kernels:gemm_support' failed (Exit 2)
.\tensorflow/contrib/lite/context.h(183): error C2144: syntax error: 'float' should be preceded by ';'
.\tensorflow/contrib/lite/context.h(183): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
Target //tensorflow/contrib/lite/toco:toco failed to build
</code></pre></div>
<p dir="auto">I tried reinstalling all the pre req of tensorflow and use the code again and it gave different error saying</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ERROR: C:/users/lenovo-pc/tensorflow/tensorflow/contrib/lite/kernels/BUILD:41:1: C++ compilation of rule '//tensorflow/contrib/lite/kernels:eigen_support' failed (Exit 2)
cl : Command line error D8021 : invalid numeric argument '/Wno-error=reorder'
Target //tensorflow/contrib/lite/toco:toco failed to build
"><pre class="notranslate"><code class="notranslate">ERROR: C:/users/lenovo-pc/tensorflow/tensorflow/contrib/lite/kernels/BUILD:41:1: C++ compilation of rule '//tensorflow/contrib/lite/kernels:eigen_support' failed (Exit 2)
cl : Command line error D8021 : invalid numeric argument '/Wno-error=reorder'
Target //tensorflow/contrib/lite/toco:toco failed to build
</code></pre></div>
<p dir="auto">for the 3rd attempt it gives me error saying:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ERROR: C:/users/lenovo-pc/tensorflow/tensorflow/contrib/lite/profiling/BUILD:37:1: C++ compilation of rule '//tensorflow/contrib/lite/profiling:time' failed (Exit 2)
tensorflow/contrib/lite/profiling/time.cc(17): fatal error C1083: Cannot open include file: 'sys/time.h': No such file or directory
Target //tensorflow/contrib/lite/toco:toco failed to build
Use --verbose_failures to see the command lines of failed build steps."><pre class="notranslate"><code class="notranslate">ERROR: C:/users/lenovo-pc/tensorflow/tensorflow/contrib/lite/profiling/BUILD:37:1: C++ compilation of rule '//tensorflow/contrib/lite/profiling:time' failed (Exit 2)
tensorflow/contrib/lite/profiling/time.cc(17): fatal error C1083: Cannot open include file: 'sys/time.h': No such file or directory
Target //tensorflow/contrib/lite/toco:toco failed to build
Use --verbose_failures to see the command lines of failed build steps.
</code></pre></div>
<h3 dir="auto">Source code / logs</h3>
<p dir="auto">C:\Users\LENOVO-PC\tensorflow>bazel run -c opt tensorflow/contrib/lite/toco:toco -- --savedmodel_directory=C:\Users\LENOVO-PC\DIZIZIT\saved_model -- output_file=C:\Users\LENOVO-PC\DIZIZIT\saved_model\maonani.tflite<br>
INFO: Build options have changed, discarding analysis cache.<br>
INFO: Analysed target //tensorflow/contrib/lite/toco:toco (1 packages loaded).<br>
INFO: Found 1 target...<br>
ERROR: C:/users/lenovo-pc/tensorflow/tensorflow/contrib/lite/kernels/BUILD:63:1: C++ compilation of rule '//tensorflow/contrib/lite/kernels:gemm_support' failed (Exit 2)<br>
.\tensorflow/contrib/lite/context.h(183): error C2144: syntax error: 'float' should be preceded by ';'<br>
.\tensorflow/contrib/lite/context.h(183): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int<br>
Target //tensorflow/contrib/lite/toco:toco failed to build<br>
Use --verbose_failures to see the command lines of failed build steps.<br>
INFO: Elapsed time: 6.715s, Critical Path: 1.81s<br>
INFO: 1 process: 1 local.<br>
FAILED: Build did NOT complete successfully<br>
FAILED: Build did NOT complete successfully</p>
<p dir="auto">2nd attempt was too long to post here</p> | 0 |
<p dir="auto">Open Gallery. Scroll up to collapse the app bar. Tap a component (e.g. Cards).</p>
<p dir="auto">Notice the shadow on the app bar disappears, the transition into cards completes, and then the shadow reappears.</p>
<p dir="auto">Tested on a Nexus 5 and 5X.</p> | <p dir="auto">[✓] Flutter (on Linux, channel master)<br>
• Flutter at /src/flutter<br>
• Framework revision <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/flutter/flutter/commit/92d0445a8f14f7ff339f47b1786a941e0af0d691/hovercard" href="https://github.com/flutter/flutter/commit/92d0445a8f14f7ff339f47b1786a941e0af0d691"><tt>92d0445</tt></a> (43 minutes ago), engine revision <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/flutter/flutter/commit/603b0701a6f307abda2b0b794492f46fa732bacf/hovercard" href="https://github.com/flutter/flutter/commit/603b0701a6f307abda2b0b794492f46fa732bacf"><tt>603b070</tt></a></p>
<p dir="auto">[✓] Android toolchain - develop for Android devices (Android SDK 23.0.1)<br>
• Android SDK at /usr/local/google/home/eseidel/Android/Sdk<br>
• Platform android-23, build-tools 23.0.1<br>
• OpenJDK Runtime Environment (IcedTea 2.6.6) (7u101-2.6.6-0ubuntu0.14.04.1)</p>
<p dir="auto">[✓] Atom - a lightweight development environment for Flutter<br>
• flutter plugin version 0.2.2<br>
• dartlang plugin version 0.6.22</p>
<p dir="auto">See video<br>
<a href="https://youtu.be/sK7XSPdNzHo" rel="nofollow">https://youtu.be/sK7XSPdNzHo</a></p> | 1 |
<h2 dir="auto">Summary</h2>
<p dir="auto">Hi! I'm getting some of my POST requests duplicated at my API, and I was wondering if an axios request could have been automatically retried/sent again in case of connection failure, reset, or any other reason.</p>
<p dir="auto">As this is a random behavior and it's happening in production/users machines, it is being a kinda difficult to collect any evidence. Maybe you guys have experienced, or have acknowledge of something similar to my scenario.</p>
<p dir="auto">All users that reported duplication in their actions also experienced a abnormal wait time.</p>
<p dir="auto">I have checked the action creator that calls axios.create, and it is being dispatched just one time by an onClick event.</p>
<p dir="auto">Thanks in advance!</p>
<h2 dir="auto">Context</h2>
<ul dir="auto">
<li>"axios": "^0.15.3"</li>
<li>"react": "15.0.2",</li>
<li>"react-redux": "^4.0.0",</li>
<li>Chrome 58.0.3029.81 (64-bit), Windows 10 64-bits</li>
<li>Asp.net WebApi</li>
</ul> | <p dir="auto">I've spent a few hours today trying to get a post request to work with a few parameters and a file that I need to upload.</p>
<p dir="auto">I was able to make it work with pure javascript and XMLHttpRequest but it doesn't work with Axios. What am I doing wrong?</p>
<p dir="auto">Here's the code that works using XMLHttpRequest:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="let data = new FormData();
data.append('action', 'ADD');
data.append('param', 0);
data.append('secondParam', 0);
data.append('file', new Blob([payload], { type: 'text/csv' }));
// this works
let request = new XMLHttpRequest();
request.open('POST', url);
request.send(data);"><pre class="notranslate"><span class="pl-k">let</span> <span class="pl-s1">data</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-v">FormData</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">data</span><span class="pl-kos">.</span><span class="pl-en">append</span><span class="pl-kos">(</span><span class="pl-s">'action'</span><span class="pl-kos">,</span> <span class="pl-s">'ADD'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">data</span><span class="pl-kos">.</span><span class="pl-en">append</span><span class="pl-kos">(</span><span class="pl-s">'param'</span><span class="pl-kos">,</span> <span class="pl-c1">0</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">data</span><span class="pl-kos">.</span><span class="pl-en">append</span><span class="pl-kos">(</span><span class="pl-s">'secondParam'</span><span class="pl-kos">,</span> <span class="pl-c1">0</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">data</span><span class="pl-kos">.</span><span class="pl-en">append</span><span class="pl-kos">(</span><span class="pl-s">'file'</span><span class="pl-kos">,</span> <span class="pl-k">new</span> <span class="pl-v">Blob</span><span class="pl-kos">(</span><span class="pl-kos">[</span><span class="pl-s1">payload</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">type</span>: <span class="pl-s">'text/csv'</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">// this works</span>
<span class="pl-k">let</span> <span class="pl-s1">request</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-v">XMLHttpRequest</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">request</span><span class="pl-kos">.</span><span class="pl-en">open</span><span class="pl-kos">(</span><span class="pl-s">'POST'</span><span class="pl-kos">,</span> <span class="pl-s1">url</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">request</span><span class="pl-kos">.</span><span class="pl-en">send</span><span class="pl-kos">(</span><span class="pl-s1">data</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">What would be the 'Axios' version of that?</p>
<p dir="auto">Here's one of my tries (the simple one):</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// this won't work
const config = { headers: { 'Content-Type': 'multipart/form-data' } };
axios.post(url, data, config)
.then(response => console.log(response))
.catch(errors => console.log(errors));"><pre class="notranslate"><span class="pl-c">// this won't work</span>
<span class="pl-k">const</span> <span class="pl-s1">config</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span> <span class="pl-c1">headers</span>: <span class="pl-kos">{</span> <span class="pl-s">'Content-Type'</span>: <span class="pl-s">'multipart/form-data'</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-s1">axios</span><span class="pl-kos">.</span><span class="pl-en">post</span><span class="pl-kos">(</span><span class="pl-s1">url</span><span class="pl-kos">,</span> <span class="pl-s1">data</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-en">then</span><span class="pl-kos">(</span><span class="pl-s1">response</span> <span class="pl-c1">=></span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">response</span><span class="pl-kos">)</span><span class="pl-kos">)</span>
<span class="pl-kos">.</span><span class="pl-en">catch</span><span class="pl-kos">(</span><span class="pl-s1">errors</span> <span class="pl-c1">=></span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">errors</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Thank you! And thanks for your great work with Axios!</p> | 0 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=yozh" rel="nofollow">Stepan Koltsov</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-8719?redirect=false" rel="nofollow">SPR-8719</a></strong> and commented</p>
<p dir="auto"><code class="notranslate">@ComponentScan</code> does not work in <code class="notranslate">@Import-ed</code> configuration.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="public class Coin { }
public class Main {
@Configuration
@ComponentScan(basePackageClasses = Main.class,
useDefaultFilters = false,
includeFilters = @ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE, value = Coin.class))
public static class Conf1 {
}
@Configuration
@Import(Conf1.class)
public static class Conf2 {
}
public static void main(String[] args) {
System.out.println("loading Conf1"); // works fine
new AnnotationConfigApplicationContext(Conf1.class).getBean(Coin.class);
System.out.println("loading Conf2"); // cannot find a bean
new AnnotationConfigApplicationContext(Conf2.class).getBean(Coin.class);
System.out.println("Unreachable in Spring 3.1.0.M2");
}
}"><pre class="notranslate"><code class="notranslate">public class Coin { }
public class Main {
@Configuration
@ComponentScan(basePackageClasses = Main.class,
useDefaultFilters = false,
includeFilters = @ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE, value = Coin.class))
public static class Conf1 {
}
@Configuration
@Import(Conf1.class)
public static class Conf2 {
}
public static void main(String[] args) {
System.out.println("loading Conf1"); // works fine
new AnnotationConfigApplicationContext(Conf1.class).getBean(Coin.class);
System.out.println("loading Conf2"); // cannot find a bean
new AnnotationConfigApplicationContext(Conf2.class).getBean(Coin.class);
System.out.println("Unreachable in Spring 3.1.0.M2");
}
}
</code></pre></div>
<p dir="auto">Outputs:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="loading Conf1
loading Conf2
Exception in thread "main" org.springframework.beans.factory.NoSuchBeanDefinitionException: No unique bean of type [ru.yandex.commune.junk.stepancheg.spring.shinderuk.Coin] is defined: expected single bean but found 0:
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:269)
at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1101)
at ru.yandex.commune.junk.stepancheg.spring.shinderuk.Main.main(Main.java:31)"><pre class="notranslate"><code class="notranslate">loading Conf1
loading Conf2
Exception in thread "main" org.springframework.beans.factory.NoSuchBeanDefinitionException: No unique bean of type [ru.yandex.commune.junk.stepancheg.spring.shinderuk.Coin] is defined: expected single bean but found 0:
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:269)
at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1101)
at ru.yandex.commune.junk.stepancheg.spring.shinderuk.Main.main(Main.java:31)
</code></pre></div>
<p dir="auto">Probably related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398112157" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12956" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12956/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12956">#12956</a>.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.1 M2</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="398116710" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13670" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13670/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13670">#13670</a> <code class="notranslate">@ComponentScan</code> with includeFilters on <code class="notranslate">@Import-ed</code> context does not work (<em><strong>"duplicates"</strong></em>)</li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398110272" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12634" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12634/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12634">#12634</a> <code class="notranslate">@ComponentScan</code> does not work when referenced from XML config (<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="398117136" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13738" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13738/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13738">#13738</a> ClassPathBeanDefinitionScanner vs ClassPathBeanDefinitionScanner: difference in behavior when dealing with <code class="notranslate">@ComponentScan</code> excludeFilters</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/d9f7fdd120409fff4491561215e5b2dda74e2b02/hovercard" href="https://github.com/spring-projects/spring-framework/commit/d9f7fdd120409fff4491561215e5b2dda74e2b02"><tt>d9f7fdd</tt></a></p>
<p dir="auto">2 votes, 0 watchers</p> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=superpuma" rel="nofollow">Jon Are Storløkken</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-2877?redirect=false" rel="nofollow">SPR-2877</a></strong> and commented</p>
<p dir="auto">This is mainly a documentation issue. (Although it would be possible to improve on the design as well)</p>
<p dir="auto">The problem is the org.springframework.scheduling.quartz.JobDetailBean. It should be clearly stated that this bean cannot be used with a persistent job store. This is such an important issue when using Quartz, that it should be mentioned explicitly. Among other things, a persistent job store is required when running Quartz in a cluster. This is a very common requirement in enterprise applications, and JobDetailBean is therefore not very useful for most applications.</p>
<p dir="auto">My problem actually stems from using code copied from the book ProSpring (p 513) by Rob Harrop, where he shows an example of using JobDetailBean with a persistent job store. Clearly, this config has never been tested. This is a widely read book (by an Interface21 guy AFAIK), and this config will be widely read and copied.</p>
<p dir="auto">In my opinion the code could be improved:<br>
The problem stems from JobDetail bean being ApplicationContextAware, which it needn't be. (It puts the applicationContext in the jobDataMap) SchedulerFactory puts the applicationContext in the schedulerContext anyway, why can not the Job get the applicationContext from there?</p>
<p dir="auto">See this thread for some further info:<br>
<a href="http://forum.springframework.org/showthread.php?t=31820" rel="nofollow">http://forum.springframework.org/showthread.php?t=31820</a></p>
<hr>
<p dir="auto"><strong>Affects:</strong> 1.2.8, 2.0.1</p>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398072964" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/7537" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/7537/hovercard" href="https://github.com/spring-projects/spring-framework/issues/7537">#7537</a> Upgrade to Quartz 1.6.1 (for trigger persistence with SimpleTriggerBean and CronTriggerBean) (<em><strong>"duplicates"</strong></em>)</li>
</ul>
<p dir="auto">1 votes, 1 watchers</p> | 0 |
<h1 dir="auto">Description of the new feature/enhancement</h1>
<p dir="auto">Screenshot taken while terminal is maximized (sorry, mouse disappears when it reaches the screen edge, but you can see the yellow circle pop up when I click):<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/16479446/69483710-9791bc00-0ddf-11ea-938a-f0d6e7b997c1.gif"><img src="https://user-images.githubusercontent.com/16479446/69483710-9791bc00-0ddf-11ea-938a-f0d6e7b997c1.gif" alt="terminal-issue" data-animated-image="" style="max-width: 100%;"></a></p>
<p dir="auto">When using Windows Terminal in a maximized state, if you quickly move your mouse over to the tab you want to switch to, it is common to just move the mouse until the mouse stops when it reaches the edge of the screen above the tab. There is a small section between the the screen edge and the top of the tab, if your mouse lands in this area, the tab is not highlighted and you cannot click on it. You then have to move your mouse down just slightly in order to highlight and click. This is fine when the window is floating, but in maximized mode, it is frustrating.</p>
<p dir="auto">What I want to happen is similar to how the Chrome browser works. If it is a floating window, it has that gap between tab and window edge. But if you maximize it, then the gap goes away. So when you move your mouse all the way to the edge of the screen, over the tab you want to use, it still highlights the tab and you can click. This makes for a much more fluid experience.</p> | <h1 dir="auto">Description of the new feature/enhancement</h1>
<p dir="auto">Edge and most other programs that use tabs where a menu bar is not present keep the tabs flush to the top of the screen rather than padding it down.</p>
<h1 dir="auto">Proposed technical implementation details (optional)</h1>
<p dir="auto">Make Terminal consistent with Edge Dev (ideally use the same code if possible) to render the tabs on top.</p> | 1 |
<p dir="auto">I tried several combinations. Nothing works:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function decorator(Class) { return Class; }
@decorator
class B { }"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">decorator</span><span class="pl-kos">(</span><span class="pl-v">Class</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-v">Class</span><span class="pl-kos">;</span> <span class="pl-kos">}</span>
@<span class="pl-s1">decorator</span>
<span class="pl-k">class</span> <span class="pl-v">B</span> <span class="pl-kos">{</span> <span class="pl-kos">}</span></pre></div>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"presets": ["es2015", "stage-0"],
"plugins": [ "transform-decorators", "syntax-decorators"]
}"><pre class="notranslate">{
<span class="pl-ent">"presets"</span>: [<span class="pl-s"><span class="pl-pds">"</span>es2015<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>stage-0<span class="pl-pds">"</span></span>],
<span class="pl-ent">"plugins"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>transform-decorators<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>syntax-decorators<span class="pl-pds">"</span></span>]
}</pre></div>
<p dir="auto">result (decorator just silently ignored):</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="...
var B = function B() {
_classCallCheck(this, B);
};"><pre class="notranslate">...
<span class="pl-k">var</span> <span class="pl-v">B</span> <span class="pl-c1">=</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-en">_classCallCheck</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">,</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></pre></div>
<p dir="auto">with this order: <code class="notranslate">["stage-0", "es2015"]</code><br>
it throws an error <code class="notranslate">TypeError: src/mxn/decorators.func.test.js: Property right of AssignmentExpression expected node to be of a type ["Expression"] but instead got "Decorator"</code></p> | 1 |
|
<ul dir="auto">
<li>VSCode Version: v1.1.0</li>
<li>OS Version: Windows 7</li>
</ul>
<p dir="auto">Steps to Reproduce:</p>
<ol dir="auto">
<li>Check for updates</li>
<li>When network connection is bad, it will run the corrupted installer. I think it didn't check the downloaded installer's checksum.</li>
</ol> | <p dir="auto">hey guys. i am running on windows 10 pro v-1511 and code v-10.1 it's not updating automatically but it shows a pop-up, i click update now it closes the editor, i have tried to wait for 10 min it didn't work when i launched the code it was the same, what should i do ? maybe it is because my windows is not activated ? i clean installed and lost my key.</p> | 1 |
<p dir="auto">For example:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#![feature(rustdoc)]
extern crate rustdoc;
use rustdoc::html::markdown::Markdown;
fn main() {
let x = "This program makes a variable binding named `x`.";
println!("{}", Markdown(x));
}"><pre class="notranslate"><code class="notranslate">#![feature(rustdoc)]
extern crate rustdoc;
use rustdoc::html::markdown::Markdown;
fn main() {
let x = "This program makes a variable binding named `x`.";
println!("{}", Markdown(x));
}
</code></pre></div>
<p dir="auto">This code runs fine in the playpen (<a href="http://is.gd/HVGloB" rel="nofollow">http://is.gd/HVGloB</a>) and when using the official nightly (<code class="notranslate">rustc -V</code><br>
<code class="notranslate">rustc 1.3.0-nightly (bf3c979ec 2015-06-30)</code>). Expected output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<p>This program makes a variable binding named <code>x</code>.</p>"><pre class="notranslate"><code class="notranslate"><p>This program makes a variable binding named <code>x</code>.</p>
</code></pre></div>
<p dir="auto">However, I compiled Rust on my machine (<code class="notranslate">rustc -V</code> <code class="notranslate">rustc 1.3.0-dev (71a644136 2015-07-02)</code>) and I get the following output instead:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<p>This program makes a variable binding named <code>x</code>`x`.</p>"><pre class="notranslate"><code class="notranslate"><p>This program makes a variable binding named <code>x</code>`x`.</p>
</code></pre></div>
<p dir="auto">Needless to say, this is wreaking havoc on the generated docs, which I'm trying to test before I submit any significant pull requests for rustdoc or rustbook issues.</p>
<p dir="auto">I'm running Windows 7 64-bit and I'm using MSYS2 to run <code class="notranslate">./configure</code> and <code class="notranslate">make</code>.</p>
<p dir="auto">Any ideas? Or perhaps this is actually an issue with <a href="https://github.com/hoedown/hoedown">Hoedown</a>?</p> | <p dir="auto">Using Windows 8.1 x64 with <code class="notranslate">rustc 1.1.0-dev (e9e9279d8 2015-04-22) (built 2015-04-22)</code><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/b26817ca9ad49fddd885e62045cddb40b62116c40dfde1428e92e931a21faeeb/687474703a2f2f692e696d6775722e636f6d2f533244725735762e706e67"><img src="https://camo.githubusercontent.com/b26817ca9ad49fddd885e62045cddb40b62116c40dfde1428e92e931a21faeeb/687474703a2f2f692e696d6775722e636f6d2f533244725735762e706e67" alt="" data-canonical-src="http://i.imgur.com/S2DrW5v.png" style="max-width: 100%;"></a></p> | 1 |
<h3 dir="auto">Bug report</h3>
<p dir="auto"><strong>Bug summary</strong></p>
<p dir="auto">When using pyplot, pyplot.savefig() throws a warning which is non-existent with figure.Figure.savefig(). Upon understanding the warning message and some investigation, it should be associated with figManager adding duplicate "sources of save" to Glib when saving "the current figure" (i.e. it does not recongize the figure being saved is the same as current figure. )</p>
<p dir="auto">This is important as plt.savefig() is usually the way to go when using the matlab style plotting provided by pyplot package. Currently, using plt.gcf().savefig('1.png') would make this error go away, but that's using the object-oriented style of coding, which would require a change in ways of thinking and hence may cause confusion.</p>
<p dir="auto">Suggestion: add a check of the internal figure id in pyplot.savefig() would prevent any duplicates from being generated.</p>
<p dir="auto"><strong>Code for reproduction</strong></p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import matplotlib.pyplot as plt
plt.figure()
plt.plot([1, 2, 3])
plt.savefig('1.png')"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span>
<span class="pl-s1">plt</span>.<span class="pl-en">figure</span>()
<span class="pl-s1">plt</span>.<span class="pl-en">plot</span>([<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">3</span>])
<span class="pl-s1">plt</span>.<span class="pl-en">savefig</span>(<span class="pl-s">'1.png'</span>)</pre></div>
<p dir="auto"><strong>Actual outcome</strong></p>
<p dir="auto">This shows up in the terminal</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/usr/local/lib/python3.8/dist-packages/matplotlib/backends/backend_gtk3.py:195: Warning: Source ID 4 was not found when attempting to remove it
GLib.source_remove(self._idle_draw_id)"><pre class="notranslate"><code class="notranslate">/usr/local/lib/python3.8/dist-packages/matplotlib/backends/backend_gtk3.py:195: Warning: Source ID 4 was not found when attempting to remove it
GLib.source_remove(self._idle_draw_id)
</code></pre></div>
<p dir="auto"><strong>Expected outcome</strong></p>
<p dir="auto">No warning should be thrown.</p>
<p dir="auto"><strong>Matplotlib version</strong></p>
<ul dir="auto">
<li>Operating system: Ubuntu 20.04</li>
<li>Matplotlib version: 3.2.1</li>
<li>Matplotlib backend (<code class="notranslate">print(matplotlib.get_backend())</code>): GTK3Agg</li>
<li>Python version: 3.8.2</li>
</ul>
<p dir="auto">matplotlib was installed via pip3</p> | <p dir="auto">The weekly build with nightly wheels from numpy and pandas<br>
has failed. Check the logs for any updates that need to be<br>
made in matplotlib.<br>
<a href="https://github.com/matplotlib/matplotlib/actions/runs/5560712365">https://github.com/matplotlib/matplotlib/actions/runs/5560712365</a></p> | 0 |
<h1 dir="auto">Summary of the new feature/enhancement</h1>
<p dir="auto"><del>Product Launcher should support keyboard layout mapping for all system keyboard layouts, for example:</del></p>
<p dir="auto"><del><strong>US Keyboard</strong> ⟶ <strong>Russian Keyboard</strong></del><br>
<del><strong>Russian Keyboard</strong> ⟶ <strong>US Keyboard</strong></del><br>
EDIT: commenting out the part about the keyboard switching since it nor relevant, this problem is present even for languages that don't require to switch keyboard.</p>
<p dir="auto">Query <strong>"ьшскщыщае еуфьы"</strong> should display the results of <strong>"ьшскщыщае еуфьы"</strong> and <strong>"microsoft teams"</strong> queries.</p>
<p dir="auto">Query <strong>"rfkmrekznjh"</strong> should display the results of <strong>"калькулятор"</strong> and <strong>"rfkmrekznjh"</strong> queries.</p>
<h2 dir="auto">P.S.</h2>
<p dir="auto">Also Product Launcher should search for the localized app names(<code class="notranslate">ms-resource:AppName</code>) like a Windows Search.</p>
<h3 dir="auto">Product Launcher:</h3>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/6089872/83011284-48447680-a022-11ea-87ce-f2baecb09475.png"><img src="https://user-images.githubusercontent.com/6089872/83011284-48447680-a022-11ea-87ce-f2baecb09475.png" alt="image" style="max-width: 100%;"></a></p>
<h3 dir="auto">Windows Search:</h3>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/6089872/83011331-585c5600-a022-11ea-853f-e7ef6fe01821.png"><img src="https://user-images.githubusercontent.com/6089872/83011331-585c5600-a022-11ea-853f-e7ef6fe01821.png" alt="image" style="max-width: 100%;"></a></p> | <h1 dir="auto">Summary of the new feature/enhancement</h1>
<p dir="auto">I can only search for files or applications under C disk now,if I want to search a file in the other partition I can't use the PowerToys Run to search,so I hope the PowerToys Run can support for other partitions to search .</p>
<h1 dir="auto">Proposed technical implementation details (optional)</h1> | 0 |
<p dir="auto">babel version beta.40<br>
babelrc config</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""presets": [
["@babel/preset-env", {
"targets": {
"browsers": ["last 2 versions", "ie >= 10"],
},
"useBuiltIns": "usage",
}],
"@babel/preset-react",
],"><pre class="notranslate"><code class="notranslate">"presets": [
["@babel/preset-env", {
"targets": {
"browsers": ["last 2 versions", "ie >= 10"],
},
"useBuiltIns": "usage",
}],
"@babel/preset-react",
],
</code></pre></div>
<p dir="auto">babel will generate code:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/*! no exports provided */
/*! all exports used */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_core_js_modules_es6_object_set_prototype_of__ = __webpack_require__(/*! core-js/modules/es6.object.set-prototype-of */ "./node_modules/core-js/modules/es6.object.set-prototype-of.js");
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_core_js_modules_es6_object_set_prototype_of___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_core_js_modules_es6_object_set_prototype_of__);
Object.defineProperty(exports, "__esModule", {
value: true
});"><pre class="notranslate"><code class="notranslate">/*! no exports provided */
/*! all exports used */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_core_js_modules_es6_object_set_prototype_of__ = __webpack_require__(/*! core-js/modules/es6.object.set-prototype-of */ "./node_modules/core-js/modules/es6.object.set-prototype-of.js");
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_core_js_modules_es6_object_set_prototype_of___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_core_js_modules_es6_object_set_prototype_of__);
Object.defineProperty(exports, "__esModule", {
value: true
});
</code></pre></div>
<p dir="auto">It cause error <code class="notranslate">Uncaught (in promise) ReferenceError: exports is not defined.</code></p>
<p dir="auto">If i remove useBuiltIns<br>
babel will generate code:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/*! dynamic exports provided */
/*! all exports used */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});"><pre class="notranslate"><code class="notranslate">/*! dynamic exports provided */
/*! all exports used */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
</code></pre></div>
<p dir="auto">It is right but without harmony</p> | <p dir="auto">Here's my config:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "4.0.0"
},
"useBuiltIns": "usage",
"debug": true,
"shippedProposals": true
}
]
]
}
"devDependencies": {
"npm-run-all": "^4.1.2",
"@babel/cli": "^7.0.0-beta.40",
"@babel/core": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^22.4.1",
"jest": "^22.4.2"
}
}"><pre class="notranslate"><code class="notranslate">{
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "4.0.0"
},
"useBuiltIns": "usage",
"debug": true,
"shippedProposals": true
}
]
]
}
"devDependencies": {
"npm-run-all": "^4.1.2",
"@babel/cli": "^7.0.0-beta.40",
"@babel/core": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^22.4.1",
"jest": "^22.4.2"
}
}
</code></pre></div>
<p dir="auto">Here's debug output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="
@babel/preset-env: `DEBUG` option
Using targets:
{
"node": "4"
}
Using modules transform: commonjs
Using plugins:
transform-arrow-functions { "node":"4" }
transform-block-scoping { "node":"4" }
@babel/preset-env: `DEBUG` option
transform-classes { "node":"4" }
transform-destructuring { "node":"4" }
transform-for-of { "node":"4" }
transform-function-name { "node":"4" }
transform-object-super { "node":"4" }
transform-parameters { "node":"4" }
transform-spread { "node":"4" }
transform-sticky-regex { "node":"4" }
transform-unicode-regex { "node":"4" }
transform-new-target { "node":"4" }
transform-regenerator { "node":"4" }
transform-exponentiation-operator { "node":"4" }
transform-async-to-generator { "node":"4" }
transform-dotall-regex { "node":"4" }
proposal-async-generator-functions { "node":"4" }
Using targets:
proposal-object-rest-spread { "node":"4" }
proposal-optional-catch-binding { "node":"4" }
proposal-unicode-property-regex { "node":"4" }
Using polyfills with `usage` option:
{
"node": "4"
}
Using modules transform: commonjs
Using plugins:
transform-arrow-functions { "node":"4" }
transform-block-scoping { "node":"4" }
transform-classes { "node":"4" }
transform-destructuring { "node":"4" }
transform-for-of { "node":"4" }
transform-function-name { "node":"4" }
transform-object-super { "node":"4" }
transform-parameters { "node":"4" }
transform-spread { "node":"4" }
transform-sticky-regex { "node":"4" }
transform-unicode-regex { "node":"4" }
transform-new-target { "node":"4" }
transform-regenerator { "node":"4" }
transform-exponentiation-operator { "node":"4" }
transform-async-to-generator { "node":"4" }
transform-dotall-regex { "node":"4" }
proposal-async-generator-functions { "node":"4" }
proposal-object-rest-spread { "node":"4" }
proposal-optional-catch-binding { "node":"4" }
proposal-unicode-property-regex { "node":"4" }
Using polyfills with `usage` option:
[./functionality/bin/index.js] Based on your code and targets, none were added.
[./functionality/index.js] Added following polyfills:
es7.array.includes { "node":"4" }
regenerator-runtime { "node":"4" }
es6.promise { "node":"4" }"><pre class="notranslate"><code class="notranslate">
@babel/preset-env: `DEBUG` option
Using targets:
{
"node": "4"
}
Using modules transform: commonjs
Using plugins:
transform-arrow-functions { "node":"4" }
transform-block-scoping { "node":"4" }
@babel/preset-env: `DEBUG` option
transform-classes { "node":"4" }
transform-destructuring { "node":"4" }
transform-for-of { "node":"4" }
transform-function-name { "node":"4" }
transform-object-super { "node":"4" }
transform-parameters { "node":"4" }
transform-spread { "node":"4" }
transform-sticky-regex { "node":"4" }
transform-unicode-regex { "node":"4" }
transform-new-target { "node":"4" }
transform-regenerator { "node":"4" }
transform-exponentiation-operator { "node":"4" }
transform-async-to-generator { "node":"4" }
transform-dotall-regex { "node":"4" }
proposal-async-generator-functions { "node":"4" }
Using targets:
proposal-object-rest-spread { "node":"4" }
proposal-optional-catch-binding { "node":"4" }
proposal-unicode-property-regex { "node":"4" }
Using polyfills with `usage` option:
{
"node": "4"
}
Using modules transform: commonjs
Using plugins:
transform-arrow-functions { "node":"4" }
transform-block-scoping { "node":"4" }
transform-classes { "node":"4" }
transform-destructuring { "node":"4" }
transform-for-of { "node":"4" }
transform-function-name { "node":"4" }
transform-object-super { "node":"4" }
transform-parameters { "node":"4" }
transform-spread { "node":"4" }
transform-sticky-regex { "node":"4" }
transform-unicode-regex { "node":"4" }
transform-new-target { "node":"4" }
transform-regenerator { "node":"4" }
transform-exponentiation-operator { "node":"4" }
transform-async-to-generator { "node":"4" }
transform-dotall-regex { "node":"4" }
proposal-async-generator-functions { "node":"4" }
proposal-object-rest-spread { "node":"4" }
proposal-optional-catch-binding { "node":"4" }
proposal-unicode-property-regex { "node":"4" }
Using polyfills with `usage` option:
[./functionality/bin/index.js] Based on your code and targets, none were added.
[./functionality/index.js] Added following polyfills:
es7.array.includes { "node":"4" }
regenerator-runtime { "node":"4" }
es6.promise { "node":"4" }
</code></pre></div>
<p dir="auto">Why on earth does my <code class="notranslate">index.build.js</code> file have an import statment?</p>
<blockquote>
<p dir="auto">./functionality/index.js</p>
</blockquote>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import "core-js/modules/es6.promise";
require("regenerator-runtime/runtime");
require("core-js/modules/es7.array.includes");"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s">"core-js/modules/es6.promise"</span><span class="pl-kos">;</span>
<span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"regenerator-runtime/runtime"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"core-js/modules/es7.array.includes"</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> | 1 |
<p dir="auto">This will set the <code class="notranslate">dashCase</code> class on the button to true or false depending upon the value of <code class="notranslate">binding</code>.</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<button [class.dash-case]="binding"></button>"><pre class="notranslate"><span class="pl-c1"><</span><span class="pl-s1">button</span> <span class="pl-kos">[</span><span class="pl-k">class</span><span class="pl-kos">.</span><span class="pl-s1">dash</span><span class="pl-c1">-</span><span class="pl-k">case</span><span class="pl-kos">]</span><span class="pl-c1">=</span>"<span class="pl-c1">binding</span>"<span class="pl-c1">></span><span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">button</span><span class="pl-c1">></span></pre></div>
<p dir="auto">I know dash-case to camelCase conversion is actually a "feature" built into the attribute parser, but it should have exceptions in cases like this.</p>
<p dir="auto">The last thing I would expect is for angular to camel my classNames.</p> | <p dir="auto">If I have a binding:</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<div [class.md-radio-checked]="isChecked">...</div>"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">div</span> <span class="pl-c1">[class.md-radio-checked]</span>="<span class="pl-s">isChecked</span>"<span class="pl-kos">></span>...<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span></pre></div>
<p dir="auto">Then the class name added to the element should be <code class="notranslate">md-radio-checked</code>. Currently, it is <code class="notranslate">mdRadioChecked</code>.</p> | 1 |
<h3 dir="auto">Issue Details</h3>
<ul dir="auto">
<li><strong>Electron Version:</strong>
<ul dir="auto">
<li>5.0.4</li>
</ul>
</li>
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>Windows 10</li>
</ul>
</li>
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li>None</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">webContents.print(option, callback) can work with parameters.</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">webContents.print() will work without parameters.<br>
But it doesn't respond when adding parameters, no errors, and no callback. If the window is closed at this time, a "false" callback will be made.</p>
<p dir="auto"><code class="notranslate">printPage.webContents.print() // may work</code></p>
<p dir="auto"><code class="notranslate">printPage.webContents.print({silent: true}, (e) => console.log(e)) // no respond</code></p>
<p dir="auto">I'm not sure if this is a BUG, and I still want to find a solution. Thank!!!</p> | <p dir="auto">Hey there</p>
<p dir="auto">I have upgraded an app to version 5 as in the list of fixes was the silent printing bug, but the issue is still the same.</p>
<p dir="auto">My code:<br>
<code class="notranslate">printWindow.webContents.print({silent: true});</code></p>
<p dir="auto">Results in nothing happening at all. No errors thrown or anything. Changing it back to false, brings up the window to select the printer and then it prints perfectly fine. It's just the silent mode that doesn't work.</p>
<p dir="auto">I am running this on Windows 10, with Node version 10.15.3. I can not try with a different OS as the printer only has drivers for Windows.</p>
<p dir="auto">Many thanks,<br>
Michael</p> | 1 |
<p dir="auto">I just found seaborn through <a href="http://www.talyarkoni.org/blog/2013/11/18/the-homogenization-of-scientific-computing-or-why-python-is-steadily-eating-other-languages-lunch/" rel="nofollow">a blog post</a> by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tyarkoni/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tyarkoni">@tyarkoni</a>. It seems to be similarly aligned with <a href="https://github.com/olgabot/prettyplotlib">prettyplotlib</a> by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/olgabot/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/olgabot">@olgabot</a>. My first impression is that seaborn seems to have more emphasis on extending plot-type support of matplotlib, while prettyplotlib is more oriented towards improving the overall look and feel of plots produced by matplotlib, in general. I wanted to start a discussion between the two package maintainers, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mwaskom/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mwaskom">@mwaskom</a> and <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/olgabot/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/olgabot">@olgabot</a>, to see if there was potential for collaboration and de-duplication of effort.</p>
<p dir="auto">Regards,<br>
Chris L., a.k.a. <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gotgenes/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gotgenes">@gotgenes</a></p> | <p dir="auto">I am using <code class="notranslate">histplot</code> for plotting simple histogram plots for medium sized data-sizes.</p>
<p dir="auto">I was using <code class="notranslate">histplot</code> for histogram determinations in my dataset using 0.11.1 and all worked very nicely and fast.</p>
<p dir="auto">Then upon upgrading to 0.11.2 it suddenly never finishes and I am stuck in plotting stuff...</p>
<p dir="auto">I have a plotting script looking like this:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="plt.figure()
sns.histplot(data=df, x="AllocCores", binwidth=1, discrete=True, log_scale=(False, True))"><pre class="notranslate"><span class="pl-s1">plt</span>.<span class="pl-en">figure</span>()
<span class="pl-s1">sns</span>.<span class="pl-en">histplot</span>(<span class="pl-s1">data</span><span class="pl-c1">=</span><span class="pl-s1">df</span>, <span class="pl-s1">x</span><span class="pl-c1">=</span><span class="pl-s">"AllocCores"</span>, <span class="pl-s1">binwidth</span><span class="pl-c1">=</span><span class="pl-c1">1</span>, <span class="pl-s1">discrete</span><span class="pl-c1">=</span><span class="pl-c1">True</span>, <span class="pl-s1">log_scale</span><span class="pl-c1">=</span>(<span class="pl-c1">False</span>, <span class="pl-c1">True</span>))</pre></div>
<p dir="auto">The data-frame has 789412 entries and the span of the data <code class="notranslate">df["AllocCores"].min / max</code> is <code class="notranslate">1, 1200</code>. So 1200 bins which I agree is very large but required in our analysis plots ;)</p>
<p dir="auto">Using <strong>0.11.1</strong> I get this:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$> time python script.py
seaborn version = 0.11.1
Starting to plot...
Choosing binwidth = 120
Choosing binwidth = 1070
Choosing binwidth = 16
Choosing binwidth = 16
python script.py 40.34s user 0.83s system 155% cpu 26.479 total"><pre class="notranslate">$<span class="pl-k">></span> <span class="pl-k">time</span> python script.py
seaborn version = 0.11.1
Starting to plot...
Choosing binwidth = 120
Choosing binwidth = 1070
Choosing binwidth = 16
Choosing binwidth = 16
python script.py 40.34s user 0.83s system 155% cpu 26.479 total</pre></div>
<p dir="auto">note that this is plotting 16 files in less than a minute.</p>
<p dir="auto">Using <strong>0.11.2</strong> I get this:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$> time python script.py
seaborn version = 0.11.2
Starting to plot..."><pre class="notranslate">$<span class="pl-k">></span> <span class="pl-k">time</span> python script.py
seaborn version = 0.11.2
Starting to plot...</pre></div>
<p dir="auto">it basically never ends... I have waited more than 10 minutes, but it isn't even done with the 1st plot.</p>
<p dir="auto">When killing it <code class="notranslate">Ctrl+^C</code> I get this stack-trace:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" File "script.py", line 96, in <module>
plot_alloccores(df)
File ".../script_lib.py", line 98, in plot_alloccores
sns.histplot(data=df, x="AllocCores", binwidth=1, discrete=True, log_scale=(False, True))
File "/opt/gnu/9.3.0/python/3.8.5/lib/python3.8/site-packages/seaborn/distributions.py", line 1462, in histplot
p.plot_univariate_histogram(
File "/opt/gnu/9.3.0/python/3.8.5/lib/python3.8/site-packages/seaborn/distributions.py", line 428, in plot_univariate_histogram
for sub_vars, sub_data in self.iter_data("hue", from_comp_data=True):
File "/opt/gnu/9.3.0/python/3.8.5/lib/python3.8/site-packages/seaborn/_core.py", line 983, in iter_data
data = self.comp_data
File "/opt/gnu/9.3.0/python/3.8.5/lib/python3.8/site-packages/seaborn/_core.py", line 1057, in comp_data
comp_col.loc[orig.index] = pd.to_numeric(axis.convert_units(orig))
File "/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/indexing.py", line 671, in __setitem__
self._setitem_with_indexer(indexer, value)
File "/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/indexing.py", line 1055, in _setitem_with_indexer
value = self._align_series(indexer, Series(value))
File "/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/indexing.py", line 1173, in _align_series
ser = ser.reindex(obj.axes[0][indexer[0]], copy=True)._values
File "/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/series.py", line 4030, in reindex
return super().reindex(index=index, **kwargs)
File "/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/generic.py", line 4543, in reindex
return self._reindex_axes(
File "/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/generic.py", line 4558, in _reindex_axes
new_index, indexer = ax.reindex(
File "/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/indexes/base.py", line 3153, in reindex
indexer, missing = self.get_indexer_non_unique(target)
File "/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/indexes/base.py", line 4486, in get_indexer_non_unique
indexer, missing = self._engine.get_indexer_non_unique(tgt_values)
File "pandas/_libs/index.pyx", line 354, in pandas._libs.index.IndexEngine.get_indexer_non_unique
File "<__array_function__ internals>", line 5, in resize
File "/opt/gnu/9.3.0/python/packages/3.8.5/numpy/1.19.1/lib/python3.8/site-packages/numpy-1.19.1-py3.8-linux-x86_64.egg/numpy/core/fromnumeric.py", line 1417, in resize
a = concatenate((a,) * n_copies)
File "<__array_function__ internals>", line 5, in concatenate
KeyboardInterrupt"><pre class="notranslate"> File <span class="pl-s"><span class="pl-pds">"</span>script.py<span class="pl-pds">"</span></span>, line 96, <span class="pl-k">in</span> <span class="pl-k"><</span>module<span class="pl-k">></span>
plot_alloccores(df)
File <span class="pl-s"><span class="pl-pds">"</span>.../script_lib.py<span class="pl-pds">"</span></span>, line 98, <span class="pl-k">in</span> plot_alloccores
sns.histplot(data=df, x=<span class="pl-s"><span class="pl-pds">"</span>AllocCores<span class="pl-pds">"</span></span>, binwidth=1, discrete=True, log_scale=(False, True))
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/3.8.5/lib/python3.8/site-packages/seaborn/distributions.py<span class="pl-pds">"</span></span>, line 1462, <span class="pl-k">in</span> histplot
p.plot_univariate_histogram(
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/3.8.5/lib/python3.8/site-packages/seaborn/distributions.py<span class="pl-pds">"</span></span>, line 428, <span class="pl-k">in</span> plot_univariate_histogram
<span class="pl-k">for</span> <span class="pl-smi">sub_vars, sub_data</span> <span class="pl-k">in</span> self.iter_data(<span class="pl-s"><span class="pl-pds">"</span>hue<span class="pl-pds">"</span></span>, from_comp_data=True):
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/3.8.5/lib/python3.8/site-packages/seaborn/_core.py<span class="pl-pds">"</span></span>, line 983, <span class="pl-k">in</span> iter_data
data = self.comp_data
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/3.8.5/lib/python3.8/site-packages/seaborn/_core.py<span class="pl-pds">"</span></span>, line 1057, <span class="pl-k">in</span> comp_data
comp_col.loc[orig.index] = pd.to_numeric(axis.convert_units(orig))
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/indexing.py<span class="pl-pds">"</span></span>, line 671, <span class="pl-k">in</span> __setitem__
self._setitem_with_indexer(indexer, value)
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/indexing.py<span class="pl-pds">"</span></span>, line 1055, <span class="pl-k">in</span> _setitem_with_indexer
value = self._align_series(indexer, Series(value))
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/indexing.py<span class="pl-pds">"</span></span>, line 1173, <span class="pl-k">in</span> _align_series
ser = ser.reindex(obj.axes[0][indexer[0]], copy<span class="pl-k">=</span>True)._values
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/series.py<span class="pl-pds">"</span></span>, line 4030, <span class="pl-k">in</span> reindex
<span class="pl-k">return</span> <span class="pl-en">super</span>().reindex(index=index, <span class="pl-k">**</span>kwargs)
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/generic.py<span class="pl-pds">"</span></span>, line 4543, <span class="pl-k">in</span> reindex
<span class="pl-k">return</span> self._reindex_axes(
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/generic.py<span class="pl-pds">"</span></span>, line 4558, <span class="pl-k">in</span> _reindex_axes
new_index, indexer = ax.reindex(
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/indexes/base.py<span class="pl-pds">"</span></span>, line 3153, <span class="pl-k">in</span> reindex
indexer, missing = self.get_indexer_non_unique(target)
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/indexes/base.py<span class="pl-pds">"</span></span>, line 4486, <span class="pl-k">in</span> get_indexer_non_unique
indexer, missing = self._engine.get_indexer_non_unique(tgt_values)
File <span class="pl-s"><span class="pl-pds">"</span>pandas/_libs/index.pyx<span class="pl-pds">"</span></span>, line 354, <span class="pl-k">in</span> pandas._libs.index.IndexEngine.get_indexer_non_unique
File <span class="pl-s"><span class="pl-pds">"</span><__array_function__ internals><span class="pl-pds">"</span></span>, line 5, <span class="pl-k">in</span> resize
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/packages/3.8.5/numpy/1.19.1/lib/python3.8/site-packages/numpy-1.19.1-py3.8-linux-x86_64.egg/numpy/core/fromnumeric.py<span class="pl-pds">"</span></span>, line 1417, <span class="pl-k">in</span> resize
a = concatenate<span class="pl-s"><span class="pl-pds">((</span>a<span class="pl-k">,</span>) <span class="pl-k">*</span> n_copies)</span>
<span class="pl-s"> File "<__array_function__ internals>", line <span class="pl-c1">5</span>, in concatenate</span>
<span class="pl-s">KeyboardInterrupt</span></pre></div>
<p dir="auto">I hope that this can provide enough details for finding the regression, if not and you require some kind of data-set, let me know and I'll try to cook something out. There is some sensitive data that I can't share. But I may be able to fiddle with the entries if this may aid?</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/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.6</li>
<li>Operating System version: Windows 10</li>
<li>Java version: JDK 1.8</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ul dir="auto">
<li>Configure provider's protocol to http and using <code class="notranslate">RpcContext.getContext().setAttachment()</code> to pass implicit parameters to provider.</li>
<li>Provider unable to get the attachment.</li>
</ul>
<h3 dir="auto">Possible Reason</h3>
<p dir="auto">There is any wrong wit the code used to pass implicit parameters in http protocol.</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.2</li>
<li>Operating System version: Ubuntu 18.04</li>
<li>Java version: 1.8</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<p dir="auto">Method <code class="notranslate">base642bytes(String)</code> and other overloaded methods only check the length of the input <code class="notranslate">String</code>, not its content. Currently, passing an invalid <code class="notranslate">String</code> to this method causes it to return an unpredictble result. For example:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import org.apache.dubbo.common.io.Bytes;
public class Testing {
public static void main(String[] args) {
System.out.println(Bytes.bytes2base64(Bytes.base642bytes("d=u=b=bo")));
System.out.println(Bytes.bytes2base64(Bytes.base642bytes("invalid")));
}
}
"><pre class="notranslate"><code class="notranslate">import org.apache.dubbo.common.io.Bytes;
public class Testing {
public static void main(String[] args) {
System.out.println(Bytes.bytes2base64(Bytes.base642bytes("d=u=b=bo")));
System.out.println(Bytes.bytes2base64(Bytes.base642bytes("invalid")));
}
}
</code></pre></div>
<h3 dir="auto">Expected Result</h3>
<p dir="auto"><code class="notranslate">IllegalArgumentException</code> for the first call.</p>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">Prints <code class="notranslate">//v///bo</code> for the first call and throws an <code class="notranslate">IllegalArgumentException</code> for the second call, even though both calls pass an invalid <code class="notranslate">String</code>.</p>
<p dir="auto">Ideally, <code class="notranslate">base642bytes(String)</code> throws an <code class="notranslate">IllegalArgumentException</code> whenever an invalid input <code class="notranslate">String</code> is passed. This can be achieved by checking each character individually, which is highly inefficient, or by updating the documentation explaining under what conditions an <code class="notranslate">IllegalArgumentException</code> is thrown.</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"> I have checked the <a href="https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Enhancement%22+-label%3A%22Category%3A+Documentation%22">issues list</a><br>
for similar or identical enhancement to an existing feature.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the <a href="https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22Issue+Type%3A+Enhancement%22+-label%3A%22Category%3A+Documentation%22">pull requests list</a><br>
for existing proposed enhancements.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the <a href="https://github.com/celery/celery/commits/master">commit log</a><br>
to find out if the if the same enhancement was already implemented in the<br>
master branch.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have included all related issues and possible duplicate issues in this issue<br>
(If there are none, check this box anyway).</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>
<h1 dir="auto">Brief Summary</h1>
<h1 dir="auto">Design</h1>
<h2 dir="auto">Architectural Considerations</h2>
<p dir="auto">None</p>
<h2 dir="auto">Proposed Behavior</h2>
<h2 dir="auto">Proposed UI/UX</h2>
<h2 dir="auto">Diagrams</h2>
<p dir="auto">N/A</p>
<h2 dir="auto">Alternatives</h2>
<p dir="auto">None</p> | <h2 dir="auto">Checklist</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.</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="software -> celery:4.2.0 (windowlicker) kombu:4.2.1 py:2.7.15
billiard:3.5.0.3 py-amqp:2.3.2
platform -> system:Linux arch:64bit imp:CPython
loader -> celery.loaders.app.AppLoader
settings -> transport:amqp results:redis://redis:6379/0
task_create_missing_queues: True
task_routes: {
'my_package.tasks.*': { 'queue': 'my_queue'}}
broker_url: u'amqp://guest:********@queue:5672//'
result_backend: u'redis://redis:6379/0'
task_track_started: True"><pre class="notranslate"><code class="notranslate">software -> celery:4.2.0 (windowlicker) kombu:4.2.1 py:2.7.15
billiard:3.5.0.3 py-amqp:2.3.2
platform -> system:Linux arch:64bit imp:CPython
loader -> celery.loaders.app.AppLoader
settings -> transport:amqp results:redis://redis:6379/0
task_create_missing_queues: True
task_routes: {
'my_package.tasks.*': { 'queue': 'my_queue'}}
broker_url: u'amqp://guest:********@queue:5672//'
result_backend: u'redis://redis:6379/0'
task_track_started: True
</code></pre></div>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li>
</ul>
<h2 dir="auto">Steps to reproduce</h2>
<p dir="auto">create a pytest test case that uses the <code class="notranslate">celery_worker</code> fixture:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@pytest.fixture()
def celery_worker_parameters():
return {
'queues': ('my_queue',),
'exclude_queues': ('celery'),
}
def test_my_task(celery_worker):
pass"><pre class="notranslate"><span class="pl-en">@<span class="pl-s1">pytest</span>.<span class="pl-en">fixture</span>()</span>
<span class="pl-k">def</span> <span class="pl-en">celery_worker_parameters</span>():
<span class="pl-k">return</span> {
<span class="pl-s">'queues'</span>: (<span class="pl-s">'my_queue'</span>,),
<span class="pl-s">'exclude_queues'</span>: (<span class="pl-s">'celery'</span>),
}
<span class="pl-k">def</span> <span class="pl-en">test_my_task</span>(<span class="pl-s1">celery_worker</span>):
<span class="pl-k">pass</span></pre></div>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">Task should have the celery_worker fixture present and run.</p>
<h2 dir="auto">Actual behavior</h2>
<p dir="auto">The test immediately fails with the following error and renders the terminal unresponsive.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="request = <SubRequest 'celery_worker' for <Function 'test_my_task'>>, celery_app = <Celery celery.tests at 0x7ff488539e50>, celery_includes = (), celery_worker_pool = 'solo', celery_worker_parameters = {'exclude_queues': 'celery', 'queues': ('my_queue',)}
@pytest.fixture()
def celery_worker(request,
celery_app,
celery_includes,
celery_worker_pool,
celery_worker_parameters):
# type: (Any, Celery, Sequence[str], str) -> WorkController
"""Fixture: Start worker in a thread, stop it when the test returns."""
if not NO_WORKER:
for module in celery_includes:
celery_app.loader.import_task_module(module)
with worker.start_worker(celery_app,
pool=celery_worker_pool,
> **celery_worker_parameters) as w:
/root/.local/share/virtualenvs/py-ITn23Csk/lib/python2.7/site-packages/celery/contrib/pytest.py:176:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python2.7/contextlib.py:17: in __enter__
return self.gen.next()
/root/.local/share/virtualenvs/py-ITn23Csk/lib/python2.7/site-packages/celery/contrib/testing/worker.py:82: in start_worker
assert ping.delay().get(timeout=ping_task_timeout) == 'pong'
/root/.local/share/virtualenvs/py-ITn23Csk/lib/python2.7/site-packages/celery/result.py:224: in get
on_message=on_message,
/root/.local/share/virtualenvs/py-ITn23Csk/lib/python2.7/site-packages/celery/backends/async.py:190: in wait_for_pending
return result.maybe_throw(callback=callback, propagate=propagate)
/root/.local/share/virtualenvs/py-ITn23Csk/lib/python2.7/site-packages/celery/result.py:329: in maybe_throw
self.throw(value, self._to_remote_traceback(tb))
/root/.local/share/virtualenvs/py-ITn23Csk/lib/python2.7/site-packages/celery/result.py:322: in throw
self.on_ready.throw(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <promise@0x7ff487200b98 --> <bound method AsyncResult._on_fulfilled of <AsyncResult: b6db7179-f73e-431c-941b-0d63acc190e3>>>, exc = Task of kind u'celery.ping' never registered, please make sure it's imported., tb = None, propagate = True
def throw(self, exc=None, tb=None, propagate=True):
if not self.cancelled:
current_exc = sys.exc_info()[1]
exc = exc if exc is not None else current_exc
try:
self.throw1(exc)
svpending = self._svpending
if svpending is not None:
try:
svpending.throw1(exc)
finally:
self._svpending = None
else:
lvpending = self._lvpending
try:
while lvpending:
lvpending.popleft().throw1(exc)
finally:
self._lvpending = None
finally:
if self.on_error is None and propagate:
if tb is None and (exc is None or exc is current_exc):
raise
> reraise(type(exc), exc, tb)
E NotRegistered: u'celery.ping'"><pre class="notranslate"><code class="notranslate">request = <SubRequest 'celery_worker' for <Function 'test_my_task'>>, celery_app = <Celery celery.tests at 0x7ff488539e50>, celery_includes = (), celery_worker_pool = 'solo', celery_worker_parameters = {'exclude_queues': 'celery', 'queues': ('my_queue',)}
@pytest.fixture()
def celery_worker(request,
celery_app,
celery_includes,
celery_worker_pool,
celery_worker_parameters):
# type: (Any, Celery, Sequence[str], str) -> WorkController
"""Fixture: Start worker in a thread, stop it when the test returns."""
if not NO_WORKER:
for module in celery_includes:
celery_app.loader.import_task_module(module)
with worker.start_worker(celery_app,
pool=celery_worker_pool,
> **celery_worker_parameters) as w:
/root/.local/share/virtualenvs/py-ITn23Csk/lib/python2.7/site-packages/celery/contrib/pytest.py:176:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python2.7/contextlib.py:17: in __enter__
return self.gen.next()
/root/.local/share/virtualenvs/py-ITn23Csk/lib/python2.7/site-packages/celery/contrib/testing/worker.py:82: in start_worker
assert ping.delay().get(timeout=ping_task_timeout) == 'pong'
/root/.local/share/virtualenvs/py-ITn23Csk/lib/python2.7/site-packages/celery/result.py:224: in get
on_message=on_message,
/root/.local/share/virtualenvs/py-ITn23Csk/lib/python2.7/site-packages/celery/backends/async.py:190: in wait_for_pending
return result.maybe_throw(callback=callback, propagate=propagate)
/root/.local/share/virtualenvs/py-ITn23Csk/lib/python2.7/site-packages/celery/result.py:329: in maybe_throw
self.throw(value, self._to_remote_traceback(tb))
/root/.local/share/virtualenvs/py-ITn23Csk/lib/python2.7/site-packages/celery/result.py:322: in throw
self.on_ready.throw(*args, **kwargs)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <promise@0x7ff487200b98 --> <bound method AsyncResult._on_fulfilled of <AsyncResult: b6db7179-f73e-431c-941b-0d63acc190e3>>>, exc = Task of kind u'celery.ping' never registered, please make sure it's imported., tb = None, propagate = True
def throw(self, exc=None, tb=None, propagate=True):
if not self.cancelled:
current_exc = sys.exc_info()[1]
exc = exc if exc is not None else current_exc
try:
self.throw1(exc)
svpending = self._svpending
if svpending is not None:
try:
svpending.throw1(exc)
finally:
self._svpending = None
else:
lvpending = self._lvpending
try:
while lvpending:
lvpending.popleft().throw1(exc)
finally:
self._lvpending = None
finally:
if self.on_error is None and propagate:
if tb is None and (exc is None or exc is current_exc):
raise
> reraise(type(exc), exc, tb)
E NotRegistered: u'celery.ping'
</code></pre></div> | 0 |
<p dir="auto"><a href="http://play.golang.org/p/gmQEUKYxrG" rel="nofollow">http://play.golang.org/p/gmQEUKYxrG</a></p>
<div class="highlight highlight-source-go notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="package main
import (
"fmt"
t "time"
)
func main() {
fmt.Println("Hello, playground")
time.Sleep(time.Second)
}"><pre class="notranslate"><span class="pl-k">package</span> main
<span class="pl-k">import</span> (
<span class="pl-s">"fmt"</span>
t <span class="pl-s">"time"</span>
)
<span class="pl-k">func</span> <span class="pl-en">main</span>() {
<span class="pl-s1">fmt</span>.<span class="pl-en">Println</span>(<span class="pl-s">"Hello, playground"</span>)
<span class="pl-s1">time</span>.<span class="pl-en">Sleep</span>(<span class="pl-s1">time</span>.<span class="pl-c1">Second</span>)
}</pre></div>
<p dir="auto">Run through imports, results in:</p>
<div class="highlight highlight-source-go notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="package main
import "fmt"
func main() {
fmt.Println("Hello, playground")
time.Sleep(time.Second)
}"><pre class="notranslate"><span class="pl-k">package</span> main
<span class="pl-k">import</span> <span class="pl-s">"fmt"</span>
<span class="pl-k">func</span> <span class="pl-en">main</span>() {
<span class="pl-s1">fmt</span>.<span class="pl-en">Println</span>(<span class="pl-s">"Hello, playground"</span>)
<span class="pl-s1">time</span>.<span class="pl-en">Sleep</span>(<span class="pl-s1">time</span>.<span class="pl-c1">Second</span>)
}</pre></div>
<p dir="auto">Note that the named time import has been removed but not reinserted without the name. The resulting code does not compile. Running through goimports again fixes things.</p>
<p dir="auto">Low priority corner case.</p> | <pre class="notranslate">$ goimports <<EOF
package main
import foo "fmt"
func main() { fmt.Println() }
EOF
Prints:
package main
func main() { fmt.Println() }
Low priority, as a second run corrects the import.</pre> | 1 |
<p dir="auto">I've got a little React component with a decorator that is created with an arrow function. With a fairly recent release of Babel, the decorator appears to be completely removed:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@connect(data => ({ account: data.account }))
class C extend React.Component {
}"><pre class="notranslate">@<span class="pl-en">connect</span><span class="pl-kos">(</span><span class="pl-s1">data</span> <span class="pl-c1">=></span> <span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">account</span>: <span class="pl-s1">data</span><span class="pl-kos">.</span><span class="pl-c1">account</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-v">C</span> <span class="pl-s1">extend</span> <span class="pl-v">React</span><span class="pl-kos">.</span><span class="pl-v">Component</span> <span class="pl-kos">{</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">Changing the arrow function fixes the issue as a workaround:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@connect(data => { return { account: data.account }; })
class C extend React.Component {
}"><pre class="notranslate">@<span class="pl-en">connect</span><span class="pl-kos">(</span><span class="pl-s1">data</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-kos">{</span> <span class="pl-c1">account</span>: <span class="pl-s1">data</span><span class="pl-kos">.</span><span class="pl-c1">account</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">class</span> <span class="pl-v">C</span> <span class="pl-s1">extend</span> <span class="pl-v">React</span><span class="pl-kos">.</span><span class="pl-v">Component</span> <span class="pl-kos">{</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">It's fine with other arrow functions like this:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="data => 1
data => []"><pre class="notranslate"><span class="pl-s1">data</span> <span class="pl-c1">=></span> <span class="pl-c1">1</span>
<span class="pl-s1">data</span> <span class="pl-c1">=></span> <span class="pl-kos">[</span><span class="pl-kos">]</span></pre></div>
<p dir="auto">So something about the parens is causing the issue.</p> | <p dir="auto">Compare the output of these two to show the difference.</p>
<p dir="auto"><a href="https://babeljs.io/repl/#?experimental=true&evaluate=true&loose=false&spec=false&code=%40decorate((arg)%20%3D%3E%20null)%0Aclass%20Example1%20%7B%0A%7D%0A%0A%40decorate(arg%20%3D%3E%20null)%0Aclass%20Example2%20%7B%0A%7D" rel="nofollow">https://babeljs.io/repl/#?experimental=true&evaluate=true&loose=false&spec=false&code=%40decorate((arg)%20%3D%3E%20null)%0Aclass%20Example1%20%7B%0A%7D%0A%0A%40decorate(arg%20%3D%3E%20null)%0Aclass%20Example2%20%7B%0A%7D</a></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@decorate((arg) => null)
class Example1 {
}
@decorate(arg => null)
class Example2 {
}"><pre class="notranslate">@<span class="pl-en">decorate</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">arg</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-c1">null</span><span class="pl-kos">)</span>
<span class="pl-k">class</span> <span class="pl-v">Example1</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-s1">arg</span> <span class="pl-c1">=></span> <span class="pl-c1">null</span><span class="pl-kos">)</span>
<span class="pl-k">class</span> <span class="pl-v">Example2</span> <span class="pl-kos">{</span>
<span class="pl-kos">}</span></pre></div> | 1 |
<p dir="auto">Typescript definitions for custom theme colors has been removed. The existing <a href="https://material-ui-next.com/customization/themes/#adding-custom-styles" rel="nofollow">documentation example</a> does not work anymore.</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">One should be able to add custom colors to the Theme, as per <a href="https://material-ui-next.com/customization/themes/#adding-custom-styles" rel="nofollow">documentation example</a>.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="createMuiTheme({
status: {
danger: orange[500],
},
})"><pre class="notranslate"><code class="notranslate">createMuiTheme({
status: {
danger: orange[500],
},
})
</code></pre></div>
<p dir="auto">When using <code class="notranslate">withStyles</code>, the custom colors would be specified as CustomOptions.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="withStyles((theme: Theme<CustomOptions> => {});"><pre class="notranslate"><code class="notranslate">withStyles((theme: Theme<CustomOptions> => {});
</code></pre></div>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">Typescript reports this error on the custom color definition (documentation example): <code class="notranslate">Object literal may only specify known properties, and 'status' does not exist in type 'ThemeOptions | undefined'.</code></p>
<p dir="auto">Typescript reports error when using the theme: <code class="notranslate">Type 'Theme' is not generic.</code></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>beta.22</td>
</tr>
<tr>
<td>React</td>
<td>16.0.0</td>
</tr>
</tbody>
</table> | <p dir="auto">Hi,</p>
<p dir="auto">I tried your <a href="http://material-ui.com/#/components/buttons" rel="nofollow">demos</a> and the menu doesn't seem to work. FF web console doesn't show any errors but lots of warnings.</p>
<p dir="auto">FF 33 on Ubuntu 14.04</p> | 0 |
<h1 dir="auto">Summary of the new feature/enhancement</h1>
<p dir="auto">People with touchscreens that have no keyboard are unable to use the Shift key to activate Fancy Zones. The existing toggle allows the zones to always stay on, while dragging. However window will always snap to one of the zones.<br>
Safe zone functionality will allow users to move windows around without snapping them, and snap them if and when required. A safe zone is an area inside each one of the fancy zones, where user can drag the window without snapping it.</p>
<h1 dir="auto">Proposed technical implementation details (optional)</h1>
<p dir="auto">Add a significant padding (A zone within a zone) of about 25% or more. An outer blue area, as it is now, will show the zone itself, the inner blue box will be the area where a window would need to be dragged to snap.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/55300746/64898714-1c45b880-d680-11e9-9783-1e52ccb77d1a.jpg"><img src="https://user-images.githubusercontent.com/55300746/64898714-1c45b880-d680-11e9-9783-1e52ccb77d1a.jpg" alt="Image004" style="max-width: 100%;"></a></p> | <h1 dir="auto">Summary of the new feature/enhancement</h1>
<p dir="auto"><strong>Find an Object, apply an Action (ie: copy a file)</strong><br>
The ability to use Tab (or another key) to apply Actions to a selected Object. ie: I find a .jpg file, hit Tab (list of possible actions is displayed), type 'c' and select Copy. File copied. The default Action would always be Open. ie: Open a URL, open an app, etc.</p> | 0 |
<p dir="auto">Hello,</p>
<p dir="auto">I am extremely excited about Fancy Zones, but I have run into a problem when using it with multiple desktops.</p>
<p dir="auto">I laptop is left on my desk with the lid closed and plugged into 2 separate monitors. I can only apply a zone to the left desktop and not the right desktop.</p>
<p dir="auto">Will this feature include zones for multiple desktops?</p>
<p dir="auto">Thanks</p> | 1 |
|
<p dir="auto"><a href="https://ci.appveyor.com/project/sklearn-ci/scikit-learn/build/1.0.2018/job/8tf9xbl5i9j2dcyp" rel="nofollow">https://ci.appveyor.com/project/sklearn-ci/scikit-learn/build/1.0.2018/job/8tf9xbl5i9j2dcyp</a></p> | <p dir="auto">The following seems to happen randomly on appveyor, at least under 32 bit Python 2.7:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="======================================================================
FAIL: Check class_weights resemble sample_weights behavior.
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python27\lib\site-packages\nose\case.py", line 197, in runTest
self.test(*self.arg)
File "C:\Python27\lib\site-packages\sklearn\linear_model\tests\test_ridge.py", line 518, in test_class_weight_vs_sample_weight
assert_almost_equal(clf1.coef_, clf2.coef_)
File "C:\Python27\lib\site-packages\numpy\testing\utils.py", line 454, in assert_almost_equal
return assert_array_almost_equal(actual, desired, decimal, err_msg)
File "C:\Python27\lib\site-packages\numpy\testing\utils.py", line 811, in assert_array_almost_equal
header=('Arrays are not almost equal to %d decimals' % decimal))
File "C:\Python27\lib\site-packages\numpy\testing\utils.py", line 644, in assert_array_compare
raise AssertionError(msg)
AssertionError:
Arrays are not almost equal to 7 decimals
(mismatch 100.0%)
x: array([[ 0.10965375, 0.61707134, -0.50021659, -0.01239003],
[-0.13067805, -1.45138219, 0.45900018, -0.78576024],
[ 0.0210243 , 0.83431085, 0.04121641, 0.79815027]])
y: array([[ 0.13644731, 0.73780242, -0.55678018, 0.12087149],
[-0.06131714, -1.75113362, 0.74417571, -1.64203741],
[-0.07513018, 1.0133312 , -0.18739553, 1.52116592]])"><pre class="notranslate"><code class="notranslate">======================================================================
FAIL: Check class_weights resemble sample_weights behavior.
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python27\lib\site-packages\nose\case.py", line 197, in runTest
self.test(*self.arg)
File "C:\Python27\lib\site-packages\sklearn\linear_model\tests\test_ridge.py", line 518, in test_class_weight_vs_sample_weight
assert_almost_equal(clf1.coef_, clf2.coef_)
File "C:\Python27\lib\site-packages\numpy\testing\utils.py", line 454, in assert_almost_equal
return assert_array_almost_equal(actual, desired, decimal, err_msg)
File "C:\Python27\lib\site-packages\numpy\testing\utils.py", line 811, in assert_array_almost_equal
header=('Arrays are not almost equal to %d decimals' % decimal))
File "C:\Python27\lib\site-packages\numpy\testing\utils.py", line 644, in assert_array_compare
raise AssertionError(msg)
AssertionError:
Arrays are not almost equal to 7 decimals
(mismatch 100.0%)
x: array([[ 0.10965375, 0.61707134, -0.50021659, -0.01239003],
[-0.13067805, -1.45138219, 0.45900018, -0.78576024],
[ 0.0210243 , 0.83431085, 0.04121641, 0.79815027]])
y: array([[ 0.13644731, 0.73780242, -0.55678018, 0.12087149],
[-0.06131714, -1.75113362, 0.74417571, -1.64203741],
[-0.07513018, 1.0133312 , -0.18739553, 1.52116592]])
</code></pre></div>
<p dir="auto">I have never seen this happen on travis so it might be windows-specific. The difference is large so it it probably not a trivial rounding issue.</p> | 1 |
<p dir="auto">Recently, Julia 0.5 started segfaulting when precompiling PyCall (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="207005427" data-permission-text="Title is private" data-url="https://github.com/JuliaPy/PyCall.jl/issues/360" data-hovercard-type="issue" data-hovercard-url="/JuliaPy/PyCall.jl/issues/360/hovercard" href="https://github.com/JuliaPy/PyCall.jl/issues/360">JuliaPy/PyCall.jl#360</a>). I've boiled it down to the following code:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="__precompile__()
module PyCall
import MacroTools: @capture
function parse_pydef_toplevel(expr)
if @capture(expr, begin type class_name_ <: base_classes_expr_
lines__
end end)
end
end
end # module PyCall"><pre class="notranslate"><span class="pl-c1">__precompile__</span>()
<span class="pl-k">module</span> PyCall
<span class="pl-k">import</span> MacroTools<span class="pl-k">:</span> <span class="pl-c1">@capture</span>
<span class="pl-k">function</span> <span class="pl-en">parse_pydef_toplevel</span>(expr)
<span class="pl-k">if</span> <span class="pl-c1">@capture</span>(expr, <span class="pl-k">begin</span> type class_name_ <span class="pl-k"><:</span> <span class="pl-c1">base_classes_expr_</span>
lines__
<span class="pl-k">end</span> <span class="pl-k">end</span>)
<span class="pl-k">end</span>
<span class="pl-k">end</span>
<span class="pl-k">end</span> <span class="pl-c"><span class="pl-c">#</span> module PyCall</span></pre></div>
<p dir="auto">This gives:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> versioninfo()
Julia Version 0.5.0
Commit 3c9d753 (2016-09-19 18:14 UTC)
Platform Info:
System: Darwin (x86_64-apple-darwin13.4.0)
CPU: Intel(R) Core(TM) i7-4870HQ CPU @ 2.50GHz
WORD_SIZE: 64
BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY Haswell)
LAPACK: libopenblas64_
LIBM: libopenlibm
LLVM: libLLVM-3.7.1 (ORCJIT, haswell)
julia> using PyCall
INFO: Precompiling module PyCall.
signal (11): Segmentation fault: 11
while loading /Users/stevenj/.julia/v0.5/PyCall/src/PyCall.jl, in expression starting on line 7
julia_type_to_llvm at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./cgutils.cpp:318
mark_julia_const at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/codegen.cpp:641 [inlined]
emit_expr at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/codegen.cpp:3140
emit_invoke at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/codegen.cpp:2669 [inlined]
emit_expr at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/codegen.cpp:3162
emit_jlcall at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/codegen.cpp:2578
emit_call at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/codegen.cpp:2739
emit_expr at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/codegen.cpp:3172
emit_function at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/codegen.cpp:4691
jl_compile_linfo at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/codegen.cpp:809
jl_compile_for_dispatch at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1310
jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:184 [inlined]
jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942
@capture at /Users/stevenj/.julia/v0.5/MacroTools/src/macro.jl:61
jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined]
fl_invoke_julia_macro at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/ast.c:161
apply_cl at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:1227
_applyn at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:678
fl_map1 at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:2220
apply_cl at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:1177
_applyn at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:678
fl_map1 at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:2220
apply_cl at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:1177
_applyn at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:678
fl_map1 at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:2220
apply_cl at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:1177
do_trycatch at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:899
apply_cl at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:1807
_applyn at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:678
fl_applyn at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:723
jl_call_scm_on_ast at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/ast.c:778
jl_eval_module_expr at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/toplevel.c:195
jl_toplevel_eval_flex at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/toplevel.c:465
jl_parse_eval_all at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/ast.c:717
jl_load at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/toplevel.c:596 [inlined]
jl_load_ at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/toplevel.c:605
include_from_node1 at ./loading.jl:488
jlcall_include_from_node1_20125 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line)
jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined]
jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942
do_call at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/interpreter.c:66
eval at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/interpreter.c:190
jl_toplevel_eval_flex at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/toplevel.c:558
jl_toplevel_eval_in_warn at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/builtins.c:590
macro expansion; at ./none:2 [inlined]
anonymous at ./<missing> (unknown line)
unknown function (ip: 0x116df16c1)
jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined]
jl_toplevel_eval_flex at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/toplevel.c:569
jl_toplevel_eval_in_warn at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/builtins.c:590
eval at ./boot.jl:234
jlcall_eval_19752 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line)
jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined]
jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942
process_options at ./client.jl:239
_start at ./client.jl:318
jlcall__start_21452 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line)
jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined]
jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942
true_main at /Applications/Julia-0.5.app/Contents/Resources/julia/bin/julia (unknown line)
main at /Applications/Julia-0.5.app/Contents/Resources/julia/bin/julia (unknown line)
Allocations: 1202188 (Pool: 1201349; Big: 839); GC: 0
ERROR: Failed to precompile PyCall to /Users/stevenj/.julia/lib/v0.5/PyCall.ji.
in compilecache(::String) at ./loading.jl:593
in require(::Symbol) at ./loading.jl:422
in require(::Symbol) at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib:?"><pre class="notranslate"><code class="notranslate">julia> versioninfo()
Julia Version 0.5.0
Commit 3c9d753 (2016-09-19 18:14 UTC)
Platform Info:
System: Darwin (x86_64-apple-darwin13.4.0)
CPU: Intel(R) Core(TM) i7-4870HQ CPU @ 2.50GHz
WORD_SIZE: 64
BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY Haswell)
LAPACK: libopenblas64_
LIBM: libopenlibm
LLVM: libLLVM-3.7.1 (ORCJIT, haswell)
julia> using PyCall
INFO: Precompiling module PyCall.
signal (11): Segmentation fault: 11
while loading /Users/stevenj/.julia/v0.5/PyCall/src/PyCall.jl, in expression starting on line 7
julia_type_to_llvm at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./cgutils.cpp:318
mark_julia_const at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/codegen.cpp:641 [inlined]
emit_expr at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/codegen.cpp:3140
emit_invoke at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/codegen.cpp:2669 [inlined]
emit_expr at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/codegen.cpp:3162
emit_jlcall at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/codegen.cpp:2578
emit_call at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/codegen.cpp:2739
emit_expr at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/codegen.cpp:3172
emit_function at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/codegen.cpp:4691
jl_compile_linfo at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/codegen.cpp:809
jl_compile_for_dispatch at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1310
jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:184 [inlined]
jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942
@capture at /Users/stevenj/.julia/v0.5/MacroTools/src/macro.jl:61
jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined]
fl_invoke_julia_macro at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/ast.c:161
apply_cl at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:1227
_applyn at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:678
fl_map1 at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:2220
apply_cl at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:1177
_applyn at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:678
fl_map1 at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:2220
apply_cl at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:1177
_applyn at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:678
fl_map1 at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:2220
apply_cl at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:1177
do_trycatch at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:899
apply_cl at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:1807
_applyn at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:678
fl_applyn at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/flisp/flisp.c:723
jl_call_scm_on_ast at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/ast.c:778
jl_eval_module_expr at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/toplevel.c:195
jl_toplevel_eval_flex at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/toplevel.c:465
jl_parse_eval_all at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/ast.c:717
jl_load at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/toplevel.c:596 [inlined]
jl_load_ at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/toplevel.c:605
include_from_node1 at ./loading.jl:488
jlcall_include_from_node1_20125 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line)
jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined]
jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942
do_call at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/interpreter.c:66
eval at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/interpreter.c:190
jl_toplevel_eval_flex at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/toplevel.c:558
jl_toplevel_eval_in_warn at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/builtins.c:590
macro expansion; at ./none:2 [inlined]
anonymous at ./<missing> (unknown line)
unknown function (ip: 0x116df16c1)
jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined]
jl_toplevel_eval_flex at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/toplevel.c:569
jl_toplevel_eval_in_warn at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/builtins.c:590
eval at ./boot.jl:234
jlcall_eval_19752 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line)
jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined]
jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942
process_options at ./client.jl:239
_start at ./client.jl:318
jlcall__start_21452 at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib (unknown line)
jl_call_method_internal at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/./julia_internal.h:189 [inlined]
jl_apply_generic at /Users/osx/buildbot/slave/package_osx10_9-x64/build/src/gf.c:1942
true_main at /Applications/Julia-0.5.app/Contents/Resources/julia/bin/julia (unknown line)
main at /Applications/Julia-0.5.app/Contents/Resources/julia/bin/julia (unknown line)
Allocations: 1202188 (Pool: 1201349; Big: 839); GC: 0
ERROR: Failed to precompile PyCall to /Users/stevenj/.julia/lib/v0.5/PyCall.ji.
in compilecache(::String) at ./loading.jl:593
in require(::Symbol) at ./loading.jl:422
in require(::Symbol) at /Applications/Julia-0.5.app/Contents/Resources/julia/lib/julia/sys.dylib:?
</code></pre></div>
<p dir="auto">This is with MacroTools 0.3.5.</p> | <p dir="auto">In one of my private repos tests pass locally on <code class="notranslate">release-0.5</code> but fail on Travis, and the failure looks consistent with a difference between what was tagged as <code class="notranslate">0.5.0</code> and what's in <code class="notranslate">release-0.5</code>. Are there plans for point-releases of 0.5, or are we going straight to 0.6? If nothing else, any chance we can "bless" what's in <code class="notranslate">release-0.5</code> now as <code class="notranslate">0.5.1</code> and call that good enough?</p> | 1 |
<p dir="auto">Hi,</p>
<p dir="auto">I am using SplashFormRequest.from_response() method to submit a form multiple times with different parameters. The formdata is passed on correctly it seems, but eventually when the request is executed, only the first set of parameters are used for the subsequent requests too. I ran a test on google to submit 3 different parameters on the search form and get the same issue. I am pasting the relevant piece of code and part of the output log from the crawl. Any idea why this might be happening? Thanks.</p>
<p dir="auto">This is part of the parse method.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" for formd in formparams:
print('===== Submitting FORM ===== ' + json.dumps(formd))
yield SplashFormRequest.from_response(
response,
formdata=formd,
method=GET,
callback=self.parse,
meta=meta, **kwargs)"><pre class="notranslate"><code class="notranslate"> for formd in formparams:
print('===== Submitting FORM ===== ' + json.dumps(formd))
yield SplashFormRequest.from_response(
response,
formdata=formd,
method=GET,
callback=self.parse,
meta=meta, **kwargs)
</code></pre></div>
<p dir="auto">Output log</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2017-10-02 23:38:02 [scrapy.core.engine] INFO: Spider opened
2017-10-02 23:38:02 [scrapy.extensions.logstats] INFO: Crawled 0 pages (at 0 pages/min), scraped 0 items (at 0 items/min)
REQUEST === <GET http://google.com>
REQUEST === <GET http://www.google.com via http://127.0.0.1:8050/execute>
2017-10-02 23:38:09 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://www.google.com via http://127.0.0.1:8050/execute> (referer: None)
2017-10-02 23:38:10 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.google.com/?gws_rd=ssl>
<CDRItem: _id: '78EA5573E093F9030B1F945E84B59B51D405C360BB4C421ED93A66976195BC2C', url: 'https://www.google.com/?gws_rd=ssl', timestamp_crawl: '2017-10-03T06:38:10.971013Z'>
===== Submitting FORM ===== {"q": "happy"}
REQUEST === <GET http://google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=happy>
===== Submitting FORM ===== {"q": "sad"}
2017-10-02 23:38:10 [py.warnings] WARNING: /Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/scrapy_splash/middleware.py:184: UserWarning: Unexpected request.meta['splash']['_replaced_args']
warnings.warn("Unexpected request.meta['splash']['_replaced_args']")
REQUEST === <GET http://google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=sad>
REQUEST === <GET https://www.google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=happy via http://127.0.0.1:8050/execute>
REQUEST === <GET https://www.google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=happy via http://127.0.0.1:8050/execute>
2017-10-02 23:38:10 [scrapy.dupefilters] DEBUG: Filtered duplicate request: <GET https://www.google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=happy via http://127.0.0.1:8050/execute>
===== Submitting FORM ===== {"q": "neutral"}
REQUEST === <GET http://google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=neutral>
REQUEST === <GET https://www.google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=happy via http://127.0.0.1:8050/execute>
2017-10-02 23:38:11 [scrapy.dupefilters] DEBUG: Filtered duplicate request: <GET https://www.google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=happy via http://127.0.0.1:8050/execute>
REQUEST === <GET https://www.google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=happy via http://127.0.0.1:8050/execute>
2017-10-02 23:38:22 [scrapy.core.engine] DEBUG: Crawled (200) <GET https://www.google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=happy via http://127.0.0.1:8050/execute> (referer: None)
2017-10-02 23:38:22 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=happy>
<CDRItem: _id: 'B31AF63FD579B31F9A18BE78F30F845C21DD5F7DE36838FE87CED836E5783BEB', url: 'https://www.google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=happy', timestamp_crawl: '2017-10-03T06:38:22.662764Z'>
2017-10-02 23:38:22 [scrapy.core.engine] INFO: Closing spider (finished)"><pre class="notranslate"><code class="notranslate">2017-10-02 23:38:02 [scrapy.core.engine] INFO: Spider opened
2017-10-02 23:38:02 [scrapy.extensions.logstats] INFO: Crawled 0 pages (at 0 pages/min), scraped 0 items (at 0 items/min)
REQUEST === <GET http://google.com>
REQUEST === <GET http://www.google.com via http://127.0.0.1:8050/execute>
2017-10-02 23:38:09 [scrapy.core.engine] DEBUG: Crawled (200) <GET http://www.google.com via http://127.0.0.1:8050/execute> (referer: None)
2017-10-02 23:38:10 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.google.com/?gws_rd=ssl>
<CDRItem: _id: '78EA5573E093F9030B1F945E84B59B51D405C360BB4C421ED93A66976195BC2C', url: 'https://www.google.com/?gws_rd=ssl', timestamp_crawl: '2017-10-03T06:38:10.971013Z'>
===== Submitting FORM ===== {"q": "happy"}
REQUEST === <GET http://google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=happy>
===== Submitting FORM ===== {"q": "sad"}
2017-10-02 23:38:10 [py.warnings] WARNING: /Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/scrapy_splash/middleware.py:184: UserWarning: Unexpected request.meta['splash']['_replaced_args']
warnings.warn("Unexpected request.meta['splash']['_replaced_args']")
REQUEST === <GET http://google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=sad>
REQUEST === <GET https://www.google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=happy via http://127.0.0.1:8050/execute>
REQUEST === <GET https://www.google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=happy via http://127.0.0.1:8050/execute>
2017-10-02 23:38:10 [scrapy.dupefilters] DEBUG: Filtered duplicate request: <GET https://www.google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=happy via http://127.0.0.1:8050/execute>
===== Submitting FORM ===== {"q": "neutral"}
REQUEST === <GET http://google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=neutral>
REQUEST === <GET https://www.google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=happy via http://127.0.0.1:8050/execute>
2017-10-02 23:38:11 [scrapy.dupefilters] DEBUG: Filtered duplicate request: <GET https://www.google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=happy via http://127.0.0.1:8050/execute>
REQUEST === <GET https://www.google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=happy via http://127.0.0.1:8050/execute>
2017-10-02 23:38:22 [scrapy.core.engine] DEBUG: Crawled (200) <GET https://www.google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=happy via http://127.0.0.1:8050/execute> (referer: None)
2017-10-02 23:38:22 [scrapy.core.scraper] DEBUG: Scraped from <200 https://www.google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=happy>
<CDRItem: _id: 'B31AF63FD579B31F9A18BE78F30F845C21DD5F7DE36838FE87CED836E5783BEB', url: 'https://www.google.com/search?source=hp&oq=&gs_l=&btnG=Search&q=happy', timestamp_crawl: '2017-10-03T06:38:22.662764Z'>
2017-10-02 23:38:22 [scrapy.core.engine] INFO: Closing spider (finished)
</code></pre></div> | <p dir="auto">It is very easy to have a subtle bug when using a custom duplicates filter that changes how request fingerprint is calculated.</p>
<ul dir="auto">
<li>Duplicate filter checks request fingerprint and makes Scheduler drop the request if it is a duplicate.</li>
<li>Cache storage checks request fingerprint and fetches response from cache if it is a duplicate.</li>
<li>If fingerprint algorithms differ we're in trouble.</li>
</ul>
<p dir="auto">The problem is that there is no way to override request fingerprint globally; to make Scrapy always take something extra in account (an http header, a meta option) user must override duplicates filter and all cache storages that are in use.</p>
<p dir="auto">Ideas about how to fix it:</p>
<ol dir="auto">
<li>Use duplicates filter <code class="notranslate">request_fingerprint</code> method in cache storage if this method is available;</li>
<li>create a special Request.meta key that <code class="notranslate">request_fingerprint</code> function will take into account;</li>
<li>create a special Request.meta key that will allow to provide a pre-calculated fingerprint;</li>
<li>add a settings.py option to override request fingerprint function globally.</li>
</ol> | 0 |
<h4 dir="auto">Responsively Style Checkboxes</h4>
<p dir="auto"><a href="https://www.freecodecamp.com/challenges/responsively-style-checkboxes" rel="nofollow">https://www.freecodecamp.com/challenges/responsively-style-checkboxes</a></p>
<h4 dir="auto">Issue Description</h4>
<p dir="auto">"Like", "Info" buttons are truncated and "delete" is cut off</p>
<h4 dir="auto">Browser Information</h4>
<ul dir="auto">
<li>Browser Name, Version: Google Chrome, Version 50.0.2661.102 m</li>
<li>Operating System: Windows 10</li>
<li>Mobile, Desktop, or Tablet:</li>
</ul>
<h4 dir="auto">Your Code</h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<style>
h2 {
font-family: Lobster, Monospace;
}
.thick-green-border {
border-color: green;
border-width: 10px;
border-style: solid;
border-radius: 50%;
}
</style>
<div class="container-fluid">
<div class="row">
<div class="col-xs-8">
<h2 class="text-primary text-center">CatPhotoApp</h2>
</div>
<div class="col-xs-4">
<a href="#"><img class="img-responsive thick-green-border" src="https://bit.ly/fcc-relaxing-cat"></a>
</div>
</div>
<img src="https://bit.ly/fcc-running-cats" class="img-responsive">
<div class="row">
<div class="col-xs-4">
<button class="btn btn-block btn-primary"><i class="fa fa-thumbs-up"></i> Like</button>
</div>
<div class="col-xs-4">
<button class="btn btn-block btn-info"><i class="fa fa-info-circle"></i> Info</button>
</div>
<div class="col-xs-4">
<button class="btn btn-block btn-danger"><i class="fa fa-trash"></i> Delete</button>
</div>
</div>
<p>Things cats <span class="text-danger">love:</span></p>
<ul>
<li>cat nip</li>
<li>laser pointers</li>
<li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
<li>flea treatment</li>
<li>thunder</li>
<li>other cats</li>
</ol>
<form action="/submit-cat-photo">
<div class="row">
<div class="col-xs-6">
<label><input type="radio" name="indoor-outdoor"> Indoor</label>
</div>
<div class="col-xs-6">
<label><input type="radio" name="indoor-outdoor"> Outdoor</label>
</div>
</div>
<label><input type="checkbox" name="personality"> Loving</label>
<label><input type="checkbox" name="personality"> Lazy</label>
<label><input type="checkbox" name="personality"> Crazy</label>
<input type="text" placeholder="cat photo URL" required>
<button type="submit">Submit</button>
</form>
</div>"><pre class="notranslate"><code class="notranslate"><link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<style>
h2 {
font-family: Lobster, Monospace;
}
.thick-green-border {
border-color: green;
border-width: 10px;
border-style: solid;
border-radius: 50%;
}
</style>
<div class="container-fluid">
<div class="row">
<div class="col-xs-8">
<h2 class="text-primary text-center">CatPhotoApp</h2>
</div>
<div class="col-xs-4">
<a href="#"><img class="img-responsive thick-green-border" src="https://bit.ly/fcc-relaxing-cat"></a>
</div>
</div>
<img src="https://bit.ly/fcc-running-cats" class="img-responsive">
<div class="row">
<div class="col-xs-4">
<button class="btn btn-block btn-primary"><i class="fa fa-thumbs-up"></i> Like</button>
</div>
<div class="col-xs-4">
<button class="btn btn-block btn-info"><i class="fa fa-info-circle"></i> Info</button>
</div>
<div class="col-xs-4">
<button class="btn btn-block btn-danger"><i class="fa fa-trash"></i> Delete</button>
</div>
</div>
<p>Things cats <span class="text-danger">love:</span></p>
<ul>
<li>cat nip</li>
<li>laser pointers</li>
<li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
<li>flea treatment</li>
<li>thunder</li>
<li>other cats</li>
</ol>
<form action="/submit-cat-photo">
<div class="row">
<div class="col-xs-6">
<label><input type="radio" name="indoor-outdoor"> Indoor</label>
</div>
<div class="col-xs-6">
<label><input type="radio" name="indoor-outdoor"> Outdoor</label>
</div>
</div>
<label><input type="checkbox" name="personality"> Loving</label>
<label><input type="checkbox" name="personality"> Lazy</label>
<label><input type="checkbox" name="personality"> Crazy</label>
<input type="text" placeholder="cat photo URL" required>
<button type="submit">Submit</button>
</form>
</div>
</code></pre></div>
<h4 dir="auto">Screenshot</h4>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/16688620/15788268/92ba4174-29be-11e6-8eb3-ab06c948ff30.PNG"><img src="https://cloud.githubusercontent.com/assets/16688620/15788268/92ba4174-29be-11e6-8eb3-ab06c948ff30.PNG" alt="capture" style="max-width: 100%;"></a></p>
<h4 dir="auto">Possible Fix</h4>
<p dir="auto">You can use btn-group which allows you to create a group of buttons next to each other we use btn-group btn-group-justified to take up the full width. W3 link - <a href="http://www.w3schools.com/bootstrap/bootstrap_button_groups.asp" rel="nofollow">http://www.w3schools.com/bootstrap/bootstrap_button_groups.asp</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" <div class="btn-group btn-group-justified">
<a href="#" class="btn btn-primary"><i class="fa fa-thumbs-up"></i> Like</a>
<a href="#" class="btn btn-primary"><i class="fa fa-info-circle"></i> Info</a>
<a href="#" class="btn btn-primary"><i class="fa fa-trash"></i> Delete</a>
</div>"><pre class="notranslate"><code class="notranslate"> <div class="btn-group btn-group-justified">
<a href="#" class="btn btn-primary"><i class="fa fa-thumbs-up"></i> Like</a>
<a href="#" class="btn btn-primary"><i class="fa fa-info-circle"></i> Info</a>
<a href="#" class="btn btn-primary"><i class="fa fa-trash"></i> Delete</a>
</div>
</code></pre></div>
<p dir="auto">Or use btn-block to put each button on a new line.</p> | <p dir="auto">Forewarning, this <em>may</em> be bike-shedding worthy....</p>
<h3 dir="auto">Workspace</h3>
<p dir="auto">User Agent is: <code class="notranslate">Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36</code>. (Chrome on Windows 7)</p>
<h3 dir="auto">Setting</h3>
<p dir="auto">The CatPhoto is where you make an web page and one component is adding three buttons like below.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/2754821/14199337/7156ec7e-f798-11e5-864c-49dd8c334c40.png"><img src="https://cloud.githubusercontent.com/assets/2754821/14199337/7156ec7e-f798-11e5-864c-49dd8c334c40.png" alt="image" style="max-width: 100%;"></a></p>
<h3 dir="auto">Problem</h3>
<p dir="auto">But then you will eventually make it into something like this below.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/2754821/14199333/641738c0-f798-11e5-9464-43c6de465704.png"><img src="https://cloud.githubusercontent.com/assets/2754821/14199333/641738c0-f798-11e5-9464-43c6de465704.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Notice that the red Delete button is squished and on the side (this is mostly a desktop problem; mobile user won't have the same issue -- see below)</p>
<h4 dir="auto">Mobile Version</h4>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/2754821/14199436/364c3a70-f799-11e5-98af-7dbe7da0fbb1.png"><img src="https://cloud.githubusercontent.com/assets/2754821/14199436/364c3a70-f799-11e5-98af-7dbe7da0fbb1.png" alt="image" style="max-width: 100%;"></a></p>
<h3 dir="auto">Solution</h3>
<p dir="auto">So I propose two things:</p>
<ul dir="auto">
<li>Change the "Delete" button into a "Edit" button so it'll fit on the button better.
<ul dir="auto">
<li>This is fairly easy. You'll just need to change this in the challenge seeds starting with the challenge <a href="https://www.freecodecamp.com/challenges/warn-your-users-of-a-dangerous-action" rel="nofollow">Warn your Users of a Dangerous Action</a> where the button is added.</li>
<li>Then change the challenges up until the last one on <a href="https://www.freecodecamp.com/challenges/line-up-form-elements-responsively-with-bootstrap" rel="nofollow">Line up Form Elements Responsively with Bootstrap</a>.</li>
<li>You could also change the icon if appropriate.</li>
</ul>
</li>
<li>Add new challenge to add in making all three of those buttons also have the class <code class="notranslate">btn-sm</code> to make the text inside the button not seem all smushed.
<ul dir="auto">
<li>This one will require a little more effort in making an entirely new challenge, which may be unnecessary.</li>
</ul>
</li>
</ul>
<p dir="auto">Example:</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<button class="btn btn-block btn-info btn-sm"><i class="fa fa-info-circle"></i> Info</button>"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-block btn-info btn-sm</span>"<span class="pl-kos">></span><span class="pl-kos"><</span><span class="pl-ent">i</span> <span class="pl-c1">class</span>="<span class="pl-s">fa fa-info-circle</span>"<span class="pl-kos">></span><span class="pl-kos"></</span><span class="pl-ent">i</span><span class="pl-kos">></span> Info<span class="pl-kos"></</span><span class="pl-ent">button</span><span class="pl-kos">></span></pre></div>
<p dir="auto">If the proposed changes were made, the finished app will look like this:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/2754821/14199509/e3e483d6-f799-11e5-8983-b02a50d68da7.png"><img src="https://cloud.githubusercontent.com/assets/2754821/14199509/e3e483d6-f799-11e5-8983-b02a50d68da7.png" alt="image" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto"><a href="https://github.com/kubernetes/kubernetes/blob/v1.6.0-alpha.0/pkg/util/strategicpatch/patch.go#L659">StrategicPatch</a> should delete all duplicates from a list of maps.<br>
Currently it just delete the first one appears in the list.</p>
<p dir="auto">We should make StrategicPatch delete all duplicates no matter it is a list of maps or a list of primitives. (StrategicPatch don't support list of lists).</p>
<p dir="auto">Ref : <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="193254157" data-permission-text="Title is private" data-url="https://github.com/kubernetes/community/issues/140" data-hovercard-type="pull_request" data-hovercard-url="/kubernetes/community/pull/140/hovercard?comment_id=265598220&comment_type=issue_comment" href="https://github.com/kubernetes/community/pull/140#issuecomment-265598220">kubernetes/community#140 (comment)</a></p>
<p dir="auto">cc: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/lavalamp/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/lavalamp">@lavalamp</a></p> | <p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>):<br>
Upgrading from 1.2.0 (working) to 1.3.9 (broken)</p>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>: Bare metal Dell R420's</li>
<li><strong>OS</strong> (e.g. from /etc/os-release): CentOS 6 with a 3.10 kernel.</li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>): 3.10.0-327.18.2.el7.x86_64</li>
<li><strong>Install tools</strong>:</li>
<li><strong>Others</strong>:<br>
iptables --version<br>
iptables v1.4.7</li>
</ul>
<p dir="auto"><strong>What happened</strong>:<br>
We upgraded from 1.2.0 to 1.3.9 and noticed that our service load balancer (based on haproxy) cpu utilization started going through the roof over the course of 3 days, mostly system time. It is now impacting all nodes with the 1.3.9 version of kubelet installed.</p>
<p dir="auto">We've tracked down a likely culprit which is this version of kube seems to be continuously appending iptables rules at a rate of about 4 a second. Here's a dump from iptables-save:<br>
$ sudo iptables-save | wc -l<br>
67951</p>
<p dir="auto">These tend to be the form of the duplicated rules:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="-A KUBE-FIREWALL -m comment --comment "kubernetes firewall for dropping marked packets" -m mark --mark 0x8000/0x8000 -j DROP
<repeated>
-A KUBE-MARK-DROP -j MARK --set-xmark 0x8000/0x8000
<repeated>
-A KUBE-MARK-MASQ -j MARK --set-xmark 0x4000/0x4000
<repeated>
-A KUBE-POSTROUTING -m comment --comment "kubernetes service traffic requiring SNAT" -m mark --mark 0x4000/0x4000 -j MASQUERADE
<repeated>"><pre class="notranslate"><code class="notranslate">-A KUBE-FIREWALL -m comment --comment "kubernetes firewall for dropping marked packets" -m mark --mark 0x8000/0x8000 -j DROP
<repeated>
-A KUBE-MARK-DROP -j MARK --set-xmark 0x8000/0x8000
<repeated>
-A KUBE-MARK-MASQ -j MARK --set-xmark 0x4000/0x4000
<repeated>
-A KUBE-POSTROUTING -m comment --comment "kubernetes service traffic requiring SNAT" -m mark --mark 0x4000/0x4000 -j MASQUERADE
<repeated>
</code></pre></div>
<p dir="auto">The commits and issues I've found related to this are:<br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="50146259" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/2623" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/2623/hovercard" href="https://github.com/kubernetes/kubernetes/issues/2623">#2623</a><br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="170774439" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/30486" data-hovercard-type="pull_request" data-hovercard-url="/kubernetes/kubernetes/pull/30486/hovercard" href="https://github.com/kubernetes/kubernetes/pull/30486">#30486</a></p>
<p dir="auto"><strong>What you expected to happen</strong>:<br>
It to stay at < 30% cpu utilization and a reasonable number of iptables rules.</p>
<p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):<br>
Setup centos6 with our kernel, run 1.3.9</p>
<p dir="auto"><strong>Anything else do we need to know</strong>:</p>
<p dir="auto">Here is the iptables output soon after starting the system. You can see it is already starting to accumulate rules:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ sudo iptables-save
# Generated by iptables-save v1.4.7 on Wed Nov 23 16:35:34 2016
*filter
:INPUT ACCEPT [2753:1417441]
:FORWARD ACCEPT [107:7101]
:OUTPUT ACCEPT [1993:8997998]
:DOCKER - [0:0]
:DOCKER-ISOLATION - [0:0]
:KUBE-FIREWALL - [0:0]
-A INPUT -j KUBE-FIREWALL
-A FORWARD -j DOCKER-ISOLATION
-A FORWARD -o docker0 -j DOCKER
-A FORWARD -o docker0 -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
-A FORWARD -i docker0 ! -o docker0 -j ACCEPT
-A FORWARD -i docker0 -o docker0 -j ACCEPT
-A OUTPUT -j KUBE-FIREWALL
-A DOCKER-ISOLATION -j RETURN
-A KUBE-FIREWALL -m comment --comment "kubernetes firewall for dropping marked packets" -m mark --mark 0x8000/0x8000 -j DROP
-A KUBE-FIREWALL -m comment --comment "kubernetes firewall for dropping marked packets" -m mark --mark 0x8000/0x8000 -j DROP
COMMIT
# Completed on Wed Nov 23 16:35:34 2016
# Generated by iptables-save v1.4.7 on Wed Nov 23 16:35:34 2016
*nat
:PREROUTING ACCEPT [462:40180]
:INPUT ACCEPT [136:16306]
:OUTPUT ACCEPT [1007:65897]
:POSTROUTING ACCEPT [1109:72017]
:DOCKER - [0:0]
:KUBE-MARK-DROP - [0:0]
:KUBE-MARK-MASQ - [0:0]
:KUBE-POSTROUTING - [0:0]
-A PREROUTING -m addrtype --dst-type LOCAL -j DOCKER
-A PREROUTING ! -s 127.0.0.1/32 -p tcp -m tcp --dport 10250 -m addrtype --dst-type LOCAL -j REDIRECT --to-ports 11250
-A OUTPUT ! -d 127.0.0.0/8 -m addrtype --dst-type LOCAL -j DOCKER
-A POSTROUTING -m comment --comment "kubernetes postrouting rules" -j KUBE-POSTROUTING
-A POSTROUTING -s 10.20.19.128/25 ! -o docker0 -j MASQUERADE
-A DOCKER -i docker0 -j RETURN
-A KUBE-MARK-DROP -j MARK --set-xmark 0x8000/0x8000
-A KUBE-MARK-DROP -j MARK --set-xmark 0x8000/0x8000
-A KUBE-MARK-MASQ -j MARK --set-xmark 0x4000/0x4000
-A KUBE-MARK-MASQ -j MARK --set-xmark 0x4000/0x4000
-A KUBE-POSTROUTING -m comment --comment "kubernetes service traffic requiring SNAT" -m mark --mark 0x4000/0x4000 -j MASQUERADE
-A KUBE-POSTROUTING -m comment --comment "kubernetes service traffic requiring SNAT" -m mark --mark 0x4000/0x4000 -j MASQUERADE
COMMIT
# Completed on Wed Nov 23 16:35:34 2016"><pre class="notranslate"><code class="notranslate">$ sudo iptables-save
# Generated by iptables-save v1.4.7 on Wed Nov 23 16:35:34 2016
*filter
:INPUT ACCEPT [2753:1417441]
:FORWARD ACCEPT [107:7101]
:OUTPUT ACCEPT [1993:8997998]
:DOCKER - [0:0]
:DOCKER-ISOLATION - [0:0]
:KUBE-FIREWALL - [0:0]
-A INPUT -j KUBE-FIREWALL
-A FORWARD -j DOCKER-ISOLATION
-A FORWARD -o docker0 -j DOCKER
-A FORWARD -o docker0 -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
-A FORWARD -i docker0 ! -o docker0 -j ACCEPT
-A FORWARD -i docker0 -o docker0 -j ACCEPT
-A OUTPUT -j KUBE-FIREWALL
-A DOCKER-ISOLATION -j RETURN
-A KUBE-FIREWALL -m comment --comment "kubernetes firewall for dropping marked packets" -m mark --mark 0x8000/0x8000 -j DROP
-A KUBE-FIREWALL -m comment --comment "kubernetes firewall for dropping marked packets" -m mark --mark 0x8000/0x8000 -j DROP
COMMIT
# Completed on Wed Nov 23 16:35:34 2016
# Generated by iptables-save v1.4.7 on Wed Nov 23 16:35:34 2016
*nat
:PREROUTING ACCEPT [462:40180]
:INPUT ACCEPT [136:16306]
:OUTPUT ACCEPT [1007:65897]
:POSTROUTING ACCEPT [1109:72017]
:DOCKER - [0:0]
:KUBE-MARK-DROP - [0:0]
:KUBE-MARK-MASQ - [0:0]
:KUBE-POSTROUTING - [0:0]
-A PREROUTING -m addrtype --dst-type LOCAL -j DOCKER
-A PREROUTING ! -s 127.0.0.1/32 -p tcp -m tcp --dport 10250 -m addrtype --dst-type LOCAL -j REDIRECT --to-ports 11250
-A OUTPUT ! -d 127.0.0.0/8 -m addrtype --dst-type LOCAL -j DOCKER
-A POSTROUTING -m comment --comment "kubernetes postrouting rules" -j KUBE-POSTROUTING
-A POSTROUTING -s 10.20.19.128/25 ! -o docker0 -j MASQUERADE
-A DOCKER -i docker0 -j RETURN
-A KUBE-MARK-DROP -j MARK --set-xmark 0x8000/0x8000
-A KUBE-MARK-DROP -j MARK --set-xmark 0x8000/0x8000
-A KUBE-MARK-MASQ -j MARK --set-xmark 0x4000/0x4000
-A KUBE-MARK-MASQ -j MARK --set-xmark 0x4000/0x4000
-A KUBE-POSTROUTING -m comment --comment "kubernetes service traffic requiring SNAT" -m mark --mark 0x4000/0x4000 -j MASQUERADE
-A KUBE-POSTROUTING -m comment --comment "kubernetes service traffic requiring SNAT" -m mark --mark 0x4000/0x4000 -j MASQUERADE
COMMIT
# Completed on Wed Nov 23 16:35:34 2016
</code></pre></div>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thockin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thockin">@thockin</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/freehan/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/freehan">@freehan</a></p> | 0 |
<h3 dir="auto">Describe the bug</h3>
<p dir="auto">I'm trying to make a simple stacking and getting the cross validation score but an error raises:</p>
<p dir="auto"><code class="notranslate">NotFittedError: This RandomForestRegressor instance is not fitted yet. Call 'fit' with appropriate arguments before using this estimator.</code></p>
<h3 dir="auto">Steps/Code to Reproduce</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from sklearn.ensemble import StackingRegressor, RandomForestRegressor
from sklearn.datasets import make_regression
from sklearn.model_selection import cross_val_score
X, y = make_regression()
rf = RandomForestRegressor(n_jobs=-1, random_state=42)
rf.fit(X, y)
stack = StackingRegressor([("rf", rf)], cv="prefit")
cross_val_score(estimator=stack, X=X, y=y, scoring="neg_mean_absolute_error", cv=5, n_jobs=-1, error_score="raise")"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">sklearn</span>.<span class="pl-s1">ensemble</span> <span class="pl-k">import</span> <span class="pl-v">StackingRegressor</span>, <span class="pl-v">RandomForestRegressor</span>
<span class="pl-k">from</span> <span class="pl-s1">sklearn</span>.<span class="pl-s1">datasets</span> <span class="pl-k">import</span> <span class="pl-s1">make_regression</span>
<span class="pl-k">from</span> <span class="pl-s1">sklearn</span>.<span class="pl-s1">model_selection</span> <span class="pl-k">import</span> <span class="pl-s1">cross_val_score</span>
<span class="pl-v">X</span>, <span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-en">make_regression</span>()
<span class="pl-s1">rf</span> <span class="pl-c1">=</span> <span class="pl-v">RandomForestRegressor</span>(<span class="pl-s1">n_jobs</span><span class="pl-c1">=</span><span class="pl-c1">-</span><span class="pl-c1">1</span>, <span class="pl-s1">random_state</span><span class="pl-c1">=</span><span class="pl-c1">42</span>)
<span class="pl-s1">rf</span>.<span class="pl-en">fit</span>(<span class="pl-v">X</span>, <span class="pl-s1">y</span>)
<span class="pl-s1">stack</span> <span class="pl-c1">=</span> <span class="pl-v">StackingRegressor</span>([(<span class="pl-s">"rf"</span>, <span class="pl-s1">rf</span>)], <span class="pl-s1">cv</span><span class="pl-c1">=</span><span class="pl-s">"prefit"</span>)
<span class="pl-en">cross_val_score</span>(<span class="pl-s1">estimator</span><span class="pl-c1">=</span><span class="pl-s1">stack</span>, <span class="pl-v">X</span><span class="pl-c1">=</span><span class="pl-v">X</span>, <span class="pl-s1">y</span><span class="pl-c1">=</span><span class="pl-s1">y</span>, <span class="pl-s1">scoring</span><span class="pl-c1">=</span><span class="pl-s">"neg_mean_absolute_error"</span>, <span class="pl-s1">cv</span><span class="pl-c1">=</span><span class="pl-c1">5</span>, <span class="pl-s1">n_jobs</span><span class="pl-c1">=</span><span class="pl-c1">-</span><span class="pl-c1">1</span>, <span class="pl-s1">error_score</span><span class="pl-c1">=</span><span class="pl-s">"raise"</span>)</pre></div>
<h3 dir="auto">Expected Results</h3>
<p dir="auto">It should work fine if I am understanding everything right.</p>
<h3 dir="auto">Actual Results</h3>
<p dir="auto"><code class="notranslate">NotFittedError: This RandomForestRegressor instance is not fitted yet. Call 'fit' with appropriate arguments before using this estimator.</code></p>
<details>
<summary>Full traceback</summary>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="---------------------------------------------------------------------------
_RemoteTraceback Traceback (most recent call last)
_RemoteTraceback:
"""
Traceback (most recent call last):
File "/home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/joblib/externals/loky/process_executor.py", line 436, in _process_worker
r = call_item()
File "/home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/joblib/externals/loky/process_executor.py", line 288, in __call__
return self.fn(*self.args, **self.kwargs)
File "/home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/joblib/_parallel_backends.py", line 595, in __call__
return self.func(*args, **kwargs)
File "/home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/joblib/parallel.py", line 262, in __call__
return [func(*args, **kwargs)
File "/home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/joblib/parallel.py", line 262, in <listcomp>
return [func(*args, **kwargs)
File "/home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/sklearn/utils/fixes.py", line 117, in __call__
return self.function(*args, **kwargs)
File "/home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/sklearn/model_selection/_validation.py", line 686, in _fit_and_score
estimator.fit(X_train, y_train, **fit_params)
File "/home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/sklearn/ensemble/_stacking.py", line 879, in fit
return super().fit(X, y, sample_weight)
File "/home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/sklearn/ensemble/_stacking.py", line 189, in fit
check_is_fitted(estimator)
File "/home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/sklearn/utils/validation.py", line 1352, in check_is_fitted
raise NotFittedError(msg % {"name": type(estimator).__name__})
sklearn.exceptions.NotFittedError: This RandomForestRegressor instance is not fitted yet. Call 'fit' with appropriate arguments before using this estimator.
"""
The above exception was the direct cause of the following exception:
NotFittedError Traceback (most recent call last)
Cell In [3], line 8
6 rf.fit(X, y)
7 stack = StackingRegressor([("rf", rf)], cv="prefit")
----> 8 cross_val_score(estimator=stack, X=X, y=y, scoring="neg_mean_absolute_error", cv=5, n_jobs=-1, error_score="raise")
File ~/miniconda3/envs/skbug/lib/python3.10/site-packages/sklearn/model_selection/_validation.py:515, in cross_val_score(estimator, X, y, groups, scoring, cv, n_jobs, verbose, fit_params, pre_dispatch, error_score)
512 # To ensure multimetric format is not supported
513 scorer = check_scoring(estimator, scoring=scoring)
--> 515 cv_results = cross_validate(
516 estimator=estimator,
517 X=X,
518 y=y,
519 groups=groups,
520 scoring={"score": scorer},
521 cv=cv,
522 n_jobs=n_jobs,
523 verbose=verbose,
524 fit_params=fit_params,
525 pre_dispatch=pre_dispatch,
526 error_score=error_score,
527 )
528 return cv_results["test_score"]
File ~/miniconda3/envs/skbug/lib/python3.10/site-packages/sklearn/model_selection/_validation.py:266, in cross_validate(estimator, X, y, groups, scoring, cv, n_jobs, verbose, fit_params, pre_dispatch, return_train_score, return_estimator, error_score)
263 # We clone the estimator to make sure that all the folds are
264 # independent, and that it is pickle-able.
265 parallel = Parallel(n_jobs=n_jobs, verbose=verbose, pre_dispatch=pre_dispatch)
--> 266 results = parallel(
267 delayed(_fit_and_score)(
268 clone(estimator),
269 X,
270 y,
271 scorers,
272 train,
273 test,
274 verbose,
275 None,
276 fit_params,
277 return_train_score=return_train_score,
278 return_times=True,
279 return_estimator=return_estimator,
280 error_score=error_score,
281 )
282 for train, test in cv.split(X, y, groups)
283 )
285 _warn_or_raise_about_fit_failures(results, error_score)
287 # For callabe scoring, the return type is only know after calling. If the
288 # return type is a dictionary, the error scores can now be inserted with
289 # the correct key.
File ~/miniconda3/envs/skbug/lib/python3.10/site-packages/joblib/parallel.py:1056, in Parallel.__call__(self, iterable)
1053 self._iterating = False
1055 with self._backend.retrieval_context():
-> 1056 self.retrieve()
1057 # Make sure that we get a last message telling us we are done
1058 elapsed_time = time.time() - self._start_time
File ~/miniconda3/envs/skbug/lib/python3.10/site-packages/joblib/parallel.py:935, in Parallel.retrieve(self)
933 try:
934 if getattr(self._backend, 'supports_timeout', False):
--> 935 self._output.extend(job.get(timeout=self.timeout))
936 else:
937 self._output.extend(job.get())
File ~/miniconda3/envs/skbug/lib/python3.10/site-packages/joblib/_parallel_backends.py:542, in LokyBackend.wrap_future_result(future, timeout)
539 """Wrapper for Future.result to implement the same behaviour as
540 AsyncResults.get from multiprocessing."""
541 try:
--> 542 return future.result(timeout=timeout)
543 except CfTimeoutError as e:
544 raise TimeoutError from e
File ~/miniconda3/envs/skbug/lib/python3.10/concurrent/futures/_base.py:446, in Future.result(self, timeout)
444 raise CancelledError()
445 elif self._state == FINISHED:
--> 446 return self.__get_result()
447 else:
448 raise TimeoutError()
File ~/miniconda3/envs/skbug/lib/python3.10/concurrent/futures/_base.py:391, in Future.__get_result(self)
389 if self._exception:
390 try:
--> 391 raise self._exception
392 finally:
393 # Break a reference cycle with the exception in self._exception
394 self = None
NotFittedError: This RandomForestRegressor instance is not fitted yet. Call 'fit' with appropriate arguments before using this estimator."><pre class="notranslate"><code class="notranslate">---------------------------------------------------------------------------
_RemoteTraceback Traceback (most recent call last)
_RemoteTraceback:
"""
Traceback (most recent call last):
File "/home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/joblib/externals/loky/process_executor.py", line 436, in _process_worker
r = call_item()
File "/home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/joblib/externals/loky/process_executor.py", line 288, in __call__
return self.fn(*self.args, **self.kwargs)
File "/home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/joblib/_parallel_backends.py", line 595, in __call__
return self.func(*args, **kwargs)
File "/home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/joblib/parallel.py", line 262, in __call__
return [func(*args, **kwargs)
File "/home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/joblib/parallel.py", line 262, in <listcomp>
return [func(*args, **kwargs)
File "/home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/sklearn/utils/fixes.py", line 117, in __call__
return self.function(*args, **kwargs)
File "/home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/sklearn/model_selection/_validation.py", line 686, in _fit_and_score
estimator.fit(X_train, y_train, **fit_params)
File "/home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/sklearn/ensemble/_stacking.py", line 879, in fit
return super().fit(X, y, sample_weight)
File "/home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/sklearn/ensemble/_stacking.py", line 189, in fit
check_is_fitted(estimator)
File "/home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/sklearn/utils/validation.py", line 1352, in check_is_fitted
raise NotFittedError(msg % {"name": type(estimator).__name__})
sklearn.exceptions.NotFittedError: This RandomForestRegressor instance is not fitted yet. Call 'fit' with appropriate arguments before using this estimator.
"""
The above exception was the direct cause of the following exception:
NotFittedError Traceback (most recent call last)
Cell In [3], line 8
6 rf.fit(X, y)
7 stack = StackingRegressor([("rf", rf)], cv="prefit")
----> 8 cross_val_score(estimator=stack, X=X, y=y, scoring="neg_mean_absolute_error", cv=5, n_jobs=-1, error_score="raise")
File ~/miniconda3/envs/skbug/lib/python3.10/site-packages/sklearn/model_selection/_validation.py:515, in cross_val_score(estimator, X, y, groups, scoring, cv, n_jobs, verbose, fit_params, pre_dispatch, error_score)
512 # To ensure multimetric format is not supported
513 scorer = check_scoring(estimator, scoring=scoring)
--> 515 cv_results = cross_validate(
516 estimator=estimator,
517 X=X,
518 y=y,
519 groups=groups,
520 scoring={"score": scorer},
521 cv=cv,
522 n_jobs=n_jobs,
523 verbose=verbose,
524 fit_params=fit_params,
525 pre_dispatch=pre_dispatch,
526 error_score=error_score,
527 )
528 return cv_results["test_score"]
File ~/miniconda3/envs/skbug/lib/python3.10/site-packages/sklearn/model_selection/_validation.py:266, in cross_validate(estimator, X, y, groups, scoring, cv, n_jobs, verbose, fit_params, pre_dispatch, return_train_score, return_estimator, error_score)
263 # We clone the estimator to make sure that all the folds are
264 # independent, and that it is pickle-able.
265 parallel = Parallel(n_jobs=n_jobs, verbose=verbose, pre_dispatch=pre_dispatch)
--> 266 results = parallel(
267 delayed(_fit_and_score)(
268 clone(estimator),
269 X,
270 y,
271 scorers,
272 train,
273 test,
274 verbose,
275 None,
276 fit_params,
277 return_train_score=return_train_score,
278 return_times=True,
279 return_estimator=return_estimator,
280 error_score=error_score,
281 )
282 for train, test in cv.split(X, y, groups)
283 )
285 _warn_or_raise_about_fit_failures(results, error_score)
287 # For callabe scoring, the return type is only know after calling. If the
288 # return type is a dictionary, the error scores can now be inserted with
289 # the correct key.
File ~/miniconda3/envs/skbug/lib/python3.10/site-packages/joblib/parallel.py:1056, in Parallel.__call__(self, iterable)
1053 self._iterating = False
1055 with self._backend.retrieval_context():
-> 1056 self.retrieve()
1057 # Make sure that we get a last message telling us we are done
1058 elapsed_time = time.time() - self._start_time
File ~/miniconda3/envs/skbug/lib/python3.10/site-packages/joblib/parallel.py:935, in Parallel.retrieve(self)
933 try:
934 if getattr(self._backend, 'supports_timeout', False):
--> 935 self._output.extend(job.get(timeout=self.timeout))
936 else:
937 self._output.extend(job.get())
File ~/miniconda3/envs/skbug/lib/python3.10/site-packages/joblib/_parallel_backends.py:542, in LokyBackend.wrap_future_result(future, timeout)
539 """Wrapper for Future.result to implement the same behaviour as
540 AsyncResults.get from multiprocessing."""
541 try:
--> 542 return future.result(timeout=timeout)
543 except CfTimeoutError as e:
544 raise TimeoutError from e
File ~/miniconda3/envs/skbug/lib/python3.10/concurrent/futures/_base.py:446, in Future.result(self, timeout)
444 raise CancelledError()
445 elif self._state == FINISHED:
--> 446 return self.__get_result()
447 else:
448 raise TimeoutError()
File ~/miniconda3/envs/skbug/lib/python3.10/concurrent/futures/_base.py:391, in Future.__get_result(self)
389 if self._exception:
390 try:
--> 391 raise self._exception
392 finally:
393 # Break a reference cycle with the exception in self._exception
394 self = None
NotFittedError: This RandomForestRegressor instance is not fitted yet. Call 'fit' with appropriate arguments before using this estimator.
</code></pre></div>
</details>
<h3 dir="auto">Versions</h3>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="I installed the latest nightly
System:
python: 3.10.4 (main, Mar 31 2022, 08:41:55) [GCC 7.5.0]
executable: /home/guillem.garcia/miniconda3/envs/skbug/bin/python
machine: Linux-5.15.0-47-generic-x86_64-with-glibc2.35
Python dependencies:
sklearn: 1.2.dev0
pip: 22.1.2
setuptools: 63.4.1
numpy: 1.24.0.dev0+703.gb2fbc4349
scipy: 1.10.0.dev0
Cython: None
pandas: None
matplotlib: None
joblib: 1.1.0
threadpoolctl: 3.1.0
Built with OpenMP: True
threadpoolctl info:
user_api: openmp
internal_api: openmp
prefix: libgomp
filepath: /home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/scikit_learn.libs/libgomp-a34b3233.so.1.0.0
version: None
num_threads: 8
user_api: blas
internal_api: openblas
prefix: libopenblas
filepath: /home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/numpy.libs/libopenblas64_p-r0-742d56dc.3.20.so
version: 0.3.20
threading_layer: pthreads
architecture: Haswell
num_threads: 8
user_api: blas
internal_api: openblas
prefix: libopenblas
filepath: /home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/scipy.libs/libopenblasp-r0-41284840.3.18.so
version: 0.3.18
threading_layer: pthreads
architecture: Haswell
num_threads: 8"><pre class="notranslate">I installed the latest nightly
System:
python: 3.10.4 (main, Mar 31 2022, 08:41:55) [GCC 7.5.0]
executable: /home/guillem.garcia/miniconda3/envs/skbug/bin/python
machine: Linux-5.15.0-47-generic-x86_64-with-glibc2.35
Python dependencies:
sklearn: 1.2.dev0
pip: 22.1.2
setuptools: 63.4.1
numpy: 1.24.0.dev0+703.gb2fbc4349
scipy: 1.10.0.dev0
Cython: None
pandas: None
matplotlib: None
joblib: 1.1.0
threadpoolctl: 3.1.0
Built with OpenMP: True
threadpoolctl info:
user_api: openmp
internal_api: openmp
prefix: libgomp
filepath: /home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/scikit_learn.libs/libgomp-a34b3233.so.1.0.0
version: None
num_threads: 8
user_api: blas
internal_api: openblas
prefix: libopenblas
filepath: /home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/numpy.libs/libopenblas64_p-r0-742d56dc.3.20.so
version: 0.3.20
threading_layer: pthreads
architecture: Haswell
num_threads: 8
user_api: blas
internal_api: openblas
prefix: libopenblas
filepath: /home/guillem.garcia/miniconda3/envs/skbug/lib/python3.10/site-packages/scipy.libs/libopenblasp-r0-41284840.3.18.so
version: 0.3.18
threading_layer: pthreads
architecture: Haswell
num_threads: 8</pre></div> | <h3 dir="auto">Describe the bug</h3>
<p dir="auto">There seems to be a bug with the combination of <code class="notranslate">GridSearchCV</code> and <code class="notranslate">StackingClassifier</code> when the parameter <code class="notranslate">cv</code> of <code class="notranslate">StackingClassifier</code> is set to 'prefit'. With this option, the estimators of the <code class="notranslate">StackingClassifier</code> should be fitted before fitting the stacked model, and only the final_estimator would then be fitted. When including the <code class="notranslate">StackingClassifier</code> within <code class="notranslate">GridSearchCV</code> however, the fact that estimators have already been fitted does not seem to be recognized.</p>
<h3 dir="auto">Steps/Code to Reproduce</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np
from sklearn.linear_model import LogisticRegression
from sklearn.naive_bayes import GaussianNB
from sklearn.ensemble import GradientBoostingClassifier, StackingClassifier
from sklearn.model_selection import GridSearchCV
# Creating toy data set
n_features = 3
n_instances = 40
train = np.random.rand(n_instances, n_features)
label = np.random.randint(0,2,n_instances)
# Declaring estimators
log_clf = LogisticRegression()
gau_clf = GaussianNB()
# Fitting estimators
log_clf.fit(train, label)
gau_clf.fit(train, label)
# Creating stacked model
estimators = [
("log", log_clf),
("gau", gau_clf)
]
boost = GradientBoostingClassifier()
stack = StackingClassifier(estimators=estimators,
final_estimator=boost,
cv = 'prefit')
# Creating the Grid CV
param_search = {
'final_estimator__max_depth': [1]
}
gridcv = GridSearchCV(stack,
param_grid=param_search)
# Fitting the stack and gridcv models
stack.fit(train, label) # works fine
gridcv.fit(train, label) # sklearn.exceptions.NotFittedError: This LogisticRegression instance is not fitted yet.
# Call 'fit' with appropriate arguments before using this estimator
"><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">from</span> <span class="pl-s1">sklearn</span>.<span class="pl-s1">linear_model</span> <span class="pl-k">import</span> <span class="pl-v">LogisticRegression</span>
<span class="pl-k">from</span> <span class="pl-s1">sklearn</span>.<span class="pl-s1">naive_bayes</span> <span class="pl-k">import</span> <span class="pl-v">GaussianNB</span>
<span class="pl-k">from</span> <span class="pl-s1">sklearn</span>.<span class="pl-s1">ensemble</span> <span class="pl-k">import</span> <span class="pl-v">GradientBoostingClassifier</span>, <span class="pl-v">StackingClassifier</span>
<span class="pl-k">from</span> <span class="pl-s1">sklearn</span>.<span class="pl-s1">model_selection</span> <span class="pl-k">import</span> <span class="pl-v">GridSearchCV</span>
<span class="pl-c"># Creating toy data set</span>
<span class="pl-s1">n_features</span> <span class="pl-c1">=</span> <span class="pl-c1">3</span>
<span class="pl-s1">n_instances</span> <span class="pl-c1">=</span> <span class="pl-c1">40</span>
<span class="pl-s1">train</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">rand</span>(<span class="pl-s1">n_instances</span>, <span class="pl-s1">n_features</span>)
<span class="pl-s1">label</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">randint</span>(<span class="pl-c1">0</span>,<span class="pl-c1">2</span>,<span class="pl-s1">n_instances</span>)
<span class="pl-c"># Declaring estimators</span>
<span class="pl-s1">log_clf</span> <span class="pl-c1">=</span> <span class="pl-v">LogisticRegression</span>()
<span class="pl-s1">gau_clf</span> <span class="pl-c1">=</span> <span class="pl-v">GaussianNB</span>()
<span class="pl-c"># Fitting estimators</span>
<span class="pl-s1">log_clf</span>.<span class="pl-en">fit</span>(<span class="pl-s1">train</span>, <span class="pl-s1">label</span>)
<span class="pl-s1">gau_clf</span>.<span class="pl-en">fit</span>(<span class="pl-s1">train</span>, <span class="pl-s1">label</span>)
<span class="pl-c"># Creating stacked model</span>
<span class="pl-s1">estimators</span> <span class="pl-c1">=</span> [
(<span class="pl-s">"log"</span>, <span class="pl-s1">log_clf</span>),
(<span class="pl-s">"gau"</span>, <span class="pl-s1">gau_clf</span>)
]
<span class="pl-s1">boost</span> <span class="pl-c1">=</span> <span class="pl-v">GradientBoostingClassifier</span>()
<span class="pl-s1">stack</span> <span class="pl-c1">=</span> <span class="pl-v">StackingClassifier</span>(<span class="pl-s1">estimators</span><span class="pl-c1">=</span><span class="pl-s1">estimators</span>,
<span class="pl-s1">final_estimator</span><span class="pl-c1">=</span><span class="pl-s1">boost</span>,
<span class="pl-s1">cv</span> <span class="pl-c1">=</span> <span class="pl-s">'prefit'</span>)
<span class="pl-c"># Creating the Grid CV</span>
<span class="pl-s1">param_search</span> <span class="pl-c1">=</span> {
<span class="pl-s">'final_estimator__max_depth'</span>: [<span class="pl-c1">1</span>]
}
<span class="pl-s1">gridcv</span> <span class="pl-c1">=</span> <span class="pl-v">GridSearchCV</span>(<span class="pl-s1">stack</span>,
<span class="pl-s1">param_grid</span><span class="pl-c1">=</span><span class="pl-s1">param_search</span>)
<span class="pl-c"># Fitting the stack and gridcv models</span>
<span class="pl-s1">stack</span>.<span class="pl-en">fit</span>(<span class="pl-s1">train</span>, <span class="pl-s1">label</span>) <span class="pl-c"># works fine </span>
<span class="pl-s1">gridcv</span>.<span class="pl-en">fit</span>(<span class="pl-s1">train</span>, <span class="pl-s1">label</span>) <span class="pl-c"># sklearn.exceptions.NotFittedError: This LogisticRegression instance is not fitted yet. </span>
<span class="pl-c"># Call 'fit' with appropriate arguments before using this estimator</span></pre></div>
<h3 dir="auto">Expected Results</h3>
<p dir="auto">In the above code, the <code class="notranslate">stack</code> model works fine and no error related to the estimators' previous fitting is thrown.</p>
<p dir="auto">However, when included in the GridSearchCV, the fact that estimator models have been fitted already does not seem to be recognized and a <code class="notranslate">sklearn.exceptions.NotFittedError</code> error is prompted.</p>
<h3 dir="auto">Actual Results</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last):
File "c:\Users\levesque\Documents\Python\AMEX\errorExample.py", line 39, in <module>
gridcv.fit(train, label) # sklearn.exceptions.NotFittedError: This LogisticRegression instance is not fitted yet. Call 'fit' with appropriate
arguments before using this estimator
File "C:\Users\levesque\Documents\Python\AMEX\env\lib\site-packages\sklearn\model_selection\_search.py", line 875, in fit
self._run_search(evaluate_candidates)
File "C:\Users\levesque\Documents\Python\AMEX\env\lib\site-packages\sklearn\model_selection\_search.py", line 1379, in _run_search
evaluate_candidates(ParameterGrid(self.param_grid))
File "C:\Users\levesque\Documents\Python\AMEX\env\lib\site-packages\sklearn\model_selection\_search.py", line 852, in evaluate_candidates
_warn_or_raise_about_fit_failures(out, self.error_score)
File "C:\Users\levesque\Documents\Python\AMEX\env\lib\site-packages\sklearn\model_selection\_validation.py", line 367, in _warn_or_raise_about_fit_failures
raise ValueError(all_fits_failed_message)
ValueError:
All the 5 fits failed.
It is very likely that your model is misconfigured.
You can try to debug the error by setting error_score='raise'.
Below are more details about the failures:
--------------------------------------------------------------------------------
5 fits failed with the following error:
Traceback (most recent call last):
File "C:\Users\levesque\Documents\Python\AMEX\env\lib\site-packages\sklearn\model_selection\_validation.py", line 686, in _fit_and_score
estimator.fit(X_train, y_train, **fit_params)
File "C:\Users\levesque\Documents\Python\AMEX\env\lib\site-packages\sklearn\ensemble\_stacking.py", line 584, in fit
return super().fit(X, self._le.transform(y), sample_weight)
File "C:\Users\levesque\Documents\Python\AMEX\env\lib\site-packages\sklearn\ensemble\_stacking.py", line 183, in fit
check_is_fitted(estimator)
File "C:\Users\levesque\Documents\Python\AMEX\env\lib\site-packages\sklearn\utils\validation.py", line 1345, in check_is_fitted
raise NotFittedError(msg % {"name": type(estimator).__name__})
sklearn.exceptions.NotFittedError: This LogisticRegression instance is not fitted yet. Call 'fit' with appropriate arguments before using this estimator."><pre class="notranslate"><code class="notranslate">Traceback (most recent call last):
File "c:\Users\levesque\Documents\Python\AMEX\errorExample.py", line 39, in <module>
gridcv.fit(train, label) # sklearn.exceptions.NotFittedError: This LogisticRegression instance is not fitted yet. Call 'fit' with appropriate
arguments before using this estimator
File "C:\Users\levesque\Documents\Python\AMEX\env\lib\site-packages\sklearn\model_selection\_search.py", line 875, in fit
self._run_search(evaluate_candidates)
File "C:\Users\levesque\Documents\Python\AMEX\env\lib\site-packages\sklearn\model_selection\_search.py", line 1379, in _run_search
evaluate_candidates(ParameterGrid(self.param_grid))
File "C:\Users\levesque\Documents\Python\AMEX\env\lib\site-packages\sklearn\model_selection\_search.py", line 852, in evaluate_candidates
_warn_or_raise_about_fit_failures(out, self.error_score)
File "C:\Users\levesque\Documents\Python\AMEX\env\lib\site-packages\sklearn\model_selection\_validation.py", line 367, in _warn_or_raise_about_fit_failures
raise ValueError(all_fits_failed_message)
ValueError:
All the 5 fits failed.
It is very likely that your model is misconfigured.
You can try to debug the error by setting error_score='raise'.
Below are more details about the failures:
--------------------------------------------------------------------------------
5 fits failed with the following error:
Traceback (most recent call last):
File "C:\Users\levesque\Documents\Python\AMEX\env\lib\site-packages\sklearn\model_selection\_validation.py", line 686, in _fit_and_score
estimator.fit(X_train, y_train, **fit_params)
File "C:\Users\levesque\Documents\Python\AMEX\env\lib\site-packages\sklearn\ensemble\_stacking.py", line 584, in fit
return super().fit(X, self._le.transform(y), sample_weight)
File "C:\Users\levesque\Documents\Python\AMEX\env\lib\site-packages\sklearn\ensemble\_stacking.py", line 183, in fit
check_is_fitted(estimator)
File "C:\Users\levesque\Documents\Python\AMEX\env\lib\site-packages\sklearn\utils\validation.py", line 1345, in check_is_fitted
raise NotFittedError(msg % {"name": type(estimator).__name__})
sklearn.exceptions.NotFittedError: This LogisticRegression instance is not fitted yet. Call 'fit' with appropriate arguments before using this estimator.
</code></pre></div>
<h3 dir="auto">Versions</h3>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="System:
python: 3.10.0 (tags/v3.10.0:b494f59, Oct 4 2021, 19:00:18) [MSC v.1929 64 bit (AMD64)]
executable: C:\Users\levesque\Documents\Python\AMEX\env\Scripts\python.exe
machine: Windows-10-10.0.17763-SP0
Python dependencies:
sklearn: 1.1.2
pip: 22.2.2
setuptools: 57.4.0
numpy: 1.23.1
scipy: 1.9.0
Cython: None
pandas: 1.4.3
matplotlib: 3.5.2
joblib: 1.1.0
threadpoolctl: 3.1.0
Built with OpenMP: True
threadpoolctl info:
user_api: openmp
internal_api: openmp
prefix: vcomp
filepath: C:\Users\levesque\Documents\Python\AMEX\env\Lib\site-packages\sklearn\.libs\vcomp140.dll
version: None
num_threads: 8
user_api: blas
internal_api: openblas
prefix: libopenblas
filepath: C:\Users\levesque\Documents\Python\AMEX\env\Lib\site-packages\numpy\.libs\libopenblas.FB5AE2TYXYH2IJRDKGDGQ3XBKLKTF43H.gfortran-win_amd64.dll
version: 0.3.20
threading_layer: pthreads
architecture: Haswell
num_threads: 8
user_api: blas
internal_api: openblas
prefix: libopenblas
filepath: C:\Users\levesque\Documents\Python\AMEX\env\Lib\site-packages\scipy\.libs\libopenblas.PZA5WNOTOH6FZLB2KBVKAURAKVTFSNNU.gfortran-win_amd64.dll
version: 0.3.18
threading_layer: pthreads
architecture: Haswell
num_threads: 8"><pre class="notranslate">System:
python: 3.10.0 (tags/v3.10.0:b494f59, Oct 4 2021, 19:00:18) [MSC v.1929 64 bit (AMD64)]
executable: C:<span class="pl-cce">\U</span>sers<span class="pl-cce">\l</span>evesque<span class="pl-cce">\D</span>ocuments<span class="pl-cce">\P</span>ython<span class="pl-cce">\A</span>MEX<span class="pl-cce">\e</span>nv<span class="pl-cce">\S</span>cripts<span class="pl-cce">\p</span>ython.exe
machine: Windows-10-10.0.17763-SP0
Python dependencies:
sklearn: 1.1.2
pip: 22.2.2
setuptools: 57.4.0
numpy: 1.23.1
scipy: 1.9.0
Cython: None
pandas: 1.4.3
matplotlib: 3.5.2
joblib: 1.1.0
threadpoolctl: 3.1.0
Built with OpenMP: True
threadpoolctl info:
user_api: openmp
internal_api: openmp
prefix: vcomp
filepath: C:<span class="pl-cce">\U</span>sers<span class="pl-cce">\l</span>evesque<span class="pl-cce">\D</span>ocuments<span class="pl-cce">\P</span>ython<span class="pl-cce">\A</span>MEX<span class="pl-cce">\e</span>nv<span class="pl-cce">\L</span>ib<span class="pl-cce">\s</span>ite-packages<span class="pl-cce">\s</span>klearn<span class="pl-cce">\.</span>libs<span class="pl-cce">\v</span>comp140.dll
version: None
num_threads: 8
user_api: blas
internal_api: openblas
prefix: libopenblas
filepath: C:<span class="pl-cce">\U</span>sers<span class="pl-cce">\l</span>evesque<span class="pl-cce">\D</span>ocuments<span class="pl-cce">\P</span>ython<span class="pl-cce">\A</span>MEX<span class="pl-cce">\e</span>nv<span class="pl-cce">\L</span>ib<span class="pl-cce">\s</span>ite-packages<span class="pl-cce">\n</span>umpy<span class="pl-cce">\.</span>libs<span class="pl-cce">\l</span>ibopenblas.FB5AE2TYXYH2IJRDKGDGQ3XBKLKTF43H.gfortran-win_amd64.dll
version: 0.3.20
threading_layer: pthreads
architecture: Haswell
num_threads: 8
user_api: blas
internal_api: openblas
prefix: libopenblas
filepath: C:<span class="pl-cce">\U</span>sers<span class="pl-cce">\l</span>evesque<span class="pl-cce">\D</span>ocuments<span class="pl-cce">\P</span>ython<span class="pl-cce">\A</span>MEX<span class="pl-cce">\e</span>nv<span class="pl-cce">\L</span>ib<span class="pl-cce">\s</span>ite-packages<span class="pl-cce">\s</span>cipy<span class="pl-cce">\.</span>libs<span class="pl-cce">\l</span>ibopenblas.PZA5WNOTOH6FZLB2KBVKAURAKVTFSNNU.gfortran-win_amd64.dll
version: 0.3.18
threading_layer: pthreads
architecture: Haswell
num_threads: 8</pre></div> | 1 |
<p dir="auto">The <a href="https://playwright.dev/docs/release-notes" rel="nofollow">Release notes</a> page contains various anchors for convenience, however the anchors within each version do not contain the version, and thus the release of a new version often "clobbers" (by adding a higher-on-the-page duplicate) older anchors.</p>
<p dir="auto">This may cause confusion, for example if someone had used <a href="https://playwright.dev/docs/release-notes#playwright-test" rel="nofollow">https://playwright.dev/docs/release-notes#playwright-test</a> to link to the "Playwright Test" section of the "Version 1.13" release notes, which now points to the "Playwright Test" section of the "Version 1.14" release notes.</p>
<p dir="auto">A simple (in theory) solution: include the version in the anchor as needed. In the example I gave above:<br>
<a href="https://playwright.dev/docs/release-notes#playwright-test" rel="nofollow">https://playwright.dev/docs/release-notes#playwright-test</a><br>
... might become:<br>
<a href="https://playwright.dev/docs/release-notes#v1.13-playwright-test" rel="nofollow">https://playwright.dev/docs/release-notes#v1.13-playwright-test</a><br>
(or something like that)</p>
<p dir="auto">I took a quick look through the repo (found <a href="https://github.com/microsoft/playwright/blob/master/docs/development/releasing.md">docs/development/releasing.md</a> & <a href="https://github.com/microsoft/playwright/blob/master/utils/draft_release_notes.sh">utils/draft_release_notes.sh</a>), wasn't clear how this might be accomplished.</p> | <h3 dir="auto">System info</h3>
<ul dir="auto">
<li>Playwright Version: [v1.31.2 to v1.34.0] All versions are tested with corresponding image and npm package version.</li>
<li>Operating System: [Docker playwright:v1.34.0, etc]</li>
<li>Other info:</li>
</ul>
<h3 dir="auto">Source code</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I provided exact source code that allows reproducing the issue locally.</li>
</ul>
<p dir="auto"><strong>Config file</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// playwright.config.ts
import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
webServer: {
command: 'node ./start-server.js',
url: 'http://localhost:10039', // I also tested with 127.0.0.1 with the same result.
timeout: 120 * 1000,
reuseExistingServer: false
},
use: {
baseUrl: 'http://localhost:10039'
}
});"><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">webServer</span>: <span class="pl-kos">{</span>
<span class="pl-c1">command</span>: <span class="pl-s">'node ./start-server.js'</span><span class="pl-kos">,</span>
<span class="pl-c1">url</span>: <span class="pl-s">'http://localhost:10039'</span><span class="pl-kos">,</span> <span class="pl-c">// I also tested with 127.0.0.1 with the same result.</span>
<span class="pl-c1">timeout</span>: <span class="pl-c1">120</span> <span class="pl-c1">*</span> <span class="pl-c1">1000</span><span class="pl-kos">,</span>
<span class="pl-c1">reuseExistingServer</span>: <span class="pl-c1">false</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">baseUrl</span>: <span class="pl-s">'http://localhost:10039'</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>/etc/hosts</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="127.0.0.1 localhost
::1 localhost ip6-localhost ip6-loopback
..."><pre class="notranslate"><code class="notranslate">127.0.0.1 localhost
::1 localhost ip6-localhost ip6-loopback
...
</code></pre></div>
<p dir="auto">$http_proxy, $https_proxy, $no_proxy, and their upper case versions are all unset.</p>
<p dir="auto">.yarnrc includes proxy and https-proxy settings.</p>
<p dir="auto"><strong>Steps</strong></p>
<ul dir="auto">
<li>Run <code class="notranslate">DEBUG=pw:webserver npx playwright test</code></li>
</ul>
<p dir="auto"><strong>Expected</strong></p>
<p dir="auto">Ignore other proxy envs (like npm_config_proxy) other than http_proxy, https_proxy to match browser behavior.</p>
<p dir="auto">Playwright v.1.31.1 and below.</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ npx playwright test
[timestamp] pw:server HTTP GET: http://localhost:10039/
[timestamp] pw:server Error while checking if http://localhost:10039/ is available: connect ECONNREFUSED ::1:10039
[timestamp] pw:server Starting WebServer process node ./start-server.js
[timestamp] pw:server Process started
[timestamp] pw:server Waiting for availability...
[timestamp] pw:server HTTP GET http://localhost:10039/
[timestamp] pw:server Error while checking if http://localhost:10039/ is available: connect ECONNREFUSED ::1:10039
[timestamp] pw:server Waiting 100ms
...
[timestamp] pw:server HTTP GET: http://localhost:10039/
[around 20s] pw:server HTTP Status: 200
[timestamp] pw:server WebServer available"><pre class="notranslate">$ npx playwright <span class="pl-c1">test</span>
[timestamp] pw:server HTTP GET: http://localhost:10039/
[timestamp] pw:server Error <span class="pl-k">while</span> checking <span class="pl-k">if</span> http://localhost:10039/ is available: connect ECONNREFUSED ::1:10039
[timestamp] pw:server Starting WebServer process node ./start-server.js
[timestamp] pw:server Process started
[timestamp] pw:server Waiting <span class="pl-k">for</span> availability...
[timestamp] pw:server HTTP GET http://localhost:10039/
[timestamp] pw:server Error <span class="pl-k">while</span> checking <span class="pl-k">if</span> http://localhost:10039/ is available: connect ECONNREFUSED ::1:10039
[timestamp] pw:server Waiting 100ms
...
[timestamp] pw:server HTTP GET: http://localhost:10039/
[around 20s] pw:server HTTP Status: 200
[timestamp] pw:server WebServer available</pre></div>
<p dir="auto"><strong>Actual</strong></p>
<p dir="auto">Network pinging uses other proxy envs (like npm_config_proxy) other than http_proxy, https_proxy.</p>
<p dir="auto">Playwright v1.31.2 and above. I am only able to reproduce it in our company's GitLab CI K8S environment. I tried reproducing it locally (Podman container) and v1.31.2 and above works fine.</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ npx playwright test
[timestamp] pw:server HTTP GET: http://localhost:10039/
[timestamp] pw:server HTTP Status: 407
[timestamp] pw:server Starting WebServer process node ./start-server.js
[timestamp] pw:server Process started
[timestamp] pw:server Waiting for availability...
[timestamp] pw:server HTTP GET http://localhost:10039/
[timestamp] pw:server HTTP Status: 407
[timestamp] pw:server Waiting 100ms
...
[timestamp] pw:server HTTP GET: http://localhost:10039/
[timestamp] pw:server HTTP Status: 407
Error: Timed out waiting 120000ms from config.webServer.
error Command failed with exit code 1."><pre class="notranslate">$ npx playwright <span class="pl-c1">test</span>
[timestamp] pw:server HTTP GET: http://localhost:10039/
[timestamp] pw:server HTTP Status: 407
[timestamp] pw:server Starting WebServer process node ./start-server.js
[timestamp] pw:server Process started
[timestamp] pw:server Waiting <span class="pl-k">for</span> availability...
[timestamp] pw:server HTTP GET http://localhost:10039/
[timestamp] pw:server HTTP Status: 407
[timestamp] pw:server Waiting 100ms
...
[timestamp] pw:server HTTP GET: http://localhost:10039/
[timestamp] pw:server HTTP Status: 407
Error: Timed out waiting 120000ms from config.webServer.
error Command failed with <span class="pl-c1">exit</span> code 1.</pre></div>
<p dir="auto">Seeing the changes of v1.31.2 related to webServer (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1601121247" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/21227" data-hovercard-type="issue" data-hovercard-url="/microsoft/playwright/issues/21227/hovercard" href="https://github.com/microsoft/playwright/issues/21227">#21227</a>), I made my own debug script. But my script runs fine in v1.31.2 and above:</p>
<p dir="auto"><strong>test-server.js</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const utils = require('playwright-core/lib/utils');
const {httpRequest} = utils;
httpRequest(
{
url: 'http://localhost:10039/',
headers: {Accept: '*/*'},
rejectUnauthorized: true,
},
res => {
res.resume();
const statusCode = res.statusCode;
console.log(statusCode);
let body = '';
res.on('data', chunk => { body += chunk; };
res.on('end', () => { console.log(body); });
},
console.error,
)
/*
node ./start-server.js &
sleep 30
node ./test-server.js
*/
/*
200
<!doctype html>...
*/"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">utils</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'playwright-core/lib/utils'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-kos">{</span>httpRequest<span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-s1">utils</span><span class="pl-kos">;</span>
<span class="pl-en">httpRequest</span><span class="pl-kos">(</span>
<span class="pl-kos">{</span>
<span class="pl-c1">url</span>: <span class="pl-s">'http://localhost:10039/'</span><span class="pl-kos">,</span>
<span class="pl-c1">headers</span>: <span class="pl-kos">{</span><span class="pl-c1">Accept</span>: <span class="pl-s">'*/*'</span><span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c1">rejectUnauthorized</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-s1">res</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-s1">res</span><span class="pl-kos">.</span><span class="pl-en">resume</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">statusCode</span> <span class="pl-c1">=</span> <span class="pl-s1">res</span><span class="pl-kos">.</span><span class="pl-c1">statusCode</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">statusCode</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> <span class="pl-s1">body</span> <span class="pl-c1">=</span> <span class="pl-s">''</span><span class="pl-kos">;</span>
<span class="pl-s1">res</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">'data'</span><span class="pl-kos">,</span> <span class="pl-s1">chunk</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span> <span class="pl-s1">body</span> <span class="pl-c1">+=</span> <span class="pl-s1">chunk</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">res</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">'end'</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">body</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-smi">console</span><span class="pl-kos">.</span><span class="pl-c1">error</span><span class="pl-kos">,</span>
<span class="pl-kos">)</span>
<span class="pl-c">/*</span>
<span class="pl-c">node ./start-server.js &</span>
<span class="pl-c">sleep 30</span>
<span class="pl-c">node ./test-server.js</span>
<span class="pl-c">*/</span>
<span class="pl-c">/*</span>
<span class="pl-c">200</span>
<span class="pl-c"><!doctype html>...</span>
<span class="pl-c">*/</span></pre></div>
<p dir="auto">Removing webServer config and running this also works fine:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="node ./start-server.js &
sleep 30
npx playwright test"><pre class="notranslate">node ./start-server.js <span class="pl-k">&</span>
sleep 30
npx playwright <span class="pl-c1">test</span></pre></div> | 0 |
<p dir="auto">Running this code in a jupyter notebook plots a heatmap which is cutoff at the top and bottom -- horizontal view is ok.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="data=np.array([[7.49377179e-10, 5.04982270e-02, 8.41080502e-01, 1.08421271e-01],
[6.33214717e-02, 6.86063645e-01, 1.57489835e-01, 9.31250485e-02],
[1.42185280e-02, 1.06747920e-01, 8.38806192e-01, 4.02273604e-02],
[7.81118162e-01, 1.28774739e-32, 4.47694456e-24, 2.18881838e-01]])
sns.heatmap(data,annot=True,fmt='.2f',cmap='Reds',vmin=0,vmax=1,cbar=False,mask=(data<0.01))"><pre class="notranslate"><code class="notranslate">data=np.array([[7.49377179e-10, 5.04982270e-02, 8.41080502e-01, 1.08421271e-01],
[6.33214717e-02, 6.86063645e-01, 1.57489835e-01, 9.31250485e-02],
[1.42185280e-02, 1.06747920e-01, 8.38806192e-01, 4.02273604e-02],
[7.81118162e-01, 1.28774739e-32, 4.47694456e-24, 2.18881838e-01]])
sns.heatmap(data,annot=True,fmt='.2f',cmap='Reds',vmin=0,vmax=1,cbar=False,mask=(data<0.01))
</code></pre></div>
<ul dir="auto">
<li>seaborn 0.9.0</li>
<li>matplotlib 3.1.1</li>
</ul>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/207405/64956372-acefe480-d88a-11e9-8847-f20cebe3815d.png"><img src="https://user-images.githubusercontent.com/207405/64956372-acefe480-d88a-11e9-8847-f20cebe3815d.png" alt="Screenshot from 2019-09-16 14-02-35" style="max-width: 100%;"></a></p> | <p dir="auto"></p><div class="Box Box--condensed my-2">
<div class="Box-header f6">
<p class="mb-0 text-bold">
<a href="https://github.com/mwaskom/seaborn/blob/102cf08f9e40ef7037daf4b3b60b94ee144dc5cb/seaborn/distributions.py#L216">seaborn/seaborn/distributions.py</a>
</p>
<p class="mb-0 color-fg-muted">
Line 216
in
<a data-pjax="true" class="commit-tease-sha" href="/mwaskom/seaborn/commit/102cf08f9e40ef7037daf4b3b60b94ee144dc5cb">102cf08</a>
</p>
</div>
<div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data">
<table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip="">
<tbody><tr class="border-0">
<td id="L216" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="216"></td>
<td id="LC216" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">hist_kws</span>.<span class="pl-en">setdefault</span>(<span class="pl-s">"normed"</span>, <span class="pl-s1">norm_hist</span>) </td>
</tr>
</tbody></table>
</div>
</div>
<p></p>
<p dir="auto">'normed' kwarg is deprecated</p> | 0 |
<p dir="auto">I get the following error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia: repl.c:307: true_main: Assertion `(((jl_array_t*)(args))->length) == 0' failed.
signal (6): Aborted
__kernel_vsyscall at (unknown line)
gsignal at /lib/i386-linux-gnu/libc.so.6 (unknown line)
abort at /lib/i386-linux-gnu/libc.so.6 (unknown line)
unknown function (ip: -1234438457)
unknown function (ip: -1234438281)
unknown function (ip: 134517895)
julia_trampoline at /opt/julia/julia_stable/usr/bin/../lib/libjulia.so (unknown line)
unknown function (ip: 134516370)
__libc_start_main at /lib/i386-linux-gnu/libc.so.6 (unknown line)
unknown function (ip: 134516419)
Aborted (core dumped)"><pre class="notranslate"><code class="notranslate">julia: repl.c:307: true_main: Assertion `(((jl_array_t*)(args))->length) == 0' failed.
signal (6): Aborted
__kernel_vsyscall at (unknown line)
gsignal at /lib/i386-linux-gnu/libc.so.6 (unknown line)
abort at /lib/i386-linux-gnu/libc.so.6 (unknown line)
unknown function (ip: -1234438457)
unknown function (ip: -1234438281)
unknown function (ip: 134517895)
julia_trampoline at /opt/julia/julia_stable/usr/bin/../lib/libjulia.so (unknown line)
unknown function (ip: 134516370)
__libc_start_main at /lib/i386-linux-gnu/libc.so.6 (unknown line)
unknown function (ip: 134516419)
Aborted (core dumped)
</code></pre></div> | <p dir="auto">I found a large regression between 0.4 and 0.5 in some code of mine, which profiling localized to containment testing. This simplified test case shows a clear picture:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function specialized_in(x::Int, y::Vector{Int})
for k = 1:length(y)
if x == y[k]
return true
end
end
return false
end
function benchmark1(n)
x = rand(Int, 20)
s = 0
for k = 1:n
if rand(Int) in x
s += 1
end
end
return s
end
function benchmark2(n)
x = rand(Int, 20)
s = 0
for k = 1:n
if specialized_in(rand(Int), x)
s += 1
end
end
return s
end
@time benchmark1(1)
@time benchmark2(1)
@time benchmark1(100_000_000)
@time benchmark2(100_000_000)"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">specialized_in</span>(x<span class="pl-k">::</span><span class="pl-c1">Int</span>, y<span class="pl-k">::</span><span class="pl-c1">Vector{Int}</span>)
<span class="pl-k">for</span> k <span class="pl-k">=</span> <span class="pl-c1">1</span><span class="pl-k">:</span><span class="pl-c1">length</span>(y)
<span class="pl-k">if</span> x <span class="pl-k">==</span> y[k]
<span class="pl-k">return</span> <span class="pl-c1">true</span>
<span class="pl-k">end</span>
<span class="pl-k">end</span>
<span class="pl-k">return</span> <span class="pl-c1">false</span>
<span class="pl-k">end</span>
<span class="pl-k">function</span> <span class="pl-en">benchmark1</span>(n)
x <span class="pl-k">=</span> <span class="pl-c1">rand</span>(Int, <span class="pl-c1">20</span>)
s <span class="pl-k">=</span> <span class="pl-c1">0</span>
<span class="pl-k">for</span> k <span class="pl-k">=</span> <span class="pl-c1">1</span><span class="pl-k">:</span>n
<span class="pl-k">if</span> <span class="pl-c1">rand</span>(Int) <span class="pl-k">in</span> x
s <span class="pl-k">+=</span> <span class="pl-c1">1</span>
<span class="pl-k">end</span>
<span class="pl-k">end</span>
<span class="pl-k">return</span> s
<span class="pl-k">end</span>
<span class="pl-k">function</span> <span class="pl-en">benchmark2</span>(n)
x <span class="pl-k">=</span> <span class="pl-c1">rand</span>(Int, <span class="pl-c1">20</span>)
s <span class="pl-k">=</span> <span class="pl-c1">0</span>
<span class="pl-k">for</span> k <span class="pl-k">=</span> <span class="pl-c1">1</span><span class="pl-k">:</span>n
<span class="pl-k">if</span> <span class="pl-c1">specialized_in</span>(<span class="pl-c1">rand</span>(Int), x)
s <span class="pl-k">+=</span> <span class="pl-c1">1</span>
<span class="pl-k">end</span>
<span class="pl-k">end</span>
<span class="pl-k">return</span> s
<span class="pl-k">end</span>
<span class="pl-c1">@time</span> <span class="pl-c1">benchmark1</span>(<span class="pl-c1">1</span>)
<span class="pl-c1">@time</span> <span class="pl-c1">benchmark2</span>(<span class="pl-c1">1</span>)
<span class="pl-c1">@time</span> <span class="pl-c1">benchmark1</span>(<span class="pl-c1">100_000_000</span>)
<span class="pl-c1">@time</span> <span class="pl-c1">benchmark2</span>(<span class="pl-c1">100_000_000</span>)</pre></div>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" _ _ _(_)_ | A fresh approach to technical computing
(_) | (_) (_) | Documentation: http://docs.julialang.org
_ _ _| |_ __ _ | Type "?help" for help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 0.4.5 (2016-03-18 00:58 UTC)
_/ |\__'_|_|_|\__'_| |
|__/ | x86_64-linux-gnu
julia> include("/tmp/test.jl")
0.105317 seconds (70.71 k allocations: 3.181 MB, 5.77% gc time)
0.013302 seconds (4.11 k allocations: 209.523 KB)
2.547684 seconds (10 allocations: 560 bytes)
2.442474 seconds (10 allocations: 560 bytes)"><pre class="notranslate"> _ _ <span class="pl-c1">_</span>(_)_ <span class="pl-k">|</span> A fresh approach to technical computing
(_) <span class="pl-k">|</span> (_) (_) <span class="pl-k">|</span> Documentation<span class="pl-k">:</span> http<span class="pl-k">:</span><span class="pl-k">//</span>docs<span class="pl-k">.</span>julialang<span class="pl-k">.</span>org
_ _ _<span class="pl-k">|</span> <span class="pl-k">|</span>_ __ _ <span class="pl-k">|</span> Type <span class="pl-s"><span class="pl-pds">"</span>?help<span class="pl-pds">"</span></span> <span class="pl-k">for</span> help.
<span class="pl-k">|</span> <span class="pl-k">|</span> <span class="pl-k">|</span> <span class="pl-k">|</span> <span class="pl-k">|</span> <span class="pl-k">|</span> <span class="pl-k">|</span><span class="pl-k">/</span> <span class="pl-s"><span class="pl-pds"><span class="pl-c1">_</span>`</span> | |</span>
<span class="pl-s"> | | |_| | | | (_| | | Version 0.4.5 (2016-03-18 00:58 UTC)</span>
<span class="pl-s"> _/ |<span class="pl-cce">\_</span>_'_|_|_|<span class="pl-cce">\_</span>_'_| | </span>
<span class="pl-s">|__/ | x86_64-linux-gnu</span>
<span class="pl-s"></span>
<span class="pl-s">julia> include("/tmp/test.jl")</span>
<span class="pl-s"> 0.105317 seconds (70.71 k allocations: 3.181 MB, 5.77% gc time)</span>
<span class="pl-s"> 0.013302 seconds (4.11 k allocations: 209.523 KB)</span>
<span class="pl-s"> 2.547684 seconds (10 allocations: 560 bytes)</span>
<span class="pl-s"> 2.442474 seconds (10 allocations: 560 bytes)</span></pre></div>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" _
_ _ _(_)_ | A fresh approach to technical computing
(_) | (_) (_) | Documentation: http://docs.julialang.org
_ _ _| |_ __ _ | Type "?help" for help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 0.5.0-dev+4561 (2016-06-06 21:03 UTC)
_/ |\__'_|_|_|\__'_| | Commit 23ad581* (0 days old master)
|__/ | x86_64-linux-gnu
julia> include("/tmp/test.jl")
0.070273 seconds (53.54 k allocations: 2.304 MB)
0.010838 seconds (3.92 k allocations: 180.852 KB)
49.842859 seconds (7 allocations: 560 bytes)
2.507180 seconds (7 allocations: 560 bytes)"><pre class="notranslate"> _
_ _ <span class="pl-c1">_</span>(_)_ <span class="pl-k">|</span> A fresh approach to technical computing
(_) <span class="pl-k">|</span> (_) (_) <span class="pl-k">|</span> Documentation<span class="pl-k">:</span> http<span class="pl-k">:</span><span class="pl-k">//</span>docs<span class="pl-k">.</span>julialang<span class="pl-k">.</span>org
_ _ _<span class="pl-k">|</span> <span class="pl-k">|</span>_ __ _ <span class="pl-k">|</span> Type <span class="pl-s"><span class="pl-pds">"</span>?help<span class="pl-pds">"</span></span> <span class="pl-k">for</span> help.
<span class="pl-k">|</span> <span class="pl-k">|</span> <span class="pl-k">|</span> <span class="pl-k">|</span> <span class="pl-k">|</span> <span class="pl-k">|</span> <span class="pl-k">|</span><span class="pl-k">/</span> <span class="pl-s"><span class="pl-pds"><span class="pl-c1">_</span>`</span> | |</span>
<span class="pl-s"> | | |_| | | | (_| | | Version 0.5.0-dev+4561 (2016-06-06 21:03 UTC)</span>
<span class="pl-s"> _/ |<span class="pl-cce">\_</span>_'_|_|_|<span class="pl-cce">\_</span>_'_| | Commit 23ad581* (0 days old master)</span>
<span class="pl-s">|__/ | x86_64-linux-gnu</span>
<span class="pl-s"></span>
<span class="pl-s">julia> include("/tmp/test.jl")</span>
<span class="pl-s"> 0.070273 seconds (53.54 k allocations: 2.304 MB)</span>
<span class="pl-s"> 0.010838 seconds (3.92 k allocations: 180.852 KB)</span>
<span class="pl-s"> 49.842859 seconds (7 allocations: 560 bytes)</span>
<span class="pl-s"> 2.507180 seconds (7 allocations: 560 bytes)</span></pre></div> | 0 |
<p dir="auto">interpolate.interp1d returns nan in the following example for me (scipy version is 0.14.0):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [7]: f = interpolate.interp1d([0, 0, 1], [0, 0, 1], kind='linear')
In [8]: f(0)
/home/jmetzen/.anaconda/lib/python2.7/site-packages/scipy/interpolate/interpolate.py:445: RuntimeWarning: invalid value encountered in true_divide
slope = (y_hi - y_lo) / (x_hi - x_lo)[:, None]
Out[8]: array(nan)"><pre class="notranslate"><code class="notranslate">In [7]: f = interpolate.interp1d([0, 0, 1], [0, 0, 1], kind='linear')
In [8]: f(0)
/home/jmetzen/.anaconda/lib/python2.7/site-packages/scipy/interpolate/interpolate.py:445: RuntimeWarning: invalid value encountered in true_divide
slope = (y_hi - y_lo) / (x_hi - x_lo)[:, None]
Out[8]: array(nan)
</code></pre></div>
<p dir="auto">Everything works fine in the case without duplicates:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [13]: f = interpolate.interp1d([0, 1], [0, 1], kind='linear')
In [14]: f(0)
Out[14]: array(0.0)"><pre class="notranslate"><code class="notranslate">In [13]: f = interpolate.interp1d([0, 1], [0, 1], kind='linear')
In [14]: f(0)
Out[14]: array(0.0)
</code></pre></div>
<p dir="auto">Duplicating any other entry besides the minimal one seems to be ok. I guess this is a bug?</p> | <p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/scipy/ticket/1552" rel="nofollow">http://projects.scipy.org/scipy/ticket/1552</a> on 2011-11-03 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pbrod/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pbrod">@pbrod</a>, assigned to unknown.</em></p>
<p dir="auto">The following example</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import numpy as np
from scipy import stats
np.set_printoptions(precision=4)
print 'true'
print 0.25, 0., 20.0
print 'estimated, floc=0, loc=0'
for i in range(10):
x = stats.lognorm.rvs(0.25, 0., 20.0, size=2000)
print np.array(stats.lognorm.fit(x, floc=0, fscale=20)), \
np.array(stats.lognorm.fit(x, loc=0))"><pre class="notranslate"><code class="notranslate">import numpy as np
from scipy import stats
np.set_printoptions(precision=4)
print 'true'
print 0.25, 0., 20.0
print 'estimated, floc=0, loc=0'
for i in range(10):
x = stats.lognorm.rvs(0.25, 0., 20.0, size=2000)
print np.array(stats.lognorm.fit(x, floc=0, fscale=20)), \
np.array(stats.lognorm.fit(x, loc=0))
</code></pre></div>
<p dir="auto">gives the following error</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last):
File "<ipython console>", line 3, in <module>
File "C:\Python26\lib\site-packages\scipy\stats\distributions.py", line 1710, in fit
x0, func, restore, args = self._reduce_func(args, kwds)
File "C:\Python26\lib\site-packages\scipy\stats\distributions.py", line 1627, in _reduce_func
del x0[n]
IndexError: list assignment index out of range"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last):
File "<ipython console>", line 3, in <module>
File "C:\Python26\lib\site-packages\scipy\stats\distributions.py", line 1710, in fit
x0, func, restore, args = self._reduce_func(args, kwds)
File "C:\Python26\lib\site-packages\scipy\stats\distributions.py", line 1627, in _reduce_func
del x0[n]
IndexError: list assignment index out of range
</code></pre></div>
<p dir="auto">This error is easily fixed by replacing:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="def _reduce_func(self, args, kwds):
args = list(args)
Nargs = len(args)
fixedn = []
index = range(Nargs)
names = ['f%d' % n for n in range(Nargs - 2)] + ['floc', 'fscale']
x0 = args[:]
for n, key in zip(index, names):
if kwds.has_key(key):
fixedn.append(n)
args[n] = kwds[key]
del x0[n]"><pre class="notranslate"><code class="notranslate">def _reduce_func(self, args, kwds):
args = list(args)
Nargs = len(args)
fixedn = []
index = range(Nargs)
names = ['f%d' % n for n in range(Nargs - 2)] + ['floc', 'fscale']
x0 = args[:]
for n, key in zip(index, names):
if kwds.has_key(key):
fixedn.append(n)
args[n] = kwds[key]
del x0[n]
</code></pre></div>
<p dir="auto">with this code:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="def _reduce_func(self, args, kwds):
args = list(args)
Nargs = len(args)
fixedn = []
index = range(Nargs)
names = ['f%d' % n for n in range(Nargs - 2)] + ['floc', 'fscale']
x0 = args[:]
for n, key in zip(index[::-1], names[::-1]):
if kwds.has_key(key):
fixedn.append(n)
args[n] = kwds[key]
del x0[n]"><pre class="notranslate"><code class="notranslate">def _reduce_func(self, args, kwds):
args = list(args)
Nargs = len(args)
fixedn = []
index = range(Nargs)
names = ['f%d' % n for n in range(Nargs - 2)] + ['floc', 'fscale']
x0 = args[:]
for n, key in zip(index[::-1], names[::-1]):
if kwds.has_key(key):
fixedn.append(n)
args[n] = kwds[key]
del x0[n]
</code></pre></div> | 0 |
<p dir="auto">I am try to use RMSPropOptimizer to optimize parameters and I get NotImplementedError. <strong>But when I try AdamOptimizer, it works fine</strong>.</p>
<p dir="auto"><strong>BTW, when I try to find the problem, it seems I find the key point:</strong><br>
Here is part of my code:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="self.x = tf.placeholder(tf.int32, [None, sequence_length])
point = tf.get_variable( [vocabulary_size])
........
........
outputs, states = rnn.rnn(lstm_cell, x_vec, initial_state=initial_state, sequence_length = self.real_length)
index = self.x[:, 0]
index = tf.reshape(index, [-1,1])
index_point = tf.gather(point, index)
output = tf.mul(outputs[-1] , index_point)"><pre class="notranslate"><code class="notranslate">self.x = tf.placeholder(tf.int32, [None, sequence_length])
point = tf.get_variable( [vocabulary_size])
........
........
outputs, states = rnn.rnn(lstm_cell, x_vec, initial_state=initial_state, sequence_length = self.real_length)
index = self.x[:, 0]
index = tf.reshape(index, [-1,1])
index_point = tf.gather(point, index)
output = tf.mul(outputs[-1] , index_point)
</code></pre></div>
<p dir="auto">The key point is last line <code class="notranslate">output = tf.mul(outputs[-1] , index_point)</code>, when I change <code class="notranslate">index_point</code> to some others such as number <code class="notranslate">1</code>, <strong>the error disappear</strong>.<br>
And, when I try to use <code class="notranslate">bidirectional_rnn</code>, <strong>the error also can disappear</strong>.</p> | <p dir="auto">I use RMSPropOptimizer to optimize parameters, I get NotImplementedError. <strong>But when I change to use AdamOptimizer, it works fine.</strong></p>
<p dir="auto">So I try to fix the problem and I find some key point, may be it can help.<br>
Here is my code:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="self.x = tf.placeholder(tf.int32, [None, sequence_length])
point = tf.get_variable([len(embedding_matrix)])
............
............
outputs, states = rnn.rnn(lstm_cell, x, initial_state=initial_state, sequence_length=real_length)
index = self.x[:, 0]
index = tf.reshape(index, [-1,1])
index_point = tf.gather(pointt, index)
output = tf.mul(outputs[-1] , index_point)
scores = tf.nn.xw_plus_b(output, self.W, b)
losses = tf.nn.softmax_cross_entropy_with_logits(scores, self.input_y)
self.loss = tf.reduce_mean(losses)
optimizer = tf.train.RMSPropOptimizer(1e-3, decay = 0.9)
grads_and_vars = optimizer.compute_gradients(self.loss)
self.train_op = optimizer.apply_gradients(grads_and_vars)"><pre class="notranslate"><code class="notranslate">self.x = tf.placeholder(tf.int32, [None, sequence_length])
point = tf.get_variable([len(embedding_matrix)])
............
............
outputs, states = rnn.rnn(lstm_cell, x, initial_state=initial_state, sequence_length=real_length)
index = self.x[:, 0]
index = tf.reshape(index, [-1,1])
index_point = tf.gather(pointt, index)
output = tf.mul(outputs[-1] , index_point)
scores = tf.nn.xw_plus_b(output, self.W, b)
losses = tf.nn.softmax_cross_entropy_with_logits(scores, self.input_y)
self.loss = tf.reduce_mean(losses)
optimizer = tf.train.RMSPropOptimizer(1e-3, decay = 0.9)
grads_and_vars = optimizer.compute_gradients(self.loss)
self.train_op = optimizer.apply_gradients(grads_and_vars)
</code></pre></div>
<p dir="auto">When I try to change the line <code class="notranslate">output = tf.mul(outputs[-1] , index_point)</code> to some others such as <code class="notranslate">output = tf.mul(outputs[-1] , 2)</code>, <strong>the error disappear</strong>. And I try to change to use <code class="notranslate">bidirectional_rnn</code>, <strong>the error also disappear.</strong></p> | 1 |
<h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">ansible-galaxy</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" $ ansible-galaxy --version
ansible-galaxy 2.3.0.0
config file = /Users/<snip>/fathom/git/mdm-prime-1.5.9/ansible.cfg
configured module search path = [u'library']
python version = 2.7.8 (default, Oct 3 2016, 16:28:19) [GCC 4.2.1 Compatible Apple LLVM 7.3.0 (clang-703.0.31)]"><pre class="notranslate"><code class="notranslate"> $ ansible-galaxy --version
ansible-galaxy 2.3.0.0
config file = /Users/<snip>/fathom/git/mdm-prime-1.5.9/ansible.cfg
configured module search path = [u'library']
python version = 2.7.8 (default, Oct 3 2016, 16:28:19) [GCC 4.2.1 Compatible Apple LLVM 7.3.0 (clang-703.0.31)]
</code></pre></div>
<p dir="auto">With ansible-galaxy 2.3 I ran:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible-galaxy install -r requirements.yml -p ./roles-g23 -f"><pre class="notranslate"><code class="notranslate">ansible-galaxy install -r requirements.yml -p ./roles-g23 -f
</code></pre></div>
<p dir="auto">And ansible-galaxy 2.2 I ran:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible-galaxy install -r requirements.yml -p ./roles-g22 -f"><pre class="notranslate"><code class="notranslate">ansible-galaxy install -r requirements.yml -p ./roles-g22 -f
</code></pre></div>
<p dir="auto">And then compared the output with:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="diff -r roles-g22 roles-g23"><pre class="notranslate"><code class="notranslate">diff -r roles-g22 roles-g23
</code></pre></div>
<p dir="auto">And it appears that every file that ansible-galaxy downloaded that has the role name as part of the filename gets that removed from the filename:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ diff -r roles-g22 roles-g23
Only in roles-g23/ada/files: _plr_gw_cons_group_metric.sql
Only in roles-g22/ada/files: ada_plr_gw_cons_group_metric.sql
diff -r roles-g22/ada/meta/.galaxy_install_info roles-g23/ada/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:41 2017', version: v1.4.1}
---
> {install_date: 'Sat Apr 15 00:32:46 2017', version: v1.4.1}
Only in roles-g23/ada/tasks: install__debs.yml
Only in roles-g22/ada/tasks: install_ada_debs.yml
Only in roles-g23/ada/templates: .application.ini.j2
Only in roles-g23/ada/templates: _db.properties.j2
Only in roles-g22/ada/templates: ada.application.ini.j2
Only in roles-g22/ada/templates: ada_db.properties.j2
Only in roles-g23/apache2/library: _conf.py
Only in roles-g23/apache2/library: _site.py
Only in roles-g22/apache2/library: apache2_conf.py
Only in roles-g22/apache2/library: apache2_site.py
diff -r roles-g22/apache2/meta/.galaxy_install_info roles-g23/apache2/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:50 2017', version: v0.1.3}
---
> {install_date: 'Sat Apr 15 00:32:55 2017', version: v0.1.3}
diff -r roles-g22/artifactory-client/meta/.galaxy_install_info roles-g23/artifactory-client/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:31:01 2017', version: v0.3.0}
---
> {install_date: 'Sat Apr 15 00:33:05 2017', version: v0.3.0}
diff -r roles-g22/cassandra/meta/.galaxy_install_info roles-g23/cassandra/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:33 2017', version: v0.1.4}
---
> {install_date: 'Sat Apr 15 00:32:38 2017', version: v0.1.4}
Only in roles-g23/cassandra/tasks: .yml
Only in roles-g22/cassandra/tasks: cassandra.yml
Only in roles-g23/cassandra/templates: -2.1.yaml.j2
Only in roles-g23/cassandra/templates: -2.2.yaml.j2
Only in roles-g23/cassandra/templates: -env-2.1.sh.j2
Only in roles-g23/cassandra/templates: -env-2.2.sh.j2
Only in roles-g22/cassandra/templates: cassandra-2.1.yaml.j2
Only in roles-g22/cassandra/templates: cassandra-2.2.yaml.j2
Only in roles-g22/cassandra/templates: cassandra-env-2.1.sh.j2
Only in roles-g22/cassandra/templates: cassandra-env-2.2.sh.j2
diff -r roles-g22/cis/meta/.galaxy_install_info roles-g23/cis/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:46 2017', version: v0.6.1}
---
> {install_date: 'Sat Apr 15 00:32:51 2017', version: v0.6.1}
diff -r roles-g22/cluster/meta/.galaxy_install_info roles-g23/cluster/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:38 2017', version: v0.3.1}
---
> {install_date: 'Sat Apr 15 00:32:43 2017', version: v0.3.1}
diff -r roles-g22/common-apt-tools/meta/.galaxy_install_info roles-g23/common-apt-tools/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:20 2017', version: v0.1.0}
---
> {install_date: 'Sat Apr 15 00:32:25 2017', version: v0.1.0}
diff -r roles-g22/disk/meta/.galaxy_install_info roles-g23/disk/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:31:05 2017', version: v0.1.1}
---
> {install_date: 'Sat Apr 15 00:33:09 2017', version: v0.1.1}
Only in roles-g23/disk/tasks: -old.yml
Only in roles-g23/disk/tasks: .yml
Only in roles-g22/disk/tasks: disk-old.yml
Only in roles-g22/disk/tasks: disk.yml
diff -r roles-g22/file_slurper/meta/.galaxy_install_info roles-g23/file_slurper/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:36 2017', version: v0.7.2}
---
> {install_date: 'Sat Apr 15 00:32:41 2017', version: v0.7.2}
diff -r roles-g22/ldap_client/meta/.galaxy_install_info roles-g23/ldap_client/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:31:04 2017', version: v1.1.2}
---
> {install_date: 'Sat Apr 15 00:33:07 2017', version: v1.1.2}
Only in roles-g23/mdm/files: -env
Only in roles-g22/mdm/files: mdm-env
diff -r roles-g22/mdm/meta/.galaxy_install_info roles-g23/mdm/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:48 2017', version: v0.7.5}
---
> {install_date: 'Sat Apr 15 00:32:53 2017', version: v0.7.5}
diff -r roles-g22/mdm-service-user/meta/.galaxy_install_info roles-g23/mdm-service-user/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:22 2017', version: v0.15.0}
---
> {install_date: 'Sat Apr 15 00:32:28 2017', version: v0.15.0}
diff -r roles-g22/mds/meta/.galaxy_install_info roles-g23/mds/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:43 2017', version: v0.7.1}
---
> {install_date: 'Sat Apr 15 00:32:48 2017', version: v0.7.1}
diff -r roles-g22/oracle-jdk/meta/.galaxy_install_info roles-g23/oracle-jdk/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:29 2017', version: v0.2.1}
---
> {install_date: 'Sat Apr 15 00:32:34 2017', version: v0.2.1}
diff -r roles-g22/postgresql/meta/.galaxy_install_info roles-g23/postgresql/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:31 2017', version: v0.7.0}
---
> {install_date: 'Sat Apr 15 00:32:36 2017', version: v0.7.0}
Only in roles-g23/postgresql/templates: .conf-9.3.j2
Only in roles-g23/postgresql/templates: .conf-9.3.orig
Only in roles-g23/postgresql/templates: .conf-9.4.j2
Only in roles-g23/postgresql/templates: .conf-9.4.orig
Only in roles-g23/postgresql/templates: etc_apt_preferences.d_apt__org_pub_repos_apt.pref.j2
Only in roles-g22/postgresql/templates: etc_apt_preferences.d_apt_postgresql_org_pub_repos_apt.pref.j2
Only in roles-g23/postgresql/templates: etc_monit_conf.d_.j2
Only in roles-g22/postgresql/templates: etc_monit_conf.d_postgresql.j2
Only in roles-g22/postgresql/templates: postgresql.conf-9.3.j2
Only in roles-g22/postgresql/templates: postgresql.conf-9.3.orig
Only in roles-g22/postgresql/templates: postgresql.conf-9.4.j2
Only in roles-g22/postgresql/templates: postgresql.conf-9.4.orig
diff -r roles-g22/set-timezone/meta/.galaxy_install_info roles-g23/set-timezone/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:26 2017', version: v0.2.0}
---
> {install_date: 'Sat Apr 15 00:32:31 2017', version: v0.2.0}
diff -r roles-g22/sftp-user/meta/.galaxy_install_info roles-g23/sftp-user/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:59 2017', version: v0.8.0}
---
> {install_date: 'Sat Apr 15 00:33:03 2017', version: v0.8.0}
Only in roles-g23/sftp-user/test/integration/default/inspec: README.md
Only in roles-g23/sftp-user/test/integration/default/inspec: controls
Only in roles-g23/sftp-user/test/integration/default/inspec: inspec.yml
Only in roles-g23/sftp-user/test/integration/default/inspec: libraries
Only in roles-g22/sftp-user/test/integration/default/inspec: sftp-user
diff -r roles-g22/swap/meta/.galaxy_install_info roles-g23/swap/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:24 2017', version: v1.1.0}
---
> {install_date: 'Sat Apr 15 00:32:29 2017', version: v1.1.0}
diff -r roles-g22/u2you/meta/.galaxy_install_info roles-g23/u2you/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:54 2017', version: v0.8.7}
---
> {install_date: 'Sat Apr 15 00:32:58 2017', version: v0.8.7}
Only in roles-g23/u2you/tasks: deploy__artifact.yml
Only in roles-g22/u2you/tasks: deploy_u2you_artifact.yml
Only in roles-g23/u2you/test/integration/files: star..gwfathom.com.cert.pem
Only in roles-g23/u2you/test/integration/files: star..gwfathom.com.csr.pem
Only in roles-g23/u2you/test/integration/files: star..gwfathom.com.key.pem
Only in roles-g22/u2you/test/integration/files: star.u2you.gwfathom.com.cert.pem
Only in roles-g22/u2you/test/integration/files: star.u2you.gwfathom.com.csr.pem
Only in roles-g22/u2you/test/integration/files: star.u2you.gwfathom.com.key.pem
diff -r roles-g22/u2you-backend/meta/.galaxy_install_info roles-g23/u2you-backend/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:56 2017', version: v0.1.3}
---
> {install_date: 'Sat Apr 15 00:33:00 2017', version: v0.1.3}
diff -r roles-g22/zabbix-agent/meta/.galaxy_install_info roles-g23/zabbix-agent/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:31:08 2017', version: v0.1.3}
---
> {install_date: 'Sat Apr 15 00:33:11 2017', version: v0.1.3}"><pre class="notranslate"><code class="notranslate">$ diff -r roles-g22 roles-g23
Only in roles-g23/ada/files: _plr_gw_cons_group_metric.sql
Only in roles-g22/ada/files: ada_plr_gw_cons_group_metric.sql
diff -r roles-g22/ada/meta/.galaxy_install_info roles-g23/ada/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:41 2017', version: v1.4.1}
---
> {install_date: 'Sat Apr 15 00:32:46 2017', version: v1.4.1}
Only in roles-g23/ada/tasks: install__debs.yml
Only in roles-g22/ada/tasks: install_ada_debs.yml
Only in roles-g23/ada/templates: .application.ini.j2
Only in roles-g23/ada/templates: _db.properties.j2
Only in roles-g22/ada/templates: ada.application.ini.j2
Only in roles-g22/ada/templates: ada_db.properties.j2
Only in roles-g23/apache2/library: _conf.py
Only in roles-g23/apache2/library: _site.py
Only in roles-g22/apache2/library: apache2_conf.py
Only in roles-g22/apache2/library: apache2_site.py
diff -r roles-g22/apache2/meta/.galaxy_install_info roles-g23/apache2/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:50 2017', version: v0.1.3}
---
> {install_date: 'Sat Apr 15 00:32:55 2017', version: v0.1.3}
diff -r roles-g22/artifactory-client/meta/.galaxy_install_info roles-g23/artifactory-client/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:31:01 2017', version: v0.3.0}
---
> {install_date: 'Sat Apr 15 00:33:05 2017', version: v0.3.0}
diff -r roles-g22/cassandra/meta/.galaxy_install_info roles-g23/cassandra/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:33 2017', version: v0.1.4}
---
> {install_date: 'Sat Apr 15 00:32:38 2017', version: v0.1.4}
Only in roles-g23/cassandra/tasks: .yml
Only in roles-g22/cassandra/tasks: cassandra.yml
Only in roles-g23/cassandra/templates: -2.1.yaml.j2
Only in roles-g23/cassandra/templates: -2.2.yaml.j2
Only in roles-g23/cassandra/templates: -env-2.1.sh.j2
Only in roles-g23/cassandra/templates: -env-2.2.sh.j2
Only in roles-g22/cassandra/templates: cassandra-2.1.yaml.j2
Only in roles-g22/cassandra/templates: cassandra-2.2.yaml.j2
Only in roles-g22/cassandra/templates: cassandra-env-2.1.sh.j2
Only in roles-g22/cassandra/templates: cassandra-env-2.2.sh.j2
diff -r roles-g22/cis/meta/.galaxy_install_info roles-g23/cis/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:46 2017', version: v0.6.1}
---
> {install_date: 'Sat Apr 15 00:32:51 2017', version: v0.6.1}
diff -r roles-g22/cluster/meta/.galaxy_install_info roles-g23/cluster/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:38 2017', version: v0.3.1}
---
> {install_date: 'Sat Apr 15 00:32:43 2017', version: v0.3.1}
diff -r roles-g22/common-apt-tools/meta/.galaxy_install_info roles-g23/common-apt-tools/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:20 2017', version: v0.1.0}
---
> {install_date: 'Sat Apr 15 00:32:25 2017', version: v0.1.0}
diff -r roles-g22/disk/meta/.galaxy_install_info roles-g23/disk/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:31:05 2017', version: v0.1.1}
---
> {install_date: 'Sat Apr 15 00:33:09 2017', version: v0.1.1}
Only in roles-g23/disk/tasks: -old.yml
Only in roles-g23/disk/tasks: .yml
Only in roles-g22/disk/tasks: disk-old.yml
Only in roles-g22/disk/tasks: disk.yml
diff -r roles-g22/file_slurper/meta/.galaxy_install_info roles-g23/file_slurper/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:36 2017', version: v0.7.2}
---
> {install_date: 'Sat Apr 15 00:32:41 2017', version: v0.7.2}
diff -r roles-g22/ldap_client/meta/.galaxy_install_info roles-g23/ldap_client/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:31:04 2017', version: v1.1.2}
---
> {install_date: 'Sat Apr 15 00:33:07 2017', version: v1.1.2}
Only in roles-g23/mdm/files: -env
Only in roles-g22/mdm/files: mdm-env
diff -r roles-g22/mdm/meta/.galaxy_install_info roles-g23/mdm/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:48 2017', version: v0.7.5}
---
> {install_date: 'Sat Apr 15 00:32:53 2017', version: v0.7.5}
diff -r roles-g22/mdm-service-user/meta/.galaxy_install_info roles-g23/mdm-service-user/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:22 2017', version: v0.15.0}
---
> {install_date: 'Sat Apr 15 00:32:28 2017', version: v0.15.0}
diff -r roles-g22/mds/meta/.galaxy_install_info roles-g23/mds/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:43 2017', version: v0.7.1}
---
> {install_date: 'Sat Apr 15 00:32:48 2017', version: v0.7.1}
diff -r roles-g22/oracle-jdk/meta/.galaxy_install_info roles-g23/oracle-jdk/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:29 2017', version: v0.2.1}
---
> {install_date: 'Sat Apr 15 00:32:34 2017', version: v0.2.1}
diff -r roles-g22/postgresql/meta/.galaxy_install_info roles-g23/postgresql/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:31 2017', version: v0.7.0}
---
> {install_date: 'Sat Apr 15 00:32:36 2017', version: v0.7.0}
Only in roles-g23/postgresql/templates: .conf-9.3.j2
Only in roles-g23/postgresql/templates: .conf-9.3.orig
Only in roles-g23/postgresql/templates: .conf-9.4.j2
Only in roles-g23/postgresql/templates: .conf-9.4.orig
Only in roles-g23/postgresql/templates: etc_apt_preferences.d_apt__org_pub_repos_apt.pref.j2
Only in roles-g22/postgresql/templates: etc_apt_preferences.d_apt_postgresql_org_pub_repos_apt.pref.j2
Only in roles-g23/postgresql/templates: etc_monit_conf.d_.j2
Only in roles-g22/postgresql/templates: etc_monit_conf.d_postgresql.j2
Only in roles-g22/postgresql/templates: postgresql.conf-9.3.j2
Only in roles-g22/postgresql/templates: postgresql.conf-9.3.orig
Only in roles-g22/postgresql/templates: postgresql.conf-9.4.j2
Only in roles-g22/postgresql/templates: postgresql.conf-9.4.orig
diff -r roles-g22/set-timezone/meta/.galaxy_install_info roles-g23/set-timezone/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:26 2017', version: v0.2.0}
---
> {install_date: 'Sat Apr 15 00:32:31 2017', version: v0.2.0}
diff -r roles-g22/sftp-user/meta/.galaxy_install_info roles-g23/sftp-user/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:59 2017', version: v0.8.0}
---
> {install_date: 'Sat Apr 15 00:33:03 2017', version: v0.8.0}
Only in roles-g23/sftp-user/test/integration/default/inspec: README.md
Only in roles-g23/sftp-user/test/integration/default/inspec: controls
Only in roles-g23/sftp-user/test/integration/default/inspec: inspec.yml
Only in roles-g23/sftp-user/test/integration/default/inspec: libraries
Only in roles-g22/sftp-user/test/integration/default/inspec: sftp-user
diff -r roles-g22/swap/meta/.galaxy_install_info roles-g23/swap/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:24 2017', version: v1.1.0}
---
> {install_date: 'Sat Apr 15 00:32:29 2017', version: v1.1.0}
diff -r roles-g22/u2you/meta/.galaxy_install_info roles-g23/u2you/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:54 2017', version: v0.8.7}
---
> {install_date: 'Sat Apr 15 00:32:58 2017', version: v0.8.7}
Only in roles-g23/u2you/tasks: deploy__artifact.yml
Only in roles-g22/u2you/tasks: deploy_u2you_artifact.yml
Only in roles-g23/u2you/test/integration/files: star..gwfathom.com.cert.pem
Only in roles-g23/u2you/test/integration/files: star..gwfathom.com.csr.pem
Only in roles-g23/u2you/test/integration/files: star..gwfathom.com.key.pem
Only in roles-g22/u2you/test/integration/files: star.u2you.gwfathom.com.cert.pem
Only in roles-g22/u2you/test/integration/files: star.u2you.gwfathom.com.csr.pem
Only in roles-g22/u2you/test/integration/files: star.u2you.gwfathom.com.key.pem
diff -r roles-g22/u2you-backend/meta/.galaxy_install_info roles-g23/u2you-backend/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:30:56 2017', version: v0.1.3}
---
> {install_date: 'Sat Apr 15 00:33:00 2017', version: v0.1.3}
diff -r roles-g22/zabbix-agent/meta/.galaxy_install_info roles-g23/zabbix-agent/meta/.galaxy_install_info
1c1
< {install_date: 'Sat Apr 15 00:31:08 2017', version: v0.1.3}
---
> {install_date: 'Sat Apr 15 00:33:11 2017', version: v0.1.3}
</code></pre></div>
<p dir="auto">I haven't had time yet to debug why, but just wanted to report this. If I have time over the weekend I will try to narrow down what change caused this.</p> | <h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
<li>Feature Idea</li>
<li>Documentation Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<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 (devel 8b6d786cff) last updated 2017/03/13 09:15:01 (GMT -400)
config file = /home/adrian/.ansible.cfg
configured module search path = Default w/o overrides
python version = 2.7.13 (default, Jan 12 2017, 17:59:37) [GCC 6.3.1 20161221 (Red Hat 6.3.1-1)]
"><pre class="notranslate"><code class="notranslate">ansible 2.3.0 (devel 8b6d786cff) last updated 2017/03/13 09:15:01 (GMT -400)
config file = /home/adrian/.ansible.cfg
configured module search path = Default w/o overrides
python version = 2.7.13 (default, Jan 12 2017, 17:59:37) [GCC 6.3.1 20161221 (Red Hat 6.3.1-1)]
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[defaults]
# though role path is always specified with -p for these case
roles_path = $HOME/ansible/galaxy-roles:$HOME/ansible/roles:/etc/ansible/roles"><pre class="notranslate"><code class="notranslate">[defaults]
# though role path is always specified with -p for these case
roles_path = $HOME/ansible/galaxy-roles:$HOME/ansible/roles:/etc/ansible/roles
</code></pre></div>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">Looking at <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="213754570" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible/issues/22562" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible/issues/22562/hovercard" href="https://github.com/ansible/ansible/issues/22562">#22562</a> and trying to reproduce it<br>
(ala <a href="https://github.com/alikins/ansible-bug-repro/tree/master/role_sudo_22562">https://github.com/alikins/ansible-bug-repro/tree/master/role_sudo_22562</a>)<br>
I noticed the weird behavior when ansible-galaxy tries to install <a href="https://github.com/jlund/ansible-go">https://github.com/jlund/ansible-go</a> from a requirements.yml</p>
<p dir="auto">It seems like the git repo being named 'ansible-go' is confusing it. The role that gets installed<br>
ends up being installed with the name 'go'.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[fedora-25:github_roles (master %)]$ ansible-galaxy -vvv install -r requirements.yml -p roles_external/
Using /home/adrian/.ansible.cfg as config file
Opened /home/adrian/.ansible_galaxy
found role {'scm': 'git', 'src': 'https://github.com/jlund/ansible-go', 'version': 'cfeba7c4db16aac3fa3db775d01ea911b21f828d', 'name': 'go'} in yaml file
Installing role go
- extracting go to roles_external/go
- go (cfeba7c4db16aac3fa3db775d01ea911b21f828d) was installed successfully"><pre class="notranslate"><code class="notranslate">[fedora-25:github_roles (master %)]$ ansible-galaxy -vvv install -r requirements.yml -p roles_external/
Using /home/adrian/.ansible.cfg as config file
Opened /home/adrian/.ansible_galaxy
found role {'scm': 'git', 'src': 'https://github.com/jlund/ansible-go', 'version': 'cfeba7c4db16aac3fa3db775d01ea911b21f828d', 'name': 'go'} in yaml file
Installing role go
- extracting go to roles_external/go
- go (cfeba7c4db16aac3fa3db775d01ea911b21f828d) was installed successfully
</code></pre></div>
<p dir="auto">Compared to installing via a scm url without the requirements.yml</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[fedora-25:github_roles (master %)]$ ansible-galaxy -vvvvv install git+ssh://[email protected]/jlund/ansible-go -p roles_external/
Using /home/adrian/.ansible.cfg as config file
Opened /home/adrian/.ansible_galaxy
Installing role ansible-go
- extracting ansible-go to roles_external/ansible-go
- ansible-go was installed successfully
[fedora-25:github_roles (master %)]$ ls roles_external/
ansible-go"><pre class="notranslate"><code class="notranslate">[fedora-25:github_roles (master %)]$ ansible-galaxy -vvvvv install git+ssh://[email protected]/jlund/ansible-go -p roles_external/
Using /home/adrian/.ansible.cfg as config file
Opened /home/adrian/.ansible_galaxy
Installing role ansible-go
- extracting ansible-go to roles_external/ansible-go
- ansible-go was installed successfully
[fedora-25:github_roles (master %)]$ ls roles_external/
ansible-go
</code></pre></div>
<p dir="auto">But the odder part is that the file names in the 'files/' section get changed.</p>
<p dir="auto">as in the upstream git repo:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[fedora-25:github_roles (master %)]$ ls upstream_git/ansible-go/files/
go-bin.sh go-path.sh"><pre class="notranslate"><code class="notranslate">[fedora-25:github_roles (master %)]$ ls upstream_git/ansible-go/files/
go-bin.sh go-path.sh
</code></pre></div>
<p dir="auto">as installed via requirements.yml:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[fedora-25:github_roles (master %)]$ ls roles_via_requirements/go/files/
-bin.sh -path.sh"><pre class="notranslate"><code class="notranslate">[fedora-25:github_roles (master %)]$ ls roles_via_requirements/go/files/
-bin.sh -path.sh
</code></pre></div>
<p dir="auto">Presumably something is attempting to strip 'ansible' off the repo url for the role name. And maybe something is stripping the role name off of files/* for some reason??</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[fedora-25:github_roles (master %)]$ mkdir upstream_git
[fedora-25:github_roles (master %)]$ cd upstream_git/
[fedora-25:upstream_git (master %)]$ git clone https://github.com/jlund/ansible-go
Cloning into 'ansible-go'...
remote: Counting objects: 166, done.
remote: Total 166 (delta 0), reused 0 (delta 0), pack-reused 166
Receiving objects: 100% (166/166), 21.25 KiB | 0 bytes/s, done.
Resolving deltas: 100% (50/50), done.
Checking connectivity... done.
[fedora-25:upstream_git (master %)]$ ls ansible-go/files/
go-bin.sh go-path.sh
[fedora-25:upstream_git (master %)]$ cd ..
[fedora-25:github_roles (master %)]$ ls
ansible-go requirements2.yml requirements_example.yml requirements.yml roles_external upstream_git
[fedora-25:github_roles (master %)]$ rm -rf ansible-go/
[fedora-25:github_roles (master %)]$ cat requirements.yml
---
- name: go
src: https://github.com/jlund/ansible-go
version: cfeba7c4db16aac3fa3db775d01ea911b21f828d
[fedora-25:github_roles (master %)]$ rm -rf roles_external/*
[fedora-25:github_roles (master %)]$ ansible-galaxy -vvvvv install -r requirements.yml -p roles_external/
Using /home/adrian/.ansible.cfg as config file
Opened /home/adrian/.ansible_galaxy
found role {'scm': 'git', 'src': 'https://github.com/jlund/ansible-go', 'version': 'cfeba7c4db16aac3fa3db775d01ea911b21f828d', 'name': 'go'} in yaml file
Installing role go
- extracting go to roles_external/go
- go (cfeba7c4db16aac3fa3db775d01ea911b21f828d) was installed successfully
[fedora-25:github_roles (master %)]$ ls roles_external/go/
defaults files meta README.md tasks vars
[fedora-25:github_roles (master %)]$ ls roles_external/go/files/
-bin.sh -path.sh"><pre class="notranslate"><code class="notranslate">[fedora-25:github_roles (master %)]$ mkdir upstream_git
[fedora-25:github_roles (master %)]$ cd upstream_git/
[fedora-25:upstream_git (master %)]$ git clone https://github.com/jlund/ansible-go
Cloning into 'ansible-go'...
remote: Counting objects: 166, done.
remote: Total 166 (delta 0), reused 0 (delta 0), pack-reused 166
Receiving objects: 100% (166/166), 21.25 KiB | 0 bytes/s, done.
Resolving deltas: 100% (50/50), done.
Checking connectivity... done.
[fedora-25:upstream_git (master %)]$ ls ansible-go/files/
go-bin.sh go-path.sh
[fedora-25:upstream_git (master %)]$ cd ..
[fedora-25:github_roles (master %)]$ ls
ansible-go requirements2.yml requirements_example.yml requirements.yml roles_external upstream_git
[fedora-25:github_roles (master %)]$ rm -rf ansible-go/
[fedora-25:github_roles (master %)]$ cat requirements.yml
---
- name: go
src: https://github.com/jlund/ansible-go
version: cfeba7c4db16aac3fa3db775d01ea911b21f828d
[fedora-25:github_roles (master %)]$ rm -rf roles_external/*
[fedora-25:github_roles (master %)]$ ansible-galaxy -vvvvv install -r requirements.yml -p roles_external/
Using /home/adrian/.ansible.cfg as config file
Opened /home/adrian/.ansible_galaxy
found role {'scm': 'git', 'src': 'https://github.com/jlund/ansible-go', 'version': 'cfeba7c4db16aac3fa3db775d01ea911b21f828d', 'name': 'go'} in yaml file
Installing role go
- extracting go to roles_external/go
- go (cfeba7c4db16aac3fa3db775d01ea911b21f828d) was installed successfully
[fedora-25:github_roles (master %)]$ ls roles_external/go/
defaults files meta README.md tasks vars
[fedora-25:github_roles (master %)]$ ls roles_external/go/files/
-bin.sh -path.sh
</code></pre></div>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"></pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">I guess the same behavior as if installing it via git scm url:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[fedora-25:github_roles (master %)]$ ansible-galaxy -vvvvv install git+ssh://[email protected]/jlund/ansible-go -p roles_external/
Using /home/adrian/.ansible.cfg as config file
Opened /home/adrian/.ansible_galaxy
Installing role ansible-go
- extracting ansible-go to roles_external/ansible-go
- ansible-go was installed successfully
[fedora-25:github_roles (master %)]$ ls roles_external/
ansible-go
[fedora-25:github_roles (master %)]$ ls roles_external/ansible-go/files/
go-bin.sh go-path.sh"><pre class="notranslate"><code class="notranslate">[fedora-25:github_roles (master %)]$ ansible-galaxy -vvvvv install git+ssh://[email protected]/jlund/ansible-go -p roles_external/
Using /home/adrian/.ansible.cfg as config file
Opened /home/adrian/.ansible_galaxy
Installing role ansible-go
- extracting ansible-go to roles_external/ansible-go
- ansible-go was installed successfully
[fedora-25:github_roles (master %)]$ ls roles_external/
ansible-go
[fedora-25:github_roles (master %)]$ ls roles_external/ansible-go/files/
go-bin.sh go-path.sh
</code></pre></div>
<h5 dir="auto">ACTUAL RESULTS</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[fedora-25:github_roles (master %)]$ ansible-galaxy -vvv install -r requirements.yml -p roles_via_requirements/
Using /home/adrian/.ansible.cfg as config file
Opened /home/adrian/.ansible_galaxy
found role {'scm': 'git', 'src': 'https://github.com/jlund/ansible-go', 'version': 'cfeba7c4db16aac3fa3db775d01ea911b21f828d', 'name': 'go'} in yaml file
Installing role go
- extracting go to roles_via_requirements/go
- go (cfeba7c4db16aac3fa3db775d01ea911b21f828d) was installed successfully"><pre class="notranslate"><code class="notranslate">[fedora-25:github_roles (master %)]$ ansible-galaxy -vvv install -r requirements.yml -p roles_via_requirements/
Using /home/adrian/.ansible.cfg as config file
Opened /home/adrian/.ansible_galaxy
found role {'scm': 'git', 'src': 'https://github.com/jlund/ansible-go', 'version': 'cfeba7c4db16aac3fa3db775d01ea911b21f828d', 'name': 'go'} in yaml file
Installing role go
- extracting go to roles_via_requirements/go
- go (cfeba7c4db16aac3fa3db775d01ea911b21f828d) was installed successfully
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate">
</code></pre></div> | 1 |
<p dir="auto">by <strong>santiago.gala</strong>:</p>
<pre class="notranslate">Before filing a bug, please check whether it has been fixed since
the latest release: run "hg pull -u" and retry what you did to
reproduce the problem. Thanks.
What steps will reproduce the problem?
1. Follow the "Getting Started" page
2. See "make[2]: Leaving directory `/home/sgala/Code/go/src/pkg/net'"
3. Wait forever
What is the expected output?
Expected that the build process eventually ends
What do you see instead?
It never finishes
Which compiler are you using (5g, 6g, 8g, gccgo)? No clue, I'm using ./all.bash
Which operating system are you using?
$ uname -a
Linux kurtz 2.6.32-25-generic #44-Ubuntu SMP Fri Sep 17 20:26:08 UTC 2010 i686 GNU/Linux
Which revision are you using? (hg identify)
$ hg identify
ca4f9687cec0 release.2010-10-13.1/release
Please provide any additional information below.</pre> | <p dir="auto">by <strong><a href="mailto:[email protected]">[email protected]</a></strong>:</p>
<pre class="notranslate">nfa@b3:~$ hg clone -u release <a href="https://code.google.com/p/go" rel="nofollow">https://code.google.com/p/go</a>
warning: code.google.com certificate with fingerprint
e2:9e:46:29:a0:fd:3c:57:a0:68:30:c5:0a:45:97:63:bf:8d:75:fc not verified (check
hostfingerprints or web.cacerts config setting)
destination directory: go
requesting all changes
adding changesets
adding manifests
adding file changes
added 12873 changesets with 49167 changes to 7114 files (+5 heads)
updating to branch release-branch.go1
3205 files updated, 0 files merged, 0 files removed, 0 files unresolved
nfa@b3:~$ cd go/src
nfa@b3:~/go/src$ ./all.bash
# Building C bootstrap tool.
cmd/dist
# Building compilers and Go bootstrap tool for host, linux/arm.
lib9
libbio
libmach
misc/pprof
cmd/addr2line
cmd/cov
cmd/nm
cmd/objdump
cmd/pack
cmd/prof
cmd/cc
cmd/gc
cmd/5l
cmd/5a
cmd/5c
cmd/5g
pkg/runtime
pkg/errors
pkg/sync/atomic
pkg/sync
pkg/io
pkg/unicode
pkg/unicode/utf8
pkg/unicode/utf16
pkg/bytes
pkg/math
pkg/strings
pkg/strconv
pkg/bufio
pkg/sort
pkg/container/heap
pkg/encoding/base64
pkg/syscall
pkg/time
pkg/os
pkg/reflect
pkg/fmt
pkg/encoding/json
pkg/flag
pkg/path/filepath
pkg/path
pkg/io/ioutil
pkg/log
pkg/regexp/syntax
pkg/regexp
pkg/go/token
pkg/go/scanner
pkg/go/ast
pkg/go/parser
pkg/os/exec
pkg/net/url
pkg/text/template/parse
pkg/text/template
pkg/go/doc
pkg/go/build
cmd/go
# Building packages and commands for linux/arm.
runtime
errors
sync/atomic
sync
io
unicode
unicode/utf8
bytes
bufio
math
syscall
time
os
strconv
reflect
fmt
sort
flag
go/token
strings
path/filepath
go/scanner
go/ast
regexp/syntax
regexp
io/ioutil
net/url
text/template/parse
text/template
go/doc
go/parser
log
path
go/build
text/tabwriter
go/printer
os/exec
cmd/api
hash
crypto
crypto/md5
encoding/binary
debug/dwarf
debug/elf
debug/macho
debug/pe
cmd/cgo
cmd/fix
container/heap
encoding/base64
unicode/utf16
encoding/json
encoding/xml
compress/flate
hash/crc32
compress/gzip
crypto/cipher
crypto/aes
crypto/des
math/rand
math/big
crypto/elliptic
crypto/hmac
crypto/rand
crypto/rc4
crypto/subtle
crypto/rsa
crypto/sha1
crypto/dsa
encoding/asn1
crypto/x509/pkix
encoding/pem
crypto/x509
net
crypto/tls
mime
net/textproto
mime/multipart
runtime/debug
net/http
cmd/go
archive/zip
encoding/gob
expvar
index/suffixarray
html
html/template
runtime/pprof
net/http/pprof
text/scanner
cmd/godoc
cmd/gofmt
cmd/vet
cmd/yacc
archive/tar
compress/bzip2
compress/lzw
hash/adler32
compress/zlib
container/list
container/ring
crypto/ecdsa
crypto/sha256
crypto/sha512
database/sql/driver
database/sql
debug/gosym
encoding/ascii85
encoding/base32
encoding/csv
encoding/hex
hash/crc64
hash/fnv
image/color
image
image/draw
image/gif
image/jpeg
image/png
log/syslog
math/cmplx
net/http/cgi
net/http/fcgi
net/http/httptest
net/http/httputil
net/mail
net/rpc
net/rpc/jsonrpc
net/smtp
os/signal
os/user
testing
testing/iotest
testing/quick
# Testing packages.
ok cmd/api 0.496s
? cmd/cgo [no test files]
ok cmd/fix 26.493s
ok cmd/go 0.259s
? cmd/godoc [no test files]
ok cmd/gofmt 1.092s
? cmd/vet [no test files]
? cmd/yacc [no test files]
ok archive/tar 0.197s
ok archive/zip 1.775s
ok bufio 9.001s
ok bytes 3.662s
ok compress/bzip2 1.426s
ok compress/flate 7.919s
ok compress/gzip 0.772s
ok compress/lzw 0.698s
ok compress/zlib 6.301s
ok container/heap 0.186s
ok container/list 0.153s
ok container/ring 0.358s
? crypto [no test files]
ok crypto/aes 0.290s
ok crypto/cipher 0.159s
ok crypto/des 0.656s
ok crypto/dsa 0.709s
ok crypto/ecdsa 0.703s
ok crypto/elliptic 0.357s
ok crypto/hmac 0.260s
ok crypto/md5 0.259s
ok crypto/rand 1.215s
ok crypto/rc4 0.149s
ok crypto/rsa 10.328s
ok crypto/sha1 0.192s
ok crypto/sha256 0.170s
ok crypto/sha512 0.379s
ok crypto/subtle 0.356s
ok crypto/tls 24.265s
ok crypto/x509 31.260s
? crypto/x509/pkix [no test files]
ok database/sql 0.441s
ok database/sql/driver 0.152s
ok debug/dwarf 0.551s
ok debug/elf 0.457s
ok debug/gosym 0.157s
ok debug/macho 0.206s
ok debug/pe 0.335s
ok encoding/ascii85 0.285s
ok encoding/asn1 0.183s
ok encoding/base32 0.297s
ok encoding/base64 0.265s
ok encoding/binary 0.275s
ok encoding/csv 0.293s
ok encoding/gob 1.054s
ok encoding/hex 0.158s
ok encoding/json 2.306s
ok encoding/pem 0.280s
ok encoding/xml 0.579s
ok errors 0.151s
ok expvar 0.271s
ok flag 0.155s
ok fmt 1.402s
ok go/ast 0.183s
ok go/build 37.577s
ok go/doc 1.730s
ok go/parser 1.342s
ok go/printer 8.732s
ok go/scanner 0.515s
ok go/token 1.375s
? hash [no test files]
ok hash/adler32 0.175s
ok hash/crc32 0.151s
ok hash/crc64 0.150s
ok hash/fnv 0.156s
ok html 0.330s
ok html/template 1.406s
ok image 1.766s
ok image/color 0.202s
ok image/draw 0.926s
? image/gif [no test files]
ok image/jpeg 1.197s
ok image/png 1.668s
ok index/suffixarray 0.575s
ok io 0.283s
ok io/ioutil 0.173s
ok log 0.289s
ok log/syslog 0.397s
ok math 0.733s
ok math/big 8.071s
ok math/cmplx 0.250s
panic: test timed out
goroutine 8 [running]:
testing.alarm()
/home/nfa/go/src/pkg/testing/testing.go:436 +0x5c
created by time.goFunc
/home/nfa/go/src/pkg/time/sleep.go:94 +0x5c
goroutine 1 [chan receive]:
testing.RunTests(0x10c00, 0x17a7e0, 0x6, 0x6, 0xffffff01, ...)
/home/nfa/go/src/pkg/testing/testing.go:350 +0x8b4
testing.Main(0x10c00, 0x17a7e0, 0x6, 0x6, 0x17a720, ...)
/home/nfa/go/src/pkg/testing/testing.go:285 +0x70
main.main()
/tmp/go-build770188874/math/rand/_test/_testmain.go:63 +0x88
goroutine 2 [syscall]:
created by runtime.main
/home/nfa/go/src/pkg/runtime/proc.c:221
goroutine 3 [timer goroutine (idle)]:
created by addtimer
/home/nfa/go/src/pkg/runtime/ztime_arm.c:69
goroutine 9 [runnable]:
testing.tRunner(0x1061eac0, 0x17a810, 0x0)
/home/nfa/go/src/pkg/testing/testing.go:256
created by testing.RunTests
/home/nfa/go/src/pkg/testing/testing.go:349 +0x894
FAIL math/rand 129.866s
ok mime 0.180s
ok mime/multipart 3.571s
ok net 2.680s
ok net/http 30.493s
ok net/http/cgi 3.718s
ok net/http/fcgi 0.415s
ok net/http/httptest 0.315s
ok net/http/httputil 0.362s
? net/http/pprof [no test files]
ok net/mail 0.270s
ok net/rpc 0.662s
ok net/rpc/jsonrpc 0.240s
ok net/smtp 0.180s
ok net/textproto 0.274s
ok net/url 0.375s
ok os 0.789s
ok os/exec 6.158s
ok os/signal 0.152s
ok os/user 0.158s
ok path 0.162s
ok path/filepath 0.319s
ok reflect 0.324s
ok regexp 4.495s
ok regexp/syntax 16.072s
ok runtime 61.095s
ok runtime/debug 0.281s
ok runtime/pprof 4.174s
ok sort 1.104s
ok strconv 11.263s
ok strings 0.401s
ok sync 0.604s
SIGILL: illegal instruction
PC=0xc233c
sync/atomic.armAddUint64(0x106001a8, 0x1, 0x0, 0x10600198, 0x54c34, ...)
/home/nfa/go/src/pkg/sync/atomic/asm_arm.s:66 +0x8
sync/atomic_test._func_008(0x0, 0x0)
/home/nfa/go/src/pkg/sync/atomic/atomic_test.go:37 +0x84
sync/atomic_test.init()
/home/nfa/go/src/pkg/sync/atomic/atomic_test.go:39 +0x78
main.init()
/tmp/go-build770188874/sync/atomic/_test/_testmain.go:102 +0x70
goroutine 2 [runnable]:
created by runtime.main
/home/nfa/go/src/pkg/runtime/proc.c:221
trap 0x6
error 0x0
oldmask 0x0
r0 0x0
r1 0xa
r2 0x106001a8
r3 0x594ba8
r4 0x4cdd0
r5 0x401a9f70
r6 0xa
r7 0x10620520
r8 0xefc0a940
r9 0x186c64
r10 0x10624000
fp 0xfffffff8
ip 0xcafebabe
sp 0x401a9f6c
lr 0xc2384
pc 0xc233c
cpsr 0x60000010
fault 0x0
FAIL sync/atomic 0.155s
? syscall [no test files]
? testing [no test files]
? testing/iotest [no test files]
ok testing/quick 0.904s
ok text/scanner 0.296s
ok text/tabwriter 0.289s
ok text/template 0.573s
ok text/template/parse 0.306s
ok time 20.035s
ok unicode 0.160s
ok unicode/utf16 0.151s
ok unicode/utf8 0.281s
? unsafe [no test files]
nfa@b3:~/go/src$</pre> | 0 |
<h1 dir="auto">Bug report</h1>
<p dir="auto"><strong>What is the current behavior?</strong><br>
I have just updated from <strong>[email protected]</strong> to <strong>[email protected]</strong> and I cannot install my modules anymore. I have the following error with @webassemblyjs/wast-parser. It stops installing.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1750734/52967115-56303400-33a9-11e9-9be8-466604f85f01.png"><img src="https://user-images.githubusercontent.com/1750734/52967115-56303400-33a9-11e9-9be8-466604f85f01.png" alt="screenshot 2019-02-18 18 16 14" style="max-width: 100%;"></a></p>
<p dir="auto">And when cancelling:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1750734/52967175-88419600-33a9-11e9-9432-440c5a44bd19.png"><img src="https://user-images.githubusercontent.com/1750734/52967175-88419600-33a9-11e9-9432-440c5a44bd19.png" alt="screenshot 2019-02-18 18 17 52" style="max-width: 100%;"></a></p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong><br>
Having <strong>[email protected]</strong> and everything working, just delete node_modules and try to install again using <strong>[email protected]</strong>.</p>
<p dir="auto"><strong>What is the expected behavior?</strong><br>
To have my modules installed with <strong>[email protected]</strong> as I had with <strong>[email protected]</strong>. When installing using <strong>[email protected]</strong>, this is the result:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1750734/52967444-61379400-33aa-11e9-8e93-08a578f7ff16.png"><img src="https://user-images.githubusercontent.com/1750734/52967444-61379400-33aa-11e9-8e93-08a578f7ff16.png" alt="screenshot 2019-02-18 18 24 01" style="max-width: 100%;"></a></p>
<p dir="auto"><strong>Other relevant information:</strong><br>
webpack version: 4.29.4<br>
Node.js version: 11.10.0<br>
Operating System: Mac OSX<br>
Additional tools: VSCode</p> | <h1 dir="auto">Bug report</h1>
<p dir="auto">This only fails in a docker container during an npm install from my experience, but may just be a low memory failure. Does not fail locally.</p>
<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="npm ERR! Maximum call stack size exceeded`
The command '/bin/sh -c npm install' returned a non-zero code: 1"><pre class="notranslate"><code class="notranslate">npm ERR! Maximum call stack size exceeded`
The command '/bin/sh -c npm install' returned a non-zero code: 1
</code></pre></div>
<p dir="auto">log from the docker container:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/38010995/52886033-6b0e8c80-3149-11e9-9502-c16b031eb2df.png"><img src="https://user-images.githubusercontent.com/38010995/52886033-6b0e8c80-3149-11e9-9502-c16b031eb2df.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong></p>
<ol dir="auto">
<li>Install docker for mac</li>
<li>create a package.json with version of <code class="notranslate">v4.29.4</code></li>
<li>create a dockerfile and add latest node <code class="notranslate">node:lts-alpine</code></li>
<li>assure it runs <code class="notranslate">npm install</code></li>
</ol>
<p dir="auto"><strong>What is the expected behavior?</strong></p>
<ol dir="auto">
<li>container builds and runs npm install without error</li>
</ol>
<p dir="auto"><strong>Other relevant information:</strong><br>
webpack version: v4.29.4<br>
Node.js version: v10.13.0 / npm 6.4.1<br>
Operating System: OSX 10.13.4<br>
Additional tools: Docker Version 2.0.0.3</p> | 1 |
<p dir="auto">When compiling the following code:</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="use std::cell::{RefCell, RefMut};
trait FooTrait {
fn footrait(&mut self);
}
struct Foo;
impl FooTrait for Foo {
fn footrait(&mut self) { () }
}
impl<'a> FooTrait for RefMut<'a, Foo> {
fn footrait(&mut self) { () }
}
struct Bar {
bar: RefCell<Foo>,
}
impl Bar {
fn foobox(&self) -> Box<FooTrait> {
let inner = self.bar.borrow_mut();
Box::new(inner)
}
}"><pre class="notranslate"><span class="pl-k">use</span> std<span class="pl-kos">::</span>cell<span class="pl-kos">::</span><span class="pl-kos">{</span><span class="pl-v">RefCell</span><span class="pl-kos">,</span> <span class="pl-v">RefMut</span><span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">trait</span> <span class="pl-smi">FooTrait</span> <span class="pl-kos">{</span>
<span class="pl-k">fn</span> <span class="pl-en">footrait</span><span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-k">mut</span> <span class="pl-smi">self</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">struct</span> <span class="pl-smi">Foo</span><span class="pl-kos">;</span>
<span class="pl-k">impl</span> <span class="pl-smi">FooTrait</span> <span class="pl-k">for</span> <span class="pl-smi">Foo</span> <span class="pl-kos">{</span>
<span class="pl-k">fn</span> <span class="pl-en">footrait</span><span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-k">mut</span> <span class="pl-smi">self</span><span class="pl-kos">)</span> <span class="pl-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">impl</span><span class="pl-kos"><</span><span class="pl-c1">'</span><span class="pl-ent">a</span><span class="pl-kos">></span> <span class="pl-smi">FooTrait</span> <span class="pl-k">for</span> <span class="pl-smi">RefMut</span><span class="pl-kos"><</span><span class="pl-c1">'</span><span class="pl-ent">a</span><span class="pl-kos">,</span> <span class="pl-smi">Foo</span><span class="pl-kos">></span> <span class="pl-kos">{</span>
<span class="pl-k">fn</span> <span class="pl-en">footrait</span><span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-k">mut</span> <span class="pl-smi">self</span><span class="pl-kos">)</span> <span class="pl-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">struct</span> <span class="pl-smi">Bar</span> <span class="pl-kos">{</span>
<span class="pl-c1">bar</span><span class="pl-kos">:</span> <span class="pl-smi">RefCell</span><span class="pl-kos"><</span><span class="pl-smi">Foo</span><span class="pl-kos">></span><span class="pl-kos">,</span>
<span class="pl-kos">}</span>
<span class="pl-k">impl</span> <span class="pl-smi">Bar</span> <span class="pl-kos">{</span>
<span class="pl-k">fn</span> <span class="pl-en">foobox</span><span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-smi">self</span><span class="pl-kos">)</span> -> <span class="pl-smi">Box</span><span class="pl-kos"><</span><span class="pl-smi">FooTrait</span><span class="pl-kos">></span> <span class="pl-kos">{</span>
<span class="pl-k">let</span> inner = <span class="pl-smi">self</span><span class="pl-kos">.</span><span class="pl-c1">bar</span><span class="pl-kos">.</span><span class="pl-en">borrow_mut</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">Box</span><span class="pl-kos">::</span><span class="pl-en">new</span><span class="pl-kos">(</span>inner<span class="pl-kos">)</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">I get the following (confusing) error message:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<anon>:21:30: 21:42 error: cannot infer an appropriate lifetime for autoref due to conflicting requirements
<anon>:21 let inner = self.bar.borrow_mut();
^~~~~~~~~~~~
<anon>:21:21: 21:29 note: first, the lifetime cannot outlive the expression at 21:20...
<anon>:21 let inner = self.bar.borrow_mut();
^~~~~~~~
<anon>:21:21: 21:29 note: ...so that auto-reference is valid at the time of borrow
<anon>:21 let inner = self.bar.borrow_mut();
^~~~~~~~
<anon>:21:21: 21:42 note: but, the lifetime must be valid for the method call at 21:20...
<anon>:21 let inner = self.bar.borrow_mut();
^~~~~~~~~~~~~~~~~~~~~
<anon>:21:21: 21:29 note: ...so that method receiver is valid for the method call
<anon>:21 let inner = self.bar.borrow_mut();
^~~~~~~~"><pre class="notranslate"><code class="notranslate"><anon>:21:30: 21:42 error: cannot infer an appropriate lifetime for autoref due to conflicting requirements
<anon>:21 let inner = self.bar.borrow_mut();
^~~~~~~~~~~~
<anon>:21:21: 21:29 note: first, the lifetime cannot outlive the expression at 21:20...
<anon>:21 let inner = self.bar.borrow_mut();
^~~~~~~~
<anon>:21:21: 21:29 note: ...so that auto-reference is valid at the time of borrow
<anon>:21 let inner = self.bar.borrow_mut();
^~~~~~~~
<anon>:21:21: 21:42 note: but, the lifetime must be valid for the method call at 21:20...
<anon>:21 let inner = self.bar.borrow_mut();
^~~~~~~~~~~~~~~~~~~~~
<anon>:21:21: 21:29 note: ...so that method receiver is valid for the method call
<anon>:21 let inner = self.bar.borrow_mut();
^~~~~~~~
</code></pre></div>
<p dir="auto">After a lot of trial-and-error I noticed I had to do the following change:</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// old:
fn foobox(&self) -> Box<FooTrait> {
// new:
fn foobox<'a>(&'a self) -> Box<FooTrait + 'a> {"><pre class="notranslate"><span class="pl-c">// old:</span>
<span class="pl-k">fn</span> foobox<span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-smi">self</span><span class="pl-kos">)</span> -> <span class="pl-smi">Box</span><span class="pl-kos"><</span><span class="pl-smi">FooTrait</span><span class="pl-kos">></span> <span class="pl-kos">{</span>
<span class="pl-c">// new:</span>
<span class="pl-k">fn</span> foobox<span class="pl-kos"><</span><span class="pl-c1">'</span><span class="pl-ent">a</span><span class="pl-kos">></span><span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-c1">'</span><span class="pl-ent">a</span> <span class="pl-smi">self</span><span class="pl-kos">)</span> -> <span class="pl-smi">Box</span><span class="pl-kos"><</span><span class="pl-smi">FooTrait</span> + <span class="pl-c1">'</span><span class="pl-ent">a</span><span class="pl-kos">></span> <span class="pl-kos">{</span></pre></div> | <p dir="auto">Compiler panics when compiling code that implements a trait for a generic type and a generic type in a vector.</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="trait MyTrait {
fn foo(&self){}
}
trait OtherTrait {
fn bar(&self){}
}
impl OtherTrait for String {}
impl OtherTrait for Vec<String> {}
impl<T: OtherTrait> MyTrait for T {}
impl<T: OtherTrait> MyTrait for Vec<T> {}
fn main() {
let test_var: Vec<String> = Vec::<String>::new();
test_var.foo();
}"><pre class="notranslate"><span class="pl-k">trait</span> <span class="pl-smi">MyTrait</span> <span class="pl-kos">{</span>
<span class="pl-k">fn</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-smi">self</span><span class="pl-kos">)</span><span class="pl-kos">{</span><span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">trait</span> <span class="pl-smi">OtherTrait</span> <span class="pl-kos">{</span>
<span class="pl-k">fn</span> <span class="pl-en">bar</span><span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-smi">self</span><span class="pl-kos">)</span><span class="pl-kos">{</span><span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">impl</span> <span class="pl-smi">OtherTrait</span> <span class="pl-k">for</span> <span class="pl-smi">String</span> <span class="pl-kos">{</span><span class="pl-kos">}</span>
<span class="pl-k">impl</span> <span class="pl-smi">OtherTrait</span> <span class="pl-k">for</span> <span class="pl-smi">Vec</span><span class="pl-kos"><</span><span class="pl-smi">String</span><span class="pl-kos">></span> <span class="pl-kos">{</span><span class="pl-kos">}</span>
<span class="pl-k">impl</span><span class="pl-kos"><</span><span class="pl-smi">T</span><span class="pl-kos">:</span> <span class="pl-smi">OtherTrait</span><span class="pl-kos">></span> <span class="pl-smi">MyTrait</span> <span class="pl-k">for</span> <span class="pl-smi">T</span> <span class="pl-kos">{</span><span class="pl-kos">}</span>
<span class="pl-k">impl</span><span class="pl-kos"><</span><span class="pl-smi">T</span><span class="pl-kos">:</span> <span class="pl-smi">OtherTrait</span><span class="pl-kos">></span> <span class="pl-smi">MyTrait</span> <span class="pl-k">for</span> <span class="pl-smi">Vec</span><span class="pl-kos"><</span><span class="pl-smi">T</span><span class="pl-kos">></span> <span class="pl-kos">{</span><span class="pl-kos">}</span>
<span class="pl-k">fn</span> <span class="pl-en">main</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">let</span> test_var<span class="pl-kos">:</span> <span class="pl-smi">Vec</span><span class="pl-kos"><</span><span class="pl-smi">String</span><span class="pl-kos">></span> = <span class="pl-smi">Vec</span><span class="pl-kos">::</span><span class="pl-kos"><</span><span class="pl-smi">String</span><span class="pl-kos">></span><span class="pl-kos">::</span><span class="pl-en">new</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
test_var<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></pre></div>
<p dir="auto">I expected to see this happen: As in 1.0.0-nightly (<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-lang/rust/commit/3e4be02b80a3dd27bce20870958fe0aef7e7336d/hovercard" href="https://github.com/rust-lang/rust/commit/3e4be02b80a3dd27bce20870958fe0aef7e7336d"><tt>3e4be02</tt></a> 2015-03-13) (built 2015-03-14), the compiler should catch the conflicting implementations.</p>
<p dir="auto">Instead, this happened: Compiler panics</p>
<h2 dir="auto">Meta</h2>
<p dir="auto"><code class="notranslate">rustc --version --verbose</code>:<br>
rustc 1.0.0-beta (<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-lang/rust/commit/9854143cba679834bc4ef932858cd5303f015a0e/hovercard" href="https://github.com/rust-lang/rust/commit/9854143cba679834bc4ef932858cd5303f015a0e"><tt>9854143</tt></a> 2015-04-02) (built 2015-04-02)<br>
binary: rustc<br>
commit-hash: <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-lang/rust/commit/9854143cba679834bc4ef932858cd5303f015a0e/hovercard" href="https://github.com/rust-lang/rust/commit/9854143cba679834bc4ef932858cd5303f015a0e"><tt>9854143</tt></a><br>
commit-date: 2015-04-02<br>
build-date: 2015-04-02<br>
host: x86_64-pc-windows-gnu<br>
release: 1.0.0-beta</p>
<p dir="auto">Error: internal compiler error: coherence failed to report ambiguity: cannot locate the impl of the trait <code class="notranslate">MyTrait</code> for the type <code class="notranslate">collections::vec::Vec<collections::string::String></code></p> | 0 |
<p dir="auto">I have 3 monitors. I created a Main layout for my center monitor, and a "communications" for my left monitor, but when I create a "operations" layout for my right hand monitor, it changes the layout of my communications monitor. If I then reset my communications monitor back to its intended layout, the layout of my operations monitor also changes to the communications layout.</p> | <h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: [Version 10.0.18362.387]
PowerToys version: 0.12.0.0
PowerToy module for which you are reporting the bug (if applicable): FancyZones"><pre class="notranslate"><code class="notranslate">Windows build number: [Version 10.0.18362.387]
PowerToys version: 0.12.0.0
PowerToy module for which you are reporting the bug (if applicable): FancyZones
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">I have 2 custom layouts. One for the left monitor, one for the right.</p>
<ol dir="auto">
<li>
<p dir="auto">I move the mouse to the left monitor and press [WIN] ~</p>
</li>
<li>
<p dir="auto">I choose Custom, and the left layout option.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5576809/67908977-bf706580-fb3a-11e9-9107-9550b2b43c24.png"><img src="https://user-images.githubusercontent.com/5576809/67908977-bf706580-fb3a-11e9-9107-9550b2b43c24.png" alt="left" style="max-width: 100%;"></a></p>
</li>
<li>
<p dir="auto">I click Apply</p>
</li>
<li>
<p dir="auto">I move the mouse to the right monitor and press [WIN] ~</p>
</li>
<li>
<p dir="auto">I choose Custom, and the right layout option.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5576809/67908920-87692280-fb3a-11e9-9d02-3317015c5d4a.png"><img src="https://user-images.githubusercontent.com/5576809/67908920-87692280-fb3a-11e9-9d02-3317015c5d4a.png" alt="right" style="max-width: 100%;"></a></p>
</li>
</ol>
<p dir="auto">I click Apply.<br>
The right monitor layout is applied to all monitors. I have tried also just moving the settings window before hitting apply but that doesn't work either.</p>
<p dir="auto">I can also use the main settings window, drag to the monitor, change the layout, and the same behavior happens, both monitors are updated.</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">Expected to be able to have a separate layout on different monitors.</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">Identical layout applied to all monitors.</p>
<h1 dir="auto">Screenshots</h1> | 1 |
<p dir="auto">Hi,<br>
I updated to version 0.23.0 and all of a sudden the following code breaks:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import pandas as pd
df = pd.DataFrame(data={'date': list(pd.date_range('5.1.2018', '5.10.2018')),
'vals': list(range(10))})
df.groupby([df.date.dt.month, df.date.dt.day])['vals'].sum()
ValueError: Duplicated level name: "date", assigned to level 1, is already used for level 0."><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span>
<span class="pl-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>(<span class="pl-s1">data</span><span class="pl-c1">=</span>{<span class="pl-s">'date'</span>: <span class="pl-en">list</span>(<span class="pl-s1">pd</span>.<span class="pl-en">date_range</span>(<span class="pl-s">'5.1.2018'</span>, <span class="pl-s">'5.10.2018'</span>)),
<span class="pl-s">'vals'</span>: <span class="pl-en">list</span>(<span class="pl-en">range</span>(<span class="pl-c1">10</span>))})
<span class="pl-s1">df</span>.<span class="pl-en">groupby</span>([<span class="pl-s1">df</span>.<span class="pl-s1">date</span>.<span class="pl-s1">dt</span>.<span class="pl-s1">month</span>, <span class="pl-s1">df</span>.<span class="pl-s1">date</span>.<span class="pl-s1">dt</span>.<span class="pl-s1">day</span>])[<span class="pl-s">'vals'</span>].<span class="pl-en">sum</span>()
<span class="pl-v">ValueError</span>: <span class="pl-v">Duplicated</span> <span class="pl-s1">level</span> <span class="pl-s1">name</span>: <span class="pl-s">"date"</span>, <span class="pl-s1">assigned</span> <span class="pl-s1">to</span> <span class="pl-s1">level</span> <span class="pl-c1">1</span>, <span class="pl-c1">is</span> <span class="pl-s1">already</span> <span class="pl-s1">used</span> <span class="pl-k">for</span> <span class="pl-s1">level</span> <span class="pl-c1">0.</span></pre></div>
<h3 dir="auto">Expected output:</h3>
<p dir="auto">Using version 0.22.0 the same code yields the following:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="date date
5 1 0
2 1
3 2
4 3
5 4
6 5
7 6
8 7
9 8
10 9
Name: vals, dtype: int64"><pre class="notranslate"><span class="pl-s1">date</span> <span class="pl-s1">date</span>
<span class="pl-c1">5</span> <span class="pl-c1">1</span> <span class="pl-c1">0</span>
<span class="pl-c1">2</span> <span class="pl-c1">1</span>
<span class="pl-c1">3</span> <span class="pl-c1">2</span>
<span class="pl-c1">4</span> <span class="pl-c1">3</span>
<span class="pl-c1">5</span> <span class="pl-c1">4</span>
<span class="pl-c1">6</span> <span class="pl-c1">5</span>
<span class="pl-c1">7</span> <span class="pl-c1">6</span>
<span class="pl-c1">8</span> <span class="pl-c1">7</span>
<span class="pl-c1">9</span> <span class="pl-c1">8</span>
<span class="pl-c1">10</span> <span class="pl-c1">9</span>
<span class="pl-v">Name</span>: <span class="pl-s1">vals</span>, <span class="pl-s1">dtype</span>: <span class="pl-s1">int64</span></pre></div>
<p dir="auto">It obviously contains duplicated level names. I get why this might be a problem, but as of version 0.23.0 it's not possible to specify the resulting level names.</p> | <p dir="auto">Opening a new issue so this isn't lost.</p>
<p dir="auto">In <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="283691748" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/18882" data-hovercard-type="pull_request" data-hovercard-url="/pandas-dev/pandas/pull/18882/hovercard" href="https://github.com/pandas-dev/pandas/pull/18882">#18882</a> banned duplicate names in a MultiIndex. I think this is a good change since allowing duplicates hit a lot of edge cases when you went to actually do something. I want to make sure we understand all the cases that actually produce duplicate names in the MI though, specifically groupby.apply.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [1]: import dask.dataframe as dd
In [2]: import pandas as pd
In [3]: pdf = pd.DataFrame({'a': [1, 2, 3, 4, 5, 6, 7, 8, 9],
...: 'b': [4, 5, 6, 3, 2, 1, 0, 0, 0]},
...: index=[0, 1, 3, 5, 6, 8, 9, 9, 9]).set_index("a")
...:
...:
In [4]: pdf.groupby(pdf.index).apply(lambda x: x.b)"><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">dask</span>.<span class="pl-s1">dataframe</span> <span class="pl-k">as</span> <span class="pl-s1">dd</span>
<span class="pl-v">In</span> [<span class="pl-c1">2</span>]: <span class="pl-s1">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span>
<span class="pl-v">In</span> [<span class="pl-c1">3</span>]: <span class="pl-s1">pdf</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>({<span class="pl-s">'a'</span>: [<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">3</span>, <span class="pl-c1">4</span>, <span class="pl-c1">5</span>, <span class="pl-c1">6</span>, <span class="pl-c1">7</span>, <span class="pl-c1">8</span>, <span class="pl-c1">9</span>],
...: <span class="pl-s">'b'</span>: [<span class="pl-c1">4</span>, <span class="pl-c1">5</span>, <span class="pl-c1">6</span>, <span class="pl-c1">3</span>, <span class="pl-c1">2</span>, <span class="pl-c1">1</span>, <span class="pl-c1">0</span>, <span class="pl-c1">0</span>, <span class="pl-c1">0</span>]},
...: <span class="pl-s1">index</span><span class="pl-c1">=</span>[<span class="pl-c1">0</span>, <span class="pl-c1">1</span>, <span class="pl-c1">3</span>, <span class="pl-c1">5</span>, <span class="pl-c1">6</span>, <span class="pl-c1">8</span>, <span class="pl-c1">9</span>, <span class="pl-c1">9</span>, <span class="pl-c1">9</span>]).<span class="pl-en">set_index</span>(<span class="pl-s">"a"</span>)
...:
...:
<span class="pl-v">In</span> [<span class="pl-c1">4</span>]: <span class="pl-s1">pdf</span>.<span class="pl-en">groupby</span>(<span class="pl-s1">pdf</span>.<span class="pl-s1">index</span>).<span class="pl-en">apply</span>(<span class="pl-k">lambda</span> <span class="pl-s1">x</span>: <span class="pl-s1">x</span>.<span class="pl-s1">b</span>)</pre></div>
<p dir="auto">Another, more realistic example: groupwise drop_duplicates:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [18]: df = pd.DataFrame({"B": [0, 0, 0, 1, 1, 1, 2, 2, 2]}, index=pd.Index([0, 1, 1, 2, 2, 2, 0, 0, 1], name='a'))
In [19]: df
Out[19]:
B
a
0 0
1 0
1 0
2 1
2 1
2 1
0 2
0 2
1 2
In [20]: df.groupby('a').apply(pd.DataFrame.drop_duplicates)
Out[20]:
B
a a
0 0 0
0 2
1 1 0
1 2
2 2 1"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">18</span>]: <span class="pl-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>({<span class="pl-s">"B"</span>: [<span class="pl-c1">0</span>, <span class="pl-c1">0</span>, <span class="pl-c1">0</span>, <span class="pl-c1">1</span>, <span class="pl-c1">1</span>, <span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">2</span>, <span class="pl-c1">2</span>]}, <span class="pl-s1">index</span><span class="pl-c1">=</span><span class="pl-s1">pd</span>.<span class="pl-v">Index</span>([<span class="pl-c1">0</span>, <span class="pl-c1">1</span>, <span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">2</span>, <span class="pl-c1">2</span>, <span class="pl-c1">0</span>, <span class="pl-c1">0</span>, <span class="pl-c1">1</span>], <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'a'</span>))
<span class="pl-v">In</span> [<span class="pl-c1">19</span>]: <span class="pl-s1">df</span>
<span class="pl-v">Out</span>[<span class="pl-c1">19</span>]:
<span class="pl-v">B</span>
<span class="pl-s1">a</span>
<span class="pl-c1">0</span> <span class="pl-c1">0</span>
<span class="pl-c1">1</span> <span class="pl-c1">0</span>
<span class="pl-c1">1</span> <span class="pl-c1">0</span>
<span class="pl-c1">2</span> <span class="pl-c1">1</span>
<span class="pl-c1">2</span> <span class="pl-c1">1</span>
<span class="pl-c1">2</span> <span class="pl-c1">1</span>
<span class="pl-c1">0</span> <span class="pl-c1">2</span>
<span class="pl-c1">0</span> <span class="pl-c1">2</span>
<span class="pl-c1">1</span> <span class="pl-c1">2</span>
<span class="pl-v">In</span> [<span class="pl-c1">20</span>]: <span class="pl-s1">df</span>.<span class="pl-en">groupby</span>(<span class="pl-s">'a'</span>).<span class="pl-en">apply</span>(<span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>.<span class="pl-s1">drop_duplicates</span>)
<span class="pl-v">Out</span>[<span class="pl-c1">20</span>]:
<span class="pl-v">B</span>
<span class="pl-s1">a</span> <span class="pl-s1">a</span>
<span class="pl-c1">0</span> <span class="pl-c1">0</span> <span class="pl-c1">0</span>
<span class="pl-c1">0</span> <span class="pl-c1">2</span>
<span class="pl-c1">1</span> <span class="pl-c1">1</span> <span class="pl-c1">0</span>
<span class="pl-c1">1</span> <span class="pl-c1">2</span>
<span class="pl-c1">2</span> <span class="pl-c1">2</span> <span class="pl-c1">1</span></pre></div>
<p dir="auto">Is it possible to throw a warning on this for now, in case duplicate names are more common than we thought?</p> | 1 |
<p dir="auto"><strong>System information</strong></p>
<ul dir="auto">
<li>OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 10</li>
<li>TensorFlow installed from (source or binary):</li>
<li>TensorFlow version: tensorflow-1.12.0 (installed via pip3)</li>
<li>Python version: python 3.6.7</li>
<li>CUDA/cuDNN version: CUDA==10.0.130 cuDNN==7.4.1</li>
<li>GPU model and memory: NVIDIA GTX 1050 Ti with Max-Q Design</li>
</ul>
<p dir="auto"><strong>Provide the exact sequence of commands / steps that you executed before running into the problem</strong><br>
After starting python 3.6 in cmd and trying to execute <code class="notranslate">import tensorflow</code> I get the following stack trace:</p>
<p dir="auto">'>>> import tensorflow<br>
Traceback (most recent call last):<br>
File "C:\Users\Sunny Nagam\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in <br>
from tensorflow.python.pywrap_tensorflow_internal import *<br>
File "C:\Users\Sunny Nagam\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 28, in <br>
_pywrap_tensorflow_internal = swig_import_helper()<br>
File "C:\Users\Sunny Nagam\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 24, in swig_import_helper<br>
_mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description)<br>
File "C:\Users\Sunny Nagam\AppData\Local\Programs\Python\Python36\lib\imp.py", line 243, in load_module<br>
return load_dynamic(name, filename, file)<br>
File "C:\Users\Sunny Nagam\AppData\Local\Programs\Python\Python36\lib\imp.py", line 343, in load_dynamic<br>
return _load(spec)<br>
ImportError: DLL load failed: The specified module could not be found.</p>
<p dir="auto">During handling of the above exception, another exception occurred:</p>
<p dir="auto">Traceback (most recent call last):<br>
File "", line 1, in <br>
File "C:\Users\Sunny Nagam\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow_<em>init</em>_.py", line 24, in <br>
from tensorflow.python import pywrap_tensorflow # pylint: disable=unused-import<br>
File "C:\Users\Sunny Nagam\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python_<em>init</em>_.py", line 49, in <br>
from tensorflow.python import pywrap_tensorflow<br>
File "C:\Users\Sunny Nagam\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 74, in <br>
raise ImportError(msg)<br>
ImportError: Traceback (most recent call last):<br>
File "C:\Users\Sunny Nagam\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in <br>
from tensorflow.python.pywrap_tensorflow_internal import *<br>
File "C:\Users\Sunny Nagam\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 28, in <br>
_pywrap_tensorflow_internal = swig_import_helper()<br>
File "C:\Users\Sunny Nagam\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 24, in swig_import_helper<br>
_mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description)<br>
File "C:\Users\Sunny Nagam\AppData\Local\Programs\Python\Python36\lib\imp.py", line 243, in load_module<br>
return load_dynamic(name, filename, file)<br>
File "C:\Users\Sunny Nagam\AppData\Local\Programs\Python\Python36\lib\imp.py", line 343, in load_dynamic<br>
return _load(spec)<br>
ImportError: DLL load failed: The specified module could not be found.</p>
<p dir="auto">Failed to load the native TensorFlow runtime.</p>
<p dir="auto">See <a href="https://www.tensorflow.org/install/errors" rel="nofollow">https://www.tensorflow.org/install/errors</a></p>
<p dir="auto">for some common reasons and solutions. Include the entire stack trace<br>
above this error message when asking for help.'</p>
<p dir="auto">I have tried installing the CUDA toolkit and cuDNN and adding to my PATH. Here is my current PATH:</p>
<p dir="auto">'PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\extras\CUPTI\libx64;C:\cuda\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\libnvvp;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\iCLS;C:\Program Files\Intel\Intel(R) Management Engine Components\iCLS;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Users\Sunny Nagam\AppData\Local\Programs\Python\Python36\Scripts;C:\Users\Sunny Nagam\AppData\Local\Programs\Python\Python36;C:\Users\Sunny Nagam\AppData\Local\Microsoft\WindowsApps;'</p>
<p dir="auto">I'm unsure if this infromation is helpful but my \cuda\bin contains "cudnn_64_7.dll" and my CUDA\v10.0\bin contains "cudart64_100.dll"</p> | <p dir="auto"><em>Please make sure that this is a build/installation issue. As per our <a href="https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md">GitHub Policy</a>, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:build_template</em></p>
<p dir="auto"><strong>System information</strong></p>
<ul dir="auto">
<li>OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Win 10</li>
<li>TensorFlow installed from (source or binary): pip install tensorflow</li>
<li>TensorFlow version: 1.12.0</li>
<li>Python version: 3.6.5</li>
<li>Installed using virtualenv? pip? conda?:</li>
<li>CUDA/cuDNN version: 10.0 / 7</li>
<li>GPU model and memory: Geforce 1050 Ti 8gb</li>
</ul>
<p dir="auto"><strong>Describe the problem</strong></p>
<p dir="auto">I am unable to import tensorflow. It gives the error below.</p>
<p dir="auto"><strong>Provide the exact sequence of commands / steps that you executed before running into the problem</strong></p>
<ol dir="auto">
<li>
<p dir="auto">Updated my GPU drivers</p>
</li>
<li>
<p dir="auto">Installed CUDA 10.0</p>
</li>
<li>
<p dir="auto">Downloaded the cuDNN tool</p>
</li>
<li>
<p dir="auto">Added both CUDA and cuDNN bin to PATH</p>
</li>
<li>
<p dir="auto">pip installed tensorflow-gpu</p>
</li>
<li>
<p dir="auto">Tried to import</p>
</li>
<li>
<p dir="auto">did pip uninstall tensorflow-gpu</p>
</li>
<li>
<p dir="auto">tried pip install tensorflow-gpu==1.10.0 (same error)</p>
</li>
</ol>
<p dir="auto"><strong>Any other info / logs</strong><br>
Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached.</p>
<p dir="auto">Error Shown:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\site-packages\sklearn\externals\joblib\externals\cloudpickle\cloudpickle.py:47: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
import imp
Traceback (most recent call last):
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in <module>
from tensorflow.python.pywrap_tensorflow_internal import *
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 28, in <module>
_pywrap_tensorflow_internal = swig_import_helper()
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 24, in swig_import_helper
_mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description)
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\imp.py", line 243, in load_module
return load_dynamic(name, filename, file)
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\imp.py", line 343, in load_dynamic
return _load(spec)
ImportError: DLL load failed: The specified module could not be found.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "ml.py", line 2, in <module>
from tensorflow import keras
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\__init__.py", line 24, in <module>
from tensorflow.python import pywrap_tensorflow # pylint: disable=unused-import
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\__init__.py", line 49, in <module>
from tensorflow.python import pywrap_tensorflow
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 74, in <module>
raise ImportError(msg)
ImportError: Traceback (most recent call last):
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in <module>
from tensorflow.python.pywrap_tensorflow_internal import *
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 28, in <module>
_pywrap_tensorflow_internal = swig_import_helper()
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 24, in swig_import_helper
_mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description)
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\imp.py", line 243, in load_module
return load_dynamic(name, filename, file)
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\imp.py", line 343, in load_dynamic
return _load(spec)
ImportError: DLL load failed: The specified module could not be found.
Failed to load the native TensorFlow runtime.
See https://www.tensorflow.org/install/errors
for some common reasons and solutions. Include the entire stack trace
above this error message when asking for help."><pre class="notranslate"><code class="notranslate">C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\site-packages\sklearn\externals\joblib\externals\cloudpickle\cloudpickle.py:47: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
import imp
Traceback (most recent call last):
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in <module>
from tensorflow.python.pywrap_tensorflow_internal import *
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 28, in <module>
_pywrap_tensorflow_internal = swig_import_helper()
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 24, in swig_import_helper
_mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description)
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\imp.py", line 243, in load_module
return load_dynamic(name, filename, file)
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\imp.py", line 343, in load_dynamic
return _load(spec)
ImportError: DLL load failed: The specified module could not be found.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "ml.py", line 2, in <module>
from tensorflow import keras
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\__init__.py", line 24, in <module>
from tensorflow.python import pywrap_tensorflow # pylint: disable=unused-import
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\__init__.py", line 49, in <module>
from tensorflow.python import pywrap_tensorflow
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 74, in <module>
raise ImportError(msg)
ImportError: Traceback (most recent call last):
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow.py", line 58, in <module>
from tensorflow.python.pywrap_tensorflow_internal import *
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 28, in <module>
_pywrap_tensorflow_internal = swig_import_helper()
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\site-packages\tensorflow\python\pywrap_tensorflow_internal.py", line 24, in swig_import_helper
_mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description)
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\imp.py", line 243, in load_module
return load_dynamic(name, filename, file)
File "C:\Users\Mom2\AppData\Local\Programs\Python\Python36\lib\imp.py", line 343, in load_dynamic
return _load(spec)
ImportError: DLL load failed: The specified module could not be found.
Failed to load the native TensorFlow runtime.
See https://www.tensorflow.org/install/errors
for some common reasons and solutions. Include the entire stack trace
above this error message when asking for help.
</code></pre></div> | 1 |
<p dir="auto">We are having this crash on one of our apps in the Play Store. We are using the Beta 1 version of Flutter. We got 30+ crash reports. It impacts Android 6.0 users only and the most affected device is Grand Prime Plus (grandpplte).</p>
<h2 dir="auto">Logs</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
pid: 0, tid: 0 >>> com.bendingspoons.rized.color.by.number <<<
backtrace:
#00 pc 00000000000431d4 /system/lib/libc.so (tgkill+12)
#01 pc 0000000000040de1 /system/lib/libc.so (pthread_kill+32)
#02 pc 000000000001c7e7 /system/lib/libc.so (raise+10)
#03 pc 0000000000019a65 /system/lib/libc.so (__libc_android_abort+34)
#04 pc 0000000000017600 /system/lib/libc.so (abort+4)
#05 pc 000000000013dca7 /data/app/com.bendingspoons.rized.color.by.number-1/lib/arm/libflutter.so
#06 pc 00000000001e82f9 /data/app/com.bendingspoons.rized.color.by.number-1/lib/arm/libflutter.so
#07 pc 0000000000051b91 /data/app/com.bendingspoons.rized.color.by.number-1/lib/arm/libflutter.so
#08 pc 000000000004f5d3 /data/app/com.bendingspoons.rized.color.by.number-1/lib/arm/libflutter.so
#09 pc 0000000000072f21 /data/app/com.bendingspoons.rized.color.by.number-1/lib/arm/libflutter.so
#10 pc 0000000000059535 /data/app/com.bendingspoons.rized.color.by.number-1/lib/arm/libflutter.so
#11 pc 000000000005bd7b /data/app/com.bendingspoons.rized.color.by.number-1/lib/arm/libflutter.so
#12 pc 00000000000130dd /system/lib/libutils.so (_ZN7android6Looper9pollInnerEi+532)
#13 pc 00000000000131af /system/lib/libutils.so (_ZN7android6Looper8pollOnceEiPiS1_PPv+130)
#14 pc 0000000000084e91 /system/lib/libandroid_runtime.so (_ZN7android18NativeMessageQueue8pollOnceEP7_JNIEnvP8_jobjecti+22)
#15 pc 000000000305b575 /system/framework/arm/boot.oat"><pre class="notranslate"><code class="notranslate">*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
pid: 0, tid: 0 >>> com.bendingspoons.rized.color.by.number <<<
backtrace:
#00 pc 00000000000431d4 /system/lib/libc.so (tgkill+12)
#01 pc 0000000000040de1 /system/lib/libc.so (pthread_kill+32)
#02 pc 000000000001c7e7 /system/lib/libc.so (raise+10)
#03 pc 0000000000019a65 /system/lib/libc.so (__libc_android_abort+34)
#04 pc 0000000000017600 /system/lib/libc.so (abort+4)
#05 pc 000000000013dca7 /data/app/com.bendingspoons.rized.color.by.number-1/lib/arm/libflutter.so
#06 pc 00000000001e82f9 /data/app/com.bendingspoons.rized.color.by.number-1/lib/arm/libflutter.so
#07 pc 0000000000051b91 /data/app/com.bendingspoons.rized.color.by.number-1/lib/arm/libflutter.so
#08 pc 000000000004f5d3 /data/app/com.bendingspoons.rized.color.by.number-1/lib/arm/libflutter.so
#09 pc 0000000000072f21 /data/app/com.bendingspoons.rized.color.by.number-1/lib/arm/libflutter.so
#10 pc 0000000000059535 /data/app/com.bendingspoons.rized.color.by.number-1/lib/arm/libflutter.so
#11 pc 000000000005bd7b /data/app/com.bendingspoons.rized.color.by.number-1/lib/arm/libflutter.so
#12 pc 00000000000130dd /system/lib/libutils.so (_ZN7android6Looper9pollInnerEi+532)
#13 pc 00000000000131af /system/lib/libutils.so (_ZN7android6Looper8pollOnceEiPiS1_PPv+130)
#14 pc 0000000000084e91 /system/lib/libandroid_runtime.so (_ZN7android18NativeMessageQueue8pollOnceEP7_JNIEnvP8_jobjecti+22)
#15 pc 000000000305b575 /system/framework/arm/boot.oat
</code></pre></div> | <p dir="auto">Project Mulligan is affected by this issue.</p>
<h2 dir="auto">Steps to Reproduce</h2>
<p dir="auto">Using flutter_driver, attempt to find a Widget by its Material tooltip. Implement this by declaring a dependency upon DefaultMaterialLocalizations and using one of the tooltip strings it defines.</p>
<p dir="auto">Observe that 'flutter/src/material/material_localizations.dart' depends on 'flutter/src/material/time.dart', which depends on 'dart:ui', which prevents usage in the stand-alone VM.</p>
<p dir="auto">Using these strings directly to drive the UI from tests is important because it prevents duplication of Flutter string literals within test sources. If string literals were instead used within test sources, automated tests would break if a localizable string in Flutter's Material implementation were to change.</p>
<h2 dir="auto">Logs</h2>
<p dir="auto">Unable to spawn isolate: The built-in library 'dart:ui' is not available on the stand-alone VM.<br>
'package:flutter/src/material/time.dart': error: line 5 pos 1: library handler failed<br>
import 'dart:ui' show hashValues;<br>
^</p> | 0 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=ffankhauser" rel="nofollow">Florian Fankhauser</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-7638?redirect=false" rel="nofollow">SPR-7638</a></strong> and commented</p>
<p dir="auto">I want to display a java.util.Date value from the model using the spring:eval-tag like this:</p>
<p dir="auto"><spring:eval expression="dateOfBirth" /></p>
<p dir="auto">Now I start Tomcat and open the page let's say in Firefox. It works fine, the page displays as expected. Now I start another web-browser, let's say Safari, to simulate another user-session. When I try to open the page with Safari, I get the following Exception:</p>
<p dir="auto">org.apache.jasper.JasperException:<br>
org.springframework.expression.spel.SpelEvaluationException:<br>
EL1021E:(pos 0): A problem occurred whilst attempting to access the<br>
property 'dateOfBirth': 'Unexpected exception occurred accessing<br>
'dateOfBirth' as an implicit variable'</p>
<p dir="auto">When I refresh the page in Safari the exception continues to show up.<br>
When I refresh the page in Firefox, it works without any problem.</p>
<p dir="auto">It seems to me, that spring:eval only works in the first user-session in this case but not in any further user-sessions.<br>
This problem exists since version 3.0.4.</p>
<p dir="auto">Steps to reproduce:</p>
<hr>
<ol dir="auto">
<li>With STS create a new Spring Template Project of type MVC.</li>
<li>Open pom.xml and change the spring-version to 3.0.4.</li>
<li>Change the welcome()-method in WelcomeController.java to:</li>
</ol>
<p dir="auto">public void welcome(Model model) {<br>
model.addAttribute("dateOfBirth", new Date());<br>
}</p>
<ol start="4" dir="auto">
<li>Open the welcome.jsp file and add this spring:eval-tag below the h1-tag:</li>
</ol>
<p dir="auto"><spring:eval expression="dateOfBirth" /></p>
<ol start="5" dir="auto">
<li>Start Tomcat and try to open the site with to different web-browsers. In the second browser the exception is shown.</li>
</ol>
<p dir="auto">I have attached the sample-project to reproduce the problem.</p>
<p dir="auto">The complete exception shown:</p>
<hr>
<p dir="auto">org.apache.jasper.JasperException: org.springframework.expression.spel.SpelEvaluationException: EL1021E:(pos 0): A problem occurred whilst attempting to access the property 'dateOfBirth': 'Unexpected exception occurred accessing 'dateOfBirth' as an implicit variable'<br>
org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:527)<br>
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:419)<br>
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:313)<br>
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:260)<br>
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)<br>
org.springframework.web.servlet.view.InternalResourceView.renderMergedOutputModel(InternalResourceView.java:238)<br>
org.springframework.web.servlet.view.AbstractView.render(AbstractView.java:250)<br>
org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1031)<br>
org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:815)<br>
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:717)<br>
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:644)<br>
org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:549)<br>
javax.servlet.http.HttpServlet.service(HttpServlet.java:617)<br>
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)<br>
org.tuckey.web.filters.urlrewrite.NormalRewrittenUrl.doRewrite(NormalRewrittenUrl.java:195)<br>
org.tuckey.web.filters.urlrewrite.RuleChain.handleRewrite(RuleChain.java:159)<br>
org.tuckey.web.filters.urlrewrite.RuleChain.doRules(RuleChain.java:141)<br>
org.tuckey.web.filters.urlrewrite.UrlRewriter.processRequest(UrlRewriter.java:90)<br>
org.tuckey.web.filters.urlrewrite.UrlRewriteFilter.doFilter(UrlRewriteFilter.java:417)<br>
root cause</p>
<p dir="auto">org.springframework.expression.spel.SpelEvaluationException: EL1021E:(pos 0): A problem occurred whilst attempting to access the property 'dateOfBirth': 'Unexpected exception occurred accessing 'dateOfBirth' as an implicit variable'<br>
org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:199)<br>
org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:71)<br>
org.springframework.expression.spel.ast.SpelNodeImpl.getTypedValue(SpelNodeImpl.java:102)<br>
org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:97)<br>
org.springframework.web.servlet.tags.EvalTag.doEndTag(EvalTag.java:113)<br>
org.apache.jsp.WEB_002dINF.views.welcome_jsp._jspx_meth_spring_005feval_005f0(welcome_jsp.java:99)<br>
org.apache.jsp.WEB_002dINF.views.welcome_jsp._jspService(welcome_jsp.java:69)<br>
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)<br>
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)<br>
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)<br>
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:313)<br>
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:260)<br>
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)<br>
org.springframework.web.servlet.view.InternalResourceView.renderMergedOutputModel(InternalResourceView.java:238)<br>
org.springframework.web.servlet.view.AbstractView.render(AbstractView.java:250)<br>
org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1031)<br>
org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:815)<br>
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:717)<br>
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:644)<br>
org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:549)<br>
javax.servlet.http.HttpServlet.service(HttpServlet.java:617)<br>
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)<br>
org.tuckey.web.filters.urlrewrite.NormalRewrittenUrl.doRewrite(NormalRewrittenUrl.java:195)<br>
org.tuckey.web.filters.urlrewrite.RuleChain.handleRewrite(RuleChain.java:159)<br>
org.tuckey.web.filters.urlrewrite.RuleChain.doRules(RuleChain.java:141)<br>
org.tuckey.web.filters.urlrewrite.UrlRewriter.processRequest(UrlRewriter.java:90)<br>
org.tuckey.web.filters.urlrewrite.UrlRewriteFilter.doFilter(UrlRewriteFilter.java:417)<br>
root cause</p>
<p dir="auto">org.springframework.expression.AccessException: Unexpected exception occurred accessing 'dateOfBirth' as an implicit variable<br>
org.springframework.web.servlet.tags.EvalTag$JspPropertyAccessor.resolveImplicitVariable(EvalTag.java:186)<br>
org.springframework.web.servlet.tags.EvalTag$JspPropertyAccessor.canRead(EvalTag.java:159)<br>
org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:189)<br>
org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:71)<br>
org.springframework.expression.spel.ast.SpelNodeImpl.getTypedValue(SpelNodeImpl.java:102)<br>
org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:97)<br>
org.springframework.web.servlet.tags.EvalTag.doEndTag(EvalTag.java:113)<br>
org.apache.jsp.WEB_002dINF.views.welcome_jsp._jspx_meth_spring_005feval_005f0(welcome_jsp.java:99)<br>
org.apache.jsp.WEB_002dINF.views.welcome_jsp._jspService(welcome_jsp.java:69)<br>
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)<br>
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)<br>
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)<br>
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:313)<br>
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:260)<br>
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)<br>
org.springframework.web.servlet.view.InternalResourceView.renderMergedOutputModel(InternalResourceView.java:238)<br>
org.springframework.web.servlet.view.AbstractView.render(AbstractView.java:250)<br>
org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1031)<br>
org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:815)<br>
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:717)<br>
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:644)<br>
org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:549)<br>
javax.servlet.http.HttpServlet.service(HttpServlet.java:617)<br>
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)<br>
org.tuckey.web.filters.urlrewrite.NormalRewrittenUrl.doRewrite(NormalRewrittenUrl.java:195)<br>
org.tuckey.web.filters.urlrewrite.RuleChain.handleRewrite(RuleChain.java:159)<br>
org.tuckey.web.filters.urlrewrite.RuleChain.doRules(RuleChain.java:141)<br>
org.tuckey.web.filters.urlrewrite.UrlRewriter.processRequest(UrlRewriter.java:90)<br>
org.tuckey.web.filters.urlrewrite.UrlRewriteFilter.doFilter(UrlRewriteFilter.java:417)<br>
root cause</p>
<p dir="auto">java.lang.NullPointerException<br>
org.apache.jasper.runtime.PageContextImpl.doFindAttribute(PageContextImpl.java:467)<br>
org.apache.jasper.runtime.PageContextImpl.findAttribute(PageContextImpl.java:457)<br>
javax.servlet.jsp.el.ScopedAttributeELResolver.getValue(ScopedAttributeELResolver.java:53)<br>
javax.el.CompositeELResolver.getValue(CompositeELResolver.java:54)<br>
org.apache.jasper.el.VariableResolverImpl.resolveVariable(VariableResolverImpl.java:32)<br>
org.springframework.web.servlet.tags.EvalTag$JspPropertyAccessor.resolveImplicitVariable(EvalTag.java:183)<br>
org.springframework.web.servlet.tags.EvalTag$JspPropertyAccessor.canRead(EvalTag.java:159)<br>
org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:189)<br>
org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:71)<br>
org.springframework.expression.spel.ast.SpelNodeImpl.getTypedValue(SpelNodeImpl.java:102)<br>
org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:97)<br>
org.springframework.web.servlet.tags.EvalTag.doEndTag(EvalTag.java:113)<br>
org.apache.jsp.WEB_002dINF.views.welcome_jsp._jspx_meth_spring_005feval_005f0(welcome_jsp.java:99)<br>
org.apache.jsp.WEB_002dINF.views.welcome_jsp._jspService(welcome_jsp.java:69)<br>
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)<br>
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)<br>
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)<br>
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:313)<br>
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:260)<br>
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)<br>
org.springframework.web.servlet.view.InternalResourceView.renderMergedOutputModel(InternalResourceView.java:238)<br>
org.springframework.web.servlet.view.AbstractView.render(AbstractView.java:250)<br>
org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1031)<br>
org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:815)<br>
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:717)<br>
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:644)<br>
org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:549)<br>
javax.servlet.http.HttpServlet.service(HttpServlet.java:617)<br>
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)<br>
org.tuckey.web.filters.urlrewrite.NormalRewrittenUrl.doRewrite(NormalRewrittenUrl.java:195)<br>
org.tuckey.web.filters.urlrewrite.RuleChain.handleRewrite(RuleChain.java:159)<br>
org.tuckey.web.filters.urlrewrite.RuleChain.doRules(RuleChain.java:141)<br>
org.tuckey.web.filters.urlrewrite.UrlRewriter.processRequest(UrlRewriter.java:90)<br>
org.tuckey.web.filters.urlrewrite.UrlRewriteFilter.doFilter(UrlRewriteFilter.java:417)<br>
note The full stack trace of the root cause is available in the Apache Tomcat/6.0.26 logs.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.0.4</p>
<p dir="auto"><strong>Attachments:</strong></p>
<ul dir="auto">
<li><a href="https://jira.spring.io/secure/attachment/17182/evaltagtest.zip" rel="nofollow">evaltagtest.zip</a> (<em>13.54 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="398106970" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12140" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12140/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12140">#12140</a> Exception (SpelEvaluationException: EL1021E) when using spring:eval with Jetty (<em><strong>"duplicates"</strong></em>)</li>
</ul> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=xmaniac" rel="nofollow">Jose Noheda</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-5016?redirect=false" rel="nofollow">SPR-5016</a></strong> and commented</p>
<p dir="auto">context:property-placeholder/ only has an attribute (location). This is not enough for advance usage. Please add others like ignoreUnresolvablePlaceholders.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 2.5.5</p>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398087043" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/9338" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/9338/hovercard" href="https://github.com/spring-projects/spring-framework/issues/9338">#9338</a> Improve context-property-placeholder configurablity (<em><strong>"duplicates"</strong></em>)</li>
</ul> | 0 |
<p dir="auto">中文输入法导致 v-model 的值不更新</p>
<p dir="auto">代码:<a href="http://jsbin.com/robetuzuxo/edit?html,js,output" rel="nofollow">http://jsbin.com/robetuzuxo/edit?html,js,output</a><br>
demo: <a href="http://output.jsbin.com/robetuzuxo" rel="nofollow">http://output.jsbin.com/robetuzuxo</a></p>
<p dir="auto">当用手机浏览器打开 demo 后,点击 input 输入框,切换至中文输入法,随便输入,然后直接点击 submit 按钮(不要点击完成或者 done),发现 v-model 的值没有更新,但是通过原生方法找到 input 的 value,发现 value 值是更新过的,这种情况要怎么处理?目前我们的解决方案是重新封装一个 input component 出来,但是以前的上线的全部业务现在出现这种情况,直接导致业务不可用了. 当然可以使用computed setter getter 解决,但是,由于业务中有大量的表单数据,使用computed改动成本很高. 望尤大能给一个好的解决方案, 谢谢!</p>
<p dir="auto">Bug:</p>
<p dir="auto">Chinese input method cause v-model data is not updated.</p>
<p dir="auto">Code:<a href="http://jsbin.com/robetuzuxo/edit?html,js,output" rel="nofollow">http://jsbin.com/robetuzuxo/edit?html,js,output</a><br>
demo: <a href="http://output.jsbin.com/robetuzuxo" rel="nofollow">http://output.jsbin.com/robetuzuxo</a></p>
<p dir="auto">When you use the mobile browser to open the demo, click the input field input box, switch to the Chinese input method, casually enter, and then click the submit button (do not click Finish or done) and found that the value of v-model is not updated, but found by native method Input value, found that the value is updated, how to deal with this situation? At present our solution is to re-package an input component out, but the previous on-line all the business now this situation, a direct result of the business is not available. Of course, I can use the computed setter getter to solve it, but because of the large number of forms in the business data, solve it with the use of high cost changes. so hope to give a good solution. Thanks.</p> | <h3 dir="auto">test environment</h3>
<p dir="auto">app(or wechat) on iphone</p>
<h3 dir="auto">Vue.js version</h3>
<p dir="auto">1.0 version</p>
<h3 dir="auto">Reproduction Link</h3>
<p dir="auto">visit the page in wechat on iphone</p>
<h3 dir="auto">Steps to reproduce</h3>
<p dir="auto"><a href="http://jsbin.com/kiquvesiju/edit?html,js,output" rel="nofollow">http://jsbin.com/kiquvesiju/edit?html,js,output</a></p>
<ol dir="auto">
<li>visit the page in wechat on iphone</li>
<li>switch to chinese ime(input method)</li>
<li>input any chinese <em><strong>without entering(hit) "确认/OK"</strong></em> and jump to next input field</li>
<li>Alerted message when hit the "echo a1" button is empty.</li>
</ol>
<h3 dir="auto">What is Expected?</h3>
<p dir="auto">expected echo data is your input message</p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto">Alerted message when hit the "echo a1" button is empty.</p> | 1 |
<p dir="auto">I think backprop through <code class="notranslate">torch.where</code> is wrong in certain special cases.</p>
<h2 dir="auto">To Reproduce</h2>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="t = 0
x = torch.ones(()).requires_grad_()
y = t * (x / t) # just an example; anything that produces nan's works
z = torch.where(x >= t, x, y)
z.backward()
# the forward pass works fine (the `nan`'s in `y` do not affect z)
# NOTE: this is unlike a naive implement of where that does `cond * x + (1 - cond) * y`
print(z)
# tensor(1., grad_fn=<SWhereBackward>)
# but the backward pass backprops the `nan`'s from y into x, even though the y path is never taken in torch.where
print(x.grad)
# tensor(nan)"><pre class="notranslate"><span class="pl-s1">t</span> <span class="pl-c1">=</span> <span class="pl-c1">0</span>
<span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-en">ones</span>(()).<span class="pl-en">requires_grad_</span>()
<span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-s1">t</span> <span class="pl-c1">*</span> (<span class="pl-s1">x</span> <span class="pl-c1">/</span> <span class="pl-s1">t</span>) <span class="pl-c"># just an example; anything that produces nan's works</span>
<span class="pl-s1">z</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-en">where</span>(<span class="pl-s1">x</span> <span class="pl-c1">>=</span> <span class="pl-s1">t</span>, <span class="pl-s1">x</span>, <span class="pl-s1">y</span>)
<span class="pl-s1">z</span>.<span class="pl-en">backward</span>()
<span class="pl-c"># the forward pass works fine (the `nan`'s in `y` do not affect z)</span>
<span class="pl-c"># NOTE: this is unlike a naive implement of where that does `cond * x + (1 - cond) * y`</span>
<span class="pl-en">print</span>(<span class="pl-s1">z</span>)
<span class="pl-c"># tensor(1., grad_fn=<SWhereBackward>)</span>
<span class="pl-c"># but the backward pass backprops the `nan`'s from y into x, even though the y path is never taken in torch.where</span>
<span class="pl-en">print</span>(<span class="pl-s1">x</span>.<span class="pl-s1">grad</span>)
<span class="pl-c"># tensor(nan)</span></pre></div>
<h2 dir="auto">Expected behavior</h2>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="print(x.grad)
# tensor(1.)"><pre class="notranslate"><span class="pl-en">print</span>(<span class="pl-s1">x</span>.<span class="pl-s1">grad</span>)
<span class="pl-c"># tensor(1.)</span></pre></div>
<p dir="auto">This would be the correct gradient.</p>
<p dir="auto">In practice, this bug can easily happen if one runs the above code for different t (including 0) and assumes that the <code class="notranslate">nan</code>'s for <code class="notranslate">t = 0</code> should not matter because the <code class="notranslate">torch.where</code> always selects the first path that has no <code class="notranslate">nan</code>s (and the forward pass does handle it correctly).</p>
<h2 dir="auto">Environment</h2>
<ul dir="auto">
<li>PyTorch Version 1.4</li>
</ul> | <h2 dir="auto"><g-emoji class="g-emoji" alias="bug" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f41b.png">🐛</g-emoji> Bug</h2>
<p dir="auto">The <code class="notranslate">grad_fn</code> of <code class="notranslate">torch.where</code> returns the gradients of the wrong argument, rather than of the selected tensor, if the other tensor's gradients have infs or nans.</p>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">Run this code:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="x = torch.tensor([16., 0.], requires_grad=True)
y = x/2 # tensor([8., 0.], grad_fn=<DivBackward0>)
z = x.sqrt() + 1 # tensor([5., 1.], grad_fn=<SqrtBackward>)
# Calculate dy/dx, dz/dx
dydx = torch.autograd.grad(y.sum(), x, retain_graph=True)[0] # tensor([0.5000, 0.5000])
dzdx = torch.autograd.grad(z.sum(), x, retain_graph=True)[0] # tensor([0.1250, inf])
# Define w = [w0, w1] == [y0, z1]
w = torch.where(x == 0., y, z) # tensor([5., 0.], grad_fn=<SWhereBackward>)
expected_dw_dx = torch.where(x == 0., dydx, dzdx) # tensor([0.1250, 0.5000])
dwdx = torch.autograd.grad(w.sum(), x, retain_graph=True)[0] # is actually tensor([0.1250, inf])
print("`torch.where` communicates gradients correctly:", torch.equal(expected_dw_dx, dwdx))"><pre class="notranslate"><span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-en">tensor</span>([<span class="pl-c1">16.</span>, <span class="pl-c1">0.</span>], <span class="pl-s1">requires_grad</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)
<span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-s1">x</span><span class="pl-c1">/</span><span class="pl-c1">2</span> <span class="pl-c"># tensor([8., 0.], grad_fn=<DivBackward0>)</span>
<span class="pl-s1">z</span> <span class="pl-c1">=</span> <span class="pl-s1">x</span>.<span class="pl-en">sqrt</span>() <span class="pl-c1">+</span> <span class="pl-c1">1</span> <span class="pl-c"># tensor([5., 1.], grad_fn=<SqrtBackward>)</span>
<span class="pl-c"># Calculate dy/dx, dz/dx</span>
<span class="pl-s1">dydx</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-s1">autograd</span>.<span class="pl-en">grad</span>(<span class="pl-s1">y</span>.<span class="pl-en">sum</span>(), <span class="pl-s1">x</span>, <span class="pl-s1">retain_graph</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)[<span class="pl-c1">0</span>] <span class="pl-c"># tensor([0.5000, 0.5000])</span>
<span class="pl-s1">dzdx</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-s1">autograd</span>.<span class="pl-en">grad</span>(<span class="pl-s1">z</span>.<span class="pl-en">sum</span>(), <span class="pl-s1">x</span>, <span class="pl-s1">retain_graph</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)[<span class="pl-c1">0</span>] <span class="pl-c"># tensor([0.1250, inf])</span>
<span class="pl-c"># Define w = [w0, w1] == [y0, z1]</span>
<span class="pl-s1">w</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-en">where</span>(<span class="pl-s1">x</span> <span class="pl-c1">==</span> <span class="pl-c1">0.</span>, <span class="pl-s1">y</span>, <span class="pl-s1">z</span>) <span class="pl-c"># tensor([5., 0.], grad_fn=<SWhereBackward>)</span>
<span class="pl-s1">expected_dw_dx</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-en">where</span>(<span class="pl-s1">x</span> <span class="pl-c1">==</span> <span class="pl-c1">0.</span>, <span class="pl-s1">dydx</span>, <span class="pl-s1">dzdx</span>) <span class="pl-c"># tensor([0.1250, 0.5000])</span>
<span class="pl-s1">dwdx</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-s1">autograd</span>.<span class="pl-en">grad</span>(<span class="pl-s1">w</span>.<span class="pl-en">sum</span>(), <span class="pl-s1">x</span>, <span class="pl-s1">retain_graph</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)[<span class="pl-c1">0</span>] <span class="pl-c"># is actually tensor([0.1250, inf])</span>
<span class="pl-en">print</span>(<span class="pl-s">"`torch.where` communicates gradients correctly:"</span>, <span class="pl-s1">torch</span>.<span class="pl-en">equal</span>(<span class="pl-s1">expected_dw_dx</span>, <span class="pl-s1">dwdx</span>))</pre></div>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">I would expect <code class="notranslate">expected_dw_dx == dwdx</code> in the example above.</p>
<h2 dir="auto">Environment</h2>
<p dir="auto">Please copy and paste the output from our<br>
<a href="https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py" rel="nofollow">environment collection script</a><br>
(or fill out the checklist below manually).</p>
<p dir="auto">You can get the script and run it with:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="wget https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py
# For security purposes, please check the contents of collect_env.py before running it.
python collect_env.py"><pre class="notranslate"><code class="notranslate">wget https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py
# For security purposes, please check the contents of collect_env.py before running it.
python collect_env.py
</code></pre></div>
<p dir="auto">PyTorch version: 1.1.0<br>
Is debug build: No<br>
CUDA used to build PyTorch: 9.0.176</p>
<p dir="auto">OS: Ubuntu 18.04.1 LTS<br>
GCC version: (Ubuntu 7.3.0-27ubuntu1~18.04) 7.3.0<br>
CMake version: version 3.10.2</p>
<p dir="auto">Python version: 3.7<br>
Is CUDA available: Yes<br>
CUDA runtime version: 9.0.176<br>
GPU models and configuration:<br>
GPU 0: Quadro GP100<br>
GPU 1: Quadro GP100</p>
<p dir="auto">Nvidia driver version: 410.79<br>
cuDNN version: Could not collect</p>
<p dir="auto">Versions of relevant libraries:<br>
[pip] numpy==1.16.4<br>
[pip] torch==1.1.0<br>
[pip] torchvision==0.3.0<br>
[conda] torch 1.1.0 <br>
[conda] torchvision 0.3.0 </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="[ ] bug report => search github for a similar issue or PR before submitting
[x ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[ ] bug report => search github for a similar issue or PR before submitting
[x ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong><br>
I love the transition to one-way data flow in Angular 2+. But there seems to be a gap when it comes to implementing strict one-way data flow with input controls. If I understand correctly, if you want to do one-way data flow with an input, you can just use [ngModel] to pass in the source model value and then handle the change event to update the source model. The only problem with this is that if something goes wrong and that change event doesn't get handled correctly, the view and the model can get out of sync.</p>
<p dir="auto">ReactJS has the concept of a 'controlled input' where there is a guarantee made that the view will always show the current model value. Meaning, if you don't manually update the model in response to a change event or something goes wrong, the view value will not change. It's a nice guarantee.</p>
<p dir="auto">Without this guarantee, I'm a little more hesitant to do one-way data flow with inputs and without the one-way data flow it's hard to do stuff like immutability and you miss out on the simplification that can come from one-way data flow.</p>
<p dir="auto">With things like radio/checkbox inputs, this isn't as big of a deal because it's not too difficult to role your own custom radio/checkbox that only reflects the model value and emits change events. The difficult one is the text input because it would be pretty intense to 'role your own' text input. :)</p>
<p dir="auto"><strong>Expected behavior</strong><br>
It would be nice if there was a directive or official 'best practices' in the documentation for this scenario. I understand that it's not a trivial task to 'guarantee the model and view are always in sync.' (you might have to deal with stuff like cursor jump, etc.) And there might not be a one-size fits all solution but it would nice if there were at least some best practices in the documentation. I've considered a setup where you have a component wrapper directive around an input and when a change event is fired it would in turn fire it's own change event and then manually kick off a change detection (so would run outside the zone). Then after that finishes it would check the model value and if it's not the same as the view value, it would revert/update the view value to match the model.</p>
<p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong><br>
<a href="http://plnkr.co/edit/R91YQ2ddsd0SxOcKzUce?p=preview" rel="nofollow">http://plnkr.co/edit/R91YQ2ddsd0SxOcKzUce?p=preview</a></p>
<p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br>
To allow for immutable state (e.g. Redux) and full one-way data flow when dealing with inputs.</p>
<p dir="auto"><strong>Please tell us about your environment:</strong><br>
all</p>
<ul dir="auto">
<li>
<p dir="auto"><strong>Angular version:</strong> 2.0.X<br>
all</p>
</li>
<li>
<p dir="auto"><strong>Browser:</strong><br>
all</p>
</li>
<li>
<p dir="auto"><strong>Language:</strong><br>
all</p>
</li>
</ul>
<p dir="auto">Thanks for all the great work!<br>
Andy</p> | <p dir="auto">Hi,</p>
<p dir="auto">I've been following the Tour of Heroes tutorial. I've noticed that the back link to return from the hero detail component to the dashboard or the list of heroes does not work properly on safari.</p>
<p dir="auto">Environment:<br>
Safari 9.1 on Mac OS X 10.11.4</p>
<ol dir="auto">
<li>Go to <a href="https://angular.io/resources/live-examples/toh-5/ts/plnkr.html" rel="nofollow">https://angular.io/resources/live-examples/toh-5/ts/plnkr.html</a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/4221155/14768326/79dd1dbe-0a3f-11e6-9fbe-ca021d692090.png"><img src="https://cloud.githubusercontent.com/assets/4221155/14768326/79dd1dbe-0a3f-11e6-9fbe-ca021d692090.png" alt="dashboard-on-init" style="max-width: 100%;"></a></li>
<li>click on one hero on the dashboard => details appears<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/4221155/14768327/7ecdc71a-0a3f-11e6-96a2-3e8ff471e427.png"><img src="https://cloud.githubusercontent.com/assets/4221155/14768327/7ecdc71a-0a3f-11e6-96a2-3e8ff471e427.png" alt="detail" style="max-width: 100%;"></a></li>
<li>click on the back button at the button => the dashboard is empty !!!<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/4221155/14768329/81e9991a-0a3f-11e6-9136-9476b63a00a7.png"><img src="https://cloud.githubusercontent.com/assets/4221155/14768329/81e9991a-0a3f-11e6-9136-9476b63a00a7.png" alt="dashboard-after-back" style="max-width: 100%;"></a></li>
</ol>
<p dir="auto">I tested it on Firefox 45.0.1 and it works ok: in step 3 the dashboard is correctly populated.</p>
<p dir="auto">thanks.</p>
<p dir="auto">Brieuc</p> | 0 |
<p dir="auto">The tagline of PyTorch is:</p>
<blockquote>
<p dir="auto">PyTorch is a deep learning framework that puts Python first.</p>
</blockquote>
<p dir="auto">Pip and Pipenv are the quintessential Python package manager tools for Python...</p>
<p dir="auto">However, upon following the Pip (Python 3.6, OS X) instructions on <a href="http://pytorch.org/" rel="nofollow">http://pytorch.org/</a>, I was met with an error informing me I needed Conda. If I don't intend on using R, Fortran, etc. directly in my app, is Conda still an intrinsic requirement of projects like PyTorch that e.g., use Fortran, or could PyTorch be made to install via Pip alone?</p>
<p dir="auto">If there are low-level system requirements, I (and I think I speak for more than myself) don't mind e.g., brew installing CUDA. IOW, I'd like to be told "look, you need to install Go and CUDA to use this library", and then be given the choice of how I want to install those low-level system requirements and / or tools. Anything else could then be easily installed via e.g., Pipenv, rather than having to install some monolithic system like Conda, which is the antithesis of <code class="notranslate">Python first</code>.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import this"><pre class="notranslate"><code class="notranslate">import this
</code></pre></div>
<blockquote>
<p dir="auto">...<br>
There should be one-- and preferably only one --obvious way to do it.<br>
...<br>
If the implementation is hard to explain, it's a bad idea.<br>
...</p>
</blockquote>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ezyang/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ezyang">@ezyang</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/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/malfet/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/malfet">@malfet</a></p> | <h2 dir="auto"><g-emoji class="g-emoji" alias="bug" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f41b.png">🐛</g-emoji> Bug</h2>
<p dir="auto">Setting PyTorch default tensor type to cuda.FloatTensor on a Colab GPU instance leads pack_sequence to a Runtime error.</p>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">Steps to reproduce the behavior:</p>
<ol dir="auto">
<li><code class="notranslate">torch.set_default_tensor_type(torch.cuda.FloatTensor)</code></li>
<li><code class="notranslate">torch.nn.utils.rnn.pack_sequence([torch.tensor([1,2,3])])</code></li>
</ol>
<p dir="auto">The second statement will throw the following:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="RuntimeError Traceback (most recent call last)
<ipython-input-7-054f3bedf067> in <module>()
1 torch.set_default_tensor_type(torch.cuda.FloatTensor)
----> 2 torch.nn.utils.rnn.pack_sequence([torch.tensor([1,2,3])])
1 frames
/usr/local/lib/python3.6/dist-packages/torch/nn/utils/rnn.py in pack_sequence(sequences, enforce_sorted)
377 """
378 lengths = [v.size(0) for v in sequences]
--> 379 return pack_padded_sequence(pad_sequence(sequences), lengths, enforce_sorted=enforce_sorted)
/usr/local/lib/python3.6/dist-packages/torch/nn/utils/rnn.py in pack_padded_sequence(input, lengths, batch_first, enforce_sorted)
231
232 data, batch_sizes = \
--> 233 _VF._pack_padded_sequence(input, lengths, batch_first)
234 return PackedSequence(data, batch_sizes, sorted_indices, None)
235
RuntimeError: 'lengths' argument should be a 1D CPU int64 tensor"><pre class="notranslate"><code class="notranslate">RuntimeError Traceback (most recent call last)
<ipython-input-7-054f3bedf067> in <module>()
1 torch.set_default_tensor_type(torch.cuda.FloatTensor)
----> 2 torch.nn.utils.rnn.pack_sequence([torch.tensor([1,2,3])])
1 frames
/usr/local/lib/python3.6/dist-packages/torch/nn/utils/rnn.py in pack_sequence(sequences, enforce_sorted)
377 """
378 lengths = [v.size(0) for v in sequences]
--> 379 return pack_padded_sequence(pad_sequence(sequences), lengths, enforce_sorted=enforce_sorted)
/usr/local/lib/python3.6/dist-packages/torch/nn/utils/rnn.py in pack_padded_sequence(input, lengths, batch_first, enforce_sorted)
231
232 data, batch_sizes = \
--> 233 _VF._pack_padded_sequence(input, lengths, batch_first)
234 return PackedSequence(data, batch_sizes, sorted_indices, None)
235
RuntimeError: 'lengths' argument should be a 1D CPU int64 tensor
</code></pre></div>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">Return the packed sequence without fail.</p>
<h2 dir="auto">Environment</h2>
<p dir="auto">A Colab GPU instance.</p>
<p dir="auto">PyTorch version: 1.4.0<br>
Is debug build: No<br>
CUDA used to build PyTorch: 10.1</p>
<p dir="auto">OS: Ubuntu 18.04.3 LTS<br>
GCC version: (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0<br>
CMake version: version 3.12.0</p>
<p dir="auto">Python version: 3.6<br>
Is CUDA available: Yes<br>
CUDA runtime version: 10.0.130<br>
GPU models and configuration: GPU 0: Tesla T4<br>
Nvidia driver version: 418.67<br>
cuDNN version: /usr/lib/x86_64-linux-gnu/libcudnn.so.7.6.5</p>
<p dir="auto">Versions of relevant libraries:<br>
[pip3] numpy==1.17.5<br>
[pip3] torch==1.4.0<br>
[pip3] torchsummary==1.5.1<br>
[pip3] torchtext==0.3.1<br>
[pip3] torchvision==0.5.0<br>
[conda] Could not collect</p>
<h2 dir="auto">Additional context</h2> | 0 |
<p dir="auto">Would it be possible to set up a FancyZone that spans two monitors of the same resolution? There are times, for example, when I want to see as many pages in Word as possible and, since you can't maximise an app across multiple monitors, I have to stretch it to the size I want.</p> | <h1 dir="auto">Summary of the new feature/enhancement</h1>
<p dir="auto">Based on different tasks throughout my day, I would like to use different FancyZone layouts to switch between layouts quickly. As an example the 'productivity layout' would be different from 'Web Meeting' layout , then a 'focused' layout</p>
<p dir="auto">ideally be able to select multiple fancyzone layouts that can be added to a hotkey to change in between.</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.6.3</li>
<li>Operating System version: mac</li>
<li>Java version: 1.8</li>
<li>Registry: zookeeper</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ol dir="auto">
<li>use ReferenceConfig to get a service proxy</li>
<li>destroy ReferenceConfig</li>
<li>consumer node in Zookeeper has not been destroyed.</li>
</ol>
<h3 dir="auto">Cause</h3>
<p dir="auto">1、When ReferenceProtocol refer an invoker, the consumer node is first registered and then subscribed to the resources of the relevant provider in most cases.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="
private <T> Invoker<T> doRefer(Cluster cluster, Registry registry, Class<T> type, URL url) {
RegistryDirectory<T> directory = new RegistryDirectory<T>(type, url);
directory.setRegistry(registry);
directory.setProtocol(protocol);
// all attributes of REFER_KEY
Map<String, String> parameters = new HashMap<String, String>(directory.getUrl().getParameters());
URL subscribeUrl = new URL(Constants.CONSUMER_PROTOCOL, parameters.remove(Constants.REGISTER_IP_KEY), 0, type.getName(), parameters);
if (!Constants.ANY_VALUE.equals(url.getServiceInterface())
&& url.getParameter(Constants.REGISTER_KEY, true)) {
registry.register(subscribeUrl.addParameters(Constants.CATEGORY_KEY, Constants.CONSUMERS_CATEGORY,
Constants.CHECK_KEY, String.valueOf(false)));
}
directory.subscribe(subscribeUrl.addParameter(Constants.CATEGORY_KEY,
Constants.PROVIDERS_CATEGORY
+ "," + Constants.CONFIGURATORS_CATEGORY
+ "," + Constants.ROUTERS_CATEGORY));
Invoker invoker = cluster.join(directory);
ProviderConsumerRegTable.registerConsumer(invoker, url, subscribeUrl, directory);
return invoker;
}
"><pre class="notranslate"><code class="notranslate">
private <T> Invoker<T> doRefer(Cluster cluster, Registry registry, Class<T> type, URL url) {
RegistryDirectory<T> directory = new RegistryDirectory<T>(type, url);
directory.setRegistry(registry);
directory.setProtocol(protocol);
// all attributes of REFER_KEY
Map<String, String> parameters = new HashMap<String, String>(directory.getUrl().getParameters());
URL subscribeUrl = new URL(Constants.CONSUMER_PROTOCOL, parameters.remove(Constants.REGISTER_IP_KEY), 0, type.getName(), parameters);
if (!Constants.ANY_VALUE.equals(url.getServiceInterface())
&& url.getParameter(Constants.REGISTER_KEY, true)) {
registry.register(subscribeUrl.addParameters(Constants.CATEGORY_KEY, Constants.CONSUMERS_CATEGORY,
Constants.CHECK_KEY, String.valueOf(false)));
}
directory.subscribe(subscribeUrl.addParameter(Constants.CATEGORY_KEY,
Constants.PROVIDERS_CATEGORY
+ "," + Constants.CONFIGURATORS_CATEGORY
+ "," + Constants.ROUTERS_CATEGORY));
Invoker invoker = cluster.join(directory);
ProviderConsumerRegTable.registerConsumer(invoker, url, subscribeUrl, directory);
return invoker;
}
</code></pre></div>
<p dir="auto">2、When ReferenceConfig is in destroy, it only cancels subscription to related resources, but not to<br>
remove the consumer node.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="
@Override
public void destroy() {
if (isDestroyed()) {
return;
}
// unsubscribe.
try {
if (getConsumerUrl() != null && registry != null && registry.isAvailable()) {
registry.unsubscribe(getConsumerUrl(), this);
}
} catch (Throwable t) {
logger.warn("unexpected error when unsubscribe service " + serviceKey + "from registry" + registry.getUrl(), t);
}
super.destroy(); // must be executed after unsubscribing
try {
destroyAllInvokers();
} catch (Throwable t) {
logger.warn("Failed to destroy service " + serviceKey, t);
}
}
"><pre class="notranslate"><code class="notranslate">
@Override
public void destroy() {
if (isDestroyed()) {
return;
}
// unsubscribe.
try {
if (getConsumerUrl() != null && registry != null && registry.isAvailable()) {
registry.unsubscribe(getConsumerUrl(), this);
}
} catch (Throwable t) {
logger.warn("unexpected error when unsubscribe service " + serviceKey + "from registry" + registry.getUrl(), t);
}
super.destroy(); // must be executed after unsubscribing
try {
destroyAllInvokers();
} catch (Throwable t) {
logger.warn("Failed to destroy service " + serviceKey, t);
}
}
</code></pre></div> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: 2.7.3</li>
<li>Operating System version: macOs</li>
<li>Java version: 1.8</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ol dir="auto">
<li>启动服务端,再启动客户端</li>
<li>服务端拉出,再拉入集群</li>
<li>在服务端主动关闭连接,或者通过网络设备导致客户端与服务端的连接中断</li>
<li>客户端发送请求,会报message channel is closed的错误,只有重启才能恢复。</li>
</ol>
<p dir="auto">Pls. provide [GitHub address] to reproduce this issue.</p>
<h3 dir="auto">Expected Result</h3>
<p dir="auto">因为dubbo客户端有主动重新建连的功能,如果服务端主动关闭,应该只有少量请求报错,之后会重新建连恢复。如果网络设备出现问题,也应该在网络设备恢复后报错停止。</p>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">在部分情况下会一直报错,直到重启恢复。</p>
<p dir="auto">服务端在拉出之后,客户端会替换成lazyUrl,这里设置的RECONNECT_KEY为false</p>
<p dir="auto">org.apache.dubbo.rpc.protocol.dubbo.ReferenceCountExchangeClient</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="private void replaceWithLazyClient() {
URL lazyUrl = URLBuilder.from(url)
.addParameter(LAZY_CONNECT_INITIAL_STATE_KEY, Boolean.TRUE)
.addParameter(RECONNECT_KEY, Boolean.FALSE)
.addParameter(SEND_RECONNECT_KEY, Boolean.FALSE.toString())
.addParameter("warning", Boolean.TRUE.toString())
.addParameter(LazyConnectExchangeClient.REQUEST_WITH_WARNING_KEY, false)
.addParameter("_client_memo", "referencecounthandler.replacewithlazyclient")
.build();
if (!(client instanceof LazyConnectExchangeClient) || client.isClosed()) {
client = new LazyConnectExchangeClient(lazyUrl, client.getExchangeHandler());
}
}"><pre class="notranslate"><code class="notranslate">private void replaceWithLazyClient() {
URL lazyUrl = URLBuilder.from(url)
.addParameter(LAZY_CONNECT_INITIAL_STATE_KEY, Boolean.TRUE)
.addParameter(RECONNECT_KEY, Boolean.FALSE)
.addParameter(SEND_RECONNECT_KEY, Boolean.FALSE.toString())
.addParameter("warning", Boolean.TRUE.toString())
.addParameter(LazyConnectExchangeClient.REQUEST_WITH_WARNING_KEY, false)
.addParameter("_client_memo", "referencecounthandler.replacewithlazyclient")
.build();
if (!(client instanceof LazyConnectExchangeClient) || client.isClosed()) {
client = new LazyConnectExchangeClient(lazyUrl, client.getExchangeHandler());
}
}
</code></pre></div>
<p dir="auto">因为是lazy连接,在下一个请求发起之前会尝试重新建连,在启动ReconnectTimerTask的时候会看下shouldReconnect(url)的状态是否要重新建连。<br>
org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="private void startReconnectTask(URL url) {
if (shouldReconnect(url)) {
AbstractTimerTask.ChannelProvider cp = () -> Collections.singletonList(HeaderExchangeClient.this);
int idleTimeout = getIdleTimeout(url);
long heartbeatTimeoutTick = calculateLeastDuration(idleTimeout);
this.reconnectTimerTask = new ReconnectTimerTask(cp, heartbeatTimeoutTick, idleTimeout);
IDLE_CHECK_TIMER.newTimeout(reconnectTimerTask, heartbeatTimeoutTick, TimeUnit.MILLISECONDS);
}
}"><pre class="notranslate"><code class="notranslate">private void startReconnectTask(URL url) {
if (shouldReconnect(url)) {
AbstractTimerTask.ChannelProvider cp = () -> Collections.singletonList(HeaderExchangeClient.this);
int idleTimeout = getIdleTimeout(url);
long heartbeatTimeoutTick = calculateLeastDuration(idleTimeout);
this.reconnectTimerTask = new ReconnectTimerTask(cp, heartbeatTimeoutTick, idleTimeout);
IDLE_CHECK_TIMER.newTimeout(reconnectTimerTask, heartbeatTimeoutTick, TimeUnit.MILLISECONDS);
}
}
</code></pre></div>
<p dir="auto">如果被拉出之后再拉入,这里的url就是默认的false,不会启动ReconnectTimerTask</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="private boolean shouldReconnect(URL url) {
return url.getParameter(Constants.RECONNECT_KEY, true);
}"><pre class="notranslate"><code class="notranslate">private boolean shouldReconnect(URL url) {
return url.getParameter(Constants.RECONNECT_KEY, true);
}
</code></pre></div> | 0 |
<p dir="auto">I am glad to see the newly added einsum function. The documentation claims that its usage is the same as numpy. However, it can do almost nothing as compared to numpy. For example, it only supports subscripts in the form of '<em>-></em>'. Unfortunately, even matrix transpose does not work, i.e., 'ij->ji'.<br>
Numpy works:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=">>> A
array([[ 0.3828997 , -0.39114848, -0.09727838, -0.20430113],
[ 0.48020577, -0.47122706, 0.42830791, 0.25665744],
[-0.30885863, 0.21669025, 0.31648793, 0.22417514],
[ 0.32505724, 0.30478035, 0.48655034, 0.20040547]])
>>> einsum('ij->ji',A)
array([[ 0.3828997 , 0.48020577, -0.30885863, 0.32505724],
[-0.39114848, -0.47122706, 0.21669025, 0.30478035],
[-0.09727838, 0.42830791, 0.31648793, 0.48655034],
[-0.20430113, 0.25665744, 0.22417514, 0.20040547]])"><pre class="notranslate"><code class="notranslate">>>> A
array([[ 0.3828997 , -0.39114848, -0.09727838, -0.20430113],
[ 0.48020577, -0.47122706, 0.42830791, 0.25665744],
[-0.30885863, 0.21669025, 0.31648793, 0.22417514],
[ 0.32505724, 0.30478035, 0.48655034, 0.20040547]])
>>> einsum('ij->ji',A)
array([[ 0.3828997 , 0.48020577, -0.30885863, 0.32505724],
[-0.39114848, -0.47122706, 0.21669025, 0.30478035],
[-0.09727838, 0.42830791, 0.31648793, 0.48655034],
[-0.20430113, 0.25665744, 0.22417514, 0.20040547]])
</code></pre></div>
<p dir="auto">Tensorflow does not work:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="pseudo-code:
M_ = tf.Variable(tf.random_normal([4,4]))
N_ = tf.einsum('ij->ji',M_)
print [M_, N_]
output:
[array([[ 0.80474716, -1.38590837, -0.3379252 , -1.24965811],
[ 2.57852983, 0.05492432, 0.23039417, -0.74263287],
[-2.42627382, 1.70774114, 1.19503212, 0.43006262],
[-1.04652011, -0.32753903, -1.26430523, 0.8810069 ]], dtype=float32),
array([[ 0.80474716, -1.38590837, -0.3379252 , -1.24965811],
[ 2.57852983, 0.05492432, 0.23039417, -0.74263287],
[-2.42627382, 1.70774114, 1.19503212, 0.43006262],
[-1.04652011, -0.32753903, -1.26430523, 0.8810069 ]], dtype=float32)]"><pre class="notranslate"><code class="notranslate">pseudo-code:
M_ = tf.Variable(tf.random_normal([4,4]))
N_ = tf.einsum('ij->ji',M_)
print [M_, N_]
output:
[array([[ 0.80474716, -1.38590837, -0.3379252 , -1.24965811],
[ 2.57852983, 0.05492432, 0.23039417, -0.74263287],
[-2.42627382, 1.70774114, 1.19503212, 0.43006262],
[-1.04652011, -0.32753903, -1.26430523, 0.8810069 ]], dtype=float32),
array([[ 0.80474716, -1.38590837, -0.3379252 , -1.24965811],
[ 2.57852983, 0.05492432, 0.23039417, -0.74263287],
[-2.42627382, 1.70774114, 1.19503212, 0.43006262],
[-1.04652011, -0.32753903, -1.26430523, 0.8810069 ]], dtype=float32)]
</code></pre></div>
<p dir="auto">I want to multiply a matrix with every frame vector in every batch. Or similar operations which can be done by a simple tensor product. It seems that I still have to duplicate the matrix so many times and perform a batch_matmul, which is very inconvenient and slow and memory consuming.</p>
<p dir="auto">I suggest tensorflow to implement either the tensordot or einsum function which can perform tensor product.</p>
<p dir="auto">It is quite a shame that tensorflow cannot even perform basic tensor product so far :(</p> | <h3 dir="auto">System information</h3>
<ul dir="auto">
<li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04)</strong>: Ubuntu 16.04</li>
<li><strong>TensorFlow installed from (source or binary)</strong>: binary</li>
<li><strong>TensorFlow version (use command below)</strong>: 0.12.1</li>
<li><strong>Python version</strong>: 2.7.10</li>
<li><strong>Bazel version (if compiling from source)</strong>: None</li>
<li><strong>CUDA/cuDNN version</strong>: 5.1</li>
<li><strong>GPU model and memory</strong>: 1080-Ti</li>
<li><strong>Exact command to reproduce</strong>: None</li>
</ul>
<h3 dir="auto">Describe the problem</h3>
<p dir="auto">I'm trying to use Tensorflow in conjunction with PyTorch (I built the model in Tensorflow to generate vector representations and PyTorch trains on top of those). However, the problem is that PyTorch runs out of memory because TF will replicate the model in ALL available CUDA devices. In this case CUDA_VISIBLE_DEVICES is not helpful, and I tried GPU device tf.device("/gpu:0") but Tensorflow still fills up all GPUs' memory.</p>
<p dir="auto">Is there some way to actually limit Tensorflow's GPU usage to one and free up the other for other DL libraries like PyTorch or Theano?</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.6.2</li>
<li>Operating System version: deepin</li>
<li>Java version: 1.8</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ol dir="auto">
<li>我看过dubbo的<a href="http://dubbo.apache.org/zh-cn/docs/user/references/qos.html" rel="nofollow">qos文档</a>,代码也看过了,默认是开启qos的,我debug进去后发现也是开启了,但是我<code class="notranslate">lsof -i :22222</code> 的时候却发现没有启动,最后发现是缺少netty包,我想知道为什么maven依赖不往下传递</li>
</ol> | <p dir="auto">Duubo version 2.5.3</p>
<p dir="auto">I encounter a problem that some times my client will OOM due to too many threads. From the dump logs, I can see over 10,000 DubboClientHandler Threads in my consumer and they are in blocked state.</p>
<p dir="auto">I copied one pieace of the log like<br>
--------------- P R O C E S S ---------------</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Java Threads: ( => current thread )
0x00007fbe84c99800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1582" daemon [_thread_new, id=4697, stack(0x00007fb2b3274000,0x00007fb2b3375000)]
0x00007fbe84c97800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1581" daemon [_thread_new, id=4696, stack(0x00007fb2b3375000,0x00007fb2b3476000)]
0x00007fbe84c95800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1580" daemon [_thread_blocked, id=4695, stack(0x00007fb2b3476000,0x00007fb2b3577000)]
0x00007fbe84c93800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1579" daemon [_thread_blocked, id=4694, stack(0x00007fb2b3577000,0x00007fb2b3678000)]
=>0x00007fbe84c91800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1578" daemon [_thread_new, id=4693, stack(0x00007fb2b3678000,0x00007fb2b3779000)]
0x00007fbe84c8f800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1577" daemon [_thread_blocked, id=4692, stack(0x00007fb2b3779000,0x00007fb2b387a000)]
0x00007fbe84c8d800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1576" daemon [_thread_blocked, id=4691, stack(0x00007fb2b387a000,0x00007fb2b397b000)]
0x00007fbe84c8b800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1575" daemon [_thread_blocked, id=4690, stack(0x00007fb2b397b000,0x00007fb2b3a7c000)]
0x00007fbe84c89800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1574" daemon [_thread_blocked, id=4689, stack(0x00007fb2b3a7c000,0x00007fb2b3b7d000)]
0x00007fbe84c87000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1573" daemon [_thread_blocked, id=4688, stack(0x00007fb2b3b7d000,0x00007fb2b3c7e000)]
0x00007fbe84c85000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1572" daemon [_thread_blocked, id=4687, stack(0x00007fb2b3c7e000,0x00007fb2b3d7f000)]
0x00007fbe84c83000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1571" daemon [_thread_blocked, id=4686, stack(0x00007fb2b3d7f000,0x00007fb2b3e80000)]
0x00007fbe84c81000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1570" daemon [_thread_blocked, id=4685, stack(0x00007fb2b3e80000,0x00007fb2b3f81000)]
0x00007fbe84c7f000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1569" daemon [_thread_blocked, id=4684, stack(0x00007fb2b3f81000,0x00007fb2b4082000)]
0x00007fbe84c7d000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1568" daemon [_thread_blocked, id=4683, stack(0x00007fb2b4082000,0x00007fb2b4183000)]
0x00007fbe84c7b000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1567" daemon [_thread_blocked, id=4682, stack(0x00007fb2b4183000,0x00007fb2b4284000)]
0x00007fbe84c79000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1566" daemon [_thread_blocked, id=4681, stack(0x00007fb2b4284000,0x00007fb2b4385000)]
0x00007fbe84c77000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1565" daemon [_thread_blocked, id=4680, stack(0x00007fb2b4385000,0x00007fb2b4486000)]
0x00007fbe84c75000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1564" daemon [_thread_blocked, id=4679, stack(0x00007fb2b4486000,0x00007fb2b4587000)]
0x00007fbe84c73000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1563" daemon [_thread_blocked, id=4678, stack(0x00007fb2b4587000,0x00007fb2b4688000)]
0x00007fbe84c71000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1562" daemon [_thread_blocked, id=4677, stack(0x00007fb2b4688000,0x00007fb2b4789000)]
0x00007fbe84c6e800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1561" daemon [_thread_blocked, id=4676, stack(0x00007fb2b4789000,0x00007fb2b488a000)]
0x00007fbe84c6c800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1560" daemon [_thread_blocked, id=4675, stack(0x00007fb2b488a000,0x00007fb2b498b000)]
0x00007fbe84c6a800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1559" daemon [_thread_blocked, id=4674, stack(0x00007fb2b498b000,0x00007fb2b4a8c000)]
0x00007fbe84c68800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1558" daemon [_thread_blocked, id=4673, stack(0x00007fb2b4a8c000,0x00007fb2b4b8d000)]
..........
"><pre class="notranslate"><code class="notranslate">Java Threads: ( => current thread )
0x00007fbe84c99800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1582" daemon [_thread_new, id=4697, stack(0x00007fb2b3274000,0x00007fb2b3375000)]
0x00007fbe84c97800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1581" daemon [_thread_new, id=4696, stack(0x00007fb2b3375000,0x00007fb2b3476000)]
0x00007fbe84c95800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1580" daemon [_thread_blocked, id=4695, stack(0x00007fb2b3476000,0x00007fb2b3577000)]
0x00007fbe84c93800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1579" daemon [_thread_blocked, id=4694, stack(0x00007fb2b3577000,0x00007fb2b3678000)]
=>0x00007fbe84c91800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1578" daemon [_thread_new, id=4693, stack(0x00007fb2b3678000,0x00007fb2b3779000)]
0x00007fbe84c8f800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1577" daemon [_thread_blocked, id=4692, stack(0x00007fb2b3779000,0x00007fb2b387a000)]
0x00007fbe84c8d800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1576" daemon [_thread_blocked, id=4691, stack(0x00007fb2b387a000,0x00007fb2b397b000)]
0x00007fbe84c8b800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1575" daemon [_thread_blocked, id=4690, stack(0x00007fb2b397b000,0x00007fb2b3a7c000)]
0x00007fbe84c89800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1574" daemon [_thread_blocked, id=4689, stack(0x00007fb2b3a7c000,0x00007fb2b3b7d000)]
0x00007fbe84c87000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1573" daemon [_thread_blocked, id=4688, stack(0x00007fb2b3b7d000,0x00007fb2b3c7e000)]
0x00007fbe84c85000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1572" daemon [_thread_blocked, id=4687, stack(0x00007fb2b3c7e000,0x00007fb2b3d7f000)]
0x00007fbe84c83000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1571" daemon [_thread_blocked, id=4686, stack(0x00007fb2b3d7f000,0x00007fb2b3e80000)]
0x00007fbe84c81000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1570" daemon [_thread_blocked, id=4685, stack(0x00007fb2b3e80000,0x00007fb2b3f81000)]
0x00007fbe84c7f000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1569" daemon [_thread_blocked, id=4684, stack(0x00007fb2b3f81000,0x00007fb2b4082000)]
0x00007fbe84c7d000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1568" daemon [_thread_blocked, id=4683, stack(0x00007fb2b4082000,0x00007fb2b4183000)]
0x00007fbe84c7b000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1567" daemon [_thread_blocked, id=4682, stack(0x00007fb2b4183000,0x00007fb2b4284000)]
0x00007fbe84c79000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1566" daemon [_thread_blocked, id=4681, stack(0x00007fb2b4284000,0x00007fb2b4385000)]
0x00007fbe84c77000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1565" daemon [_thread_blocked, id=4680, stack(0x00007fb2b4385000,0x00007fb2b4486000)]
0x00007fbe84c75000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1564" daemon [_thread_blocked, id=4679, stack(0x00007fb2b4486000,0x00007fb2b4587000)]
0x00007fbe84c73000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1563" daemon [_thread_blocked, id=4678, stack(0x00007fb2b4587000,0x00007fb2b4688000)]
0x00007fbe84c71000 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1562" daemon [_thread_blocked, id=4677, stack(0x00007fb2b4688000,0x00007fb2b4789000)]
0x00007fbe84c6e800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1561" daemon [_thread_blocked, id=4676, stack(0x00007fb2b4789000,0x00007fb2b488a000)]
0x00007fbe84c6c800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1560" daemon [_thread_blocked, id=4675, stack(0x00007fb2b488a000,0x00007fb2b498b000)]
0x00007fbe84c6a800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1559" daemon [_thread_blocked, id=4674, stack(0x00007fb2b498b000,0x00007fb2b4a8c000)]
0x00007fbe84c68800 JavaThread "DubboClientHandler-10.12.156.10:9006-thread-1558" daemon [_thread_blocked, id=4673, stack(0x00007fb2b4a8c000,0x00007fb2b4b8d000)]
..........
</code></pre></div>
<p dir="auto">As you can see, there are more than 1000 threads for only one dubbo providers instance 10.12.156.10 and most of them are in blocked state.</p>
<p dir="auto">But actually, I have set the actives = 20, why there are still so many threads here? Is this a bug?</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="side = consumer
methods = addUnicastMessage,computeSlot,generateInboxIndex,getMessageList,getShardingConfig,addMultiMessage,deleteMessage,addTaskMessage
dubbo = 2.5.3
loadbalance = roundrobin
pid = 5052
check = false
interface = com.oppo.push.inbox.api.service.InboxService
actives = 20
revision = 1.0.0-20180529.054252-15
application = push-open-ndispatcher
category = consumers
timestamp = 1528851951549
"><pre class="notranslate"><code class="notranslate">side = consumer
methods = addUnicastMessage,computeSlot,generateInboxIndex,getMessageList,getShardingConfig,addMultiMessage,deleteMessage,addTaskMessage
dubbo = 2.5.3
loadbalance = roundrobin
pid = 5052
check = false
interface = com.oppo.push.inbox.api.service.InboxService
actives = 20
revision = 1.0.0-20180529.054252-15
application = push-open-ndispatcher
category = consumers
timestamp = 1528851951549
</code></pre></div>
<hr>
<h2 dir="auto">Update 2018/06/20</h2>
<p dir="auto">Finnaly, I got a jstack dump by jstack my process every one minute and then I collect the latest one before my process crashes.</p>
<p dir="auto">Indeed, I found tens of thousands of threads are created and they are all in waiting condition, waiting lockback.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""DubboClientHandler-10.12.158.6:9006-thread-1202" #36020 daemon prio=5 os_prio=0 tid=0x00007f5fd0607800 nid=0x716b waiting on condition [0x00007f5a1a454000]
java.lang.Thread.State: WAITING (parking)
at sun.misc.Unsafe.park(Native Method)
- parking to wait for <0x00000004402fdca8> (a java.util.concurrent.locks.ReentrantLock$FairSync)
at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
at java.util.concurrent.locks.AbstractQueuedSynchronizer.parkAndCheckInterrupt(AbstractQueuedSynchronizer.java:836)
at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireQueued(AbstractQueuedSynchronizer.java:870)
at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(AbstractQueuedSynchronizer.java:1199)
at java.util.concurrent.locks.ReentrantLock$FairSync.lock(ReentrantLock.java:224)
at java.util.concurrent.locks.ReentrantLock.lock(ReentrantLock.java:285)
at ch.qos.logback.core.OutputStreamAppender.subAppend(OutputStreamAppender.java:210)
at ch.qos.logback.core.rolling.RollingFileAppender.subAppend(RollingFileAppender.java:228)
at ch.qos.logback.core.OutputStreamAppender.append(OutputStreamAppender.java:100)
at ch.qos.logback.core.UnsynchronizedAppenderBase.doAppend(UnsynchronizedAppenderBase.java:84)
at ch.qos.logback.core.spi.AppenderAttachableImpl.appendLoopOnAppenders(AppenderAttachableImpl.java:48)
at ch.qos.logback.classic.Logger.appendLoopOnAppenders(Logger.java:270)
at ch.qos.logback.classic.Logger.callAppenders(Logger.java:257)
at ch.qos.logback.classic.Logger.buildLoggingEventAndAppend(Logger.java:421)
at ch.qos.logback.classic.Logger.filterAndLog_0_Or3Plus(Logger.java:383)
at ch.qos.logback.classic.Logger.log(Logger.java:765)
at org.apache.log4j.Category.differentiatedLog(Category.java:193)
at org.apache.log4j.Category.log(Category.java:297)
at com.alibaba.dubbo.common.logger.log4j.Log4jLogger.warn(Log4jLogger.java:70)
at com.alibaba.dubbo.common.logger.support.FailsafeLogger.warn(FailsafeLogger.java:107)
at com.alibaba.dubbo.remoting.exchange.support.DefaultFuture.received(DefaultFuture.java:242)
at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleResponse(HeaderExchangeHandler.java:96)
at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:177)
at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:52)
at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:82)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)"><pre class="notranslate"><code class="notranslate">"DubboClientHandler-10.12.158.6:9006-thread-1202" #36020 daemon prio=5 os_prio=0 tid=0x00007f5fd0607800 nid=0x716b waiting on condition [0x00007f5a1a454000]
java.lang.Thread.State: WAITING (parking)
at sun.misc.Unsafe.park(Native Method)
- parking to wait for <0x00000004402fdca8> (a java.util.concurrent.locks.ReentrantLock$FairSync)
at java.util.concurrent.locks.LockSupport.park(LockSupport.java:175)
at java.util.concurrent.locks.AbstractQueuedSynchronizer.parkAndCheckInterrupt(AbstractQueuedSynchronizer.java:836)
at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireQueued(AbstractQueuedSynchronizer.java:870)
at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(AbstractQueuedSynchronizer.java:1199)
at java.util.concurrent.locks.ReentrantLock$FairSync.lock(ReentrantLock.java:224)
at java.util.concurrent.locks.ReentrantLock.lock(ReentrantLock.java:285)
at ch.qos.logback.core.OutputStreamAppender.subAppend(OutputStreamAppender.java:210)
at ch.qos.logback.core.rolling.RollingFileAppender.subAppend(RollingFileAppender.java:228)
at ch.qos.logback.core.OutputStreamAppender.append(OutputStreamAppender.java:100)
at ch.qos.logback.core.UnsynchronizedAppenderBase.doAppend(UnsynchronizedAppenderBase.java:84)
at ch.qos.logback.core.spi.AppenderAttachableImpl.appendLoopOnAppenders(AppenderAttachableImpl.java:48)
at ch.qos.logback.classic.Logger.appendLoopOnAppenders(Logger.java:270)
at ch.qos.logback.classic.Logger.callAppenders(Logger.java:257)
at ch.qos.logback.classic.Logger.buildLoggingEventAndAppend(Logger.java:421)
at ch.qos.logback.classic.Logger.filterAndLog_0_Or3Plus(Logger.java:383)
at ch.qos.logback.classic.Logger.log(Logger.java:765)
at org.apache.log4j.Category.differentiatedLog(Category.java:193)
at org.apache.log4j.Category.log(Category.java:297)
at com.alibaba.dubbo.common.logger.log4j.Log4jLogger.warn(Log4jLogger.java:70)
at com.alibaba.dubbo.common.logger.support.FailsafeLogger.warn(FailsafeLogger.java:107)
at com.alibaba.dubbo.remoting.exchange.support.DefaultFuture.received(DefaultFuture.java:242)
at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleResponse(HeaderExchangeHandler.java:96)
at com.alibaba.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:177)
at com.alibaba.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:52)
at com.alibaba.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:82)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
</code></pre></div>
<p dir="auto">And I look into the code , it seems there are a netty server in the client which listen response from the server, and after the time out message is received, it will log a message, which is executing in a thread pool.</p>
<p dir="auto">But the client is a CACHED THREAD POOL which has no limit! So in such case, when there are a lot of time out message receive in the same time, client will suffer from large number of threads, which may cause OOM.</p>
<p dir="auto">My logback configuration is :</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="
<appender name="file_dubbo" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>/data/logs/opush-ts-dispatcher/opush_dispatcher_task_dubbo.log</file>
<rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
<fileNamePattern>/data/logs/opush-ts-dispatcher/opush_dispatcher_task_dubbo.%i.log</fileNamePattern>
<minIndex>1</minIndex>
<maxIndex>10</maxIndex>
</rollingPolicy>
<triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
<maxFileSize>50MB</maxFileSize>
</triggeringPolicy>
<encoder>
<pattern>%-20(%d{HH:mm:ss.SSS} [%thread]) %-5level %logger{80} - %msg%n</pattern>
</encoder>
</appender>
"><pre class="notranslate"><code class="notranslate">
<appender name="file_dubbo" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>/data/logs/opush-ts-dispatcher/opush_dispatcher_task_dubbo.log</file>
<rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
<fileNamePattern>/data/logs/opush-ts-dispatcher/opush_dispatcher_task_dubbo.%i.log</fileNamePattern>
<minIndex>1</minIndex>
<maxIndex>10</maxIndex>
</rollingPolicy>
<triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
<maxFileSize>50MB</maxFileSize>
</triggeringPolicy>
<encoder>
<pattern>%-20(%d{HH:mm:ss.SSS} [%thread]) %-5level %logger{80} - %msg%n</pattern>
</encoder>
</appender>
</code></pre></div> | 0 |
<p dir="auto">with <a href="https://github.com/cmr/rust/tree/methodize/char">https://github.com/cmr/rust/tree/methodize/char</a> I consistently get</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[17:50:25]~/hacking/rust/build> make check
cfg: build triple x86_64-unknown-linux-gnu
cfg: host triples x86_64-unknown-linux-gnu
cfg: target triples x86_64-unknown-linux-gnu
cfg: disabling rustc optimization (CFG_DISABLE_OPTIMIZE)
cfg: host for x86_64-unknown-linux-gnu is x86_64
cfg: os for x86_64-unknown-linux-gnu is unknown-linux-gnu
cfg: disabling C++ optimization (CFG_DISABLE_OPTIMIZE_CXX)
cfg: using gcc
cfg: no pandoc found, omitting doc/rust.pdf
cfg: no llnextgen found, omitting grammar-verification
cfg: no pandoc found, omitting library doc build
cfg: including dist rules
cfg: including test rules
check: formatting
/home/cmr/hacking/rust/src/libsyntax/parse/common.rs:143: NOTE: this could be done statically....
/home/cmr/hacking/rust/src/libcore/reflect.rs:423: NOTE remove after next snapshot
/home/cmr/hacking/rust/src/libcore/reflect.rs:456: NOTE remove after next snapshot
/home/cmr/hacking/rust/src/libcore/rt/io/flate.rs:13: NOTE: These ultimately belong somewhere else
compile_and_link: x86_64-unknown-linux-gnu/stage0/lib/rustc/x86_64-unknown-linux-gnu/lib/libcore.so
rustc: /home/rustbuild/src/rust-buildbot/slave/snap3-linux/build/src/llvm/lib/VMCore/Instructions.cpp:2383: static llvm::CastInst* llvm::CastInst::CreatePointerCast(llvm::Value*, llvm::Type*, const llvm::Twine&, llvm::Instruction*): Assertion `S->getType()->isPointerTy() && "Invalid cast"' failed.
/bin/sh: line 1: 15788 Aborted (core dumped) x86_64-unknown-linux-gnu/stage0/bin/rustc --cfg stage0 --target=x86_64-unknown-linux-gnu -o x86_64-unknown-linux-gnu/stage0/lib/rustc/x86_64-unknown-linux-gnu/lib/libcore.so /home/cmr/hacking/rust/src/libcore/core.rc
make: *** [x86_64-unknown-linux-gnu/stage0/lib/rustc/x86_64-unknown-linux-gnu/lib/libcore.so] Error 134
"><pre class="notranslate"><code class="notranslate">[17:50:25]~/hacking/rust/build> make check
cfg: build triple x86_64-unknown-linux-gnu
cfg: host triples x86_64-unknown-linux-gnu
cfg: target triples x86_64-unknown-linux-gnu
cfg: disabling rustc optimization (CFG_DISABLE_OPTIMIZE)
cfg: host for x86_64-unknown-linux-gnu is x86_64
cfg: os for x86_64-unknown-linux-gnu is unknown-linux-gnu
cfg: disabling C++ optimization (CFG_DISABLE_OPTIMIZE_CXX)
cfg: using gcc
cfg: no pandoc found, omitting doc/rust.pdf
cfg: no llnextgen found, omitting grammar-verification
cfg: no pandoc found, omitting library doc build
cfg: including dist rules
cfg: including test rules
check: formatting
/home/cmr/hacking/rust/src/libsyntax/parse/common.rs:143: NOTE: this could be done statically....
/home/cmr/hacking/rust/src/libcore/reflect.rs:423: NOTE remove after next snapshot
/home/cmr/hacking/rust/src/libcore/reflect.rs:456: NOTE remove after next snapshot
/home/cmr/hacking/rust/src/libcore/rt/io/flate.rs:13: NOTE: These ultimately belong somewhere else
compile_and_link: x86_64-unknown-linux-gnu/stage0/lib/rustc/x86_64-unknown-linux-gnu/lib/libcore.so
rustc: /home/rustbuild/src/rust-buildbot/slave/snap3-linux/build/src/llvm/lib/VMCore/Instructions.cpp:2383: static llvm::CastInst* llvm::CastInst::CreatePointerCast(llvm::Value*, llvm::Type*, const llvm::Twine&, llvm::Instruction*): Assertion `S->getType()->isPointerTy() && "Invalid cast"' failed.
/bin/sh: line 1: 15788 Aborted (core dumped) x86_64-unknown-linux-gnu/stage0/bin/rustc --cfg stage0 --target=x86_64-unknown-linux-gnu -o x86_64-unknown-linux-gnu/stage0/lib/rustc/x86_64-unknown-linux-gnu/lib/libcore.so /home/cmr/hacking/rust/src/libcore/core.rc
make: *** [x86_64-unknown-linux-gnu/stage0/lib/rustc/x86_64-unknown-linux-gnu/lib/libcore.so] Error 134
</code></pre></div>
<p dir="auto">Runs fine before the char commit. I don't know how to strip it down, because I have no idea what could be failing</p> | <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="trait FTErrorMethods {
fn succeeded(self) -> bool;
}
impl FTErrorMethods for int {
fn succeeded(self) -> bool { self == 0 }
}
fn main() {
5.succeeded();
}"><pre class="notranslate"><span class="pl-k">trait</span> <span class="pl-smi">FTErrorMethods</span> <span class="pl-kos">{</span>
<span class="pl-k">fn</span> <span class="pl-en">succeeded</span><span class="pl-kos">(</span><span class="pl-smi">self</span><span class="pl-kos">)</span> -> <span class="pl-smi">bool</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">impl</span> <span class="pl-smi">FTErrorMethods</span> <span class="pl-k">for</span> <span class="pl-smi">int</span> <span class="pl-kos">{</span>
<span class="pl-k">fn</span> <span class="pl-en">succeeded</span><span class="pl-kos">(</span><span class="pl-smi">self</span><span class="pl-kos">)</span> -> <span class="pl-smi">bool</span> <span class="pl-kos">{</span> <span class="pl-smi">self</span> == <span class="pl-c1">0</span> <span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">fn</span> <span class="pl-en">main</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-c1">5</span><span class="pl-kos">.</span><span class="pl-en">succeeded</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="rustc: /run/media/jdm/ssd/rust/src/llvm/lib/VMCore/Instructions.cpp:2383: static llvm::CastInst* llvm::CastInst::CreatePointerCast(llvm::Value*, llvm::Type*, const llvm::Twine&, llvm::Instruction*): Assertion `S->getType()->isPointerTy() && "Invalid cast"' failed."><pre class="notranslate"><code class="notranslate">rustc: /run/media/jdm/ssd/rust/src/llvm/lib/VMCore/Instructions.cpp:2383: static llvm::CastInst* llvm::CastInst::CreatePointerCast(llvm::Value*, llvm::Type*, const llvm::Twine&, llvm::Instruction*): Assertion `S->getType()->isPointerTy() && "Invalid cast"' failed.
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#4 0x00007ffff62dc216 in llvm::CastInst::CreatePointerCast(llvm::Value*, llvm::Type*, llvm::Twine const&, llvm::Instruction*) () from /usr/local/bin/../lib/librustllvm.so
#5 0x00007ffff6268fe0 in llvm::IRBuilder<true, llvm::ConstantFolder, llvm::IRBuilderDefaultInserter<true> >::CreatePointerCast(llvm::Value*, llvm::Type*, llvm::Twine const&) ()
from /usr/local/bin/../lib/librustllvm.so
#6 0x00007ffff6265f35 in LLVMBuildPointerCast () from /usr/local/bin/../lib/librustllvm.so
#7 0x00007ffff74191c2 in LLVMBuildPointerCast__c_stack_shim () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#8 0x00007ffff54e7649 in __morestack () from /usr/local/bin/../lib/librustrt.so
#9 0x00007ffff54d8104 in call_on_c_stack (fn_ptr=0x7ffff7419180, args=0x7fffe849a998, this=0x7ffff0108830) at /run/media/jdm/ssd/rust/src/rt/rust_task.h:478
#10 upcall_call_shim_on_c_stack (args=0x7fffe849a998, fn_ptr=0x7ffff7419180) at /run/media/jdm/ssd/rust/src/rt/rust_upcall.cpp:64
#11 0x00007ffff6d9c09a in middle::trans::build::PointerCast::_aee05de3d6b51f11::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#12 0x00007ffff6ddd6ce in middle::trans::callee::trans_call_inner::anon::expr_fn_27457 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#13 0x00007ffff6d991cc in middle::trans::base::with_scope::_518696e6502795b0::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#14 0x00007ffff6dcf435 in middle::trans::callee::trans_method_call::_12bb7b81ca47a09::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#15 0x00007ffff6de983c in middle::trans::expr::trans_rvalue_dps_unadjusted::_cbdc4c02519225::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#16 0x00007ffff6de4b64 in middle::trans::expr::trans_to_datum_unadjusted::_a2a3224b30364953::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#17 0x00007ffff6d50cc0 in middle::trans::expr::trans_to_datum::_a2a3224b30364953::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#18 0x00007ffff6de7d4e in middle::trans::expr::trans_rvalue_datum_unadjusted::_a2a3224b30364953::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#19 0x00007ffff6de47fa in middle::trans::expr::trans_to_datum_unadjusted::_a2a3224b30364953::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#20 0x00007ffff6d50cc0 in middle::trans::expr::trans_to_datum::_a2a3224b30364953::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#21 0x00007ffff6d4e7ca in middle::trans::controlflow::trans_if::_fcc7ad9922f2f49::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#22 0x00007ffff6de9c99 in middle::trans::expr::trans_rvalue_dps_unadjusted::_cbdc4c02519225::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#23 0x00007ffff6d4de34 in middle::trans::expr::trans_into::_cbdc4c02519225::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#24 0x00007ffff7434814 in __morestack () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#25 0x00007ffff6d4cf3d in middle::trans::base::trans_stmt::_d936d389a86c7a66::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#26 0x00007ffff6d4c426 in middle::trans::controlflow::trans_block::anon::expr_fn_21837 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#27 0x00007ffff6d4a66e in middle::trans::controlflow::trans_block::_84b7ff1756c49e1::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#28 0x00007ffff6e513b7 in middle::trans::base::trans_closure::_33dc6c6bc3c467::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#29 0x00007ffff6d03624 in middle::trans::base::trans_fn::_bbb928f648ebbdfa::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#30 0x00007ffff6cfb180 in middle::trans::base::trans_item::_e5c80d83455a852::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#31 0x00007ffff6e57e30 in middle::trans::base::trans_mod::_f6b5437a924015ec::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#32 0x00007ffff6e75e5b in middle::trans::base::trans_crate::_685731d1dcd33aec::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#33 0x00007ffff73f4993 in driver::driver::compile_rest::_3dc0cd32a85c34a0::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#34 0x00007ffff7434814 in __morestack () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#35 0x00007ffff73f6ef7 in driver::driver::compile_upto::_23bd5d90dda9e867::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#36 0x00007ffff7434814 in __morestack () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#37 0x00007ffff73f72f9 in driver::driver::compile_input::_594ffb6142f762a7::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#38 0x00007ffff742542f in run_compiler::_c936523e1243e7f::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#39 0x00007ffff7432151 in monitor::anon::expr_fn_82369 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#40 0x00007ffff742e57b in task::__extensions__::try_81880::anon::expr_fn_82143 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#41 0x00007ffff7434814 in __morestack () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#42 0x00007ffff7df363a in task::spawn::spawn_raw::make_child_wrapper::anon::expr_fn_11480 () from /usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so
#43 0x00007ffff7e5aa20 in __morestack () from /usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so
#44 0x00007ffff54d70a4 in task_start_wrapper (a=0x7ffff0109660) at /run/media/jdm/ssd/rust/src/rt/rust_task.cpp:162
#45 0x0000000000000000 in ?? ()"><pre class="notranslate"><code class="notranslate">#4 0x00007ffff62dc216 in llvm::CastInst::CreatePointerCast(llvm::Value*, llvm::Type*, llvm::Twine const&, llvm::Instruction*) () from /usr/local/bin/../lib/librustllvm.so
#5 0x00007ffff6268fe0 in llvm::IRBuilder<true, llvm::ConstantFolder, llvm::IRBuilderDefaultInserter<true> >::CreatePointerCast(llvm::Value*, llvm::Type*, llvm::Twine const&) ()
from /usr/local/bin/../lib/librustllvm.so
#6 0x00007ffff6265f35 in LLVMBuildPointerCast () from /usr/local/bin/../lib/librustllvm.so
#7 0x00007ffff74191c2 in LLVMBuildPointerCast__c_stack_shim () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#8 0x00007ffff54e7649 in __morestack () from /usr/local/bin/../lib/librustrt.so
#9 0x00007ffff54d8104 in call_on_c_stack (fn_ptr=0x7ffff7419180, args=0x7fffe849a998, this=0x7ffff0108830) at /run/media/jdm/ssd/rust/src/rt/rust_task.h:478
#10 upcall_call_shim_on_c_stack (args=0x7fffe849a998, fn_ptr=0x7ffff7419180) at /run/media/jdm/ssd/rust/src/rt/rust_upcall.cpp:64
#11 0x00007ffff6d9c09a in middle::trans::build::PointerCast::_aee05de3d6b51f11::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#12 0x00007ffff6ddd6ce in middle::trans::callee::trans_call_inner::anon::expr_fn_27457 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#13 0x00007ffff6d991cc in middle::trans::base::with_scope::_518696e6502795b0::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#14 0x00007ffff6dcf435 in middle::trans::callee::trans_method_call::_12bb7b81ca47a09::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#15 0x00007ffff6de983c in middle::trans::expr::trans_rvalue_dps_unadjusted::_cbdc4c02519225::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#16 0x00007ffff6de4b64 in middle::trans::expr::trans_to_datum_unadjusted::_a2a3224b30364953::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#17 0x00007ffff6d50cc0 in middle::trans::expr::trans_to_datum::_a2a3224b30364953::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#18 0x00007ffff6de7d4e in middle::trans::expr::trans_rvalue_datum_unadjusted::_a2a3224b30364953::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#19 0x00007ffff6de47fa in middle::trans::expr::trans_to_datum_unadjusted::_a2a3224b30364953::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#20 0x00007ffff6d50cc0 in middle::trans::expr::trans_to_datum::_a2a3224b30364953::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#21 0x00007ffff6d4e7ca in middle::trans::controlflow::trans_if::_fcc7ad9922f2f49::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#22 0x00007ffff6de9c99 in middle::trans::expr::trans_rvalue_dps_unadjusted::_cbdc4c02519225::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#23 0x00007ffff6d4de34 in middle::trans::expr::trans_into::_cbdc4c02519225::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#24 0x00007ffff7434814 in __morestack () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#25 0x00007ffff6d4cf3d in middle::trans::base::trans_stmt::_d936d389a86c7a66::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#26 0x00007ffff6d4c426 in middle::trans::controlflow::trans_block::anon::expr_fn_21837 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#27 0x00007ffff6d4a66e in middle::trans::controlflow::trans_block::_84b7ff1756c49e1::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#28 0x00007ffff6e513b7 in middle::trans::base::trans_closure::_33dc6c6bc3c467::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#29 0x00007ffff6d03624 in middle::trans::base::trans_fn::_bbb928f648ebbdfa::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#30 0x00007ffff6cfb180 in middle::trans::base::trans_item::_e5c80d83455a852::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#31 0x00007ffff6e57e30 in middle::trans::base::trans_mod::_f6b5437a924015ec::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#32 0x00007ffff6e75e5b in middle::trans::base::trans_crate::_685731d1dcd33aec::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#33 0x00007ffff73f4993 in driver::driver::compile_rest::_3dc0cd32a85c34a0::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#34 0x00007ffff7434814 in __morestack () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#35 0x00007ffff73f6ef7 in driver::driver::compile_upto::_23bd5d90dda9e867::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#36 0x00007ffff7434814 in __morestack () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#37 0x00007ffff73f72f9 in driver::driver::compile_input::_594ffb6142f762a7::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#38 0x00007ffff742542f in run_compiler::_c936523e1243e7f::_06 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#39 0x00007ffff7432151 in monitor::anon::expr_fn_82369 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#40 0x00007ffff742e57b in task::__extensions__::try_81880::anon::expr_fn_82143 () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#41 0x00007ffff7434814 in __morestack () from /usr/local/bin/../lib/librustc-c84825241471686d-0.6.so
#42 0x00007ffff7df363a in task::spawn::spawn_raw::make_child_wrapper::anon::expr_fn_11480 () from /usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so
#43 0x00007ffff7e5aa20 in __morestack () from /usr/local/bin/../lib/libcore-c3ca5d77d81b46c1-0.6.so
#44 0x00007ffff54d70a4 in task_start_wrapper (a=0x7ffff0109660) at /run/media/jdm/ssd/rust/src/rt/rust_task.cpp:162
#45 0x0000000000000000 in ?? ()
</code></pre></div> | 1 |
<p dir="auto">Given this template, all translations are extracted twice.</p>
<p dir="auto">Once for the correct translation domain (as specified by <code class="notranslate">{% trans_default_domain %}</code> and once wrongly for the default domain. This applies to the current template, its parent and the embedded one.</p>
<div class="highlight highlight-text-html-django notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{% extends '::base.html.twig' %}
{% trans_default_domain "users" %}
{% block content_header %}
<h1>{{ 'heading.create'|trans }}</h1>
{% endblock %}
{% block content_layout %}
{# .. #}
{% embed ':Layout:content_full_size.html.twig'%}
{% trans_default_domain "users" %}
{# .. #}
{% endembed %}
{% endblock %}"><pre class="notranslate"><span class="pl-e">{%</span> <span class="pl-k">extends</span> <span class="pl-s">'::base.html.twig'</span> <span class="pl-e">%}</span>
<span class="pl-e">{%</span> <span class="pl-s">trans_default_domain</span> <span class="pl-s">"users"</span> <span class="pl-e">%}</span>
<span class="pl-e">{%</span> <span class="pl-k">block</span> <span class="pl-s">content_header</span> <span class="pl-e">%}</span>
<<span class="pl-ent">h1</span>>{{ 'heading.create'|trans }}</<span class="pl-ent">h1</span>>
<span class="pl-e">{%</span> <span class="pl-k">endblock</span> <span class="pl-e">%}</span>
<span class="pl-e">{%</span> <span class="pl-k">block</span> <span class="pl-s">content_layout</span> <span class="pl-e">%}</span>
<span class="pl-c">{# .. #}</span>
<span class="pl-e">{%</span> <span class="pl-s">embed</span> <span class="pl-s">':Layout:content_full_size.html.twig'</span><span class="pl-e">%}</span>
<span class="pl-e">{%</span> <span class="pl-s">trans_default_domain</span> <span class="pl-s">"users"</span> <span class="pl-e">%}</span>
<span class="pl-c">{# .. #}</span>
<span class="pl-e">{%</span> <span class="pl-s">endembed</span> <span class="pl-e">%}</span>
<span class="pl-e">{%</span> <span class="pl-k">endblock</span> <span class="pl-e">%}</span></pre></div> | <p dir="auto">The Form class uses the FormEvent class, which extends the deprecated DataEvent class:<br>
<a href="https://github.com/symfony/symfony/blob/master/src/Symfony/Component/Form/Form.php#L522">https://github.com/symfony/symfony/blob/master/src/Symfony/Component/Form/Form.php#L522</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="if ($dispatcher->hasListeners(FormEvents::PRE_BIND) || $dispatcher->hasListeners(FormEvents::BIND_CLIENT_DATA)) {
$event = new FormEvent($this, $submittedData);
$dispatcher->dispatch(FormEvents::PRE_BIND, $event);
// BC until 2.3
$dispatcher->dispatch(FormEvents::BIND_CLIENT_DATA, $event);
$submittedData = $event->getData();
}"><pre class="notranslate"><code class="notranslate">if ($dispatcher->hasListeners(FormEvents::PRE_BIND) || $dispatcher->hasListeners(FormEvents::BIND_CLIENT_DATA)) {
$event = new FormEvent($this, $submittedData);
$dispatcher->dispatch(FormEvents::PRE_BIND, $event);
// BC until 2.3
$dispatcher->dispatch(FormEvents::BIND_CLIENT_DATA, $event);
$submittedData = $event->getData();
}
</code></pre></div>
<p dir="auto">FormEvent should not be used anymore, or it should be marked as being used for backwards compatibility until version 2.3.</p>
<p dir="auto">This came up in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="8960916" data-permission-text="Title is private" data-url="https://github.com/symfony/symfony/issues/6180" data-hovercard-type="pull_request" data-hovercard-url="/symfony/symfony/pull/6180/hovercard" href="https://github.com/symfony/symfony/pull/6180">#6180</a></p> | 0 |
<p dir="auto">With this file</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="foo
bar
foo
foo
bar
foo
foo
bar
foo
"><pre class="notranslate"><code class="notranslate">foo
bar
foo
foo
bar
foo
foo
bar
foo
</code></pre></div>
<p dir="auto">Trying to find one of the blocks does not work, with cmd+F or cmd+D.</p> | <p dir="auto">Testing <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="140213957" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/4018" data-hovercard-type="issue" data-hovercard-url="/microsoft/vscode/issues/4018/hovercard" href="https://github.com/microsoft/vscode/issues/4018">#4018</a></p>
<p dir="auto">IMHO, there is a case not covered well enough. e.g.:</p>
<ul dir="auto">
<li>having Windows locale in English and wanting to run VSCode in Spanish.</li>
<li>or having Windows locale in Spanish and wanting to run VSCode in English.</li>
</ul>
<p dir="auto">The only way to do this now is to use a command line argument.</p>
<p dir="auto">But especially in Windows, it is unusual to launch a UI app from the command line with arguments. E.g: taskbar, windows start button, double clicking a file associated with VSCode, right click open with VSCode.</p>
<p dir="auto">I suggest some alternative means to define the locale besides the command line argument.</p> | 0 |
<p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/scipy/ticket/1474" rel="nofollow">http://projects.scipy.org/scipy/ticket/1474</a> on 2011-07-08 by trac user jmerkin, assigned to trac user peridot.</em></p>
<p dir="auto">I have been using masked arrays a lot in some of my analyses, but from what I have seen spatial.distance does not currently use the masks (converted to normal arrays). I have copied and modified a number of distance functions as well as spatial.distance.pdist to consider the masks when evaluating. I can contribute the code if it would be useful.</p> | <p dir="auto">At the moment <code class="notranslate">pdist</code> returns a distance matrix with a <code class="notranslate">nan</code>-entry whenever a vector with any <code class="notranslate">nan</code>-element is part of the respective pair. This is consistent with, for example, the R <code class="notranslate">dist</code> function, as well as MATLAB, I believe.</p>
<p dir="auto">In my case, and I should think a few others' as well, there are very few <code class="notranslate">nan</code>s in a high-dimensional space. I would thus only ignore the corresponding pairs of elements of the vectors. I have solutions for this problem both in Cython and directly in C, which mirrors the current scipy code. Is there a general interest in having this in scipy?</p>
<p dir="auto">If the answer is yes, I will submit a pull request and then we just have to discuss the use of Cython or C or a mix of both.</p> | 1 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=thomas.risberg" rel="nofollow">Thomas Risberg</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-4215?redirect=false" rel="nofollow">SPR-4215</a></strong> and commented</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 2.5 final</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="398084245" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/8971" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/8971/hovercard" href="https://github.com/spring-projects/spring-framework/issues/8971">#8971</a> JdbcTemplate uses a JDK 1.5 method, whereas it should be JDK 1.4.2 compatible (<em><strong>"is duplicated by"</strong></em>)</li>
</ul> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=bjoern.voss" rel="nofollow">Björn Voß</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-9059?redirect=false" rel="nofollow">SPR-9059</a></strong> and commented</p>
<p dir="auto">Since 3.1 BeanWrapperImpl has a concurrent problem with properties which have only a getter method.<br>
Please see my very simple maven project in the attached zip-file.<br>
The main method of the Starter class produces 3 to 8 exceptions per run with the 3.1.0 and the latest SNAPSHOT of 3.1.1. But if you either uncomment the setter or got back to 3.0.7 it is absolute stable.</p>
<p dir="auto">I suppose it has something to do with the new introduced ExtendedBeanInfo in CachedIntrospectionResults(L224) but I didn't get it right now.</p>
<hr>
<p dir="auto"><strong>Attachments:</strong></p>
<ul dir="auto">
<li><a href="https://jira.spring.io/secure/attachment/19339/fix_for_spr_9059.patch" rel="nofollow">fix_for_spr_9059.patch</a> (<em>818 bytes</em>)</li>
<li><a href="https://jira.spring.io/secure/attachment/19338/test_for_spr_9059.patch" rel="nofollow">test_for_spr_9059.patch</a> (<em>1.85 kB</em>)</li>
<li><a href="https://jira.spring.io/secure/attachment/19333/test.zip" rel="nofollow">test.zip</a> (<em>2.63 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="398112358" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12995" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12995/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12995">#12995</a> Review ExtendedBeanInfo implementation (<em><strong>"duplicates"</strong></em>)</li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398155112" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/14663" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/14663/hovercard" href="https://github.com/spring-projects/spring-framework/issues/14663">#14663</a> Overhaul non-void JavaBean write method support</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/4a8be690998f43a9253305e09f96ad83058ef540/hovercard" href="https://github.com/spring-projects/spring-framework/commit/4a8be690998f43a9253305e09f96ad83058ef540"><tt>4a8be69</tt></a>, <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/0ee12563b038797a137ac67b13e5dd6d3d918a7f/hovercard" href="https://github.com/spring-projects/spring-framework/commit/0ee12563b038797a137ac67b13e5dd6d3d918a7f"><tt>0ee1256</tt></a></p>
<p dir="auto">1 votes, 1 watchers</p> | 0 |
<p dir="auto">In to matplotlib <code class="notranslate">1.3.x</code> the following code:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import seaborn as sns
import pandas as pd
import numpy as np
x = pd.DataFrame(np.random.lognormal(size=(100, 6)), columns=list("abcdef"))
x.boxplot(sym="k.")"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">seaborn</span> <span class="pl-k">as</span> <span class="pl-s1">sns</span>
<span class="pl-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span>
<span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>(<span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">lognormal</span>(<span class="pl-s1">size</span><span class="pl-c1">=</span>(<span class="pl-c1">100</span>, <span class="pl-c1">6</span>)), <span class="pl-s1">columns</span><span class="pl-c1">=</span><span class="pl-en">list</span>(<span class="pl-s">"abcdef"</span>))
<span class="pl-s1">x</span>.<span class="pl-en">boxplot</span>(<span class="pl-s1">sym</span><span class="pl-c1">=</span><span class="pl-s">"k."</span>)</pre></div>
<p dir="auto">Produces:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/38f034e4811839724b181982030b73a4bcb4f122220bb3a5c9328d51910b5e6a/687474703a2f2f692e737461636b2e696d6775722e636f6d2f7a636f5a502e706e67"><img src="https://camo.githubusercontent.com/38f034e4811839724b181982030b73a4bcb4f122220bb3a5c9328d51910b5e6a/687474703a2f2f692e737461636b2e696d6775722e636f6d2f7a636f5a502e706e67" alt="outliers" data-canonical-src="http://i.stack.imgur.com/zcoZP.png" style="max-width: 100%;"></a></p>
<p dir="auto">In <code class="notranslate">1.4.2</code> I can't get the outliers to be shown?</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/818651685befa5baebaf9dc03d1b71f0d99a1e5bcf9a611c5a89b2d7290b9a97/687474703a2f2f692e737461636b2e696d6775722e636f6d2f53507267732e706e67"><img src="https://camo.githubusercontent.com/818651685befa5baebaf9dc03d1b71f0d99a1e5bcf9a611c5a89b2d7290b9a97/687474703a2f2f692e737461636b2e696d6775722e636f6d2f53507267732e706e67" alt="no outliers" data-canonical-src="http://i.stack.imgur.com/SPrgs.png" style="max-width: 100%;"></a></p>
<p dir="auto">[TAC edited to fix in-line version number]</p> | <p dir="auto">Inspired by <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="476732889" data-permission-text="Title is private" data-url="https://github.com/matplotlib/matplotlib/issues/14980" data-hovercard-type="issue" data-hovercard-url="/matplotlib/matplotlib/issues/14980/hovercard?comment_id=518156902&comment_type=issue_comment" href="https://github.com/matplotlib/matplotlib/issues/14980#issuecomment-518156902">#14980 (comment)</a>.</p>
<p dir="auto">Current APIs:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="pyplot.xticks(ticks=None, labels=None, **kwargs)
Axes.set_xticks(self, ticks, minor=False)
Axes.set_xticklabels(self, labels, fontdict=None, minor=False, **kwargs)"><pre class="notranslate"><code class="notranslate">pyplot.xticks(ticks=None, labels=None, **kwargs)
Axes.set_xticks(self, ticks, minor=False)
Axes.set_xticklabels(self, labels, fontdict=None, minor=False, **kwargs)
</code></pre></div>
<p dir="auto">Notes:</p>
<ul dir="auto">
<li>The <code class="notranslate">Axes</code> methods are just thin wrappers around the <code class="notranslate">Axis</code> methods.</li>
<li>The kwargs are <code class="notranslate">Text</code> properties.</li>
</ul>
<h3 dir="auto">Issue</h3>
<p dir="auto">The Axes API feels a bit odd. AFAICS <code class="notranslate">set_xticklabels</code> does not make much sense without <code class="notranslate">set_xticks</code> before; otherwise how do I know that the labels will be at the correct places and that I have the right number of labels for the ticks.</p>
<h3 dir="auto">Proposal</h3>
<ol class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Extend the API of <code class="notranslate">set_xticks</code> to be
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Axes.set_xticks(self, ticks, labels=None, minor=False, **kwargs)"><pre class="notranslate"><code class="notranslate">Axes.set_xticks(self, ticks, labels=None, minor=False, **kwargs)
</code></pre></div>
maybe even with <code class="notranslate">ticks=None</code> to be compatible with the pyplot API - though I don't know if one needs the ability to set ticks without positions.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Soft-deprecate <code class="notranslate">set_xticklabels</code>. It's too widely used to be deprecated, but we shouldn't have two equal ways here.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Optionally add the minor kwarg to <code class="notranslate">pyplot.xticks</code>; it's not strictly necessary because pyplot may have less functionality than the OOP interface; but it doesn't hurt either.</li>
</ol>
<p dir="auto">The proposed signature would be an API-change because the minor argument might have been passed positionally. Thus, we should start with <code class="notranslate">_make_keyword_only</code> on that parameter.</p> | 0 |
<p dir="auto">Saw this on the query-refactoring branch today, since we did some changes in Geo recently we need to check if this is only on the feature branch and what changed here:</p>
<p dir="auto"><a href="http://build-us-00.elastic.co/job/es_feature_query_refactoring/8998/" rel="nofollow">http://build-us-00.elastic.co/job/es_feature_query_refactoring/8998/</a></p>
<p dir="auto">Geohash w has wrong centroid expected:<[27.677337714038913, 119.06734793896817]> but was:<[27.677337303757668, 119.06734686344862]></p>
<p dir="auto">Stacktrace</p>
<p dir="auto">java.lang.AssertionError: Geohash w has wrong centroid expected:<[27.677337714038913, 119.06734793896817]> but was:<[27.677337303757668, 119.06734686344862]><br>
at __randomizedtesting.SeedInfo.seed([8282B3A257119F6E:1EB05A4306CC780]:0)<br>
[...]</p> | <p dir="auto">I believe this is related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="105669084" data-permission-text="Title is private" data-url="https://github.com/elastic/elasticsearch/issues/13433" data-hovercard-type="pull_request" data-hovercard-url="/elastic/elasticsearch/pull/13433/hovercard" href="https://github.com/elastic/elasticsearch/pull/13433">#13433</a> and fails reliably with the following:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="mvn verify -Pdev -Dskip.unit.tests -pl org.elasticsearch:elasticsearch -Dtests.seed=29C485CE4EDC48CE -Dtests.class=org.elasticsearch.search.aggregations.bucket.GeoHashGridIT -Dtests.method="simple" -Des.logger.level=DEBUG -Des.node.mode=network -Dtests.assertion.disabled=false -Dtests.security.manager=true -Dtests.heap.size=512m -Dtests.locale=lv_LV -Dtests.timezone=Pacific/Auckland"><pre class="notranslate"><code class="notranslate">mvn verify -Pdev -Dskip.unit.tests -pl org.elasticsearch:elasticsearch -Dtests.seed=29C485CE4EDC48CE -Dtests.class=org.elasticsearch.search.aggregations.bucket.GeoHashGridIT -Dtests.method="simple" -Des.logger.level=DEBUG -Des.node.mode=network -Dtests.assertion.disabled=false -Dtests.security.manager=true -Dtests.heap.size=512m -Dtests.locale=lv_LV -Dtests.timezone=Pacific/Auckland
</code></pre></div> | 1 |
<p dir="auto">I've filed a new feedback item on the Azure Resource Manager (ARM) JSON Schema project page, although I believe this might have to do with how Visual Studio Code handles JSON schema validation.</p>
<p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="119821861" data-permission-text="Title is private" data-url="https://github.com/Azure/azure-resource-manager-schemas/issues/68" data-hovercard-type="issue" data-hovercard-url="/Azure/azure-resource-manager-schemas/issues/68/hovercard" href="https://github.com/Azure/azure-resource-manager-schemas/issues/68">Azure/azure-resource-manager-schemas#68</a></p>
<p dir="auto">I'm being told that <code class="notranslate">Microsoft.Storage/storageAccounts</code> isn't a valid top-level ARM Resource Type.</p>
<p dir="auto">Cheers,<br>
Trevor Sullivan<br>
Microsoft MVP: PowerShell</p> | <p dir="auto">The error in following JSON against schema is: "resources\properties\osProfile\computername" should be "computerName".</p>
<p dir="auto">But VS Code shows two errors here:</p>
<ol dir="auto">
<li>on "Microsoft.Compute/virtualMachines", error message is: Value is not an accepted Value. Valid values: ["Microsoft.Network/publicIPAddresses"]</li>
<li>on “properties", error message is: Missing property "publicIpAllocationMethod"</li>
</ol>
<p dir="auto">It would be good if the error can be on the "computename" or at lease on "osProfile" about missing required property "computerName", ("computerName" is a required property according to schema)</p>
<p dir="auto">JSON example:</p>
<p dir="auto">{<br>
"$schema": "<a href="https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#" rel="nofollow">https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#</a>",<br>
"contentVersion": "1.0.0.0",<br>
"resources": [<br>
{<br>
"apiVersion": "2015-06-15",<br>
"type": "Microsoft.Compute/virtualMachines",<br>
"name": "a",<br>
"location": "West US",<br>
"properties": {<br>
"hardwareProfile": {<br>
"vmSize": "Small"<br>
},<br>
"osProfile": {<br>
"computername": "a",<br>
"adminUsername": "a",<br>
"adminPassword": "a"<br>
},<br>
"storageProfile": {<br>
"imageReference": {<br>
"publisher": "a",<br>
"offer": "a",<br>
"sku": "a",<br>
"version": "latest"<br>
},<br>
"osDisk": {<br>
"name": "osdisk",<br>
"vhd": {<br>
"uri": "[concat('http://', 'b','.blob.core.windows.net/',variables('vmStorageAccountContainerName'),'/',variables('OSDiskName'),'.vhd')]"<br>
},<br>
"caching": "ReadWrite",<br>
"createOption": "FromImage"<br>
}<br>
},<br>
"networkProfile": {<br>
"networkInterfaces": [<br>
{<br>
"id": "[resourceId('Microsoft.Network/networkInterfaces',variables('nicName'))]"<br>
}<br>
]<br>
},<br>
"diagnosticsProfile": {<br>
"bootDiagnostics": {<br>
"enabled": "true",<br>
"storageUri": "[concat('http://',parameters('newStorageAccountName'),'.blob.core.windows.net')]"<br>
}<br>
}<br>
}<br>
}<br>
]<br>
}</p> | 1 |
<h1 dir="auto">Checklist</h1>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> This has already been asked to the <a href="https://groups.google.com/forum/#!forum/celery-users" rel="nofollow">discussion group</a> first.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have read the relevant section in the<br>
<a href="http://docs.celeryproject.org/en/latest/contributing.html#other-bugs" rel="nofollow">contribution guide</a><br>
on reporting bugs.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Bug+Report%22+-label%3A%22Category%3A+Documentation%22">issues list</a><br>
for similar or identical bug reports.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> 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"> 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"> I have included all related issues and possible duplicate issues<br>
in this issue (If there are none, check this box anyway).</li>
</ul>
<h2 dir="auto">Mandatory Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have included the output of <code class="notranslate">celery -A proj report</code> in the issue.<br>
(if you are not able to do this, then at least specify the Celery<br>
version affected).</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> 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"> 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"> I have included all the versions of all the external dependencies required<br>
to reproduce this bug.</li>
</ul>
<h2 dir="auto">Optional Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one Python version<br>
and/or implementation.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one message broker and/or<br>
result backend.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one version of the message<br>
broker and/or result backend.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one operating system.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one workers pool.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue with autoscaling, retries,<br>
ETA/Countdown & rate limits disabled.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have tried reproducing the issue after downgrading<br>
and/or upgrading Celery and its dependencies.</li>
</ul>
<h2 dir="auto">Related Issues and Possible Duplicates</h2>
<h4 dir="auto">Related Issues</h4>
<ul dir="auto">
<li>None</li>
</ul>
<h4 dir="auto">Possible Duplicates</h4>
<ul dir="auto">
<li>None</li>
</ul>
<h2 dir="auto">Environment & Settings</h2>
<p dir="auto"><strong>Celery version</strong>: 4.4.4 (celery v4.4.3 and below work fine)</p>
<details>
<summary><b><code class="notranslate">celery report</code> Output:</b></summary>
<p dir="auto">
</p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Steps to Reproduce</h1>
<h2 dir="auto">Required Dependencies</h2>
<ul dir="auto">
<li><strong>Minimal Python Version</strong>: 3.7</li>
<li><strong>Minimal Celery Version</strong>: 4.4.4</li>
<li><strong>Minimal Kombu Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Broker Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Result Backend Version</strong>: N/A or Unknown</li>
<li><strong>Minimal OS and/or Kernel Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Broker Client Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Result Backend Client Version</strong>: N/A or Unknown</li>
</ul>
<h3 dir="auto">Python Packages</h3>
<details>
<summary><b><code class="notranslate">pip freeze</code> Output:</b></summary>
<p dir="auto">
</p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div>
<p dir="auto"></p>
</details>
<h3 dir="auto">Other Dependencies</h3>
<details>
<p dir="auto">
N/A
</p>
</details>
<h2 dir="auto">Minimally Reproducible Test Case</h2>
<details>
<p dir="auto">
</p><div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="celery_app = Celery("worker", broker="amqp://guest@queue//")
celery_app.conf.task_routes = {"app.worker.test_celery": "main-queue"}
@celery_app.task(acks_late=True)
def test_celery(word: str):
return f"test task return {word}"
celery_app.send_task("app.worker.test_celery", args=["msg"])"><pre class="notranslate"><span class="pl-s1">celery_app</span> <span class="pl-c1">=</span> <span class="pl-v">Celery</span>(<span class="pl-s">"worker"</span>, <span class="pl-s1">broker</span><span class="pl-c1">=</span><span class="pl-s">"amqp://guest@queue//"</span>)
<span class="pl-s1">celery_app</span>.<span class="pl-s1">conf</span>.<span class="pl-s1">task_routes</span> <span class="pl-c1">=</span> {<span class="pl-s">"app.worker.test_celery"</span>: <span class="pl-s">"main-queue"</span>}
<span class="pl-en">@<span class="pl-s1">celery_app</span>.<span class="pl-en">task</span>(<span class="pl-s1">acks_late</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)</span>
<span class="pl-k">def</span> <span class="pl-en">test_celery</span>(<span class="pl-s1">word</span>: <span class="pl-s1">str</span>):
<span class="pl-k">return</span> <span class="pl-s">f"test task return <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">word</span><span class="pl-kos">}</span></span>"</span>
<span class="pl-s1">celery_app</span>.<span class="pl-en">send_task</span>(<span class="pl-s">"app.worker.test_celery"</span>, <span class="pl-s1">args</span><span class="pl-c1">=</span>[<span class="pl-s">"msg"</span>])</pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Expected Behavior</h1>
<p dir="auto">The function should return successfully.</p>
<h1 dir="auto">Actual Behavior</h1>
<p dir="auto">An error is thrown : <code class="notranslate">No module named future</code> in the celery package (in celery code, the error is at <code class="notranslate">celery/backends/base.py</code>: <code class="notranslate">from future.utils import raise_with_traceback </code></p> | <p dir="auto">This one is simple to reproduce, I just upgraded to <code class="notranslate">celery==4.4.4</code> and now my builds are broken.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[2020-06-03 09:48:39,517: DEBUG/MainProcess] | Worker: Preparing bootsteps.
[2020-06-03 09:48:39,518: DEBUG/MainProcess] | Worker: Building graph...
[2020-06-03 09:48:39,518: DEBUG/MainProcess] | Worker: New boot order: {StateDB, Beat, Timer, Hub, Pool, Autoscaler, Consumer}
[2020-06-03 09:48:39,522: DEBUG/MainProcess] | Consumer: Preparing bootsteps.
[2020-06-03 09:48:39,522: DEBUG/MainProcess] | Consumer: Building graph...
[2020-06-03 09:48:39,538: DEBUG/MainProcess] | Consumer: New boot order: {Connection, Events, Heart, Mingle, Gossip, Agent, Tasks, Control, event loop}
[2020-06-03 09:48:39,540: CRITICAL/MainProcess] Unrecoverable error: ModuleNotFoundError("No module named 'future'")
Traceback (most recent call last):
File "/usr/local/lib/python3.7/site-packages/kombu/utils/objects.py", line 42, in __get__
return obj.__dict__[self.__name__]
KeyError: 'backend'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.7/site-packages/celery/worker/worker.py", line 208, in start
self.blueprint.start(self)
File "/usr/local/lib/python3.7/site-packages/celery/bootsteps.py", line 115, in start
self.on_start()
File "/usr/local/lib/python3.7/site-packages/celery/apps/worker.py", line 139, in on_start
self.emit_banner()
File "/usr/local/lib/python3.7/site-packages/celery/apps/worker.py", line 154, in emit_banner
' \n', self.startup_info(artlines=not use_image))),
File "/usr/local/lib/python3.7/site-packages/celery/apps/worker.py", line 217, in startup_info
results=self.app.backend.as_uri(),
File "/usr/local/lib/python3.7/site-packages/kombu/utils/objects.py", line 44, in __get__
value = obj.__dict__[self.__name__] = self.__get(obj)
File "/usr/local/lib/python3.7/site-packages/celery/app/base.py", line 1232, in backend
return self._get_backend()
File "/usr/local/lib/python3.7/site-packages/celery/app/base.py", line 949, in _get_backend
self.loader)
File "/usr/local/lib/python3.7/site-packages/celery/app/backends.py", line 74, in by_url
return by_name(backend, loader), url
File "/usr/local/lib/python3.7/site-packages/celery/app/backends.py", line 54, in by_name
cls = symbol_by_name(backend, aliases)
File "/usr/local/lib/python3.7/site-packages/kombu/utils/imports.py", line 57, in symbol_by_name
module = imp(module_name, package=package, **kwargs)
File "/usr/local/lib/python3.7/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1006, in _gcd_import
File "<frozen importlib._bootstrap>", line 983, in _find_and_load
File "<frozen importlib._bootstrap>", line 967, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 677, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 728, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/usr/local/lib/python3.7/site-packages/celery/backends/base.py", line 10, in <module>
from future.utils import raise_with_traceback
ModuleNotFoundError: No module named 'future'"><pre class="notranslate"><code class="notranslate">[2020-06-03 09:48:39,517: DEBUG/MainProcess] | Worker: Preparing bootsteps.
[2020-06-03 09:48:39,518: DEBUG/MainProcess] | Worker: Building graph...
[2020-06-03 09:48:39,518: DEBUG/MainProcess] | Worker: New boot order: {StateDB, Beat, Timer, Hub, Pool, Autoscaler, Consumer}
[2020-06-03 09:48:39,522: DEBUG/MainProcess] | Consumer: Preparing bootsteps.
[2020-06-03 09:48:39,522: DEBUG/MainProcess] | Consumer: Building graph...
[2020-06-03 09:48:39,538: DEBUG/MainProcess] | Consumer: New boot order: {Connection, Events, Heart, Mingle, Gossip, Agent, Tasks, Control, event loop}
[2020-06-03 09:48:39,540: CRITICAL/MainProcess] Unrecoverable error: ModuleNotFoundError("No module named 'future'")
Traceback (most recent call last):
File "/usr/local/lib/python3.7/site-packages/kombu/utils/objects.py", line 42, in __get__
return obj.__dict__[self.__name__]
KeyError: 'backend'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.7/site-packages/celery/worker/worker.py", line 208, in start
self.blueprint.start(self)
File "/usr/local/lib/python3.7/site-packages/celery/bootsteps.py", line 115, in start
self.on_start()
File "/usr/local/lib/python3.7/site-packages/celery/apps/worker.py", line 139, in on_start
self.emit_banner()
File "/usr/local/lib/python3.7/site-packages/celery/apps/worker.py", line 154, in emit_banner
' \n', self.startup_info(artlines=not use_image))),
File "/usr/local/lib/python3.7/site-packages/celery/apps/worker.py", line 217, in startup_info
results=self.app.backend.as_uri(),
File "/usr/local/lib/python3.7/site-packages/kombu/utils/objects.py", line 44, in __get__
value = obj.__dict__[self.__name__] = self.__get(obj)
File "/usr/local/lib/python3.7/site-packages/celery/app/base.py", line 1232, in backend
return self._get_backend()
File "/usr/local/lib/python3.7/site-packages/celery/app/base.py", line 949, in _get_backend
self.loader)
File "/usr/local/lib/python3.7/site-packages/celery/app/backends.py", line 74, in by_url
return by_name(backend, loader), url
File "/usr/local/lib/python3.7/site-packages/celery/app/backends.py", line 54, in by_name
cls = symbol_by_name(backend, aliases)
File "/usr/local/lib/python3.7/site-packages/kombu/utils/imports.py", line 57, in symbol_by_name
module = imp(module_name, package=package, **kwargs)
File "/usr/local/lib/python3.7/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1006, in _gcd_import
File "<frozen importlib._bootstrap>", line 983, in _find_and_load
File "<frozen importlib._bootstrap>", line 967, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 677, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 728, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/usr/local/lib/python3.7/site-packages/celery/backends/base.py", line 10, in <module>
from future.utils import raise_with_traceback
ModuleNotFoundError: No module named 'future'
</code></pre></div>
<p dir="auto">Running in a docker container using <code class="notranslate">python:3.7-alpine</code> as base image.</p> | 1 |
<table role="table">
<thead>
<tr>
<th>Q</th>
<th>A</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bug report?</td>
<td>yes</td>
</tr>
<tr>
<td>Feature request?</td>
<td>no</td>
</tr>
<tr>
<td>BC Break report?</td>
<td>yes</td>
</tr>
<tr>
<td>Symfony version</td>
<td>v3.2.4</td>
</tr>
</tbody>
</table>
<p dir="auto">After update to v3.2.4 the inheritance of templates from parent bundle does not work. Create a loop and the application crash.</p>
<p dir="auto">e.g.</p>
<p dir="auto">I have a bundle called AdminBundle, with</p>
<div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" public function getParent()
{
return 'SonataAdminBundle';
}"><pre class="notranslate"> <span class="pl-k">public</span> <span class="pl-k">function</span> <span class="pl-en">getParent</span>()
{
<span class="pl-k">return</span> <span class="pl-s">'SonataAdminBundle'</span>;
}</pre></div>
<p dir="auto">and override some templates:</p>
<p dir="auto"><code class="notranslate">delete.html.twig:</code></p>
<div class="highlight highlight-text-html-django notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{% extends '@SonataAdmin/CRUD/delete.html.twig' %}"><pre class="notranslate"><span class="pl-e">{%</span> <span class="pl-k">extends</span> <span class="pl-s">'@SonataAdmin/CRUD/delete.html.twig'</span> <span class="pl-e">%}</span></pre></div>
<p dir="auto">The above code works fine before the update, with: "version": "v3.2.1", but not with current version.</p> | <p dir="auto">This feature has been asked by lots and lots of users in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="105790408" data-permission-text="Title is private" data-url="https://github.com/symfony/symfony/issues/15755" data-hovercard-type="issue" data-hovercard-url="/symfony/symfony/issues/15755/hovercard" href="https://github.com/symfony/symfony/issues/15755">#15755</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="122789316" data-permission-text="Title is private" data-url="https://github.com/symfony/symfony/issues/17054" data-hovercard-type="issue" data-hovercard-url="/symfony/symfony/issues/17054/hovercard" href="https://github.com/symfony/symfony/issues/17054">#17054</a> and <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="127084985" data-permission-text="Title is private" data-url="https://github.com/symfony/symfony/issues/17407" data-hovercard-type="issue" data-hovercard-url="/symfony/symfony/issues/17407/hovercard" href="https://github.com/symfony/symfony/issues/17407">#17407</a>.</p>
<h3 dir="auto">Problem</h3>
<ol dir="auto">
<li>You have installed <code class="notranslate">MyBundle</code> which contains this template:</li>
</ol>
<div class="highlight highlight-text-html-twig notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{# MyBundle/Resources/views/base.html.twig #}
{% block title '...' %}
{% block content %}
{# a lot of contents here #}
{% endblock %}"><pre class="notranslate"><span class="pl-c"><span class="pl-c">{#</span> MyBundle/Resources/views/base.html.twig <span class="pl-c">#}</span></span>
{% <span class="pl-k">block</span> <span class="pl-smi">title</span> <span class="pl-s"><span class="pl-pds">'</span>...<span class="pl-pds">'</span></span> %}
{% <span class="pl-k">block</span> <span class="pl-smi">content</span> %}
<span class="pl-c"><span class="pl-c">{#</span> a lot of contents here <span class="pl-c">#}</span></span>
{% <span class="pl-k">endblock</span> %}</pre></div>
<ol start="2" dir="auto">
<li>
<p dir="auto">You override that template in your app by creating <code class="notranslate">app/Resources/MyBundle/views/base.html.twig</code>.</p>
</li>
<li>
<p dir="auto">In your own template, you want to override just the <code class="notranslate">title</code> block and reuse the original <code class="notranslate">content</code> block.</p>
</li>
</ol>
<div class="highlight highlight-text-html-twig notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{# app/Resources/MyBundle/views/base.html.twig #}
{% extends 'MyBundle::base.html.twig' %}
{% block title 'New title' %}"><pre class="notranslate"><span class="pl-c"><span class="pl-c">{#</span> app/Resources/MyBundle/views/base.html.twig <span class="pl-c">#}</span></span>
{% <span class="pl-k">extends</span> <span class="pl-s"><span class="pl-pds">'</span>MyBundle::base.html.twig<span class="pl-pds">'</span></span> %}
{% <span class="pl-k">block</span> <span class="pl-smi">title</span> <span class="pl-s"><span class="pl-pds">'</span>New title<span class="pl-pds">'</span></span> %}</pre></div>
<p dir="auto"><strong>This won't work and Symfony will show a <em>"reached nested level"</em> error.</strong> The only current solution is to copy+paste the entire original template (and keep it in sync forever if the bundle changes it).</p>
<h3 dir="auto">Solution</h3>
<p dir="auto">People asking for this feature suggest to add a new notation to tell Twig/Symfony that you want to override the original template, not your copy:</p>
<div class="highlight highlight-text-html-twig notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{# app/Resources/MyBundle/views/base.html.twig #}
{% extends '!MyBundle::base.html.twig' %}
{% block title 'New title' %}"><pre class="notranslate"><span class="pl-c"><span class="pl-c">{#</span> app/Resources/MyBundle/views/base.html.twig <span class="pl-c">#}</span></span>
{% <span class="pl-k">extends</span> <span class="pl-s"><span class="pl-pds">'</span>!MyBundle::base.html.twig<span class="pl-pds">'</span></span> %}
{% <span class="pl-k">block</span> <span class="pl-smi">title</span> <span class="pl-s"><span class="pl-pds">'</span>New title<span class="pl-pds">'</span></span> %}</pre></div>
<p dir="auto">Some people (e.g. <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jakzal/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jakzal">@jakzal</a>) don't like the new notation. The problem is that <code class="notranslate">!</code> always mean "not", so it can be read as <em>"don't extend ..."</em>.</p>
<p dir="auto">Since Twig prefers expressive syntax, maybe we could use a word to enable the special <code class="notranslate">extends</code> behavior?</p>
<div class="highlight highlight-text-html-twig notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{# app/Resources/MyBundle/views/base.html.twig #}
{% extends original 'MyBundle::base.html.twig' %}
{% block title 'New title' %}"><pre class="notranslate"><span class="pl-c"><span class="pl-c">{#</span> app/Resources/MyBundle/views/base.html.twig <span class="pl-c">#}</span></span>
{% <span class="pl-k">extends</span> <span class="pl-smi">original</span> <span class="pl-s"><span class="pl-pds">'</span>MyBundle::base.html.twig<span class="pl-pds">'</span></span> %}
{% <span class="pl-k">block</span> <span class="pl-smi">title</span> <span class="pl-s"><span class="pl-pds">'</span>New title<span class="pl-pds">'</span></span> %}</pre></div>
<p dir="auto">Comments? Thoughts? Better ideas? Thanks!</p> | 1 |
<h1 dir="auto">Description of the new feature/enhancement</h1>
<p dir="auto">Like any desktop application, double-clicking the title bar should either maximize or minimize the window.</p> | <h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: Microsoft Windows [Version 10.0.18362.175]
Windows Terminal version (if applicable): Early Preview Build"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: Microsoft Windows [Version 10.0.18362.175]
Windows Terminal version (if applicable): Early Preview Build
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">Put your mouse cursor on the window's topmost coordinate just above tabs and click.</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">I tried to cilck the tab by doing so. It's time consuming to accurately pointing at the tab area. Most of the time users including me just throw mouse cursor at the topmost and click.</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">Tab isn't being clicked because there are space on top of the tab. This is bad UX in my opinion. Space above tab should be removed and should be occupied by the tab all the way to the top.</p> | 0 |
<p dir="auto">We are using SciPy 1.1.0 main branch source code release on AIX 7.1 using AIX Toolkit packages for GCC and related packages - (<a href="https://www.ibm.com/developerworks/aix/library/aix-toolbox/alpha.html" rel="nofollow">https://www.ibm.com/developerworks/aix/library/aix-toolbox/alpha.html</a>).</p>
<p dir="auto">We have to use the AIX's linker (ld) as GCC's linker is not compatible with AIX at this time. There is a limitation with AIX linker that causes an issue with the build when compiling in 64 bit mode (using Python_64 2.7.15, and -maix64 flags).</p>
<p dir="auto">The settings I provided are:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# export CC='gcc -lpthread -lm -lgcc -lgomp -lgfortran -maix64'
# export LDFLAGS='-lpthread -lm -lgcc -lgomp -lgfortran -maix64'
# export PATH=/opt/freeware/bin:$PATH"><pre class="notranslate"><code class="notranslate"># export CC='gcc -lpthread -lm -lgcc -lgomp -lgfortran -maix64'
# export LDFLAGS='-lpthread -lm -lgcc -lgomp -lgfortran -maix64'
# export PATH=/opt/freeware/bin:$PATH
</code></pre></div>
<p dir="auto">Once I run <code class="notranslate">python_64 setup.py install</code>, it would throw the following error message:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ld: 0706-012 The -p flag is not recognized.
ld: 0706-012 The -a flag is not recognized.
ld: 0706-012 The -t flag is not recognized.
ld: 0706-012 The -h flag is not recognized.
ld: 0706-012 The -= flag is not recognized.
ld: 0706-012 The -/ flag is not recognized.
collect2: error: ld returned 255 exit status"><pre class="notranslate"><code class="notranslate">ld: 0706-012 The -p flag is not recognized.
ld: 0706-012 The -a flag is not recognized.
ld: 0706-012 The -t flag is not recognized.
ld: 0706-012 The -h flag is not recognized.
ld: 0706-012 The -= flag is not recognized.
ld: 0706-012 The -/ flag is not recognized.
collect2: error: ld returned 255 exit status
</code></pre></div>
<p dir="auto">This is because within this command: <code class="notranslate">/opt/freeware/lib64/python2.7/config/ld_so_aix /opt/freeware/bin/gfortran -Wall -maix64 -g -bI:/opt/freeware/lib64/python2.7/config/python.exp -lpthread -lm -lgcc -lgomp -lgfortran -maix64 build/temp.aix-7.1-2.7/scipy/integrate/_quadpackmodule.o -L/opt/OpenBLAS/lib -L/opt/freeware/lib/gcc/powerpc-ibm-aix7.1.0.0/6.3.0/ppc64 -L/opt/freeware/lib64 -Lbuild/temp.aix-7.1-2.7 -Wl,-rpath="/opt/OpenBLAS/lib" -lquadpack -lmach -lopenblas -lopenblas -lgfortran -o build/lib.aix-7.1-2.7/scipy/integrate/_quadpack.so</code>, the specific flag - <code class="notranslate">-Wl,-rpath="/opt/OpenBLAS/lib"</code> is not valid for AIX's <code class="notranslate">ld_so_aix</code> program.</p>
<p dir="auto">I needed to include all the library flags in order for the linker to recognize the libraries for OpenBLAS among other packages.</p>
<p dir="auto">Please let me know if you need the full run log.</p>
<p dir="auto">I will continue to investigate on how we can eliminate this particular flag without breaking anything else.</p>
<p dir="auto">Special thanks to the AIX Toolkit's team to help narrow this down a bit - <a href="https://www.ibm.com/developerworks/community/forums/html/topic?id=28814b7c-93a3-4cd3-9f42-94f36620013f#547a941b-11c6-4f5b-aa6c-b8208b7b86bb" rel="nofollow">https://www.ibm.com/developerworks/community/forums/html/topic?id=28814b7c-93a3-4cd3-9f42-94f36620013f#547a941b-11c6-4f5b-aa6c-b8208b7b86bb</a></p>
<p dir="auto">Update: Added LDFLAGS as I forgot to include that -- required for AIX to recognize gomp and other packages when linking.</p> | <p dir="auto">This is a follow up of discussions in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="495747794" data-permission-text="Title is private" data-url="https://github.com/scipy/scipy/issues/10844" data-hovercard-type="pull_request" data-hovercard-url="/scipy/scipy/pull/10844/hovercard" href="https://github.com/scipy/scipy/pull/10844">#10844</a>.</p>
<p dir="auto"><strong>Describe the solution you'd like</strong><br>
All sampling methods in <code class="notranslate">scipy.stats</code> are using <code class="notranslate">random_state</code> which is a <code class="notranslate">np.random.Generator</code> (for new code). But this <code class="notranslate">numpy</code> generator is not aware of dimensions. Also, the new <code class="notranslate">scipy.stats.qmc</code> allow to generate samples efficiently in n-dimensions. It would be nice to bridge the gap between the two.</p>
<p dir="auto">Currently there is a <code class="notranslate">qmc.MultivariateNormalQMC</code>. Instead of duplicating this for other distributions, a solution could be to make the QMC engines inherit from <code class="notranslate">np.random.BitGenerator</code>. We could then use the new QMC engines with all the existing distributions.</p>
<p dir="auto"><strong>Describe alternatives you've considered</strong></p>
<ol dir="auto">
<li>Solution using a <code class="notranslate">BitGenerator</code>: Seemingly, it must be done in Cython. Otherwise I saw that there was a wrapper around <code class="notranslate">BitGenerator</code>, but this is not available in <code class="notranslate">numpy</code>... <a href="https://bashtage.github.io/randomgen/bit_generators/userbitgenerator.html" rel="nofollow">https://bashtage.github.io/randomgen/bit_generators/userbitgenerator.html</a> from <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bashtage/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bashtage">@bashtage</a>. This is working but the underlying <code class="notranslate">numpy</code> code is not aware of dimensions (<a href="https://github.com/numpy/numpy/blob/e4feb7027e397925d220a10dd58b581b87ca1fec/numpy/random/_generator.pyx#L3562-L3568">https://github.com/numpy/numpy/blob/e4feb7027e397925d220a10dd58b581b87ca1fec/numpy/random/_generator.pyx#L3562-L3568</a>).</li>
</ol>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from numpy.random import Generator
from randomgen import UserBitGenerator
class SobolNP:
def __init__(self, state):
self._next_64 = None
self.engine = Sobol(d=1, scramble=False, seed=state)
def random_raw(self):
"""Generate the next "raw" value, which is 64 bits"""
return int(self.engine.random() * 2**64) # although Sobol uses 30 bits...
@property
def next_64(self):
def _next_64(void_p):
return self.random_raw()
self._next_64 = _next_64
return _next_64
# examples
prng = SobolNP(1234)
sobol_bit_generator = UserBitGenerator(prng.next_64, 64)
gen = Generator(sobol_bit_generator)
gen.random(8)"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">numpy</span>.<span class="pl-s1">random</span> <span class="pl-k">import</span> <span class="pl-v">Generator</span>
<span class="pl-k">from</span> <span class="pl-s1">randomgen</span> <span class="pl-k">import</span> <span class="pl-v">UserBitGenerator</span>
<span class="pl-k">class</span> <span class="pl-v">SobolNP</span>:
<span class="pl-k">def</span> <span class="pl-en">__init__</span>(<span class="pl-s1">self</span>, <span class="pl-s1">state</span>):
<span class="pl-s1">self</span>.<span class="pl-s1">_next_64</span> <span class="pl-c1">=</span> <span class="pl-c1">None</span>
<span class="pl-s1">self</span>.<span class="pl-s1">engine</span> <span class="pl-c1">=</span> <span class="pl-v">Sobol</span>(<span class="pl-s1">d</span><span class="pl-c1">=</span><span class="pl-c1">1</span>, <span class="pl-s1">scramble</span><span class="pl-c1">=</span><span class="pl-c1">False</span>, <span class="pl-s1">seed</span><span class="pl-c1">=</span><span class="pl-s1">state</span>)
<span class="pl-k">def</span> <span class="pl-en">random_raw</span>(<span class="pl-s1">self</span>):
<span class="pl-s">"""Generate the next "raw" value, which is 64 bits"""</span>
<span class="pl-k">return</span> <span class="pl-en">int</span>(<span class="pl-s1">self</span>.<span class="pl-s1">engine</span>.<span class="pl-en">random</span>() <span class="pl-c1">*</span> <span class="pl-c1">2</span><span class="pl-c1">**</span><span class="pl-c1">64</span>) <span class="pl-c"># although Sobol uses 30 bits...</span>
<span class="pl-en">@<span class="pl-s1">property</span></span>
<span class="pl-k">def</span> <span class="pl-en">next_64</span>(<span class="pl-s1">self</span>):
<span class="pl-k">def</span> <span class="pl-en">_next_64</span>(<span class="pl-s1">void_p</span>):
<span class="pl-k">return</span> <span class="pl-s1">self</span>.<span class="pl-en">random_raw</span>()
<span class="pl-s1">self</span>.<span class="pl-s1">_next_64</span> <span class="pl-c1">=</span> <span class="pl-s1">_next_64</span>
<span class="pl-k">return</span> <span class="pl-s1">_next_64</span>
<span class="pl-c"># examples</span>
<span class="pl-s1">prng</span> <span class="pl-c1">=</span> <span class="pl-v">SobolNP</span>(<span class="pl-c1">1234</span>)
<span class="pl-s1">sobol_bit_generator</span> <span class="pl-c1">=</span> <span class="pl-v">UserBitGenerator</span>(<span class="pl-s1">prng</span>.<span class="pl-s1">next_64</span>, <span class="pl-c1">64</span>)
<span class="pl-s1">gen</span> <span class="pl-c1">=</span> <span class="pl-v">Generator</span>(<span class="pl-s1">sobol_bit_generator</span>)
<span class="pl-s1">gen</span>.<span class="pl-en">random</span>(<span class="pl-c1">8</span>)</pre></div>
<ol start="2" dir="auto">
<li>Another solution would be to mock <code class="notranslate">np.random.Generator</code>: I am using <code class="notranslate">__getattr__</code> to mock calls to the distributions. So calls like <code class="notranslate">random_state.uniform(...)</code>. Seems to be working and n-dimensions is ok too.</li>
</ol>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from numpy.random import Generator
import scipy.stats as stats
from functools import partial
class ScipyGenerator:
@property
def __class__(self):
return Generator
def __init__(self, d):
self.qrng = stats.qmc.Sobol(d=d, scramble=False)
def rvs(self, *args, dist, **kwargs):
args = list(args)
size = kwargs.pop('size', None)
if size is None:
size = args.pop(0)
sample = self.qrng.random(size)
return dist(*args, **kwargs).ppf(sample)
def __getattr__(self, attr):
try:
dist = getattr(stats, attr)
return partial(self.rvs, dist=dist)
except AttributeError as err_np:
raise err_np
# examples
random_state = ScipyGenerator(d=2)
isinstance(random_state, Generator)
random_state.uniform(8)
random_state.gamma(2, size=8)"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">numpy</span>.<span class="pl-s1">random</span> <span class="pl-k">import</span> <span class="pl-v">Generator</span>
<span class="pl-k">import</span> <span class="pl-s1">scipy</span>.<span class="pl-s1">stats</span> <span class="pl-k">as</span> <span class="pl-s1">stats</span>
<span class="pl-k">from</span> <span class="pl-s1">functools</span> <span class="pl-k">import</span> <span class="pl-s1">partial</span>
<span class="pl-k">class</span> <span class="pl-v">ScipyGenerator</span>:
<span class="pl-en">@<span class="pl-s1">property</span></span>
<span class="pl-k">def</span> <span class="pl-en">__class__</span>(<span class="pl-s1">self</span>):
<span class="pl-k">return</span> <span class="pl-v">Generator</span>
<span class="pl-k">def</span> <span class="pl-en">__init__</span>(<span class="pl-s1">self</span>, <span class="pl-s1">d</span>):
<span class="pl-s1">self</span>.<span class="pl-s1">qrng</span> <span class="pl-c1">=</span> <span class="pl-s1">stats</span>.<span class="pl-s1">qmc</span>.<span class="pl-v">Sobol</span>(<span class="pl-s1">d</span><span class="pl-c1">=</span><span class="pl-s1">d</span>, <span class="pl-s1">scramble</span><span class="pl-c1">=</span><span class="pl-c1">False</span>)
<span class="pl-k">def</span> <span class="pl-en">rvs</span>(<span class="pl-s1">self</span>, <span class="pl-c1">*</span><span class="pl-s1">args</span>, <span class="pl-s1">dist</span>, <span class="pl-c1">**</span><span class="pl-s1">kwargs</span>):
<span class="pl-s1">args</span> <span class="pl-c1">=</span> <span class="pl-en">list</span>(<span class="pl-s1">args</span>)
<span class="pl-s1">size</span> <span class="pl-c1">=</span> <span class="pl-s1">kwargs</span>.<span class="pl-en">pop</span>(<span class="pl-s">'size'</span>, <span class="pl-c1">None</span>)
<span class="pl-k">if</span> <span class="pl-s1">size</span> <span class="pl-c1">is</span> <span class="pl-c1">None</span>:
<span class="pl-s1">size</span> <span class="pl-c1">=</span> <span class="pl-s1">args</span>.<span class="pl-en">pop</span>(<span class="pl-c1">0</span>)
<span class="pl-s1">sample</span> <span class="pl-c1">=</span> <span class="pl-s1">self</span>.<span class="pl-s1">qrng</span>.<span class="pl-en">random</span>(<span class="pl-s1">size</span>)
<span class="pl-k">return</span> <span class="pl-en">dist</span>(<span class="pl-c1">*</span><span class="pl-s1">args</span>, <span class="pl-c1">**</span><span class="pl-s1">kwargs</span>).<span class="pl-en">ppf</span>(<span class="pl-s1">sample</span>)
<span class="pl-k">def</span> <span class="pl-en">__getattr__</span>(<span class="pl-s1">self</span>, <span class="pl-s1">attr</span>):
<span class="pl-k">try</span>:
<span class="pl-s1">dist</span> <span class="pl-c1">=</span> <span class="pl-en">getattr</span>(<span class="pl-s1">stats</span>, <span class="pl-s1">attr</span>)
<span class="pl-k">return</span> <span class="pl-en">partial</span>(<span class="pl-s1">self</span>.<span class="pl-s1">rvs</span>, <span class="pl-s1">dist</span><span class="pl-c1">=</span><span class="pl-s1">dist</span>)
<span class="pl-k">except</span> <span class="pl-v">AttributeError</span> <span class="pl-k">as</span> <span class="pl-s1">err_np</span>:
<span class="pl-k">raise</span> <span class="pl-s1">err_np</span>
<span class="pl-c"># examples</span>
<span class="pl-s1">random_state</span> <span class="pl-c1">=</span> <span class="pl-v">ScipyGenerator</span>(<span class="pl-s1">d</span><span class="pl-c1">=</span><span class="pl-c1">2</span>)
<span class="pl-en">isinstance</span>(<span class="pl-s1">random_state</span>, <span class="pl-v">Generator</span>)
<span class="pl-s1">random_state</span>.<span class="pl-en">uniform</span>(<span class="pl-c1">8</span>)
<span class="pl-s1">random_state</span>.<span class="pl-en">gamma</span>(<span class="pl-c1">2</span>, <span class="pl-s1">size</span><span class="pl-c1">=</span><span class="pl-c1">8</span>)</pre></div> | 0 |
<p dir="auto">Application dump saved if needed. Zones duplicate on monitor disconnect and may even pile up more and more the more it is disconnected and reconnected. Closing PowerToys and reopening fixes the issue until a monitor is disconnected again. Adding monitors does not have the same effect, it appears to be specifically removing monitors.</p>
<h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: Microsoft Windows [Version 10.0.19041.388]
PowerToys version: 0.19.1
PowerToy module for which you are reporting the bug (if applicable): Fancy Zones"><pre class="notranslate"><code class="notranslate">Windows build number: Microsoft Windows [Version 10.0.19041.388]
PowerToys version: 0.19.1
PowerToy module for which you are reporting the bug (if applicable): Fancy Zones
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">Disconnect a monitor. Zones will be duplicated on any remaining monitors and if the monitor is re-connected zones will come back but also be duplicated.</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">Zones should remain as single units and not be duplicated. Windows key left/right should cycle the zones per monitor, or if zones are numbered globally in the future through those zones as numbered.</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">Zones are duplicated, potentially many times. Windows key left/right also goes a little crazy in the order of zones it goes through.</p>
<h1 dir="auto">Screenshots</h1>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/38865748/88070819-1abb0b80-cb41-11ea-88ee-e2324a7b6678.png"><img width="713" alt="fancy zones duplicated" src="https://user-images.githubusercontent.com/38865748/88070819-1abb0b80-cb41-11ea-88ee-e2324a7b6678.png" style="max-width: 100%;"></a></p> | <h3 dir="auto">Can PowerToys will installed from Windows Store ?</h3>
<p dir="auto">PowerToys is becoming a must need App for a Windows 10 PC but why it isn't available to Windows Store ? We can get more installs & ratings from store . We can deploy it to the Windows store for installation . I bet you it will be the most rated app in Entire Windows Store in Utilities and PC management Category ?</p>
<p dir="auto">Any thoughts ? Thank you ?</p> | 0 |
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: 2.7.5</li>
<li>Operating System version: mac</li>
<li>Java version: 1.8</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ol dir="auto">
<li>在本地起一个服务注册到zookeeper</li>
<li>根据dubbo SPI,编写Filter,使用Active注解,</li>
</ol>
<p dir="auto">Pls. provide [GitHub address] to reproduce this issue.</p>
<h3 dir="auto">Expected Result</h3>
<p dir="auto">这个Filter可以生效拦截所有的dubbo接口</p>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">Filter没有拦截所有的dubbo接口,只会拦截本地注册的服务</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,2.6.1</li>
<li>Operating System version: MacOS 10.13.6</li>
<li>Java version: 1.8</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ol dir="auto">
<li>Create Application with apollo configcenter, Apollo client version 1.2.0, register with zookeeper</li>
<li>Create a class that implements BeanPostProcessor</li>
<li>Create a class that annotated with Spring's <code class="notranslate">@org.springframework.context.annotation.Configuration</code> and define a Dubbo RerenceBean</li>
<li>Start application</li>
</ol>
<p dir="auto">Pls. provide [https://github.com/chutian52/dubbo-test] to reproduce this issue.</p>
<h3 dir="auto">Expected Result</h3>
<p dir="auto">no exception</p>
<h3 dir="auto">Actual Result</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'configuration': Injection of @Reference dependencies is failed; nested exception is java.lang.IllegalStateException: No application config found or it's not a valid config! Please add <dubbo:application name="..." /> to your spring config.
at org.apache.dubbo.config.spring.beans.factory.annotation.AnnotationInjectedBeanPostProcessor.postProcessPropertyValues(AnnotationInjectedBeanPostProcessor.java:151) ~[dubbo-2.7.3.jar:2.7.3]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1264) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:553) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:483) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:306) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:372) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1173) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1067) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:513) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:483) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:306) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.context.support.PostProcessorRegistrationDelegate.registerBeanPostProcessors(PostProcessorRegistrationDelegate.java:223) ~[spring-context-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.context.support.AbstractApplicationContext.registerBeanPostProcessors(AbstractApplicationContext.java:702) ~[spring-context-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:527) ~[spring-context-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:737) [spring-boot-1.5.2.RELEASE.jar:1.5.2.RELEASE]
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:370) [spring-boot-1.5.2.RELEASE.jar:1.5.2.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:314) [spring-boot-1.5.2.RELEASE.jar:1.5.2.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1162) [spring-boot-1.5.2.RELEASE.jar:1.5.2.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1151) [spring-boot-1.5.2.RELEASE.jar:1.5.2.RELEASE]
at com.dubbo.test.Application.main(Application.java:14) [classes/:na]
Caused by: java.lang.IllegalStateException: No application config found or it's not a valid config! Please add <dubbo:application name="..." /> to your spring config.
at org.apache.dubbo.config.AbstractInterfaceConfig.checkApplication(AbstractInterfaceConfig.java:216) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.config.ReferenceConfig.checkAndUpdateSubConfigs(ReferenceConfig.java:239) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.config.ReferenceConfig.get(ReferenceConfig.java:244) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor$ReferenceBeanInvocationHandler.init(ReferenceAnnotationBeanPostProcessor.java:269) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor$ReferenceBeanInvocationHandler.access$100(ReferenceAnnotationBeanPostProcessor.java:242) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor.buildInvocationHandler(ReferenceAnnotationBeanPostProcessor.java:236) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor.buildProxy(ReferenceAnnotationBeanPostProcessor.java:219) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor.doGetInjectedBean(ReferenceAnnotationBeanPostProcessor.java:134) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.config.spring.beans.factory.annotation.AnnotationInjectedBeanPostProcessor.getInjectedObject(AnnotationInjectedBeanPostProcessor.java:360) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.config.spring.beans.factory.annotation.AnnotationInjectedBeanPostProcessor$AnnotatedFieldElement.inject(AnnotationInjectedBeanPostProcessor.java:540) ~[dubbo-2.7.3.jar:2.7.3]
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:88) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.apache.dubbo.config.spring.beans.factory.annotation.AnnotationInjectedBeanPostProcessor.postProcessPropertyValues(AnnotationInjectedBeanPostProcessor.java:147) ~[dubbo-2.7.3.jar:2.7.3]
... 25 common frames omitted"><pre class="notranslate"><code class="notranslate">org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'configuration': Injection of @Reference dependencies is failed; nested exception is java.lang.IllegalStateException: No application config found or it's not a valid config! Please add <dubbo:application name="..." /> to your spring config.
at org.apache.dubbo.config.spring.beans.factory.annotation.AnnotationInjectedBeanPostProcessor.postProcessPropertyValues(AnnotationInjectedBeanPostProcessor.java:151) ~[dubbo-2.7.3.jar:2.7.3]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1264) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:553) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:483) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:306) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:372) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1173) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1067) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:513) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:483) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:306) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.context.support.PostProcessorRegistrationDelegate.registerBeanPostProcessors(PostProcessorRegistrationDelegate.java:223) ~[spring-context-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.context.support.AbstractApplicationContext.registerBeanPostProcessors(AbstractApplicationContext.java:702) ~[spring-context-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:527) ~[spring-context-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:737) [spring-boot-1.5.2.RELEASE.jar:1.5.2.RELEASE]
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:370) [spring-boot-1.5.2.RELEASE.jar:1.5.2.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:314) [spring-boot-1.5.2.RELEASE.jar:1.5.2.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1162) [spring-boot-1.5.2.RELEASE.jar:1.5.2.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1151) [spring-boot-1.5.2.RELEASE.jar:1.5.2.RELEASE]
at com.dubbo.test.Application.main(Application.java:14) [classes/:na]
Caused by: java.lang.IllegalStateException: No application config found or it's not a valid config! Please add <dubbo:application name="..." /> to your spring config.
at org.apache.dubbo.config.AbstractInterfaceConfig.checkApplication(AbstractInterfaceConfig.java:216) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.config.ReferenceConfig.checkAndUpdateSubConfigs(ReferenceConfig.java:239) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.config.ReferenceConfig.get(ReferenceConfig.java:244) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor$ReferenceBeanInvocationHandler.init(ReferenceAnnotationBeanPostProcessor.java:269) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor$ReferenceBeanInvocationHandler.access$100(ReferenceAnnotationBeanPostProcessor.java:242) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor.buildInvocationHandler(ReferenceAnnotationBeanPostProcessor.java:236) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor.buildProxy(ReferenceAnnotationBeanPostProcessor.java:219) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor.doGetInjectedBean(ReferenceAnnotationBeanPostProcessor.java:134) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.config.spring.beans.factory.annotation.AnnotationInjectedBeanPostProcessor.getInjectedObject(AnnotationInjectedBeanPostProcessor.java:360) ~[dubbo-2.7.3.jar:2.7.3]
at org.apache.dubbo.config.spring.beans.factory.annotation.AnnotationInjectedBeanPostProcessor$AnnotatedFieldElement.inject(AnnotationInjectedBeanPostProcessor.java:540) ~[dubbo-2.7.3.jar:2.7.3]
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:88) ~[spring-beans-4.3.7.RELEASE.jar:4.3.7.RELEASE]
at org.apache.dubbo.config.spring.beans.factory.annotation.AnnotationInjectedBeanPostProcessor.postProcessPropertyValues(AnnotationInjectedBeanPostProcessor.java:147) ~[dubbo-2.7.3.jar:2.7.3]
... 25 common frames omitted
</code></pre></div>
<h3 dir="auto">Why?</h3>
<p dir="auto">initialize order<br>
<code class="notranslate">OrderedBeanPostProcessor</code>(dependson <code class="notranslate">Configuration</code>) -> <code class="notranslate">Configuration</code> -> <code class="notranslate">DemoService</code>(ReferenceAnnotationBeanPostProcessor) -> <code class="notranslate">ApplicationConfig</code></p>
<p dir="auto">ApplicationConfig#refesh does not get Apollo configs</p>
<h3 dir="auto">How to resolve?</h3>
<ol dir="auto">
<li>Simple resolution is let <code class="notranslate">DubboConfigBindingBeanPostProcessor</code> implements <code class="notranslate">PriorityOrdered</code> to Make sure it's initialized before <code class="notranslate">OrderedBeanPostProcessor </code>.</li>
<li>Make sure that Dubbo's enviroment can get configs that not defined in <code class="notranslate">application.properties</code></li>
</ol> | 0 |
<h3 dir="auto">Apache Airflow version</h3>
<p dir="auto">Other Airflow 2 version (please specify below)</p>
<h3 dir="auto">What happened</h3>
<p dir="auto">variables are getting duplicated on upgrading airflow to 2.5.3 from 2.4.1.<br>
after upgrade when the airflow-sync-variables pod runs its not finding the existing variables and then adding it again.</p>
<p dir="auto"><strong>logs from airflow-sync-variables:</strong></p>
<p dir="auto">/home/airflow/.local/lib/python3.8/site-packages/airflow/models/base.py:49 MovedIn20Warning: Deprecated API features detected! These feature(s) are not compatible with SQLAlchemy 2.0. To prevent incompatible upgrades prior to updating applications, ensure requirements files are pinned to "sqlalchemy<2.0". Set environment variable SQLALCHEMY_WARN_20=1 to show all deprecation warnings. Set environment variable SQLALCHEMY_SILENCE_UBER_WARNING=1 to silence this message. (Background on SQLAlchemy 2.0 at: <a href="https://sqlalche.me/e/b8d9" rel="nofollow">https://sqlalche.me/e/b8d9</a>)<br>
[�[34m2023-07-09 05:59:12,443�[0m] {�[34msync_variables.py:�[0m357} INFO�[0m - BEGIN: airflow variables sync�[0m<br>
[�[34m2023-07-09 05:59:14,521�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">TEMP-BUCKET</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,534�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">TEMP-BUCKET</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,538�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">PERSPECTIVE-BUCKET</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,546�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">PERSPECTIVE-BUCKET</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,550�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">TAMR_INPUT_BUCKET_NAME</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,553�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">TAMR_INPUT_BUCKET_NAME</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,562�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">TAMR_OUTPUT_BUCKET_NAME</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,573�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">TAMR_OUTPUT_BUCKET_NAME</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,577�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">RAW-BUCKET</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,580�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">RAW-BUCKET</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,585�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">EXTRACTED-BUCKET</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,589�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">EXTRACTED-BUCKET</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,592�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">CATEGORIZED-BUCKET</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,596�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">CATEGORIZED-BUCKET</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,600�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">STRUCTURED-BUCKET</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,603�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">STRUCTURED-BUCKET</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,608�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">STANDARD-BUCKET</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,612�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">STANDARD-BUCKET</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,616�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">NPD_DATE</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,619�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">NPD_DATE</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,623�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">SPARK-KUBERNETES-ANNOTATION</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,631�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">SPARK-KUBERNETES-ANNOTATION</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,635�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">SPARK-DRIVER-MEMORY</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,638�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">SPARK-DRIVER-MEMORY</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,641�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">SPARK-EXECUTOR-MEMORY</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,645�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">SPARK-EXECUTOR-MEMORY</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,648�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">SPARK-EXECUTOR-CORES</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,653�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">SPARK-EXECUTOR-CORES</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,656�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">SPARK-NUM-EXECUTORS</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,659�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">SPARK-NUM-EXECUTORS</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,662�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">DATACURATION-OUTPUT-BUCKET</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,665�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">DATACURATION-OUTPUT-BUCKET</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,671�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">ENT_NTFN_USER</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,676�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">ENT_NTFN_USER</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,694�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">ENT_NTFN_CONSUMER_COUNT</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,698�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">ENT_NTFN_CONSUMER_COUNT</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,710�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">MYID_BASE_URL</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,714�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">MYID_BASE_URL</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,727�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">DATALAKE_BUCKET</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,731�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">DATALAKE_BUCKET</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,735�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">BITPULSE_WEBBITS_DATALAKE_PATH</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,744�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">BITPULSE_WEBBITS_DATALAKE_PATH</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,749�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">UOM_DOCKER_IMAGE</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,753�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">UOM_DOCKER_IMAGE</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,757�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">UOM_NAMESPACE</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,760�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">UOM_NAMESPACE</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,765�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">UOM_MAPPING_FILE_PATH</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 05:59:14,768�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">UOM_MAPPING_FILE_PATH</code> was successfully added.�[0m<br>
[�[34m2023-07-09 05:59:14,774�[0m] {�[34msync_variables.py:�[0m360} INFO�[0m - END: airflow variables sync�[0m<br>
[�[34m2023-07-09 06:00:14,864�[0m] {�[34msync_variables.py:�[0m357} INFO�[0m - BEGIN: airflow variables sync�[0m<br>
[�[34m2023-07-09 06:00:14,917�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">STRUCTURED-BUCKET</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 06:00:14,921�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">STRUCTURED-BUCKET</code> was successfully added.�[0m<br>
[�[34m2023-07-09 06:00:14,952�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">SPARK-EXECUTOR-CORES</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 06:00:14,958�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">SPARK-EXECUTOR-CORES</code> was successfully added.�[0m<br>
[�[34m2023-07-09 06:00:14,990�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">ENT_NTFN_CONSUMER_COUNT</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 06:00:14,994�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">ENT_NTFN_CONSUMER_COUNT</code> was successfully added.�[0m<br>
[�[34m2023-07-09 06:00:15,013�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">MYID_REDIRECT_BASE_URL</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 06:00:15,016�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">MYID_REDIRECT_BASE_URL</code> was successfully added.�[0m<br>
[�[34m2023-07-09 06:00:15,035�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">UOM_DOCKER_IMAGE</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 06:00:15,040�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">UOM_DOCKER_IMAGE</code> was successfully added.�[0m<br>
[�[34m2023-07-09 06:00:15,044�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">UOM_NAMESPACE</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 06:00:15,048�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">UOM_NAMESPACE</code> was successfully added.�[0m<br>
[�[34m2023-07-09 06:00:15,058�[0m] {�[34msync_variables.py:�[0m360} INFO�[0m - END: airflow variables sync�[0m<br>
[�[34m2023-07-09 06:01:15,132�[0m] {�[34msync_variables.py:�[0m357} INFO�[0m - BEGIN: airflow variables sync�[0m<br>
[�[34m2023-07-09 06:01:15,256�[0m] {�[34msync_variables.py:�[0m336} INFO�[0m - Variable=<code class="notranslate">ENT_NTFN_CONSUMER_COUNT</code> is missing, adding...�[0m<br>
[�[34m2023-07-09 06:01:15,260�[0m] {�[34msync_variables.py:�[0m348} INFO�[0m - Variable=<code class="notranslate">ENT_NTFN_CONSUMER_COUNT</code> was successfully added.�[0m<br>
[�[34m2023-07-09 06:01:15,323�[0m] {�[34msync_variables.py:�[0m360} INFO�[0m - END: airflow variables sync�[0m<br>
[�[34m2023-07-09 06:02:15,419�[0m] {�[34msync_variables.py:�[0m357} INFO�[0m - BEGIN: airflow variables sync�[0m</p>
<h3 dir="auto">What you think should happen instead</h3>
<p dir="auto">After upgrade when the airflow-sync-variables pod runs it should finding the existing variables and skip creating it again.</p>
<h3 dir="auto">How to reproduce</h3>
<p dir="auto">downgrade the airflow to 2.4.1 where its working<br>
upgrade it to airflow 2.5.3 once we sync the airflow-sync-variables pod the variables will be duplicated in the UI and in database variable table.</p>
<h3 dir="auto">Operating System</h3>
<p dir="auto">N/A</p>
<h3 dir="auto">Versions of Apache Airflow Providers</h3>
<p dir="auto"><strong>on airflow 2.4.1 before upgrade</strong></p>
<p dir="auto">apache-airflow-providers-amazon 5.1.0<br>
apache-airflow-providers-apache-livy 2.2.3<br>
apache-airflow-providers-celery 3.0.0<br>
apache-airflow-providers-cncf-kubernetes 4.4.0<br>
apache-airflow-providers-common-sql 1.2.0<br>
apache-airflow-providers-docker 3.2.0<br>
apache-airflow-providers-elasticsearch 4.2.1<br>
apache-airflow-providers-ftp 3.1.0<br>
apache-airflow-providers-google 8.3.0<br>
apache-airflow-providers-grpc 3.0.0<br>
apache-airflow-providers-hashicorp 3.1.0<br>
apache-airflow-providers-http 4.0.0<br>
apache-airflow-providers-imap 3.0.0<br>
apache-airflow-providers-microsoft-azure 4.3.0<br>
apache-airflow-providers-mysql 3.2.1<br>
apache-airflow-providers-odbc 3.1.2<br>
apache-airflow-providers-postgres 5.2.2<br>
apache-airflow-providers-redis 3.0.0<br>
apache-airflow-providers-sendgrid 3.0.0<br>
apache-airflow-providers-sftp 4.1.0<br>
apache-airflow-providers-slack 5.1.0<br>
apache-airflow-providers-sqlite 3.2.1<br>
apache-airflow-providers-ssh 3.2.0</p>
<p dir="auto"><strong>on 2.5.3 after upgrade</strong></p>
<p dir="auto">apache-airflow-providers-amazon 5.1.0<br>
apache-airflow-providers-apache-livy 2.2.3<br>
apache-airflow-providers-celery 3.2.0<br>
apache-airflow-providers-cncf-kubernetes 7.0.0<br>
apache-airflow-providers-common-sql 1.5.1<br>
apache-airflow-providers-docker 3.7.0<br>
apache-airflow-providers-elasticsearch 4.5.0<br>
apache-airflow-providers-ftp 3.4.1<br>
apache-airflow-providers-google 10.1.1<br>
apache-airflow-providers-grpc 3.2.0<br>
apache-airflow-providers-hashicorp 3.4.0<br>
apache-airflow-providers-http 4.4.1<br>
apache-airflow-providers-imap 3.2.1<br>
apache-airflow-providers-microsoft-azure 6.1.1<br>
apache-airflow-providers-odbc 3.3.0<br>
apache-airflow-providers-postgres 5.5.0<br>
apache-airflow-providers-redis 3.2.0<br>
apache-airflow-providers-sendgrid 3.2.0<br>
apache-airflow-providers-sftp 4.3.0<br>
apache-airflow-providers-slack 7.3.0<br>
apache-airflow-providers-snowflake 4.1.0<br>
apache-airflow-providers-sqlite 3.4.1<br>
apache-airflow-providers-ssh 3.7.0</p>
<h3 dir="auto">Deployment</h3>
<p dir="auto">Official Apache Airflow Helm Chart</p>
<h3 dir="auto">Deployment details</h3>
<p dir="auto">Airflow version 2.5.3</p>
<p dir="auto">currently working with helm charts from Airflow Helm Chart (User Community)<br>
<a href="https://artifacthub.io/packages/helm/airflow-helm/airflow/8.7.0" rel="nofollow">https://artifacthub.io/packages/helm/airflow-helm/airflow/8.7.0</a></p>
<p dir="auto">using Argocd as GitOps CD tool for Kubernetes.</p>
<h3 dir="auto">Anything else</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Are you willing to submit PR?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Yes I am willing to submit a PR!</li>
</ul>
<h3 dir="auto">Code of Conduct</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li>
</ul> | <p dir="auto"><strong>Description</strong><br>
Healthcheck endpoint returns 503 (Service Unavailable) when server is unhealthy.</p>
<p dir="auto"><strong>Use case / motivation</strong><br>
Current healthcheck api returns status code "200 (OK)"even if server is "unhealthy".<br>
It couldn't be working healthcheck correctly when some cloud services (like aws) which can periodically sends healthcheck requests to airflow.<br>
Because they are judging success or failure only seeing status code of api response. They don't see response body json at all.</p>
<p dir="auto"><strong>Are you willing to submit a PR?</strong><br>
Yup. But I'm not ready ready PR for this issue.</p>
<p dir="auto"><strong>Related Issues</strong></p> | 0 |
<h3 dir="auto">Description</h3>
<p dir="auto">When using sharding to distribute a large array over several devices, each shard is unable to utilize the entire device's RAM/HBM. In fact, it seems to be limited to about half that size.<br>
I've recreated this both on Cloud TPU (v2-8, having 8 devices of 8GB each) and on the host of the TPU with 8 CPU devices.</p>
<p dir="auto"><em>I'm using the nifty <a href="https://github.com/ayaka14732/jax-smi">jax_smi</a> to monitor live memory utilization</em></p>
<h2 dir="auto">Single device allocation</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import jax
import jax.numpy as jnp
from jax.experimental import mesh_utils
from jax.sharding import PositionalSharding
from jax_smi import initialise_tracking
initialise_tracking(interval=0.1)
a = jnp.zeros([2_000_000_000])
jax.debug.visualize_array_sharding(a, use_color=False)"><pre class="notranslate"><code class="notranslate">import jax
import jax.numpy as jnp
from jax.experimental import mesh_utils
from jax.sharding import PositionalSharding
from jax_smi import initialise_tracking
initialise_tracking(interval=0.1)
a = jnp.zeros([2_000_000_000])
jax.debug.visualize_array_sharding(a, use_color=False)
</code></pre></div>
<p dir="auto">Output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="┌───────┐
│ TPU 0 │
└───────┘"><pre class="notranslate"><code class="notranslate">┌───────┐
│ TPU 0 │
└───────┘
</code></pre></div>
<p dir="auto">Memory usage:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" device: Total 7.5GB
7.5GB ( 100%): TPU_0(process=0,(0,0,0,0))"><pre class="notranslate"><code class="notranslate"> device: Total 7.5GB
7.5GB ( 100%): TPU_0(process=0,(0,0,0,0))
</code></pre></div>
<p dir="auto">Here I've allocated almost the entire HBM for a single TPU v2 device.</p>
<h2 dir="auto">Sharding over 8 devices - success</h2>
<p dir="auto">When sharding, I'm able to allocate half of the above size (combined over all shards).<br>
The following will succeed, with the array size being 1_000_000_000, exactly half of before:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="del a # clear previous allocation
devices = mesh_utils.create_device_mesh((jax.device_count()))
a = jax.device_put(
jnp.zeros([1_000_000_000]),
PositionalSharding(devices)
)
jax.debug.visualize_array_sharding(a, use_color=False)"><pre class="notranslate"><code class="notranslate">del a # clear previous allocation
devices = mesh_utils.create_device_mesh((jax.device_count()))
a = jax.device_put(
jnp.zeros([1_000_000_000]),
PositionalSharding(devices)
)
jax.debug.visualize_array_sharding(a, use_color=False)
</code></pre></div>
<p dir="auto">Output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="┌───────┬───────┬───────┬───────┬───────┬───────┬───────┬───────┐
│ TPU 0 │ TPU 1 │ TPU 2 │ TPU 3 │ TPU 6 │ TPU 7 │ TPU 4 │ TPU 5 │
└───────┴───────┴───────┴───────┴───────┴───────┴───────┴───────┘"><pre class="notranslate"><code class="notranslate">┌───────┬───────┬───────┬───────┬───────┬───────┬───────┬───────┐
│ TPU 0 │ TPU 1 │ TPU 2 │ TPU 3 │ TPU 6 │ TPU 7 │ TPU 4 │ TPU 5 │
└───────┴───────┴───────┴───────┴───────┴───────┴───────┴───────┘
</code></pre></div>
<p dir="auto">Memory usage:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" device: Total 3.7GB
476.8MB (12.50%): TPU_0(process=0,(0,0,0,0))
476.8MB (12.50%): TPU_1(process=0,(0,0,0,1))
476.8MB (12.50%): TPU_2(process=0,(1,0,0,0))
476.8MB (12.50%): TPU_3(process=0,(1,0,0,1))
476.8MB (12.50%): TPU_4(process=0,(0,1,0,0))
476.8MB (12.50%): TPU_5(process=0,(0,1,0,1))
476.8MB (12.50%): TPU_6(process=0,(1,1,0,0))
476.8MB (12.50%): TPU_7(process=0,(1,1,0,1))"><pre class="notranslate"><code class="notranslate"> device: Total 3.7GB
476.8MB (12.50%): TPU_0(process=0,(0,0,0,0))
476.8MB (12.50%): TPU_1(process=0,(0,0,0,1))
476.8MB (12.50%): TPU_2(process=0,(1,0,0,0))
476.8MB (12.50%): TPU_3(process=0,(1,0,0,1))
476.8MB (12.50%): TPU_4(process=0,(0,1,0,0))
476.8MB (12.50%): TPU_5(process=0,(0,1,0,1))
476.8MB (12.50%): TPU_6(process=0,(1,1,0,0))
476.8MB (12.50%): TPU_7(process=0,(1,1,0,1))
</code></pre></div>
<h2 dir="auto">Sharding over 8 devices - fail</h2>
<p dir="auto">When slightly increasing the array size (to 1_100_000_000), we fail with RESOURCE_EXHAUSTED:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="del a # clear previous allocation
a = jax.device_put(
jnp.zeros([1_100_000_000]),
PositionalSharding(devices)
)
jax.debug.visualize_array_sharding(a, use_color=False)"><pre class="notranslate"><code class="notranslate">del a # clear previous allocation
a = jax.device_put(
jnp.zeros([1_100_000_000]),
PositionalSharding(devices)
)
jax.debug.visualize_array_sharding(a, use_color=False)
</code></pre></div>
<p dir="auto">Output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2023-01-19 13:17:02.322393: E external/org_tensorflow/tensorflow/compiler/xla/pjrt/pjrt_stream_executor_client.cc:2163] Execution of replica 0 failed: RESOURCE_EXHAUSTED: Failed to allocate request for 524.52MiB (550002688B) on device ordinal 0
Output exceeds the [size limit](command:workbench.action.openSettings?[). Open the full output data [in a text editor](command:workbench.action.openLargeOutput?ebf90566-7cb0-46be-a7e1-235621eaddec)
---------------------------------------------------------------------------
XlaRuntimeError Traceback (most recent call last)
/tmp/ipykernel_2457251/453561208.py in <module>
----> 1 a = jax.device_put(
2 jnp.zeros([1_100_000_000]),
3 PositionalSharding(devices)
4 )
5 jax.debug.visualize_array_sharding(a, use_color=False)
...
-> 2136 out_bufs = self.xla_executable.execute_sharded_on_local_devices(
2137 input_bufs)
2138 if dispatch.needs_check_special():
XlaRuntimeError: RESOURCE_EXHAUSTED: Failed to allocate request for 524.52MiB (550002688B) on device ordinal 0"><pre class="notranslate"><code class="notranslate">2023-01-19 13:17:02.322393: E external/org_tensorflow/tensorflow/compiler/xla/pjrt/pjrt_stream_executor_client.cc:2163] Execution of replica 0 failed: RESOURCE_EXHAUSTED: Failed to allocate request for 524.52MiB (550002688B) on device ordinal 0
Output exceeds the [size limit](command:workbench.action.openSettings?[). Open the full output data [in a text editor](command:workbench.action.openLargeOutput?ebf90566-7cb0-46be-a7e1-235621eaddec)
---------------------------------------------------------------------------
XlaRuntimeError Traceback (most recent call last)
/tmp/ipykernel_2457251/453561208.py in <module>
----> 1 a = jax.device_put(
2 jnp.zeros([1_100_000_000]),
3 PositionalSharding(devices)
4 )
5 jax.debug.visualize_array_sharding(a, use_color=False)
...
-> 2136 out_bufs = self.xla_executable.execute_sharded_on_local_devices(
2137 input_bufs)
2138 if dispatch.needs_check_special():
XlaRuntimeError: RESOURCE_EXHAUSTED: Failed to allocate request for 524.52MiB (550002688B) on device ordinal 0
</code></pre></div>
<p dir="auto">(<em>I've truncated the entire error message, having a long stack</em>)</p>
<h2 dir="auto">CPU devices</h2>
<p dir="auto">To verify this is not specific to TPU, I've recreated this on several CPUs on the TPU host, using</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import os
os.environ["XLA_FLAGS"] = '--xla_force_host_platform_device_count=8' # Use 8 CPU devices
import jax
jax.config.update('jax_platform_name', 'cpu')"><pre class="notranslate"><code class="notranslate">import os
os.environ["XLA_FLAGS"] = '--xla_force_host_platform_device_count=8' # Use 8 CPU devices
import jax
jax.config.update('jax_platform_name', 'cpu')
</code></pre></div>
<p dir="auto">Having what I believe is 300GB of RAM on the host, I'm able to allocate a single [80_000_000_000] array:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" device: Total 298.0GB
298.0GB ( 100%): TFRT_CPU_0"><pre class="notranslate"><code class="notranslate"> device: Total 298.0GB
298.0GB ( 100%): TFRT_CPU_0
</code></pre></div>
<p dir="auto">When allocating a sharded [40_000_000_000] array, I can see an intermedia allocation of the entire array on a single device:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" device: Total 149.0GB
149.0GB ( 100%): TFRT_CPU_0"><pre class="notranslate"><code class="notranslate"> device: Total 149.0GB
149.0GB ( 100%): TFRT_CPU_0
</code></pre></div>
<p dir="auto">and when finalized, it is distributed across all devices:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" device: Total 149.0GB
18.6GB (12.50%): TFRT_CPU_0
18.6GB (12.50%): TFRT_CPU_1
18.6GB (12.50%): TFRT_CPU_2
18.6GB (12.50%): TFRT_CPU_3
18.6GB (12.50%): TFRT_CPU_4
18.6GB (12.50%): TFRT_CPU_5
18.6GB (12.50%): TFRT_CPU_6
18.6GB (12.50%): TFRT_CPU_7"><pre class="notranslate"><code class="notranslate"> device: Total 149.0GB
18.6GB (12.50%): TFRT_CPU_0
18.6GB (12.50%): TFRT_CPU_1
18.6GB (12.50%): TFRT_CPU_2
18.6GB (12.50%): TFRT_CPU_3
18.6GB (12.50%): TFRT_CPU_4
18.6GB (12.50%): TFRT_CPU_5
18.6GB (12.50%): TFRT_CPU_6
18.6GB (12.50%): TFRT_CPU_7
</code></pre></div>
<p dir="auto">However, trying to allocate [45_000_000_000] will fail; this time, with a kernel crash:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Canceled future for execute_request message before replies were done
The Kernel crashed while executing code in the the current cell or a previous cell. Please review the code in the cell(s) to identify a possible cause of the failure. Click [here](https://aka.ms/vscodeJupyterKernelCrash) for more info. View Jupyter [log](command:jupyter.viewOutput) for further details."><pre class="notranslate"><code class="notranslate">Canceled future for execute_request message before replies were done
The Kernel crashed while executing code in the the current cell or a previous cell. Please review the code in the cell(s) to identify a possible cause of the failure. Click [here](https://aka.ms/vscodeJupyterKernelCrash) for more info. View Jupyter [log](command:jupyter.viewOutput) for further details.
</code></pre></div>
<p dir="auto">The intermediate allocation is once again on a single device; it seems that there is enough memory for both the entire array allocation plus a single shard:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" device: Total 167.6GB
167.6GB ( 100%): TFRT_CPU_0"><pre class="notranslate"><code class="notranslate"> device: Total 167.6GB
167.6GB ( 100%): TFRT_CPU_0
</code></pre></div>
<h2 dir="auto">Summary</h2>
<p dir="auto">Is that the intended behavior?<br>
If so - what is the source of this allocation limit?</p>
<p dir="auto">P.S. - This is part of a <a href="https://github.com/google/jax/discussions/13842" data-hovercard-type="discussion" data-hovercard-url="/google/jax/discussions/13842/hovercard">larger effort </a>I'm working on.</p>
<h3 dir="auto">What jax/jaxlib version are you using?</h3>
<p dir="auto">jax 0.4.1, jaxlib 0.4.1</p>
<h3 dir="auto">Which accelerator(s) are you using?</h3>
<p dir="auto">CPU & TPU (v2-8)</p>
<h3 dir="auto">Additional system info</h3>
<p dir="auto">Cloud TPU, Ubuntu 20.04.4 LTS</p>
<h3 dir="auto">NVIDIA GPU info</h3>
<p dir="auto"><em>No response</em></p> | <p dir="auto">Please:</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Check for duplicate issues.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Provide a complete example of how to reproduce the bug, wrapped in triple backticks like this:</li>
</ul>
<p dir="auto">Code:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import jax
import jaxlib
import jaxlib.xla_extension as xe
jax.random.PRNGKey(0)
print(jax.devices())
print(xe.CpuDevice)"><pre class="notranslate"><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">jaxlib</span>.<span class="pl-s1">xla_extension</span> <span class="pl-k">as</span> <span class="pl-s1">xe</span>
<span class="pl-s1">jax</span>.<span class="pl-s1">random</span>.<span class="pl-v">PRNGKey</span>(<span class="pl-c1">0</span>)
<span class="pl-en">print</span>(<span class="pl-s1">jax</span>.<span class="pl-en">devices</span>())
<span class="pl-en">print</span>(<span class="pl-s1">xe</span>.<span class="pl-v">CpuDevice</span>)</pre></div>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> If applicable, include full error messages/tracebacks.</li>
</ul>
<p dir="auto">Output:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="[GpuDevice(id=0, process_index=0)]
Traceback (most recent call last):
File "~/jax/1_installation_test.py", line 8, in <module>
print(xe.CpuDevice)
AttributeError: module 'jaxlib.xla_extension' has no attribute 'CpuDevice'"><pre class="notranslate">[GpuDevice(id=0, process_index=0)]
Traceback (most recent call last):
File <span class="pl-s"><span class="pl-pds">"</span>~/jax/1_installation_test.py<span class="pl-pds">"</span></span>, line 8, <span class="pl-k">in</span> <span class="pl-k"><</span>module<span class="pl-k">></span>
print(xe.CpuDevice)
AttributeError: module <span class="pl-s"><span class="pl-pds">'</span>jaxlib.xla_extension<span class="pl-pds">'</span></span> has no attribute <span class="pl-s"><span class="pl-pds">'</span>CpuDevice<span class="pl-pds">'</span></span></pre></div>
<p dir="auto">Environment details:</p>
<ul dir="auto">
<li>Fedora 35 with cuda 11.6, cudnn 8.4</li>
<li>jax 0.3.7</li>
<li>jaxlib 0.3.7+cuda11.cudnn82</li>
<li>python 3.9</li>
</ul> | 0 |
<p dir="auto">typeof(map(x -> x^2, [1,2,3])) = Array{int64,1}</p>
<p dir="auto">typeof([ x^2 | x=[1,2,3]) = Array{Any, 1}</p>
<p dir="auto">It seems odd that the comprehension loses the type information, while map retains it.</p> | <p dir="auto">Then just settle for map returning a type of the map function as the output array type.</p> | 1 |
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/195228/8306950/adda0bac-19dd-11e5-846f-1d9d62cd223a.png"><img src="https://cloud.githubusercontent.com/assets/195228/8306950/adda0bac-19dd-11e5-846f-1d9d62cd223a.png" alt="selection_069" style="max-width: 100%;"></a><br>
<code class="notranslate">resizable</code> and <code class="notranslate">always-on-top</code> properties do not work correctly. BrowserWindow is appeared properly but properties are not applied. Tested on Ubuntu 12.04 precise and Ubuntu 14.04 trusty</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="dummyWindow = new BrowserWindow({
'title': data.question,
'always-on-top': false,
'resizable': false,
'width': 500,
'height': 216,
'frame': true,
})"><pre class="notranslate"><code class="notranslate">dummyWindow = new BrowserWindow({
'title': data.question,
'always-on-top': false,
'resizable': false,
'width': 500,
'height': 216,
'frame': true,
})
</code></pre></div>
<p dir="auto">Small window from the right is set to be <code class="notranslate">{always-on-top: true, resizable: false}</code></p> | <p dir="auto">Code like this does not work on ubuntu 14.04, the window size can be customized by dragging the edge.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="// Create the browser window.
mainWindow = new BrowserWindow({
width: 800,
height: 480,
resizable: false
});"><pre class="notranslate"><code class="notranslate">// Create the browser window.
mainWindow = new BrowserWindow({
width: 800,
height: 480,
resizable: false
});
</code></pre></div>
<p dir="auto">Note:We are using node.js v0.11.14 and atom-shell 0.19.5.</p> | 1 |
<p dir="auto">When I try a simple scan loop using Jax in 64bit on a Windows 10 machine, I get the following error.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import jax
import jax.numpy as jnp
from jax.config import config
config.update('jax_enable_x64', True)
T = 1.0
init_x = 0.0
init_t = 0.0
dt = T / num_steps
def scan_fun(x, t):
x += dt
t += dt
return x, t
xs = jnp.linspace(init_t, T, num_steps, endpoint=True)
jax.lax.scan(scan_fun, init_x, xs[:, jnp.newaxis])[0]
"><pre class="notranslate"><code class="notranslate">import jax
import jax.numpy as jnp
from jax.config import config
config.update('jax_enable_x64', True)
T = 1.0
init_x = 0.0
init_t = 0.0
dt = T / num_steps
def scan_fun(x, t):
x += dt
t += dt
return x, t
xs = jnp.linspace(init_t, T, num_steps, endpoint=True)
jax.lax.scan(scan_fun, init_x, xs[:, jnp.newaxis])[0]
</code></pre></div>
<p dir="auto">Crashes with the following error</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last):
File "C:\Program Files\JetBrains\PyCharm 2020.3.3\plugins\python\helpers\pydev\_pydevd_bundle\pydevd_exec2.py", line 3, in Exec
exec(exp, global_vars, local_vars)
File "<string>", line 13, in <module>
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\traceback_util.py", line 139, in reraise_with_filtered_traceback
return fun(*args, **kwargs)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\control_flow.py", line 1292, in scan
out = scan_p.bind(*itertools.chain(consts, in_flat),
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\control_flow.py", line 1880, in scan_bind
return core.Primitive.bind(scan_p, *args, **params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\core.py", line 284, in bind
out = top_trace.process_primitive(self, tracers, params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\core.py", line 622, in process_primitive
return primitive.impl(*tracers, **params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\control_flow.py", line 1379, in _scan_impl
return _scan_impl_loop(
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\control_flow.py", line 1340, in _scan_impl_loop
_, *outs = while_loop(cond_fun, body_fun, init_val)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\traceback_util.py", line 139, in reraise_with_filtered_traceback
return fun(*args, **kwargs)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\control_flow.py", line 284, in while_loop
init_vals, init_avals, body_jaxpr, in_tree, *rest = _create_jaxpr(init_val)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\control_flow.py", line 269, in _create_jaxpr
cond_jaxpr, cond_consts, cond_tree = _initial_style_jaxpr(cond_fun, in_tree, init_avals)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\util.py", line 198, in wrapper
return cached(bool(config.x64_enabled), *args, **kwargs)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\util.py", line 191, in cached
return f(*args, **kwargs)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\control_flow.py", line 73, in _initial_style_jaxpr
jaxpr, consts, out_tree = _initial_style_open_jaxpr(fun, in_tree, in_avals)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\util.py", line 198, in wrapper
return cached(bool(config.x64_enabled), *args, **kwargs)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\util.py", line 191, in cached
return f(*args, **kwargs)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\control_flow.py", line 68, in _initial_style_open_jaxpr
jaxpr, _, consts = pe.trace_to_jaxpr_dynamic(wrapped_fun, in_avals)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\interpreters\partial_eval.py", line 1190, in trace_to_jaxpr_dynamic
jaxpr, out_avals, consts = trace_to_subjaxpr_dynamic(fun, main, in_avals)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\interpreters\partial_eval.py", line 1200, in trace_to_subjaxpr_dynamic
ans = fun.call_wrapped(*in_tracers)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\linear_util.py", line 166, in call_wrapped
ans = self.f(*args, **dict(self.params, **kwargs))
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\control_flow.py", line 1324, in cond_fun
return i < length
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\core.py", line 516, in __lt__
def __lt__(self, other): return self.aval._lt(self, other)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\numpy\lax_numpy.py", line 5256, in deferring_binary_op
return binary_op(self, other)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\numpy\lax_numpy.py", line 466, in fn
return lax_fn(x1, x2)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\lax.py", line 407, in lt
return lt_p.bind(x, y)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\core.py", line 284, in bind
out = top_trace.process_primitive(self, tracers, params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\interpreters\partial_eval.py", line 1062, in process_primitive
out_avals = primitive.abstract_eval(*avals, **params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\lax.py", line 1994, in standard_abstract_eval
return ShapedArray(shape_rule(*avals, **kwargs), dtype_rule(*avals, **kwargs),
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\lax.py", line 2070, in naryop_dtype_rule
_check_same_dtypes(name, False, *aval_dtypes)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\lax.py", line 6158, in _check_same_dtypes
raise TypeError(msg.format(name, ", ".join(map(str, types))))
TypeError: lt requires arguments to have the same dtypes, got int64, int32."><pre class="notranslate"><code class="notranslate">Traceback (most recent call last):
File "C:\Program Files\JetBrains\PyCharm 2020.3.3\plugins\python\helpers\pydev\_pydevd_bundle\pydevd_exec2.py", line 3, in Exec
exec(exp, global_vars, local_vars)
File "<string>", line 13, in <module>
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\traceback_util.py", line 139, in reraise_with_filtered_traceback
return fun(*args, **kwargs)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\control_flow.py", line 1292, in scan
out = scan_p.bind(*itertools.chain(consts, in_flat),
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\control_flow.py", line 1880, in scan_bind
return core.Primitive.bind(scan_p, *args, **params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\core.py", line 284, in bind
out = top_trace.process_primitive(self, tracers, params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\core.py", line 622, in process_primitive
return primitive.impl(*tracers, **params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\control_flow.py", line 1379, in _scan_impl
return _scan_impl_loop(
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\control_flow.py", line 1340, in _scan_impl_loop
_, *outs = while_loop(cond_fun, body_fun, init_val)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\traceback_util.py", line 139, in reraise_with_filtered_traceback
return fun(*args, **kwargs)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\control_flow.py", line 284, in while_loop
init_vals, init_avals, body_jaxpr, in_tree, *rest = _create_jaxpr(init_val)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\control_flow.py", line 269, in _create_jaxpr
cond_jaxpr, cond_consts, cond_tree = _initial_style_jaxpr(cond_fun, in_tree, init_avals)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\util.py", line 198, in wrapper
return cached(bool(config.x64_enabled), *args, **kwargs)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\util.py", line 191, in cached
return f(*args, **kwargs)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\control_flow.py", line 73, in _initial_style_jaxpr
jaxpr, consts, out_tree = _initial_style_open_jaxpr(fun, in_tree, in_avals)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\util.py", line 198, in wrapper
return cached(bool(config.x64_enabled), *args, **kwargs)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\util.py", line 191, in cached
return f(*args, **kwargs)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\control_flow.py", line 68, in _initial_style_open_jaxpr
jaxpr, _, consts = pe.trace_to_jaxpr_dynamic(wrapped_fun, in_avals)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\interpreters\partial_eval.py", line 1190, in trace_to_jaxpr_dynamic
jaxpr, out_avals, consts = trace_to_subjaxpr_dynamic(fun, main, in_avals)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\interpreters\partial_eval.py", line 1200, in trace_to_subjaxpr_dynamic
ans = fun.call_wrapped(*in_tracers)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\linear_util.py", line 166, in call_wrapped
ans = self.f(*args, **dict(self.params, **kwargs))
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\control_flow.py", line 1324, in cond_fun
return i < length
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\core.py", line 516, in __lt__
def __lt__(self, other): return self.aval._lt(self, other)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\numpy\lax_numpy.py", line 5256, in deferring_binary_op
return binary_op(self, other)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\numpy\lax_numpy.py", line 466, in fn
return lax_fn(x1, x2)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\lax.py", line 407, in lt
return lt_p.bind(x, y)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\core.py", line 284, in bind
out = top_trace.process_primitive(self, tracers, params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\interpreters\partial_eval.py", line 1062, in process_primitive
out_avals = primitive.abstract_eval(*avals, **params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\lax.py", line 1994, in standard_abstract_eval
return ShapedArray(shape_rule(*avals, **kwargs), dtype_rule(*avals, **kwargs),
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\lax.py", line 2070, in naryop_dtype_rule
_check_same_dtypes(name, False, *aval_dtypes)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\lax.py", line 6158, in _check_same_dtypes
raise TypeError(msg.format(name, ", ".join(map(str, types))))
TypeError: lt requires arguments to have the same dtypes, got int64, int32.
</code></pre></div> | <p dir="auto">When I try a simple cross product calculation using Jax in 64bit on a Windows 10 machine, I get the following error.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import jax.numpy as jnp
from jax.config import config
config.update('jax_enable_x64', True)
x = jnp.array((1.0,1.0,1.0))
y = jnp.array((0.0,0.0,0.0))
z = jnp.cross(x,y)"><pre class="notranslate"><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">config</span> <span class="pl-k">import</span> <span class="pl-s1">config</span>
<span class="pl-s1">config</span>.<span class="pl-en">update</span>(<span class="pl-s">'jax_enable_x64'</span>, <span class="pl-c1">True</span>)
<span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">jnp</span>.<span class="pl-en">array</span>((<span class="pl-c1">1.0</span>,<span class="pl-c1">1.0</span>,<span class="pl-c1">1.0</span>))
<span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-s1">jnp</span>.<span class="pl-en">array</span>((<span class="pl-c1">0.0</span>,<span class="pl-c1">0.0</span>,<span class="pl-c1">0.0</span>))
<span class="pl-s1">z</span> <span class="pl-c1">=</span> <span class="pl-s1">jnp</span>.<span class="pl-en">cross</span>(<span class="pl-s1">x</span>,<span class="pl-s1">y</span>)</pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last):
File "C:\Program Files\JetBrains\PyCharm 2020.3.3\plugins\python\helpers\pydev\_pydevd_bundle\pydevd_exec2.py", line 3, in Exec
exec(exp, global_vars, local_vars)
File "<input>", line 1, in <module>
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\numpy\lax_numpy.py", line 3938, in cross
return _cross(a, b, axisa, axisb, axisc)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\traceback_util.py", line 139, in reraise_with_filtered_traceback
return fun(*args, **kwargs)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\api.py", line 416, in f_jitted
return cpp_jitted_f(context, *args, **kwargs)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\api.py", line 297, in cache_miss
out_flat = xla.xla_call(
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\core.py", line 1394, in bind
return call_bind(self, fun, *args, **params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\core.py", line 1385, in call_bind
outs = primitive.process(top_trace, fun, tracers, params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\core.py", line 1397, in process
return trace.process_call(self, fun, tracers, params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\core.py", line 625, in process_call
return primitive.impl(f, *tracers, **params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\interpreters\xla.py", line 586, in _xla_call_impl
compiled_fun = _xla_callable(fun, device, backend, name, donated_invars,
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\linear_util.py", line 260, in memoized_fun
ans = call(fun, *args)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\interpreters\xla.py", line 662, in _xla_callable
jaxpr, out_avals, consts = pe.trace_to_jaxpr_final(fun, abstract_args)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\interpreters\partial_eval.py", line 1220, in trace_to_jaxpr_final
jaxpr, out_avals, consts = trace_to_subjaxpr_dynamic(fun, main, in_avals)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\interpreters\partial_eval.py", line 1200, in trace_to_subjaxpr_dynamic
ans = fun.call_wrapped(*in_tracers)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\linear_util.py", line 166, in call_wrapped
ans = self.f(*args, **dict(self.params, **kwargs))
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\numpy\lax_numpy.py", line 3922, in _cross
a0 = a[..., 0]
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\core.py", line 552, in __getitem__
def __getitem__(self, idx): return self.aval._getitem(self, idx)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\numpy\lax_numpy.py", line 4384, in _rewriting_take
return _gather(arr, treedef, static_idx, dynamic_idx)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\numpy\lax_numpy.py", line 4391, in _gather
indexer = _index_to_gather(shape(arr), idx) # shared with _scatter_update
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\numpy\lax_numpy.py", line 4571, in _index_to_gather
i = _normalize_index(i, x_shape[x_axis]) if normalize_indices else i
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\numpy\lax_numpy.py", line 4224, in _normalize_index
lax.lt(index, _constant_like(index, 0)),
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\lax.py", line 407, in lt
return lt_p.bind(x, y)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\core.py", line 284, in bind
out = top_trace.process_primitive(self, tracers, params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\interpreters\partial_eval.py", line 1062, in process_primitive
out_avals = primitive.abstract_eval(*avals, **params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\lax.py", line 1994, in standard_abstract_eval
return ShapedArray(shape_rule(*avals, **kwargs), dtype_rule(*avals, **kwargs),
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\lax.py", line 2070, in naryop_dtype_rule
_check_same_dtypes(name, False, *aval_dtypes)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\lax.py", line 6158, in _check_same_dtypes
raise TypeError(msg.format(name, ", ".join(map(str, types))))
TypeError: lt requires arguments to have the same dtypes, got int64, int32."><pre class="notranslate"><code class="notranslate">Traceback (most recent call last):
File "C:\Program Files\JetBrains\PyCharm 2020.3.3\plugins\python\helpers\pydev\_pydevd_bundle\pydevd_exec2.py", line 3, in Exec
exec(exp, global_vars, local_vars)
File "<input>", line 1, in <module>
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\numpy\lax_numpy.py", line 3938, in cross
return _cross(a, b, axisa, axisb, axisc)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\traceback_util.py", line 139, in reraise_with_filtered_traceback
return fun(*args, **kwargs)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\api.py", line 416, in f_jitted
return cpp_jitted_f(context, *args, **kwargs)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\api.py", line 297, in cache_miss
out_flat = xla.xla_call(
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\core.py", line 1394, in bind
return call_bind(self, fun, *args, **params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\core.py", line 1385, in call_bind
outs = primitive.process(top_trace, fun, tracers, params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\core.py", line 1397, in process
return trace.process_call(self, fun, tracers, params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\core.py", line 625, in process_call
return primitive.impl(f, *tracers, **params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\interpreters\xla.py", line 586, in _xla_call_impl
compiled_fun = _xla_callable(fun, device, backend, name, donated_invars,
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\linear_util.py", line 260, in memoized_fun
ans = call(fun, *args)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\interpreters\xla.py", line 662, in _xla_callable
jaxpr, out_avals, consts = pe.trace_to_jaxpr_final(fun, abstract_args)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\interpreters\partial_eval.py", line 1220, in trace_to_jaxpr_final
jaxpr, out_avals, consts = trace_to_subjaxpr_dynamic(fun, main, in_avals)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\interpreters\partial_eval.py", line 1200, in trace_to_subjaxpr_dynamic
ans = fun.call_wrapped(*in_tracers)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\linear_util.py", line 166, in call_wrapped
ans = self.f(*args, **dict(self.params, **kwargs))
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\numpy\lax_numpy.py", line 3922, in _cross
a0 = a[..., 0]
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\core.py", line 552, in __getitem__
def __getitem__(self, idx): return self.aval._getitem(self, idx)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\numpy\lax_numpy.py", line 4384, in _rewriting_take
return _gather(arr, treedef, static_idx, dynamic_idx)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\numpy\lax_numpy.py", line 4391, in _gather
indexer = _index_to_gather(shape(arr), idx) # shared with _scatter_update
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\numpy\lax_numpy.py", line 4571, in _index_to_gather
i = _normalize_index(i, x_shape[x_axis]) if normalize_indices else i
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\numpy\lax_numpy.py", line 4224, in _normalize_index
lax.lt(index, _constant_like(index, 0)),
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\lax.py", line 407, in lt
return lt_p.bind(x, y)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\core.py", line 284, in bind
out = top_trace.process_primitive(self, tracers, params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\interpreters\partial_eval.py", line 1062, in process_primitive
out_avals = primitive.abstract_eval(*avals, **params)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\lax.py", line 1994, in standard_abstract_eval
return ShapedArray(shape_rule(*avals, **kwargs), dtype_rule(*avals, **kwargs),
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\lax.py", line 2070, in naryop_dtype_rule
_check_same_dtypes(name, False, *aval_dtypes)
File "C:\Users\Adam\anaconda3\envs\tensorflow\lib\site-packages\jax\_src\lax\lax.py", line 6158, in _check_same_dtypes
raise TypeError(msg.format(name, ", ".join(map(str, types))))
TypeError: lt requires arguments to have the same dtypes, got int64, int32.
</code></pre></div> | 1 |
<h4 dir="auto">Describe the bug</h4>
<p dir="auto">When using <code class="notranslate">axios.create</code>, if I pass a custom property it is not being visible on the interceptors.</p>
<h4 dir="auto">To Reproduce</h4>
<p dir="auto">Something like:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const instance = axios.create({
baseURL: 'http://myurl.com',
withCredentials: false,
loader: true // Custom property
});
instance.interceptors.request.use(
config => {
console.log('request', config); // Does not show the "loader" property
if (config.loader) {
showLoader();
}
return config;
}
);"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">instance</span> <span class="pl-c1">=</span> <span class="pl-s1">axios</span><span class="pl-kos">.</span><span class="pl-en">create</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">baseURL</span>: <span class="pl-s">'http://myurl.com'</span><span class="pl-kos">,</span>
<span class="pl-c1">withCredentials</span>: <span class="pl-c1">false</span><span class="pl-kos">,</span>
<span class="pl-c1">loader</span>: <span class="pl-c1">true</span> <span class="pl-c">// Custom property</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">instance</span><span class="pl-kos">.</span><span class="pl-c1">interceptors</span><span class="pl-kos">.</span><span class="pl-c1">request</span><span class="pl-kos">.</span><span class="pl-en">use</span><span class="pl-kos">(</span>
<span class="pl-s1">config</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'request'</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-c">// Does not show the "loader" property</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">config</span><span class="pl-kos">.</span><span class="pl-c1">loader</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">showLoader</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">return</span> <span class="pl-s1">config</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<h4 dir="auto">Expected behavior</h4>
<p dir="auto">It should be available for further use on the interceptors, because the same code is working on version 0.18.1.</p>
<h4 dir="auto">Environment</h4>
<ul dir="auto">
<li>Axios Version: 0.19.1 and 0.19.2</li>
</ul>
<h4 dir="auto">Additional context/Screenshots</h4>
<p dir="auto">Please let me know if I'm doing this wrong, and there's a new way to do.</p> | <p dir="auto"><strong>Describe the bug</strong><br>
Custom settings are not persisted to each request</p>
<p dir="auto"><strong>To Reproduce</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
var axios = require('axios')
var axios2 = axios.create({retry: true});
// should log "Retry is true"
axios2.interceptors.request.use(request => console.log('Retry is ' + request.retry));
axios2.get('http://www.blankwebsite.com/');
"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">axios</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'axios'</span><span class="pl-kos">)</span>
<span class="pl-k">var</span> <span class="pl-s1">axios2</span> <span class="pl-c1">=</span> <span class="pl-s1">axios</span><span class="pl-kos">.</span><span class="pl-en">create</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-c1">retry</span>: <span class="pl-c1">true</span><span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// should log "Retry is true"</span>
<span class="pl-s1">axios2</span><span class="pl-kos">.</span><span class="pl-c1">interceptors</span><span class="pl-kos">.</span><span class="pl-c1">request</span><span class="pl-kos">.</span><span class="pl-en">use</span><span class="pl-kos">(</span><span class="pl-s1">request</span> <span class="pl-c1">=></span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'Retry is '</span> <span class="pl-c1">+</span> <span class="pl-s1">request</span><span class="pl-kos">.</span><span class="pl-c1">retry</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">axios2</span><span class="pl-kos">.</span><span class="pl-en">get</span><span class="pl-kos">(</span><span class="pl-s">'http://www.blankwebsite.com/'</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><strong>Expected behavior</strong><br>
Custom default parameters should be persisted to each request.</p>
<p dir="auto"><strong>Environment:</strong></p>
<ul dir="auto">
<li>Axios Version [hash <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/axios/axios/commit/a17c70cb5ae4acd7aa307b7f7dc869953dea22c4/hovercard" href="https://github.com/axios/axios/commit/a17c70cb5ae4acd7aa307b7f7dc869953dea22c4"><tt>a17c70c</tt></a>]</li>
</ul> | 1 |
<h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 18965
Windows Terminal version: Dev Build"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: 18965
Windows Terminal version: Dev Build
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<ol dir="auto">
<li>Open Windows Terminal</li>
</ol>
<h1 dir="auto">Expected behavior</h1>
<ol dir="auto">
<li>Open default tab</li>
</ol>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">After open Windows Terminal (Dev Build), Windows Defender detect a suspicious behavior, and block the execution<br>
Windows Defender Message:<br>
Behavior:Win32/Generic.WR!ml<br>
Alert level: Severe<br>
Status: Quarantined<br>
Date: 08/27/2019<br>
Category: Suspicious behavior<br>
Details: This program is dangerous and Executes commands from attacker<br>
Affected items: file:<br>
appmodel: WindowsTerminalDev_0.0.1.0_x64__8wekyb3d8bbwe</p>
<p dir="auto">file: C:\Users\rodoa\source\repos\WindowsTerminal\terminal\src\cascadia\CascadiaPackage\bin\x64\Debug\AppX\conhost.exe</p>
<p dir="auto">Note: I compiled and deployed 8 hours ago and it ran fine, but I opened it (from start menu) again a few minutes ago and W.D. alerted of the thread</p> | <h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 10.0.18362.0
Windows Terminal version (if applicable): 0.5.2762.0"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: 10.0.18362.0
Windows Terminal version (if applicable): 0.5.2762.0
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">Prefer bar or box cursor shape for more prominent behavior.</p>
<p dir="auto">Produce more than a screenful of output so that the cursor is in the bottom row.</p>
<p dir="auto">Resize the window so that there's a noticeable gap (a partial row) under the bottom text row.</p>
<p dir="auto">Again make sure that the cursor is in the bottom row.</p>
<p dir="auto">When the cursor is visible (that is, not in "off" state while blinking), scroll back by exactly 1 line e.g. by hitting Ctrl+Shift+Up.</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">Option 1: Hide the cursor.</p>
<p dir="auto">Option 2: Display the partial cursor, and display the corresponding line of the terminal buffer too in this partial row. Also, make sure the cursor keeps blinking as desired.</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">The cursor is displayed in the partial bottom row (although no text is printed here – the next prompt in case of this screenshot). Furthermore, it stops blinking.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5750745/66703477-5b186e00-ed13-11e9-9b0f-407adfcd6c99.png"><img src="https://user-images.githubusercontent.com/5750745/66703477-5b186e00-ed13-11e9-9b0f-407adfcd6c99.png" alt="wt-cursor" style="max-width: 100%;"></a></p> | 0 |
<p dir="auto">Hey there,</p>
<p dir="auto">I've used a simple <code class="notranslate">for...of</code> statement in my JSX file, but the output breaks Safari (8.0.7). Works fine in Chrome and Firefox. The error message is "ReferenceError: Can't find variable: Symbol" and I indeed can't find any reference to <code class="notranslate">Symbol</code> in the file. Might be a missing polyfill?</p>
<p dir="auto">This is the original code:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="for (let block of blocks) {
this.createColourBlockScene(scrollController, pageReference, block.blockReference, block.hexColour1, block.hexColour2);
}"><pre class="notranslate"><code class="notranslate">for (let block of blocks) {
this.createColourBlockScene(scrollController, pageReference, block.blockReference, block.hexColour1, block.hexColour2);
}
</code></pre></div>
<p dir="auto">Which gets transpiled into this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" var _iteratorNormalCompletion = true;
var _didIteratorError = false;
var _iteratorError = undefined;
try {
for (var _iterator = blocks[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
var block = _step.value;
_this.createColourBlockScene(scrollController, pageReference, block.blockReference, block.hexColour1, block.hexColour2);
}
} catch (err) {
_didIteratorError = true;
_iteratorError = err;
} finally {
try {
if (!_iteratorNormalCompletion && _iterator['return']) {
_iterator['return']();
}
} finally {
if (_didIteratorError) {
throw _iteratorError;
}
}
}"><pre class="notranslate"><code class="notranslate"> var _iteratorNormalCompletion = true;
var _didIteratorError = false;
var _iteratorError = undefined;
try {
for (var _iterator = blocks[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
var block = _step.value;
_this.createColourBlockScene(scrollController, pageReference, block.blockReference, block.hexColour1, block.hexColour2);
}
} catch (err) {
_didIteratorError = true;
_iteratorError = err;
} finally {
try {
if (!_iteratorNormalCompletion && _iterator['return']) {
_iterator['return']();
}
} finally {
if (_didIteratorError) {
throw _iteratorError;
}
}
}
</code></pre></div>
<p dir="auto">In case you need it, this is the array I'm looping through:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="let blocks = [
{
blockReference: React.findDOMNode(this.refs.blockClient),
hexColour1: '6114CC',
hexColour2: '6A86EC'
},
{
blockReference: React.findDOMNode(this.refs.blockOwnStuff),
hexColour1: '6A86EC',
hexColour2: '3F63D9'
},
{
blockReference: React.findDOMNode(this.refs.blockVenture),
hexColour1: '3F63D9',
hexColour2: '143FCC'
},
{
blockReference: React.findDOMNode(this.refs.blockStudio),
hexColour1: '143FCC',
hexColour2: 'FFBF02'
},
];"><pre class="notranslate"><code class="notranslate">let blocks = [
{
blockReference: React.findDOMNode(this.refs.blockClient),
hexColour1: '6114CC',
hexColour2: '6A86EC'
},
{
blockReference: React.findDOMNode(this.refs.blockOwnStuff),
hexColour1: '6A86EC',
hexColour2: '3F63D9'
},
{
blockReference: React.findDOMNode(this.refs.blockVenture),
hexColour1: '3F63D9',
hexColour2: '143FCC'
},
{
blockReference: React.findDOMNode(this.refs.blockStudio),
hexColour1: '143FCC',
hexColour2: 'FFBF02'
},
];
</code></pre></div> | <p dir="auto">Choose one: is this a bug report or feature request?</p>
<p dir="auto">Bug report</p>
<h3 dir="auto">Input Code</h3>
<p dir="auto"><a href="https://babeljs.io/repl/#?babili=false&evaluate=true&lineWrap=false&presets=es2015%2Ces2016%2Ces2017&targets=&browsers=ie%2011&builtIns=false&code=function%20logged(errorName%2C%20functionName%2C%20asyncFn)%20%7B%0D%0A%20%20return%20async%20(...params)%20%3D%3E%20%7B%0D%0A%20%20%20%20try%20%7B%0D%0A%20%20%20%20%20%20return%20await%20asyncFn(...params)%3B%0D%0A%20%20%20%20%7D%20catch%20(rejection)%20%7B%0D%0A%20%20%20%20%20%20logEvent(errorName%2C%20functionName%2C%20rejection)%3B%0D%0A%20%20%20%20%20%20throw%20rejection%3B%0D%0A%20%20%20%20%7D%0D%0A%20%20%7D%3B%0D%0A%7D%0D%0A%0D%0Afunction%20logged2(errorName%2C%20functionName%2C%20asyncFn)%20%7B%0D%0A%20%20return%20async%20function%20(...params)%20%7B%0D%0A%20%20%20%20try%20%7B%0D%0A%20%20%20%20%20%20return%20await%20asyncFn(...params)%3B%0D%0A%20%20%20%20%7D%20catch%20(rejection)%20%7B%0D%0A%20%20%20%20%20%20logEvent(errorName%2C%20functionName%2C%20rejection)%3B%0D%0A%20%20%20%20%20%20throw%20rejection%3B%0D%0A%20%20%20%20%7D%0D%0A%20%20%7D%3B%0D%0A%7D" rel="nofollow">https://babeljs.io/repl/#?babili=false&evaluate=true&lineWrap=false&presets=es2015%2Ces2016%2Ces2017&targets=&browsers=ie%2011&builtIns=false&code=function%20logged(errorName%2C%20functionName%2C%20asyncFn)%20%7B%0D%0A%20%20return%20async%20(...params)%20%3D%3E%20%7B%0D%0A%20%20%20%20try%20%7B%0D%0A%20%20%20%20%20%20return%20await%20asyncFn(...params)%3B%0D%0A%20%20%20%20%7D%20catch%20(rejection)%20%7B%0D%0A%20%20%20%20%20%20logEvent(errorName%2C%20functionName%2C%20rejection)%3B%0D%0A%20%20%20%20%20%20throw%20rejection%3B%0D%0A%20%20%20%20%7D%0D%0A%20%20%7D%3B%0D%0A%7D%0D%0A%0D%0Afunction%20logged2(errorName%2C%20functionName%2C%20asyncFn)%20%7B%0D%0A%20%20return%20async%20function%20(...params)%20%7B%0D%0A%20%20%20%20try%20%7B%0D%0A%20%20%20%20%20%20return%20await%20asyncFn(...params)%3B%0D%0A%20%20%20%20%7D%20catch%20(rejection)%20%7B%0D%0A%20%20%20%20%20%20logEvent(errorName%2C%20functionName%2C%20rejection)%3B%0D%0A%20%20%20%20%20%20throw%20rejection%3B%0D%0A%20%20%20%20%7D%0D%0A%20%20%7D%3B%0D%0A%7D</a></p>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">The rest parameters should work with async + arrows. (first example)</p>
<h3 dir="auto">Current Behavior</h3>
<p dir="auto">The rest parameters are lost, the function is called with wrong parameters. (second example)</p> | 0 |
<h3 dir="auto">Is there an existing issue for this?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the existing issues</li>
</ul>
<h3 dir="auto">Current Behavior</h3>
<p dir="auto">I am experiencing a lag in npm install and it wait forever in below stage. Performed npm cache clean and still the behavior is same. Attached below is npm install and package.json content. Is this due to inability to download packages? Is the npm registry throttling certain packages</p>
<p dir="auto">Step 5/13 : RUN npm install --verbose<br>
---> Running in 8aa3e2f25f3<br>
�[91mnpm�[0m�[91m �[0m�[91minfo it worked if it ends with ok<br>
�[0m�[91mnpm verb cli [ '/usr/local/bin/node',<br>
npm �[0m�[91mverb cli '/usr/local/bin/npm',<br>
npm verb cli 'install',<br>
npm verb cli '--verbose' ]<br>
�[0m�[91mnpm info using [email protected]<br>
npm info using�[0m�[91m [email protected]<br>
�[0m�[91mnpm �[0m�[91mverb npm-session fee3df31189e40d7<br>
�[0m�[91mnpm info �[0m�[91mlifecycle [email protected]<del>preinstall: [email protected]<br>
�[0m�[91mnpm �[0m�[91mWARN lifecycle [email protected]</del>preinstall: cannot run in wd [email protected] URL=http://10.70.129.19:8081/repository/npm-releases create-npmrc (wd=/app)<br>
�[0m�[91mnpm timing �[0m�[91mstage:loadCurrentTree Completed in 22ms<br>
�[0m�[91mnpm�[0m�[91m timing stage:loadIdealTree:cloneCurrentTree Completed in 1ms<br>
�[0m�[91mnpm �[0m�[91mtiming stage:loadIdealTree:loadShrinkwrap Completed in 5ms<br>
�[0m�[91mnpm http�[0m�[91m fetch GET 200 https://registry.npmjs.org/grunt 616ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt/-/grunt-1.4.1.tgz 157ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-concat 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-concat/-/grunt-contrib-concat-1.0.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-copy 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-copy/-/grunt-contrib-copy-1.0.0.tgz 123ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/express-swagger-generator 1306ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/grunt-autoprefixer 1359ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/express-swagger-generator/-/express-swagger-generator-1.1.17.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-autoprefixer/-/grunt-autoprefixer-3.0.4.tgz 116ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/nodemon 1561ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nodemon/-/nodemon-2.0.14.tgz 144ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-cssmin 949ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-cssmin/-/grunt-contrib-cssmin-4.0.0.tgz 125ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/grunt-contrib-imagemin 913ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-symlink 920ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-symlink/-/grunt-contrib-symlink-1.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-uglify 914ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-uglify/-/grunt-contrib-uglify-4.0.1.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-htmlmin 916ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-imagemin/-/grunt-contrib-imagemin-3.1.0.tgz 985ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-htmlmin/-/grunt-htmlmin-0.1.4.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-processhtml 928ms<br>
�[0m�[91mnpm http�[0m�[91m fetch�[0m�[91m GET 200 https://registry.npmjs.org/grunt-processhtml/-/grunt-processhtml-0.4.2.tgz 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-shell 972ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-shell/-/grunt-shell-3.0.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-string-replace 967ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-task-helper 975ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-string-replace/-/grunt-string-replace-1.3.1.tgz 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-task-helper/-/grunt-task-helper-0.3.10.tgz 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-usemin 958ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-usemin/-/grunt-usemin-3.1.1.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jit-grunt 927ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jit-grunt/-/jit-grunt-0.10.0.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jshint-stylish 931ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/load-grunt-config 920ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jshint-stylish/-/jshint-stylish-2.2.1.tgz 123ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/load-grunt-config/-/load-grunt-config-1.0.2.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/time-grunt 943ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-clean 5660ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/time-grunt/-/time-grunt-2.0.0.tgz 112ms<br>
�[0m�[91mnpm WARN deprecated�[0m�[91m [email protected]: Deprecated because Grunt is practically unmaintained. Move on to something better. This package will continue to work with Grunt v1, but it will not receive any updates.<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/eslint 5779ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/grunt-contrib-clean/-/grunt-contrib-clean-2.0.0.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/async 162ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/axios 233ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/async/-/async-2.6.3.tgz 205ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eslint/-/eslint-6.8.0.tgz 315ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/axios/-/axios-0.19.2.tgz 167ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="742059628" data-permission-text="Title is private" data-url="https://github.com/axios/axios/issues/3410" data-hovercard-type="pull_request" data-hovercard-url="/axios/axios/pull/3410/hovercard" href="https://github.com/axios/axios/pull/3410">axios/axios/pull/3410</a><br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/body-parser 127ms<br>
�[0m�[91mnpm http �[0m�[91mfetch�[0m�[91m GET 200 https://registry.npmjs.org/colors 128ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/grunt-concurrent 6243ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-compass 6262ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-clean 6270ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cors 118ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz 117ms<br>
�[0m�[91mnpm http�[0m�[91m fetch GET 200 https://registry.npmjs.org/colors/-/colors-1.4.0.tgz 125ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/grunt-concurrent/-/grunt-concurrent-2.3.1.tgz 129ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/grunt-clean/-/grunt-clean-0.4.0.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/adm-zip 932ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cors/-/cors-2.8.5.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dotenv 123ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/grunt-contrib-compass/-/grunt-contrib-compass-1.1.1.tgz 232ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/api-express-exporter 955ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.9.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dotenv/-/dotenv-5.0.1.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/api-express-exporter/-/api-express-exporter-1.0.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/express 243ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/http-status-codes 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-csv 203ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ip 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/moment 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/http-status-codes/-/http-status-codes-1.4.0.tgz 121ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/fast-csv/-/fast-csv-4.3.6.tgz 115ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/express/-/express-4.17.1.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ip/-/ip-1.1.5.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/promster/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/promster">@promster</a>%2fexpress 2037ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/moment-timezone 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mysql2 174ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/moment/-/moment-2.29.1.tgz 381ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.33.tgz 205ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/mysql2/-/mysql2-2.3.2.tgz 195ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/custom-env 907ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/request 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/excel 929ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/custom-env/-/custom-env-2.0.1.tgz 119ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/request/-/request-2.88.2.tgz 115ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: request has been deprecated, see https://github.com/<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="427331880" data-permission-text="Title is private" data-url="https://github.com/request/request/issues/3142" data-hovercard-type="issue" data-hovercard-url="/request/request/issues/3142/hovercard" href="https://github.com/request/request/issues/3142">request/request/issues/3142</a><br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/excel4node 1022ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/excel/-/excel-1.0.1.tgz 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sequelize 378ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/grunt-cache-breaker 7593ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/uuid 148ms<br>
�[0m�[91mnpm �[0m�[91mhttp�[0m�[91m fetch GET 200 https://registry.npmjs.org/sequelize/-/sequelize-6.7.0.tgz 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz 115ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.<br>
�[0m�[91mnpm �[0m�[91mhttp �[0m�[91mfetch�[0m�[91m GET 200 https://registry.npmjs.org/excel4node/-/excel4node-1.7.2.tgz 336ms<br>
�[0m�[91mnpm �[0m�[91mhttp �[0m�[91mfetch�[0m�[91m GET 200 https://registry.npmjs.org/object-mapper 934ms<br>
�[0m�[91mnpm http�[0m�[91m fetch GET 200 https://registry.npmjs.org/prom-client 949ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/winston 147ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-mapper/-/object-mapper-6.2.0.tgz 125ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/@promster/express/-/express-2.2.4.tgz 969ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prom-client/-/prom-client-12.0.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dateformat 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/winston/-/winston-3.3.3.tgz 146ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eventemitter2 118ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch�[0m�[91m GET 200 https://registry.npmjs.org/exit 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/findup-sync 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ssh2-sftp-client 935ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz 134ms<br>
�[0m�[91mnpm�[0m�[91m �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/exit/-/exit-0.1.2.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz 113ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch�[0m�[91m GET 200 https://registry.npmjs.org/glob 131ms<br>
�[0m�[91mnpm http�[0m�[91m fetch GET 200 https://registry.npmjs.org/ssh2-sftp-client/-/ssh2-sftp-client-7.1.0.tgz 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-jsdoc 922ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-ui-express 983ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob/-/glob-7.1.7.tgz 125ms<br>
�[0m�[91mnpm �[0m�[91mhttp�[0m�[91m �[0m�[91mfetch�[0m�[91m GET 200 https://registry.npmjs.org/swagger-jsdoc/-/swagger-jsdoc-4.3.2.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-ui-express/-/swagger-ui-express-4.1.6.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/iconv-lite 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/js-yaml 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minimatch 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz 131ms<br>
�[0m�[91mnpm http�[0m�[91m fetch�[0m�[91m GET 200 https://registry.npmjs.org/winston-daily-rotate-file 925ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/validate.js 1012ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz 234ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mkdirp 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/validate.js/-/validate.js-0.13.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/winston-daily-rotate-file/-/winston-daily-rotate-file-4.5.5.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nopt 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/rimraf 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz 115ms<br>
�[0m�[91mnpm�[0m�[91m http �[0m�[91mfetch�[0m�[91m GET 200 https://registry.npmjs.org/source-map 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chalk 136ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chalk 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-cli 922ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/doctrine 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-known-options 941ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz 220ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-legacy-log 928ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.4.3.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob/-/glob-7.2.0.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-legacy-util 925ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-2.0.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-3.0.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-2.0.1.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chalk/-/chalk-1.0.0.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/diff 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chokidar 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/diff/-/diff-1.3.2.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/postcss 234ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz 115ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/debug 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/postcss/-/postcss-4.1.16.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ignore-by-default 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pstree.remy 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/debug/-/debug-3.2.7.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-sync-cmp 895ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/supports-color 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-sync-cmp/-/file-sync-cmp-0.1.1.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/recursive-iterator 885ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/touch 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/undefsafe 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-5.7.1.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-parser 950ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/recursive-iterator/-/recursive-iterator-2.0.3.tgz 120ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/express-swaggerize-ui 947ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/touch/-/touch-3.1.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz 97ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/doctrine-file 979ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/update-notifier 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/autoprefixer-core 949ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/clean-css 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/doctrine-file/-/doctrine-file-1.0.3.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/update-notifier/-/update-notifier-5.1.0.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/autoprefixer-core/-/autoprefixer-core-5.2.1.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/clean-css/-/clean-css-5.2.2.tgz 146ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/imagemin 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz 369ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-parser/-/swagger-parser-5.0.6.tgz 421ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/uglify-js 248ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-map 123ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/imagemin/-/imagemin-6.1.0.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/plur 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pretty-bytes 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.2.tgz 217ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/plur/-/plur-3.1.1.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/imagemin-jpegtran 124ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/express-swaggerize-ui/-/express-swaggerize-ui-1.1.0.tgz 762ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/imagemin-jpegtran/-/imagemin-jpegtran-6.0.0.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/imagemin-svgo 129ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/html-minifier 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/imagemin-svgo/-/imagemin-svgo-7.1.0.tgz 107ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/html-minifier/-/html-minifier-4.0.0.tgz 119ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/maxmin 941ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/maxmin 900ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/maxmin/-/maxmin-2.1.0.tgz 105ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/maxmin/-/maxmin-3.0.0.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/uri-path 921ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npm-run-path 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/uri-path/-/uri-path-1.0.0.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-ansi 139ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/async/-/async-1.5.2.tgz 530ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz 256ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/imagemin-gifsicle 902ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/debug/-/debug-2.6.9.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-exists 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/log-symbols 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/imagemin-gifsicle/-/imagemin-gifsicle-6.0.1.tgz 107ms<br>
�[0m�[91mnpm http �[0m�[91mfetch�[0m�[91m GET 200 https://registry.npmjs.org/string-length 121ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/plur/-/plur-2.1.2.tgz 164ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/imagemin-optipng 906ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-exists/-/path-exists-1.0.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz 239ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/log-symbols/-/log-symbols-1.0.2.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/text-table 116ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/string-length/-/string-length-1.0.1.tgz 120ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/beeper 105ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/imagemin-optipng/-/imagemin-optipng-6.0.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.2.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz 117ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz 111ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/figures 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/hooker 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/htmlprocessor 913ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dir2pattern 1036ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/number-is-nan 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pretty-ms 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/figures/-/figures-1.7.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/htmlprocessor/-/htmlprocessor-0.2.6.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pretty-ms/-/pretty-ms-2.1.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fcode-frame 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cross-spawn 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/debug/-/debug-4.3.2.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ajv 197ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eslint-scope 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eslint-utils 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eslint-visitor-keys 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/espree 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz 189ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/espree/-/espree-6.2.1.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/esquery 101ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/esutils 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/functional-red-black-tree 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cson 938ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-entry-cache 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob-parent 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/load-grunt-tasks 966ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/date-time 932ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cson/-/cson-4.0.0.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/load-grunt-tasks/-/load-grunt-tasks-3.5.2.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/globals 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/date-time/-/date-time-1.1.0.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ignore 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/import-fresh 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/imurmurhash 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/inquirer 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-glob 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/globals/-/globals-12.4.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/levn 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-stable-stringify-without-jsonify 142ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/natural-compare 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/levn/-/levn-0.3.0.tgz 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/optionator 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dir2pattern/-/dir2pattern-0.0.4.tgz 1140ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/regexpp 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/progress 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-6.3.0.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-json-comments 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/table 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/v8-compile-cache 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/debug/-/debug-2.6.9.tgz 5ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/follow-redirects 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/progress/-/progress-2.0.3.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz 5ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bytes 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/content-type 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/table/-/table-5.4.6.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/depd 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz 100ms<br>
npm http fetch GET 200 https://registry.npmjs.org/on-finished 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/http-errors 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/raw-body 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/type-is 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/depd/-/depd-1.1.2.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/qs 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/arrify 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/indent-string 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/qs/-/qs-6.7.0.tgz 108ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-assign 97ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/vary 129ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt/-/grunt-0.3.17.tgz 219ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/onetime 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz 107ms<br>
�[0m�[91mnpm �[0m�[91mhttp �[0m�[91mfetch GET 200 https://registry.npmjs.org/vary/-/vary-1.1.2.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/which 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/express-list-endpoints 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/which/-/which-1.3.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prom-client/-/prom-client-11.5.3.tgz 147ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/express-list-endpoints/-/express-list-endpoints-4.0.1.tgz 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@fast-csv%2fformat 140ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/accepts 113ms<br>
�[0m�[91mnpm http�[0m�[91m fetch�[0m�[91m GET 200 https://registry.npmjs.org/@fast-csv%2fparse 145ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@fast-csv/format/-/format-4.3.5.tgz 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz 3ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@fast-csv/parse/-/parse-4.3.6.tgz 142ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-flatten 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/content-disposition 126ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/cookie 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pad-stream 931ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-version-check 916ms<br>
�[0m�[91mnpm�[0m�[91m http fetch�[0m�[91m GET 200 https://registry.npmjs.org/dargs 927ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pad-stream/-/pad-stream-1.2.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tmp 908ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/cookie-signature 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/encodeurl 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/escape-html 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-version-check/-/bin-version-check-2.1.0.tgz 118ms<br>
�[0m�[91mnpm �[0m�[91mhttp�[0m�[91m fetch GET 200 https://registry.npmjs.org/dargs/-/dargs-2.1.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/etag 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/express-prom-bundle 894ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tmp/-/tmp-0.0.28.tgz 118ms<br>
�[0m�[91mnpm http�[0m�[91m fetch GET 200 https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/finalhandler 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/etag/-/etag-1.8.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fresh 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/express-prom-bundle/-/express-prom-bundle-5.1.5.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/merge-descriptors 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url-pattern 952ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/methods 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parseurl 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-to-regexp 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/proxy-addr 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/range-parser 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url-pattern/-/url-pattern-1.0.3.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/methods/-/methods-1.1.2.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safe-buffer 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/send 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/serve-static 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/statuses 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/denque 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/utils-merge 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/setprototypeof 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/generate-function 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/send/-/send-0.17.1.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz 109ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/denque/-/denque-2.0.1.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz 206ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz 130ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/long 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz 118ms<br>
�[0m�[91mnpm http�[0m�[91m fetch GET 200 https://registry.npmjs.org/lru-cache 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/named-placeholders 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sqlstring 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dotenv-expand 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/long/-/long-4.0.0.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/aws-sign2 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/aws4 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/named-placeholders/-/named-placeholders-1.1.2.tgz 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sqlstring/-/sqlstring-2.3.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caseless 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/combined-stream 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extend 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/forever-agent 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/har-validator 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/form-data 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/http-signature 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extend/-/extend-3.0.2.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-typedarray 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz 107ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: this library is no longer supported<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isstream 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-stringify-safe 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz 139ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/performance-now 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/oauth-sign 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/qs/-/qs-6.5.2.tgz 115ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tough-cookie 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tunnel-agent 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unzipper 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/xmldom 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dottie 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/xmldom/-/xmldom-0.1.31.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unzipper/-/unzipper-0.8.14.tgz 128ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: Deprecated due to <a title="CVE-2021-21366" data-hovercard-type="advisory" data-hovercard-url="/advisories/GHSA-h6q6-9hqw-rwfv/hovercard" href="https://github.com/advisories/GHSA-h6q6-9hqw-rwfv">CVE-2021-21366</a> resolved in 0.5.0<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dottie/-/dottie-2.0.2.tgz 97ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/retry-as-promised 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/seq-queue 922ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-7.3.5.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/retry-as-promised/-/retry-as-promised-3.2.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/seq-queue/-/seq-queue-0.0.5.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/validator 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/deepmerge 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/image-size 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sequelize-pool 329ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/deepmerge/-/deepmerge-3.2.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/image-size/-/image-size-0.7.2.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/validator/-/validator-13.6.0.tgz 199ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mime-types 923ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jszip 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.get 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isequal 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mime-types/-/mime-types-2.1.33.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz 111ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/xpath 923ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jszip/-/jszip-3.2.1.tgz 203ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isundefined 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/inflection 919ms<br>
�[0m�[91mnpm �[0m�[91mhttp�[0m�[91m fetch GET 200 https://registry.npmjs.org/lodash.reduce 146ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/xpath/-/xpath-0.0.27.tgz 122ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/mime 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isundefined/-/lodash.isundefined-3.0.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sequelize-pool/-/sequelize-pool-6.1.0.tgz 516ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/inflection/-/inflection-1.13.1.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/toposort-class 922ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz 119ms<br>
�[0m�[91mnpm �[0m�[91mWARN deprecated [email protected]: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/merge-options 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/xmlbuilder 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mime/-/mime-2.4.0.tgz 147ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/toposort-class/-/toposort-class-1.0.1.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/merge-options/-/merge-options-1.0.1.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/wkx 954ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/async/-/async-3.2.1.tgz 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz 126ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/DABH/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/DABH">@DABH</a>%2fdiagnostics 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-stream 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/logform 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/wkx/-/wkx-0.5.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/one-time 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/readable-stream 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/logform/-/logform-2.3.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/stack-trace 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.2.tgz 257ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/triple-beam 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/winston-transport 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob/-/glob-5.0.15.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/concat-stream 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/promise-retry 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/winston-transport/-/winston-transport-4.4.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ssh2 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.uniqueid 909ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fs.realpath 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/inflight 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/inherits 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.uniqueid/-/lodash.uniqueid-4.0.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/once 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-is-absolute 126ms<br>
npm http fetch GET 200 https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz 113ms<br>
npm http fetch GET 200 https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz 120ms<br>
npm http fetch GET 200 https://registry.npmjs.org/ssh2/-/ssh2-1.5.0.tgz 204ms<br>
npm http fetch GET 200 https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz 171ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz 9ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/once/-/once-1.4.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/commander 159ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tdigest 939ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-ui-dist 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-parser/-/swagger-parser-10.0.2.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/argparse 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/commander/-/commander-6.2.0.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tdigest/-/tdigest-0.1.1.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/esprima 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safer-buffer 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/brace-expansion 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob/-/glob-7.1.6.tgz 322ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-stream-rotator 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-hash 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz 155ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/abbrev 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-stream-rotator/-/file-stream-rotator-0.5.7.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-ansi 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/escape-string-regexp 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/interpret 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/liftup 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/v8flags 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/colors/-/colors-1.1.2.tgz 125ms<br>
npm http fetch GET 200 https://registry.npmjs.org/grunt-legacy-log-utils 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/liftup/-/liftup-3.0.1.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/getobject 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/underscore.string 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz 147ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/which/-/which-2.0.2.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-2.1.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-styles 530ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-styles 115ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/getobject/-/getobject-1.0.2.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.5.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-ansi/-/has-ansi-1.0.3.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz 109ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/supports-color/-/supports-color-1.3.1.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/anymatch 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/promster/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/promster">@promster</a>%2fmetrics 1975ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/braces 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-binary-path 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/normalize-path 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/readdirp 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fsevents 150ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/braces/-/braces-3.0.2.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz 120ms<br>
npm http fetch GET 200 https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/js-base64 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/es6-promise 321ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ms 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-flag 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-cache-breaker/-/grunt-cache-breaker-2.0.1.tgz 11471ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz 139ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/js-base64/-/js-base64-2.1.9.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ms/-/ms-2.1.3.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/es6-promise/-/es6-promise-2.3.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz 144ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-yarn 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/configstore 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/import-lazy 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-installed-globally 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-3.52.5.tgz 1441ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-ci 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-npm 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-yarn-global 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz 109ms<br>
npm http fetch GET 200 https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/latest-version 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pupa 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver-diff 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/xdg-basedir 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/num2fraction 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/browserslist 206ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz 223ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/call-me-maybe 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-schema-ref-parser 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/browserslist/-/browserslist-0.4.0.tgz 107ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: Browserslist 2 could fail on reading Browserslist >3.0 config used in other tools.<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@promster/metrics/-/metrics-2.2.3.tgz 957ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-methods 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/z-schema 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-methods/-/swagger-methods-1.0.8.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-type 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/globby 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/make-dir 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-schema-ref-parser/-/json-schema-ref-parser-5.1.3.tgz 296ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/globby/-/globby-8.0.2.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/z-schema/-/z-schema-3.25.1.tgz 242ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-pipe 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pify 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/replace-ext 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-pipe/-/p-pipe-1.2.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pify/-/pify-4.0.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jpegtran-bin 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-svg 114ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/jpegtran-bin/-/jpegtran-bin-4.0.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-svg/-/is-svg-4.3.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/openapi-schema-validation 916ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caniuse-db 1126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ono 936ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/svgo 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/camel-case 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-schema-official 956ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/openapi-schema-validation/-/openapi-schema-validation-0.4.2.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ono/-/ono-4.0.11.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz 126ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: This SVGO version is no longer supported. Upgrade to v2.x.x.<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-schema-official/-/swagger-schema-official-2.0.0-bab6bed.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/he 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/param-case 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/commander/-/commander-2.20.3.tgz 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/relateurl 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gzip-size 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/he/-/he-1.2.0.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-3.0.1.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/irregular-plurals 901ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gzip-size/-/gzip-size-3.0.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/figures/-/figures-3.2.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/exec-buffer 994ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-key 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-2.0.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-regex 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ms/-/ms-2.0.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-jpg 930ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30001270.tgz 607ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-1.4.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/exec-buffer/-/exec-buffer-3.2.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-jpg/-/is-jpg-2.0.0.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-finite 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parse-ms 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/plur/-/plur-1.0.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ms/-/ms-2.1.2.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz 199ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parse-ms/-/parse-ms-1.0.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nice-try 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhighlight 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/shebang-command 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-deep-equal 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz 99ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-json-stable-stringify 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz 390ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-schema-traverse 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/uri-js 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/esrecurse 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/estraverse 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz 139ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gifsicle 930ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/acorn 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/acorn-jsx 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-gif 959ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-png 926ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/coffee-script 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/optipng-bin 920ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-gif/-/is-gif-3.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/optipng-bin/-/optipng-bin-5.1.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-png/-/is-png-1.1.0.tgz 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz 209ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz 134ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: CoffeeScript on NPM has moved to "coffeescript" (no hyphen)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gifsicle/-/gifsicle-4.0.1.tgz 291ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/multimatch 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/multimatch/-/multimatch-2.1.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pkg-up 312ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/type-fest 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pkg-up/-/pkg-up-1.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve-from 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extract-opts 924ms<br>
�[0m�[91mnpm http�[0m�[91m fetch�[0m�[91m GET 200 https://registry.npmjs.org/cson-parser 964ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parent-module 317ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extract-opts/-/extract-opts-3.4.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cson-parser/-/cson-parser-1.3.5.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safefs 920ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-escapes 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/requirefresh 952ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/flat-cache 917ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli-cursor 99ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve-pkg 933ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/external-editor 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safefs/-/safefs-4.2.0.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli-width 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/time-zone 934ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve-pkg/-/resolve-pkg-0.1.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mute-stream 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/run-async 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/time-zone/-/time-zone-0.1.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string-width 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/requirefresh/-/requirefresh-2.3.0.tgz 279ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/through 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minimist 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/rxjs 209ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-extglob 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/type-check 98ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/through/-/through-2.3.8.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/deep-is 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/word-wrap 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prelude-ls 175ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-levenshtein 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/slice-ansi 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/debug/-/debug-3.1.0.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/toidentifier 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ee-first 144ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unpipe 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/repeating 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/async/-/async-0.1.22.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/media-typer 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/colors/-/colors-0.6.2.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/connect 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz 179ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dateformat/-/dateformat-1.0.2-1.2.3.tgz 170ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz 160ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz 537ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jshint 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/connect/-/connect-2.4.6.tgz 119ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: connect 2.x series is deprecated<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/underscore 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-1.0.14.tgz 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/uglify-js/-/uglify-js-1.3.5.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/underscore.string/-/underscore.string-2.1.1.tgz 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jshint/-/jshint-0.9.1.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isexe 96ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/negotiator 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/underscore/-/underscore-1.2.4.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz 2ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.escaperegexp 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isboolean 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isfunction 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/types/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/types">@types</a>%2fnode 457ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isundefined/-/lodash.isundefined-3.0.1.tgz 1ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isnil 155ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.groupby 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.uniq 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@types/node/-/node-14.17.27.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.groupby/-/lodash.groupby-4.6.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob-whatev 914ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nodeunit 923ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prompt 956ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/split2 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pumpify 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/meow 156ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob-whatev/-/glob-whatev-0.1.8.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/temporary 902ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/through2 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/split2/-/split2-1.1.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prompt/-/prompt-0.1.12.tgz 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/meow/-/meow-3.7.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-version 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/temporary/-/temporary-0.0.8.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz 2ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gzip-js 919ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/through2/-/through2-2.0.5.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-4.3.6.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/os-tmpdir 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-version/-/bin-version-1.0.4.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/forwarded 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gzip-js/-/gzip-js-0.3.2.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ipaddr.js 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/destroy 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nodeunit/-/nodeunit-0.7.4.tgz 437ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: you are strongly encouraged to use other testing options<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mime/-/mime-1.6.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ms/-/ms-2.1.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-property 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yallist 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/delayed-stream 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/asynckit 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/har-schema 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/assert-plus 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jsprim 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/psl 111ms<br>
npm http fetch GET 200 https://registry.npmjs.org/sshpk 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/punycode 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/binary 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/big-integer 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz 133ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/buffer-indexof-polyfill 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/psl/-/psl-1.8.0.tgz 154ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/big-integer/-/big-integer-1.6.50.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/binary/-/binary-0.3.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bluebird 236ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-indexof-polyfill/-/buffer-indexof-polyfill-1.0.2.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/duplexer2 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/listenercount 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fstream 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/readable-stream/-/readable-stream-2.1.5.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/setimmediate 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver-truncate 913ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url-value-parser 903ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz 146ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/any-promise 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/listenercount/-/listenercount-1.0.1.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mime-db 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url-value-parser/-/url-value-parser-2.0.3.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lie 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pako 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mime-db/-/mime-db-1.50.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/set-immediate-shim 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-plain-obj 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safe-stable-stringify 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lie/-/lie-3.3.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fn.name 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string_decoder 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-1.1.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@types/node/-/node-16.11.2.tgz 241ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pako/-/pako-1.0.11.tgz 191ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/util-deprecate 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/colorspace 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/retry 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/kuler 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-from 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/typedarray 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/retry/-/retry-0.12.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/wrappy 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/asn1 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bcrypt-pbkdf 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cpu-features 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cpu-features/-/cpu-features-0.0.2.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/balanced-match 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/concat-map 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fecha 908ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fecha/-/fecha-4.2.1.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/osenv 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/enabled 904ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/findup-sync/-/findup-sync-4.0.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/err-code 936ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-plain-object 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/rechoir 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nan 935ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bintrees 918ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nan/-/nan-2.15.0.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sprintf-js 927ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sprintf-js 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-regex/-/ansi-regex-1.1.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/picomatch 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fill-range 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bintrees/-/bintrees-1.0.1.tgz 490ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/flagged-respawn 893ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/binary-extensions 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/amdefine 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.map 918ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fined 1165ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz 144ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.clonedeep 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/APIDevTools/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/APIDevTools">@APIDevTools</a>%2fswagger-parser 1783ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color-convert 99ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fined/-/fined-1.2.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/homedir-polyfill 897ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dot-prop 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-3.0.2.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/graceful-fs 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@apidevtools/swagger-parser/-/swagger-parser-10.0.2.tgz 150ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unique-string 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/write-file-atomic 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-path-inside 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/package-json 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ci-info 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-stdin 908ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/escape-goat 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prom-client/-/prom-client-11.5.3.tgz 3ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.memoize 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.once 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/optional 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url-value-parser/-/url-value-parser-2.0.1.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/optional/-/optional-0.1.4.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cache-breaker 968ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dir-glob 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-glob 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-union 184ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url/-/url-0.11.0.tgz 146ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pify/-/pify-3.0.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dir-glob/-/dir-glob-2.0.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz 142ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz 2ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cache-breaker/-/cache-breaker-0.0.4.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/slash 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/validator/-/validator-10.11.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-wrapper 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/slash/-/slash-1.0.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/core-js 235ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/global-dirs 952ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz 300ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: core-js@<3.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/coa 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gc-stats 916ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/css-select 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/coa/-/coa-2.0.2.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/css-select-base-adapter 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/css-tree 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gc-stats/-/gc-stats-1.4.0.tgz 302ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/logalot 901ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-xml-parser 932ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-build 954ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jsonschema 921ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.values 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz 207ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/logalot/-/logalot-2.1.0.tgz 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.20.3.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-build/-/bin-build-3.0.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jsonschema-draft4 941ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sax 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jsonschema/-/jsonschema-1.2.4.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/format-util 937ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/stable 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unquote 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/util.promisify 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jsonschema-draft4/-/jsonschema-draft4-1.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/no-case 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sax/-/sax-1.2.4.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/upper-case 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/format-util/-/format-util-1.0.5.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/stable/-/stable-0.1.8.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/duplexer 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/execa 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-finally 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/js-tokens 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-validator-identifier 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz 139ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/execa 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/shebang-regex 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/execa/-/execa-0.7.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-differ 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/find-up 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/execa/-/execa-1.0.0.tgz 190ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/callsites 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/csso 915ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz 161ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/flatted 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/write 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/csso/-/csso-4.2.0.tgz 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/restore-cursor 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chardet 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/write/-/write-1.0.3.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve-from/-/resolve-from-2.0.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/emoji-regex 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/emoji-regex 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-fullwidth-code-point 155ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tempfile 914ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/astral-regex 151ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tslib 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/formidable 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/qs/-/qs-0.5.1.tgz 144ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/crc 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-fullwidth-code-point 315ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eachr 944ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/editions 956ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cookie/-/cookie-0.0.4.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/formidable/-/formidable-1.0.11.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/typechecker 1004ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bytes/-/bytes-0.1.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/crc/-/crc-0.2.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eachr/-/eachr-3.3.0.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/send/-/send-0.0.4.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fresh/-/fresh-0.1.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pause 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/editions/-/editions-2.3.1.tgz 150ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minimatch/-/minimatch-0.0.5.tgz 104ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz 111ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/typechecker/-/typechecker-4.11.0.tgz 144ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/winston/-/winston-0.5.11.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/duplexify 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pause/-/pause-0.0.1.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pump 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decamelize 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/loud-rejection 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/map-obj 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/normalize-package-data 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pump/-/pump-2.0.1.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/read-pkg-up 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/redent 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/trim-newlines 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/xtend 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/redent/-/redent-1.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz 1ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pseudomap 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli 913ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pkginfo 906ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz 2ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli/-/cli-0.4.3.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/camelcase-keys 928ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pkginfo/-/pkginfo-0.4.1.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extsprintf 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-schema 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/verror 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dashdash 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/verror/-/verror-1.10.0.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/package 929ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/getpass 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/find-versions 891ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jsbn 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/package/-/package-1.0.1.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tweetnacl 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/crc32 915ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/find-versions/-/find-versions-1.2.1.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ecc-jsbn 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/deflate-js 944ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffers 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/crc32/-/crc32-0.2.2.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-shims 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tap 1058ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/deflate-js/-/deflate-js-0.2.3.tgz 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/core-util-is 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/process-nextick-args 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isarray 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz 119ms<br>
npm http fetch GET 200 https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz 5ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/process-nextick-args 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/immediate 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz 150ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color 145ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/detect-file 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/micromatch 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color/-/color-3.2.1.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/os-homedir 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isobject 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-parse 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-core-module 194ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-regex-range 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/for-own 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz 117ms<br>
npm http fetch GET 200 https://registry.npmjs.org/expand-tilde 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chainsaw 946ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tap/-/tap-15.0.10.tgz 763ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/object.defaults 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.pick 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._baseclone 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._bindcallback 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color-name 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-3.3.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/text-hex 918ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/APIDevTools/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/APIDevTools">@APIDevTools</a>%2fopenapi-schemas 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve-dir 929ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/jsdevtools/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jsdevtools">@jsdevtools</a>%2fono 156ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@apidevtools/openapi-schemas/-/openapi-schemas-2.1.0.tgz 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parse-passwd 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-obj 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/z-schema/-/z-schema-4.2.4.tgz 256ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@jsdevtools/ono/-/ono-7.1.3.tgz 157ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/crypto-random-string 110ms<br>
�[0m�[91mnpm http�[0m�[91m �[0m�[91mfetch GET 200 https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/signal-exit 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/typedarray-to-buffer 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/make-iterator 954ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.5.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/registry-auth-token 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz 124ms<br>
�[0m�[91mnpm http�[0m�[91m fetch�[0m�[91m GET 200 https://registry.npmjs.org/got 200ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/registry-url 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parse-filepath 943ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/querystring 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/got/-/got-9.6.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-type 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-uniq 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz 101ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mrmlnc/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mrmlnc">@mrmlnc</a>%2freaddir-enhanced 150ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/nodelib/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nodelib">@nodelib</a>%2ffs.stat 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash/-/lodash-2.2.1.tgz 200ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/merge2 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz 139ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/download 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ini 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/types/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/types">@types</a>%2fq 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/q 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/download/-/download-7.1.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/boolbase 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ini/-/ini-2.0.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/q/-/q-1.5.1.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/css-what 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/domutils 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nth-check 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/node-pre-gyp 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.13.0.tgz 113ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: Please upgrade to @mapbox/node-pre-gyp: the non-scoped node-pre-gyp package is deprecated and only the <a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/mapbox/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mapbox">@mapbox</a> scoped package will recieve updates in the future<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/download/-/download-6.2.5.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/APIDevTools/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/APIDevTools">@APIDevTools</a>%2fjson-schema-ref-parser 1764ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-map-series 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/call-bind 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-check 923ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/define-properties 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/os-filter-obj 947ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/APIDevTools/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/APIDevTools">@APIDevTools</a>%2fswagger-methods 1975ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/es-abstract 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/es-abstract 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@apidevtools/swagger-methods/-/swagger-methods-3.0.2.tgz 159ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz 146ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-symbols 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.getownpropertydescriptors 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mdn-data 910ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lower-case 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/squeak 907ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-stream 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-eof 96ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strnum 929ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-stream 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/squeak/-/squeak-1.3.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz 153ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz 99ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strnum/-/strnum-1.0.4.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pinkie-promise 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/range-parser/-/range-parser-0.0.4.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-9.0.9.tgz 949ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mime/-/mime-1.2.6.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/temp-dir 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lru-cache/-/lru-cache-1.0.6.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sigmund 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eyes 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pkginfo/-/pkginfo-0.2.3.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/end-of-stream 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/stream-shift 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/end-of-stream 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/hosted-git-info 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/currently-unhandled 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/validate-npm-package-license 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/read-pkg 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-indent 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/camelcase 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver-regex 99ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color-string 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-number 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/for-in 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver-regex/-/semver-regex-1.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color-string/-/color-string-1.6.0.tgz 108ms<br>
�[0m�[91mnpm http�[0m�[91m fetch GET 200 https://registry.npmjs.org/has/-/has-1.0.3.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/types/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/types">@types</a>%2freact 214ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/foreground-child 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ink 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@types/react/-/react-17.0.31.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/errlop 964ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/loggly 896ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ink/-/ink-3.2.0.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/loggly/-/loggly-0.3.11.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/errlop/-/errlop-2.2.0.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minipass 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nyc 221ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/libtap 319ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/libtap/-/libtap-1.1.3.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nyc/-/nyc-15.1.0.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/coveralls 900ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/opener 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minipass/-/minipass-3.1.5.tgz 339ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/findit 927ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fs-exists-cached 910ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/opener/-/opener-1.5.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/coveralls/-/coveralls-3.1.1.tgz 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/source-map-support 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/import-jsx 928ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/findit/-/findit-2.0.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fs-exists-cached/-/fs-exists-cached-1.0.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/react 321ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.20.tgz 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/import-jsx/-/import-jsx-4.0.0.tgz 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-processinfo 910ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jackspeak 921ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/react/-/react-16.14.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.2.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/treport 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jackspeak/-/jackspeak-1.4.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-each 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-slice 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/treport/-/treport-2.0.2.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._baseassign 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._basefor 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._basefor/-/lodash._basefor-3.0.3.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isarray 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.keys 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tap-mocha-reporter 914ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tap-parser 963ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tap-yaml 940ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tcompare 933ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/global-modules 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tap-mocha-reporter/-/tap-mocha-reporter-5.0.1.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/kind-of 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/traverse 922ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tap-parser/-/tap-parser-10.1.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tap-yaml/-/tap-yaml-1.0.0.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tcompare/-/tcompare-5.0.6.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/rc 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._arraycopy 897ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/sindresorhus/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/sindresorhus">@sindresorhus</a>%2fis 144ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/szmarczak/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/szmarczak">@szmarczak</a>%2fhttp-timer 140ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cacheable-request 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress-response 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/rc/-/rc-1.2.8.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/duplexer3 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._arrayeach 919ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lowercase-keys 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz 140ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz 147ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mimic-response 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-cancelable 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-readable-stream 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-absolute 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url-parse-lax 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/map-cache 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-dirname 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/arr-diff 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-unique 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/braces/-/braces-2.3.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/define-property 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extglob 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fragment-cache 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nanomatch 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/regex-not 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz 173ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/snapdragon 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz 1ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-regex 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extend-shallow 320ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob-to-regexp 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ext-name 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/got/-/got-8.3.2.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-event 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dom-serializer 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/domelementtype 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/detect-libc 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-root 919ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npm-packlist 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npmlog 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tar 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/needle 341ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.8.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caw 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tar/-/tar-4.4.19.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/needle/-/needle-2.9.1.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caw/-/caw-2.0.1.tgz 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/got/-/got-7.1.0.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-event/-/p-event-1.3.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress-tarbz2 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress-tar 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress-targz 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pify/-/pify-2.3.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress-unzip 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/archive-type 916ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-dirs 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caw 907ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-reduce 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/function-bind 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/filenamify 934ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-intrinsic 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/executable 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-keys 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/arch 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/es-to-primitive 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-intrinsic 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/executable/-/executable-4.1.1.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/arch/-/arch-2.2.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-symbol-description 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/internal-slot 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-callable 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-negative-zero 99ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-regex 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-shared-array-buffer 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-string 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-inspect 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string.prototype.trimend 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-weakref 256ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.assign 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unbox-primitive 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pump/-/pump-3.0.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.1.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mimic-fn 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string.prototype.trimstart 325ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pinkie 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-find-index 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/types/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/types">@types</a>%2fjson-schema 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz 174ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/spdx-correct 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/spdx-expression-parse 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/load-json-file 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz 177ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/simple-swizzle 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/types/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/types">@types</a>%2fprop-types 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/types/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/types">@types</a>%2fscheduler 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/csstype 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli-boxes 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli-truncate 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/csstype/-/csstype-3.0.9.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/console-stream 915ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lpad-align 937ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/console-stream/-/console-stream-0.1.1.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lpad-align/-/lpad-align-1.1.2.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/scheduler 304ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/type-fest/-/type-fest-0.12.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/widest-line 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/wrap-ansi 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/auto-bind 895ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/request/-/request-2.9.203.tgz 122ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: request has been deprecated, see https://github.com/<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="427331880" data-permission-text="Title is private" data-url="https://github.com/request/request/issues/3142" data-hovercard-type="issue" data-hovercard-url="/request/request/issues/3142/hovercard" href="https://github.com/request/request/issues/3142">request/request/issues/3142</a><br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ws 262ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/code-excerpt 920ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/auto-bind/-/auto-bind-4.0.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/patch-console 893ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ws/-/ws-7.5.5.tgz 117ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/react-devtools-core 926ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/code-excerpt/-/code-excerpt-3.0.0.tgz 114ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/patch-console/-/patch-console-1.0.0.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/diff/-/diff-4.0.2.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/stack-utils 898ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/react-reconciler 1072ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/react-reconciler/-/react-reconciler-0.26.2.tgz 215ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yoga-layout-prebuilt 919ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yoga-layout-prebuilt/-/yoga-layout-prebuilt-1.10.0.tgz 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/trivial-deferred 325ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/timespan 924ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/async-hook-domain 889ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/trivial-deferred/-/trivial-deferred-1.0.1.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bind-obj-methods 906ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/timespan/-/timespan-2.3.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/async-hook-domain/-/async-hook-domain-2.0.4.tgz 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/function-loop 903ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bind-obj-methods/-/bind-obj-methods-3.0.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/istanbuljs/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/istanbuljs">@istanbuljs</a>%2fschema 153ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/own-or 910ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caching-transform 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/function-loop/-/function-loop-2.0.1.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.20.2.tgz 1077ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/convert-source-map 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/own-or/-/own-or-1.0.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caching-transform/-/caching-transform-4.0.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/find-cache-dir 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz 154ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/own-or-env 937ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-package-type 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-coverage 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-instrument 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-report 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/own-or-env/-/own-or-env-1.0.2.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-source-maps 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-reports 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz 109ms<br>
�[0m�[91mnpm http�[0m�[91m fetch GET 200 https://registry.npmjs.org/yapool 907ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.5.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/test-exclude 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yapool/-/yapool-1.0.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yargs 217ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/log-driver 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/log-driver/-/log-driver-1.2.7.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fcore 211ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fplugin-proposal-object-rest-spread 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-hook 915ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fplugin-transform-destructuring 161ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/core/-/core-7.15.8.tgz 152ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.15.6.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-3.0.0.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caller-path 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/node-preload 912ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fplugin-transform-react-jsx 159ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/process-on-spawn 900ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prop-types 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/node-preload/-/node-preload-0.2.1.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/spawn-wrap 921ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/process-on-spawn/-/process-on-spawn-1.0.0.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.9.tgz 139ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lcov-parse 884ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/archy 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/spawn-wrap/-/spawn-wrap-2.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cliui 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cardinal 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lcov-parse/-/lcov-parse-1.0.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz 321ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/istanbuljs/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/istanbuljs">@istanbuljs</a>%2fload-nyc-config 1784ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/archy/-/archy-1.0.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ink/-/ink-2.7.1.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string-length/-/string-length-3.1.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz 160ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._getnative 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz 178ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color-support 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz 99ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/global-prefix 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-windows 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/deep-extend 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/loose-envify 891ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yaml 327ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ini/-/ini-1.3.8.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/clone-response 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/http-cache-semantics 99ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/keyv 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/normalize-url 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-relative 99ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz 134ms<br>
npm http fetch GET 200 https://registry.npmjs.org/unicode-length 914ms<br>
�[0m�[91mnpm http�[0m�[91m fetch�[0m�[91m GET 200 https://registry.npmjs.org/defer-to-connect 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/responselike 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._basecopy 911ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prepend-http 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isarguments 954ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/arr-flatten 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unicode-length/-/unicode-length-2.0.2.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/events-to-array 944ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz 110ms<br>
npm http fetch GET 200 https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/split-string 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/repeat-element 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/snapdragon-node 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/events-to-array/-/events-to-array-1.1.2.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/expand-brackets 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-descriptor 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safe-regex 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz 110ms<br>
�[0m�[91mnpm http�[0m�[91m �[0m�[91mfetch GET 200 https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/use 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/source-map-resolve 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/assign-symbols 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-extendable 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ext-list 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sort-keys-length 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz 99ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/use/-/use-3.1.1.tgz 115ms<br>
npm http fetch GET 200 https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz 160ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/into-stream 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-retry-allowed 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isurl 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-timeout 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/timed-out 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/entities 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz 142ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-root-regex 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz 238ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ignore-walk 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npm-normalize-package-bin 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/entities/-/entities-2.2.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/are-we-there-yet 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/console-control-strings 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.4.tgz 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gauge 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/set-blocking 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chownr 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/base 935ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fs-minipass 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minizlib 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz 151ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/base/-/base-0.11.2.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-proxy 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz 1ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz 133ms<br>
npm http fetch GET 200 https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz 120ms<br>
npm http fetch GET 200 https://registry.npmjs.org/tar-stream 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/seek-bzip 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unbzip2-stream 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url-to-options 913ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz 347ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yauzl 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-natural-number 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/filename-reserved-regex 122ms<br>
�[0m�[91mnpm �[0m�[91mhttp �[0m�[91mfetch GET 200 https://registry.npmjs.org/is-date-object 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/trim-repeated 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npm-bundled 932ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-symbol 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/side-channel 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz 140ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-outer 269ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-tostringtag 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-bigints 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/spdx-license-ids 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/which-boxed-primitive 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/spdx-exceptions 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parse-json 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz 147ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-bom 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz 110ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/longest 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/shell-quote 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/locate-path 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/types/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/types">@types</a>%2fyoga-layout 184ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/longest/-/longest-1.0.1.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/commondir 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pkg-dir 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/aggregate-error 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz 324ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/html-escaper 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-caller-file 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/require-directory 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/require-main-filename 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/which-module 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-arrayish 893ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/y18n 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/convert-to-spaces 916ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yargs-parser 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/package-hash 901ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/hasha 920ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fgenerator 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz 152ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-compilation-targets 165ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/package-hash/-/package-hash-4.0.0.tgz 153ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-module-transforms 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/generator/-/generator-7.15.8.tgz 155ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@types/yoga-layout/-/yoga-layout-1.9.2.tgz 931ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelpers 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2ftypes 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2ftraverse 153ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json5 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2ftemplate 206ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gensync 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fparser 213ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.4.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.8.tgz 183ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fcompat-data 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/template/-/template-7.15.4.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz 146ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json5/-/json5-2.2.0.tgz 140ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-plugin-utils 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fplugin-syntax-object-rest-spread 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/parser/-/parser-7.15.8.tgz 232ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fplugin-transform-parameters 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-annotate-as-pure 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.15.4.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/auto-bind/-/auto-bind-4.0.0.tgz 2ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.15.4.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caller-callsite 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-module-imports 289ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.throttle 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/log-update 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/react-is 308ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/scheduler/-/scheduler-0.18.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/react-reconciler/-/react-reconciler-0.24.0.tgz 226ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/log-update/-/log-update-3.4.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/redeyed 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz 119ms<br>
�[0m�[91mnpm http�[0m�[91m fetch GET 200 https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/redeyed/-/redeyed-2.1.1.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-unc-path 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-buffer 139ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansicolors 332ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/repeat-string 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fromentries 914ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/append-transform 939ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/snapdragon-util 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-data-descriptor 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/posix-character-classes 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz 1ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz 2ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ret 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-accessor-descriptor 161ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/append-transform/-/append-transform-2.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz 1ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ret/-/ret-0.1.15.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mime-db/-/mime-db-1.50.0.tgz 2ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz 97ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/atob 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decode-uri-component 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve-url 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/urix 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sort-keys 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/atob/-/atob-2.1.2.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz 111ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: https://github.com/lydell/resolve-url#deprecated<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/urix/-/urix-0.1.0.tgz 140ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: Please see https://github.com/lydell/urix#deprecated<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-object 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/from2 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-is-promise 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/aproba 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/from2/-/from2-2.3.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-unicode 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/wide-align 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fplugin-syntax-jsx 1705ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cache-base 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/class-utils 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/component-emitter 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mixin-deep 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz 161ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pascalcase 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/source-map-url 929ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npm-conf 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-to-string-tag-x 934ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bl 145ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-alloc 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fs-constants 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz 117ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz 1275ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bl/-/bl-1.2.3.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/delegates 903ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fd-slicer 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-crc32 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer 140ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-bigint 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-number-object 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-boolean-object 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz 130ms<br>
�[0m�[91mnpm http�[0m�[91m fetch GET 200 https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/error-ex 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-utf8 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/clean-stack 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-locate 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.flattendeep 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jsesc 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-validator-option 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/browserslist/-/browserslist-4.17.4.tgz 132ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-replace-supers 149ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-simple-access 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-fast-properties 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz 147ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-split-export-declaration 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-hoist-variables 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/globals/-/globals-11.12.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-buffer 1002ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unc-path-regex 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz 112ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/default-require-extensions 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-function-name 461ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/query-string 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz 123ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-3.0.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/code-point-at 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/collection-visit 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz 104ms<br>
�[0m�[91mnpm http�[0m�[91m fetch�[0m�[91m GET 200 https://registry.npmjs.org/has-value 111ms<br>
�[0m�[91mnpm http�[0m�[91m fetch�[0m�[91m GET 200 https://registry.npmjs.org/get-value 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/set-value 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-object-path 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/release-zalgo 925ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/union-value 104ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unset-value 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/release-zalgo/-/release-zalgo-1.0.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz 328ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/arr-union 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz 115ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch�[0m�[91m GET 200 https://registry.npmjs.org/static-extend 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/config-chain 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-alloc-unsafe 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pend 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-fill 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/base64-js 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ieee754 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pend/-/pend-1.2.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz 142ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-limit 154ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/escalade 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/picocolors 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-member-expression-to-functions 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/node-releases 165ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-optimise-call-expression 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz 106ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz 119ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/is-buffer 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz 145ms<br>
npm http fetch GET 200 https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/map-visit 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/electron-to-chromium 473ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-visit 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-values 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.876.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caniuse-lite 652ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-get-function-arity 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/es6-error 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-symbol-support-x 916ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-copy 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/proto-list 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001270.tgz 223ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz 2ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/copy-descriptor 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz 916ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strict-uri-encode 902ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-try 906ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz 120ms</p>
<p dir="auto"><strong>package.json dependencies</strong></p>
<p dir="auto">"dependencies": {<br>
"@google-cloud/storage": "^5.1.2",<br>
"@promster/express": "^2.2.4",<br>
"api-express-exporter": "^1.0.0",<br>
"async": "^2.6.2",<br>
"axios": "^0.19.2",<br>
"body-parser": "^1.19.0",<br>
"colors": "^1.3.3",<br>
"cors": "^2.8.5",<br>
"custom-env": "^2.0.1",<br>
"dotenv": "^5.0.1",<br>
"exceljs": "^4.3.0",<br>
"express": "^4.17.1",<br>
"http-status-codes": "^1.4.0",<br>
"ip": "^1.1.5",<br>
"jsonwebtoken": "^8.5.1",<br>
"moment": "^2.24.0",<br>
"moment-timezone": "^0.5.25",<br>
"mysql2": "^2.1.0",<br>
"object-mapper": "^6.2.0",<br>
"prom-client": "^12.0.0",<br>
"request": "^2.88.0",<br>
"sequelize": "^6.3.3",<br>
"swagger-jsdoc": "^4.0.0",<br>
"swagger-ui-express": "^4.1.4",<br>
"uuid": "^3.3.2",<br>
"validate.js": "^0.13.1",<br>
"winston": "^3.2.1",<br>
"winston-daily-rotate-file": "^4.4.2"<br>
},<br>
"devDependencies": {<br>
"eslint": "^6.7.2",<br>
"express-swagger-generator": "^1.1.17",<br>
"grunt": "^1.2.1",<br>
"nodemon": "^2.0.3",<br>
"grunt-autoprefixer": "^3.0.4",<br>
"grunt-cache-breaker": "^2.0.1",<br>
"grunt-clean": "^0.4.0",<br>
"grunt-concurrent": "^2.3.1",<br>
"grunt-contrib-clean": "^2.0.0",<br>
"grunt-contrib-compass": "^1.1.1",<br>
"grunt-contrib-concat": "^1.0.1",<br>
"grunt-contrib-copy": "^1.0.0",<br>
"grunt-contrib-cssmin": "*",<br>
"grunt-contrib-imagemin": "^3.1.0",<br>
"grunt-contrib-symlink": "^1.0.0",<br>
"grunt-contrib-uglify": "^4.0.1",<br>
"grunt-htmlmin": "^0.1.4",<br>
"grunt-processhtml": "^0.4.2",<br>
"grunt-shell": "^3.0.1",<br>
"grunt-string-replace": "^1.3.1",<br>
"grunt-task-helper": "^0.3.10",<br>
"grunt-usemin": "^3.1.1",<br>
"jit-grunt": "^0.10.0",<br>
"jshint-stylish": "^2.2.1",<br>
"load-grunt-config": "^1.0.2",<br>
"time-grunt": "^2.0.0"<br>
}<br>
}</p>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">The npm install must complete without extensive delay without waiting forever</p>
<h3 dir="auto">Steps To Reproduce</h3>
<ol dir="auto">
<li>In this environment...</li>
<li>With this config...</li>
<li>Run '...'</li>
<li>See error...</li>
</ol>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>OS: Redhat 7.9</li>
<li>Node: 10.22.0</li>
<li>npm: 6.14.6</li>
</ul> | <h3 dir="auto">Is there an existing issue for this?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the existing issues</li>
</ul>
<h3 dir="auto">Current Behavior</h3>
<p dir="auto">I am experiencing a lag in npm install and it wait forever in below stage. Performed npm cache clean and still the behavior is same. Attached below is npm install and package.json content. Is this due to inability to download packages? Is the npm registry throttling certain packages</p>
<p dir="auto">Step 5/13 : RUN npm install --verbose<br>
---> Running in 8aa3e2f25f3<br>
�[91mnpm�[0m�[91m �[0m�[91minfo it worked if it ends with ok<br>
�[0m�[91mnpm verb cli [ '/usr/local/bin/node',<br>
npm �[0m�[91mverb cli '/usr/local/bin/npm',<br>
npm verb cli 'install',<br>
npm verb cli '--verbose' ]<br>
�[0m�[91mnpm info using [email protected]<br>
npm info using�[0m�[91m [email protected]<br>
�[0m�[91mnpm �[0m�[91mverb npm-session fee3df31189e40d7<br>
�[0m�[91mnpm info �[0m�[91mlifecycle [email protected]<del>preinstall: [email protected]<br>
�[0m�[91mnpm �[0m�[91mWARN lifecycle [email protected]</del>preinstall: cannot run in wd [email protected] URL=http://10.70.129.19:8081/repository/npm-releases create-npmrc (wd=/app)<br>
�[0m�[91mnpm timing �[0m�[91mstage:loadCurrentTree Completed in 22ms<br>
�[0m�[91mnpm�[0m�[91m timing stage:loadIdealTree:cloneCurrentTree Completed in 1ms<br>
�[0m�[91mnpm �[0m�[91mtiming stage:loadIdealTree:loadShrinkwrap Completed in 5ms<br>
�[0m�[91mnpm http�[0m�[91m fetch GET 200 https://registry.npmjs.org/grunt 616ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt/-/grunt-1.4.1.tgz 157ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-concat 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-concat/-/grunt-contrib-concat-1.0.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-copy 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-copy/-/grunt-contrib-copy-1.0.0.tgz 123ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/express-swagger-generator 1306ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/grunt-autoprefixer 1359ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/express-swagger-generator/-/express-swagger-generator-1.1.17.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-autoprefixer/-/grunt-autoprefixer-3.0.4.tgz 116ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/nodemon 1561ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nodemon/-/nodemon-2.0.14.tgz 144ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-cssmin 949ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-cssmin/-/grunt-contrib-cssmin-4.0.0.tgz 125ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/grunt-contrib-imagemin 913ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-symlink 920ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-symlink/-/grunt-contrib-symlink-1.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-uglify 914ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-uglify/-/grunt-contrib-uglify-4.0.1.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-htmlmin 916ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-imagemin/-/grunt-contrib-imagemin-3.1.0.tgz 985ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-htmlmin/-/grunt-htmlmin-0.1.4.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-processhtml 928ms<br>
�[0m�[91mnpm http�[0m�[91m fetch�[0m�[91m GET 200 https://registry.npmjs.org/grunt-processhtml/-/grunt-processhtml-0.4.2.tgz 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-shell 972ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-shell/-/grunt-shell-3.0.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-string-replace 967ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-task-helper 975ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-string-replace/-/grunt-string-replace-1.3.1.tgz 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-task-helper/-/grunt-task-helper-0.3.10.tgz 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-usemin 958ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-usemin/-/grunt-usemin-3.1.1.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jit-grunt 927ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jit-grunt/-/jit-grunt-0.10.0.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jshint-stylish 931ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/load-grunt-config 920ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jshint-stylish/-/jshint-stylish-2.2.1.tgz 123ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/load-grunt-config/-/load-grunt-config-1.0.2.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/time-grunt 943ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-clean 5660ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/time-grunt/-/time-grunt-2.0.0.tgz 112ms<br>
�[0m�[91mnpm WARN deprecated�[0m�[91m [email protected]: Deprecated because Grunt is practically unmaintained. Move on to something better. This package will continue to work with Grunt v1, but it will not receive any updates.<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/eslint 5779ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/grunt-contrib-clean/-/grunt-contrib-clean-2.0.0.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/async 162ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/axios 233ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/async/-/async-2.6.3.tgz 205ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eslint/-/eslint-6.8.0.tgz 315ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/axios/-/axios-0.19.2.tgz 167ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="742059628" data-permission-text="Title is private" data-url="https://github.com/axios/axios/issues/3410" data-hovercard-type="pull_request" data-hovercard-url="/axios/axios/pull/3410/hovercard" href="https://github.com/axios/axios/pull/3410">axios/axios/pull/3410</a><br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/body-parser 127ms<br>
�[0m�[91mnpm http �[0m�[91mfetch�[0m�[91m GET 200 https://registry.npmjs.org/colors 128ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/grunt-concurrent 6243ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-contrib-compass 6262ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-clean 6270ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cors 118ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz 117ms<br>
�[0m�[91mnpm http�[0m�[91m fetch GET 200 https://registry.npmjs.org/colors/-/colors-1.4.0.tgz 125ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/grunt-concurrent/-/grunt-concurrent-2.3.1.tgz 129ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/grunt-clean/-/grunt-clean-0.4.0.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/adm-zip 932ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cors/-/cors-2.8.5.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dotenv 123ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/grunt-contrib-compass/-/grunt-contrib-compass-1.1.1.tgz 232ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/api-express-exporter 955ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.9.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dotenv/-/dotenv-5.0.1.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/api-express-exporter/-/api-express-exporter-1.0.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/express 243ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/http-status-codes 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-csv 203ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ip 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/moment 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/http-status-codes/-/http-status-codes-1.4.0.tgz 121ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/fast-csv/-/fast-csv-4.3.6.tgz 115ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/express/-/express-4.17.1.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ip/-/ip-1.1.5.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/promster/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/promster">@promster</a>%2fexpress 2037ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/moment-timezone 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mysql2 174ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/moment/-/moment-2.29.1.tgz 381ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.33.tgz 205ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/mysql2/-/mysql2-2.3.2.tgz 195ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/custom-env 907ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/request 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/excel 929ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/custom-env/-/custom-env-2.0.1.tgz 119ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/request/-/request-2.88.2.tgz 115ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: request has been deprecated, see https://github.com/<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="427331880" data-permission-text="Title is private" data-url="https://github.com/request/request/issues/3142" data-hovercard-type="issue" data-hovercard-url="/request/request/issues/3142/hovercard" href="https://github.com/request/request/issues/3142">request/request/issues/3142</a><br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/excel4node 1022ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/excel/-/excel-1.0.1.tgz 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sequelize 378ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/grunt-cache-breaker 7593ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/uuid 148ms<br>
�[0m�[91mnpm �[0m�[91mhttp�[0m�[91m fetch GET 200 https://registry.npmjs.org/sequelize/-/sequelize-6.7.0.tgz 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz 115ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.<br>
�[0m�[91mnpm �[0m�[91mhttp �[0m�[91mfetch�[0m�[91m GET 200 https://registry.npmjs.org/excel4node/-/excel4node-1.7.2.tgz 336ms<br>
�[0m�[91mnpm �[0m�[91mhttp �[0m�[91mfetch�[0m�[91m GET 200 https://registry.npmjs.org/object-mapper 934ms<br>
�[0m�[91mnpm http�[0m�[91m fetch GET 200 https://registry.npmjs.org/prom-client 949ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/winston 147ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-mapper/-/object-mapper-6.2.0.tgz 125ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/@promster/express/-/express-2.2.4.tgz 969ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prom-client/-/prom-client-12.0.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dateformat 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/winston/-/winston-3.3.3.tgz 146ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eventemitter2 118ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch�[0m�[91m GET 200 https://registry.npmjs.org/exit 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/findup-sync 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ssh2-sftp-client 935ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz 134ms<br>
�[0m�[91mnpm�[0m�[91m �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/exit/-/exit-0.1.2.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz 113ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch�[0m�[91m GET 200 https://registry.npmjs.org/glob 131ms<br>
�[0m�[91mnpm http�[0m�[91m fetch GET 200 https://registry.npmjs.org/ssh2-sftp-client/-/ssh2-sftp-client-7.1.0.tgz 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-jsdoc 922ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-ui-express 983ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob/-/glob-7.1.7.tgz 125ms<br>
�[0m�[91mnpm �[0m�[91mhttp�[0m�[91m �[0m�[91mfetch�[0m�[91m GET 200 https://registry.npmjs.org/swagger-jsdoc/-/swagger-jsdoc-4.3.2.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-ui-express/-/swagger-ui-express-4.1.6.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/iconv-lite 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/js-yaml 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minimatch 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz 131ms<br>
�[0m�[91mnpm http�[0m�[91m fetch�[0m�[91m GET 200 https://registry.npmjs.org/winston-daily-rotate-file 925ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/validate.js 1012ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz 234ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mkdirp 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/validate.js/-/validate.js-0.13.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/winston-daily-rotate-file/-/winston-daily-rotate-file-4.5.5.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nopt 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/rimraf 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz 115ms<br>
�[0m�[91mnpm�[0m�[91m http �[0m�[91mfetch�[0m�[91m GET 200 https://registry.npmjs.org/source-map 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chalk 136ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chalk 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-cli 922ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/doctrine 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-known-options 941ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz 220ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-legacy-log 928ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.4.3.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob/-/glob-7.2.0.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-legacy-util 925ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-2.0.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-3.0.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-2.0.1.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chalk/-/chalk-1.0.0.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/diff 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chokidar 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/diff/-/diff-1.3.2.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/postcss 234ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz 115ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/debug 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/postcss/-/postcss-4.1.16.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ignore-by-default 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pstree.remy 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/debug/-/debug-3.2.7.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-sync-cmp 895ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/supports-color 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-sync-cmp/-/file-sync-cmp-0.1.1.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/recursive-iterator 885ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/touch 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/undefsafe 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-5.7.1.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-parser 950ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/recursive-iterator/-/recursive-iterator-2.0.3.tgz 120ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/express-swaggerize-ui 947ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/touch/-/touch-3.1.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz 97ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/doctrine-file 979ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/update-notifier 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/autoprefixer-core 949ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/clean-css 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/doctrine-file/-/doctrine-file-1.0.3.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/update-notifier/-/update-notifier-5.1.0.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/autoprefixer-core/-/autoprefixer-core-5.2.1.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/clean-css/-/clean-css-5.2.2.tgz 146ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/imagemin 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz 369ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-parser/-/swagger-parser-5.0.6.tgz 421ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/uglify-js 248ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-map 123ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/imagemin/-/imagemin-6.1.0.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/plur 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pretty-bytes 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.2.tgz 217ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/plur/-/plur-3.1.1.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/imagemin-jpegtran 124ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/express-swaggerize-ui/-/express-swaggerize-ui-1.1.0.tgz 762ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/imagemin-jpegtran/-/imagemin-jpegtran-6.0.0.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/imagemin-svgo 129ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/html-minifier 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/imagemin-svgo/-/imagemin-svgo-7.1.0.tgz 107ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/html-minifier/-/html-minifier-4.0.0.tgz 119ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/maxmin 941ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/maxmin 900ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/maxmin/-/maxmin-2.1.0.tgz 105ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/maxmin/-/maxmin-3.0.0.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/uri-path 921ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npm-run-path 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/uri-path/-/uri-path-1.0.0.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-ansi 139ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/async/-/async-1.5.2.tgz 530ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz 256ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/imagemin-gifsicle 902ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/debug/-/debug-2.6.9.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-exists 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/log-symbols 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/imagemin-gifsicle/-/imagemin-gifsicle-6.0.1.tgz 107ms<br>
�[0m�[91mnpm http �[0m�[91mfetch�[0m�[91m GET 200 https://registry.npmjs.org/string-length 121ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/plur/-/plur-2.1.2.tgz 164ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/imagemin-optipng 906ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-exists/-/path-exists-1.0.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz 239ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/log-symbols/-/log-symbols-1.0.2.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/text-table 116ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/string-length/-/string-length-1.0.1.tgz 120ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/beeper 105ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/imagemin-optipng/-/imagemin-optipng-6.0.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.2.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz 117ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz 111ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/figures 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/hooker 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/htmlprocessor 913ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dir2pattern 1036ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/number-is-nan 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pretty-ms 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/figures/-/figures-1.7.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/htmlprocessor/-/htmlprocessor-0.2.6.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pretty-ms/-/pretty-ms-2.1.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fcode-frame 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cross-spawn 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/debug/-/debug-4.3.2.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ajv 197ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eslint-scope 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eslint-utils 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eslint-visitor-keys 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/espree 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz 189ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/espree/-/espree-6.2.1.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/esquery 101ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/esutils 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/functional-red-black-tree 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cson 938ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-entry-cache 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob-parent 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/load-grunt-tasks 966ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/date-time 932ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cson/-/cson-4.0.0.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/load-grunt-tasks/-/load-grunt-tasks-3.5.2.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/globals 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/date-time/-/date-time-1.1.0.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ignore 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/import-fresh 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/imurmurhash 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/inquirer 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-glob 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/globals/-/globals-12.4.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/levn 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-stable-stringify-without-jsonify 142ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/natural-compare 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/levn/-/levn-0.3.0.tgz 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/optionator 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dir2pattern/-/dir2pattern-0.0.4.tgz 1140ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/regexpp 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/progress 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-6.3.0.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-json-comments 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/table 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/v8-compile-cache 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/debug/-/debug-2.6.9.tgz 5ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/follow-redirects 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/progress/-/progress-2.0.3.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz 5ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bytes 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/content-type 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/table/-/table-5.4.6.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/depd 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz 100ms<br>
npm http fetch GET 200 https://registry.npmjs.org/on-finished 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/http-errors 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/raw-body 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/type-is 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/depd/-/depd-1.1.2.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/qs 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/arrify 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/indent-string 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/qs/-/qs-6.7.0.tgz 108ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-assign 97ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/vary 129ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt/-/grunt-0.3.17.tgz 219ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/onetime 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz 107ms<br>
�[0m�[91mnpm �[0m�[91mhttp �[0m�[91mfetch GET 200 https://registry.npmjs.org/vary/-/vary-1.1.2.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/which 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/express-list-endpoints 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/which/-/which-1.3.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prom-client/-/prom-client-11.5.3.tgz 147ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/express-list-endpoints/-/express-list-endpoints-4.0.1.tgz 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@fast-csv%2fformat 140ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/accepts 113ms<br>
�[0m�[91mnpm http�[0m�[91m fetch�[0m�[91m GET 200 https://registry.npmjs.org/@fast-csv%2fparse 145ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@fast-csv/format/-/format-4.3.5.tgz 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz 3ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@fast-csv/parse/-/parse-4.3.6.tgz 142ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-flatten 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/content-disposition 126ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/cookie 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pad-stream 931ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-version-check 916ms<br>
�[0m�[91mnpm�[0m�[91m http fetch�[0m�[91m GET 200 https://registry.npmjs.org/dargs 927ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pad-stream/-/pad-stream-1.2.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tmp 908ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/cookie-signature 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/encodeurl 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/escape-html 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-version-check/-/bin-version-check-2.1.0.tgz 118ms<br>
�[0m�[91mnpm �[0m�[91mhttp�[0m�[91m fetch GET 200 https://registry.npmjs.org/dargs/-/dargs-2.1.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/etag 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/express-prom-bundle 894ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tmp/-/tmp-0.0.28.tgz 118ms<br>
�[0m�[91mnpm http�[0m�[91m fetch GET 200 https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/finalhandler 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/etag/-/etag-1.8.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fresh 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/express-prom-bundle/-/express-prom-bundle-5.1.5.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/merge-descriptors 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url-pattern 952ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/methods 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parseurl 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-to-regexp 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/proxy-addr 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/range-parser 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url-pattern/-/url-pattern-1.0.3.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/methods/-/methods-1.1.2.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safe-buffer 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/send 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/serve-static 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/statuses 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/denque 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/utils-merge 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/setprototypeof 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/generate-function 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/send/-/send-0.17.1.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz 109ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/denque/-/denque-2.0.1.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz 206ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz 130ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/long 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz 118ms<br>
�[0m�[91mnpm http�[0m�[91m fetch GET 200 https://registry.npmjs.org/lru-cache 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/named-placeholders 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sqlstring 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dotenv-expand 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/long/-/long-4.0.0.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/aws-sign2 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/aws4 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/named-placeholders/-/named-placeholders-1.1.2.tgz 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sqlstring/-/sqlstring-2.3.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caseless 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/combined-stream 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extend 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/forever-agent 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/har-validator 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/form-data 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/http-signature 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extend/-/extend-3.0.2.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-typedarray 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz 107ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: this library is no longer supported<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isstream 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-stringify-safe 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz 139ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/performance-now 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/oauth-sign 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/qs/-/qs-6.5.2.tgz 115ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tough-cookie 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tunnel-agent 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unzipper 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/xmldom 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dottie 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/xmldom/-/xmldom-0.1.31.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unzipper/-/unzipper-0.8.14.tgz 128ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: Deprecated due to <a title="CVE-2021-21366" data-hovercard-type="advisory" data-hovercard-url="/advisories/GHSA-h6q6-9hqw-rwfv/hovercard" href="https://github.com/advisories/GHSA-h6q6-9hqw-rwfv">CVE-2021-21366</a> resolved in 0.5.0<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dottie/-/dottie-2.0.2.tgz 97ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/retry-as-promised 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/seq-queue 922ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-7.3.5.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/retry-as-promised/-/retry-as-promised-3.2.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/seq-queue/-/seq-queue-0.0.5.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/validator 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/deepmerge 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/image-size 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sequelize-pool 329ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/deepmerge/-/deepmerge-3.2.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/image-size/-/image-size-0.7.2.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/validator/-/validator-13.6.0.tgz 199ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mime-types 923ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jszip 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.get 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isequal 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mime-types/-/mime-types-2.1.33.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz 111ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/xpath 923ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jszip/-/jszip-3.2.1.tgz 203ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isundefined 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/inflection 919ms<br>
�[0m�[91mnpm �[0m�[91mhttp�[0m�[91m fetch GET 200 https://registry.npmjs.org/lodash.reduce 146ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/xpath/-/xpath-0.0.27.tgz 122ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/mime 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isundefined/-/lodash.isundefined-3.0.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sequelize-pool/-/sequelize-pool-6.1.0.tgz 516ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/inflection/-/inflection-1.13.1.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/toposort-class 922ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz 119ms<br>
�[0m�[91mnpm �[0m�[91mWARN deprecated [email protected]: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/merge-options 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/xmlbuilder 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mime/-/mime-2.4.0.tgz 147ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/toposort-class/-/toposort-class-1.0.1.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/merge-options/-/merge-options-1.0.1.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/wkx 954ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/async/-/async-3.2.1.tgz 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz 126ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/DABH/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/DABH">@DABH</a>%2fdiagnostics 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-stream 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/logform 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/wkx/-/wkx-0.5.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/one-time 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/readable-stream 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/logform/-/logform-2.3.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/stack-trace 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.2.tgz 257ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/triple-beam 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/winston-transport 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob/-/glob-5.0.15.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/concat-stream 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/promise-retry 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/winston-transport/-/winston-transport-4.4.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ssh2 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.uniqueid 909ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fs.realpath 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/inflight 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/inherits 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.uniqueid/-/lodash.uniqueid-4.0.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/once 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-is-absolute 126ms<br>
npm http fetch GET 200 https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz 113ms<br>
npm http fetch GET 200 https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz 120ms<br>
npm http fetch GET 200 https://registry.npmjs.org/ssh2/-/ssh2-1.5.0.tgz 204ms<br>
npm http fetch GET 200 https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz 171ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz 9ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/once/-/once-1.4.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/commander 159ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tdigest 939ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-ui-dist 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-parser/-/swagger-parser-10.0.2.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/argparse 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/commander/-/commander-6.2.0.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tdigest/-/tdigest-0.1.1.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/esprima 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safer-buffer 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/brace-expansion 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob/-/glob-7.1.6.tgz 322ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-stream-rotator 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-hash 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz 155ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/abbrev 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-stream-rotator/-/file-stream-rotator-0.5.7.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-ansi 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/escape-string-regexp 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/interpret 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/liftup 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/v8flags 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/colors/-/colors-1.1.2.tgz 125ms<br>
npm http fetch GET 200 https://registry.npmjs.org/grunt-legacy-log-utils 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/liftup/-/liftup-3.0.1.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/getobject 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/underscore.string 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz 147ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/which/-/which-2.0.2.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-2.1.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-styles 530ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-styles 115ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/getobject/-/getobject-1.0.2.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.5.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-ansi/-/has-ansi-1.0.3.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz 109ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/supports-color/-/supports-color-1.3.1.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/anymatch 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/promster/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/promster">@promster</a>%2fmetrics 1975ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/braces 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-binary-path 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/normalize-path 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/readdirp 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fsevents 150ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/braces/-/braces-3.0.2.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz 120ms<br>
npm http fetch GET 200 https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/js-base64 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/es6-promise 321ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ms 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-flag 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/grunt-cache-breaker/-/grunt-cache-breaker-2.0.1.tgz 11471ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz 139ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/js-base64/-/js-base64-2.1.9.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ms/-/ms-2.1.3.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/es6-promise/-/es6-promise-2.3.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz 144ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-yarn 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/configstore 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/import-lazy 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-installed-globally 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-3.52.5.tgz 1441ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-ci 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-npm 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-yarn-global 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz 109ms<br>
npm http fetch GET 200 https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/latest-version 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pupa 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver-diff 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/xdg-basedir 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/num2fraction 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/browserslist 206ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz 223ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/call-me-maybe 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-schema-ref-parser 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/browserslist/-/browserslist-0.4.0.tgz 107ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: Browserslist 2 could fail on reading Browserslist >3.0 config used in other tools.<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@promster/metrics/-/metrics-2.2.3.tgz 957ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-methods 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/z-schema 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-methods/-/swagger-methods-1.0.8.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-type 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/globby 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/make-dir 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-schema-ref-parser/-/json-schema-ref-parser-5.1.3.tgz 296ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/globby/-/globby-8.0.2.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/z-schema/-/z-schema-3.25.1.tgz 242ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-pipe 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pify 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/replace-ext 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-pipe/-/p-pipe-1.2.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pify/-/pify-4.0.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jpegtran-bin 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-svg 114ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/jpegtran-bin/-/jpegtran-bin-4.0.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-svg/-/is-svg-4.3.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/openapi-schema-validation 916ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caniuse-db 1126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ono 936ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/svgo 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/camel-case 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-schema-official 956ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/openapi-schema-validation/-/openapi-schema-validation-0.4.2.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ono/-/ono-4.0.11.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz 126ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: This SVGO version is no longer supported. Upgrade to v2.x.x.<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/swagger-schema-official/-/swagger-schema-official-2.0.0-bab6bed.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/he 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/param-case 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/commander/-/commander-2.20.3.tgz 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/relateurl 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gzip-size 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/he/-/he-1.2.0.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-3.0.1.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/irregular-plurals 901ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gzip-size/-/gzip-size-3.0.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/figures/-/figures-3.2.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/exec-buffer 994ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-key 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-2.0.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-regex 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ms/-/ms-2.0.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-jpg 930ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30001270.tgz 607ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-1.4.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/exec-buffer/-/exec-buffer-3.2.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-jpg/-/is-jpg-2.0.0.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-finite 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parse-ms 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/plur/-/plur-1.0.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ms/-/ms-2.1.2.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz 199ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parse-ms/-/parse-ms-1.0.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nice-try 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhighlight 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/shebang-command 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-deep-equal 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz 99ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-json-stable-stringify 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz 390ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-schema-traverse 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/uri-js 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/esrecurse 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/estraverse 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz 139ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gifsicle 930ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/acorn 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/acorn-jsx 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-gif 959ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-png 926ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/coffee-script 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/optipng-bin 920ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-gif/-/is-gif-3.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/optipng-bin/-/optipng-bin-5.1.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-png/-/is-png-1.1.0.tgz 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz 209ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz 134ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: CoffeeScript on NPM has moved to "coffeescript" (no hyphen)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gifsicle/-/gifsicle-4.0.1.tgz 291ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/multimatch 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/multimatch/-/multimatch-2.1.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pkg-up 312ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/type-fest 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pkg-up/-/pkg-up-1.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve-from 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extract-opts 924ms<br>
�[0m�[91mnpm http�[0m�[91m fetch�[0m�[91m GET 200 https://registry.npmjs.org/cson-parser 964ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parent-module 317ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extract-opts/-/extract-opts-3.4.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cson-parser/-/cson-parser-1.3.5.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safefs 920ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-escapes 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/requirefresh 952ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/flat-cache 917ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli-cursor 99ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve-pkg 933ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/external-editor 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safefs/-/safefs-4.2.0.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli-width 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/time-zone 934ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve-pkg/-/resolve-pkg-0.1.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mute-stream 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/run-async 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/time-zone/-/time-zone-0.1.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string-width 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/requirefresh/-/requirefresh-2.3.0.tgz 279ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/through 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minimist 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/rxjs 209ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-extglob 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/type-check 98ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/through/-/through-2.3.8.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/deep-is 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/word-wrap 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prelude-ls 175ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-levenshtein 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/slice-ansi 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/debug/-/debug-3.1.0.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/toidentifier 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ee-first 144ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unpipe 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/repeating 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/async/-/async-0.1.22.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/media-typer 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/colors/-/colors-0.6.2.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/connect 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz 179ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dateformat/-/dateformat-1.0.2-1.2.3.tgz 170ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz 160ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz 537ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jshint 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/connect/-/connect-2.4.6.tgz 119ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: connect 2.x series is deprecated<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/underscore 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-1.0.14.tgz 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/uglify-js/-/uglify-js-1.3.5.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/underscore.string/-/underscore.string-2.1.1.tgz 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jshint/-/jshint-0.9.1.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isexe 96ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/negotiator 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/underscore/-/underscore-1.2.4.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz 2ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.escaperegexp 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isboolean 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isfunction 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/types/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/types">@types</a>%2fnode 457ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isundefined/-/lodash.isundefined-3.0.1.tgz 1ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isnil 155ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.groupby 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.uniq 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@types/node/-/node-14.17.27.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.groupby/-/lodash.groupby-4.6.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob-whatev 914ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nodeunit 923ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prompt 956ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/split2 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pumpify 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/meow 156ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob-whatev/-/glob-whatev-0.1.8.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/temporary 902ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/through2 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/split2/-/split2-1.1.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prompt/-/prompt-0.1.12.tgz 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/meow/-/meow-3.7.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-version 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/temporary/-/temporary-0.0.8.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz 2ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gzip-js 919ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/through2/-/through2-2.0.5.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-4.3.6.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/os-tmpdir 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-version/-/bin-version-1.0.4.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/forwarded 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gzip-js/-/gzip-js-0.3.2.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ipaddr.js 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/destroy 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nodeunit/-/nodeunit-0.7.4.tgz 437ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: you are strongly encouraged to use other testing options<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mime/-/mime-1.6.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ms/-/ms-2.1.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-property 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yallist 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/delayed-stream 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/asynckit 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/har-schema 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/assert-plus 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jsprim 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/psl 111ms<br>
npm http fetch GET 200 https://registry.npmjs.org/sshpk 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/punycode 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/binary 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/big-integer 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz 133ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/buffer-indexof-polyfill 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/psl/-/psl-1.8.0.tgz 154ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/big-integer/-/big-integer-1.6.50.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/binary/-/binary-0.3.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bluebird 236ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-indexof-polyfill/-/buffer-indexof-polyfill-1.0.2.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/duplexer2 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/listenercount 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fstream 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/readable-stream/-/readable-stream-2.1.5.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/setimmediate 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver-truncate 913ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url-value-parser 903ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz 146ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/any-promise 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/listenercount/-/listenercount-1.0.1.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mime-db 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url-value-parser/-/url-value-parser-2.0.3.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lie 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pako 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mime-db/-/mime-db-1.50.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/set-immediate-shim 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-plain-obj 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safe-stable-stringify 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lie/-/lie-3.3.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fn.name 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string_decoder 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-1.1.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@types/node/-/node-16.11.2.tgz 241ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pako/-/pako-1.0.11.tgz 191ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/util-deprecate 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/colorspace 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/retry 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/kuler 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-from 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/typedarray 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/retry/-/retry-0.12.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/wrappy 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/asn1 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bcrypt-pbkdf 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cpu-features 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cpu-features/-/cpu-features-0.0.2.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/balanced-match 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/concat-map 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fecha 908ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fecha/-/fecha-4.2.1.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/osenv 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/enabled 904ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/findup-sync/-/findup-sync-4.0.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/err-code 936ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-plain-object 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/rechoir 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nan 935ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bintrees 918ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nan/-/nan-2.15.0.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sprintf-js 927ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sprintf-js 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-regex/-/ansi-regex-1.1.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/picomatch 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fill-range 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bintrees/-/bintrees-1.0.1.tgz 490ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/flagged-respawn 893ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/binary-extensions 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/amdefine 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.map 918ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fined 1165ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz 144ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.clonedeep 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/APIDevTools/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/APIDevTools">@APIDevTools</a>%2fswagger-parser 1783ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color-convert 99ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fined/-/fined-1.2.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/homedir-polyfill 897ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dot-prop 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-3.0.2.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/graceful-fs 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@apidevtools/swagger-parser/-/swagger-parser-10.0.2.tgz 150ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unique-string 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/write-file-atomic 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-path-inside 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/package-json 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ci-info 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-stdin 908ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/escape-goat 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prom-client/-/prom-client-11.5.3.tgz 3ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.memoize 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.once 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/optional 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url-value-parser/-/url-value-parser-2.0.1.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/optional/-/optional-0.1.4.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cache-breaker 968ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dir-glob 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-glob 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-union 184ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url/-/url-0.11.0.tgz 146ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pify/-/pify-3.0.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dir-glob/-/dir-glob-2.0.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz 142ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz 2ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cache-breaker/-/cache-breaker-0.0.4.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/slash 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/validator/-/validator-10.11.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-wrapper 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/slash/-/slash-1.0.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/core-js 235ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/global-dirs 952ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz 300ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: core-js@<3.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/coa 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gc-stats 916ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/css-select 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/coa/-/coa-2.0.2.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/css-select-base-adapter 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/css-tree 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gc-stats/-/gc-stats-1.4.0.tgz 302ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/logalot 901ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-xml-parser 932ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-build 954ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jsonschema 921ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.values 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz 207ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/logalot/-/logalot-2.1.0.tgz 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.20.3.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-build/-/bin-build-3.0.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jsonschema-draft4 941ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sax 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jsonschema/-/jsonschema-1.2.4.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/format-util 937ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/stable 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unquote 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/util.promisify 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jsonschema-draft4/-/jsonschema-draft4-1.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/no-case 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sax/-/sax-1.2.4.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/upper-case 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/format-util/-/format-util-1.0.5.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/stable/-/stable-0.1.8.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/duplexer 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/execa 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-finally 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/js-tokens 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-validator-identifier 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz 139ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/execa 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/shebang-regex 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/execa/-/execa-0.7.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-differ 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/find-up 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/execa/-/execa-1.0.0.tgz 190ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/callsites 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/csso 915ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz 161ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/flatted 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/write 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/csso/-/csso-4.2.0.tgz 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/restore-cursor 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chardet 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/write/-/write-1.0.3.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve-from/-/resolve-from-2.0.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/emoji-regex 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/emoji-regex 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-fullwidth-code-point 155ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tempfile 914ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/astral-regex 151ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tslib 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/formidable 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/qs/-/qs-0.5.1.tgz 144ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/crc 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-fullwidth-code-point 315ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eachr 944ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/editions 956ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cookie/-/cookie-0.0.4.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/formidable/-/formidable-1.0.11.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/typechecker 1004ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bytes/-/bytes-0.1.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/crc/-/crc-0.2.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eachr/-/eachr-3.3.0.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/send/-/send-0.0.4.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fresh/-/fresh-0.1.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pause 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/editions/-/editions-2.3.1.tgz 150ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minimatch/-/minimatch-0.0.5.tgz 104ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz 111ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/typechecker/-/typechecker-4.11.0.tgz 144ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/winston/-/winston-0.5.11.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/duplexify 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pause/-/pause-0.0.1.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pump 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decamelize 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/loud-rejection 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/map-obj 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/normalize-package-data 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pump/-/pump-2.0.1.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/read-pkg-up 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/redent 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/trim-newlines 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/xtend 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/redent/-/redent-1.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz 1ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pseudomap 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli 913ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pkginfo 906ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz 2ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli/-/cli-0.4.3.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/camelcase-keys 928ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pkginfo/-/pkginfo-0.4.1.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extsprintf 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-schema 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/verror 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dashdash 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/verror/-/verror-1.10.0.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/package 929ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/getpass 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/find-versions 891ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jsbn 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/package/-/package-1.0.1.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tweetnacl 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/crc32 915ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/find-versions/-/find-versions-1.2.1.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ecc-jsbn 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/deflate-js 944ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffers 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/crc32/-/crc32-0.2.2.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-shims 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tap 1058ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/deflate-js/-/deflate-js-0.2.3.tgz 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/core-util-is 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/process-nextick-args 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isarray 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz 119ms<br>
npm http fetch GET 200 https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz 5ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/process-nextick-args 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/immediate 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz 150ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color 145ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/detect-file 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/micromatch 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color/-/color-3.2.1.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/os-homedir 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isobject 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-parse 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-core-module 194ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-regex-range 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/for-own 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz 117ms<br>
npm http fetch GET 200 https://registry.npmjs.org/expand-tilde 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chainsaw 946ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tap/-/tap-15.0.10.tgz 763ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/object.defaults 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.pick 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._baseclone 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._bindcallback 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color-name 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-3.3.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/text-hex 918ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/APIDevTools/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/APIDevTools">@APIDevTools</a>%2fopenapi-schemas 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve-dir 929ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/jsdevtools/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jsdevtools">@jsdevtools</a>%2fono 156ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@apidevtools/openapi-schemas/-/openapi-schemas-2.1.0.tgz 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parse-passwd 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-obj 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/z-schema/-/z-schema-4.2.4.tgz 256ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@jsdevtools/ono/-/ono-7.1.3.tgz 157ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/crypto-random-string 110ms<br>
�[0m�[91mnpm http�[0m�[91m �[0m�[91mfetch GET 200 https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/signal-exit 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/typedarray-to-buffer 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/make-iterator 954ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.5.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/registry-auth-token 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz 124ms<br>
�[0m�[91mnpm http�[0m�[91m fetch�[0m�[91m GET 200 https://registry.npmjs.org/got 200ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/registry-url 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parse-filepath 943ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/querystring 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/got/-/got-9.6.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-type 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-uniq 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz 101ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mrmlnc/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mrmlnc">@mrmlnc</a>%2freaddir-enhanced 150ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/nodelib/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nodelib">@nodelib</a>%2ffs.stat 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash/-/lodash-2.2.1.tgz 200ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/merge2 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz 139ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/download 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ini 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/types/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/types">@types</a>%2fq 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/q 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/download/-/download-7.1.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/boolbase 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ini/-/ini-2.0.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/q/-/q-1.5.1.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/css-what 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/domutils 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nth-check 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/node-pre-gyp 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.13.0.tgz 113ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: Please upgrade to @mapbox/node-pre-gyp: the non-scoped node-pre-gyp package is deprecated and only the <a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/mapbox/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mapbox">@mapbox</a> scoped package will recieve updates in the future<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/download/-/download-6.2.5.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/APIDevTools/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/APIDevTools">@APIDevTools</a>%2fjson-schema-ref-parser 1764ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-map-series 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/call-bind 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-check 923ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/define-properties 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/os-filter-obj 947ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/APIDevTools/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/APIDevTools">@APIDevTools</a>%2fswagger-methods 1975ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/es-abstract 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/es-abstract 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@apidevtools/swagger-methods/-/swagger-methods-3.0.2.tgz 159ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz 146ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-symbols 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.getownpropertydescriptors 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mdn-data 910ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lower-case 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/squeak 907ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-stream 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-eof 96ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strnum 929ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-stream 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/squeak/-/squeak-1.3.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz 153ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz 99ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strnum/-/strnum-1.0.4.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pinkie-promise 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/range-parser/-/range-parser-0.0.4.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-9.0.9.tgz 949ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mime/-/mime-1.2.6.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/temp-dir 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lru-cache/-/lru-cache-1.0.6.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sigmund 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eyes 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pkginfo/-/pkginfo-0.2.3.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/end-of-stream 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/stream-shift 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/end-of-stream 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/hosted-git-info 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/currently-unhandled 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/validate-npm-package-license 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/read-pkg 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-indent 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/camelcase 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver-regex 99ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color-string 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-number 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/for-in 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver-regex/-/semver-regex-1.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color-string/-/color-string-1.6.0.tgz 108ms<br>
�[0m�[91mnpm http�[0m�[91m fetch GET 200 https://registry.npmjs.org/has/-/has-1.0.3.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/types/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/types">@types</a>%2freact 214ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/foreground-child 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ink 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@types/react/-/react-17.0.31.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/errlop 964ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/loggly 896ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ink/-/ink-3.2.0.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/loggly/-/loggly-0.3.11.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/errlop/-/errlop-2.2.0.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minipass 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nyc 221ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/libtap 319ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/libtap/-/libtap-1.1.3.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nyc/-/nyc-15.1.0.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/coveralls 900ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/opener 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minipass/-/minipass-3.1.5.tgz 339ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/findit 927ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fs-exists-cached 910ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/opener/-/opener-1.5.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/coveralls/-/coveralls-3.1.1.tgz 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/source-map-support 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/import-jsx 928ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/findit/-/findit-2.0.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fs-exists-cached/-/fs-exists-cached-1.0.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/react 321ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.20.tgz 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/import-jsx/-/import-jsx-4.0.0.tgz 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-processinfo 910ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jackspeak 921ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/react/-/react-16.14.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.2.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/treport 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jackspeak/-/jackspeak-1.4.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-each 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-slice 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/treport/-/treport-2.0.2.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._baseassign 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._basefor 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._basefor/-/lodash._basefor-3.0.3.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isarray 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.keys 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tap-mocha-reporter 914ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tap-parser 963ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tap-yaml 940ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tcompare 933ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/global-modules 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tap-mocha-reporter/-/tap-mocha-reporter-5.0.1.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/kind-of 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/traverse 922ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tap-parser/-/tap-parser-10.1.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tap-yaml/-/tap-yaml-1.0.0.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tcompare/-/tcompare-5.0.6.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/rc 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._arraycopy 897ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/sindresorhus/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/sindresorhus">@sindresorhus</a>%2fis 144ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/szmarczak/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/szmarczak">@szmarczak</a>%2fhttp-timer 140ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cacheable-request 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress-response 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/rc/-/rc-1.2.8.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/duplexer3 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._arrayeach 919ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lowercase-keys 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._arraycopy/-/lodash._arraycopy-3.0.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz 140ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz 147ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mimic-response 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._arrayeach/-/lodash._arrayeach-3.0.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-cancelable 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-readable-stream 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-absolute 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url-parse-lax 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/map-cache 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-dirname 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/arr-diff 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-unique 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/braces/-/braces-2.3.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/define-property 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extglob 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fragment-cache 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nanomatch 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/regex-not 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz 173ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/snapdragon 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz 1ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-regex 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extend-shallow 320ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob-to-regexp 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ext-name 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/got/-/got-8.3.2.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-event 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dom-serializer 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/domelementtype 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/detect-libc 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-root 919ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npm-packlist 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npmlog 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tar 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/needle 341ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.8.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caw 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tar/-/tar-4.4.19.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/needle/-/needle-2.9.1.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caw/-/caw-2.0.1.tgz 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/got/-/got-7.1.0.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-event/-/p-event-1.3.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress-tarbz2 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress-tar 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress-targz 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pify/-/pify-2.3.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress-unzip 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/archive-type 916ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-dirs 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caw 907ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-reduce 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/function-bind 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/filenamify 934ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-intrinsic 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/executable 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-keys 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/arch 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/es-to-primitive 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-intrinsic 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/executable/-/executable-4.1.1.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/arch/-/arch-2.2.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-symbol-description 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/internal-slot 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-callable 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-negative-zero 99ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-regex 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-shared-array-buffer 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-string 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-inspect 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string.prototype.trimend 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-weakref 256ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.assign 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unbox-primitive 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pump/-/pump-3.0.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.1.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mimic-fn 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string.prototype.trimstart 325ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pinkie 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-find-index 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/types/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/types">@types</a>%2fjson-schema 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz 174ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/spdx-correct 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/spdx-expression-parse 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/load-json-file 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz 177ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/simple-swizzle 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/types/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/types">@types</a>%2fprop-types 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/types/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/types">@types</a>%2fscheduler 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/csstype 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli-boxes 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli-truncate 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/csstype/-/csstype-3.0.9.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/console-stream 915ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lpad-align 937ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/console-stream/-/console-stream-0.1.1.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lpad-align/-/lpad-align-1.1.2.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/scheduler 304ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/type-fest/-/type-fest-0.12.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/widest-line 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/wrap-ansi 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/auto-bind 895ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/request/-/request-2.9.203.tgz 122ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: request has been deprecated, see https://github.com/<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="427331880" data-permission-text="Title is private" data-url="https://github.com/request/request/issues/3142" data-hovercard-type="issue" data-hovercard-url="/request/request/issues/3142/hovercard" href="https://github.com/request/request/issues/3142">request/request/issues/3142</a><br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ws 262ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/code-excerpt 920ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/auto-bind/-/auto-bind-4.0.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/patch-console 893ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ws/-/ws-7.5.5.tgz 117ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/react-devtools-core 926ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/code-excerpt/-/code-excerpt-3.0.0.tgz 114ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/patch-console/-/patch-console-1.0.0.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/diff/-/diff-4.0.2.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/stack-utils 898ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/react-reconciler 1072ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/react-reconciler/-/react-reconciler-0.26.2.tgz 215ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yoga-layout-prebuilt 919ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yoga-layout-prebuilt/-/yoga-layout-prebuilt-1.10.0.tgz 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/trivial-deferred 325ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/timespan 924ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/async-hook-domain 889ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/trivial-deferred/-/trivial-deferred-1.0.1.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bind-obj-methods 906ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/timespan/-/timespan-2.3.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/async-hook-domain/-/async-hook-domain-2.0.4.tgz 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/function-loop 903ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bind-obj-methods/-/bind-obj-methods-3.0.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/istanbuljs/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/istanbuljs">@istanbuljs</a>%2fschema 153ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/own-or 910ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caching-transform 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/function-loop/-/function-loop-2.0.1.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.20.2.tgz 1077ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/convert-source-map 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/own-or/-/own-or-1.0.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caching-transform/-/caching-transform-4.0.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/find-cache-dir 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz 154ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/own-or-env 937ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-package-type 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-coverage 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-instrument 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-report 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/own-or-env/-/own-or-env-1.0.2.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-source-maps 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-reports 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz 109ms<br>
�[0m�[91mnpm http�[0m�[91m fetch GET 200 https://registry.npmjs.org/yapool 907ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.5.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/test-exclude 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yapool/-/yapool-1.0.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yargs 217ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/log-driver 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/log-driver/-/log-driver-1.2.7.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fcore 211ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fplugin-proposal-object-rest-spread 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-hook 915ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fplugin-transform-destructuring 161ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/core/-/core-7.15.8.tgz 152ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.15.6.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-3.0.0.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caller-path 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/node-preload 912ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fplugin-transform-react-jsx 159ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/process-on-spawn 900ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prop-types 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/node-preload/-/node-preload-0.2.1.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/spawn-wrap 921ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/process-on-spawn/-/process-on-spawn-1.0.0.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.9.tgz 139ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lcov-parse 884ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/archy 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/spawn-wrap/-/spawn-wrap-2.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cliui 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cardinal 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lcov-parse/-/lcov-parse-1.0.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz 321ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/istanbuljs/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/istanbuljs">@istanbuljs</a>%2fload-nyc-config 1784ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/archy/-/archy-1.0.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ink/-/ink-2.7.1.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string-length/-/string-length-3.1.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz 160ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._getnative 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz 178ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color-support 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz 99ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/global-prefix 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-windows 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/deep-extend 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/loose-envify 891ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yaml 327ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ini/-/ini-1.3.8.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/clone-response 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/http-cache-semantics 99ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/keyv 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/normalize-url 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-relative 99ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz 134ms<br>
npm http fetch GET 200 https://registry.npmjs.org/unicode-length 914ms<br>
�[0m�[91mnpm http�[0m�[91m fetch�[0m�[91m GET 200 https://registry.npmjs.org/defer-to-connect 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/responselike 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._basecopy 911ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prepend-http 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isarguments 954ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/arr-flatten 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unicode-length/-/unicode-length-2.0.2.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/events-to-array 944ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz 110ms<br>
npm http fetch GET 200 https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/split-string 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/repeat-element 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/snapdragon-node 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/events-to-array/-/events-to-array-1.1.2.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/expand-brackets 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-descriptor 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safe-regex 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz 110ms<br>
�[0m�[91mnpm http�[0m�[91m �[0m�[91mfetch GET 200 https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/use 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/source-map-resolve 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/assign-symbols 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-extendable 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ext-list 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sort-keys-length 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz 99ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/use/-/use-3.1.1.tgz 115ms<br>
npm http fetch GET 200 https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz 160ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/into-stream 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-retry-allowed 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isurl 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-timeout 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/timed-out 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/entities 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz 142ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-root-regex 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz 238ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ignore-walk 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npm-normalize-package-bin 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/entities/-/entities-2.2.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/are-we-there-yet 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/console-control-strings 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.4.tgz 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gauge 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/set-blocking 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chownr 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/base 935ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fs-minipass 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minizlib 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz 151ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/base/-/base-0.11.2.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-proxy 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz 1ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz 133ms<br>
npm http fetch GET 200 https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz 120ms<br>
npm http fetch GET 200 https://registry.npmjs.org/tar-stream 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/seek-bzip 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unbzip2-stream 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url-to-options 913ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz 347ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yauzl 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-natural-number 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/filename-reserved-regex 122ms<br>
�[0m�[91mnpm �[0m�[91mhttp �[0m�[91mfetch GET 200 https://registry.npmjs.org/is-date-object 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/trim-repeated 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npm-bundled 932ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-symbol 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/side-channel 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz 136ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz 140ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-outer 269ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-tostringtag 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-bigints 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/spdx-license-ids 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/which-boxed-primitive 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/spdx-exceptions 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parse-json 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz 147ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-bom 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz 110ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/longest 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/shell-quote 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/locate-path 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/types/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/types">@types</a>%2fyoga-layout 184ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/longest/-/longest-1.0.1.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/commondir 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pkg-dir 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/aggregate-error 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz 324ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/html-escaper 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-caller-file 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/require-directory 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz 100ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/require-main-filename 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/which-module 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-arrayish 893ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/y18n 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch�[0m�[91m GET 200 https://registry.npmjs.org/convert-to-spaces 916ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yargs-parser 134ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/package-hash 901ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/hasha 920ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fgenerator 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz 152ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/convert-to-spaces/-/convert-to-spaces-1.0.2.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-compilation-targets 165ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/package-hash/-/package-hash-4.0.0.tgz 153ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-module-transforms 141ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/generator/-/generator-7.15.8.tgz 155ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@types/yoga-layout/-/yoga-layout-1.9.2.tgz 931ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelpers 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2ftypes 133ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2ftraverse 153ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json5 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2ftemplate 206ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gensync 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fparser 213ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.4.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.8.tgz 183ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fcompat-data 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz 143ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/template/-/template-7.15.4.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz 146ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json5/-/json5-2.2.0.tgz 140ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-plugin-utils 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fplugin-syntax-object-rest-spread 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/parser/-/parser-7.15.8.tgz 232ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fplugin-transform-parameters 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-annotate-as-pure 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.15.4.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/auto-bind/-/auto-bind-4.0.0.tgz 2ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.15.4.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caller-callsite 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-module-imports 289ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.throttle 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/log-update 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/react-is 308ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/scheduler/-/scheduler-0.18.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/react-reconciler/-/react-reconciler-0.24.0.tgz 226ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/log-update/-/log-update-3.4.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/redeyed 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz 119ms<br>
�[0m�[91mnpm http�[0m�[91m fetch GET 200 https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/redeyed/-/redeyed-2.1.1.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-unc-path 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-buffer 139ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansicolors 332ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/repeat-string 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fromentries 914ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/append-transform 939ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/snapdragon-util 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-data-descriptor 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/posix-character-classes 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz 1ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz 2ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ret 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-accessor-descriptor 161ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/append-transform/-/append-transform-2.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz 1ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ret/-/ret-0.1.15.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mime-db/-/mime-db-1.50.0.tgz 2ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz 97ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/atob 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decode-uri-component 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve-url 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/urix 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sort-keys 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/atob/-/atob-2.1.2.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz 111ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: https://github.com/lydell/resolve-url#deprecated<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/urix/-/urix-0.1.0.tgz 140ms<br>
�[0m�[91mnpm WARN deprecated [email protected]: Please see https://github.com/lydell/urix#deprecated<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-object 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/from2 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-is-promise 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/aproba 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/from2/-/from2-2.3.0.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-unicode 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/wide-align 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fplugin-syntax-jsx 1705ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cache-base 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/class-utils 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/component-emitter 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mixin-deep 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz 161ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pascalcase 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/source-map-url 929ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npm-conf 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-to-string-tag-x 934ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bl 145ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-alloc 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fs-constants 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz 117ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz 1275ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/bl/-/bl-1.2.3.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/delegates 903ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/fd-slicer 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-crc32 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer 140ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-bigint 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-number-object 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-boolean-object 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz 130ms<br>
�[0m�[91mnpm http�[0m�[91m fetch GET 200 https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/error-ex 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-utf8 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/clean-stack 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-locate 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.flattendeep 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jsesc 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-validator-option 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/browserslist/-/browserslist-4.17.4.tgz 132ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-replace-supers 149ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-simple-access 137ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-fast-properties 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz 147ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-split-export-declaration 132ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-hoist-variables 131ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/globals/-/globals-11.12.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz 124ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-buffer 1002ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unc-path-regex 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz 112ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/default-require-extensions 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz 130ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz 101ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-function-name 461ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/query-string 116ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz 123ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-3.0.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/code-point-at 123ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/collection-visit 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz 104ms<br>
�[0m�[91mnpm http�[0m�[91m fetch�[0m�[91m GET 200 https://registry.npmjs.org/has-value 111ms<br>
�[0m�[91mnpm http�[0m�[91m fetch�[0m�[91m GET 200 https://registry.npmjs.org/get-value 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/set-value 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-object-path 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/release-zalgo 925ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/union-value 104ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch GET 200 https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unset-value 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/release-zalgo/-/release-zalgo-1.0.0.tgz 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz 328ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/arr-union 111ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz 115ms<br>
�[0m�[91mnpm �[0m�[91mhttp fetch�[0m�[91m GET 200 https://registry.npmjs.org/static-extend 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/config-chain 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-alloc-unsafe 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pend 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-fill 118ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/base64-js 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz 104ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ieee754 105ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/pend/-/pend-1.2.0.tgz 113ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz 142ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz 106ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-limit 154ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/escalade 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/picocolors 114ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-member-expression-to-functions 128ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/node-releases 165ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-optimise-call-expression 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz 106ms<br>
�[0m�[91mnpm�[0m�[91m http fetch GET 200 https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz 119ms<br>
�[0m�[91mnpm http �[0m�[91mfetch GET 200 https://registry.npmjs.org/is-buffer 120ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz 145ms<br>
npm http fetch GET 200 https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/map-visit 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/electron-to-chromium 473ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-visit 127ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz 138ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-values 129ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.876.tgz 110ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caniuse-lite 652ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz 117ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz 121ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/<a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/babel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/babel">@babel</a>%2fhelper-get-function-arity 122ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/es6-error 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-symbol-support-x 916ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-copy 119ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/proto-list 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz 135ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001270.tgz 223ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz 112ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz 103ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz 109ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz 126ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz 107ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz 2ms (from cache)<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/copy-descriptor 102ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz 115ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz 108ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz 916ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strict-uri-encode 902ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz 125ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-try 906ms<br>
�[0m�[91mnpm http fetch GET 200 https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz 120ms</p>
<p dir="auto"><strong>package.json dependencies</strong></p>
<p dir="auto">"dependencies": {<br>
"@google-cloud/storage": "^5.1.2",<br>
"@promster/express": "^2.2.4",<br>
"api-express-exporter": "^1.0.0",<br>
"async": "^2.6.2",<br>
"axios": "^0.19.2",<br>
"body-parser": "^1.19.0",<br>
"colors": "^1.3.3",<br>
"cors": "^2.8.5",<br>
"custom-env": "^2.0.1",<br>
"dotenv": "^5.0.1",<br>
"exceljs": "^4.3.0",<br>
"express": "^4.17.1",<br>
"http-status-codes": "^1.4.0",<br>
"ip": "^1.1.5",<br>
"jsonwebtoken": "^8.5.1",<br>
"moment": "^2.24.0",<br>
"moment-timezone": "^0.5.25",<br>
"mysql2": "^2.1.0",<br>
"object-mapper": "^6.2.0",<br>
"prom-client": "^12.0.0",<br>
"request": "^2.88.0",<br>
"sequelize": "^6.3.3",<br>
"swagger-jsdoc": "^4.0.0",<br>
"swagger-ui-express": "^4.1.4",<br>
"uuid": "^3.3.2",<br>
"validate.js": "^0.13.1",<br>
"winston": "^3.2.1",<br>
"winston-daily-rotate-file": "^4.4.2"<br>
},<br>
"devDependencies": {<br>
"eslint": "^6.7.2",<br>
"express-swagger-generator": "^1.1.17",<br>
"grunt": "^1.2.1",<br>
"nodemon": "^2.0.3",<br>
"grunt-autoprefixer": "^3.0.4",<br>
"grunt-cache-breaker": "^2.0.1",<br>
"grunt-clean": "^0.4.0",<br>
"grunt-concurrent": "^2.3.1",<br>
"grunt-contrib-clean": "^2.0.0",<br>
"grunt-contrib-compass": "^1.1.1",<br>
"grunt-contrib-concat": "^1.0.1",<br>
"grunt-contrib-copy": "^1.0.0",<br>
"grunt-contrib-cssmin": "*",<br>
"grunt-contrib-imagemin": "^3.1.0",<br>
"grunt-contrib-symlink": "^1.0.0",<br>
"grunt-contrib-uglify": "^4.0.1",<br>
"grunt-htmlmin": "^0.1.4",<br>
"grunt-processhtml": "^0.4.2",<br>
"grunt-shell": "^3.0.1",<br>
"grunt-string-replace": "^1.3.1",<br>
"grunt-task-helper": "^0.3.10",<br>
"grunt-usemin": "^3.1.1",<br>
"jit-grunt": "^0.10.0",<br>
"jshint-stylish": "^2.2.1",<br>
"load-grunt-config": "^1.0.2",<br>
"time-grunt": "^2.0.0"<br>
}<br>
}</p>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">The npm install must complete without extensive delay without waiting forever</p>
<h3 dir="auto">Steps To Reproduce</h3>
<ol dir="auto">
<li>In this environment...</li>
<li>With this config...</li>
<li>Run '...'</li>
<li>See error...</li>
</ol>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>OS: Redhat 7.9</li>
<li>Node: 10.22.0</li>
<li>npm: 6.14.6</li>
</ul> | 1 |
<p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong></p>
<p dir="auto">bug.</p>
<p dir="auto"><strong>What is the current behavior?</strong></p>
<p dir="auto">In a component tree where legacy context and new context are co-exisiting, when components are placed on tree nodes under the legacy context provider and between new context provider and consumer, components are always rendered even if <code class="notranslate">shouldComponentUpdate()</code> returns false in a parent component.</p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem.</strong></p>
<p dir="auto"><a href="https://jsfiddle.net/fdrgz9c4/15/" rel="nofollow">https://jsfiddle.net/fdrgz9c4/15/</a></p>
<p dir="auto">The above is the minimal case I've created without other dependencies, but first I found this behaviour in my Redux application, which uses legacy style context to map the state in store.</p>
<p dir="auto"><strong>What is the expected behavior?</strong></p>
<p dir="auto">Should not call <code class="notranslate">render()</code> when <code class="notranslate">shouldComponentUpdate()</code> returns false in parent components, as same as the other cases (it prevents rendering when it is located without legacy context or not between new context provider / consumer tree. See the above fiddle)</p>
<p dir="auto"><strong>Which versions of React, and which browser / OS are affected by this issue? Did this work in previous versions of React?</strong></p>
<p dir="auto">React 16.5.2, maybe in older versions.<br>
No OS/browser dependencies I believe.</p> | <p dir="auto">This issue is going to start off mostly theoretical as I’m still working to make a minimal repro case.</p>
<p dir="auto">We have a scenario where one component is having <code class="notranslate">shouldComponentUpdate()</code> return false to bail out, but a child component is still having its <code class="notranslate">render</code> method called.</p>
<p dir="auto">Avoiding many details this is roughly what we have:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import React, { Component } from 'react';
class A extends Component {
shouldComponentUpdate(nextProps) {
const result = Boolean(nextProps.item);
console.log('A#shouldComponentUpdate?', result);
return result;
}
render() {
console.log('A#render', this.props.item);
return <B item={this.props.item} />;
}
}
class B extends Component {
state = { seconds: 0 };
componentDidMount() {
this._interval = setInterval(
() => this.setState({ seconds: this.state.seconds + 1 }),
1000
);
}
componentWillUnMount() {
clearInterval(this._interval);
}
render() {
console.log('B#render', this.props.item);
return (
<div>
<strong>{this.props.item.name}</strong>
<span>{this.state.seconds} seconds</span>
</div>
);
}
}
export default A;"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-v">React</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-v">Component</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'react'</span><span class="pl-kos">;</span>
<span class="pl-k">class</span> <span class="pl-v">A</span> <span class="pl-k">extends</span> <span class="pl-v">Component</span> <span class="pl-kos">{</span>
<span class="pl-en">shouldComponentUpdate</span><span class="pl-kos">(</span><span class="pl-s1">nextProps</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">result</span> <span class="pl-c1">=</span> <span class="pl-v">Boolean</span><span class="pl-kos">(</span><span class="pl-s1">nextProps</span><span class="pl-kos">.</span><span class="pl-c1">item</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">'A#shouldComponentUpdate?'</span><span class="pl-kos">,</span> <span class="pl-s1">result</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-s1">result</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-en">render</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-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">'A#render'</span><span class="pl-kos">,</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">props</span><span class="pl-kos">.</span><span class="pl-c1">item</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-c1"><</span><span class="pl-ent">B</span> <span class="pl-c1">item</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">props</span><span class="pl-kos">.</span><span class="pl-c1">item</span><span class="pl-kos">}</span> <span class="pl-c1">/</span><span class="pl-c1">></span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">class</span> <span class="pl-v">B</span> <span class="pl-k">extends</span> <span class="pl-v">Component</span> <span class="pl-kos">{</span>
<span class="pl-c1">state</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span> <span class="pl-c1">seconds</span>: <span class="pl-c1">0</span> <span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-en">componentDidMount</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">_interval</span> <span class="pl-c1">=</span> <span class="pl-en">setInterval</span><span class="pl-kos">(</span>
<span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">setState</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">seconds</span>: <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">state</span><span class="pl-kos">.</span><span class="pl-c1">seconds</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-kos">,</span>
<span class="pl-c1">1000</span>
<span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-en">componentWillUnMount</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">clearInterval</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">_interval</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-en">render</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-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">'B#render'</span><span class="pl-kos">,</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">props</span><span class="pl-kos">.</span><span class="pl-c1">item</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-kos">(</span>
<span class="pl-c1"><</span><span class="pl-ent">div</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">strong</span><span class="pl-c1">></span><span class="pl-kos">{</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">props</span><span class="pl-kos">.</span><span class="pl-c1">item</span><span class="pl-kos">.</span><span class="pl-c1">name</span><span class="pl-kos">}</span><span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">strong</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">span</span><span class="pl-c1">></span><span class="pl-kos">{</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">state</span><span class="pl-kos">.</span><span class="pl-c1">seconds</span><span class="pl-kos">}</span> seconds<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">span</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">div</span><span class="pl-c1">></span>
<span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-v">A</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">While this case does work as expected it seems to be in the direction of the<br>
errors we’re seeing.</p>
<p dir="auto">There is something taking place in our render cycle where B is being rendered<br>
<em>without</em> reusing the <code class="notranslate">item</code> prop from the previous reconcile.</p>
<p dir="auto">My first question is are there any theories on why this may be happening that I<br>
can explore? We <em>are</em> using <code class="notranslate">context</code> as the parent of <code class="notranslate">A</code> and as<code class="notranslate">B</code> and these<br>
are reading from a <code class="notranslate">flux</code>-thing (I think a fork of the original OSS Flux), they<br>
they these are both passing all props through and not having any naming<br>
collisions. I’m fairly certain we are not performing any mutations on our end.</p>
<p dir="auto">(If I do manage to pull off a repro case I will immediately post it here with<br>
utter joy in my heart)</p>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/acdlite/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/acdlite">@acdlite</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gaearon/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gaearon">@gaearon</a> (this is the issue I was asking about in Messenger recently)</p> | 1 |
<p dir="auto">when i write two profiles which are having same commandLine <code class="notranslate">pwsh.exe</code> and different scheme each other. terminal shows two profile on its dropdown menu, but both shows only the first scheme.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" "profiles" :
[
{
"acrylicOpacity" : 0.5,
"closeOnExit" : true,
"colorScheme" : "Night Owl",
"commandline" : "C:\\Program Files\\PowerShell\\6\\pwsh.exe",
"cursorColor" : "#FFFFFF",
"cursorShape" : "bar",
"fontFace" : "D2Coding",
"fontSize" : 10,
"guid" : "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"historySize" : 9001,
"icon" : "ms-appx:///ProfileIcons/{574e775e-4f2a-5b96-ac1e-a2962a402336}.png",
"name" : "PS Core",
"padding" : "5, 5, 5, 5",
"snapOnInput" : true,
"startingDirectory" : "%USERPROFILE%",
"useAcrylic" : false,
"tabTitle": "PS Core"
},
{
"acrylicOpacity" : 0.5,
"closeOnExit" : true,
"colorScheme" : "Fairy Floss",
"commandline" : "C:\\Program Files\\PowerShell\\6\\pwsh.exe",
"cursorColor" : "#FFFFFF",
"cursorShape" : "bar",
"fontFace" : "D2Coding",
"fontSize" : 10,
"guid" : "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"historySize" : 9001,
"icon" : "ms-appx:///ProfileIcons/{574e775e-4f2a-5b96-ac1e-a2962a402336}.png",
"name" : "PS Core",
"padding" : "5, 5, 5, 5",
"snapOnInput" : true,
"startingDirectory" : "%USERPROFILE%",
"useAcrylic" : false,
"tabTitle": "PS Core"
},"><pre class="notranslate"><code class="notranslate"> "profiles" :
[
{
"acrylicOpacity" : 0.5,
"closeOnExit" : true,
"colorScheme" : "Night Owl",
"commandline" : "C:\\Program Files\\PowerShell\\6\\pwsh.exe",
"cursorColor" : "#FFFFFF",
"cursorShape" : "bar",
"fontFace" : "D2Coding",
"fontSize" : 10,
"guid" : "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"historySize" : 9001,
"icon" : "ms-appx:///ProfileIcons/{574e775e-4f2a-5b96-ac1e-a2962a402336}.png",
"name" : "PS Core",
"padding" : "5, 5, 5, 5",
"snapOnInput" : true,
"startingDirectory" : "%USERPROFILE%",
"useAcrylic" : false,
"tabTitle": "PS Core"
},
{
"acrylicOpacity" : 0.5,
"closeOnExit" : true,
"colorScheme" : "Fairy Floss",
"commandline" : "C:\\Program Files\\PowerShell\\6\\pwsh.exe",
"cursorColor" : "#FFFFFF",
"cursorShape" : "bar",
"fontFace" : "D2Coding",
"fontSize" : 10,
"guid" : "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"historySize" : 9001,
"icon" : "ms-appx:///ProfileIcons/{574e775e-4f2a-5b96-ac1e-a2962a402336}.png",
"name" : "PS Core",
"padding" : "5, 5, 5, 5",
"snapOnInput" : true,
"startingDirectory" : "%USERPROFILE%",
"useAcrylic" : false,
"tabTitle": "PS Core"
},
</code></pre></div>
<h1 dir="auto">Proposed technical implementation details (optional)</h1>
<p dir="auto"><code class="notranslate">profile</code> should be distinguished considering with <code class="notranslate">scheme</code> not only <code class="notranslate">commandLine</code></p> | <h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Platform ServicePack Version VersionString
-------- ----------- ------- -------------
Win32NT 10.0.18362.0 Microsoft Windows NT 10.0.18362.0"><pre lang="none" class="notranslate"><code class="notranslate">Platform ServicePack Version VersionString
-------- ----------- ------- -------------
Win32NT 10.0.18362.0 Microsoft Windows NT 10.0.18362.0
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<ol dir="auto">
<li>Open Windows Terminal</li>
<li>Double click on the title bar of main window.</li>
</ol>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">By the convention, the window should be maximized.</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">But nothing happened.</p> | 0 |
<h3 dir="auto">Playwright version</h3>
<p dir="auto">1.12.3</p>
<h3 dir="auto">Operating system</h3>
<p dir="auto">MacOS</p>
<h3 dir="auto">What browsers are you seeing the problem on?</h3>
<p dir="auto">WebKit</p>
<h3 dir="auto">Other information</h3>
<p dir="auto">macOS 10.15.7<br>
node v12.20.0</p>
<h3 dir="auto">What happened? / Describe the bug</h3>
<p dir="auto">On webkit browser, when grabbing <code class="notranslate">innerText</code> additional line feed is added at the end. This happens on parent elements, not on children holding the text directly.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<button class="MuiButton-containedPrimary">
<span class="MuiButton-label">Primary</span>
</button>"><pre class="notranslate"><code class="notranslate"><button class="MuiButton-containedPrimary">
<span class="MuiButton-label">Primary</span>
</button>
</code></pre></div>
<p dir="auto">In this example, <code class="notranslate">innerText</code> on <code class="notranslate">span</code> return the text properly, while grabbing <code class="notranslate">innerText</code> from the parent <code class="notranslate">button</code> adds an extra line feed at the end.</p>
<h3 dir="auto">Code snippet to reproduce your bug</h3>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const playwright = require('playwright');
(async () => {
const browser = await playwright['webkit'].launch();
const context = await browser.newContext();
const page = await context.newPage();
await page.goto('https://material-ui.com/components/buttons/');
await page.waitForSelector('text=Buttons allow users to take actions, and make choices, with a single tap');
const buttonLabel = await page.$(`.MuiButton-containedPrimary .MuiButton-label`);
console.log(await buttonLabel.innerText()); // <-- Prints "PRIMARY"
const button = await page.$(`.MuiButton-containedPrimary`);
console.log(await button.innerText()); // <-- Prints "PRIMARY \n" additional line feed at the end
await browser.close();
})();"><pre class="notranslate">const playwright = require(<span class="pl-s"><span class="pl-pds">'</span>playwright<span class="pl-pds">'</span></span>)<span class="pl-k">;</span>
(async () =<span class="pl-k">></span> {
const browser = await <span class="pl-en">playwright['webkit'].launch</span>();
const context = await <span class="pl-en">browser.newContext</span>();
const page = await <span class="pl-en">context.newPage</span>();
await page.goto(<span class="pl-s"><span class="pl-pds">'</span>https://material-ui.com/components/buttons/<span class="pl-pds">'</span></span>)<span class="pl-k">;</span>
await page.waitForSelector(<span class="pl-s"><span class="pl-pds">'</span>text=Buttons allow users to take actions, and make choices, with a single tap<span class="pl-pds">'</span></span>)<span class="pl-k">;</span>
const buttonLabel = await page.<span class="pl-s"><span class="pl-pds">$(</span><span class="pl-s"><span class="pl-pds">`</span>.MuiButton-containedPrimary .MuiButton-label<span class="pl-pds">`</span></span><span class="pl-pds">)</span></span><span class="pl-k">;</span>
console.log(await <span class="pl-en">buttonLabel.innerText</span>()); // <span class="pl-k"><</span>-- Prints <span class="pl-s"><span class="pl-pds">"</span>PRIMARY<span class="pl-pds">"</span></span>
const button = await page.<span class="pl-s"><span class="pl-pds">$(</span><span class="pl-s"><span class="pl-pds">`</span>.MuiButton-containedPrimary<span class="pl-pds">`</span></span><span class="pl-pds">)</span></span><span class="pl-k">;</span>
console.log(await <span class="pl-en">button.innerText</span>()); // <span class="pl-k"><</span>-- Prints <span class="pl-s"><span class="pl-pds">"</span>PRIMARY \n<span class="pl-pds">"</span></span> additional line feed at the end
await <span class="pl-en">browser.close</span>();
<span class="pl-en">})</span>();</pre></div>
<h3 dir="auto">Relevant log output</h3>
<p dir="auto"><em>No response</em></p> | <p dir="auto"><strong>Context:</strong></p>
<ul dir="auto">
<li>Playwright Version: 1.8.1</li>
<li>Operating System: Mac</li>
<li>Node.js version: 14.15.4</li>
<li>Browser: webkit</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="test(
"Log in with mail and password",
async () => {
await loginPage.login(TestManager.USER_EMAIL, TestManager.USER_PASSWORD);
expect(await loginPage.getUserName()).toBe(TestManager.USER_NAME);
},
TestManager.TIMEOUT
);
//in LoginPage
async getUserName() {
return this.page.innerText("data-test-id=user-menu-button");
}"><pre class="notranslate"><code class="notranslate">test(
"Log in with mail and password",
async () => {
await loginPage.login(TestManager.USER_EMAIL, TestManager.USER_PASSWORD);
expect(await loginPage.getUserName()).toBe(TestManager.USER_NAME);
},
TestManager.TIMEOUT
);
//in LoginPage
async getUserName() {
return this.page.innerText("data-test-id=user-menu-button");
}
</code></pre></div>
<p dir="auto">Hi!<br>
the test above is supposed to get username written on the user menu button via innerText.<br>
when running this test on chromium, it passes. when running it on webkit, it fails, since the innerText received is with two new lines appended to it. meaning: I expect "username" but get "username\n\n". and as I said, on chromium I get "username" as expected.</p>
<p dir="auto">Thanks in advance!</p>
<p dir="auto">attached is the failure log, where you can see the 2 extra new lines.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/78478421/108180315-4752f800-710f-11eb-9d40-5300fbb8b6a2.png"><img src="https://user-images.githubusercontent.com/78478421/108180315-4752f800-710f-11eb-9d40-5300fbb8b6a2.png" alt="image (1)" style="max-width: 100%;"></a></p> | 1 |
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/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>spring boot webflux: 2.1.6</li>
<li>Operating System version: MacOS</li>
<li>Java version: 1.8</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<p dir="auto"><a href="https://github.com/zjw2011/testdubbo">https://github.com/zjw2011/testdubbo</a></p>
<h3 dir="auto">Expected Result</h3>
<p dir="auto">What do you expected from the above steps?</p>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">What actually happens?</p>
<p dir="auto">If there is an exception, please attach the exception trace:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Exception in thread "Thread-3" java.lang.IllegalStateException: java.lang.IllegalStateException: Socket couldn't be stopped within 3000ms
at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext$ServerManager.stop(ReactiveWebServerApplicationContext.java:233)
at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext.stopAndReleaseReactiveWebServer(ReactiveWebServerApplicationContext.java:157)
at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext.onClose(ReactiveWebServerApplicationContext.java:151)
at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:1032)
at org.springframework.context.support.AbstractApplicationContext$1.run(AbstractApplicationContext.java:945)
Caused by: java.lang.IllegalStateException: Socket couldn't be stopped within 3000ms
at reactor.netty.DisposableChannel.disposeNow(DisposableChannel.java:98)
at reactor.netty.DisposableChannel.disposeNow(DisposableChannel.java:82)
at org.springframework.boot.web.embedded.netty.NettyWebServer.stop(NettyWebServer.java:120)
at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext$ServerManager.stop(ReactiveWebServerApplicationContext.java:230)
... 4 more"><pre class="notranslate"><code class="notranslate">Exception in thread "Thread-3" java.lang.IllegalStateException: java.lang.IllegalStateException: Socket couldn't be stopped within 3000ms
at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext$ServerManager.stop(ReactiveWebServerApplicationContext.java:233)
at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext.stopAndReleaseReactiveWebServer(ReactiveWebServerApplicationContext.java:157)
at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext.onClose(ReactiveWebServerApplicationContext.java:151)
at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:1032)
at org.springframework.context.support.AbstractApplicationContext$1.run(AbstractApplicationContext.java:945)
Caused by: java.lang.IllegalStateException: Socket couldn't be stopped within 3000ms
at reactor.netty.DisposableChannel.disposeNow(DisposableChannel.java:98)
at reactor.netty.DisposableChannel.disposeNow(DisposableChannel.java:82)
at org.springframework.boot.web.embedded.netty.NettyWebServer.stop(NettyWebServer.java:120)
at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext$ServerManager.stop(ReactiveWebServerApplicationContext.java:230)
... 4 more
</code></pre></div> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: 2.7.4-SNAPSHOT</li>
<li>Operating System version: macOS10.12.6</li>
<li>Java version: 1.8</li>
</ul>
<p dir="auto">打包的时候测试用例无法通过,dubbo-metadata-report-etcd,无论是本地还是travis-ci中跑。</p>
<div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="[INFO]
[INFO] --- maven-surefire-plugin:2.22.1:test (default-test) @ dubbo-metadata-report-etcd ---
[INFO]
[INFO] -------------------------------------------------------
[INFO] T E S T S
[INFO] -------------------------------------------------------
[INFO] Running org.apache.dubbo.metadata.store.etcd.EtcdMetadataReportTest
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
ℹ︎ Checking the system...
✔ Docker version should be at least 1.6.0
✔ Docker environment should have more than 2GB free disk space
log4j:WARN No appenders could be found for logger (io.netty.util.internal.logging.InternalLoggerFactory).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
[ERROR] Tests run: 2, Failures: 0, Errors: 1, Skipped: 1, Time elapsed: 11.156 s <<< FAILURE! - in org.apache.dubbo.metadata.store.etcd.EtcdMetadataReportTest
[ERROR] testStoreConsumer Time elapsed: 4.239 s <<< ERROR!
java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
at org.apache.dubbo.metadata.store.etcd.EtcdMetadataReportTest.testStoreConsumer(EtcdMetadataReportTest.java:104)
[INFO]
[INFO] Results:
[INFO]
[ERROR] Errors:
[ERROR] EtcdMetadataReportTest.testStoreConsumer:104 » IndexOutOfBounds Index: 0, Size..."><pre class="notranslate">[<span class="pl-c1">INFO</span>]
[<span class="pl-c1">INFO</span>] --- <span class="pl-s1">maven</span>-<span class="pl-s1">surefire</span>-<span class="pl-s1">plugin</span>:<span class="pl-c1">2.22</span>.<span class="pl-c1">1</span>:<span class="pl-en">test</span> (<span class="pl-s1">default</span>-<span class="pl-s1">test</span>) <span class="pl-c1">@</span> <span class="pl-s1">dubbo</span>-<span class="pl-s1">metadata</span>-<span class="pl-s1">report</span>-<span class="pl-s1">etcd</span> ---<span class="pl-s1"></span>
[<span class="pl-c1">INFO</span>]
[<span class="pl-c1">INFO</span>] -------------------------------------------------------<span class="pl-s1"></span>
[<span class="pl-c1">INFO</span>] <span class="pl-smi">T</span> <span class="pl-s1">E</span> <span class="pl-smi">S</span> <span class="pl-s1">T</span> <span class="pl-s1">S</span>
[<span class="pl-c1">INFO</span>] -------------------------------------------------------<span class="pl-s1"></span>
[<span class="pl-c1">INFO</span>] <span class="pl-smi">Running</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">dubbo</span>.<span class="pl-s1">metadata</span>.<span class="pl-s1">store</span>.<span class="pl-s1">etcd</span>.<span class="pl-s1">EtcdMetadataReportTest</span>
<span class="pl-c1">SLF4J</span>: <span class="pl-smi">Failed</span> <span class="pl-s1">to</span> <span class="pl-smi">load</span> <span class="pl-s1">class</span> <span class="pl-s">"org.slf4j.impl.StaticLoggerBinder"</span>.
<span class="pl-c1">SLF4J</span>: <span class="pl-smi">Defaulting</span> <span class="pl-s1">to</span> <span class="pl-s1">no</span>-<span class="pl-en">operation</span> (<span class="pl-c1">NOP</span>) <span class="pl-smi">logger</span> <span class="pl-s1">implementation</span>
<span class="pl-c1">SLF4J</span>: <span class="pl-smi">See</span> <span class="pl-s1">http</span>:<span class="pl-c">//www.slf4j.org/codes.html#StaticLoggerBinder for further details.</span>
<span class="pl-s1">â</span>„¹<span class="pl-s1">ï</span>¸<span class="pl-s1">Ž</span> <span class="pl-s1">Checking</span> <span class="pl-s1">the</span> <span class="pl-s1">system</span>...
<span class="pl-s1">âœ</span>” <span class="pl-s1">Docker</span> <span class="pl-s1">version</span> <span class="pl-s1">should</span> <span class="pl-s1">be</span> <span class="pl-s1">at</span> <span class="pl-s1">least</span> <span class="pl-c1">1.6</span><span class="pl-c1">.0</span>
<span class="pl-s1">âœ</span>” <span class="pl-s1">Docker</span> <span class="pl-s1">environment</span> <span class="pl-s1">should</span> <span class="pl-s1">have</span> <span class="pl-s1">more</span> <span class="pl-s1">than</span> <span class="pl-c1">2</span><span class="pl-c1">GB</span> <span class="pl-s1">free</span> <span class="pl-s1">disk</span> <span class="pl-s1">space</span>
<span class="pl-s1">log4j</span>:<span class="pl-c1">WARN</span> <span class="pl-s1">No</span> <span class="pl-s1">appenders</span> <span class="pl-s1">could</span> <span class="pl-s1">be</span> <span class="pl-smi">found</span> <span class="pl-s1">for</span> <span class="pl-en">logger</span> (<span class="pl-s1">io</span>.<span class="pl-s1">netty</span>.<span class="pl-s1">util</span>.<span class="pl-s1">internal</span>.<span class="pl-s1">logging</span>.<span class="pl-s1">InternalLoggerFactory</span>).
<span class="pl-s1">log4j</span>:<span class="pl-c1">WARN</span> <span class="pl-smi">Please</span> <span class="pl-s1">initialize</span> <span class="pl-smi">the</span> <span class="pl-s1">log4j</span> <span class="pl-smi">system</span> <span class="pl-s1">properly</span>.
<span class="pl-s1">log4j</span>:<span class="pl-c1">WARN</span> <span class="pl-s1">See</span> <span class="pl-s1">http</span>:<span class="pl-c">//logging.apache.org/log4j/1.2/faq.html#noconfig for more info.</span>
[<span class="pl-c1">ERROR</span>] <span class="pl-s1">Tests</span> <span class="pl-s1">run</span>: <span class="pl-c1">2</span>, <span class="pl-s1">Failures</span>: <span class="pl-c1">0</span>, <span class="pl-s1">Errors</span>: <span class="pl-c1">1</span>, <span class="pl-s1">Skipped</span>: <span class="pl-c1">1</span>, <span class="pl-smi">Time</span> <span class="pl-s1">elapsed</span>: <span class="pl-c1">11.156</span> <span class="pl-s1">s</span> <<< <span class="pl-c1">FAILURE</span>! - <span class="pl-smi">in</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">dubbo</span>.<span class="pl-s1">metadata</span>.<span class="pl-s1">store</span>.<span class="pl-s1">etcd</span>.<span class="pl-s1">EtcdMetadataReportTest</span>
[<span class="pl-c1">ERROR</span>] <span class="pl-s1">testStoreConsumer</span> <span class="pl-smi">Time</span> <span class="pl-s1">elapsed</span>: <span class="pl-c1">4.239</span> <span class="pl-s1">s</span> <<< <span class="pl-c1">ERROR</span>!
<span class="pl-smi">java</span>.<span class="pl-smi">lang</span>.<span class="pl-smi">IndexOutOfBoundsException</span>: <span class="pl-s1">Index</span>: <span class="pl-c1">0</span>, <span class="pl-s1">Size</span>: <span class="pl-c1">0</span>
<span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">dubbo</span>.<span class="pl-s1">metadata</span>.<span class="pl-s1">store</span>.<span class="pl-s1">etcd</span>.<span class="pl-s1">EtcdMetadataReportTest</span>.<span class="pl-en">testStoreConsumer</span>(<span class="pl-smi">EtcdMetadataReportTest</span>.<span class="pl-smi">java</span>:<span class="pl-c1">104</span>)
[<span class="pl-c1">INFO</span>]
[<span class="pl-c1">INFO</span>] <span class="pl-s1">Results</span>:
[<span class="pl-c1">INFO</span>]
[<span class="pl-c1">ERROR</span>] <span class="pl-s1">Errors</span>:
[<span class="pl-c1">ERROR</span>] <span class="pl-smi">EtcdMetadataReportTest</span>.<span class="pl-smi">testStoreConsumer</span>:<span class="pl-c1">104</span> <span class="pl-s1">Â</span>» <span class="pl-s1">IndexOutOfBounds</span> <span class="pl-s1">Index</span>: <span class="pl-c1">0</span>, <span class="pl-s1">Size</span>...</pre></div> | 0 |
<h1 dir="auto">Feature request</h1>
<h2 dir="auto">Is your feature request related to a problem? Please describe.</h2>
<p dir="auto">NextJs does not recognise files like <code class="notranslate">pages/index.mjs</code>.</p>
<h2 dir="auto">Describe the solution you'd like</h2>
<p dir="auto">I'd like to be able to use <code class="notranslate">.mjs</code> files in place of <code class="notranslate">.js</code> files across my entire project.</p>
<h2 dir="auto">Describe alternatives you've considered</h2>
<p dir="auto">N/A.</p>
<h2 dir="auto">Additional context</h2>
<p dir="auto">It'd be great to see this land sometime soon. As Node 11 moves forward, I'd like to see a future where we don't need to use Babel for module support, and can rely directly on Node.</p>
<p dir="auto">I am more than happy to work on a PR for this, if someone can point me in the right direction. I'm not 100% sure of the implications here, but hopefully it's rather simple. We'll likely need to do detection of Node versioning.</p> | <p dir="auto">I currently have my project setup with Emotion but have tried Sass modules as well. It compiles styles in the <a href="https://github.com/fandy/community/blob/master/pages/index.tsx#L19"><code class="notranslate">pages</code></a> dir, but not <a href="https://github.com/fandy/community/blob/master/components/Header/Header.tsx#L7">elsewhere</a>. Is this a Next.js issue, or is there something wrong with the way I set it up? When I tried with Sass modules I encountered the same problem, where the styles would exist if the component was in <code class="notranslate">pages</code> but not in another root dir.</p>
<h3 dir="auto">Styles exist in <a href="https://github.com/fandy/community/blob/master/pages/index.tsx#L19"><code class="notranslate">pages</code></a></h3>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/19108762/37267795-dcc15000-2598-11e8-99b2-1c01d4c81f18.png"><img src="https://user-images.githubusercontent.com/19108762/37267795-dcc15000-2598-11e8-99b2-1c01d4c81f18.png" alt="image" style="max-width: 100%;"></a></p>
<h3 dir="auto">Styles do not exist in <a href="https://github.com/fandy/community/blob/master/components/Header/Header.tsx#L7"><code class="notranslate">components</code></a></h3>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/19108762/37267803-e48f1c86-2598-11e8-853e-05817297ab76.png"><img src="https://user-images.githubusercontent.com/19108762/37267803-e48f1c86-2598-11e8-853e-05817297ab76.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">The weird thing is, the className is there but just not the styles for it.</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=is%3Aissue">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">Has styles in the Header className</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">Header className is being referenced but contains no styles. However, the styles in pages does.</p> | 0 |
<p dir="auto">I read about Group Sequence Providers, which is pretty cool feature. I am wondering if it is possible to create group provider (instead doing this logic into forms)</p> | <p dir="auto">When I first had the need to use validation groups I accidentally stumbled across the GroupSequenceProvider until I found what I actually wanted to do.</p>
<p dir="auto">What I like about the GroupSequenceProvider is that you actually bind the validation logic to the entity configuration.</p>
<p dir="auto"><a href="http://symfony.com/doc/current/book/validation.html#group-sequence" rel="nofollow">http://symfony.com/doc/current/book/validation.html#group-sequence</a></p>
<p dir="auto">However with the validation groups it is not tied to the entity. I think a common use case is to validate based on the state of an entity. If you only validate your entities based on Forms you are unlikely to have any issues. However the entity validation logic is tied to the form configuration.</p>
<p dir="auto">I would suggest an Approach with an Interface lets call it <code class="notranslate">ValidationGroupsProdviderInterface</code> with a method <code class="notranslate">ValidationGroupsProdviderInterface::getValidationGroups()</code>. The Form component could rely on this as well, the logic of the groups is tied to the entity and the risk of missing proper validation is reduced.</p>
<p dir="auto">One concern which comes to my mind is the fact that the Validate method of the Validator accepts groups as parameters. And we also might travers through relations with the Valid() constraint. So the question would be when to use which groups.</p>
<p dir="auto">What do you think about this?</p> | 1 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=sslavic" rel="nofollow">Stevo Slavić</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-8439?redirect=false" rel="nofollow">SPR-8439</a></strong> and commented</p>
<p dir="auto"><code class="notranslate">FileNotFoundException</code> gets thrown in <code class="notranslate">XmlBeanFactoryTests.testFileSystemResourceWithImport</code> on Windows if path contains spaces. <code class="notranslate">URL.getFile()</code> will return "%20" for spaces in path making returned path string not usable for constructing <code class="notranslate">File</code>. <code class="notranslate">URL.toURI().getPath()</code> should be used instead.</p>
<p dir="auto">See <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4466485" rel="nofollow">this java bug</a> for more details.</p>
<p dir="auto">Attaching a patch [^XmlBeanFactoryTests.java.patch] which fixes the issue.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.1 M2</p>
<p dir="auto"><strong>Attachments:</strong></p>
<ul dir="auto">
<li><a href="https://jira.spring.io/secure/attachment/18328/XmlBeanFactoryTests.java.patch" rel="nofollow">XmlBeanFactoryTests.java.patch</a> (<em>1.31 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="398101681" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/11330" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/11330/hovercard" href="https://github.com/spring-projects/spring-framework/issues/11330">#11330</a> XmlBeanFactoryTests testFileSystemResourceWithImport fails if build path contains spaces (<em><strong>"is duplicated by"</strong></em>)</li>
</ul> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=youen.chene" rel="nofollow">Youen Chéné</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-6532?redirect=false" rel="nofollow">SPR-6532</a></strong> and commented</p>
<p dir="auto">Hi i've got the this spring mvc code which works fines with RC2.</p>
<p dir="auto"><code class="notranslate">@RequestMapping</code>(value={"/product-{id}.html","/product-{id}-{name}.html"})<br>
public String showProduct(<code class="notranslate">@PathVariable</code> String id,<code class="notranslate">@RequestParam</code>(value="loc",required=false) String location,Model model)</p>
<p dir="auto">When I am switching with RC3, it is only handle the /product-{id}.html url pattern and not the /product-{id}-{name}.html pattern. In fact with this last pattern it try to put {id}-{name} in the id path variable instead of just put {id}.</p>
<p dir="auto">Sorry, if it is a duplicate, after a quick looking it dot not seems to be one.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.0 RC3</p> | 0 |
<p dir="auto">Hello;<br>
I think the addition of text-justify style would be a good thing. Justified text provides a better esthetical and lacks Bootstrap according to me.</p> | <p dir="auto">I was looking for ajax addition to Typeahead and found nothing that suited me so I conjured my own patch. The main object was to allow AJAX functionality but you can do a few additional things with it:</p>
<p dir="auto">Pass a function to the "source" option, that does something asynchronously and when ready calls typeahead.process() with a list of strings or objects. This is ideal for AJAX.<br>
Pass a function to the "source" option, returning a list of strings/objects<br>
Pass a list of objects to the "source" option and use a new "property" option to define which property on the objects defines the value on which is looked up and appears in the input box.<br>
Pass a function to a new "onselect" option, which calls the function with object/string when selected.</p>
<p dir="auto">You can get it here with a few examples and a diff between official Typeahead and mine: <a href="https://gist.github.com/1866577">https://gist.github.com/1866577</a></p>
<p dir="auto">I didn't know where else to post this but these additions have helped me a lot in two projects and I wanted to share it and get some feedback.</p> | 0 |
<h2 dir="auto">Steps to Reproduce</h2>
<h1 dir="auto">issue1</h1>
<p dir="auto">when background is an opacity color,a line will show at top.</p>
<div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var color = Color(0xfffe7801);
var colorb = color.withOpacity(0.1);
Paint paint=new Paint();
paint.color = colorb;
var ts = Text(
" 悬赏 ¥ " +"ddddddddddddd" + " ",
style: TextStyle(color: color, background: paint, fontSize: 13.0,));"><pre class="notranslate"><span class="pl-k">var</span> color <span class="pl-k">=</span> <span class="pl-c1">Color</span>(<span class="pl-c1">0xfffe7801</span>);
<span class="pl-k">var</span> colorb <span class="pl-k">=</span> color.<span class="pl-en">withOpacity</span>(<span class="pl-c1">0.1</span>);
<span class="pl-c1">Paint</span> paint<span class="pl-k">=</span><span class="pl-k">new</span> <span class="pl-c1">Paint</span>();
paint.color <span class="pl-k">=</span> colorb;
<span class="pl-k">var</span> ts <span class="pl-k">=</span> <span class="pl-c1">Text</span>(
<span class="pl-s">" 悬赏 ¥ "</span> <span class="pl-k">+</span><span class="pl-s">"ddddddddddddd"</span> <span class="pl-k">+</span> <span class="pl-s">" "</span>,
style<span class="pl-k">:</span> <span class="pl-c1">TextStyle</span>(color<span class="pl-k">:</span> color, background<span class="pl-k">:</span> paint, fontSize<span class="pl-k">:</span> <span class="pl-c1">13.0</span>,));</pre></div>
<h1 dir="auto">issue2</h1>
<p dir="auto">when background is an opacity 1.0 color, the Chinese words is missing.</p>
<div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var color=Colors.black;
var colorb=Colors.green;
Paint paint=new Paint();
paint.color = colorb;
var ts = Text(
" 悬赏 ¥ " +"ddddddddddddd" + " ",
style: TextStyle(color: color, background: paint, fontSize: 13.0,));"><pre class="notranslate"><span class="pl-k">var</span> color<span class="pl-k">=</span><span class="pl-c1">Colors</span>.black;
<span class="pl-k">var</span> colorb<span class="pl-k">=</span><span class="pl-c1">Colors</span>.green;
<span class="pl-c1">Paint</span> paint<span class="pl-k">=</span><span class="pl-k">new</span> <span class="pl-c1">Paint</span>();
paint.color <span class="pl-k">=</span> colorb;
<span class="pl-k">var</span> ts <span class="pl-k">=</span> <span class="pl-c1">Text</span>(
<span class="pl-s">" 悬赏 ¥ "</span> <span class="pl-k">+</span><span class="pl-s">"ddddddddddddd"</span> <span class="pl-k">+</span> <span class="pl-s">" "</span>,
style<span class="pl-k">:</span> <span class="pl-c1">TextStyle</span>(color<span class="pl-k">:</span> color, background<span class="pl-k">:</span> paint, fontSize<span class="pl-k">:</span> <span class="pl-c1">13.0</span>,));</pre></div> | <p dir="auto">I want to add a background to text, here is my code:</p>
<div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="RichText(
text: TextSpan(
text: "不科学1111",
style: TextStyle(
color: Colors.black,
background: new Paint()..color = Colors.pinkAccent,
),
children: [
TextSpan(
text: "不科学sdfsdfkd",
style: TextStyle(
color: Colors.lightGreenAccent,
background: new Paint()
..color = Colors.pinkAccent,
),
),
]),
),"><pre class="notranslate"><span class="pl-c1">RichText</span>(
text<span class="pl-k">:</span> <span class="pl-c1">TextSpan</span>(
text<span class="pl-k">:</span> <span class="pl-s">"不科学1111"</span>,
style<span class="pl-k">:</span> <span class="pl-c1">TextStyle</span>(
color<span class="pl-k">:</span> <span class="pl-c1">Colors</span>.black,
background<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Paint</span>()..color <span class="pl-k">=</span> <span class="pl-c1">Colors</span>.pinkAccent,
),
children<span class="pl-k">:</span> [
<span class="pl-c1">TextSpan</span>(
text<span class="pl-k">:</span> <span class="pl-s">"不科学sdfsdfkd"</span>,
style<span class="pl-k">:</span> <span class="pl-c1">TextStyle</span>(
color<span class="pl-k">:</span> <span class="pl-c1">Colors</span>.lightGreenAccent,
background<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Paint</span>()
..color <span class="pl-k">=</span> <span class="pl-c1">Colors</span>.pinkAccent,
),
),
]),
),</pre></div>
<p dir="auto">But the Simplified Chinese words do not display:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/17703630/48473171-eacb4900-e832-11e8-9395-ac66c99cb3e9.png"><img src="https://user-images.githubusercontent.com/17703630/48473171-eacb4900-e832-11e8-9395-ac66c99cb3e9.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">If I set the background color with opacity, it seems well:</p>
<div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="RichText(
text: TextSpan(
text: "不科学1111",
style: TextStyle(
color: Colors.black,
background: new Paint()..color = Colors.pinkAccent.withOpacity(0.5),
),
children: [
TextSpan(
text: "不科学sdfsdfkd",
style: TextStyle(
color: Colors.lightGreenAccent,
background: new Paint()
..color = Colors.pinkAccent,
),
),
]),
)"><pre class="notranslate"><span class="pl-c1">RichText</span>(
text<span class="pl-k">:</span> <span class="pl-c1">TextSpan</span>(
text<span class="pl-k">:</span> <span class="pl-s">"不科学1111"</span>,
style<span class="pl-k">:</span> <span class="pl-c1">TextStyle</span>(
color<span class="pl-k">:</span> <span class="pl-c1">Colors</span>.black,
background<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Paint</span>()..color <span class="pl-k">=</span> <span class="pl-c1">Colors</span>.pinkAccent.<span class="pl-en">withOpacity</span>(<span class="pl-c1">0.5</span>),
),
children<span class="pl-k">:</span> [
<span class="pl-c1">TextSpan</span>(
text<span class="pl-k">:</span> <span class="pl-s">"不科学sdfsdfkd"</span>,
style<span class="pl-k">:</span> <span class="pl-c1">TextStyle</span>(
color<span class="pl-k">:</span> <span class="pl-c1">Colors</span>.lightGreenAccent,
background<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Paint</span>()
..color <span class="pl-k">=</span> <span class="pl-c1">Colors</span>.pinkAccent,
),
),
]),
)</pre></div>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/17703630/48473353-3a117980-e833-11e8-859b-c8700ce5474c.png"><img src="https://user-images.githubusercontent.com/17703630/48473353-3a117980-e833-11e8-859b-c8700ce5474c.png" alt="image" style="max-width: 100%;"></a><br>
But it still doesn't meet my expectation:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/17703630/48473394-56adb180-e833-11e8-8b71-203ba7d7416c.png"><img src="https://user-images.githubusercontent.com/17703630/48473394-56adb180-e833-11e8-8b71-203ba7d7416c.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">I have added app locales supports like this:</p>
<div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="supportedLocales: [
const Locale('zh', 'CH'),
const Locale('en', 'US'),
],
"><pre class="notranslate">supportedLocales<span class="pl-k">:</span> [
<span class="pl-k">const</span> <span class="pl-c1">Locale</span>(<span class="pl-s">'zh'</span>, <span class="pl-s">'CH'</span>),
<span class="pl-k">const</span> <span class="pl-c1">Locale</span>(<span class="pl-s">'en'</span>, <span class="pl-s">'US'</span>),
],
</pre></div>
<p dir="auto">Still doesn't work.</p> | 1 |
<p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/numpy/ticket/2151" rel="nofollow">http://projects.scipy.org/numpy/ticket/2151</a> on 2012-06-06 by trac user tux, assigned to unknown.</em></p>
<p dir="auto">I found out that numpy.flatiter objects do not retain the base object's writeable flag. While this only leads to unexpected behavior for normal non-writeable arrays, this causes a segfault if the array's buffer is a read-only memory area (e.g. mmap).</p>
<p dir="auto">crashme1.py shows one part of the problem. The array b is created with the mmaped array a as its base. The current code creates a copy and sets the UPDATEIFCOPY flag if a is not C_CONTIGUOUS (I used Fortran order here). Now when b is destroyed it tries to write to its base (UPDATEIFCOPY) which causes a segfault because the buffer is a read-only mmap.</p>
<p dir="auto">I tried to fix this problem by only setting updateifcopy only if the original array is writeable. If not, the flatiter should be non-writeable as well in my opinion to prevent people from trying to change the original array with it which would not work. I'm not perfectly sure that I got the semantics of iter_array(iterators.c) right. Somebody with more insight into numpy should judge. At least the comment of iter_array should also be updated to reflect the new situation.</p>
<p dir="auto">After I implemented this, stumbled on another bug. Even if the flatiter is non-writeable, the function array_flat_set(getset.c) does not actually check the flag before writing to the array. This is demonstrated in the example write_the_unwriteable.py. If the non-writeable array is a read-only memory area, we get a segfault again (see crashme2.py).</p>
<p dir="auto">To fix this I added a check for the writeable flag at the beginning of array_flat_set which throws an appropriate exception (the same that direct assignment would cause).</p>
<p dir="auto">I tested all of the above on Debian Sid (Python 2.7.3 and numpy 1.6.2), Ubuntu Precise (Python 2.7.3 and numpy 1.6.1) and a self-compiled version of Python 2.7.1 and numpy 1.6.1. I could also reproduce it with python 3.2.</p>
<p dir="auto">I attached my patches against the current git HEAD to this report.</p> | <p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/numpy/ticket/2148" rel="nofollow">http://projects.scipy.org/numpy/ticket/2148</a> on 2012-05-31 by trac user farrowch, assigned to unknown.</em></p>
<p dir="auto">The following code crashes on numpy 1.6.1, on OSX 10.6.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import numpy as np
shape = (8, 8)
dtype = np.dtype(np.uint8)
image = np.random.randint(0, 256, shape).astype(dtype)
image.tofile("test_image.bin")
image = np.memmap("test_image.bin", dtype=dtype, shape=shape, mode='r')
arr = image[::2,::2]
np.sum(arr.flat)"><pre class="notranslate"><code class="notranslate">import numpy as np
shape = (8, 8)
dtype = np.dtype(np.uint8)
image = np.random.randint(0, 256, shape).astype(dtype)
image.tofile("test_image.bin")
image = np.memmap("test_image.bin", dtype=dtype, shape=shape, mode='r')
arr = image[::2,::2]
np.sum(arr.flat)
</code></pre></div>
<p dir="auto">Here's what I've discovered so far about this:</p>
<ul dir="auto">
<li>the bus error only occurs with mode 'r'</li>
<li>the dimensionality of the array appears to be irrelevant</li>
<li>if the array slice does not change the strides, the bus error does not occur</li>
<li>no 'arr.flat', no bus error</li>
<li>Other aggregating functions (e.g. fmin.reduce) will induce the error</li>
<li>Iterating over arr.flat will <em>not</em> cause a bus error</li>
</ul>
<p dir="auto">Based on this, I suspect the issue is with the C-facing side of the flat iterator.</p> | 1 |
<p dir="auto">From <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/akram/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/akram">@akram</a> on 2015-01-20T11:07:08Z</p>
<h5 dir="auto">ISSUE TYPE</h5>
<p dir="auto">Feature Idea</p>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">firewalld module</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<p dir="auto">N/A</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">hi guys,</p>
<p dir="auto">that would be nice if the firewalld module could support the "interface direct" configuration, allowing us to run this kind of rules:<br>
firewall-cmd --permanent --direct --add-chain ipv4 filter FORWARD -i krb0 -o krb0 -j ACCEPT</p>
<p dir="auto">Copied from original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="54870169" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible-modules-extras/issues/209" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible-modules-extras/issues/209/hovercard" href="https://github.com/ansible/ansible-modules-extras/issues/209">ansible/ansible-modules-extras#209</a></p> | <h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Feature Idea</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">firewalld module</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.3.0 (devel 9f2d8c2409) last updated 2017/01/01 20:16:08 (GMT -600)
config file = /home/lf/.ansible.cfg
configured module search path = Default w/o overrides"><pre class="notranslate"><code class="notranslate">ansible 2.3.0 (devel 9f2d8c2409) last updated 2017/01/01 20:16:08 (GMT -600)
config file = /home/lf/.ansible.cfg
configured module search path = Default w/o overrides
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">Fedora 25 Server</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">It is not currently possible to reproduce configurations such as that created by running <code class="notranslate">firewall-cmd --permanent --direct --add-rule ipv4 filter OUTPUT 0 -m owner --uid-owner $UID -j ACCEPT</code> because the firewalld module doesn't support direct rules.</p>
<p dir="auto">See previous issue at <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="54870169" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible-modules-extras/issues/209" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible-modules-extras/issues/209/hovercard" href="https://github.com/ansible/ansible-modules-extras/issues/209">ansible/ansible-modules-extras#209</a>.</p> | 1 |
<p dir="auto">I get a failure with the head revision on the 1.9 stable branch.</p>
<p dir="auto">This yml code works fine with the 1.8 release.</p>
<p dir="auto">This is running against a CentOS 6.6 machine.</p>
<ul dir="auto">
<li>name: install semanage<br>
yum: name=policycoreutils-python state=latest</li>
</ul>
<p dir="auto">I get the following traceback:</p>
<p dir="auto">TASK: [install semanage] ******************************************************<br>
fatal: [testrefgo] => Traceback (most recent call last):<br>
File "/Users/jgrigonis/github/ansible/lib/ansible/runner/<strong>init</strong>.py", line 582, in _executor<br>
exec_rc = self._executor_internal(host, new_stdin)<br>
File "/Users/jgrigonis/github/ansible/lib/ansible/runner/<strong>init</strong>.py", line 785, in _executor_internal<br>
return self._executor_internal_inner(host, self.module_name, self.module_args, inject, port, complex_args=complex_args)<br>
File "/Users/jgrigonis/github/ansible/lib/ansible/runner/<strong>init</strong>.py", line 1026, in _executor_internal_inner<br>
result = handler.run(conn, tmp, module_name, module_args, inject, complex_args)<br>
File "/Users/jgrigonis/github/ansible/lib/ansible/runner/action_plugins/normal.py", line 57, in run<br>
return self.runner._execute_module(conn, tmp, module_name, module_args, inject=inject, complex_args=complex_args)<br>
File "/Users/jgrigonis/github/ansible/lib/ansible/runner/<strong>init</strong>.py", line 547, in _execute_module<br>
res = self._low_level_exec_command(conn, cmd, tmp, become=self.become, sudoable=sudoable, in_data=in_data)<br>
File "/Users/jgrigonis/github/ansible/lib/ansible/runner/<strong>init</strong>.py", line 1163, in _low_level_exec_command<br>
in_data=in_data)<br>
File "/Users/jgrigonis/github/ansible/lib/ansible/runner/connection_plugins/ssh.py", line 362, in exec_command<br>
(returncode, stdout, stderr) = self._communicate(p, stdin, in_data, sudoable=sudoable, prompt=prompt)<br>
File "/Users/jgrigonis/github/ansible/lib/ansible/runner/connection_plugins/ssh.py", line 176, in _communicate<br>
elif stdout.endswith("%s\r\n%s" % (incorrect_password, prompt)):<br>
UnboundLocalError: local variable 'incorrect_password' referenced before assignment</p>
<p dir="auto">FATAL: all hosts have already failed -- aborting</p> | <p dir="auto">Ansible version:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 1.9.0 (detached HEAD bce4bb2ce2) last updated 2015/03/11 09:38:29 (GMT -700)
lib/ansible/modules/core: (detached HEAD 0206cc8133) last updated 2015/03/11 09:38:37 (GMT -700)
lib/ansible/modules/extras: (detached HEAD 4c0b7cb55a) last updated 2015/03/11 09:38:39 (GMT -700)
v2/ansible/modules/core: (detached HEAD 34784b7a61) last updated 2015/03/11 09:38:40 (GMT -700)
v2/ansible/modules/extras: (detached HEAD 46e316a20a) last updated 2015/03/11 09:38:42 (GMT -700)
configured module search path = None"><pre class="notranslate"><code class="notranslate">ansible 1.9.0 (detached HEAD bce4bb2ce2) last updated 2015/03/11 09:38:29 (GMT -700)
lib/ansible/modules/core: (detached HEAD 0206cc8133) last updated 2015/03/11 09:38:37 (GMT -700)
lib/ansible/modules/extras: (detached HEAD 4c0b7cb55a) last updated 2015/03/11 09:38:39 (GMT -700)
v2/ansible/modules/core: (detached HEAD 34784b7a61) last updated 2015/03/11 09:38:40 (GMT -700)
v2/ansible/modules/extras: (detached HEAD 46e316a20a) last updated 2015/03/11 09:38:42 (GMT -700)
configured module search path = None
</code></pre></div>
<p dir="auto">Stack trace:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="fatal: [shared-testbox] => Traceback (most recent call last):
File "/home/xxx/src/ansible/lib/ansible/runner/__init__.py", line 582, in _executor
exec_rc = self._executor_internal(host, new_stdin)
File "/home/xxx/src/ansible/lib/ansible/runner/__init__.py", line 785, in _executor_internal
return self._executor_internal_inner(host, self.module_name, self.module_args, inject, port, complex_args=complex_args)
File "/home/xxx/src/ansible/lib/ansible/runner/__init__.py", line 1026, in _executor_internal_inner
result = handler.run(conn, tmp, module_name, module_args, inject, complex_args)
File "/home/xxx/src/ansible/lib/ansible/runner/action_plugins/normal.py", line 57, in run
return self.runner._execute_module(conn, tmp, module_name, module_args, inject=inject, complex_args=complex_args)
File "/home/xxx/src/ansible/lib/ansible/runner/__init__.py", line 547, in _execute_module
res = self._low_level_exec_command(conn, cmd, tmp, become=self.become, sudoable=sudoable, in_data=in_data)
File "/home/xxx/src/ansible/lib/ansible/runner/__init__.py", line 1163, in _low_level_exec_command
in_data=in_data)
File "/home/xxx/src/ansible/lib/ansible/runner/connection_plugins/ssh.py", line 362, in exec_command
(returncode, stdout, stderr) = self._communicate(p, stdin, in_data, sudoable=sudoable, prompt=prompt)
File "/home/xxx/src/ansible/lib/ansible/runner/connection_plugins/ssh.py", line 176, in _communicate
elif stdout.endswith("%s\r\n%s" % (incorrect_password, prompt)):
UnboundLocalError: local variable 'incorrect_password' referenced before assignment"><pre class="notranslate"><code class="notranslate">fatal: [shared-testbox] => Traceback (most recent call last):
File "/home/xxx/src/ansible/lib/ansible/runner/__init__.py", line 582, in _executor
exec_rc = self._executor_internal(host, new_stdin)
File "/home/xxx/src/ansible/lib/ansible/runner/__init__.py", line 785, in _executor_internal
return self._executor_internal_inner(host, self.module_name, self.module_args, inject, port, complex_args=complex_args)
File "/home/xxx/src/ansible/lib/ansible/runner/__init__.py", line 1026, in _executor_internal_inner
result = handler.run(conn, tmp, module_name, module_args, inject, complex_args)
File "/home/xxx/src/ansible/lib/ansible/runner/action_plugins/normal.py", line 57, in run
return self.runner._execute_module(conn, tmp, module_name, module_args, inject=inject, complex_args=complex_args)
File "/home/xxx/src/ansible/lib/ansible/runner/__init__.py", line 547, in _execute_module
res = self._low_level_exec_command(conn, cmd, tmp, become=self.become, sudoable=sudoable, in_data=in_data)
File "/home/xxx/src/ansible/lib/ansible/runner/__init__.py", line 1163, in _low_level_exec_command
in_data=in_data)
File "/home/xxx/src/ansible/lib/ansible/runner/connection_plugins/ssh.py", line 362, in exec_command
(returncode, stdout, stderr) = self._communicate(p, stdin, in_data, sudoable=sudoable, prompt=prompt)
File "/home/xxx/src/ansible/lib/ansible/runner/connection_plugins/ssh.py", line 176, in _communicate
elif stdout.endswith("%s\r\n%s" % (incorrect_password, prompt)):
UnboundLocalError: local variable 'incorrect_password' referenced before assignment
</code></pre></div> | 1 |
<h5 dir="auto">Description of the problem</h5>
<p dir="auto">Three supports es6 modules, including a rollup, three.module.js. It does not provide a minified version, however.</p>
<p dir="auto">This is a feature request to include three.module.min.js in the distribution.</p>
<p dir="auto">The lack of three.module.min.js may be a result of the popular minifiers initially not being able to minify es6. This is no longer the case, see: butternut/squash <a href="https://github.com/Rich-Harris/butternut">https://github.com/Rich-Harris/butternut</a>. Also uglify-es is a version of uglify-js that can minify es6+.</p>
<h5 dir="auto">Three.js version</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Dev</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> r97</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> all versions</li>
</ul>
<p dir="auto">See the unpkg dashboard: <a href="https://unpkg.com/[email protected]/build/" rel="nofollow">https://unpkg.com/[email protected]/build/</a></p>
<h5 dir="auto">Browser</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> All of them</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Chrome</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Firefox</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Internet Explorer</li>
</ul>
<h5 dir="auto">OS</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> All of them</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Windows</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> macOS</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Linux</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Android</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> iOS</li>
</ul>
<h5 dir="auto">Hardware Requirements (graphics card, VR Device, ...)</h5> | <h5 dir="auto">Description of the problem</h5>
<p dir="auto">Hey, this is definitely non-blocking, but, would be helpful to check if the position array is a 3-component based buffer before computing the boundings ( sphere / box ) of a geometry</p>
<h5 dir="auto">Three.js version</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Dev</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> r97</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> ...</li>
</ul>
<h5 dir="auto">Browser</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> All of them</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Chrome</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Firefox</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Internet Explorer</li>
</ul>
<h5 dir="auto">OS</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> All of them</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Windows</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> macOS</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Linux</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Android</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> iOS</li>
</ul>
<h5 dir="auto">Hardware Requirements (graphics card, VR Device, ...)</h5> | 0 |
<p dir="auto">There is an asymmetry in Pandas wrt. indexes vs. columns that is not present in the relational model. For example, for the purposes of merging one has to decide whether the column on which to merge is an index or not, despite the fact that indexing is incidental complexity for optimization. This leads to many of us having duplicate indexes and columns with the same name, which can cause errors and wastes memory for large data frames.</p>
<p dir="auto">A possible fix would be to address the column lookup in all the current operations that require columns or indexes so that on NameError for columns the named indexes would be fetched instead. Or one may as well go all the way relational and make <em>any</em> <code class="notranslate">df[my_col_or_named_index]</code> lookup fetch a named index if the column name is not found.</p>
<p dir="auto">The latter behaviour is being implemented in the eval/query functionality by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jreback/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jreback">@jreback</a> and <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/cpcloud/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/cpcloud">@cpcloud</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="16492323" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/4164" data-hovercard-type="pull_request" data-hovercard-url="/pandas-dev/pandas/pull/4164/hovercard" href="https://github.com/pandas-dev/pandas/pull/4164">#4164</a>, so it would also be 'least surprise' to use this policy across the board.</p> | <h4 dir="auto">Code Sample, a copy-pastable example if possible</h4>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import pandas
df = pandas.DataFrame(columns=['A', 'B'])
print(df.columns)
df = df.filter(items=['A', 'A', 'A'])
print(df.columns)"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">pandas</span>
<span class="pl-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">pandas</span>.<span class="pl-v">DataFrame</span>(<span class="pl-s1">columns</span><span class="pl-c1">=</span>[<span class="pl-s">'A'</span>, <span class="pl-s">'B'</span>])
<span class="pl-en">print</span>(<span class="pl-s1">df</span>.<span class="pl-s1">columns</span>)
<span class="pl-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">df</span>.<span class="pl-en">filter</span>(<span class="pl-s1">items</span><span class="pl-c1">=</span>[<span class="pl-s">'A'</span>, <span class="pl-s">'A'</span>, <span class="pl-s">'A'</span>])
<span class="pl-en">print</span>(<span class="pl-s1">df</span>.<span class="pl-s1">columns</span>)</pre></div>
<h4 dir="auto">Problem description</h4>
<p dir="auto">Filtering a dataframe with a list which contains multiple times a column that is already inside the original dataframe results in a new dataframe, where the mentioned column is present multiple times. This problem might be fixed easily by converting the input list into a set.</p>
<h4 dir="auto">Expected Output</h4>
<p dir="auto">A filtered dataframe which have only one column: 'A'.</p>
<h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4>
<details>
<h2 dir="auto">[paste the output of <code class="notranslate">pd.show_versions()</code> here below this line]<br>
INSTALLED VERSIONS</h2>
<p dir="auto">commit: None<br>
python: 3.6.3.final.0<br>
python-bits: 64<br>
OS: Windows<br>
OS-release: 10<br>
machine: AMD64<br>
processor: Intel64 Family 6 Model 60 Stepping 3, GenuineIntel<br>
byteorder: little<br>
LC_ALL: None<br>
LANG: None<br>
LOCALE: None.None</p>
<p dir="auto">pandas: 0.22.0<br>
pytest: None<br>
pip: 9.0.1<br>
setuptools: 28.8.0<br>
Cython: None<br>
numpy: 1.14.3<br>
scipy: None<br>
pyarrow: None<br>
xarray: None<br>
IPython: 6.2.1<br>
sphinx: None<br>
patsy: None<br>
dateutil: 2.7.3<br>
pytz: 2018.4<br>
blosc: None<br>
bottleneck: None<br>
tables: None<br>
numexpr: None<br>
feather: None<br>
matplotlib: None<br>
openpyxl: None<br>
xlrd: None<br>
xlwt: None<br>
xlsxwriter: None<br>
lxml: None<br>
bs4: None<br>
html5lib: 1.0b10<br>
sqlalchemy: 1.2.3<br>
pymysql: None<br>
psycopg2: None<br>
jinja2: 2.9.6<br>
s3fs: None<br>
fastparquet: None<br>
pandas_gbq: None<br>
pandas_datareader: None</p>
</details> | 0 |
<h1 dir="auto">Bug report</h1>
<p dir="auto"><strong>What is the current behavior?</strong></p>
<p dir="auto">When creating a new ModuleFederationPlugin with shared libraries, if one of the packages has a configuration of <code class="notranslate">singleton: true, requiredVersion: false</code>, it will produce a remote entry file that uses the "loadFallback" function to try and get the package. This can lead to package duplication if a newer version of the library is provided by this module (or another module).</p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong></p>
<p dir="auto">Sample repo: <a href="https://github.com/colacadstink/WebpackModuleFederationBug">https://github.com/colacadstink/WebpackModuleFederationBug</a></p>
<p dir="auto">The dist directory is created from the standard webpack.config.js, and the workingDist directory from the webpack.working.config.js file. The only differences between these files are the output directories and the requiredVersion of lodash.</p>
<p dir="auto">Note the differences between dist/remoteEntry.js and workingDist/remoteEntry.js, specifically on line 380:</p>
<ul dir="auto">
<li>The dist copy of the file is using the loadFallback function, which will always return the highest version number available, regardless of if another instance has already been created; this can lead to situations where more than one instance is constructed, breaking the singleton flag.</li>
<li>The workingDist copy uses the loadSingletonVersionCheckFallback function with a version argument of [0]. This will let us use whatever version of the package is currently loaded, regardless of version, which is the same behavior I'd expected with the requiredVersion being false.</li>
</ul>
<p dir="auto"><strong>What is the expected behavior?</strong></p>
<p dir="auto">I feel as if this should be acting similarly to what happens if the requiredVersion is set to '*', which causes the method used in the remote entry file to be "loadStrictSingletonVersionCheckFallback" with a version argument of <code class="notranslate">[0]</code> (which does work as expected).</p>
<p dir="auto"><strong>Other relevant information:</strong><br>
webpack version: v5.64.2<br>
Node.js version: Tested on v12.16.1 and v12.20.1<br>
Operating System: n/a, but definitely there on Windows<br>
Additional tools: I used Lodash for demonstration purposes, but there's nothing special about it.</p> | <p dir="auto">Now when webpack is well typed and provides 12000+ lines of typescript code, it would be great to have a type for the main configuration function - the one which is exported.</p>
<p dir="auto">Here is a question I asked a few days ago on StackOverflow: <a href="https://stackoverflow.com/questions/69584268/what-is-the-type-of-the-webpack-config-function-when-it-comes-to-typescript" rel="nofollow">https://stackoverflow.com/questions/69584268/what-is-the-type-of-the-webpack-config-function-when-it-comes-to-typescript</a></p>
<p dir="auto">Let me repeat it here:</p>
<p dir="auto">Currently when one exports an object from the config-file, the <code class="notranslate">Configuration</code> type can be used:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const config: Configuration = {
mode: 'production',
// ...
}"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">config</span>: <span class="pl-smi">Configuration</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-c1">mode</span>: <span class="pl-s">'production'</span><span class="pl-kos">,</span>
<span class="pl-c">// ...</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">But what is the type for exporting the function? E.g.</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="export default (...): ... => {
return {
mode: 'production'
// ...
}
}"><pre class="notranslate"><span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-kos">(</span>...<span class="pl-kos">)</span>: ... <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-kos">{</span>
<span class="pl-c1">mode</span>: <span class="pl-s">'production'</span>
<span class="pl-c">// ...</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">Surprisingly, but I couldn't find the proper type among a bunch of the types provided for webpack in <a href="https://github.com/webpack/webpack/blob/main/types.d.ts">https://github.com/webpack/webpack/blob/main/types.d.ts</a></p>
<p dir="auto">If you followed the SO line above, you'd see the answer from Igor: <a href="https://stackoverflow.com/a/69608855/1223483" rel="nofollow">https://stackoverflow.com/a/69608855/1223483</a><br>
Basically he makes this job: implementing <em>missed</em> types.</p>
<p dir="auto">But how could they be missed?</p> | 0 |
<p dir="auto">Hi everyone!</p>
<p dir="auto">I upgraded the application from RC4 to RC5 and was working just fine. It was also working fine when i modified the <code class="notranslate">bootstrap</code> to the latest root module method. Then i converted one section of the application using NgModule approach. This Module is pulled in using routing.</p>
<p dir="auto">So the issue is i have two components (Nav, header) which are being used in different components. When i put them in the <code class="notranslate">declarations</code> part of the Featured Module i get a warning in my browser console that its declared in two places, AppModule and CatalogModule (even though i have not explicitly declared it in AppModule.</p>
<p dir="auto">After some research i found out that RC5 automatically pulls in all declarations to avoid breaking changes for developers using previous versions. So i Added the components explicitly in the <code class="notranslate">declarations</code> of the AppModule (root Module) and removed it from the CatalogModule (feature module). There are no compiler/browser errors now but the components are not loaded in that route. The header and Nav is simply missing.</p>
<p dir="auto">For other components its working which belong to AppModule.</p>
<p dir="auto">Can anyone please shine some light on what i could be doing wrong ?</p> | <p dir="auto">Before integrating the definitions to the package directly including those into a ASP.NET 4 project that uses SystemJS was really easy: Just put the file from DefinitelyTyped into the project, do an <code class="notranslate">import * as ng from 'angular2/angular2'</code> in a TypeScript file and everything worked fine. This doesn't fit anymore (in my case), since there is no single <code class="notranslate">.d.ts</code> file with all definitions.</p>
<p dir="auto">When I was using the import statement above, the <code class="notranslate">'angular2/angular2'</code> (path and JS file) was resolved by SystemJS and Visual Studio knew about it because of the definition file that was declaring a module. How do I achieve that Visual Studio will know about that again? I tried many hours without success, except using the old Alpha stage <code class="notranslate">.d.ts</code> file and changing it slightly to declare it as <code class="notranslate">angular2/core</code>.</p>
<p dir="auto">How can this problem be resolved without using the new project system of ASP.NET 5?</p> | 0 |
<p dir="auto">Is there a way to observe alt key press state change while displaying application menus?</p>
<p dir="auto">I would like to update the menu items (which I am not sure is possible either) while the menu is displayed and the user is toggling the alt key.</p>
<p dir="auto">This behavior can be seen in the OS X Finder app for instance.</p> | <blockquote>
<p dir="auto">A dynamic menu item is a command that changes when the user presses a modifier key.</p>
</blockquote>
<p dir="auto"><a href="https://developer.apple.com/library/mac/documentation/UserExperience/Conceptual/OSXHIGuidelines/MenuChanging.html" rel="nofollow">https://developer.apple.com/library/mac/documentation/UserExperience/Conceptual/OSXHIGuidelines/MenuChanging.html</a></p>
<ul dir="auto">
<li>Operating system: OS X</li>
</ul> | 1 |
<p dir="auto">React version:<br>
17.0.2</p>
<p dir="auto">eslint-plugin-react-hooks version:<br>
4.2.0</p>
<h2 dir="auto">Steps To Reproduce</h2>
<ol dir="auto">
<li>import useEfect from react library</li>
<li>type <code class="notranslate">useEfect(</code></li>
</ol>
<p dir="auto">Link to code example:<br>
<a href="https://github.com/LeonardoRick/podcastr">https://github.com/LeonardoRick/podcastr</a></p>
<h2 dir="auto">The current behavior</h2>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/17517057/115921727-4792ab00-a452-11eb-8b46-82b43dcd5600.png"><img src="https://user-images.githubusercontent.com/17517057/115921727-4792ab00-a452-11eb-8b46-82b43dcd5600.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">output:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="[Error - 16:40:28] ESLint stack trace:
[Error - 16:40:28] TypeError: Cannot read property 'type' of undefined
Occurred while linting D:\GIT\podcastr\src\Components\Player\index.tsx:16
at visitCallExpression (D:\GIT\podcastr\node_modules\eslint-plugin-react-hooks\cjs\eslint-plugin-react-hooks.development.js:1736:24)
at D:\GIT\podcastr\node_modules\eslint\lib\linter\safe-emitter.js:45:58
at Array.forEach (<anonymous>)
at Object.emit (D:\GIT\podcastr\node_modules\eslint\lib\linter\safe-emitter.js:45:38)
at NodeEventGenerator.applySelector (D:\GIT\podcastr\node_modules\eslint\lib\linter\node-event-generator.js:256:26)
at NodeEventGenerator.applySelectors (D:\GIT\podcastr\node_modules\eslint\lib\linter\node-event-generator.js:285:22)
at NodeEventGenerator.enterNode (D:\GIT\podcastr\node_modules\eslint\lib\linter\node-event-generator.js:299:14)
at CodePathAnalyzer.enterNode (D:\GIT\podcastr\node_modules\eslint\lib\linter\code-path-analysis\code-path-analyzer.js:711:23)
at D:\GIT\podcastr\node_modules\eslint\lib\linter\linter.js:954:32
at Array.forEach (<anonymous>)"><pre class="notranslate">[Error - 16:40:28] ESLint stack trace:
[Error - 16:40:28] TypeError: Cannot <span class="pl-c1">read</span> property <span class="pl-s"><span class="pl-pds">'</span>type<span class="pl-pds">'</span></span> of undefined
Occurred <span class="pl-k">while</span> linting D:<span class="pl-cce">\G</span>IT<span class="pl-cce">\p</span>odcastr<span class="pl-cce">\s</span>rc<span class="pl-cce">\C</span>omponents<span class="pl-cce">\P</span>layer<span class="pl-cce">\i</span>ndex.tsx:16
at visitCallExpression (D:<span class="pl-cce">\G</span>IT<span class="pl-cce">\p</span>odcastr<span class="pl-cce">\n</span>ode_modules<span class="pl-cce">\e</span>slint-plugin-react-hooks<span class="pl-cce">\c</span>js<span class="pl-cce">\e</span>slint-plugin-react-hooks.development.js:1736:24)
at D:<span class="pl-cce">\G</span>IT<span class="pl-cce">\p</span>odcastr<span class="pl-cce">\n</span>ode_modules<span class="pl-cce">\e</span>slint<span class="pl-cce">\l</span>ib<span class="pl-cce">\l</span>inter<span class="pl-cce">\s</span>afe-emitter.js:45:58
at Array.forEach (<span class="pl-k"><</span>anonymous<span class="pl-k">></span>)
at Object.emit (D:<span class="pl-cce">\G</span>IT<span class="pl-cce">\p</span>odcastr<span class="pl-cce">\n</span>ode_modules<span class="pl-cce">\e</span>slint<span class="pl-cce">\l</span>ib<span class="pl-cce">\l</span>inter<span class="pl-cce">\s</span>afe-emitter.js:45:38)
at NodeEventGenerator.applySelector (D:<span class="pl-cce">\G</span>IT<span class="pl-cce">\p</span>odcastr<span class="pl-cce">\n</span>ode_modules<span class="pl-cce">\e</span>slint<span class="pl-cce">\l</span>ib<span class="pl-cce">\l</span>inter<span class="pl-cce">\n</span>ode-event-generator.js:256:26)
at NodeEventGenerator.applySelectors (D:<span class="pl-cce">\G</span>IT<span class="pl-cce">\p</span>odcastr<span class="pl-cce">\n</span>ode_modules<span class="pl-cce">\e</span>slint<span class="pl-cce">\l</span>ib<span class="pl-cce">\l</span>inter<span class="pl-cce">\n</span>ode-event-generator.js:285:22)
at NodeEventGenerator.enterNode (D:<span class="pl-cce">\G</span>IT<span class="pl-cce">\p</span>odcastr<span class="pl-cce">\n</span>ode_modules<span class="pl-cce">\e</span>slint<span class="pl-cce">\l</span>ib<span class="pl-cce">\l</span>inter<span class="pl-cce">\n</span>ode-event-generator.js:299:14)
at CodePathAnalyzer.enterNode (D:<span class="pl-cce">\G</span>IT<span class="pl-cce">\p</span>odcastr<span class="pl-cce">\n</span>ode_modules<span class="pl-cce">\e</span>slint<span class="pl-cce">\l</span>ib<span class="pl-cce">\l</span>inter<span class="pl-cce">\c</span>ode-path-analysis<span class="pl-cce">\c</span>ode-path-analyzer.js:711:23)
at D:<span class="pl-cce">\G</span>IT<span class="pl-cce">\p</span>odcastr<span class="pl-cce">\n</span>ode_modules<span class="pl-cce">\e</span>slint<span class="pl-cce">\l</span>ib<span class="pl-cce">\l</span>inter<span class="pl-cce">\l</span>inter.js:954:32
at Array.forEach (<span class="pl-k"><</span>anonymous<span class="pl-k">></span>)</pre></div>
<p dir="auto">error line:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" // eslint-plugin-react-hooks\cjs\eslint-plugin-react-hooks.development.js:1736:24:
switch (callback.type) {"><pre class="notranslate"> <span class="pl-c">// eslint-plugin-react-hooks\cjs\eslint-plugin-react-hooks.development.js:1736:24:</span>
<span class="pl-k">switch</span> <span class="pl-kos">(</span><span class="pl-s1">callback</span><span class="pl-kos">.</span><span class="pl-c1">type</span><span class="pl-kos">)</span> <span class="pl-kos">{</span><span class="pl-kos"></span></pre></div>
<h2 dir="auto">The expected behavior</h2>
<p dir="auto">No errors showing, since I'm currently typing the code</p> | <p dir="auto">eslint-plugin-react-hooks version: 4.2.0</p>
<h2 dir="auto">Steps To Reproduce</h2>
<p dir="auto">I know it shouldn't exist in production code, but it's annoying while editing some files.</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import React, { useEffect } from "react";
const App = () => {
useEffect(); // <-
return null;
};
export default App;"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-v">React</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-s1">useEffect</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"react"</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-v">App</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-en">useEffect</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">return</span> <span class="pl-c1">null</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-v">App</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Link to code example: <a href="https://codesandbox.io/s/polished-sun-3wr27?file=/src/App.js" rel="nofollow">https://codesandbox.io/s/polished-sun-3wr27?file=/src/App.js</a></p>
<h2 dir="auto">The current behavior</h2>
<p dir="auto">ESLint crashed.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TypeError: Cannot read property 'type' of undefined"><pre class="notranslate"><code class="notranslate">TypeError: Cannot read property 'type' of undefined
</code></pre></div>
<h2 dir="auto">The expected behavior</h2>
<p dir="auto">ESLint doesn't crash but reports an error instead.</p> | 1 |
<p dir="auto"><em>Tested in VSCode 1.2 and in the playground</em></p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class A {
method(): this {
return this;
}
}
class B extends A {}
const c = new B().method();"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-smi">A</span> <span class="pl-kos">{</span>
<span class="pl-en">method</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: this <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-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">class</span> <span class="pl-smi">B</span> <span class="pl-k">extends</span> <span class="pl-smi">A</span> <span class="pl-kos">{</span><span class="pl-kos">}</span>
<span class="pl-k">const</span> <span class="pl-s1">c</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-smi">B</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">method</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><code class="notranslate">c</code>'s type is <code class="notranslate">B</code> (correctly). However, if I call super.method() from B, its return type is A instead of B:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class A {
method(): this {
return this;
}
}
class B extends A {
method(): this {
return super.method(); // Type 'A' is not assignable to type 'this'.
}
}"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-smi">A</span> <span class="pl-kos">{</span>
<span class="pl-en">method</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: this <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-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">class</span> <span class="pl-smi">B</span> <span class="pl-k">extends</span> <span class="pl-smi">A</span> <span class="pl-kos">{</span>
<span class="pl-en">method</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: this <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-smi">super</span><span class="pl-kos">.</span><span class="pl-en">method</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Type 'A' is not assignable to type 'this'.</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div> | <p dir="auto"><strong>TypeScript Version:</strong></p>
<p dir="auto">nightly with "node.d.ts" from typings</p>
<p dir="auto">We recently add <a href="https://github.com/Microsoft/TypeScript/blob/master/src/lib/es5.d.ts#L867">this</a>in to es5.d.ts<br>
<strong>Expected behavior:</strong><br>
No error<br>
<strong>Actual behavior:</strong><br>
Duplicate Identifier with the same property defined in "node.d.ts"</p> | 0 |
<p dir="auto">At <a href="http://scikit-learn.org/stable/modules/classes.html#module-sklearn.utils" rel="nofollow">http://scikit-learn.org/stable/modules/classes.html#module-sklearn.utils</a> (and in the deprecated section too), the signature of functions that take <code class="notranslate">*args, **kwargs</code> (e.g. <code class="notranslate">utils.resample</code>) appear with spurious backslashes, e.g.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="utils.resample(\*arrays, \*\*options) Resample arrays or sparse matrices in a consistent way"><pre class="notranslate"><code class="notranslate">utils.resample(\*arrays, \*\*options) Resample arrays or sparse matrices in a consistent way
</code></pre></div> | <h4 dir="auto">Description</h4>
<p dir="auto">Not sure why this is happening, but if you look at <a href="http://scikit-learn.org/dev/modules/generated/sklearn.pipeline.Pipeline.html" rel="nofollow"><code class="notranslate">the pipeline docs</code></a> or any other module that uses <code class="notranslate">*</code> in their methods, the asterisks show up as <code class="notranslate">\*</code>. Perhaps something to have to do with escaping characters?<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/7272031/21902824/386cd33c-d8b2-11e6-86e5-d7f0770731ec.png"><img width="795" alt="screen shot 2017-01-12 at 10 31 02 am" src="https://cloud.githubusercontent.com/assets/7272031/21902824/386cd33c-d8b2-11e6-86e5-d7f0770731ec.png" style="max-width: 100%;"></a></p>
<h4 dir="auto">Expected Results</h4>
<p dir="auto">There are no <code class="notranslate">\</code> before the asterisks.</p> | 1 |
<h5 dir="auto">Issue Type:</h5>
<p dir="auto">Bug Report</p>
<h5 dir="auto">Ansible Version:</h5>
<p dir="auto">ansible 1.8 (devel <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/ansible/ansible/commit/6180d9a6933586359dc2846bb5521290cd6ee0e3/hovercard" href="https://github.com/ansible/ansible/commit/6180d9a6933586359dc2846bb5521290cd6ee0e3"><tt>6180d9a</tt></a>) last updated 2014/08/18 17:03:49 (GMT +1100)</p>
<h5 dir="auto">Environment:</h5>
<p dir="auto">Bug discovered with Debian x86_64, confirmed and bisected with Gentoo x86_64.</p>
<h5 dir="auto">Summary:</h5>
<p dir="auto">When using group_by to create a group on the fly (e.g. <code class="notranslate">group_by: key="{{ ansible_os_family }}"</code>), the group_vars fail to override vars in <code class="notranslate">group_vars/all</code>.</p>
<p dir="auto">I bisected this to <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/ansible/ansible/commit/f6a55a35525a6ca0b56ad856f2ab11bbd226c1b4/hovercard" href="https://github.com/ansible/ansible/commit/f6a55a35525a6ca0b56ad856f2ab11bbd226c1b4"><tt>f6a55a3</tt></a>.</p>
<h5 dir="auto">Steps To Reproduce:</h5>
<p dir="auto"><code class="notranslate">site.yml</code>:</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
---
- hosts: all
tasks:
- group_by: key={{ ansible_os_family }}
- fail: msg="testvar = {{ testvar }}"
when: testvar != "override OK""><pre class="notranslate">---
- <span class="pl-ent">hosts</span>: <span class="pl-s">all</span>
<span class="pl-ent">tasks</span>:
- <span class="pl-ent">group_by</span>: <span class="pl-s">key={{ ansible_os_family }}</span>
- <span class="pl-ent">fail</span>: <span class="pl-s">msg="testvar = {{ testvar }}"</span>
<span class="pl-ent">when</span>: <span class="pl-s">testvar != "override OK"</span></pre></div>
<p dir="auto"><code class="notranslate">group_vars/all</code>:</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
---
testvar: override FAIL"><pre class="notranslate">---
<span class="pl-ent">testvar</span>: <span class="pl-s">override FAIL</span></pre></div>
<p dir="auto"><code class="notranslate">group_vars/Gentoo</code> (where "Gentoo" is whatever your <code class="notranslate">ansible_os_family</code> actually resolves to):</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
---
testvar: override OK"><pre class="notranslate">---
<span class="pl-ent">testvar</span>: <span class="pl-s">override OK</span></pre></div>
<h5 dir="auto">Expected Results:</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="PLAY [all] ********************************************************************
GATHERING FACTS ***************************************************************
ok: [127.0.0.1]
TASK: [group_by key={{ ansible_os_family }}] **********************************
changed: [127.0.0.1]
TASK: [fail msg="testvar = {{ testvar }}"] ************************************
skipping: [127.0.0.1]
PLAY RECAP ********************************************************************
127.0.0.1 : ok=2 changed=1 unreachable=0 failed=0 "><pre class="notranslate"><code class="notranslate">PLAY [all] ********************************************************************
GATHERING FACTS ***************************************************************
ok: [127.0.0.1]
TASK: [group_by key={{ ansible_os_family }}] **********************************
changed: [127.0.0.1]
TASK: [fail msg="testvar = {{ testvar }}"] ************************************
skipping: [127.0.0.1]
PLAY RECAP ********************************************************************
127.0.0.1 : ok=2 changed=1 unreachable=0 failed=0
</code></pre></div>
<h5 dir="auto">Actual Results:</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="PLAY [all] ********************************************************************
GATHERING FACTS ***************************************************************
ok: [127.0.0.1]
TASK: [group_by key={{ansible_os_family}}] ************************************
changed: [127.0.0.1]
TASK: [fail msg="testvar = {{testvar}}"] **************************************
failed: [127.0.0.1] => {"failed": true}
msg: testvar = override FAIL
FATAL: all hosts have already failed -- aborting
PLAY RECAP ********************************************************************
to retry, use: --limit @/home/direvus/site.retry
127.0.0.1 : ok=2 changed=1 unreachable=0 failed=1
"><pre class="notranslate"><code class="notranslate">PLAY [all] ********************************************************************
GATHERING FACTS ***************************************************************
ok: [127.0.0.1]
TASK: [group_by key={{ansible_os_family}}] ************************************
changed: [127.0.0.1]
TASK: [fail msg="testvar = {{testvar}}"] **************************************
failed: [127.0.0.1] => {"failed": true}
msg: testvar = override FAIL
FATAL: all hosts have already failed -- aborting
PLAY RECAP ********************************************************************
to retry, use: --limit @/home/direvus/site.retry
127.0.0.1 : ok=2 changed=1 unreachable=0 failed=1
</code></pre></div> | <h5 dir="auto">Issue Type: Bug Report</h5>
<h5 dir="auto">Ansible Version: 1.6.2 - 1.7.1</h5>
<h5 dir="auto">Environment: any</h5>
<h5 dir="auto">Summary:</h5>
<p dir="auto">Playbook level variable are ignored when we use vars_files with filename defined with {{ansible_os_family}}</p>
<p dir="auto">If we import variable file with static name (RedHat.yml for example) - no issue</p>
<h5 dir="auto">Steps To Reproduce:</h5>
<p dir="auto">Test playbook</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
---
- name: 'Test Precedence'
hosts: vagrantcentos
user: vagrant
sudo: yes
vars:
some_var: "foo"
vars_files:
- vars/{{ ansible_os_family }}.yml
#- vars/RedHat.yml
- vars/other_vars.yml
tasks:
- debug: msg={{some_var}}
tags:
- test"><pre class="notranslate">---
- <span class="pl-ent">name</span>: <span class="pl-s"><span class="pl-pds">'</span>Test Precedence<span class="pl-pds">'</span></span>
<span class="pl-ent">hosts</span>: <span class="pl-s">vagrantcentos</span>
<span class="pl-ent">user</span>: <span class="pl-s">vagrant</span>
<span class="pl-ent">sudo</span>: <span class="pl-s">yes</span>
<span class="pl-ent">vars</span>:
<span class="pl-ent">some_var</span>: <span class="pl-s"><span class="pl-pds">"</span>foo<span class="pl-pds">"</span></span>
<span class="pl-ent">vars_files</span>:
- <span class="pl-s">vars/{{ ansible_os_family }}.yml</span>
<span class="pl-c"><span class="pl-c">#</span>- vars/RedHat.yml</span>
- <span class="pl-s">vars/other_vars.yml</span>
<span class="pl-ent">tasks</span>:
- <span class="pl-ent">debug</span>: <span class="pl-s">msg={{some_var}}</span>
<span class="pl-ent">tags</span>:
- <span class="pl-s">test</span></pre></div>
<p dir="auto">and additional files<br>
group_vars/all</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="some_var: "bar""><pre class="notranslate"><span class="pl-ent">some_var</span>: <span class="pl-s"><span class="pl-pds">"</span>bar<span class="pl-pds">"</span></span></pre></div>
<p dir="auto">vars/RedHat.yml</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="useless_var: "oops""><pre class="notranslate"><span class="pl-ent">useless_var</span>: <span class="pl-s"><span class="pl-pds">"</span>oops<span class="pl-pds">"</span></span></pre></div>
<p dir="auto">vars/other_vars.yml</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="other_var: "woot""><pre class="notranslate"><span class="pl-ent">other_var</span>: <span class="pl-s"><span class="pl-pds">"</span>woot<span class="pl-pds">"</span></span></pre></div>
<h5 dir="auto">Expected Results:</h5>
<p dir="auto">debug message should be<br>
<code class="notranslate">"msg": "foo"</code><br>
this result returned when I comment<br>
<code class="notranslate">- vars/{{ ansible_os_family }}.yml</code> line</p>
<h5 dir="auto">Actual Results:</h5>
<p dir="auto">Unexpectedly we got:<br>
<code class="notranslate">"msg": "bar"</code></p> | 1 |
<p dir="auto"><em>Please make sure that this is a build/installation issue. As per our <a href="https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md">GitHub Policy</a>, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:build_template</em></p>
<p dir="auto"><strong>System information</strong></p>
<ul dir="auto">
<li>OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 10 64 bit</li>
<li>Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: N/A</li>
<li>TensorFlow installed from (source or binary): source</li>
<li>TensorFlow version: checkout from <code class="notranslate">master</code> branch</li>
<li>Python version: Python 3.6.8 :: Anaconda, Inc.</li>
<li>Installed using virtualenv? pip? conda?: conda 4.6.14</li>
<li>Bazel version (if compiling from source): 0.24.1</li>
<li>GCC/Compiler version (if compiling from source): cl.exe C/C++ Optimizing Compiler Version 19.16.27030.1 for x64, Visual Studio Build Tools 2017</li>
<li>CUDA/cuDNN version: CUDA Toolkit V10.0.130, cuDNN 7.5.0</li>
<li>GPU model and memory: GTX 1060 6GB</li>
</ul>
<p dir="auto"><strong>Describe the problem</strong><br>
Fatal error C1001: An internal error has occurred in the compiler in tensorflow\compiler\xla\literal.cc(1291).</p>
<p dir="auto"><strong>Provide the exact sequence of commands / steps that you executed before running into the problem</strong></p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="(base) Stepii@STEPII D:\Neural\tensorflow
$ python configure.py
WARNING: Running Bazel server needs to be killed, because the startup options are different.
WARNING: --batch mode is deprecated. Please instead explicitly shut down your Bazel server using the command "bazel shutdown".
You have bazel 0.24.1 installed.
Please specify the location of python. [Default is D:\Programs\Anaconda3\python.exe]:
Found possible Python library paths:
D:\Programs\Anaconda3\lib\site-packages
Please input the desired Python library path to use. Default is [D:\Programs\Anaconda3\lib\site-packages]
Do you wish to build TensorFlow with XLA JIT support? [y/N]: y
XLA JIT support will be enabled for TensorFlow.
Do you wish to build TensorFlow with ROCm support? [y/N]: n
No ROCm support will be enabled for TensorFlow.
Do you wish to build TensorFlow with CUDA support? [y/N]: y
CUDA support will be enabled for TensorFlow.
Found CUDA 10.0 in:
C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64
C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include
Found cuDNN 7 in:
C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64
C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include
Please specify a list of comma-separated CUDA compute capabilities you want to build with.
You can find the compute capability of your device at: https://developer.nvidia.com/cuda-gpus.
Please note that each additional compute capability significantly increases your build time and binary size, and that TensorFlow only supports compute capabilities >= 3.5 [Default is: 3.5,7.0]: 6.1
Please specify optimization flags to use during compilation when bazel option "--config=opt" is specified [Default is /arch:AVX]: /arch:AVX2
Would you like to override eigen strong inline for some C++ compilation to reduce the compilation time? [Y/n]: y
Eigen strong inline overridden.
Preconfigured Bazel build configs. You can use any of the below by adding "--config=<>" to your build command. See .bazelrc for more details.
--config=mkl # Build with MKL support.
--config=monolithic # Config for mostly static monolithic build.
--config=gdr # Build with GDR support.
--config=verbs # Build with libverbs support.
--config=ngraph # Build with Intel nGraph support.
--config=numa # Build with NUMA support.
--config=dynamic_kernels # (Experimental) Build kernels into separate shared objects.
Preconfigured Bazel build configs to DISABLE default on features:
--config=noaws # Disable AWS S3 filesystem support.
--config=nogcp # Disable GCP support.
--config=nohdfs # Disable HDFS support.
--config=noignite # Disable Apache Ignite support.
--config=nokafka # Disable Apache Kafka support.
--config=nonccl # Disable NVIDIA NCCL support.
(base) Stepii@STEPII D:\Neural\tensorflow
$ bazel build --config=opt --define=no_tensorflow_py_deps=true //tensorflow/tools/pip_package:build_pip_package -j 12
[...]
ERROR: D:/neural/tensorflow/tensorflow/compiler/xla/BUILD:366:1: C++ compilation of rule '//tensorflow/compiler/xla:literal' failed (Exit 3): python.exe failed: error executing command
cd C:/users/stepii/_bazel_stepii/5mniti2w/execroot/org_tensorflow
SET CUDA_TOOLKIT_PATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0
SET INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\ATLMFC\include;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\ucrt;C:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\shared;C:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\um;C:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\winrt;C:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\cppwinrt
SET LIB=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\ATLMFC\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\lib\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.17763.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.17763.0\um\x64;
SET PATH=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\bin\Roslyn;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Team Tools\Performance Tools\x64;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Team Tools\Performance Tools;C:\Program Files (x86)\Microsoft Visual Studio\Shared\Common\VSPerfCollectionTools\\x64;C:\Program Files (x86)\Microsoft Visual Studio\Shared\Common\VSPerfCollectionTools\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.17763.0\x64;C:\Program Files (x86)\Windows Kits\10\bin\x64;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\\MSBuild\15.0\bin;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\;;C:\Windows\system32;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\Ninja
SET PWD=/proc/self/cwd
SET PYTHON_BIN_PATH=D:/Programs/Anaconda3/python.exe
SET PYTHON_LIB_PATH=D:/Programs/Anaconda3/lib/site-packages
SET TEMP=C:\Users\Stepii\AppData\Local\Temp
SET TF_CONFIGURE_IOS=0
SET TF_CUDA_CLANG=0
SET TF_CUDA_COMPUTE_CAPABILITIES=6.1
SET TF_NEED_CUDA=1
SET TF_NEED_OPENCL_SYCL=0
SET TF_NEED_ROCM=0
SET TF_NEED_TENSORRT=0
SET TMP=C:\Users\Stepii\AppData\Local\Temp
D:/Programs/Anaconda3/python.exe -B external/local_config_cuda/crosstool/windows/msvc_wrapper_for_nvcc.py /nologo /DCOMPILER_MSVC /DNOMINMAX /D_WIN32_WINNT=0x0600 /D_CRT_SECURE_NO_DEPRECATE /D_CRT_SECURE_NO_WARNINGS /D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS /bigobj /Zm500 /J /Gy /GF /EHsc /wd4351 /wd4291 /wd4250 /wd4996 /I. /Ibazel-out/x64_windows-opt/genfiles /Ibazel-out/x64_windows-opt/bin /Iexternal/com_google_absl /Ibazel-out/x64_windows-opt/genfiles/external/com_google_absl /Ibazel-out/x64_windows-opt/bin/external/com_google_absl /Iexternal/nsync /Ibazel-out/x64_windows-opt/genfiles/external/nsync /Ibazel-out/x64_windows-opt/bin/external/nsync /Iexternal/eigen_archive /Ibazel-out/x64_windows-opt/genfiles/external/eigen_archive /Ibazel-out/x64_windows-opt/bin/external/eigen_archive /Iexternal/local_config_sycl /Ibazel-out/x64_windows-opt/genfiles/external/local_config_sycl /Ibazel-out/x64_windows-opt/bin/external/local_config_sycl /Iexternal/gif_archive /Ibazel-out/x64_windows-opt/genfiles/external/gif_archive /Ibazel-out/x64_windows-opt/bin/external/gif_archive /Iexternal/jpeg /Ibazel-out/x64_windows-opt/genfiles/external/jpeg /Ibazel-out/x64_windows-opt/bin/external/jpeg /Iexternal/protobuf_archive /Ibazel-out/x64_windows-opt/genfiles/external/protobuf_archive /Ibazel-out/x64_windows-opt/bin/external/protobuf_archive /Iexternal/com_googlesource_code_re2 /Ibazel-out/x64_windows-opt/genfiles/external/com_googlesource_code_re2 /Ibazel-out/x64_windows-opt/bin/external/com_googlesource_code_re2 /Iexternal/farmhash_archive /Ibazel-out/x64_windows-opt/genfiles/external/farmhash_archive /Ibazel-out/x64_windows-opt/bin/external/farmhash_archive /Iexternal/fft2d /Ibazel-out/x64_windows-opt/genfiles/external/fft2d /Ibazel-out/x64_windows-opt/bin/external/fft2d /Iexternal/highwayhash /Ibazel-out/x64_windows-opt/genfiles/external/highwayhash /Ibazel-out/x64_windows-opt/bin/external/highwayhash /Iexternal/zlib_archive /Ibazel-out/x64_windows-opt/genfiles/external/zlib_archive /Ibazel-out/x64_windows-opt/bin/external/zlib_archive /Iexternal/double_conversion /Ibazel-out/x64_windows-opt/genfiles/external/double_conversion /Ibazel-out/x64_windows-opt/bin/external/double_conversion /Iexternal/snappy /Ibazel-out/x64_windows-opt/genfiles/external/snappy /Ibazel-out/x64_windows-opt/bin/external/snappy /Iexternal/nsync/public /Ibazel-out/x64_windows-opt/genfiles/external/nsync/public /Ibazel-out/x64_windows-opt/bin/external/nsync/public /Iexternal/eigen_archive /Ibazel-out/x64_windows-opt/genfiles/external/eigen_archive /Ibazel-out/x64_windows-opt/bin/external/eigen_archive /Iexternal/gif_archive/lib /Ibazel-out/x64_windows-opt/genfiles/external/gif_archive/lib /Ibazel-out/x64_windows-opt/bin/external/gif_archive/lib /Iexternal/gif_archive/windows /Ibazel-out/x64_windows-opt/genfiles/external/gif_archive/windows /Ibazel-out/x64_windows-opt/bin/external/gif_archive/windows /Iexternal/protobuf_archive/src /Ibazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src /Ibazel-out/x64_windows-opt/bin/external/protobuf_archive/src /Iexternal/farmhash_archive/src /Ibazel-out/x64_windows-opt/genfiles/external/farmhash_archive/src /Ibazel-out/x64_windows-opt/bin/external/farmhash_archive/src /Iexternal/zlib_archive /Ibazel-out/x64_windows-opt/genfiles/external/zlib_archive /Ibazel-out/x64_windows-opt/bin/external/zlib_archive /Iexternal/double_conversion /Ibazel-out/x64_windows-opt/genfiles/external/double_conversion /Ibazel-out/x64_windows-opt/bin/external/double_conversion /D__CLANG_SUPPORT_DYN_ANNOTATION__ /DEIGEN_MPL2_ONLY /DEIGEN_MAX_ALIGN_BYTES=64 /DEIGEN_HAS_TYPE_TRAITS=0 /DTF_USE_SNAPPY /showIncludes /MD /O2 /DNDEBUG -w -DWIN32_LEAN_AND_MEAN /arch:AVX2 /Fobazel-out/x64_windows-opt/bin/tensorflow/compiler/xla/_objs/literal/literal.o /c tensorflow/compiler/xla/literal.cc
Execution platform: @bazel_tools//platforms:host_platform
c:\users\stepii\_bazel_stepii\5mniti2w\execroot\org_tensorflow\tensorflow\compiler\xla\literal.cc(1291) : fatal error C1001: An internal error has occurred in the compiler.
(compiler file 'd:\agent\_work\1\s\src\vctools\compiler\utc\src\p2\main.c', line 187)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
cl!InvokeCompilerPassW()+0x3e708
c:\users\stepii\_bazel_stepii\5mniti2w\execroot\org_tensorflow\tensorflow\compiler\xla\literal.cc(1291) : fatal error C1001: An internal error has occurred in the compiler.
(compiler file 'd:\agent\_work\1\s\src\vctools\compiler\utc\src\common\error.c', line 835)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
Target //tensorflow/tools/pip_package:build_pip_package failed to build
INFO: Elapsed time: 1698.097s, Critical Path: 416.10s
INFO: 3624 processes: 3624 local.
FAILED: Build did NOT complete successfully"><pre class="notranslate">(base) Stepii@STEPII D:<span class="pl-cce">\N</span>eural<span class="pl-cce">\t</span>ensorflow
$ python configure.py
WARNING: Running Bazel server needs to be killed, because the startup options are different.
WARNING: --batch mode is deprecated. Please instead explicitly shut down your Bazel server using the <span class="pl-c1">command</span> <span class="pl-s"><span class="pl-pds">"</span>bazel shutdown<span class="pl-pds">"</span></span>.
You have bazel 0.24.1 installed.
Please specify the location of python. [Default is D:<span class="pl-cce">\P</span>rograms<span class="pl-cce">\A</span>naconda3<span class="pl-cce">\p</span>ython.exe]:
Found possible Python library paths:
D:<span class="pl-cce">\P</span>rograms<span class="pl-cce">\A</span>naconda3<span class="pl-cce">\l</span>ib<span class="pl-cce">\s</span>ite-packages
Please input the desired Python library path to use. Default is [D:<span class="pl-cce">\P</span>rograms<span class="pl-cce">\A</span>naconda3<span class="pl-cce">\l</span>ib<span class="pl-cce">\s</span>ite-packages]
Do you wish to build TensorFlow with XLA JIT support<span class="pl-k">?</span> [y/N]: y
XLA JIT support will be enabled <span class="pl-k">for</span> TensorFlow.
Do you wish to build TensorFlow with ROCm support<span class="pl-k">?</span> [y/N]: n
No ROCm support will be enabled <span class="pl-k">for</span> TensorFlow.
Do you wish to build TensorFlow with CUDA support<span class="pl-k">?</span> [y/N]: y
CUDA support will be enabled <span class="pl-k">for</span> TensorFlow.
Found CUDA 10.0 in:
C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64
C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include
Found cuDNN 7 in:
C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64
C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include
Please specify a list of comma-separated CUDA compute capabilities you want to build with.
You can find the compute capability of your device at: https://developer.nvidia.com/cuda-gpus.
Please note that each additional compute capability significantly increases your build <span class="pl-k">time</span> and binary size, and that TensorFlow only supports compute capabilities <span class="pl-k">></span>= 3.5 [Default is: 3.5,7.0]: 6.1
Please specify optimization flags to use during compilation when bazel option <span class="pl-s"><span class="pl-pds">"</span>--config=opt<span class="pl-pds">"</span></span> is specified [Default is /arch:AVX]: /arch:AVX2
Would you like to override eigen strong inline <span class="pl-k">for</span> some C++ compilation to reduce the compilation time<span class="pl-k">?</span> [Y/n]: y
Eigen strong inline overridden.
Preconfigured Bazel build configs. You can use any of the below by adding <span class="pl-s"><span class="pl-pds">"</span>--config=<><span class="pl-pds">"</span></span> to your build command. See .bazelrc <span class="pl-k">for</span> more details.
--config=mkl <span class="pl-c"><span class="pl-c">#</span> Build with MKL support.</span>
--config=monolithic <span class="pl-c"><span class="pl-c">#</span> Config for mostly static monolithic build.</span>
--config=gdr <span class="pl-c"><span class="pl-c">#</span> Build with GDR support.</span>
--config=verbs <span class="pl-c"><span class="pl-c">#</span> Build with libverbs support.</span>
--config=ngraph <span class="pl-c"><span class="pl-c">#</span> Build with Intel nGraph support.</span>
--config=numa <span class="pl-c"><span class="pl-c">#</span> Build with NUMA support.</span>
--config=dynamic_kernels <span class="pl-c"><span class="pl-c">#</span> (Experimental) Build kernels into separate shared objects.</span>
Preconfigured Bazel build configs to DISABLE default on features:
--config=noaws <span class="pl-c"><span class="pl-c">#</span> Disable AWS S3 filesystem support.</span>
--config=nogcp <span class="pl-c"><span class="pl-c">#</span> Disable GCP support.</span>
--config=nohdfs <span class="pl-c"><span class="pl-c">#</span> Disable HDFS support.</span>
--config=noignite <span class="pl-c"><span class="pl-c">#</span> Disable Apache Ignite support.</span>
--config=nokafka <span class="pl-c"><span class="pl-c">#</span> Disable Apache Kafka support.</span>
--config=nonccl <span class="pl-c"><span class="pl-c">#</span> Disable NVIDIA NCCL support.</span>
(base) Stepii@STEPII D:<span class="pl-cce">\N</span>eural<span class="pl-cce">\t</span>ensorflow
$ bazel build --config=opt --define=no_tensorflow_py_deps=true //tensorflow/tools/pip_package:build_pip_package -j 12
[...]
ERROR: D:/neural/tensorflow/tensorflow/compiler/xla/BUILD:366:1: C++ compilation of rule <span class="pl-s"><span class="pl-pds">'</span>//tensorflow/compiler/xla:literal<span class="pl-pds">'</span></span> failed (Exit 3): python.exe failed: error executing <span class="pl-c1">command</span>
<span class="pl-c1">cd</span> C:/users/stepii/_bazel_stepii/5mniti2w/execroot/org_tensorflow
SET CUDA_TOOLKIT_PATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0
SET INCLUDE=C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\M</span>icrosoft Visual Studio<span class="pl-cce">\2</span>017<span class="pl-cce">\C</span>ommunity<span class="pl-cce">\V</span>C<span class="pl-cce">\T</span>ools<span class="pl-cce">\M</span>SVC<span class="pl-cce">\1</span>4.16.27023<span class="pl-cce">\A</span>TLMFC<span class="pl-cce">\i</span>nclude<span class="pl-k">;</span>C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\M</span>icrosoft Visual Studio<span class="pl-cce">\2</span>017<span class="pl-cce">\C</span>ommunity<span class="pl-cce">\V</span>C<span class="pl-cce">\T</span>ools<span class="pl-cce">\M</span>SVC<span class="pl-cce">\1</span>4.16.27023<span class="pl-cce">\i</span>nclude<span class="pl-k">;</span>C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\W</span>indows Kits<span class="pl-cce">\1</span>0<span class="pl-cce">\i</span>nclude<span class="pl-cce">\1</span>0.0.17763.0<span class="pl-cce">\u</span>crt<span class="pl-k">;</span>C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\W</span>indows Kits<span class="pl-cce">\1</span>0<span class="pl-cce">\i</span>nclude<span class="pl-cce">\1</span>0.0.17763.0<span class="pl-cce">\s</span>hared<span class="pl-k">;</span>C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\W</span>indows Kits<span class="pl-cce">\1</span>0<span class="pl-cce">\i</span>nclude<span class="pl-cce">\1</span>0.0.17763.0<span class="pl-cce">\u</span>m<span class="pl-k">;</span>C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\W</span>indows Kits<span class="pl-cce">\1</span>0<span class="pl-cce">\i</span>nclude<span class="pl-cce">\1</span>0.0.17763.0<span class="pl-cce">\w</span>inrt<span class="pl-k">;</span>C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\W</span>indows Kits<span class="pl-cce">\1</span>0<span class="pl-cce">\i</span>nclude<span class="pl-cce">\1</span>0.0.17763.0<span class="pl-cce">\c</span>ppwinrt
SET LIB=C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\M</span>icrosoft Visual Studio<span class="pl-cce">\2</span>017<span class="pl-cce">\C</span>ommunity<span class="pl-cce">\V</span>C<span class="pl-cce">\T</span>ools<span class="pl-cce">\M</span>SVC<span class="pl-cce">\1</span>4.16.27023<span class="pl-cce">\A</span>TLMFC<span class="pl-cce">\l</span>ib<span class="pl-cce">\x</span>64<span class="pl-k">;</span>C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\M</span>icrosoft Visual Studio<span class="pl-cce">\2</span>017<span class="pl-cce">\C</span>ommunity<span class="pl-cce">\V</span>C<span class="pl-cce">\T</span>ools<span class="pl-cce">\M</span>SVC<span class="pl-cce">\1</span>4.16.27023<span class="pl-cce">\l</span>ib<span class="pl-cce">\x</span>64<span class="pl-k">;</span>C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\W</span>indows Kits<span class="pl-cce">\1</span>0<span class="pl-cce">\l</span>ib<span class="pl-cce">\1</span>0.0.17763.0<span class="pl-cce">\u</span>crt<span class="pl-cce">\x</span>64<span class="pl-k">;</span>C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\W</span>indows Kits<span class="pl-cce">\1</span>0<span class="pl-cce">\l</span>ib<span class="pl-cce">\1</span>0.0.17763.0<span class="pl-cce">\u</span>m<span class="pl-cce">\x</span>64<span class="pl-k">;</span>
SET PATH=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\bin\Roslyn;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Team Tools\Performance Tools\x64;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Team Tools\Performance Tools;C:\Program Files (x86)\Microsoft Visual Studio\Shared\Common\VSPerfCollectionTools\\x64;C:\Program Files (x86)\Microsoft Visual Studio\Shared\Common\VSPerfCollectionTools\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.17763.0\x64;C:\Program Files (x86)\Windows Kits\10\bin\x64;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\\MSBuild\15.0\bin;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\;;C:\Windows\system32;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\Ninja
SET PWD=/proc/self/cwd
SET PYTHON_BIN_PATH=D:/Programs/Anaconda3/python.exe
SET PYTHON_LIB_PATH=D:/Programs/Anaconda3/lib/site-packages
SET TEMP=C:<span class="pl-cce">\U</span>sers<span class="pl-cce">\S</span>tepii<span class="pl-cce">\A</span>ppData<span class="pl-cce">\L</span>ocal<span class="pl-cce">\T</span>emp
SET TF_CONFIGURE_IOS=0
SET TF_CUDA_CLANG=0
SET TF_CUDA_COMPUTE_CAPABILITIES=6.1
SET TF_NEED_CUDA=1
SET TF_NEED_OPENCL_SYCL=0
SET TF_NEED_ROCM=0
SET TF_NEED_TENSORRT=0
SET TMP=C:<span class="pl-cce">\U</span>sers<span class="pl-cce">\S</span>tepii<span class="pl-cce">\A</span>ppData<span class="pl-cce">\L</span>ocal<span class="pl-cce">\T</span>emp
D:/Programs/Anaconda3/python.exe -B external/local_config_cuda/crosstool/windows/msvc_wrapper_for_nvcc.py /nologo /DCOMPILER_MSVC /DNOMINMAX /D_WIN32_WINNT=0x0600 /D_CRT_SECURE_NO_DEPRECATE /D_CRT_SECURE_NO_WARNINGS /D_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS /bigobj /Zm500 /J /Gy /GF /EHsc /wd4351 /wd4291 /wd4250 /wd4996 /I. /Ibazel-out/x64_windows-opt/genfiles /Ibazel-out/x64_windows-opt/bin /Iexternal/com_google_absl /Ibazel-out/x64_windows-opt/genfiles/external/com_google_absl /Ibazel-out/x64_windows-opt/bin/external/com_google_absl /Iexternal/nsync /Ibazel-out/x64_windows-opt/genfiles/external/nsync /Ibazel-out/x64_windows-opt/bin/external/nsync /Iexternal/eigen_archive /Ibazel-out/x64_windows-opt/genfiles/external/eigen_archive /Ibazel-out/x64_windows-opt/bin/external/eigen_archive /Iexternal/local_config_sycl /Ibazel-out/x64_windows-opt/genfiles/external/local_config_sycl /Ibazel-out/x64_windows-opt/bin/external/local_config_sycl /Iexternal/gif_archive /Ibazel-out/x64_windows-opt/genfiles/external/gif_archive /Ibazel-out/x64_windows-opt/bin/external/gif_archive /Iexternal/jpeg /Ibazel-out/x64_windows-opt/genfiles/external/jpeg /Ibazel-out/x64_windows-opt/bin/external/jpeg /Iexternal/protobuf_archive /Ibazel-out/x64_windows-opt/genfiles/external/protobuf_archive /Ibazel-out/x64_windows-opt/bin/external/protobuf_archive /Iexternal/com_googlesource_code_re2 /Ibazel-out/x64_windows-opt/genfiles/external/com_googlesource_code_re2 /Ibazel-out/x64_windows-opt/bin/external/com_googlesource_code_re2 /Iexternal/farmhash_archive /Ibazel-out/x64_windows-opt/genfiles/external/farmhash_archive /Ibazel-out/x64_windows-opt/bin/external/farmhash_archive /Iexternal/fft2d /Ibazel-out/x64_windows-opt/genfiles/external/fft2d /Ibazel-out/x64_windows-opt/bin/external/fft2d /Iexternal/highwayhash /Ibazel-out/x64_windows-opt/genfiles/external/highwayhash /Ibazel-out/x64_windows-opt/bin/external/highwayhash /Iexternal/zlib_archive /Ibazel-out/x64_windows-opt/genfiles/external/zlib_archive /Ibazel-out/x64_windows-opt/bin/external/zlib_archive /Iexternal/double_conversion /Ibazel-out/x64_windows-opt/genfiles/external/double_conversion /Ibazel-out/x64_windows-opt/bin/external/double_conversion /Iexternal/snappy /Ibazel-out/x64_windows-opt/genfiles/external/snappy /Ibazel-out/x64_windows-opt/bin/external/snappy /Iexternal/nsync/public /Ibazel-out/x64_windows-opt/genfiles/external/nsync/public /Ibazel-out/x64_windows-opt/bin/external/nsync/public /Iexternal/eigen_archive /Ibazel-out/x64_windows-opt/genfiles/external/eigen_archive /Ibazel-out/x64_windows-opt/bin/external/eigen_archive /Iexternal/gif_archive/lib /Ibazel-out/x64_windows-opt/genfiles/external/gif_archive/lib /Ibazel-out/x64_windows-opt/bin/external/gif_archive/lib /Iexternal/gif_archive/windows /Ibazel-out/x64_windows-opt/genfiles/external/gif_archive/windows /Ibazel-out/x64_windows-opt/bin/external/gif_archive/windows /Iexternal/protobuf_archive/src /Ibazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src /Ibazel-out/x64_windows-opt/bin/external/protobuf_archive/src /Iexternal/farmhash_archive/src /Ibazel-out/x64_windows-opt/genfiles/external/farmhash_archive/src /Ibazel-out/x64_windows-opt/bin/external/farmhash_archive/src /Iexternal/zlib_archive /Ibazel-out/x64_windows-opt/genfiles/external/zlib_archive /Ibazel-out/x64_windows-opt/bin/external/zlib_archive /Iexternal/double_conversion /Ibazel-out/x64_windows-opt/genfiles/external/double_conversion /Ibazel-out/x64_windows-opt/bin/external/double_conversion /D__CLANG_SUPPORT_DYN_ANNOTATION__ /DEIGEN_MPL2_ONLY /DEIGEN_MAX_ALIGN_BYTES=64 /DEIGEN_HAS_TYPE_TRAITS=0 /DTF_USE_SNAPPY /showIncludes /MD /O2 /DNDEBUG -w -DWIN32_LEAN_AND_MEAN /arch:AVX2 /Fobazel-out/x64_windows-opt/bin/tensorflow/compiler/xla/_objs/literal/literal.o /c tensorflow/compiler/xla/literal.cc
Execution platform: @bazel_tools//platforms:host_platform
c:<span class="pl-cce">\u</span>sers<span class="pl-cce">\s</span>tepii<span class="pl-cce">\_</span>bazel_stepii<span class="pl-cce">\5</span>mniti2w<span class="pl-cce">\e</span>xecroot<span class="pl-cce">\o</span>rg_tensorflow<span class="pl-cce">\t</span>ensorflow<span class="pl-cce">\c</span>ompiler<span class="pl-cce">\x</span>la<span class="pl-cce">\l</span>iteral.cc(1291) <span class="pl-c1">:</span> fatal error C1001: An internal error has occurred <span class="pl-k">in</span> the compiler.
(compiler file <span class="pl-s"><span class="pl-pds">'</span>d:\agent\_work\1\s\src\vctools\compiler\utc\src\p2\main.c<span class="pl-pds">'</span></span>, line 187)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support <span class="pl-c1">command</span> on the Visual C++
Help menu, or open the Technical Support <span class="pl-c1">help</span> file <span class="pl-k">for</span> more information
<span class="pl-en">cl!InvokeCompilerPassW</span>()+0x3e708
c:<span class="pl-cce">\u</span>sers<span class="pl-cce">\s</span>tepii<span class="pl-cce">\_</span>bazel_stepii<span class="pl-cce">\5</span>mniti2w<span class="pl-cce">\e</span>xecroot<span class="pl-cce">\o</span>rg_tensorflow<span class="pl-cce">\t</span>ensorflow<span class="pl-cce">\c</span>ompiler<span class="pl-cce">\x</span>la<span class="pl-cce">\l</span>iteral.cc(1291) <span class="pl-c1">:</span> fatal error C1001: An internal error has occurred <span class="pl-k">in</span> the compiler.
(compiler file <span class="pl-s"><span class="pl-pds">'</span>d:\agent\_work\1\s\src\vctools\compiler\utc\src\common\error.c<span class="pl-pds">'</span></span>, line 835)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support <span class="pl-c1">command</span> on the Visual C++
Help menu, or open the Technical Support <span class="pl-c1">help</span> file <span class="pl-k">for</span> more information
Target //tensorflow/tools/pip_package:build_pip_package failed to build
INFO: Elapsed time: 1698.097s, Critical Path: 416.10s
INFO: 3624 processes: 3624 local.
FAILED: Build did NOT <span class="pl-c1">complete</span> successfully</pre></div>
<p dir="auto"><strong>Any other info / logs</strong><br>
Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached.</p>
<p dir="auto">See <a href="https://github.com/tensorflow/tensorflow/files/3123796/FullLog.txt">FullLog.txt</a>.</p> | <p dir="auto"><em>Please make sure that this is a build/installation issue. As per our <a href="https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md">GitHub Policy</a>, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:build_template</em></p>
<p dir="auto"><strong>System information</strong></p>
<ul dir="auto">
<li>OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 10 64 bit</li>
<li>Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: N/A</li>
<li>TensorFlow installed from (source or binary): source</li>
<li>TensorFlow version: checkout from <code class="notranslate">master</code> branch</li>
<li>Python version: Python 3.6.8 :: Anaconda, Inc.</li>
<li>Installed using virtualenv? pip? conda?: conda 4.6.14</li>
<li>Bazel version (if compiling from source): 0.24.1</li>
<li>GCC/Compiler version (if compiling from source): cl.exe C/C++ Optimizing Compiler Version 19.16.27030.1 for x64, Visual Studio Build Tools 2017</li>
<li>CUDA/cuDNN version: CUDA Toolkit V10.0.130, cuDNN 7.5.0</li>
<li>GPU model and memory: GTX 1060 6GB</li>
</ul>
<p dir="auto"><strong>Describe the problem</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="tensorflow/stream_executor/gpu/gpu_timer.cc(29): error C2039: 'CreateEventA': is not a member of 'stream_executor::gpu::GpuDriver'
tensorflow/stream_executor/gpu/gpu_timer.cc(29): error C2660: 'CreateEventA': function does not take 3 arguments
tensorflow/stream_executor/gpu/gpu_timer.cc(36): error C2039: 'CreateEventA': is not a member of 'stream_executor::gpu::GpuDriver'
tensorflow/stream_executor/gpu/gpu_timer.cc(36): error C2660: 'CreateEventA': function does not take 3 arguments"><pre class="notranslate"><code class="notranslate">tensorflow/stream_executor/gpu/gpu_timer.cc(29): error C2039: 'CreateEventA': is not a member of 'stream_executor::gpu::GpuDriver'
tensorflow/stream_executor/gpu/gpu_timer.cc(29): error C2660: 'CreateEventA': function does not take 3 arguments
tensorflow/stream_executor/gpu/gpu_timer.cc(36): error C2039: 'CreateEventA': is not a member of 'stream_executor::gpu::GpuDriver'
tensorflow/stream_executor/gpu/gpu_timer.cc(36): error C2660: 'CreateEventA': function does not take 3 arguments
</code></pre></div>
<p dir="auto">In tensorflow/stream_executor/gpu/gpu_timer.cc(29) the function is <code class="notranslate">CreateEvent</code>:</p>
<div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="29 port::Status status = GpuDriver::CreateEvent(context, &start_event_,
30 GpuDriver::EventFlags::kDefault);"><pre class="notranslate"><span class="pl-c1">29</span> port::Status status = GpuDriver::CreateEvent(context, &start_event_,
<span class="pl-c1">30</span> GpuDriver::EventFlags::<span class="pl-c1">kDefault</span>);</pre></div>
<p dir="auto">But compiler looks for <code class="notranslate">CreateEventA</code>. Maybe there is a Windows macro conflicting with that symbol.</p>
<p dir="auto"><strong>Provide the exact sequence of commands / steps that you executed before running into the problem</strong></p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="(neural) Stepii@STEPII D:\Neural\tensorflow
$ python configure.py
WARNING: --batch mode is deprecated. Please instead explicitly shut down your Bazel server using the command "bazel shutdown".
You have bazel 0.24.1 installed.
Please specify the location of python. [Default is D:\Programs\Anaconda3\envs\neural\python.exe]:
Found possible Python library paths:
D:\Programs\Anaconda3\envs\neural\lib\site-packages
Please input the desired Python library path to use. Default is [D:\Programs\Anaconda3\envs\neural\lib\site-packages]
Do you wish to build TensorFlow with XLA JIT support? [y/N]: y
XLA JIT support will be enabled for TensorFlow.
Do you wish to build TensorFlow with ROCm support? [y/N]:
No ROCm support will be enabled for TensorFlow.
Do you wish to build TensorFlow with CUDA support? [y/N]: y
CUDA support will be enabled for TensorFlow.
Found CUDA 10.0 in:
C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64
C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include
Found cuDNN 7 in:
C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64
C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include
Please specify a list of comma-separated CUDA compute capabilities you want to build with.
You can find the compute capability of your device at: https://developer.nvidia.com/cuda-gpus.
Please note that each additional compute capability significantly increases your build time and binary size, and that TensorFlow only supports compute capabilities >= 3.5 [Default is: 3.5,7.0]: 6.1
Please specify optimization flags to use during compilation when bazel option "--config=opt" is specified [Default is /arch:AVX]: /arch:AVX2
Would you like to override eigen strong inline for some C++ compilation to reduce the compilation time? [Y/n]:
Eigen strong inline overridden.
Preconfigured Bazel build configs. You can use any of the below by adding "--config=<>" to your build command. See .bazelrc for more details.
--config=mkl # Build with MKL support.
--config=monolithic # Config for mostly static monolithic build.
--config=gdr # Build with GDR support.
--config=verbs # Build with libverbs support.
--config=ngraph # Build with Intel nGraph support.
--config=numa # Build with NUMA support.
--config=dynamic_kernels # (Experimental) Build kernels into separate shared objects.
Preconfigured Bazel build configs to DISABLE default on features:
--config=noaws # Disable AWS S3 filesystem support.
--config=nogcp # Disable GCP support.
--config=nohdfs # Disable HDFS support.
--config=noignite # Disable Apache Ignite support.
--config=nokafka # Disable Apache Kafka support.
--config=nonccl # Disable NVIDIA NCCL support.
(neural) Stepii@STEPII D:\Neural\tensorflow
$ bazel build --config=opt --define=no_tensorflow_py_deps=true //tensorflow/tools/pip_package:build_pip_package -j 12
[...]
ERROR: D:/neural/tensorflow/tensorflow/stream_executor/gpu/BUILD:168:1: C++ compilation of rule '//tensorflow/stream_executor/gpu:gpu_timer' failed (Exit 2): python.exe failed: error executing command
cd C:/users/stepii/_bazel_stepii/5mniti2w/execroot/org_tensorflow
SET CUDA_TOOLKIT_PATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0
SET INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\ATLMFC\include;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\ucrt;C:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\shared;C:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\um;C:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\winrt;C:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\cppwinrt
SET LIB=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\ATLMFC\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\lib\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.17763.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.17763.0\um\x64;
SET PATH=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019A26nPRjStR25RPVWFZL5iMn5PgXYVtDTages;C:\Program Files (x86)\Microsoft Visual Studio\2019A26nPRe3js3W69CrGF8kKXvvmYtT4zNGqicXRjvuAnmmbvPZXu5yRJVindow;C:\Program Files (x86)\Microsoft Visual Studio\2019A26nPRe3js3W69CrGF8kKXvvmYtT4zNGqicXRjvuAnmmbvPZXu5yRJVx9R2xvWau\Team Explorer;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\bin\Roslyn;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Team Tools\Performance Tools\x64;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Team Tools\Performance Tools;C:\Program Files (x86)\Microsoft Visual SXgi164MCGG3u5RKXaBGVBabmxQTVRAAVE5tDTools\\x64;C:\Program Files (x86)\Microsoft Visual SXgi164MCGG3u5RKXaBGVBabmxQTVRAAVE5tDTools\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.17763.0\x64;C:\Program Files (x86)\Windows Kits\10\bin\x64;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\\MSBuild\15.0\bin;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\;;C:\Windows\system32;C:\Program Files (x86)\Microsoft Visual Studio\2019A26nPRe3js3W69CrGF8kKXvvmYtT4zNGqicXRjvuAnmmbvPZXu5yRJVx9R2xvWaun;C:\Program Files (x86)\Microsoft Visual Studio\2019A26nPRe3js3W69CrGF8kKXvvmYtT4zNGqicXRjvuAnmmbvPZXu5yRJV\Ninja
SET PWD=/proc/self/cwd
SET PYTHON_BIN_PATH=D:/Programs/Anaconda3/envs/neural/python.exe
SET PYTHON_LIB_PATH=D:/Programs/Anaconda3/envs/neural/lib/site-packages
SET TEMP=C:\Users\Stepii\AppData\Local\Temp
SET TF_CONFIGURE_IOS=0
SET TF_CUDA_CLANG=0
SET TF_CUDA_COMPUTE_CAPABILITIES=6.1
SET TF_NEED_CUDA=1
SET TF_NEED_OPENCL_SYCL=0
SET TF_NEED_ROCM=0
SET TF_NEED_TENSORRT=0
SET TMP=C:\Users\Stepii\AppData\Local\Temp
D:/Programs/Anaconda3/envs/neural/python.exe -B external/local_config_cuda/crosstool/windows/msvc_wrapper_for_nvcc.py /nologo /DCOMPILER_MSVC /DNOMINMAX /D_WIN32_WINNT=0x0600 /D_CRT_SECURE_NO_DEPRECATE /D_CRT_SECURE_NO_WARNINGS /D_SXgi164MCGG3u5RKXaBGVBabmxQTVRAAVE5tDTGS /bigobj /Zm500 /J /Gy /GF /EHsc /wd4351 /wd4291 /wd4250 /wd4996 /I. /Ibazel-out/x64_windows-opt/genfiles /Ibazel-out/x64_windows-opt/bin /Iexternal/com_google_absl /Ibazel-out/x64_windows-opt/genfiles/external/com_google_absl /Ibazel-out/x64_windows-opt/bin/external/com_google_absl /Iexternal/nsync /Ibazel-out/x64_windows-opt/genfiles/external/nsync /Ibazel-out/x64_windows-opt/bin/external/nsync /Iexternal/eigen_archive /Ibazel-out/x64_windows-opt/genfiles/external/eigen_archive /Ibazel-out/x64_windows-opt/bin/external/eigen_archive /Iexternal/local_config_sycl /Ibazel-out/x64_windows-opt/genfiles/external/local_config_sycl /Ibazel-out/x64_windows-opt/bin/external/local_config_sycl /Iexternal/gif_archive /Ibazel-out/x64_windows-opt/genfiles/external/gif_archive /Ibazel-out/x64_windows-opt/bin/external/gif_archive /Iexternal/jpeg /Ibazel-out/x64_windows-opt/genfiles/external/jpeg /Ibazel-out/x64_windows-opt/bin/external/jpeg /Iexternal/protobuf_archive /Ibazel-out/x64_windows-opt/genfiles/external/protobuf_archive /Ibazel-out/x64_windows-opt/bin/external/protobuf_archive /Iexternal/com_googlesource_code_re2 /Ibazel-out/x64_windows-opt/genfiles/external/com_googlesource_code_re2 /Ibazel-out/x64_windows-opt/bin/external/com_googlesource_code_re2 /Iexternal/farmhash_archive /Ibazel-out/x64_windows-opt/genfiles/external/farmhash_archive /Ibazel-out/x64_windows-opt/bin/external/farmhash_archive /Iexternal/fft2d /Ibazel-out/x64_windows-opt/genfiles/external/fft2d /Ibazel-out/x64_windows-opt/bin/external/fft2d /Iexternal/highwayhash /Ibazel-out/x64_windows-opt/genfiles/external/highwayhash /Ibazel-out/x64_windows-opt/bin/external/highwayhash /Iexternal/zlib_archive /Ibazel-out/x64_windows-opt/genfiles/external/zlib_archive /Ibazel-out/x64_windows-opt/bin/external/zlib_archive /Iexternal/double_conversion /Ibazel-out/x64_windows-opt/genfiles/external/double_conversion /Ibazel-out/x64_windows-opt/bin/external/double_conversion /Iexternal/snappy /Ibazel-out/x64_windows-opt/genfiles/external/snappy /Ibazel-out/x64_windows-opt/bin/external/snappy /Iexternal/local_config_cuda /Ibazel-out/x64_windows-opt/genfiles/external/local_config_cuda /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda /Iexternal/nsync/public /Ibazel-out/x64_windows-opt/genfiles/external/nsync/public /Ibazel-out/x64_windows-opt/bin/external/nsync/public /Iexternal/eigen_archive /Ibazel-out/x64_windows-opt/genfiles/external/eigen_archive /Ibazel-out/x64_windows-opt/bin/external/eigen_archive /Iexternal/gif_archive/lib /Ibazel-out/x64_windows-opt/genfiles/external/gif_archive/lib /Ibazel-out/x64_windows-opt/bin/external/gif_archive/lib /Iexternal/gif_archive/windows /Ibazel-out/x64_windows-opt/genfiles/external/gif_archive/windows /Ibazel-out/x64_windows-opt/bin/external/gif_archive/windows /Iexternal/protobuf_archive/src /Ibazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src /Ibazel-out/x64_windows-opt/bin/external/protobuf_archive/src /Iexternal/farmhash_archive/src /Ibazel-out/x64_windows-opt/genfiles/external/farmhash_archive/src /Ibazel-out/x64_windows-opt/bin/external/farmhash_archive/src /Iexternal/zlib_archive /Ibazel-out/x64_windows-opt/genfiles/external/zlib_archive /Ibazel-out/x64_windows-opt/bin/external/zlib_archive /Iexternal/double_conversion /Ibazel-out/x64_windows-opt/genfiles/external/double_conversion /Ibazel-out/x64_windows-opt/bin/external/double_conversion /Iexternal/local_config_cuda/cuda /Ibazel-out/x64_windows-opt/genfiles/external/local_config_cuda/cuda /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda /Iexternal/local_config_cuda/cuda/cuda/include /Ibazel-out/x64_windows-opt/genfiles/external/local_config_cuda/cuda/cuda/include /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/cuda/include /Iexternal/local_config_cuda/cuda/cuda/include/crt /Ibazel-out/x64_windows-opt/genfiles/external/local_config_cuda/cuda/cuda/include/crt /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/cuda/include/crt /D__CLANG_SUPPORT_DYN_ANNOTATION__ /DEIGEN_MPL2_ONLY /DEIGEN_MAX_ALIGN_BYTES=64 /DEIGEN_HAS_TYPE_TRAITS=0 /DTF_USE_SNAPPY /showIncludes /MD /O2 /DNDEBUG -w -DWIN32_LEAN_AND_MEAN -DNOGDI /arch:AVX2 /Fobazel-out/x64_windows-opt/bin/tensorflow/stream_executor/gpu/_objs/gpu_timer/gpu_timer.o /c tensorflow/stream_executor/gpu/gpu_timer.cc
Execution platform: @bazel_tools//platforms:host_platform
tensorflow/stream_executor/gpu/gpu_timer.cc(29): error C2039: 'CreateEventA': is not a member of 'stream_executor::gpu::GpuDriver'
.\tensorflow/stream_executor/gpu/gpu_driver.h(60): note: see declaration of 'stream_executor::gpu::GpuDriver'
tensorflow/stream_executor/gpu/gpu_timer.cc(29): error C2660: 'CreateEventA': function does not take 3 arguments
C:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\um\synchapi.h(469): note: see declaration of 'CreateEventA'
tensorflow/stream_executor/gpu/gpu_timer.cc(36): error C2039: 'CreateEventA': is not a member of 'stream_executor::gpu::GpuDriver'
.\tensorflow/stream_executor/gpu/gpu_driver.h(60): note: see declaration of 'stream_executor::gpu::GpuDriver'
tensorflow/stream_executor/gpu/gpu_timer.cc(36): error C2660: 'CreateEventA': function does not take 3 arguments
C:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\um\synchapi.h(469): note: see declaration of 'CreateEventA'
Target //tensorflow/tools/pip_package:build_pip_package failed to build
INFO: Elapsed time: 679.504s, Critical Path: 262.52s
INFO: 1869 processes: 1869 local.
FAILED: Build did NOT complete successfully"><pre class="notranslate">(neural) Stepii@STEPII D:<span class="pl-cce">\N</span>eural<span class="pl-cce">\t</span>ensorflow
$ python configure.py
WARNING: --batch mode is deprecated. Please instead explicitly shut down your Bazel server using the <span class="pl-c1">command</span> <span class="pl-s"><span class="pl-pds">"</span>bazel shutdown<span class="pl-pds">"</span></span>.
You have bazel 0.24.1 installed.
Please specify the location of python. [Default is D:<span class="pl-cce">\P</span>rograms<span class="pl-cce">\A</span>naconda3<span class="pl-cce">\e</span>nvs<span class="pl-cce">\n</span>eural<span class="pl-cce">\p</span>ython.exe]:
Found possible Python library paths:
D:<span class="pl-cce">\P</span>rograms<span class="pl-cce">\A</span>naconda3<span class="pl-cce">\e</span>nvs<span class="pl-cce">\n</span>eural<span class="pl-cce">\l</span>ib<span class="pl-cce">\s</span>ite-packages
Please input the desired Python library path to use. Default is [D:<span class="pl-cce">\P</span>rograms<span class="pl-cce">\A</span>naconda3<span class="pl-cce">\e</span>nvs<span class="pl-cce">\n</span>eural<span class="pl-cce">\l</span>ib<span class="pl-cce">\s</span>ite-packages]
Do you wish to build TensorFlow with XLA JIT support<span class="pl-k">?</span> [y/N]: y
XLA JIT support will be enabled <span class="pl-k">for</span> TensorFlow.
Do you wish to build TensorFlow with ROCm support<span class="pl-k">?</span> [y/N]:
No ROCm support will be enabled <span class="pl-k">for</span> TensorFlow.
Do you wish to build TensorFlow with CUDA support<span class="pl-k">?</span> [y/N]: y
CUDA support will be enabled <span class="pl-k">for</span> TensorFlow.
Found CUDA 10.0 in:
C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64
C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include
Found cuDNN 7 in:
C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64
C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include
Please specify a list of comma-separated CUDA compute capabilities you want to build with.
You can find the compute capability of your device at: https://developer.nvidia.com/cuda-gpus.
Please note that each additional compute capability significantly increases your build <span class="pl-k">time</span> and binary size, and that TensorFlow only supports compute capabilities <span class="pl-k">></span>= 3.5 [Default is: 3.5,7.0]: 6.1
Please specify optimization flags to use during compilation when bazel option <span class="pl-s"><span class="pl-pds">"</span>--config=opt<span class="pl-pds">"</span></span> is specified [Default is /arch:AVX]: /arch:AVX2
Would you like to override eigen strong inline <span class="pl-k">for</span> some C++ compilation to reduce the compilation time<span class="pl-k">?</span> [Y/n]:
Eigen strong inline overridden.
Preconfigured Bazel build configs. You can use any of the below by adding <span class="pl-s"><span class="pl-pds">"</span>--config=<><span class="pl-pds">"</span></span> to your build command. See .bazelrc <span class="pl-k">for</span> more details.
--config=mkl <span class="pl-c"><span class="pl-c">#</span> Build with MKL support.</span>
--config=monolithic <span class="pl-c"><span class="pl-c">#</span> Config for mostly static monolithic build.</span>
--config=gdr <span class="pl-c"><span class="pl-c">#</span> Build with GDR support.</span>
--config=verbs <span class="pl-c"><span class="pl-c">#</span> Build with libverbs support.</span>
--config=ngraph <span class="pl-c"><span class="pl-c">#</span> Build with Intel nGraph support.</span>
--config=numa <span class="pl-c"><span class="pl-c">#</span> Build with NUMA support.</span>
--config=dynamic_kernels <span class="pl-c"><span class="pl-c">#</span> (Experimental) Build kernels into separate shared objects.</span>
Preconfigured Bazel build configs to DISABLE default on features:
--config=noaws <span class="pl-c"><span class="pl-c">#</span> Disable AWS S3 filesystem support.</span>
--config=nogcp <span class="pl-c"><span class="pl-c">#</span> Disable GCP support.</span>
--config=nohdfs <span class="pl-c"><span class="pl-c">#</span> Disable HDFS support.</span>
--config=noignite <span class="pl-c"><span class="pl-c">#</span> Disable Apache Ignite support.</span>
--config=nokafka <span class="pl-c"><span class="pl-c">#</span> Disable Apache Kafka support.</span>
--config=nonccl <span class="pl-c"><span class="pl-c">#</span> Disable NVIDIA NCCL support.</span>
(neural) Stepii@STEPII D:<span class="pl-cce">\N</span>eural<span class="pl-cce">\t</span>ensorflow
$ bazel build --config=opt --define=no_tensorflow_py_deps=true //tensorflow/tools/pip_package:build_pip_package -j 12
[...]
ERROR: D:/neural/tensorflow/tensorflow/stream_executor/gpu/BUILD:168:1: C++ compilation of rule <span class="pl-s"><span class="pl-pds">'</span>//tensorflow/stream_executor/gpu:gpu_timer<span class="pl-pds">'</span></span> failed (Exit 2): python.exe failed: error executing <span class="pl-c1">command</span>
<span class="pl-c1">cd</span> C:/users/stepii/_bazel_stepii/5mniti2w/execroot/org_tensorflow
SET CUDA_TOOLKIT_PATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0
SET INCLUDE=C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\M</span>icrosoft Visual Studio<span class="pl-cce">\2</span>017<span class="pl-cce">\C</span>ommunity<span class="pl-cce">\V</span>C<span class="pl-cce">\T</span>ools<span class="pl-cce">\M</span>SVC<span class="pl-cce">\1</span>4.16.27023<span class="pl-cce">\A</span>TLMFC<span class="pl-cce">\i</span>nclude<span class="pl-k">;</span>C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\M</span>icrosoft Visual Studio<span class="pl-cce">\2</span>017<span class="pl-cce">\C</span>ommunity<span class="pl-cce">\V</span>C<span class="pl-cce">\T</span>ools<span class="pl-cce">\M</span>SVC<span class="pl-cce">\1</span>4.16.27023<span class="pl-cce">\i</span>nclude<span class="pl-k">;</span>C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\W</span>indows Kits<span class="pl-cce">\1</span>0<span class="pl-cce">\i</span>nclude<span class="pl-cce">\1</span>0.0.17763.0<span class="pl-cce">\u</span>crt<span class="pl-k">;</span>C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\W</span>indows Kits<span class="pl-cce">\1</span>0<span class="pl-cce">\i</span>nclude<span class="pl-cce">\1</span>0.0.17763.0<span class="pl-cce">\s</span>hared<span class="pl-k">;</span>C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\W</span>indows Kits<span class="pl-cce">\1</span>0<span class="pl-cce">\i</span>nclude<span class="pl-cce">\1</span>0.0.17763.0<span class="pl-cce">\u</span>m<span class="pl-k">;</span>C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\W</span>indows Kits<span class="pl-cce">\1</span>0<span class="pl-cce">\i</span>nclude<span class="pl-cce">\1</span>0.0.17763.0<span class="pl-cce">\w</span>inrt<span class="pl-k">;</span>C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\W</span>indows Kits<span class="pl-cce">\1</span>0<span class="pl-cce">\i</span>nclude<span class="pl-cce">\1</span>0.0.17763.0<span class="pl-cce">\c</span>ppwinrt
SET LIB=C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\M</span>icrosoft Visual Studio<span class="pl-cce">\2</span>017<span class="pl-cce">\C</span>ommunity<span class="pl-cce">\V</span>C<span class="pl-cce">\T</span>ools<span class="pl-cce">\M</span>SVC<span class="pl-cce">\1</span>4.16.27023<span class="pl-cce">\A</span>TLMFC<span class="pl-cce">\l</span>ib<span class="pl-cce">\x</span>64<span class="pl-k">;</span>C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\M</span>icrosoft Visual Studio<span class="pl-cce">\2</span>017<span class="pl-cce">\C</span>ommunity<span class="pl-cce">\V</span>C<span class="pl-cce">\T</span>ools<span class="pl-cce">\M</span>SVC<span class="pl-cce">\1</span>4.16.27023<span class="pl-cce">\l</span>ib<span class="pl-cce">\x</span>64<span class="pl-k">;</span>C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\W</span>indows Kits<span class="pl-cce">\1</span>0<span class="pl-cce">\l</span>ib<span class="pl-cce">\1</span>0.0.17763.0<span class="pl-cce">\u</span>crt<span class="pl-cce">\x</span>64<span class="pl-k">;</span>C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\W</span>indows Kits<span class="pl-cce">\1</span>0<span class="pl-cce">\l</span>ib<span class="pl-cce">\1</span>0.0.17763.0<span class="pl-cce">\u</span>m<span class="pl-cce">\x</span>64<span class="pl-k">;</span>
SET PATH=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2019A26nPRjStR25RPVWFZL5iMn5PgXYVtDTages;C:\Program Files (x86)\Microsoft Visual Studio\2019A26nPRe3js3W69CrGF8kKXvvmYtT4zNGqicXRjvuAnmmbvPZXu5yRJVindow;C:\Program Files (x86)\Microsoft Visual Studio\2019A26nPRe3js3W69CrGF8kKXvvmYtT4zNGqicXRjvuAnmmbvPZXu5yRJVx9R2xvWau\Team Explorer;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\bin\Roslyn;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Team Tools\Performance Tools\x64;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Team Tools\Performance Tools;C:\Program Files (x86)\Microsoft Visual SXgi164MCGG3u5RKXaBGVBabmxQTVRAAVE5tDTools\\x64;C:\Program Files (x86)\Microsoft Visual SXgi164MCGG3u5RKXaBGVBabmxQTVRAAVE5tDTools\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.17763.0\x64;C:\Program Files (x86)\Windows Kits\10\bin\x64;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\\MSBuild\15.0\bin;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\;;C:\Windows\system32;C:\Program Files (x86)\Microsoft Visual Studio\2019A26nPRe3js3W69CrGF8kKXvvmYtT4zNGqicXRjvuAnmmbvPZXu5yRJVx9R2xvWaun;C:\Program Files (x86)\Microsoft Visual Studio\2019A26nPRe3js3W69CrGF8kKXvvmYtT4zNGqicXRjvuAnmmbvPZXu5yRJV\Ninja
SET PWD=/proc/self/cwd
SET PYTHON_BIN_PATH=D:/Programs/Anaconda3/envs/neural/python.exe
SET PYTHON_LIB_PATH=D:/Programs/Anaconda3/envs/neural/lib/site-packages
SET TEMP=C:<span class="pl-cce">\U</span>sers<span class="pl-cce">\S</span>tepii<span class="pl-cce">\A</span>ppData<span class="pl-cce">\L</span>ocal<span class="pl-cce">\T</span>emp
SET TF_CONFIGURE_IOS=0
SET TF_CUDA_CLANG=0
SET TF_CUDA_COMPUTE_CAPABILITIES=6.1
SET TF_NEED_CUDA=1
SET TF_NEED_OPENCL_SYCL=0
SET TF_NEED_ROCM=0
SET TF_NEED_TENSORRT=0
SET TMP=C:<span class="pl-cce">\U</span>sers<span class="pl-cce">\S</span>tepii<span class="pl-cce">\A</span>ppData<span class="pl-cce">\L</span>ocal<span class="pl-cce">\T</span>emp
D:/Programs/Anaconda3/envs/neural/python.exe -B external/local_config_cuda/crosstool/windows/msvc_wrapper_for_nvcc.py /nologo /DCOMPILER_MSVC /DNOMINMAX /D_WIN32_WINNT=0x0600 /D_CRT_SECURE_NO_DEPRECATE /D_CRT_SECURE_NO_WARNINGS /D_SXgi164MCGG3u5RKXaBGVBabmxQTVRAAVE5tDTGS /bigobj /Zm500 /J /Gy /GF /EHsc /wd4351 /wd4291 /wd4250 /wd4996 /I. /Ibazel-out/x64_windows-opt/genfiles /Ibazel-out/x64_windows-opt/bin /Iexternal/com_google_absl /Ibazel-out/x64_windows-opt/genfiles/external/com_google_absl /Ibazel-out/x64_windows-opt/bin/external/com_google_absl /Iexternal/nsync /Ibazel-out/x64_windows-opt/genfiles/external/nsync /Ibazel-out/x64_windows-opt/bin/external/nsync /Iexternal/eigen_archive /Ibazel-out/x64_windows-opt/genfiles/external/eigen_archive /Ibazel-out/x64_windows-opt/bin/external/eigen_archive /Iexternal/local_config_sycl /Ibazel-out/x64_windows-opt/genfiles/external/local_config_sycl /Ibazel-out/x64_windows-opt/bin/external/local_config_sycl /Iexternal/gif_archive /Ibazel-out/x64_windows-opt/genfiles/external/gif_archive /Ibazel-out/x64_windows-opt/bin/external/gif_archive /Iexternal/jpeg /Ibazel-out/x64_windows-opt/genfiles/external/jpeg /Ibazel-out/x64_windows-opt/bin/external/jpeg /Iexternal/protobuf_archive /Ibazel-out/x64_windows-opt/genfiles/external/protobuf_archive /Ibazel-out/x64_windows-opt/bin/external/protobuf_archive /Iexternal/com_googlesource_code_re2 /Ibazel-out/x64_windows-opt/genfiles/external/com_googlesource_code_re2 /Ibazel-out/x64_windows-opt/bin/external/com_googlesource_code_re2 /Iexternal/farmhash_archive /Ibazel-out/x64_windows-opt/genfiles/external/farmhash_archive /Ibazel-out/x64_windows-opt/bin/external/farmhash_archive /Iexternal/fft2d /Ibazel-out/x64_windows-opt/genfiles/external/fft2d /Ibazel-out/x64_windows-opt/bin/external/fft2d /Iexternal/highwayhash /Ibazel-out/x64_windows-opt/genfiles/external/highwayhash /Ibazel-out/x64_windows-opt/bin/external/highwayhash /Iexternal/zlib_archive /Ibazel-out/x64_windows-opt/genfiles/external/zlib_archive /Ibazel-out/x64_windows-opt/bin/external/zlib_archive /Iexternal/double_conversion /Ibazel-out/x64_windows-opt/genfiles/external/double_conversion /Ibazel-out/x64_windows-opt/bin/external/double_conversion /Iexternal/snappy /Ibazel-out/x64_windows-opt/genfiles/external/snappy /Ibazel-out/x64_windows-opt/bin/external/snappy /Iexternal/local_config_cuda /Ibazel-out/x64_windows-opt/genfiles/external/local_config_cuda /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda /Iexternal/nsync/public /Ibazel-out/x64_windows-opt/genfiles/external/nsync/public /Ibazel-out/x64_windows-opt/bin/external/nsync/public /Iexternal/eigen_archive /Ibazel-out/x64_windows-opt/genfiles/external/eigen_archive /Ibazel-out/x64_windows-opt/bin/external/eigen_archive /Iexternal/gif_archive/lib /Ibazel-out/x64_windows-opt/genfiles/external/gif_archive/lib /Ibazel-out/x64_windows-opt/bin/external/gif_archive/lib /Iexternal/gif_archive/windows /Ibazel-out/x64_windows-opt/genfiles/external/gif_archive/windows /Ibazel-out/x64_windows-opt/bin/external/gif_archive/windows /Iexternal/protobuf_archive/src /Ibazel-out/x64_windows-opt/genfiles/external/protobuf_archive/src /Ibazel-out/x64_windows-opt/bin/external/protobuf_archive/src /Iexternal/farmhash_archive/src /Ibazel-out/x64_windows-opt/genfiles/external/farmhash_archive/src /Ibazel-out/x64_windows-opt/bin/external/farmhash_archive/src /Iexternal/zlib_archive /Ibazel-out/x64_windows-opt/genfiles/external/zlib_archive /Ibazel-out/x64_windows-opt/bin/external/zlib_archive /Iexternal/double_conversion /Ibazel-out/x64_windows-opt/genfiles/external/double_conversion /Ibazel-out/x64_windows-opt/bin/external/double_conversion /Iexternal/local_config_cuda/cuda /Ibazel-out/x64_windows-opt/genfiles/external/local_config_cuda/cuda /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda /Iexternal/local_config_cuda/cuda/cuda/include /Ibazel-out/x64_windows-opt/genfiles/external/local_config_cuda/cuda/cuda/include /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/cuda/include /Iexternal/local_config_cuda/cuda/cuda/include/crt /Ibazel-out/x64_windows-opt/genfiles/external/local_config_cuda/cuda/cuda/include/crt /Ibazel-out/x64_windows-opt/bin/external/local_config_cuda/cuda/cuda/include/crt /D__CLANG_SUPPORT_DYN_ANNOTATION__ /DEIGEN_MPL2_ONLY /DEIGEN_MAX_ALIGN_BYTES=64 /DEIGEN_HAS_TYPE_TRAITS=0 /DTF_USE_SNAPPY /showIncludes /MD /O2 /DNDEBUG -w -DWIN32_LEAN_AND_MEAN -DNOGDI /arch:AVX2 /Fobazel-out/x64_windows-opt/bin/tensorflow/stream_executor/gpu/_objs/gpu_timer/gpu_timer.o /c tensorflow/stream_executor/gpu/gpu_timer.cc
Execution platform: @bazel_tools//platforms:host_platform
tensorflow/stream_executor/gpu/gpu_timer.cc(29): error C2039: <span class="pl-s"><span class="pl-pds">'</span>CreateEventA<span class="pl-pds">'</span></span>: is not a member of <span class="pl-s"><span class="pl-pds">'</span>stream_executor::gpu::GpuDriver<span class="pl-pds">'</span></span>
.<span class="pl-cce">\t</span>ensorflow/stream_executor/gpu/gpu_driver.h(60): note: see declaration of <span class="pl-s"><span class="pl-pds">'</span>stream_executor::gpu::GpuDriver<span class="pl-pds">'</span></span>
tensorflow/stream_executor/gpu/gpu_timer.cc(29): error C2660: <span class="pl-s"><span class="pl-pds">'</span>CreateEventA<span class="pl-pds">'</span></span>: <span class="pl-k">function</span> <span class="pl-en">does</span> not take 3 arguments
C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\W</span>indows Kits<span class="pl-cce">\1</span>0<span class="pl-cce">\i</span>nclude<span class="pl-cce">\1</span>0.0.17763.0<span class="pl-cce">\u</span>m<span class="pl-cce">\s</span>ynchapi.h(469): note: see declaration of <span class="pl-s"><span class="pl-pds">'</span>CreateEventA<span class="pl-pds">'</span></span>
tensorflow/stream_executor/gpu/gpu_timer.cc(36): error C2039: <span class="pl-s"><span class="pl-pds">'</span>CreateEventA<span class="pl-pds">'</span></span>: is not a member of <span class="pl-s"><span class="pl-pds">'</span>stream_executor::gpu::GpuDriver<span class="pl-pds">'</span></span>
.<span class="pl-cce">\t</span>ensorflow/stream_executor/gpu/gpu_driver.h(60): note: see declaration of <span class="pl-s"><span class="pl-pds">'</span>stream_executor::gpu::GpuDriver<span class="pl-pds">'</span></span>
tensorflow/stream_executor/gpu/gpu_timer.cc(36): error C2660: <span class="pl-s"><span class="pl-pds">'</span>CreateEventA<span class="pl-pds">'</span></span>: <span class="pl-k">function</span> <span class="pl-en">does</span> not take 3 arguments
C:<span class="pl-cce">\P</span>rogram Files (x86)<span class="pl-cce">\W</span>indows Kits<span class="pl-cce">\1</span>0<span class="pl-cce">\i</span>nclude<span class="pl-cce">\1</span>0.0.17763.0<span class="pl-cce">\u</span>m<span class="pl-cce">\s</span>ynchapi.h(469): note: see declaration of <span class="pl-s"><span class="pl-pds">'</span>CreateEventA<span class="pl-pds">'</span></span>
Target //tensorflow/tools/pip_package:build_pip_package failed to build
INFO: Elapsed time: 679.504s, Critical Path: 262.52s
INFO: 1869 processes: 1869 local.
FAILED: Build did NOT <span class="pl-c1">complete</span> successfully</pre></div>
<p dir="auto"><strong>Any other info / logs</strong><br>
Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached.</p>
<p dir="auto"><a href="https://github.com/tensorflow/tensorflow/files/3134823/FullLog.txt">FullLog.txt</a></p> | 1 |
<p dir="auto">The SciPy autopower spectrum <code class="notranslate">psd</code> has a crosspower spectrum <code class="notranslate">csd</code> counterpart, so it would make sense if the autopower <code class="notranslate">spectrogram</code> had a crosspower equivalent.</p>
<p dir="auto">Our group has a prototype that is just a wrapper around <code class="notranslate">_spectral_helper.</code> This seems cleaner than the alternative of iterating <code class="notranslate">csd</code> on a per-time-window basis.</p> | <p dir="auto">Hi,</p>
<p dir="auto">As I was looking for a way to generate random rotation matrices uniformly, I found these two methods:</p>
<ul dir="auto">
<li><a href="https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.special_ortho_group.html" rel="nofollow">scipy.stats.special_ortho_group</a></li>
<li><a href="https://docs.scipy.org/doc/scipy/reference/generated/scipy.spatial.transform.Rotation.random.html#scipy.spatial.transform.Rotation.random" rel="nofollow">scipy.spatial.transform.Rotation.random</a></li>
</ul>
<p dir="auto">As far as I understand <code class="notranslate">Rotation.random</code> is just a special case of <code class="notranslate">stats.special_ortho_group</code> where <code class="notranslate">dim=3</code>.</p>
<p dir="auto">Am I right or am I missing something? If correct, should these functions be refactored?</p>
<p dir="auto">Thanks !</p> | 0 |
<p dir="auto">Hi,</p>
<p dir="auto">i get the follwing error when i try to build saved_model_cli (following this tutorial: <a href="https://www.tensorflow.org/guide/saved_model" rel="nofollow">https://www.tensorflow.org/guide/saved_model</a>). Any idea whats the issue?</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ bazel build tensorflow/python/tools:saved_model_cli
WARNING: The following rc files are no longer being read, please transfer their contents or import their path into one of the standard rc files:
/Users/geri/Documents/tensorflow/tools/bazel.rc
Starting local Bazel server and connecting to it...
INFO: Invocation ID: 466cba21-c0aa-4740-970a-fd0d67250a82
WARNING: /Users/geri/Documents/tensorflow/tensorflow/python/BUILD:2985:1: in py_library rule //tensorflow/python:standard_ops: target '//tensorflow/python:standard_ops' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/gan/BUILD:136:1: in py_library rule //tensorflow/contrib/gan:losses_impl: target '//tensorflow/contrib/gan:losses_impl' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/metrics/BUILD:16:1: in py_library rule //tensorflow/contrib/metrics:metrics_py: target '//tensorflow/contrib/metrics:metrics_py' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/python/BUILD:76:1: in py_library rule //tensorflow/python:no_contrib: target '//tensorflow/python:no_contrib' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/learn/BUILD:17:1: in py_library rule //tensorflow/contrib/learn:learn: target '//tensorflow/contrib/learn:learn' depends on deprecated target '//tensorflow/contrib/session_bundle:exporter': No longer supported. Switch to SavedModel immediately.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/learn/BUILD:17:1: in py_library rule //tensorflow/contrib/learn:learn: target '//tensorflow/contrib/learn:learn' depends on deprecated target '//tensorflow/contrib/session_bundle:gc': No longer supported. Switch to SavedModel immediately.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/timeseries/python/timeseries/state_space_models/BUILD:233:1: in py_library rule //tensorflow/contrib/timeseries/python/timeseries/state_space_models:filtering_postprocessor: target '//tensorflow/contrib/timeseries/python/timeseries/state_space_models:filtering_postprocessor' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/seq2seq/BUILD:23:1: in py_library rule //tensorflow/contrib/seq2seq:seq2seq_py: target '//tensorflow/contrib/seq2seq:seq2seq_py' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/seq2seq/BUILD:23:1: in py_library rule //tensorflow/contrib/seq2seq:seq2seq_py: target '//tensorflow/contrib/seq2seq:seq2seq_py' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/timeseries/python/timeseries/BUILD:356:1: in py_library rule //tensorflow/contrib/timeseries/python/timeseries:ar_model: target '//tensorflow/contrib/timeseries/python/timeseries:ar_model' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/timeseries/python/timeseries/state_space_models/BUILD:76:1: in py_library rule //tensorflow/contrib/timeseries/python/timeseries/state_space_models:kalman_filter: target '//tensorflow/contrib/timeseries/python/timeseries/state_space_models:kalman_filter' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/bayesflow/BUILD:17:1: in py_library rule //tensorflow/contrib/bayesflow:bayesflow_py: target '//tensorflow/contrib/bayesflow:bayesflow_py' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/BUILD:13:1: in py_library rule //tensorflow/contrib:contrib_py: target '//tensorflow/contrib:contrib_py' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
INFO: Analysed target //tensorflow/python/tools:saved_model_cli (309 packages loaded, 16772 targets configured).
INFO: Found 1 target...
INFO: From Linking external/protobuf_archive/libprotobuf_lite.a [for host]:
/Library/Developer/CommandLineTools/usr/bin/libtool: file: bazel-out/host/bin/external/protobuf_archive/_objs/protobuf_lite/arenastring.o has no symbols
/Library/Developer/CommandLineTools/usr/bin/libtool: file: bazel-out/host/bin/external/protobuf_archive/_objs/protobuf_lite/io_win32.o has no symbols
INFO: From Linking tensorflow/core/libplatform_base.a [for host]:
/Library/Developer/CommandLineTools/usr/bin/libtool: warning same member name (env_time.o) in output file used for input files: bazel-out/host/bin/tensorflow/core/_objs/platform_base/0/env_time.o and: bazel-out/host/bin/tensorflow/core/_objs/platform_base/1/env_time.o (due to use of basename, truncation, blank padding or duplicate input files)
INFO: From Linking external/protobuf_archive/libprotobuf.a [for host]:
/Library/Developer/CommandLineTools/usr/bin/libtool: file: bazel-out/host/bin/external/protobuf_archive/_objs/protobuf/gzip_stream.o has no symbols
/Library/Developer/CommandLineTools/usr/bin/libtool: file: bazel-out/host/bin/external/protobuf_archive/_objs/protobuf/error_listener.o has no symbols
INFO: From ProtoCompile tensorflow/core/lib/core/error_codes.pb.cc [for host]:
bazel-out/host/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/grappler/costs/op_performance_data.pb.cc:
bazel-out/darwin-fastbuild/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/darwin-fastbuild/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/darwin-fastbuild/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/darwin-fastbuild/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/lib/core/error_codes.pb.cc:
bazel-out/darwin-fastbuild/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/grappler/costs/op_performance_data.pb.cc [for host]:
bazel-out/host/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/host/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/host/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/host/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/example/example.pb.cc:
bazel-out/darwin-fastbuild/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/darwin-fastbuild/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/example/example.pb.cc [for host]:
bazel-out/host/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/host/genfiles/external/protobuf_archive/src: warning: directory does not exist.
ERROR: /private/var/tmp/_bazel_geri/af336600bf091f11bdb6522728b81044/external/flatbuffers/BUILD.bazel:57:1: C++ compilation of rule '@flatbuffers//:flatc_library' failed (Exit 1) cc_wrapper.sh failed: error executing command external/local_config_cc/cc_wrapper.sh -U_FORTIFY_SOURCE -fstack-protector -Wall -Wthread-safety -Wself-assign -fcolor-diagnostics -fno-omit-frame-pointer -g0 -O2 '-D_FORTIFY_SOURCE=1' -DNDEBUG ... (remaining 44 argument(s) skipped)
Use --sandbox_debug to see verbose messages from the sandbox
external/flatbuffers/src/util.cpp:50:3: error: use of undeclared identifier 'FLATBUFFERS_ASSERT'
FLATBUFFERS_ASSERT(g_load_file_function);
^
external/flatbuffers/src/util.cpp:55:3: error: use of undeclared identifier 'FLATBUFFERS_ASSERT'
FLATBUFFERS_ASSERT(g_file_exists_function);
^
2 errors generated.
Target //tensorflow/python/tools:saved_model_cli failed to build
Use --verbose_failures to see the command lines of failed build steps.
INFO: Elapsed time: 302.643s, Critical Path: 46.91s
INFO: 396 processes: 396 darwin-sandbox.
FAILED: Build did NOT complete successfully"><pre class="notranslate"><code class="notranslate">$ bazel build tensorflow/python/tools:saved_model_cli
WARNING: The following rc files are no longer being read, please transfer their contents or import their path into one of the standard rc files:
/Users/geri/Documents/tensorflow/tools/bazel.rc
Starting local Bazel server and connecting to it...
INFO: Invocation ID: 466cba21-c0aa-4740-970a-fd0d67250a82
WARNING: /Users/geri/Documents/tensorflow/tensorflow/python/BUILD:2985:1: in py_library rule //tensorflow/python:standard_ops: target '//tensorflow/python:standard_ops' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/gan/BUILD:136:1: in py_library rule //tensorflow/contrib/gan:losses_impl: target '//tensorflow/contrib/gan:losses_impl' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/metrics/BUILD:16:1: in py_library rule //tensorflow/contrib/metrics:metrics_py: target '//tensorflow/contrib/metrics:metrics_py' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/python/BUILD:76:1: in py_library rule //tensorflow/python:no_contrib: target '//tensorflow/python:no_contrib' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/learn/BUILD:17:1: in py_library rule //tensorflow/contrib/learn:learn: target '//tensorflow/contrib/learn:learn' depends on deprecated target '//tensorflow/contrib/session_bundle:exporter': No longer supported. Switch to SavedModel immediately.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/learn/BUILD:17:1: in py_library rule //tensorflow/contrib/learn:learn: target '//tensorflow/contrib/learn:learn' depends on deprecated target '//tensorflow/contrib/session_bundle:gc': No longer supported. Switch to SavedModel immediately.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/timeseries/python/timeseries/state_space_models/BUILD:233:1: in py_library rule //tensorflow/contrib/timeseries/python/timeseries/state_space_models:filtering_postprocessor: target '//tensorflow/contrib/timeseries/python/timeseries/state_space_models:filtering_postprocessor' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/seq2seq/BUILD:23:1: in py_library rule //tensorflow/contrib/seq2seq:seq2seq_py: target '//tensorflow/contrib/seq2seq:seq2seq_py' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/seq2seq/BUILD:23:1: in py_library rule //tensorflow/contrib/seq2seq:seq2seq_py: target '//tensorflow/contrib/seq2seq:seq2seq_py' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/timeseries/python/timeseries/BUILD:356:1: in py_library rule //tensorflow/contrib/timeseries/python/timeseries:ar_model: target '//tensorflow/contrib/timeseries/python/timeseries:ar_model' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/timeseries/python/timeseries/state_space_models/BUILD:76:1: in py_library rule //tensorflow/contrib/timeseries/python/timeseries/state_space_models:kalman_filter: target '//tensorflow/contrib/timeseries/python/timeseries/state_space_models:kalman_filter' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/bayesflow/BUILD:17:1: in py_library rule //tensorflow/contrib/bayesflow:bayesflow_py: target '//tensorflow/contrib/bayesflow:bayesflow_py' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/BUILD:13:1: in py_library rule //tensorflow/contrib:contrib_py: target '//tensorflow/contrib:contrib_py' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
INFO: Analysed target //tensorflow/python/tools:saved_model_cli (309 packages loaded, 16772 targets configured).
INFO: Found 1 target...
INFO: From Linking external/protobuf_archive/libprotobuf_lite.a [for host]:
/Library/Developer/CommandLineTools/usr/bin/libtool: file: bazel-out/host/bin/external/protobuf_archive/_objs/protobuf_lite/arenastring.o has no symbols
/Library/Developer/CommandLineTools/usr/bin/libtool: file: bazel-out/host/bin/external/protobuf_archive/_objs/protobuf_lite/io_win32.o has no symbols
INFO: From Linking tensorflow/core/libplatform_base.a [for host]:
/Library/Developer/CommandLineTools/usr/bin/libtool: warning same member name (env_time.o) in output file used for input files: bazel-out/host/bin/tensorflow/core/_objs/platform_base/0/env_time.o and: bazel-out/host/bin/tensorflow/core/_objs/platform_base/1/env_time.o (due to use of basename, truncation, blank padding or duplicate input files)
INFO: From Linking external/protobuf_archive/libprotobuf.a [for host]:
/Library/Developer/CommandLineTools/usr/bin/libtool: file: bazel-out/host/bin/external/protobuf_archive/_objs/protobuf/gzip_stream.o has no symbols
/Library/Developer/CommandLineTools/usr/bin/libtool: file: bazel-out/host/bin/external/protobuf_archive/_objs/protobuf/error_listener.o has no symbols
INFO: From ProtoCompile tensorflow/core/lib/core/error_codes.pb.cc [for host]:
bazel-out/host/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/grappler/costs/op_performance_data.pb.cc:
bazel-out/darwin-fastbuild/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/darwin-fastbuild/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/darwin-fastbuild/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/darwin-fastbuild/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/lib/core/error_codes.pb.cc:
bazel-out/darwin-fastbuild/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/grappler/costs/op_performance_data.pb.cc [for host]:
bazel-out/host/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/host/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/host/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/host/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/example/example.pb.cc:
bazel-out/darwin-fastbuild/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/darwin-fastbuild/genfiles/external/protobuf_archive/src: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/example/example.pb.cc [for host]:
bazel-out/host/genfiles/external/protobuf_archive/src: warning: directory does not exist.
bazel-out/host/genfiles/external/protobuf_archive/src: warning: directory does not exist.
ERROR: /private/var/tmp/_bazel_geri/af336600bf091f11bdb6522728b81044/external/flatbuffers/BUILD.bazel:57:1: C++ compilation of rule '@flatbuffers//:flatc_library' failed (Exit 1) cc_wrapper.sh failed: error executing command external/local_config_cc/cc_wrapper.sh -U_FORTIFY_SOURCE -fstack-protector -Wall -Wthread-safety -Wself-assign -fcolor-diagnostics -fno-omit-frame-pointer -g0 -O2 '-D_FORTIFY_SOURCE=1' -DNDEBUG ... (remaining 44 argument(s) skipped)
Use --sandbox_debug to see verbose messages from the sandbox
external/flatbuffers/src/util.cpp:50:3: error: use of undeclared identifier 'FLATBUFFERS_ASSERT'
FLATBUFFERS_ASSERT(g_load_file_function);
^
external/flatbuffers/src/util.cpp:55:3: error: use of undeclared identifier 'FLATBUFFERS_ASSERT'
FLATBUFFERS_ASSERT(g_file_exists_function);
^
2 errors generated.
Target //tensorflow/python/tools:saved_model_cli failed to build
Use --verbose_failures to see the command lines of failed build steps.
INFO: Elapsed time: 302.643s, Critical Path: 46.91s
INFO: 396 processes: 396 darwin-sandbox.
FAILED: Build did NOT complete successfully
</code></pre></div>
<p dir="auto">more infos:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ bazel build tensorflow/python/tools:saved_model_cli --sandbox_debug
WARNING: The following rc files are no longer being read, please transfer their contents or import their path into one of the standard rc files:
/Users/geri/Documents/tensorflow/tools/bazel.rc
INFO: Invocation ID: b46f49c0-8fce-46a2-8bfc-4d3ad5ba2ef7
WARNING: /Users/geri/Documents/tensorflow/tensorflow/python/BUILD:2985:1: in py_library rule //tensorflow/python:standard_ops: target '//tensorflow/python:standard_ops' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/python/BUILD:76:1: in py_library rule //tensorflow/python:no_contrib: target '//tensorflow/python:no_contrib' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/metrics/BUILD:16:1: in py_library rule //tensorflow/contrib/metrics:metrics_py: target '//tensorflow/contrib/metrics:metrics_py' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/learn/BUILD:17:1: in py_library rule //tensorflow/contrib/learn:learn: target '//tensorflow/contrib/learn:learn' depends on deprecated target '//tensorflow/contrib/session_bundle:exporter': No longer supported. Switch to SavedModel immediately.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/learn/BUILD:17:1: in py_library rule //tensorflow/contrib/learn:learn: target '//tensorflow/contrib/learn:learn' depends on deprecated target '//tensorflow/contrib/session_bundle:gc': No longer supported. Switch to SavedModel immediately.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/gan/BUILD:136:1: in py_library rule //tensorflow/contrib/gan:losses_impl: target '//tensorflow/contrib/gan:losses_impl' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/seq2seq/BUILD:23:1: in py_library rule //tensorflow/contrib/seq2seq:seq2seq_py: target '//tensorflow/contrib/seq2seq:seq2seq_py' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/seq2seq/BUILD:23:1: in py_library rule //tensorflow/contrib/seq2seq:seq2seq_py: target '//tensorflow/contrib/seq2seq:seq2seq_py' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/bayesflow/BUILD:17:1: in py_library rule //tensorflow/contrib/bayesflow:bayesflow_py: target '//tensorflow/contrib/bayesflow:bayesflow_py' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/timeseries/python/timeseries/state_space_models/BUILD:233:1: in py_library rule //tensorflow/contrib/timeseries/python/timeseries/state_space_models:filtering_postprocessor: target '//tensorflow/contrib/timeseries/python/timeseries/state_space_models:filtering_postprocessor' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/timeseries/python/timeseries/state_space_models/BUILD:76:1: in py_library rule //tensorflow/contrib/timeseries/python/timeseries/state_space_models:kalman_filter: target '//tensorflow/contrib/timeseries/python/timeseries/state_space_models:kalman_filter' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/timeseries/python/timeseries/BUILD:356:1: in py_library rule //tensorflow/contrib/timeseries/python/timeseries:ar_model: target '//tensorflow/contrib/timeseries/python/timeseries:ar_model' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/BUILD:13:1: in py_library rule //tensorflow/contrib:contrib_py: target '//tensorflow/contrib:contrib_py' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
INFO: Analysed target //tensorflow/python/tools:saved_model_cli (0 packages loaded, 0 targets configured).
INFO: Found 1 target...
INFO: From Linking external/grpc/libtsi.a:
/Library/Developer/CommandLineTools/usr/bin/libtool: file: bazel-out/darwin-fastbuild/bin/external/grpc/_objs/tsi/ssl_session_openssl.pic.o has no symbols
INFO: From Linking external/grpc/libgrpc++_base.a:
/Library/Developer/CommandLineTools/usr/bin/libtool: file: bazel-out/darwin-fastbuild/bin/external/grpc/_objs/grpc++_base/rpc_method.pic.o has no symbols
ERROR: /private/var/tmp/_bazel_geri/af336600bf091f11bdb6522728b81044/external/grpc/BUILD:1515:1: C++ compilation of rule '@grpc//:grpc_resolver_dns_ares' failed (Exit 1) sandbox-exec failed: error executing command
(cd /private/var/tmp/_bazel_geri/af336600bf091f11bdb6522728b81044/execroot/org_tensorflow && \
exec env - \
PATH=/Users/geri/.pyenv/shims:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/TeX/texbin:/usr/local/go/bin:/Users/geri/intelligence/bin \
PWD=/proc/self/cwd \
TMPDIR=/var/folders/7t/9l0n105n4_jbrq076r887pthz96c2m/T/ \
/usr/bin/sandbox-exec -f /private/var/tmp/_bazel_geri/af336600bf091f11bdb6522728b81044/sandbox/darwin-sandbox/61/sandbox.sb /var/tmp/_bazel_geri/install/c71a8bada5761bf76ced20ca6672b491/_embedded_binaries/process-wrapper '--timeout=0' '--kill_delay=15' external/local_config_cc/cc_wrapper.sh -U_FORTIFY_SOURCE -fstack-protector -Wall -Wthread-safety -Wself-assign -fcolor-diagnostics -fno-omit-frame-pointer '-std=c++0x' -MD -MF bazel-out/darwin-fastbuild/bin/external/grpc/_objs/grpc_resolver_dns_ares/grpc_ares_wrapper.pic.d '-frandom-seed=bazel-out/darwin-fastbuild/bin/external/grpc/_objs/grpc_resolver_dns_ares/grpc_ares_wrapper.pic.o' -fPIC '-DPB_FIELD_32BIT=1' -iquote external/grpc -iquote bazel-out/darwin-fastbuild/genfiles/external/grpc -iquote bazel-out/darwin-fastbuild/bin/external/grpc -iquote external/bazel_tools -iquote bazel-out/darwin-fastbuild/genfiles/external/bazel_tools -iquote bazel-out/darwin-fastbuild/bin/external/bazel_tools -iquote external/zlib_archive -iquote bazel-out/darwin-fastbuild/genfiles/external/zlib_archive -iquote bazel-out/darwin-fastbuild/bin/external/zlib_archive -iquote external/com_github_nanopb_nanopb -iquote bazel-out/darwin-fastbuild/genfiles/external/com_github_nanopb_nanopb -iquote bazel-out/darwin-fastbuild/bin/external/com_github_nanopb_nanopb -isystem external/grpc/include -isystem bazel-out/darwin-fastbuild/genfiles/external/grpc/include -isystem bazel-out/darwin-fastbuild/bin/external/grpc/include -isystem external/zlib_archive -isystem bazel-out/darwin-fastbuild/genfiles/external/zlib_archive -isystem bazel-out/darwin-fastbuild/bin/external/zlib_archive -isystem external/grpc/third_party/address_sorting/include -isystem bazel-out/darwin-fastbuild/genfiles/external/grpc/third_party/address_sorting/include -isystem bazel-out/darwin-fastbuild/bin/external/grpc/third_party/address_sorting/include -no-canonical-prefixes -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -c external/grpc/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc -o bazel-out/darwin-fastbuild/bin/external/grpc/_objs/grpc_resolver_dns_ares/grpc_ares_wrapper.pic.o)
external/grpc/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc:29:10: fatal error: 'ares.h' file not found
#include <ares.h>
^~~~~~~~
1 error generated.
Target //tensorflow/python/tools:saved_model_cli failed to build
Use --verbose_failures to see the command lines of failed build steps.
INFO: Elapsed time: 13.689s, Critical Path: 4.82s
INFO: 57 processes: 57 darwin-sandbox.
FAILED: Build did NOT complete successfully"><pre class="notranslate"><code class="notranslate">$ bazel build tensorflow/python/tools:saved_model_cli --sandbox_debug
WARNING: The following rc files are no longer being read, please transfer their contents or import their path into one of the standard rc files:
/Users/geri/Documents/tensorflow/tools/bazel.rc
INFO: Invocation ID: b46f49c0-8fce-46a2-8bfc-4d3ad5ba2ef7
WARNING: /Users/geri/Documents/tensorflow/tensorflow/python/BUILD:2985:1: in py_library rule //tensorflow/python:standard_ops: target '//tensorflow/python:standard_ops' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/python/BUILD:76:1: in py_library rule //tensorflow/python:no_contrib: target '//tensorflow/python:no_contrib' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/metrics/BUILD:16:1: in py_library rule //tensorflow/contrib/metrics:metrics_py: target '//tensorflow/contrib/metrics:metrics_py' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/learn/BUILD:17:1: in py_library rule //tensorflow/contrib/learn:learn: target '//tensorflow/contrib/learn:learn' depends on deprecated target '//tensorflow/contrib/session_bundle:exporter': No longer supported. Switch to SavedModel immediately.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/learn/BUILD:17:1: in py_library rule //tensorflow/contrib/learn:learn: target '//tensorflow/contrib/learn:learn' depends on deprecated target '//tensorflow/contrib/session_bundle:gc': No longer supported. Switch to SavedModel immediately.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/gan/BUILD:136:1: in py_library rule //tensorflow/contrib/gan:losses_impl: target '//tensorflow/contrib/gan:losses_impl' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/seq2seq/BUILD:23:1: in py_library rule //tensorflow/contrib/seq2seq:seq2seq_py: target '//tensorflow/contrib/seq2seq:seq2seq_py' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/seq2seq/BUILD:23:1: in py_library rule //tensorflow/contrib/seq2seq:seq2seq_py: target '//tensorflow/contrib/seq2seq:seq2seq_py' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/bayesflow/BUILD:17:1: in py_library rule //tensorflow/contrib/bayesflow:bayesflow_py: target '//tensorflow/contrib/bayesflow:bayesflow_py' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/timeseries/python/timeseries/state_space_models/BUILD:233:1: in py_library rule //tensorflow/contrib/timeseries/python/timeseries/state_space_models:filtering_postprocessor: target '//tensorflow/contrib/timeseries/python/timeseries/state_space_models:filtering_postprocessor' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/timeseries/python/timeseries/state_space_models/BUILD:76:1: in py_library rule //tensorflow/contrib/timeseries/python/timeseries/state_space_models:kalman_filter: target '//tensorflow/contrib/timeseries/python/timeseries/state_space_models:kalman_filter' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/timeseries/python/timeseries/BUILD:356:1: in py_library rule //tensorflow/contrib/timeseries/python/timeseries:ar_model: target '//tensorflow/contrib/timeseries/python/timeseries:ar_model' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/BUILD:13:1: in py_library rule //tensorflow/contrib:contrib_py: target '//tensorflow/contrib:contrib_py' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
INFO: Analysed target //tensorflow/python/tools:saved_model_cli (0 packages loaded, 0 targets configured).
INFO: Found 1 target...
INFO: From Linking external/grpc/libtsi.a:
/Library/Developer/CommandLineTools/usr/bin/libtool: file: bazel-out/darwin-fastbuild/bin/external/grpc/_objs/tsi/ssl_session_openssl.pic.o has no symbols
INFO: From Linking external/grpc/libgrpc++_base.a:
/Library/Developer/CommandLineTools/usr/bin/libtool: file: bazel-out/darwin-fastbuild/bin/external/grpc/_objs/grpc++_base/rpc_method.pic.o has no symbols
ERROR: /private/var/tmp/_bazel_geri/af336600bf091f11bdb6522728b81044/external/grpc/BUILD:1515:1: C++ compilation of rule '@grpc//:grpc_resolver_dns_ares' failed (Exit 1) sandbox-exec failed: error executing command
(cd /private/var/tmp/_bazel_geri/af336600bf091f11bdb6522728b81044/execroot/org_tensorflow && \
exec env - \
PATH=/Users/geri/.pyenv/shims:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/TeX/texbin:/usr/local/go/bin:/Users/geri/intelligence/bin \
PWD=/proc/self/cwd \
TMPDIR=/var/folders/7t/9l0n105n4_jbrq076r887pthz96c2m/T/ \
/usr/bin/sandbox-exec -f /private/var/tmp/_bazel_geri/af336600bf091f11bdb6522728b81044/sandbox/darwin-sandbox/61/sandbox.sb /var/tmp/_bazel_geri/install/c71a8bada5761bf76ced20ca6672b491/_embedded_binaries/process-wrapper '--timeout=0' '--kill_delay=15' external/local_config_cc/cc_wrapper.sh -U_FORTIFY_SOURCE -fstack-protector -Wall -Wthread-safety -Wself-assign -fcolor-diagnostics -fno-omit-frame-pointer '-std=c++0x' -MD -MF bazel-out/darwin-fastbuild/bin/external/grpc/_objs/grpc_resolver_dns_ares/grpc_ares_wrapper.pic.d '-frandom-seed=bazel-out/darwin-fastbuild/bin/external/grpc/_objs/grpc_resolver_dns_ares/grpc_ares_wrapper.pic.o' -fPIC '-DPB_FIELD_32BIT=1' -iquote external/grpc -iquote bazel-out/darwin-fastbuild/genfiles/external/grpc -iquote bazel-out/darwin-fastbuild/bin/external/grpc -iquote external/bazel_tools -iquote bazel-out/darwin-fastbuild/genfiles/external/bazel_tools -iquote bazel-out/darwin-fastbuild/bin/external/bazel_tools -iquote external/zlib_archive -iquote bazel-out/darwin-fastbuild/genfiles/external/zlib_archive -iquote bazel-out/darwin-fastbuild/bin/external/zlib_archive -iquote external/com_github_nanopb_nanopb -iquote bazel-out/darwin-fastbuild/genfiles/external/com_github_nanopb_nanopb -iquote bazel-out/darwin-fastbuild/bin/external/com_github_nanopb_nanopb -isystem external/grpc/include -isystem bazel-out/darwin-fastbuild/genfiles/external/grpc/include -isystem bazel-out/darwin-fastbuild/bin/external/grpc/include -isystem external/zlib_archive -isystem bazel-out/darwin-fastbuild/genfiles/external/zlib_archive -isystem bazel-out/darwin-fastbuild/bin/external/zlib_archive -isystem external/grpc/third_party/address_sorting/include -isystem bazel-out/darwin-fastbuild/genfiles/external/grpc/third_party/address_sorting/include -isystem bazel-out/darwin-fastbuild/bin/external/grpc/third_party/address_sorting/include -no-canonical-prefixes -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -c external/grpc/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc -o bazel-out/darwin-fastbuild/bin/external/grpc/_objs/grpc_resolver_dns_ares/grpc_ares_wrapper.pic.o)
external/grpc/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc:29:10: fatal error: 'ares.h' file not found
#include <ares.h>
^~~~~~~~
1 error generated.
Target //tensorflow/python/tools:saved_model_cli failed to build
Use --verbose_failures to see the command lines of failed build steps.
INFO: Elapsed time: 13.689s, Critical Path: 4.82s
INFO: 57 processes: 57 darwin-sandbox.
FAILED: Build did NOT complete successfully
</code></pre></div>
<p dir="auto">than i installed ares:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null
$ brew install c-ares"><pre class="notranslate"><code class="notranslate">$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null
$ brew install c-ares
</code></pre></div>
<p dir="auto">and tried it again, and got this error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ bazel build tensorflow/python/tools:saved_model_cli --sandbox_debug
WARNING: The following rc files are no longer being read, please transfer their contents or import their path into one of the standard rc files:
/Users/geri/Documents/tensorflow/tools/bazel.rc
INFO: Invocation ID: 2e76455c-b877-4561-85f0-7a34a9337adc
WARNING: /Users/geri/Documents/tensorflow/tensorflow/python/BUILD:2985:1: in py_library rule //tensorflow/python:standard_ops: target '//tensorflow/python:standard_ops' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/python/BUILD:76:1: in py_library rule //tensorflow/python:no_contrib: target '//tensorflow/python:no_contrib' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/metrics/BUILD:16:1: in py_library rule //tensorflow/contrib/metrics:metrics_py: target '//tensorflow/contrib/metrics:metrics_py' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/learn/BUILD:17:1: in py_library rule //tensorflow/contrib/learn:learn: target '//tensorflow/contrib/learn:learn' depends on deprecated target '//tensorflow/contrib/session_bundle:exporter': No longer supported. Switch to SavedModel immediately.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/learn/BUILD:17:1: in py_library rule //tensorflow/contrib/learn:learn: target '//tensorflow/contrib/learn:learn' depends on deprecated target '//tensorflow/contrib/session_bundle:gc': No longer supported. Switch to SavedModel immediately.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/gan/BUILD:136:1: in py_library rule //tensorflow/contrib/gan:losses_impl: target '//tensorflow/contrib/gan:losses_impl' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/seq2seq/BUILD:23:1: in py_library rule //tensorflow/contrib/seq2seq:seq2seq_py: target '//tensorflow/contrib/seq2seq:seq2seq_py' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/seq2seq/BUILD:23:1: in py_library rule //tensorflow/contrib/seq2seq:seq2seq_py: target '//tensorflow/contrib/seq2seq:seq2seq_py' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/bayesflow/BUILD:17:1: in py_library rule //tensorflow/contrib/bayesflow:bayesflow_py: target '//tensorflow/contrib/bayesflow:bayesflow_py' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/timeseries/python/timeseries/state_space_models/BUILD:233:1: in py_library rule //tensorflow/contrib/timeseries/python/timeseries/state_space_models:filtering_postprocessor: target '//tensorflow/contrib/timeseries/python/timeseries/state_space_models:filtering_postprocessor' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/timeseries/python/timeseries/state_space_models/BUILD:76:1: in py_library rule //tensorflow/contrib/timeseries/python/timeseries/state_space_models:kalman_filter: target '//tensorflow/contrib/timeseries/python/timeseries/state_space_models:kalman_filter' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/timeseries/python/timeseries/BUILD:356:1: in py_library rule //tensorflow/contrib/timeseries/python/timeseries:ar_model: target '//tensorflow/contrib/timeseries/python/timeseries:ar_model' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/BUILD:13:1: in py_library rule //tensorflow/contrib:contrib_py: target '//tensorflow/contrib:contrib_py' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
INFO: Analysed target //tensorflow/python/tools:saved_model_cli (0 packages loaded, 0 targets configured).
INFO: Found 1 target...
INFO: From ProtoCompile external/protobuf_archive/python/google/protobuf/any_pb2.py [for host]:
external/protobuf_archive/python: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/example/example_pb2.py [for host]:
external/protobuf_archive/python: warning: directory does not exist.
external/protobuf_archive/python: warning: directory does not exist.
INFO: From Compiling tensorflow/core/framework/function.cc [for host]:
tensorflow/core/framework/function.cc:1107:18: warning: reading variable 'function_defs_' requires holding mutex 'clone.mu_' [-Wthread-safety-precise]
for (auto iter : clone.function_defs_) {
^
tensorflow/core/framework/function.cc:1107:18: note: found near match 'mu_'
tensorflow/core/framework/function.cc:1107:18: warning: reading variable 'function_defs_' requires holding mutex 'clone.mu_' [-Wthread-safety-precise]
for (auto iter : clone.function_defs_) {
^
tensorflow/core/framework/function.cc:1107:18: note: found near match 'mu_'
tensorflow/core/framework/function.cc:1117:18: warning: reading variable 'func_grad_' requires holding mutex 'clone.mu_' [-Wthread-safety-precise]
for (auto iter : clone.func_grad_) {
^
tensorflow/core/framework/function.cc:1117:18: note: found near match 'mu_'
tensorflow/core/framework/function.cc:1117:18: warning: reading variable 'func_grad_' requires holding mutex 'clone.mu_' [-Wthread-safety-precise]
for (auto iter : clone.func_grad_) {
^
tensorflow/core/framework/function.cc:1117:18: note: found near match 'mu_'
4 warnings generated.
INFO: From Compiling tensorflow/core/util/example_proto_fast_parsing.cc [for host]:
In file included from tensorflow/core/util/example_proto_fast_parsing.cc:15:
In file included from ./tensorflow/core/util/example_proto_fast_parsing.h:32:
./tensorflow/core/util/sparse/sparse_tensor.h:77:15: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
*result = SparseTensor(ix, vals, shape, order);
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_fast_parsing.cc:15:
In file included from ./tensorflow/core/util/example_proto_fast_parsing.h:32:
./tensorflow/core/util/sparse/sparse_tensor.h:77:15: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
*result = SparseTensor(ix, vals, shape, order);
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_fast_parsing.cc:15:
In file included from ./tensorflow/core/util/example_proto_fast_parsing.h:32:
./tensorflow/core/util/sparse/sparse_tensor.h:132:9: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
: SparseTensor(other.ix_, other.vals_, other.shape_, other.order_) {}
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_fast_parsing.cc:15:
In file included from ./tensorflow/core/util/example_proto_fast_parsing.h:32:
./tensorflow/core/util/sparse/sparse_tensor.h:135:9: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
: SparseTensor(std::move(other.ix_), std::move(other.vals_),
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_fast_parsing.cc:15:
In file included from ./tensorflow/core/util/example_proto_fast_parsing.h:32:
./tensorflow/core/util/sparse/sparse_tensor.h:568:10: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
return SparseTensor(output_ix, output_vals, final_shape, final_order);
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_fast_parsing.cc:15:
In file included from ./tensorflow/core/util/example_proto_fast_parsing.h:32:
./tensorflow/core/util/sparse/sparse_tensor.h:568:10: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
return SparseTensor(output_ix, output_vals, final_shape, final_order);
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_fast_parsing.cc:15:
In file included from ./tensorflow/core/util/example_proto_fast_parsing.h:32:
./tensorflow/core/util/sparse/sparse_tensor.h:726:10: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
return SparseTensor(output_indices, output_values, output_shape);
^
./tensorflow/core/util/sparse/sparse_tensor.h:99:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_fast_parsing.cc:15:
In file included from ./tensorflow/core/util/example_proto_fast_parsing.h:32:
./tensorflow/core/util/sparse/sparse_tensor.h:726:10: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
return SparseTensor(output_indices, output_values, output_shape);
^
./tensorflow/core/util/sparse/sparse_tensor.h:99:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
8 warnings generated.
INFO: From Compiling tensorflow/core/util/strided_slice_op.cc [for host]:
tensorflow/core/util/strided_slice_op.cc:275:33: warning: lambda capture 'i' is not used [-Wunused-lambda-capture]
auto canonical = [stride_i, i, dim_i, masks, valid_range](int64 x, int c) {
^
1 warning generated.
INFO: From Compiling tensorflow/core/framework/dataset.cc [for host]:
In file included from tensorflow/core/framework/dataset.cc:15:
In file included from ./tensorflow/core/framework/dataset.h:27:
./tensorflow/core/framework/model.h:235:13: warning: writing variable 'buffered_bytes_' requires holding mutex 'result->mu_' exclusively [-Wthread-safety-precise]
result->buffered_bytes_ = buffered_bytes_;
^
./tensorflow/core/framework/model.h:235:13: note: found near match 'mu_'
./tensorflow/core/framework/model.h:236:13: warning: writing variable 'processing_time_' requires holding mutex 'result->mu_' exclusively [-Wthread-safety-precise]
result->processing_time_ = processing_time_;
^
./tensorflow/core/framework/model.h:236:13: note: found near match 'mu_'
./tensorflow/core/framework/model.h:237:13: warning: writing variable 'num_elements_' requires holding mutex 'result->mu_' exclusively [-Wthread-safety-precise]
result->num_elements_ = num_elements_;
^
./tensorflow/core/framework/model.h:237:13: note: found near match 'mu_'
./tensorflow/core/framework/model.h:238:13: warning: writing variable 'parameters_' requires holding mutex 'result->mu_' exclusively [-Wthread-safety-precise]
result->parameters_ = parameters_;
^
./tensorflow/core/framework/model.h:238:13: note: found near match 'mu_'
4 warnings generated.
INFO: From Compiling tensorflow/core/util/example_proto_helper.cc [for host]:
In file included from tensorflow/core/util/example_proto_helper.cc:15:
In file included from ./tensorflow/core/util/example_proto_helper.h:31:
./tensorflow/core/util/sparse/sparse_tensor.h:77:15: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
*result = SparseTensor(ix, vals, shape, order);
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_helper.cc:15:
In file included from ./tensorflow/core/util/example_proto_helper.h:31:
./tensorflow/core/util/sparse/sparse_tensor.h:77:15: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
*result = SparseTensor(ix, vals, shape, order);
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_helper.cc:15:
In file included from ./tensorflow/core/util/example_proto_helper.h:31:
./tensorflow/core/util/sparse/sparse_tensor.h:132:9: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
: SparseTensor(other.ix_, other.vals_, other.shape_, other.order_) {}
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_helper.cc:15:
In file included from ./tensorflow/core/util/example_proto_helper.h:31:
./tensorflow/core/util/sparse/sparse_tensor.h:135:9: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
: SparseTensor(std::move(other.ix_), std::move(other.vals_),
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_helper.cc:15:
In file included from ./tensorflow/core/util/example_proto_helper.h:31:
./tensorflow/core/util/sparse/sparse_tensor.h:568:10: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
return SparseTensor(output_ix, output_vals, final_shape, final_order);
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_helper.cc:15:
In file included from ./tensorflow/core/util/example_proto_helper.h:31:
./tensorflow/core/util/sparse/sparse_tensor.h:568:10: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
return SparseTensor(output_ix, output_vals, final_shape, final_order);
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_helper.cc:15:
In file included from ./tensorflow/core/util/example_proto_helper.h:31:
./tensorflow/core/util/sparse/sparse_tensor.h:726:10: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
return SparseTensor(output_indices, output_values, output_shape);
^
./tensorflow/core/util/sparse/sparse_tensor.h:99:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_helper.cc:15:
In file included from ./tensorflow/core/util/example_proto_helper.h:31:
./tensorflow/core/util/sparse/sparse_tensor.h:726:10: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
return SparseTensor(output_indices, output_values, output_shape);
^
./tensorflow/core/util/sparse/sparse_tensor.h:99:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
8 warnings generated.
INFO: From Compiling tensorflow/core/framework/model.cc [for host]:
In file included from tensorflow/core/framework/model.cc:16:
./tensorflow/core/framework/model.h:235:13: warning: writing variable 'buffered_bytes_' requires holding mutex 'result->mu_' exclusively [-Wthread-safety-precise]
result->buffered_bytes_ = buffered_bytes_;
^
./tensorflow/core/framework/model.h:235:13: note: found near match 'mu_'
./tensorflow/core/framework/model.h:236:13: warning: writing variable 'processing_time_' requires holding mutex 'result->mu_' exclusively [-Wthread-safety-precise]
result->processing_time_ = processing_time_;
^
./tensorflow/core/framework/model.h:236:13: note: found near match 'mu_'
./tensorflow/core/framework/model.h:237:13: warning: writing variable 'num_elements_' requires holding mutex 'result->mu_' exclusively [-Wthread-safety-precise]
result->num_elements_ = num_elements_;
^
./tensorflow/core/framework/model.h:237:13: note: found near match 'mu_'
./tensorflow/core/framework/model.h:238:13: warning: writing variable 'parameters_' requires holding mutex 'result->mu_' exclusively [-Wthread-safety-precise]
result->parameters_ = parameters_;
^
./tensorflow/core/framework/model.h:238:13: note: found near match 'mu_'
4 warnings generated.
INFO: From ProtoCompile tensorflow/core/grappler/costs/op_performance_data_pb2.py [for host]:
external/protobuf_archive/python: warning: directory does not exist.
external/protobuf_archive/python: warning: directory does not exist.
external/protobuf_archive/python: warning: directory does not exist.
external/protobuf_archive/python: warning: directory does not exist.
INFO: From Linking tensorflow/core/liblib_internal_impl.a [for host]:
/Library/Developer/CommandLineTools/usr/bin/libtool: warning same member name (env.o) in output file used for input files: bazel-out/host/bin/tensorflow/core/_objs/lib_internal_impl/0/env.o and: bazel-out/host/bin/tensorflow/core/_objs/lib_internal_impl/1/env.o (due to use of basename, truncation, blank padding or duplicate input files)
/Library/Developer/CommandLineTools/usr/bin/libtool: warning same member name (tracing.o) in output file used for input files: bazel-out/host/bin/tensorflow/core/_objs/lib_internal_impl/0/tracing.o and: bazel-out/host/bin/tensorflow/core/_objs/lib_internal_impl/1/tracing.o (due to use of basename, truncation, blank padding or duplicate input files)
/Library/Developer/CommandLineTools/usr/bin/libtool: file: bazel-out/host/bin/tensorflow/core/_objs/lib_internal_impl/android_armv7a_cpu_utils_helper.o has no symbols
ERROR: /private/var/tmp/_bazel_geri/af336600bf091f11bdb6522728b81044/external/flatbuffers/BUILD.bazel:99:1: C++ compilation of rule '@flatbuffers//:flatc' failed (Exit 1) sandbox-exec failed: error executing command
(cd /private/var/tmp/_bazel_geri/af336600bf091f11bdb6522728b81044/execroot/org_tensorflow && \
exec env - \
PATH=/Users/geri/.pyenv/shims:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/TeX/texbin:/usr/local/go/bin:/Users/geri/intelligence/bin \
PWD=/proc/self/cwd \
TMPDIR=/var/folders/7t/9l0n105n4_jbrq076r887pthz96c2m/T/ \
/usr/bin/sandbox-exec -f /private/var/tmp/_bazel_geri/af336600bf091f11bdb6522728b81044/sandbox/darwin-sandbox/381/sandbox.sb /var/tmp/_bazel_geri/install/c71a8bada5761bf76ced20ca6672b491/_embedded_binaries/process-wrapper '--timeout=0' '--kill_delay=15' external/local_config_cc/cc_wrapper.sh -U_FORTIFY_SOURCE -fstack-protector -Wall -Wthread-safety -Wself-assign -fcolor-diagnostics -fno-omit-frame-pointer -g0 -O2 '-D_FORTIFY_SOURCE=1' -DNDEBUG -ffunction-sections -fdata-sections '-std=c++0x' -MD -MF bazel-out/host/bin/external/flatbuffers/_objs/flatc/idl_gen_grpc.d '-frandom-seed=bazel-out/host/bin/external/flatbuffers/_objs/flatc/idl_gen_grpc.o' -iquote external/flatbuffers -iquote bazel-out/host/genfiles/external/flatbuffers -iquote bazel-out/host/bin/external/flatbuffers -iquote external/bazel_tools -iquote bazel-out/host/genfiles/external/bazel_tools -iquote bazel-out/host/bin/external/bazel_tools -isystem external/flatbuffers/grpc -isystem bazel-out/host/genfiles/external/flatbuffers/grpc -isystem bazel-out/host/bin/external/flatbuffers/grpc -isystem external/flatbuffers/include -isystem bazel-out/host/genfiles/external/flatbuffers/include -isystem bazel-out/host/bin/external/flatbuffers/include -g0 -g0 -Wno-implicit-fallthrough -fexceptions -no-canonical-prefixes -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -c external/flatbuffers/src/idl_gen_grpc.cpp -o bazel-out/host/bin/external/flatbuffers/_objs/flatc/idl_gen_grpc.o)
external/flatbuffers/src/idl_gen_grpc.cpp:57:21: error: no member named 'doc_comment' in 'flatbuffers::RPCCall'; did you mean 'rpc_comment'?
return method_->doc_comment;
^~~~~~~~~~~
rpc_comment
/usr/local/include/flatbuffers/idl.h:349:28: note: 'rpc_comment' declared here
std::vector<std::string> rpc_comment;
^
external/flatbuffers/src/idl_gen_grpc.cpp:174:9: error: use of undeclared identifier 'FLATBUFFERS_ASSERT'
FLATBUFFERS_ASSERT(indent_ >= 0);
^
2 errors generated.
Target //tensorflow/python/tools:saved_model_cli failed to build
Use --verbose_failures to see the command lines of failed build steps.
INFO: Elapsed time: 166.831s, Critical Path: 93.66s
INFO: 379 processes: 378 darwin-sandbox, 1 local.
FAILED: Build did NOT complete successfully"><pre class="notranslate"><code class="notranslate">$ bazel build tensorflow/python/tools:saved_model_cli --sandbox_debug
WARNING: The following rc files are no longer being read, please transfer their contents or import their path into one of the standard rc files:
/Users/geri/Documents/tensorflow/tools/bazel.rc
INFO: Invocation ID: 2e76455c-b877-4561-85f0-7a34a9337adc
WARNING: /Users/geri/Documents/tensorflow/tensorflow/python/BUILD:2985:1: in py_library rule //tensorflow/python:standard_ops: target '//tensorflow/python:standard_ops' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/python/BUILD:76:1: in py_library rule //tensorflow/python:no_contrib: target '//tensorflow/python:no_contrib' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/metrics/BUILD:16:1: in py_library rule //tensorflow/contrib/metrics:metrics_py: target '//tensorflow/contrib/metrics:metrics_py' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/learn/BUILD:17:1: in py_library rule //tensorflow/contrib/learn:learn: target '//tensorflow/contrib/learn:learn' depends on deprecated target '//tensorflow/contrib/session_bundle:exporter': No longer supported. Switch to SavedModel immediately.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/learn/BUILD:17:1: in py_library rule //tensorflow/contrib/learn:learn: target '//tensorflow/contrib/learn:learn' depends on deprecated target '//tensorflow/contrib/session_bundle:gc': No longer supported. Switch to SavedModel immediately.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/gan/BUILD:136:1: in py_library rule //tensorflow/contrib/gan:losses_impl: target '//tensorflow/contrib/gan:losses_impl' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/seq2seq/BUILD:23:1: in py_library rule //tensorflow/contrib/seq2seq:seq2seq_py: target '//tensorflow/contrib/seq2seq:seq2seq_py' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/seq2seq/BUILD:23:1: in py_library rule //tensorflow/contrib/seq2seq:seq2seq_py: target '//tensorflow/contrib/seq2seq:seq2seq_py' depends on deprecated target '//tensorflow/python/ops/distributions:distributions': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.distributions will not receive new features, and will be removed by early 2019. You should update all usage of `tf.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/bayesflow/BUILD:17:1: in py_library rule //tensorflow/contrib/bayesflow:bayesflow_py: target '//tensorflow/contrib/bayesflow:bayesflow_py' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/timeseries/python/timeseries/state_space_models/BUILD:233:1: in py_library rule //tensorflow/contrib/timeseries/python/timeseries/state_space_models:filtering_postprocessor: target '//tensorflow/contrib/timeseries/python/timeseries/state_space_models:filtering_postprocessor' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/timeseries/python/timeseries/state_space_models/BUILD:76:1: in py_library rule //tensorflow/contrib/timeseries/python/timeseries/state_space_models:kalman_filter: target '//tensorflow/contrib/timeseries/python/timeseries/state_space_models:kalman_filter' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/timeseries/python/timeseries/BUILD:356:1: in py_library rule //tensorflow/contrib/timeseries/python/timeseries:ar_model: target '//tensorflow/contrib/timeseries/python/timeseries:ar_model' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
WARNING: /Users/geri/Documents/tensorflow/tensorflow/contrib/BUILD:13:1: in py_library rule //tensorflow/contrib:contrib_py: target '//tensorflow/contrib:contrib_py' depends on deprecated target '//tensorflow/contrib/distributions:distributions_py': TensorFlow Distributions has migrated to TensorFlow Probability (https://github.com/tensorflow/probability). Deprecated copies remaining in tf.contrib.distributions are unmaintained, unsupported, and will be removed by late 2018. You should update all usage of `tf.contrib.distributions` to `tfp.distributions`.
INFO: Analysed target //tensorflow/python/tools:saved_model_cli (0 packages loaded, 0 targets configured).
INFO: Found 1 target...
INFO: From ProtoCompile external/protobuf_archive/python/google/protobuf/any_pb2.py [for host]:
external/protobuf_archive/python: warning: directory does not exist.
INFO: From ProtoCompile tensorflow/core/example/example_pb2.py [for host]:
external/protobuf_archive/python: warning: directory does not exist.
external/protobuf_archive/python: warning: directory does not exist.
INFO: From Compiling tensorflow/core/framework/function.cc [for host]:
tensorflow/core/framework/function.cc:1107:18: warning: reading variable 'function_defs_' requires holding mutex 'clone.mu_' [-Wthread-safety-precise]
for (auto iter : clone.function_defs_) {
^
tensorflow/core/framework/function.cc:1107:18: note: found near match 'mu_'
tensorflow/core/framework/function.cc:1107:18: warning: reading variable 'function_defs_' requires holding mutex 'clone.mu_' [-Wthread-safety-precise]
for (auto iter : clone.function_defs_) {
^
tensorflow/core/framework/function.cc:1107:18: note: found near match 'mu_'
tensorflow/core/framework/function.cc:1117:18: warning: reading variable 'func_grad_' requires holding mutex 'clone.mu_' [-Wthread-safety-precise]
for (auto iter : clone.func_grad_) {
^
tensorflow/core/framework/function.cc:1117:18: note: found near match 'mu_'
tensorflow/core/framework/function.cc:1117:18: warning: reading variable 'func_grad_' requires holding mutex 'clone.mu_' [-Wthread-safety-precise]
for (auto iter : clone.func_grad_) {
^
tensorflow/core/framework/function.cc:1117:18: note: found near match 'mu_'
4 warnings generated.
INFO: From Compiling tensorflow/core/util/example_proto_fast_parsing.cc [for host]:
In file included from tensorflow/core/util/example_proto_fast_parsing.cc:15:
In file included from ./tensorflow/core/util/example_proto_fast_parsing.h:32:
./tensorflow/core/util/sparse/sparse_tensor.h:77:15: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
*result = SparseTensor(ix, vals, shape, order);
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_fast_parsing.cc:15:
In file included from ./tensorflow/core/util/example_proto_fast_parsing.h:32:
./tensorflow/core/util/sparse/sparse_tensor.h:77:15: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
*result = SparseTensor(ix, vals, shape, order);
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_fast_parsing.cc:15:
In file included from ./tensorflow/core/util/example_proto_fast_parsing.h:32:
./tensorflow/core/util/sparse/sparse_tensor.h:132:9: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
: SparseTensor(other.ix_, other.vals_, other.shape_, other.order_) {}
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_fast_parsing.cc:15:
In file included from ./tensorflow/core/util/example_proto_fast_parsing.h:32:
./tensorflow/core/util/sparse/sparse_tensor.h:135:9: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
: SparseTensor(std::move(other.ix_), std::move(other.vals_),
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_fast_parsing.cc:15:
In file included from ./tensorflow/core/util/example_proto_fast_parsing.h:32:
./tensorflow/core/util/sparse/sparse_tensor.h:568:10: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
return SparseTensor(output_ix, output_vals, final_shape, final_order);
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_fast_parsing.cc:15:
In file included from ./tensorflow/core/util/example_proto_fast_parsing.h:32:
./tensorflow/core/util/sparse/sparse_tensor.h:568:10: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
return SparseTensor(output_ix, output_vals, final_shape, final_order);
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_fast_parsing.cc:15:
In file included from ./tensorflow/core/util/example_proto_fast_parsing.h:32:
./tensorflow/core/util/sparse/sparse_tensor.h:726:10: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
return SparseTensor(output_indices, output_values, output_shape);
^
./tensorflow/core/util/sparse/sparse_tensor.h:99:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_fast_parsing.cc:15:
In file included from ./tensorflow/core/util/example_proto_fast_parsing.h:32:
./tensorflow/core/util/sparse/sparse_tensor.h:726:10: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
return SparseTensor(output_indices, output_values, output_shape);
^
./tensorflow/core/util/sparse/sparse_tensor.h:99:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
8 warnings generated.
INFO: From Compiling tensorflow/core/util/strided_slice_op.cc [for host]:
tensorflow/core/util/strided_slice_op.cc:275:33: warning: lambda capture 'i' is not used [-Wunused-lambda-capture]
auto canonical = [stride_i, i, dim_i, masks, valid_range](int64 x, int c) {
^
1 warning generated.
INFO: From Compiling tensorflow/core/framework/dataset.cc [for host]:
In file included from tensorflow/core/framework/dataset.cc:15:
In file included from ./tensorflow/core/framework/dataset.h:27:
./tensorflow/core/framework/model.h:235:13: warning: writing variable 'buffered_bytes_' requires holding mutex 'result->mu_' exclusively [-Wthread-safety-precise]
result->buffered_bytes_ = buffered_bytes_;
^
./tensorflow/core/framework/model.h:235:13: note: found near match 'mu_'
./tensorflow/core/framework/model.h:236:13: warning: writing variable 'processing_time_' requires holding mutex 'result->mu_' exclusively [-Wthread-safety-precise]
result->processing_time_ = processing_time_;
^
./tensorflow/core/framework/model.h:236:13: note: found near match 'mu_'
./tensorflow/core/framework/model.h:237:13: warning: writing variable 'num_elements_' requires holding mutex 'result->mu_' exclusively [-Wthread-safety-precise]
result->num_elements_ = num_elements_;
^
./tensorflow/core/framework/model.h:237:13: note: found near match 'mu_'
./tensorflow/core/framework/model.h:238:13: warning: writing variable 'parameters_' requires holding mutex 'result->mu_' exclusively [-Wthread-safety-precise]
result->parameters_ = parameters_;
^
./tensorflow/core/framework/model.h:238:13: note: found near match 'mu_'
4 warnings generated.
INFO: From Compiling tensorflow/core/util/example_proto_helper.cc [for host]:
In file included from tensorflow/core/util/example_proto_helper.cc:15:
In file included from ./tensorflow/core/util/example_proto_helper.h:31:
./tensorflow/core/util/sparse/sparse_tensor.h:77:15: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
*result = SparseTensor(ix, vals, shape, order);
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_helper.cc:15:
In file included from ./tensorflow/core/util/example_proto_helper.h:31:
./tensorflow/core/util/sparse/sparse_tensor.h:77:15: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
*result = SparseTensor(ix, vals, shape, order);
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_helper.cc:15:
In file included from ./tensorflow/core/util/example_proto_helper.h:31:
./tensorflow/core/util/sparse/sparse_tensor.h:132:9: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
: SparseTensor(other.ix_, other.vals_, other.shape_, other.order_) {}
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_helper.cc:15:
In file included from ./tensorflow/core/util/example_proto_helper.h:31:
./tensorflow/core/util/sparse/sparse_tensor.h:135:9: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
: SparseTensor(std::move(other.ix_), std::move(other.vals_),
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_helper.cc:15:
In file included from ./tensorflow/core/util/example_proto_helper.h:31:
./tensorflow/core/util/sparse/sparse_tensor.h:568:10: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
return SparseTensor(output_ix, output_vals, final_shape, final_order);
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_helper.cc:15:
In file included from ./tensorflow/core/util/example_proto_helper.h:31:
./tensorflow/core/util/sparse/sparse_tensor.h:568:10: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
return SparseTensor(output_ix, output_vals, final_shape, final_order);
^
./tensorflow/core/util/sparse/sparse_tensor.h:113:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_helper.cc:15:
In file included from ./tensorflow/core/util/example_proto_helper.h:31:
./tensorflow/core/util/sparse/sparse_tensor.h:726:10: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
return SparseTensor(output_indices, output_values, output_shape);
^
./tensorflow/core/util/sparse/sparse_tensor.h:99:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
In file included from tensorflow/core/util/example_proto_helper.cc:15:
In file included from ./tensorflow/core/util/example_proto_helper.h:31:
./tensorflow/core/util/sparse/sparse_tensor.h:726:10: warning: 'SparseTensor' is deprecated: Use Create() functions instead of constructors directly. [-Wdeprecated-declarations]
return SparseTensor(output_indices, output_values, output_shape);
^
./tensorflow/core/util/sparse/sparse_tensor.h:99:3: note: 'SparseTensor' has been explicitly marked deprecated here
ABSL_DEPRECATED("Use Create() functions instead of constructors directly.")
^
external/com_google_absl/absl/base/macros.h:149:49: note: expanded from macro 'ABSL_DEPRECATED'
#define ABSL_DEPRECATED(message) __attribute__((deprecated(message)))
^
8 warnings generated.
INFO: From Compiling tensorflow/core/framework/model.cc [for host]:
In file included from tensorflow/core/framework/model.cc:16:
./tensorflow/core/framework/model.h:235:13: warning: writing variable 'buffered_bytes_' requires holding mutex 'result->mu_' exclusively [-Wthread-safety-precise]
result->buffered_bytes_ = buffered_bytes_;
^
./tensorflow/core/framework/model.h:235:13: note: found near match 'mu_'
./tensorflow/core/framework/model.h:236:13: warning: writing variable 'processing_time_' requires holding mutex 'result->mu_' exclusively [-Wthread-safety-precise]
result->processing_time_ = processing_time_;
^
./tensorflow/core/framework/model.h:236:13: note: found near match 'mu_'
./tensorflow/core/framework/model.h:237:13: warning: writing variable 'num_elements_' requires holding mutex 'result->mu_' exclusively [-Wthread-safety-precise]
result->num_elements_ = num_elements_;
^
./tensorflow/core/framework/model.h:237:13: note: found near match 'mu_'
./tensorflow/core/framework/model.h:238:13: warning: writing variable 'parameters_' requires holding mutex 'result->mu_' exclusively [-Wthread-safety-precise]
result->parameters_ = parameters_;
^
./tensorflow/core/framework/model.h:238:13: note: found near match 'mu_'
4 warnings generated.
INFO: From ProtoCompile tensorflow/core/grappler/costs/op_performance_data_pb2.py [for host]:
external/protobuf_archive/python: warning: directory does not exist.
external/protobuf_archive/python: warning: directory does not exist.
external/protobuf_archive/python: warning: directory does not exist.
external/protobuf_archive/python: warning: directory does not exist.
INFO: From Linking tensorflow/core/liblib_internal_impl.a [for host]:
/Library/Developer/CommandLineTools/usr/bin/libtool: warning same member name (env.o) in output file used for input files: bazel-out/host/bin/tensorflow/core/_objs/lib_internal_impl/0/env.o and: bazel-out/host/bin/tensorflow/core/_objs/lib_internal_impl/1/env.o (due to use of basename, truncation, blank padding or duplicate input files)
/Library/Developer/CommandLineTools/usr/bin/libtool: warning same member name (tracing.o) in output file used for input files: bazel-out/host/bin/tensorflow/core/_objs/lib_internal_impl/0/tracing.o and: bazel-out/host/bin/tensorflow/core/_objs/lib_internal_impl/1/tracing.o (due to use of basename, truncation, blank padding or duplicate input files)
/Library/Developer/CommandLineTools/usr/bin/libtool: file: bazel-out/host/bin/tensorflow/core/_objs/lib_internal_impl/android_armv7a_cpu_utils_helper.o has no symbols
ERROR: /private/var/tmp/_bazel_geri/af336600bf091f11bdb6522728b81044/external/flatbuffers/BUILD.bazel:99:1: C++ compilation of rule '@flatbuffers//:flatc' failed (Exit 1) sandbox-exec failed: error executing command
(cd /private/var/tmp/_bazel_geri/af336600bf091f11bdb6522728b81044/execroot/org_tensorflow && \
exec env - \
PATH=/Users/geri/.pyenv/shims:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/TeX/texbin:/usr/local/go/bin:/Users/geri/intelligence/bin \
PWD=/proc/self/cwd \
TMPDIR=/var/folders/7t/9l0n105n4_jbrq076r887pthz96c2m/T/ \
/usr/bin/sandbox-exec -f /private/var/tmp/_bazel_geri/af336600bf091f11bdb6522728b81044/sandbox/darwin-sandbox/381/sandbox.sb /var/tmp/_bazel_geri/install/c71a8bada5761bf76ced20ca6672b491/_embedded_binaries/process-wrapper '--timeout=0' '--kill_delay=15' external/local_config_cc/cc_wrapper.sh -U_FORTIFY_SOURCE -fstack-protector -Wall -Wthread-safety -Wself-assign -fcolor-diagnostics -fno-omit-frame-pointer -g0 -O2 '-D_FORTIFY_SOURCE=1' -DNDEBUG -ffunction-sections -fdata-sections '-std=c++0x' -MD -MF bazel-out/host/bin/external/flatbuffers/_objs/flatc/idl_gen_grpc.d '-frandom-seed=bazel-out/host/bin/external/flatbuffers/_objs/flatc/idl_gen_grpc.o' -iquote external/flatbuffers -iquote bazel-out/host/genfiles/external/flatbuffers -iquote bazel-out/host/bin/external/flatbuffers -iquote external/bazel_tools -iquote bazel-out/host/genfiles/external/bazel_tools -iquote bazel-out/host/bin/external/bazel_tools -isystem external/flatbuffers/grpc -isystem bazel-out/host/genfiles/external/flatbuffers/grpc -isystem bazel-out/host/bin/external/flatbuffers/grpc -isystem external/flatbuffers/include -isystem bazel-out/host/genfiles/external/flatbuffers/include -isystem bazel-out/host/bin/external/flatbuffers/include -g0 -g0 -Wno-implicit-fallthrough -fexceptions -no-canonical-prefixes -Wno-builtin-macro-redefined '-D__DATE__="redacted"' '-D__TIMESTAMP__="redacted"' '-D__TIME__="redacted"' -c external/flatbuffers/src/idl_gen_grpc.cpp -o bazel-out/host/bin/external/flatbuffers/_objs/flatc/idl_gen_grpc.o)
external/flatbuffers/src/idl_gen_grpc.cpp:57:21: error: no member named 'doc_comment' in 'flatbuffers::RPCCall'; did you mean 'rpc_comment'?
return method_->doc_comment;
^~~~~~~~~~~
rpc_comment
/usr/local/include/flatbuffers/idl.h:349:28: note: 'rpc_comment' declared here
std::vector<std::string> rpc_comment;
^
external/flatbuffers/src/idl_gen_grpc.cpp:174:9: error: use of undeclared identifier 'FLATBUFFERS_ASSERT'
FLATBUFFERS_ASSERT(indent_ >= 0);
^
2 errors generated.
Target //tensorflow/python/tools:saved_model_cli failed to build
Use --verbose_failures to see the command lines of failed build steps.
INFO: Elapsed time: 166.831s, Critical Path: 93.66s
INFO: 379 processes: 378 darwin-sandbox, 1 local.
FAILED: Build did NOT complete successfully
</code></pre></div>
<p dir="auto">bazel version:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="bazel version
WARNING: The following rc files are no longer being read, please transfer their contents or import their path into one of the standard rc files:
/Users/geri/Documents/tensorflow/tools/bazel.rc
INFO: Invocation ID: 143fe03e-0926-4e69-9516-0e132c8ed3b5
Build label: 0.20.0
Build target: bazel-out/darwin-opt/bin/src/main/java/com/google/devtools/build/lib/bazel/BazelServer_deploy.jar
Build time: Fri Nov 30 14:38:25 2018 (1543588705)
Build timestamp: 1543588705
Build timestamp as int: 1543588705"><pre class="notranslate"><code class="notranslate">bazel version
WARNING: The following rc files are no longer being read, please transfer their contents or import their path into one of the standard rc files:
/Users/geri/Documents/tensorflow/tools/bazel.rc
INFO: Invocation ID: 143fe03e-0926-4e69-9516-0e132c8ed3b5
Build label: 0.20.0
Build target: bazel-out/darwin-opt/bin/src/main/java/com/google/devtools/build/lib/bazel/BazelServer_deploy.jar
Build time: Fri Nov 30 14:38:25 2018 (1543588705)
Build timestamp: 1543588705
Build timestamp as int: 1543588705
</code></pre></div>
<p dir="auto">osx version:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="10.14.2 (18C54)"><pre class="notranslate"><code class="notranslate">10.14.2 (18C54)
</code></pre></div>
<p dir="auto">Python version:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python3 --version
Python 3.6.0"><pre class="notranslate"><code class="notranslate">$ python3 --version
Python 3.6.0
</code></pre></div>
<p dir="auto">tensorflow version:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ pip3 install --upgrade tensorflow
Requirement already up-to-date: tensorflow in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (1.12.0)
Requirement already satisfied, skipping upgrade: gast>=0.2.0 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (0.2.0)
Requirement already satisfied, skipping upgrade: six>=1.10.0 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (1.11.0)
Requirement already satisfied, skipping upgrade: astor>=0.6.0 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (0.7.1)
Requirement already satisfied, skipping upgrade: absl-py>=0.1.6 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (0.6.1)
Requirement already satisfied, skipping upgrade: grpcio>=1.8.6 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (1.17.0)
Requirement already satisfied, skipping upgrade: wheel>=0.26 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (0.32.3)
Requirement already satisfied, skipping upgrade: keras-applications>=1.0.6 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (1.0.6)
Requirement already satisfied, skipping upgrade: keras-preprocessing>=1.0.5 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (1.0.5)
Requirement already satisfied, skipping upgrade: protobuf>=3.6.1 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (3.6.1)
Requirement already satisfied, skipping upgrade: numpy>=1.13.3 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (1.14.5)
Requirement already satisfied, skipping upgrade: tensorboard<1.13.0,>=1.12.0 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (1.12.0)
Requirement already satisfied, skipping upgrade: termcolor>=1.1.0 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (1.1.0)
Requirement already satisfied, skipping upgrade: h5py in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from keras-applications>=1.0.6->tensorflow) (2.8.0)
Requirement already satisfied, skipping upgrade: setuptools in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from protobuf>=3.6.1->tensorflow) (28.8.0)
Requirement already satisfied, skipping upgrade: werkzeug>=0.11.10 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorboard<1.13.0,>=1.12.0->tensorflow) (0.14.1)
Requirement already satisfied, skipping upgrade: markdown>=2.6.8 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorboard<1.13.0,>=1.12.0->tensorflow) (3.0.1)"><pre class="notranslate"><code class="notranslate">$ pip3 install --upgrade tensorflow
Requirement already up-to-date: tensorflow in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (1.12.0)
Requirement already satisfied, skipping upgrade: gast>=0.2.0 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (0.2.0)
Requirement already satisfied, skipping upgrade: six>=1.10.0 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (1.11.0)
Requirement already satisfied, skipping upgrade: astor>=0.6.0 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (0.7.1)
Requirement already satisfied, skipping upgrade: absl-py>=0.1.6 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (0.6.1)
Requirement already satisfied, skipping upgrade: grpcio>=1.8.6 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (1.17.0)
Requirement already satisfied, skipping upgrade: wheel>=0.26 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (0.32.3)
Requirement already satisfied, skipping upgrade: keras-applications>=1.0.6 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (1.0.6)
Requirement already satisfied, skipping upgrade: keras-preprocessing>=1.0.5 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (1.0.5)
Requirement already satisfied, skipping upgrade: protobuf>=3.6.1 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (3.6.1)
Requirement already satisfied, skipping upgrade: numpy>=1.13.3 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (1.14.5)
Requirement already satisfied, skipping upgrade: tensorboard<1.13.0,>=1.12.0 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (1.12.0)
Requirement already satisfied, skipping upgrade: termcolor>=1.1.0 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorflow) (1.1.0)
Requirement already satisfied, skipping upgrade: h5py in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from keras-applications>=1.0.6->tensorflow) (2.8.0)
Requirement already satisfied, skipping upgrade: setuptools in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from protobuf>=3.6.1->tensorflow) (28.8.0)
Requirement already satisfied, skipping upgrade: werkzeug>=0.11.10 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorboard<1.13.0,>=1.12.0->tensorflow) (0.14.1)
Requirement already satisfied, skipping upgrade: markdown>=2.6.8 in /Users/geri/.pyenv/versions/3.6.0/lib/python3.6/site-packages (from tensorboard<1.13.0,>=1.12.0->tensorflow) (3.0.1)
</code></pre></div>
<p dir="auto">gcc version:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ gcc --version
Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/usr/include/c++/4.2.1
Apple LLVM version 10.0.0 (clang-1000.10.44.4)
Target: x86_64-apple-darwin18.2.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin"><pre class="notranslate"><code class="notranslate">$ gcc --version
Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/usr/include/c++/4.2.1
Apple LLVM version 10.0.0 (clang-1000.10.44.4)
Target: x86_64-apple-darwin18.2.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
</code></pre></div>
<p dir="auto">g++ version:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="MM-MAC-3270:tensorflow gstanje$ g++ --version
Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/usr/include/c++/4.2.1
Apple LLVM version 10.0.0 (clang-1000.10.44.4)
Target: x86_64-apple-darwin18.2.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin"><pre class="notranslate"><code class="notranslate">MM-MAC-3270:tensorflow gstanje$ g++ --version
Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/usr/include/c++/4.2.1
Apple LLVM version 10.0.0 (clang-1000.10.44.4)
Target: x86_64-apple-darwin18.2.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
</code></pre></div> | <h3 dir="auto">System information</h3>
<ul dir="auto">
<li><strong>OS Platform and Distribution</strong>: Ubuntu 16.04</li>
<li><strong>TensorFlow installed from</strong>: binary</li>
<li><strong>TensorFlow version</strong>: 1.4</li>
<li><strong>Python version</strong>: 2.7.12</li>
<li><strong>CUDA/cuDNN version</strong>: 8.0 / 6.0</li>
<li><strong>GPU model and memory</strong>: GTX 1060</li>
<li><strong>GPU driver version</strong>: 387.12</li>
<li><strong>Exact command to reproduce</strong>:<br>
<code class="notranslate">import tensorflow as tf</code></li>
</ul>
<h3 dir="auto">Problem</h3>
<p dir="auto">It looks for the wrong version of libnvidia-fatbinaryloader.so.xxx.xx.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last):
File "/home/stefano/PycharmProjects/lstm/robot_LSTM.py", line 2, in <module>
from keras.models import Sequential
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/keras/__init__.py", line 3, in <module>
from . import utils
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/keras/utils/__init__.py", line 6, in <module>
from . import conv_utils
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/keras/utils/conv_utils.py", line 3, in <module>
from .. import backend as K
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/keras/backend/__init__.py", line 83, in <module>
from .tensorflow_backend import *
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/keras/backend/tensorflow_backend.py", line 1, in <module>
import tensorflow as tf
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/tensorflow/__init__.py", line 24, in <module>
from tensorflow.python import *
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/tensorflow/python/__init__.py", line 49, in <module>
from tensorflow.python import pywrap_tensorflow
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/tensorflow/python/pywrap_tensorflow.py", line 72, in <module>
raise ImportError(msg)
ImportError: Traceback (most recent call last):
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/tensorflow/python/pywrap_tensorflow.py", line 58, in <module>
from tensorflow.python.pywrap_tensorflow_internal import *
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 28, in <module>
_pywrap_tensorflow_internal = swig_import_helper()
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 24, in swig_import_helper
_mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description)
ImportError: libnvidia-fatbinaryloader.so.384.90: cannot open shared object file: No such file or directory"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last):
File "/home/stefano/PycharmProjects/lstm/robot_LSTM.py", line 2, in <module>
from keras.models import Sequential
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/keras/__init__.py", line 3, in <module>
from . import utils
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/keras/utils/__init__.py", line 6, in <module>
from . import conv_utils
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/keras/utils/conv_utils.py", line 3, in <module>
from .. import backend as K
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/keras/backend/__init__.py", line 83, in <module>
from .tensorflow_backend import *
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/keras/backend/tensorflow_backend.py", line 1, in <module>
import tensorflow as tf
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/tensorflow/__init__.py", line 24, in <module>
from tensorflow.python import *
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/tensorflow/python/__init__.py", line 49, in <module>
from tensorflow.python import pywrap_tensorflow
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/tensorflow/python/pywrap_tensorflow.py", line 72, in <module>
raise ImportError(msg)
ImportError: Traceback (most recent call last):
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/tensorflow/python/pywrap_tensorflow.py", line 58, in <module>
from tensorflow.python.pywrap_tensorflow_internal import *
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 28, in <module>
_pywrap_tensorflow_internal = swig_import_helper()
File "/home/stefano/PycharmProjects/lstm/env/local/lib/python2.7/site-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 24, in swig_import_helper
_mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description)
ImportError: libnvidia-fatbinaryloader.so.384.90: cannot open shared object file: No such file or directory
</code></pre></div> | 0 |
<p dir="auto">Just bringing attention to this particular issue since all the @ mentions are getting no response there. See <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="6075543" data-permission-text="Title is private" data-url="https://github.com/FriendsOfSymfony/FOSUserBundle/issues/747" data-hovercard-type="issue" data-hovercard-url="/FriendsOfSymfony/FOSUserBundle/issues/747/hovercard" href="https://github.com/FriendsOfSymfony/FOSUserBundle/issues/747">FriendsOfSymfony/FOSUserBundle#747</a>. If there is a better way to bring stuff like this to attention, then it would be good to know.</p>
<p dir="auto">Quoting <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/stof/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/stof">@stof</a>:</p>
<blockquote>
<p dir="auto">The remember me services are private so they are removed from the container when optimizing it. This means that the has checks in the LoginManager will return false even when the remember me is activated for the firewall.</p>
</blockquote> | <p dir="auto">This is common pattern when user clicks confirmation token.<br>
I'm unable to set remember me in clean way.</p> | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.